blob: d3a1ba4208c90139f5c172751b7ca7320b2f54a9 [file] [log] [blame]
Mike Kravetz5d752602018-06-07 17:06:01 -07001/*
2 * memfd_create system call and file sealing support
3 *
4 * Code was originally included in shmem.c, and broken out to facilitate
5 * use by hugetlbfs as well as tmpfs.
6 *
7 * This file is released under the GPL.
8 */
9
10#include <linux/fs.h>
11#include <linux/vfs.h>
12#include <linux/pagemap.h>
13#include <linux/file.h>
14#include <linux/mm.h>
15#include <linux/sched/signal.h>
16#include <linux/khugepaged.h>
17#include <linux/syscalls.h>
18#include <linux/hugetlb.h>
19#include <linux/shmem_fs.h>
20#include <linux/memfd.h>
Jeff Xu105ff532022-12-15 00:12:03 +000021#include <linux/pid_namespace.h>
Mike Kravetz5d752602018-06-07 17:06:01 -070022#include <uapi/linux/memfd.h>
23
24/*
Matthew Wilcox23132162017-11-22 11:11:31 -050025 * We need a tag: a new tag would expand every xa_node by 8 bytes,
Mike Kravetz5d752602018-06-07 17:06:01 -070026 * so reuse a tag which we firmly believe is never set or cleared on tmpfs
27 * or hugetlbfs because they are memory only filesystems.
28 */
29#define MEMFD_TAG_PINNED PAGECACHE_TAG_TOWRITE
30#define LAST_SCAN 4 /* about 150ms max */
31
Matthew Wilcoxef3038a2017-11-22 08:37:38 -050032static void memfd_tag_pins(struct xa_state *xas)
Mike Kravetz5d752602018-06-07 17:06:01 -070033{
Mike Kravetz5d752602018-06-07 17:06:01 -070034 struct page *page;
Hugh Dickinsf2b277c2022-03-04 20:29:01 -080035 int latency = 0;
36 int cache_count;
Mike Kravetz5d752602018-06-07 17:06:01 -070037
38 lru_add_drain();
Mike Kravetz5d752602018-06-07 17:06:01 -070039
Matthew Wilcoxef3038a2017-11-22 08:37:38 -050040 xas_lock_irq(xas);
41 xas_for_each(xas, page, ULONG_MAX) {
Hugh Dickinsf2b277c2022-03-04 20:29:01 -080042 cache_count = 1;
43 if (!xa_is_value(page) &&
44 PageTransHuge(page) && !PageHuge(page))
45 cache_count = HPAGE_PMD_NR;
Mike Kravetz5d752602018-06-07 17:06:01 -070046
Hugh Dickinsf2b277c2022-03-04 20:29:01 -080047 if (!xa_is_value(page) &&
48 page_count(page) - total_mapcount(page) != cache_count)
49 xas_set_mark(xas, MEMFD_TAG_PINNED);
50 if (cache_count != 1)
51 xas_set(xas, page->index + cache_count);
52
53 latency += cache_count;
54 if (latency < XA_CHECK_SCHED)
Matthew Wilcoxef3038a2017-11-22 08:37:38 -050055 continue;
Hugh Dickinsf2b277c2022-03-04 20:29:01 -080056 latency = 0;
Matthew Wilcoxef3038a2017-11-22 08:37:38 -050057
58 xas_pause(xas);
59 xas_unlock_irq(xas);
60 cond_resched();
61 xas_lock_irq(xas);
Mike Kravetz5d752602018-06-07 17:06:01 -070062 }
Matthew Wilcoxef3038a2017-11-22 08:37:38 -050063 xas_unlock_irq(xas);
Mike Kravetz5d752602018-06-07 17:06:01 -070064}
65
66/*
67 * Setting SEAL_WRITE requires us to verify there's no pending writer. However,
68 * via get_user_pages(), drivers might have some pending I/O without any active
69 * user-space mappings (eg., direct-IO, AIO). Therefore, we look at all pages
70 * and see whether it has an elevated ref-count. If so, we tag them and wait for
71 * them to be dropped.
72 * The caller must guarantee that no new user will acquire writable references
73 * to those pages to avoid races.
74 */
75static int memfd_wait_for_pins(struct address_space *mapping)
76{
Matthew Wilcox23132162017-11-22 11:11:31 -050077 XA_STATE(xas, &mapping->i_pages, 0);
Mike Kravetz5d752602018-06-07 17:06:01 -070078 struct page *page;
79 int error, scan;
80
Matthew Wilcoxef3038a2017-11-22 08:37:38 -050081 memfd_tag_pins(&xas);
Mike Kravetz5d752602018-06-07 17:06:01 -070082
83 error = 0;
84 for (scan = 0; scan <= LAST_SCAN; scan++) {
Hugh Dickinsf2b277c2022-03-04 20:29:01 -080085 int latency = 0;
86 int cache_count;
Matthew Wilcox23132162017-11-22 11:11:31 -050087
88 if (!xas_marked(&xas, MEMFD_TAG_PINNED))
Mike Kravetz5d752602018-06-07 17:06:01 -070089 break;
90
91 if (!scan)
92 lru_add_drain_all();
93 else if (schedule_timeout_killable((HZ << scan) / 200))
94 scan = LAST_SCAN;
95
Matthew Wilcox23132162017-11-22 11:11:31 -050096 xas_set(&xas, 0);
97 xas_lock_irq(&xas);
98 xas_for_each_marked(&xas, page, ULONG_MAX, MEMFD_TAG_PINNED) {
99 bool clear = true;
Hugh Dickinsf2b277c2022-03-04 20:29:01 -0800100
101 cache_count = 1;
102 if (!xa_is_value(page) &&
103 PageTransHuge(page) && !PageHuge(page))
104 cache_count = HPAGE_PMD_NR;
105
106 if (!xa_is_value(page) && cache_count !=
107 page_count(page) - total_mapcount(page)) {
Mike Kravetz5d752602018-06-07 17:06:01 -0700108 /*
109 * On the last scan, we clean up all those tags
110 * we inserted; but make a note that we still
111 * found pages pinned.
112 */
Matthew Wilcox23132162017-11-22 11:11:31 -0500113 if (scan == LAST_SCAN)
114 error = -EBUSY;
115 else
116 clear = false;
Mike Kravetz5d752602018-06-07 17:06:01 -0700117 }
Matthew Wilcox23132162017-11-22 11:11:31 -0500118 if (clear)
119 xas_clear_mark(&xas, MEMFD_TAG_PINNED);
Hugh Dickinsf2b277c2022-03-04 20:29:01 -0800120
121 latency += cache_count;
122 if (latency < XA_CHECK_SCHED)
Matthew Wilcox23132162017-11-22 11:11:31 -0500123 continue;
Hugh Dickinsf2b277c2022-03-04 20:29:01 -0800124 latency = 0;
Mike Kravetz5d752602018-06-07 17:06:01 -0700125
Matthew Wilcox23132162017-11-22 11:11:31 -0500126 xas_pause(&xas);
127 xas_unlock_irq(&xas);
128 cond_resched();
129 xas_lock_irq(&xas);
Mike Kravetz5d752602018-06-07 17:06:01 -0700130 }
Matthew Wilcox23132162017-11-22 11:11:31 -0500131 xas_unlock_irq(&xas);
Mike Kravetz5d752602018-06-07 17:06:01 -0700132 }
133
134 return error;
135}
136
137static unsigned int *memfd_file_seals_ptr(struct file *file)
138{
139 if (shmem_file(file))
140 return &SHMEM_I(file_inode(file))->seals;
141
142#ifdef CONFIG_HUGETLBFS
143 if (is_file_hugepages(file))
144 return &HUGETLBFS_I(file_inode(file))->seals;
145#endif
146
147 return NULL;
148}
149
150#define F_ALL_SEALS (F_SEAL_SEAL | \
Daniel Verkamp6fd73532022-12-15 00:12:01 +0000151 F_SEAL_EXEC | \
Mike Kravetz5d752602018-06-07 17:06:01 -0700152 F_SEAL_SHRINK | \
153 F_SEAL_GROW | \
Joel Fernandes (Google)ab3948f2019-03-05 15:47:54 -0800154 F_SEAL_WRITE | \
155 F_SEAL_FUTURE_WRITE)
Mike Kravetz5d752602018-06-07 17:06:01 -0700156
157static int memfd_add_seals(struct file *file, unsigned int seals)
158{
159 struct inode *inode = file_inode(file);
160 unsigned int *file_seals;
161 int error;
162
163 /*
164 * SEALING
165 * Sealing allows multiple parties to share a tmpfs or hugetlbfs file
166 * but restrict access to a specific subset of file operations. Seals
167 * can only be added, but never removed. This way, mutually untrusted
168 * parties can share common memory regions with a well-defined policy.
169 * A malicious peer can thus never perform unwanted operations on a
170 * shared object.
171 *
172 * Seals are only supported on special tmpfs or hugetlbfs files and
173 * always affect the whole underlying inode. Once a seal is set, it
174 * may prevent some kinds of access to the file. Currently, the
175 * following seals are defined:
176 * SEAL_SEAL: Prevent further seals from being set on this file
177 * SEAL_SHRINK: Prevent the file from shrinking
178 * SEAL_GROW: Prevent the file from growing
179 * SEAL_WRITE: Prevent write access to the file
Daniel Verkamp6fd73532022-12-15 00:12:01 +0000180 * SEAL_EXEC: Prevent modification of the exec bits in the file mode
Mike Kravetz5d752602018-06-07 17:06:01 -0700181 *
182 * As we don't require any trust relationship between two parties, we
183 * must prevent seals from being removed. Therefore, sealing a file
184 * only adds a given set of seals to the file, it never touches
185 * existing seals. Furthermore, the "setting seals"-operation can be
186 * sealed itself, which basically prevents any further seal from being
187 * added.
188 *
189 * Semantics of sealing are only defined on volatile files. Only
190 * anonymous tmpfs and hugetlbfs files support sealing. More
191 * importantly, seals are never written to disk. Therefore, there's
192 * no plan to support it on other file types.
193 */
194
195 if (!(file->f_mode & FMODE_WRITE))
196 return -EPERM;
197 if (seals & ~(unsigned int)F_ALL_SEALS)
198 return -EINVAL;
199
200 inode_lock(inode);
201
202 file_seals = memfd_file_seals_ptr(file);
203 if (!file_seals) {
204 error = -EINVAL;
205 goto unlock;
206 }
207
208 if (*file_seals & F_SEAL_SEAL) {
209 error = -EPERM;
210 goto unlock;
211 }
212
213 if ((seals & F_SEAL_WRITE) && !(*file_seals & F_SEAL_WRITE)) {
214 error = mapping_deny_writable(file->f_mapping);
215 if (error)
216 goto unlock;
217
218 error = memfd_wait_for_pins(file->f_mapping);
219 if (error) {
220 mapping_allow_writable(file->f_mapping);
221 goto unlock;
222 }
223 }
224
Jeff Xuc4f75bc2022-12-15 00:12:04 +0000225 /*
226 * SEAL_EXEC implys SEAL_WRITE, making W^X from the start.
227 */
228 if (seals & F_SEAL_EXEC && inode->i_mode & 0111)
229 seals |= F_SEAL_SHRINK|F_SEAL_GROW|F_SEAL_WRITE|F_SEAL_FUTURE_WRITE;
230
Mike Kravetz5d752602018-06-07 17:06:01 -0700231 *file_seals |= seals;
232 error = 0;
233
234unlock:
235 inode_unlock(inode);
236 return error;
237}
238
239static int memfd_get_seals(struct file *file)
240{
241 unsigned int *seals = memfd_file_seals_ptr(file);
242
243 return seals ? *seals : -EINVAL;
244}
245
Luca Vizzarrof7b8f702023-04-14 16:24:58 +0100246long memfd_fcntl(struct file *file, unsigned int cmd, unsigned int arg)
Mike Kravetz5d752602018-06-07 17:06:01 -0700247{
248 long error;
249
250 switch (cmd) {
251 case F_ADD_SEALS:
Mike Kravetz5d752602018-06-07 17:06:01 -0700252 error = memfd_add_seals(file, arg);
253 break;
254 case F_GET_SEALS:
255 error = memfd_get_seals(file);
256 break;
257 default:
258 error = -EINVAL;
259 break;
260 }
261
262 return error;
263}
264
265#define MFD_NAME_PREFIX "memfd:"
266#define MFD_NAME_PREFIX_LEN (sizeof(MFD_NAME_PREFIX) - 1)
267#define MFD_NAME_MAX_LEN (NAME_MAX - MFD_NAME_PREFIX_LEN)
268
Jeff Xu105ff532022-12-15 00:12:03 +0000269#define MFD_ALL_FLAGS (MFD_CLOEXEC | MFD_ALLOW_SEALING | MFD_HUGETLB | MFD_NOEXEC_SEAL | MFD_EXEC)
Mike Kravetz5d752602018-06-07 17:06:01 -0700270
Jeff Xu72de2592023-07-05 06:33:14 +0000271static int check_sysctl_memfd_noexec(unsigned int *flags)
272{
273#ifdef CONFIG_SYSCTL
Aleksa Sarai9876cfe2023-08-14 18:41:00 +1000274 struct pid_namespace *ns = task_active_pid_ns(current);
275 int sysctl = pidns_memfd_noexec_scope(ns);
Jeff Xu72de2592023-07-05 06:33:14 +0000276
277 if (!(*flags & (MFD_EXEC | MFD_NOEXEC_SEAL))) {
Aleksa Sarai202e1422023-08-14 18:40:58 +1000278 if (sysctl >= MEMFD_NOEXEC_SCOPE_NOEXEC_SEAL)
Jeff Xu72de2592023-07-05 06:33:14 +0000279 *flags |= MFD_NOEXEC_SEAL;
280 else
281 *flags |= MFD_EXEC;
282 }
283
Aleksa Sarai202e1422023-08-14 18:40:58 +1000284 if (!(*flags & MFD_NOEXEC_SEAL) && sysctl >= MEMFD_NOEXEC_SCOPE_NOEXEC_ENFORCED) {
285 pr_err_ratelimited(
286 "%s[%d]: memfd_create() requires MFD_NOEXEC_SEAL with vm.memfd_noexec=%d\n",
287 current->comm, task_pid_nr(current), sysctl);
Jeff Xu72de2592023-07-05 06:33:14 +0000288 return -EACCES;
289 }
290#endif
Jeff Xu72de2592023-07-05 06:33:14 +0000291 return 0;
292}
293
Mike Kravetz5d752602018-06-07 17:06:01 -0700294SYSCALL_DEFINE2(memfd_create,
295 const char __user *, uname,
296 unsigned int, flags)
297{
298 unsigned int *file_seals;
299 struct file *file;
300 int fd, error;
301 char *name;
302 long len;
303
304 if (!(flags & MFD_HUGETLB)) {
305 if (flags & ~(unsigned int)MFD_ALL_FLAGS)
306 return -EINVAL;
307 } else {
308 /* Allow huge page size encoding in flags. */
309 if (flags & ~(unsigned int)(MFD_ALL_FLAGS |
310 (MFD_HUGE_MASK << MFD_HUGE_SHIFT)))
311 return -EINVAL;
312 }
313
Jeff Xu105ff532022-12-15 00:12:03 +0000314 /* Invalid if both EXEC and NOEXEC_SEAL are set.*/
315 if ((flags & MFD_EXEC) && (flags & MFD_NOEXEC_SEAL))
316 return -EINVAL;
317
Aleksa Sarai202e1422023-08-14 18:40:58 +1000318 error = check_sysctl_memfd_noexec(&flags);
319 if (error < 0)
320 return error;
Jeff Xu72de2592023-07-05 06:33:14 +0000321
Mike Kravetz5d752602018-06-07 17:06:01 -0700322 /* length includes terminating zero */
323 len = strnlen_user(uname, MFD_NAME_MAX_LEN + 1);
324 if (len <= 0)
325 return -EFAULT;
326 if (len > MFD_NAME_MAX_LEN + 1)
327 return -EINVAL;
328
329 name = kmalloc(len + MFD_NAME_PREFIX_LEN, GFP_KERNEL);
330 if (!name)
331 return -ENOMEM;
332
333 strcpy(name, MFD_NAME_PREFIX);
334 if (copy_from_user(&name[MFD_NAME_PREFIX_LEN], uname, len)) {
335 error = -EFAULT;
336 goto err_name;
337 }
338
339 /* terminating-zero may have changed after strnlen_user() returned */
340 if (name[len + MFD_NAME_PREFIX_LEN - 1]) {
341 error = -EFAULT;
342 goto err_name;
343 }
344
345 fd = get_unused_fd_flags((flags & MFD_CLOEXEC) ? O_CLOEXEC : 0);
346 if (fd < 0) {
347 error = fd;
348 goto err_name;
349 }
350
351 if (flags & MFD_HUGETLB) {
zhangyiru83c1fd72021-11-08 18:31:27 -0800352 file = hugetlb_file_setup(name, 0, VM_NORESERVE,
Mike Kravetz5d752602018-06-07 17:06:01 -0700353 HUGETLB_ANONHUGE_INODE,
354 (flags >> MFD_HUGE_SHIFT) &
355 MFD_HUGE_MASK);
356 } else
357 file = shmem_file_setup(name, 0, VM_NORESERVE);
358 if (IS_ERR(file)) {
359 error = PTR_ERR(file);
360 goto err_fd;
361 }
362 file->f_mode |= FMODE_LSEEK | FMODE_PREAD | FMODE_PWRITE;
Al Viroc9c554f2018-07-11 14:19:04 -0400363 file->f_flags |= O_LARGEFILE;
Mike Kravetz5d752602018-06-07 17:06:01 -0700364
Jeff Xu105ff532022-12-15 00:12:03 +0000365 if (flags & MFD_NOEXEC_SEAL) {
366 struct inode *inode = file_inode(file);
367
368 inode->i_mode &= ~0111;
369 file_seals = memfd_file_seals_ptr(file);
Roberto Sassu935d44a2023-06-07 15:24:27 +0200370 if (file_seals) {
371 *file_seals &= ~F_SEAL_SEAL;
372 *file_seals |= F_SEAL_EXEC;
373 }
Jeff Xu105ff532022-12-15 00:12:03 +0000374 } else if (flags & MFD_ALLOW_SEALING) {
375 /* MFD_EXEC and MFD_ALLOW_SEALING are set */
Mike Kravetz5d752602018-06-07 17:06:01 -0700376 file_seals = memfd_file_seals_ptr(file);
Roberto Sassu935d44a2023-06-07 15:24:27 +0200377 if (file_seals)
378 *file_seals &= ~F_SEAL_SEAL;
Mike Kravetz5d752602018-06-07 17:06:01 -0700379 }
380
381 fd_install(fd, file);
382 kfree(name);
383 return fd;
384
385err_fd:
386 put_unused_fd(fd);
387err_name:
388 kfree(name);
389 return error;
390}