2 * memfd_create system call and file sealing support
4 * Code was originally included in shmem.c, and broken out to facilitate
5 * use by hugetlbfs as well as tmpfs.
7 * This file is released under the GPL.
11 #include <linux/vfs.h>
12 #include <linux/pagemap.h>
13 #include <linux/file.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>
21 #include <uapi/linux/memfd.h>
24 * We need a tag: a new tag would expand every xa_node by 8 bytes,
25 * so reuse a tag which we firmly believe is never set or cleared on tmpfs
26 * or hugetlbfs because they are memory only filesystems.
28 #define MEMFD_TAG_PINNED PAGECACHE_TAG_TOWRITE
29 #define LAST_SCAN 4 /* about 150ms max */
31 static void memfd_tag_pins(struct xa_state *xas)
34 unsigned int tagged = 0;
39 xas_for_each(xas, page, ULONG_MAX) {
40 if (xa_is_value(page))
42 if (page_count(page) - page_mapcount(page) > 1)
43 xas_set_mark(xas, MEMFD_TAG_PINNED);
45 if (++tagged % XA_CHECK_SCHED)
57 * Setting SEAL_WRITE requires us to verify there's no pending writer. However,
58 * via get_user_pages(), drivers might have some pending I/O without any active
59 * user-space mappings (eg., direct-IO, AIO). Therefore, we look at all pages
60 * and see whether it has an elevated ref-count. If so, we tag them and wait for
62 * The caller must guarantee that no new user will acquire writable references
63 * to those pages to avoid races.
65 static int memfd_wait_for_pins(struct address_space *mapping)
67 XA_STATE(xas, &mapping->i_pages, 0);
74 for (scan = 0; scan <= LAST_SCAN; scan++) {
75 unsigned int tagged = 0;
77 if (!xas_marked(&xas, MEMFD_TAG_PINNED))
82 else if (schedule_timeout_killable((HZ << scan) / 200))
87 xas_for_each_marked(&xas, page, ULONG_MAX, MEMFD_TAG_PINNED) {
89 if (xa_is_value(page))
91 if (page_count(page) - page_mapcount(page) != 1) {
93 * On the last scan, we clean up all those tags
94 * we inserted; but make a note that we still
97 if (scan == LAST_SCAN)
103 xas_clear_mark(&xas, MEMFD_TAG_PINNED);
104 if (++tagged % XA_CHECK_SCHED)
108 xas_unlock_irq(&xas);
112 xas_unlock_irq(&xas);
118 static unsigned int *memfd_file_seals_ptr(struct file *file)
120 if (shmem_file(file))
121 return &SHMEM_I(file_inode(file))->seals;
123 #ifdef CONFIG_HUGETLBFS
124 if (is_file_hugepages(file))
125 return &HUGETLBFS_I(file_inode(file))->seals;
131 #define F_ALL_SEALS (F_SEAL_SEAL | \
137 static int memfd_add_seals(struct file *file, unsigned int seals)
139 struct inode *inode = file_inode(file);
140 unsigned int *file_seals;
145 * Sealing allows multiple parties to share a tmpfs or hugetlbfs file
146 * but restrict access to a specific subset of file operations. Seals
147 * can only be added, but never removed. This way, mutually untrusted
148 * parties can share common memory regions with a well-defined policy.
149 * A malicious peer can thus never perform unwanted operations on a
152 * Seals are only supported on special tmpfs or hugetlbfs files and
153 * always affect the whole underlying inode. Once a seal is set, it
154 * may prevent some kinds of access to the file. Currently, the
155 * following seals are defined:
156 * SEAL_SEAL: Prevent further seals from being set on this file
157 * SEAL_SHRINK: Prevent the file from shrinking
158 * SEAL_GROW: Prevent the file from growing
159 * SEAL_WRITE: Prevent write access to the file
161 * As we don't require any trust relationship between two parties, we
162 * must prevent seals from being removed. Therefore, sealing a file
163 * only adds a given set of seals to the file, it never touches
164 * existing seals. Furthermore, the "setting seals"-operation can be
165 * sealed itself, which basically prevents any further seal from being
168 * Semantics of sealing are only defined on volatile files. Only
169 * anonymous tmpfs and hugetlbfs files support sealing. More
170 * importantly, seals are never written to disk. Therefore, there's
171 * no plan to support it on other file types.
174 if (!(file->f_mode & FMODE_WRITE))
176 if (seals & ~(unsigned int)F_ALL_SEALS)
181 file_seals = memfd_file_seals_ptr(file);
187 if (*file_seals & F_SEAL_SEAL) {
192 if ((seals & F_SEAL_WRITE) && !(*file_seals & F_SEAL_WRITE)) {
193 error = mapping_deny_writable(file->f_mapping);
197 error = memfd_wait_for_pins(file->f_mapping);
199 mapping_allow_writable(file->f_mapping);
204 *file_seals |= seals;
212 static int memfd_get_seals(struct file *file)
214 unsigned int *seals = memfd_file_seals_ptr(file);
216 return seals ? *seals : -EINVAL;
219 long memfd_fcntl(struct file *file, unsigned int cmd, unsigned long arg)
225 /* disallow upper 32bit */
229 error = memfd_add_seals(file, arg);
232 error = memfd_get_seals(file);
242 #define MFD_NAME_PREFIX "memfd:"
243 #define MFD_NAME_PREFIX_LEN (sizeof(MFD_NAME_PREFIX) - 1)
244 #define MFD_NAME_MAX_LEN (NAME_MAX - MFD_NAME_PREFIX_LEN)
246 #define MFD_ALL_FLAGS (MFD_CLOEXEC | MFD_ALLOW_SEALING | MFD_HUGETLB)
248 SYSCALL_DEFINE2(memfd_create,
249 const char __user *, uname,
252 unsigned int *file_seals;
258 if (!(flags & MFD_HUGETLB)) {
259 if (flags & ~(unsigned int)MFD_ALL_FLAGS)
262 /* Allow huge page size encoding in flags. */
263 if (flags & ~(unsigned int)(MFD_ALL_FLAGS |
264 (MFD_HUGE_MASK << MFD_HUGE_SHIFT)))
268 /* length includes terminating zero */
269 len = strnlen_user(uname, MFD_NAME_MAX_LEN + 1);
272 if (len > MFD_NAME_MAX_LEN + 1)
275 name = kmalloc(len + MFD_NAME_PREFIX_LEN, GFP_KERNEL);
279 strcpy(name, MFD_NAME_PREFIX);
280 if (copy_from_user(&name[MFD_NAME_PREFIX_LEN], uname, len)) {
285 /* terminating-zero may have changed after strnlen_user() returned */
286 if (name[len + MFD_NAME_PREFIX_LEN - 1]) {
291 fd = get_unused_fd_flags((flags & MFD_CLOEXEC) ? O_CLOEXEC : 0);
297 if (flags & MFD_HUGETLB) {
298 struct user_struct *user = NULL;
300 file = hugetlb_file_setup(name, 0, VM_NORESERVE, &user,
301 HUGETLB_ANONHUGE_INODE,
302 (flags >> MFD_HUGE_SHIFT) &
305 file = shmem_file_setup(name, 0, VM_NORESERVE);
307 error = PTR_ERR(file);
310 file->f_mode |= FMODE_LSEEK | FMODE_PREAD | FMODE_PWRITE;
311 file->f_flags |= O_LARGEFILE;
313 if (flags & MFD_ALLOW_SEALING) {
314 file_seals = memfd_file_seals_ptr(file);
315 *file_seals &= ~F_SEAL_SEAL;
318 fd_install(fd, file);