Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
mariux64
/
linux
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
2
Pull requests
0
Actions
Projects
0
Wiki
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Files
437e9b1
Documentation
LICENSES
arch
block
certs
crypto
drivers
fs
include
init
ipc
kernel
lib
mm
kasan
kfence
Kconfig
Kconfig.debug
Makefile
backing-dev.c
balloon_compaction.c
cleancache.c
cma.c
cma.h
cma_debug.c
compaction.c
debug.c
debug_page_ref.c
debug_vm_pgtable.c
dmapool.c
early_ioremap.c
fadvise.c
failslab.c
filemap.c
frontswap.c
gup.c
gup_test.c
gup_test.h
highmem.c
hmm.c
huge_memory.c
hugetlb.c
hugetlb_cgroup.c
hwpoison-inject.c
init-mm.c
internal.h
interval_tree.c
ioremap.c
khugepaged.c
kmemleak.c
ksm.c
list_lru.c
maccess.c
madvise.c
mapping_dirty_helpers.c
memblock.c
memcontrol.c
memfd.c
memory-failure.c
memory.c
memory_hotplug.c
mempolicy.c
mempool.c
memremap.c
memtest.c
migrate.c
mincore.c
mlock.c
mm_init.c
mmap.c
mmap_lock.c
mmu_gather.c
mmu_notifier.c
mmzone.c
mprotect.c
mremap.c
msync.c
nommu.c
oom_kill.c
page-writeback.c
page_alloc.c
page_counter.c
page_ext.c
page_idle.c
page_io.c
page_isolation.c
page_owner.c
page_poison.c
page_reporting.c
page_reporting.h
page_vma_mapped.c
pagewalk.c
percpu-internal.h
percpu-km.c
percpu-stats.c
percpu-vm.c
percpu.c
pgalloc-track.h
pgtable-generic.c
process_vm_access.c
ptdump.c
readahead.c
rmap.c
rodata_test.c
secretmem.c
shmem.c
shuffle.c
shuffle.h
slab.c
slab.h
slab_common.c
slob.c
slub.c
sparse-vmemmap.c
sparse.c
swap.c
swap_cgroup.c
swap_slots.c
swap_state.c
swapfile.c
truncate.c
usercopy.c
userfaultfd.c
util.c
vmacache.c
vmalloc.c
vmpressure.c
vmscan.c
vmstat.c
workingset.c
z3fold.c
zbud.c
zpool.c
zsmalloc.c
zswap.c
net
samples
scripts
security
sound
tools
usr
virt
.clang-format
.cocciconfig
.get_maintainer.ignore
.gitattributes
.gitignore
.mailmap
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS
Makefile
README
Breadcrumbs
linux
/
mm
/
secretmem.c
Blame
Blame
Latest commit
History
History
399 lines (310 loc) · 8.48 KB
Breadcrumbs
linux
/
mm
/
secretmem.c
Top
File metadata and controls
Code
Blame
399 lines (310 loc) · 8.48 KB
Raw
// SPDX-License-Identifier: GPL-2.0 /* * Copyright IBM Corporation, 2020 * * Author: Mike Rapoport <rppt@linux.ibm.com> */ #include <linux/mm.h> #include <linux/fs.h> #include <linux/cma.h> #include <linux/mount.h> #include <linux/memfd.h> #include <linux/bitops.h> #include <linux/printk.h> #include <linux/pagemap.h> #include <linux/genalloc.h> #include <linux/syscalls.h> #include <linux/memblock.h> #include <linux/pseudo_fs.h> #include <linux/secretmem.h> #include <linux/set_memory.h> #include <linux/sched/signal.h> #include <uapi/linux/magic.h> #include <asm/tlbflush.h> #include "internal.h" #undef pr_fmt #define pr_fmt(fmt) "secretmem: " fmt /* * Define mode and flag masks to allow validation of the system call * parameters. */ #define SECRETMEM_MODE_MASK (0x0) #define SECRETMEM_FLAGS_MASK SECRETMEM_MODE_MASK struct secretmem_ctx { struct gen_pool *pool; unsigned int mode; }; static struct cma *secretmem_cma; static int secretmem_pool_increase(struct secretmem_ctx *ctx, gfp_t gfp) { unsigned long nr_pages = (1 << PMD_PAGE_ORDER); struct gen_pool *pool = ctx->pool; unsigned long addr; struct page *page; int i, err; page = cma_alloc(secretmem_cma, nr_pages, PMD_SIZE, gfp & __GFP_NOWARN); if (!page) return -ENOMEM; /* * clear the data left from the prevoius user before dropping the * pages from the direct map */ for (i = 0; i < nr_pages; i++) clear_highpage(page + i); err = set_direct_map_invalid_noflush(page, nr_pages); if (err) goto err_cma_release; addr = (unsigned long)page_address(page); err = gen_pool_add(pool, addr, PMD_SIZE, NUMA_NO_NODE); if (err) goto err_set_direct_map; flush_tlb_kernel_range(addr, addr + PMD_SIZE); return 0; err_set_direct_map: /* * If a split of PUD-size page was required, it already happened * when we marked the pages invalid which guarantees that this call * won't fail */ set_direct_map_default_noflush(page, nr_pages); err_cma_release: cma_release(secretmem_cma, page, nr_pages); return err; } static void secretmem_free_page(struct secretmem_ctx *ctx, struct page *page) { unsigned long addr = (unsigned long)page_address(page); struct gen_pool *pool = ctx->pool; gen_pool_free(pool, addr, PAGE_SIZE); } static struct page *secretmem_alloc_page(struct secretmem_ctx *ctx, gfp_t gfp) { struct gen_pool *pool = ctx->pool; unsigned long addr; struct page *page; int err; if (gen_pool_avail(pool) < PAGE_SIZE) { err = secretmem_pool_increase(ctx, gfp); if (err) return NULL; } addr = gen_pool_alloc(pool, PAGE_SIZE); if (!addr) return NULL; page = virt_to_page(addr); get_page(page); return page; } static vm_fault_t secretmem_fault(struct vm_fault *vmf) { struct secretmem_ctx *ctx = vmf->vma->vm_file->private_data; struct address_space *mapping = vmf->vma->vm_file->f_mapping; struct inode *inode = file_inode(vmf->vma->vm_file); pgoff_t offset = vmf->pgoff; struct page *page; int err; if (((loff_t)vmf->pgoff << PAGE_SHIFT) >= i_size_read(inode)) return vmf_error(-EINVAL); retry: page = find_lock_page(mapping, offset); if (!page) { page = secretmem_alloc_page(ctx, vmf->gfp_mask); if (!page) return VM_FAULT_OOM; __SetPageUptodate(page); err = add_to_page_cache(page, mapping, offset, vmf->gfp_mask); if (unlikely(err)) { secretmem_free_page(ctx, page); put_page(page); if (err == -EEXIST) goto retry; return vmf_error(err); } set_page_private(page, (unsigned long)ctx); } vmf->page = page; return VM_FAULT_LOCKED; } static const struct vm_operations_struct secretmem_vm_ops = { .fault = secretmem_fault, }; static int secretmem_mmap(struct file *file, struct vm_area_struct *vma) { unsigned long len = vma->vm_end - vma->vm_start; if ((vma->vm_flags & (VM_SHARED | VM_MAYSHARE)) == 0) return -EINVAL; if (mlock_future_check(vma->vm_mm, vma->vm_flags | VM_LOCKED, len)) return -EAGAIN; vma->vm_ops = &secretmem_vm_ops; vma->vm_flags |= VM_LOCKED; return 0; } bool vma_is_secretmem(struct vm_area_struct *vma) { return vma->vm_ops == &secretmem_vm_ops; } static const struct file_operations secretmem_fops = { .mmap = secretmem_mmap, }; static bool secretmem_isolate_page(struct page *page, isolate_mode_t mode) { return false; } static int secretmem_migratepage(struct address_space *mapping, struct page *newpage, struct page *page, enum migrate_mode mode) { return -EBUSY; } static void secretmem_freepage(struct page *page) { struct secretmem_ctx *ctx = (struct secretmem_ctx *)page_private(page); secretmem_free_page(ctx, page); } static const struct address_space_operations secretmem_aops = { .freepage = secretmem_freepage, .migratepage = secretmem_migratepage, .isolate_page = secretmem_isolate_page, }; bool page_is_secretmem(struct page *page) { struct address_space *mapping = page_mapping(page); if (!mapping) return false; return mapping->a_ops == &secretmem_aops; } static struct vfsmount *secretmem_mnt; static struct file *secretmem_file_create(unsigned long flags) { struct file *file = ERR_PTR(-ENOMEM); struct secretmem_ctx *ctx; struct inode *inode; inode = alloc_anon_inode(secretmem_mnt->mnt_sb); if (IS_ERR(inode)) return ERR_CAST(inode); ctx = kzalloc(sizeof(*ctx), GFP_KERNEL); if (!ctx) goto err_free_inode; ctx->pool = gen_pool_create(PAGE_SHIFT, NUMA_NO_NODE); if (!ctx->pool) goto err_free_ctx; file = alloc_file_pseudo(inode, secretmem_mnt, "secretmem", O_RDWR, &secretmem_fops); if (IS_ERR(file)) goto err_free_pool; mapping_set_unevictable(inode->i_mapping); inode->i_private = ctx; inode->i_mapping->private_data = ctx; inode->i_mapping->a_ops = &secretmem_aops; /* pretend we are a normal file with zero size */ inode->i_mode |= S_IFREG; inode->i_size = 0; file->private_data = ctx; ctx->mode = flags & SECRETMEM_MODE_MASK; return file; err_free_pool: gen_pool_destroy(ctx->pool); err_free_ctx: kfree(ctx); err_free_inode: iput(inode); return file; } SYSCALL_DEFINE1(memfd_secret, unsigned long, flags) { struct file *file; int fd, err; /* make sure local flags do not confict with global fcntl.h */ BUILD_BUG_ON(SECRETMEM_FLAGS_MASK & O_CLOEXEC); if (flags & ~(SECRETMEM_FLAGS_MASK | O_CLOEXEC)) return -EINVAL; if (!secretmem_cma) return -ENOMEM; fd = get_unused_fd_flags(flags & O_CLOEXEC); if (fd < 0) return fd; file = secretmem_file_create(flags); if (IS_ERR(file)) { err = PTR_ERR(file); goto err_put_fd; } file->f_flags |= O_LARGEFILE; fd_install(fd, file); return fd; err_put_fd: put_unused_fd(fd); return err; } static void secretmem_cleanup_chunk(struct gen_pool *pool, struct gen_pool_chunk *chunk, void *data) { unsigned long start = chunk->start_addr; unsigned long end = chunk->end_addr; struct page *page = virt_to_page(start); unsigned long nr_pages = (end - start + 1) / PAGE_SIZE; int i; set_direct_map_default_noflush(page, nr_pages); for (i = 0; i < nr_pages; i++) clear_highpage(page + i); cma_release(secretmem_cma, page, nr_pages); } static void secretmem_cleanup_pool(struct secretmem_ctx *ctx) { struct gen_pool *pool = ctx->pool; gen_pool_for_each_chunk(pool, secretmem_cleanup_chunk, ctx); gen_pool_destroy(pool); } static void secretmem_evict_inode(struct inode *inode) { struct secretmem_ctx *ctx = inode->i_private; truncate_inode_pages_final(&inode->i_data); secretmem_cleanup_pool(ctx); clear_inode(inode); kfree(ctx); } static const struct super_operations secretmem_super_ops = { .evict_inode = secretmem_evict_inode, }; static int secretmem_init_fs_context(struct fs_context *fc) { struct pseudo_fs_context *ctx = init_pseudo(fc, SECRETMEM_MAGIC); if (!ctx) return -ENOMEM; ctx->ops = &secretmem_super_ops; return 0; } static struct file_system_type secretmem_fs = { .name = "secretmem", .init_fs_context = secretmem_init_fs_context, .kill_sb = kill_anon_super, }; static int secretmem_init(void) { int ret = 0; secretmem_mnt = kern_mount(&secretmem_fs); if (IS_ERR(secretmem_mnt)) ret = PTR_ERR(secretmem_mnt); return ret; } fs_initcall(secretmem_init); static int __init secretmem_setup(char *str) { phys_addr_t align = PMD_SIZE; unsigned long reserved_size; int err; reserved_size = memparse(str, NULL); if (!reserved_size) return 0; if (reserved_size * 2 > PUD_SIZE) align = PUD_SIZE; err = cma_declare_contiguous(0, reserved_size, 0, align, 0, false, "secretmem", &secretmem_cma); if (err) { pr_err("failed to create CMA: %d\n", err); return err; } pr_info("reserved %luM\n", reserved_size >> 20); return 0; } __setup("secretmem=", secretmem_setup);
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
You can’t perform that action at this time.