blob: bd4a5960d9fe2d3239b281fa74a66c2d5ae888bf [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>
21#include <uapi/linux/memfd.h>
22
23/*
24 * We need a tag: a new tag would expand every radix_tree_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.
27 */
28#define MEMFD_TAG_PINNED PAGECACHE_TAG_TOWRITE
29#define LAST_SCAN 4 /* about 150ms max */
30
31static void memfd_tag_pins(struct address_space *mapping)
32{
33 struct radix_tree_iter iter;
34 void __rcu **slot;
35 pgoff_t start;
36 struct page *page;
Matthew Wilcox (Oracle)99b45e72019-10-25 09:58:34 -070037 unsigned int tagged = 0;
Mike Kravetz5d752602018-06-07 17:06:01 -070038
39 lru_add_drain();
40 start = 0;
Mike Kravetz5d752602018-06-07 17:06:01 -070041
Matthew Wilcox (Oracle)99b45e72019-10-25 09:58:34 -070042 xa_lock_irq(&mapping->i_pages);
Mike Kravetz5d752602018-06-07 17:06:01 -070043 radix_tree_for_each_slot(slot, &mapping->i_pages, &iter, start) {
zhong jiange4cc9c82019-11-18 11:26:08 +080044 page = radix_tree_deref_slot_protected(slot, &mapping->i_pages.xa_lock);
Mike Kravetz5d752602018-06-07 17:06:01 -070045 if (!page || radix_tree_exception(page)) {
46 if (radix_tree_deref_retry(page)) {
47 slot = radix_tree_iter_retry(&iter);
48 continue;
49 }
50 } else if (page_count(page) - page_mapcount(page) > 1) {
Mike Kravetz5d752602018-06-07 17:06:01 -070051 radix_tree_tag_set(&mapping->i_pages, iter.index,
52 MEMFD_TAG_PINNED);
Mike Kravetz5d752602018-06-07 17:06:01 -070053 }
54
Matthew Wilcox (Oracle)99b45e72019-10-25 09:58:34 -070055 if (++tagged % 1024)
56 continue;
57
58 slot = radix_tree_iter_resume(slot, &iter);
59 xa_unlock_irq(&mapping->i_pages);
60 cond_resched();
61 xa_lock_irq(&mapping->i_pages);
Mike Kravetz5d752602018-06-07 17:06:01 -070062 }
Matthew Wilcox (Oracle)99b45e72019-10-25 09:58:34 -070063 xa_unlock_irq(&mapping->i_pages);
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{
77 struct radix_tree_iter iter;
78 void __rcu **slot;
79 pgoff_t start;
80 struct page *page;
81 int error, scan;
82
83 memfd_tag_pins(mapping);
84
85 error = 0;
86 for (scan = 0; scan <= LAST_SCAN; scan++) {
87 if (!radix_tree_tagged(&mapping->i_pages, MEMFD_TAG_PINNED))
88 break;
89
90 if (!scan)
91 lru_add_drain_all();
92 else if (schedule_timeout_killable((HZ << scan) / 200))
93 scan = LAST_SCAN;
94
95 start = 0;
96 rcu_read_lock();
97 radix_tree_for_each_tagged(slot, &mapping->i_pages, &iter,
98 start, MEMFD_TAG_PINNED) {
99
100 page = radix_tree_deref_slot(slot);
101 if (radix_tree_exception(page)) {
102 if (radix_tree_deref_retry(page)) {
103 slot = radix_tree_iter_retry(&iter);
104 continue;
105 }
106
107 page = NULL;
108 }
109
110 if (page &&
111 page_count(page) - page_mapcount(page) != 1) {
112 if (scan < LAST_SCAN)
113 goto continue_resched;
114
115 /*
116 * On the last scan, we clean up all those tags
117 * we inserted; but make a note that we still
118 * found pages pinned.
119 */
120 error = -EBUSY;
121 }
122
123 xa_lock_irq(&mapping->i_pages);
124 radix_tree_tag_clear(&mapping->i_pages,
125 iter.index, MEMFD_TAG_PINNED);
126 xa_unlock_irq(&mapping->i_pages);
127continue_resched:
128 if (need_resched()) {
129 slot = radix_tree_iter_resume(slot, &iter);
130 cond_resched_rcu();
131 }
132 }
133 rcu_read_unlock();
134 }
135
136 return error;
137}
138
139static unsigned int *memfd_file_seals_ptr(struct file *file)
140{
141 if (shmem_file(file))
142 return &SHMEM_I(file_inode(file))->seals;
143
144#ifdef CONFIG_HUGETLBFS
145 if (is_file_hugepages(file))
146 return &HUGETLBFS_I(file_inode(file))->seals;
147#endif
148
149 return NULL;
150}
151
152#define F_ALL_SEALS (F_SEAL_SEAL | \
153 F_SEAL_SHRINK | \
154 F_SEAL_GROW | \
Joel Fernandes (Google)dec031f2019-01-12 15:38:15 -0500155 F_SEAL_WRITE | \
156 F_SEAL_FUTURE_WRITE)
Mike Kravetz5d752602018-06-07 17:06:01 -0700157
158static int memfd_add_seals(struct file *file, unsigned int seals)
159{
160 struct inode *inode = file_inode(file);
161 unsigned int *file_seals;
162 int error;
163
164 /*
165 * SEALING
166 * Sealing allows multiple parties to share a tmpfs or hugetlbfs file
167 * but restrict access to a specific subset of file operations. Seals
168 * can only be added, but never removed. This way, mutually untrusted
169 * parties can share common memory regions with a well-defined policy.
170 * A malicious peer can thus never perform unwanted operations on a
171 * shared object.
172 *
173 * Seals are only supported on special tmpfs or hugetlbfs files and
174 * always affect the whole underlying inode. Once a seal is set, it
175 * may prevent some kinds of access to the file. Currently, the
176 * following seals are defined:
177 * SEAL_SEAL: Prevent further seals from being set on this file
178 * SEAL_SHRINK: Prevent the file from shrinking
179 * SEAL_GROW: Prevent the file from growing
180 * SEAL_WRITE: Prevent write access to the file
181 *
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
225 *file_seals |= seals;
226 error = 0;
227
228unlock:
229 inode_unlock(inode);
230 return error;
231}
232
233static int memfd_get_seals(struct file *file)
234{
235 unsigned int *seals = memfd_file_seals_ptr(file);
236
237 return seals ? *seals : -EINVAL;
238}
239
240long memfd_fcntl(struct file *file, unsigned int cmd, unsigned long arg)
241{
242 long error;
243
244 switch (cmd) {
245 case F_ADD_SEALS:
246 /* disallow upper 32bit */
247 if (arg > UINT_MAX)
248 return -EINVAL;
249
250 error = memfd_add_seals(file, arg);
251 break;
252 case F_GET_SEALS:
253 error = memfd_get_seals(file);
254 break;
255 default:
256 error = -EINVAL;
257 break;
258 }
259
260 return error;
261}
262
263#define MFD_NAME_PREFIX "memfd:"
264#define MFD_NAME_PREFIX_LEN (sizeof(MFD_NAME_PREFIX) - 1)
265#define MFD_NAME_MAX_LEN (NAME_MAX - MFD_NAME_PREFIX_LEN)
266
267#define MFD_ALL_FLAGS (MFD_CLOEXEC | MFD_ALLOW_SEALING | MFD_HUGETLB)
268
269SYSCALL_DEFINE2(memfd_create,
270 const char __user *, uname,
271 unsigned int, flags)
272{
273 unsigned int *file_seals;
274 struct file *file;
275 int fd, error;
276 char *name;
277 long len;
278
279 if (!(flags & MFD_HUGETLB)) {
280 if (flags & ~(unsigned int)MFD_ALL_FLAGS)
281 return -EINVAL;
282 } else {
283 /* Allow huge page size encoding in flags. */
284 if (flags & ~(unsigned int)(MFD_ALL_FLAGS |
285 (MFD_HUGE_MASK << MFD_HUGE_SHIFT)))
286 return -EINVAL;
287 }
288
289 /* length includes terminating zero */
290 len = strnlen_user(uname, MFD_NAME_MAX_LEN + 1);
291 if (len <= 0)
292 return -EFAULT;
293 if (len > MFD_NAME_MAX_LEN + 1)
294 return -EINVAL;
295
296 name = kmalloc(len + MFD_NAME_PREFIX_LEN, GFP_KERNEL);
297 if (!name)
298 return -ENOMEM;
299
300 strcpy(name, MFD_NAME_PREFIX);
301 if (copy_from_user(&name[MFD_NAME_PREFIX_LEN], uname, len)) {
302 error = -EFAULT;
303 goto err_name;
304 }
305
306 /* terminating-zero may have changed after strnlen_user() returned */
307 if (name[len + MFD_NAME_PREFIX_LEN - 1]) {
308 error = -EFAULT;
309 goto err_name;
310 }
311
312 fd = get_unused_fd_flags((flags & MFD_CLOEXEC) ? O_CLOEXEC : 0);
313 if (fd < 0) {
314 error = fd;
315 goto err_name;
316 }
317
318 if (flags & MFD_HUGETLB) {
319 struct user_struct *user = NULL;
320
321 file = hugetlb_file_setup(name, 0, VM_NORESERVE, &user,
322 HUGETLB_ANONHUGE_INODE,
323 (flags >> MFD_HUGE_SHIFT) &
324 MFD_HUGE_MASK);
325 } else
326 file = shmem_file_setup(name, 0, VM_NORESERVE);
327 if (IS_ERR(file)) {
328 error = PTR_ERR(file);
329 goto err_fd;
330 }
331 file->f_mode |= FMODE_LSEEK | FMODE_PREAD | FMODE_PWRITE;
Al Viroc9c554f2018-07-11 14:19:04 -0400332 file->f_flags |= O_LARGEFILE;
Mike Kravetz5d752602018-06-07 17:06:01 -0700333
334 if (flags & MFD_ALLOW_SEALING) {
335 file_seals = memfd_file_seals_ptr(file);
336 *file_seals &= ~F_SEAL_SEAL;
337 }
338
339 fd_install(fd, file);
340 kfree(name);
341 return fd;
342
343err_fd:
344 put_unused_fd(fd);
345err_name:
346 kfree(name);
347 return error;
348}