xref: /linux/mm/secretmem.c (revision 2eb7f03acf4ac5db937974e99e75dac4c2c5a83d)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright IBM Corporation, 2021
4  *
5  * Author: Mike Rapoport <rppt@linux.ibm.com>
6  */
7 
8 #include <linux/mm.h>
9 #include <linux/fs.h>
10 #include <linux/swap.h>
11 #include <linux/mount.h>
12 #include <linux/memfd.h>
13 #include <linux/bitops.h>
14 #include <linux/printk.h>
15 #include <linux/pagemap.h>
16 #include <linux/syscalls.h>
17 #include <linux/pseudo_fs.h>
18 #include <linux/secretmem.h>
19 #include <linux/set_memory.h>
20 #include <linux/sched/signal.h>
21 
22 #include <uapi/linux/magic.h>
23 
24 #include <asm/tlbflush.h>
25 
26 #include "internal.h"
27 
28 #undef pr_fmt
29 #define pr_fmt(fmt) "secretmem: " fmt
30 
31 /*
32  * Define mode and flag masks to allow validation of the system call
33  * parameters.
34  */
35 #define SECRETMEM_MODE_MASK	(0x0)
36 #define SECRETMEM_FLAGS_MASK	SECRETMEM_MODE_MASK
37 
38 static bool secretmem_enable __ro_after_init = 1;
39 module_param_named(enable, secretmem_enable, bool, 0400);
40 MODULE_PARM_DESC(secretmem_enable,
41 		 "Enable secretmem and memfd_secret(2) system call");
42 
43 static atomic_t secretmem_users;
44 
secretmem_active(void)45 bool secretmem_active(void)
46 {
47 	return !!atomic_read(&secretmem_users);
48 }
49 
secretmem_fault(struct vm_fault * vmf)50 static vm_fault_t secretmem_fault(struct vm_fault *vmf)
51 {
52 	struct address_space *mapping = vmf->vma->vm_file->f_mapping;
53 	struct inode *inode = file_inode(vmf->vma->vm_file);
54 	pgoff_t offset = vmf->pgoff;
55 	gfp_t gfp = vmf->gfp_mask;
56 	unsigned long addr;
57 	struct page *page;
58 	struct folio *folio;
59 	vm_fault_t ret;
60 	int err;
61 
62 	if (((loff_t)vmf->pgoff << PAGE_SHIFT) >= i_size_read(inode))
63 		return vmf_error(-EINVAL);
64 
65 	filemap_invalidate_lock_shared(mapping);
66 
67 retry:
68 	page = find_lock_page(mapping, offset);
69 	if (!page) {
70 		folio = folio_alloc(gfp | __GFP_ZERO, 0);
71 		if (!folio) {
72 			ret = VM_FAULT_OOM;
73 			goto out;
74 		}
75 
76 		page = &folio->page;
77 		err = set_direct_map_invalid_noflush(page);
78 		if (err) {
79 			folio_put(folio);
80 			ret = vmf_error(err);
81 			goto out;
82 		}
83 
84 		__folio_mark_uptodate(folio);
85 		err = filemap_add_folio(mapping, folio, offset, gfp);
86 		if (unlikely(err)) {
87 			folio_put(folio);
88 			/*
89 			 * If a split of large page was required, it
90 			 * already happened when we marked the page invalid
91 			 * which guarantees that this call won't fail
92 			 */
93 			set_direct_map_default_noflush(page);
94 			if (err == -EEXIST)
95 				goto retry;
96 
97 			ret = vmf_error(err);
98 			goto out;
99 		}
100 
101 		addr = (unsigned long)page_address(page);
102 		flush_tlb_kernel_range(addr, addr + PAGE_SIZE);
103 	}
104 
105 	vmf->page = page;
106 	ret = VM_FAULT_LOCKED;
107 
108 out:
109 	filemap_invalidate_unlock_shared(mapping);
110 	return ret;
111 }
112 
113 static const struct vm_operations_struct secretmem_vm_ops = {
114 	.fault = secretmem_fault,
115 };
116 
secretmem_release(struct inode * inode,struct file * file)117 static int secretmem_release(struct inode *inode, struct file *file)
118 {
119 	atomic_dec(&secretmem_users);
120 	return 0;
121 }
122 
secretmem_mmap_prepare(struct vm_area_desc * desc)123 static int secretmem_mmap_prepare(struct vm_area_desc *desc)
124 {
125 	const unsigned long len = desc->end - desc->start;
126 
127 	if ((desc->vm_flags & (VM_SHARED | VM_MAYSHARE)) == 0)
128 		return -EINVAL;
129 
130 	if (!mlock_future_ok(desc->mm, desc->vm_flags | VM_LOCKED, len))
131 		return -EAGAIN;
132 
133 	desc->vm_flags |= VM_LOCKED | VM_DONTDUMP;
134 	desc->vm_ops = &secretmem_vm_ops;
135 
136 	return 0;
137 }
138 
vma_is_secretmem(struct vm_area_struct * vma)139 bool vma_is_secretmem(struct vm_area_struct *vma)
140 {
141 	return vma->vm_ops == &secretmem_vm_ops;
142 }
143 
144 static const struct file_operations secretmem_fops = {
145 	.release	= secretmem_release,
146 	.mmap_prepare	= secretmem_mmap_prepare,
147 };
148 
secretmem_migrate_folio(struct address_space * mapping,struct folio * dst,struct folio * src,enum migrate_mode mode)149 static int secretmem_migrate_folio(struct address_space *mapping,
150 		struct folio *dst, struct folio *src, enum migrate_mode mode)
151 {
152 	return -EBUSY;
153 }
154 
secretmem_free_folio(struct folio * folio)155 static void secretmem_free_folio(struct folio *folio)
156 {
157 	set_direct_map_default_noflush(&folio->page);
158 	folio_zero_segment(folio, 0, folio_size(folio));
159 }
160 
161 const struct address_space_operations secretmem_aops = {
162 	.dirty_folio	= noop_dirty_folio,
163 	.free_folio	= secretmem_free_folio,
164 	.migrate_folio	= secretmem_migrate_folio,
165 };
166 
secretmem_setattr(struct mnt_idmap * idmap,struct dentry * dentry,struct iattr * iattr)167 static int secretmem_setattr(struct mnt_idmap *idmap,
168 			     struct dentry *dentry, struct iattr *iattr)
169 {
170 	struct inode *inode = d_inode(dentry);
171 	struct address_space *mapping = inode->i_mapping;
172 	unsigned int ia_valid = iattr->ia_valid;
173 	int ret;
174 
175 	filemap_invalidate_lock(mapping);
176 
177 	if ((ia_valid & ATTR_SIZE) && inode->i_size)
178 		ret = -EINVAL;
179 	else
180 		ret = simple_setattr(idmap, dentry, iattr);
181 
182 	filemap_invalidate_unlock(mapping);
183 
184 	return ret;
185 }
186 
187 static const struct inode_operations secretmem_iops = {
188 	.setattr = secretmem_setattr,
189 };
190 
191 static struct vfsmount *secretmem_mnt;
192 
secretmem_file_create(unsigned long flags)193 static struct file *secretmem_file_create(unsigned long flags)
194 {
195 	struct file *file;
196 	struct inode *inode;
197 	const char *anon_name = "[secretmem]";
198 
199 	inode = anon_inode_make_secure_inode(secretmem_mnt->mnt_sb, anon_name, NULL);
200 	if (IS_ERR(inode))
201 		return ERR_CAST(inode);
202 
203 	file = alloc_file_pseudo(inode, secretmem_mnt, "secretmem",
204 				 O_RDWR, &secretmem_fops);
205 	if (IS_ERR(file))
206 		goto err_free_inode;
207 
208 	mapping_set_gfp_mask(inode->i_mapping, GFP_HIGHUSER);
209 	mapping_set_unevictable(inode->i_mapping);
210 
211 	inode->i_op = &secretmem_iops;
212 	inode->i_mapping->a_ops = &secretmem_aops;
213 
214 	/* pretend we are a normal file with zero size */
215 	inode->i_mode |= S_IFREG;
216 	inode->i_size = 0;
217 
218 	return file;
219 
220 err_free_inode:
221 	iput(inode);
222 	return file;
223 }
224 
SYSCALL_DEFINE1(memfd_secret,unsigned int,flags)225 SYSCALL_DEFINE1(memfd_secret, unsigned int, flags)
226 {
227 	struct file *file;
228 	int fd, err;
229 
230 	/* make sure local flags do not confict with global fcntl.h */
231 	BUILD_BUG_ON(SECRETMEM_FLAGS_MASK & O_CLOEXEC);
232 
233 	if (!secretmem_enable || !can_set_direct_map())
234 		return -ENOSYS;
235 
236 	if (flags & ~(SECRETMEM_FLAGS_MASK | O_CLOEXEC))
237 		return -EINVAL;
238 	if (atomic_read(&secretmem_users) < 0)
239 		return -ENFILE;
240 
241 	fd = get_unused_fd_flags(flags & O_CLOEXEC);
242 	if (fd < 0)
243 		return fd;
244 
245 	file = secretmem_file_create(flags);
246 	if (IS_ERR(file)) {
247 		err = PTR_ERR(file);
248 		goto err_put_fd;
249 	}
250 
251 	file->f_flags |= O_LARGEFILE;
252 
253 	atomic_inc(&secretmem_users);
254 	fd_install(fd, file);
255 	return fd;
256 
257 err_put_fd:
258 	put_unused_fd(fd);
259 	return err;
260 }
261 
secretmem_init_fs_context(struct fs_context * fc)262 static int secretmem_init_fs_context(struct fs_context *fc)
263 {
264 	return init_pseudo(fc, SECRETMEM_MAGIC) ? 0 : -ENOMEM;
265 }
266 
267 static struct file_system_type secretmem_fs = {
268 	.name		= "secretmem",
269 	.init_fs_context = secretmem_init_fs_context,
270 	.kill_sb	= kill_anon_super,
271 };
272 
secretmem_init(void)273 static int __init secretmem_init(void)
274 {
275 	if (!secretmem_enable || !can_set_direct_map())
276 		return 0;
277 
278 	secretmem_mnt = kern_mount(&secretmem_fs);
279 	if (IS_ERR(secretmem_mnt))
280 		return PTR_ERR(secretmem_mnt);
281 
282 	/* prevent secretmem mappings from ever getting PROT_EXEC */
283 	secretmem_mnt->mnt_flags |= MNT_NOEXEC;
284 
285 	return 0;
286 }
287 fs_initcall(secretmem_init);
288