btrfs: fix race in btrfs_free_dummy_fs_info()
[linux-block.git] / mm / shmem.c
CommitLineData
1da177e4
LT
1/*
2 * Resizable virtual memory filesystem for Linux.
3 *
4 * Copyright (C) 2000 Linus Torvalds.
5 * 2000 Transmeta Corp.
6 * 2000-2001 Christoph Rohland
7 * 2000-2001 SAP AG
8 * 2002 Red Hat Inc.
6922c0c7
HD
9 * Copyright (C) 2002-2011 Hugh Dickins.
10 * Copyright (C) 2011 Google Inc.
0edd73b3 11 * Copyright (C) 2002-2005 VERITAS Software Corporation.
1da177e4
LT
12 * Copyright (C) 2004 Andi Kleen, SuSE Labs
13 *
14 * Extended attribute support for tmpfs:
15 * Copyright (c) 2004, Luke Kenneth Casson Leighton <lkcl@lkcl.net>
16 * Copyright (c) 2004 Red Hat, Inc., James Morris <jmorris@redhat.com>
17 *
853ac43a
MM
18 * tiny-shmem:
19 * Copyright (c) 2004, 2008 Matt Mackall <mpm@selenic.com>
20 *
1da177e4
LT
21 * This file is released under the GPL.
22 */
23
853ac43a
MM
24#include <linux/fs.h>
25#include <linux/init.h>
26#include <linux/vfs.h>
27#include <linux/mount.h>
250297ed 28#include <linux/ramfs.h>
caefba17 29#include <linux/pagemap.h>
853ac43a
MM
30#include <linux/file.h>
31#include <linux/mm.h>
b95f1b31 32#include <linux/export.h>
853ac43a 33#include <linux/swap.h>
e2e40f2c 34#include <linux/uio.h>
f3f0e1d2 35#include <linux/khugepaged.h>
853ac43a
MM
36
37static struct vfsmount *shm_mnt;
38
39#ifdef CONFIG_SHMEM
1da177e4
LT
40/*
41 * This virtual memory filesystem is heavily based on the ramfs. It
42 * extends ramfs by the ability to use swap and honor resource limits
43 * which makes it a completely usable filesystem.
44 */
45
39f0247d 46#include <linux/xattr.h>
a5694255 47#include <linux/exportfs.h>
1c7c474c 48#include <linux/posix_acl.h>
feda821e 49#include <linux/posix_acl_xattr.h>
1da177e4 50#include <linux/mman.h>
1da177e4
LT
51#include <linux/string.h>
52#include <linux/slab.h>
53#include <linux/backing-dev.h>
54#include <linux/shmem_fs.h>
1da177e4 55#include <linux/writeback.h>
1da177e4 56#include <linux/blkdev.h>
bda97eab 57#include <linux/pagevec.h>
41ffe5d5 58#include <linux/percpu_counter.h>
83e4fa9c 59#include <linux/falloc.h>
708e3508 60#include <linux/splice.h>
1da177e4
LT
61#include <linux/security.h>
62#include <linux/swapops.h>
63#include <linux/mempolicy.h>
64#include <linux/namei.h>
b00dc3ad 65#include <linux/ctype.h>
304dbdb7 66#include <linux/migrate.h>
c1f60a5a 67#include <linux/highmem.h>
680d794b 68#include <linux/seq_file.h>
92562927 69#include <linux/magic.h>
9183df25 70#include <linux/syscalls.h>
40e041a2 71#include <linux/fcntl.h>
9183df25 72#include <uapi/linux/memfd.h>
304dbdb7 73
1da177e4 74#include <asm/uaccess.h>
1da177e4
LT
75#include <asm/pgtable.h>
76
dd56b046
MG
77#include "internal.h"
78
09cbfeaf
KS
79#define BLOCKS_PER_PAGE (PAGE_SIZE/512)
80#define VM_ACCT(size) (PAGE_ALIGN(size) >> PAGE_SHIFT)
1da177e4 81
1da177e4
LT
82/* Pretend that each entry is of this size in directory's i_size */
83#define BOGO_DIRENT_SIZE 20
84
69f07ec9
HD
85/* Symlink up to this size is kmalloc'ed instead of using a swappable page */
86#define SHORT_SYMLINK_LEN 128
87
1aac1400 88/*
f00cdc6d
HD
89 * shmem_fallocate communicates with shmem_fault or shmem_writepage via
90 * inode->i_private (with i_mutex making sure that it has only one user at
91 * a time): we would prefer not to enlarge the shmem inode just for that.
1aac1400
HD
92 */
93struct shmem_falloc {
8e205f77 94 wait_queue_head_t *waitq; /* faults into hole wait for punch to end */
1aac1400
HD
95 pgoff_t start; /* start of range currently being fallocated */
96 pgoff_t next; /* the next page offset to be fallocated */
97 pgoff_t nr_falloced; /* how many new pages have been fallocated */
98 pgoff_t nr_unswapped; /* how often writepage refused to swap out */
99};
100
b76db735 101#ifdef CONFIG_TMPFS
680d794b 102static unsigned long shmem_default_max_blocks(void)
103{
104 return totalram_pages / 2;
105}
106
107static unsigned long shmem_default_max_inodes(void)
108{
109 return min(totalram_pages - totalhigh_pages, totalram_pages / 2);
110}
b76db735 111#endif
680d794b 112
bde05d1c
HD
113static bool shmem_should_replace_page(struct page *page, gfp_t gfp);
114static int shmem_replace_page(struct page **pagep, gfp_t gfp,
115 struct shmem_inode_info *info, pgoff_t index);
68da9f05 116static int shmem_getpage_gfp(struct inode *inode, pgoff_t index,
9e18eb29
ALC
117 struct page **pagep, enum sgp_type sgp,
118 gfp_t gfp, struct mm_struct *fault_mm, int *fault_type);
68da9f05 119
f3f0e1d2 120int shmem_getpage(struct inode *inode, pgoff_t index,
9e18eb29 121 struct page **pagep, enum sgp_type sgp)
68da9f05
HD
122{
123 return shmem_getpage_gfp(inode, index, pagep, sgp,
9e18eb29 124 mapping_gfp_mask(inode->i_mapping), NULL, NULL);
68da9f05 125}
1da177e4 126
1da177e4
LT
127static inline struct shmem_sb_info *SHMEM_SB(struct super_block *sb)
128{
129 return sb->s_fs_info;
130}
131
132/*
133 * shmem_file_setup pre-accounts the whole fixed size of a VM object,
134 * for shared memory and for shared anonymous (/dev/zero) mappings
135 * (unless MAP_NORESERVE and sysctl_overcommit_memory <= 1),
136 * consistent with the pre-accounting of private mappings ...
137 */
138static inline int shmem_acct_size(unsigned long flags, loff_t size)
139{
0b0a0806 140 return (flags & VM_NORESERVE) ?
191c5424 141 0 : security_vm_enough_memory_mm(current->mm, VM_ACCT(size));
1da177e4
LT
142}
143
144static inline void shmem_unacct_size(unsigned long flags, loff_t size)
145{
0b0a0806 146 if (!(flags & VM_NORESERVE))
1da177e4
LT
147 vm_unacct_memory(VM_ACCT(size));
148}
149
77142517
KK
150static inline int shmem_reacct_size(unsigned long flags,
151 loff_t oldsize, loff_t newsize)
152{
153 if (!(flags & VM_NORESERVE)) {
154 if (VM_ACCT(newsize) > VM_ACCT(oldsize))
155 return security_vm_enough_memory_mm(current->mm,
156 VM_ACCT(newsize) - VM_ACCT(oldsize));
157 else if (VM_ACCT(newsize) < VM_ACCT(oldsize))
158 vm_unacct_memory(VM_ACCT(oldsize) - VM_ACCT(newsize));
159 }
160 return 0;
161}
162
1da177e4
LT
163/*
164 * ... whereas tmpfs objects are accounted incrementally as
75edd345 165 * pages are allocated, in order to allow large sparse files.
1da177e4
LT
166 * shmem_getpage reports shmem_acct_block failure as -ENOSPC not -ENOMEM,
167 * so that a failure on a sparse tmpfs mapping will give SIGBUS not OOM.
168 */
800d8c63 169static inline int shmem_acct_block(unsigned long flags, long pages)
1da177e4 170{
800d8c63
KS
171 if (!(flags & VM_NORESERVE))
172 return 0;
173
174 return security_vm_enough_memory_mm(current->mm,
175 pages * VM_ACCT(PAGE_SIZE));
1da177e4
LT
176}
177
178static inline void shmem_unacct_blocks(unsigned long flags, long pages)
179{
0b0a0806 180 if (flags & VM_NORESERVE)
09cbfeaf 181 vm_unacct_memory(pages * VM_ACCT(PAGE_SIZE));
1da177e4
LT
182}
183
759b9775 184static const struct super_operations shmem_ops;
f5e54d6e 185static const struct address_space_operations shmem_aops;
15ad7cdc 186static const struct file_operations shmem_file_operations;
92e1d5be
AV
187static const struct inode_operations shmem_inode_operations;
188static const struct inode_operations shmem_dir_inode_operations;
189static const struct inode_operations shmem_special_inode_operations;
f0f37e2f 190static const struct vm_operations_struct shmem_vm_ops;
779750d2 191static struct file_system_type shmem_fs_type;
1da177e4 192
1da177e4 193static LIST_HEAD(shmem_swaplist);
cb5f7b9a 194static DEFINE_MUTEX(shmem_swaplist_mutex);
1da177e4 195
5b04c689
PE
196static int shmem_reserve_inode(struct super_block *sb)
197{
198 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
199 if (sbinfo->max_inodes) {
200 spin_lock(&sbinfo->stat_lock);
201 if (!sbinfo->free_inodes) {
202 spin_unlock(&sbinfo->stat_lock);
203 return -ENOSPC;
204 }
205 sbinfo->free_inodes--;
206 spin_unlock(&sbinfo->stat_lock);
207 }
208 return 0;
209}
210
211static void shmem_free_inode(struct super_block *sb)
212{
213 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
214 if (sbinfo->max_inodes) {
215 spin_lock(&sbinfo->stat_lock);
216 sbinfo->free_inodes++;
217 spin_unlock(&sbinfo->stat_lock);
218 }
219}
220
46711810 221/**
41ffe5d5 222 * shmem_recalc_inode - recalculate the block usage of an inode
1da177e4
LT
223 * @inode: inode to recalc
224 *
225 * We have to calculate the free blocks since the mm can drop
226 * undirtied hole pages behind our back.
227 *
228 * But normally info->alloced == inode->i_mapping->nrpages + info->swapped
229 * So mm freed is info->alloced - (inode->i_mapping->nrpages + info->swapped)
230 *
231 * It has to be called with the spinlock held.
232 */
233static void shmem_recalc_inode(struct inode *inode)
234{
235 struct shmem_inode_info *info = SHMEM_I(inode);
236 long freed;
237
238 freed = info->alloced - info->swapped - inode->i_mapping->nrpages;
239 if (freed > 0) {
54af6042
HD
240 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
241 if (sbinfo->max_blocks)
242 percpu_counter_add(&sbinfo->used_blocks, -freed);
1da177e4 243 info->alloced -= freed;
54af6042 244 inode->i_blocks -= freed * BLOCKS_PER_PAGE;
1da177e4 245 shmem_unacct_blocks(info->flags, freed);
1da177e4
LT
246 }
247}
248
800d8c63
KS
249bool shmem_charge(struct inode *inode, long pages)
250{
251 struct shmem_inode_info *info = SHMEM_I(inode);
252 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
4595ef88 253 unsigned long flags;
800d8c63
KS
254
255 if (shmem_acct_block(info->flags, pages))
256 return false;
4595ef88 257 spin_lock_irqsave(&info->lock, flags);
800d8c63
KS
258 info->alloced += pages;
259 inode->i_blocks += pages * BLOCKS_PER_PAGE;
260 shmem_recalc_inode(inode);
4595ef88 261 spin_unlock_irqrestore(&info->lock, flags);
800d8c63
KS
262 inode->i_mapping->nrpages += pages;
263
264 if (!sbinfo->max_blocks)
265 return true;
266 if (percpu_counter_compare(&sbinfo->used_blocks,
267 sbinfo->max_blocks - pages) > 0) {
268 inode->i_mapping->nrpages -= pages;
4595ef88 269 spin_lock_irqsave(&info->lock, flags);
800d8c63
KS
270 info->alloced -= pages;
271 shmem_recalc_inode(inode);
4595ef88 272 spin_unlock_irqrestore(&info->lock, flags);
71664665 273 shmem_unacct_blocks(info->flags, pages);
800d8c63
KS
274 return false;
275 }
276 percpu_counter_add(&sbinfo->used_blocks, pages);
277 return true;
278}
279
280void shmem_uncharge(struct inode *inode, long pages)
281{
282 struct shmem_inode_info *info = SHMEM_I(inode);
283 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
4595ef88 284 unsigned long flags;
800d8c63 285
4595ef88 286 spin_lock_irqsave(&info->lock, flags);
800d8c63
KS
287 info->alloced -= pages;
288 inode->i_blocks -= pages * BLOCKS_PER_PAGE;
289 shmem_recalc_inode(inode);
4595ef88 290 spin_unlock_irqrestore(&info->lock, flags);
800d8c63
KS
291
292 if (sbinfo->max_blocks)
293 percpu_counter_sub(&sbinfo->used_blocks, pages);
71664665 294 shmem_unacct_blocks(info->flags, pages);
800d8c63
KS
295}
296
7a5d0fbb
HD
297/*
298 * Replace item expected in radix tree by a new item, while holding tree lock.
299 */
300static int shmem_radix_tree_replace(struct address_space *mapping,
301 pgoff_t index, void *expected, void *replacement)
302{
f7942430 303 struct radix_tree_node *node;
7a5d0fbb 304 void **pslot;
6dbaf22c 305 void *item;
7a5d0fbb
HD
306
307 VM_BUG_ON(!expected);
6dbaf22c 308 VM_BUG_ON(!replacement);
f7942430
JW
309 item = __radix_tree_lookup(&mapping->page_tree, index, &node, &pslot);
310 if (!item)
6dbaf22c 311 return -ENOENT;
7a5d0fbb
HD
312 if (item != expected)
313 return -ENOENT;
4d693d08
JW
314 __radix_tree_replace(&mapping->page_tree, node, pslot,
315 replacement, NULL, NULL);
7a5d0fbb
HD
316 return 0;
317}
318
d1899228
HD
319/*
320 * Sometimes, before we decide whether to proceed or to fail, we must check
321 * that an entry was not already brought back from swap by a racing thread.
322 *
323 * Checking page is not enough: by the time a SwapCache page is locked, it
324 * might be reused, and again be SwapCache, using the same swap as before.
325 */
326static bool shmem_confirm_swap(struct address_space *mapping,
327 pgoff_t index, swp_entry_t swap)
328{
329 void *item;
330
331 rcu_read_lock();
332 item = radix_tree_lookup(&mapping->page_tree, index);
333 rcu_read_unlock();
334 return item == swp_to_radix_entry(swap);
335}
336
5a6e75f8
KS
337/*
338 * Definitions for "huge tmpfs": tmpfs mounted with the huge= option
339 *
340 * SHMEM_HUGE_NEVER:
341 * disables huge pages for the mount;
342 * SHMEM_HUGE_ALWAYS:
343 * enables huge pages for the mount;
344 * SHMEM_HUGE_WITHIN_SIZE:
345 * only allocate huge pages if the page will be fully within i_size,
346 * also respect fadvise()/madvise() hints;
347 * SHMEM_HUGE_ADVISE:
348 * only allocate huge pages if requested with fadvise()/madvise();
349 */
350
351#define SHMEM_HUGE_NEVER 0
352#define SHMEM_HUGE_ALWAYS 1
353#define SHMEM_HUGE_WITHIN_SIZE 2
354#define SHMEM_HUGE_ADVISE 3
355
356/*
357 * Special values.
358 * Only can be set via /sys/kernel/mm/transparent_hugepage/shmem_enabled:
359 *
360 * SHMEM_HUGE_DENY:
361 * disables huge on shm_mnt and all mounts, for emergency use;
362 * SHMEM_HUGE_FORCE:
363 * enables huge on shm_mnt and all mounts, w/o needing option, for testing;
364 *
365 */
366#define SHMEM_HUGE_DENY (-1)
367#define SHMEM_HUGE_FORCE (-2)
368
e496cf3d 369#ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE
5a6e75f8
KS
370/* ifdef here to avoid bloating shmem.o when not necessary */
371
372int shmem_huge __read_mostly;
373
f1f5929c 374#if defined(CONFIG_SYSFS) || defined(CONFIG_TMPFS)
5a6e75f8
KS
375static int shmem_parse_huge(const char *str)
376{
377 if (!strcmp(str, "never"))
378 return SHMEM_HUGE_NEVER;
379 if (!strcmp(str, "always"))
380 return SHMEM_HUGE_ALWAYS;
381 if (!strcmp(str, "within_size"))
382 return SHMEM_HUGE_WITHIN_SIZE;
383 if (!strcmp(str, "advise"))
384 return SHMEM_HUGE_ADVISE;
385 if (!strcmp(str, "deny"))
386 return SHMEM_HUGE_DENY;
387 if (!strcmp(str, "force"))
388 return SHMEM_HUGE_FORCE;
389 return -EINVAL;
390}
391
392static const char *shmem_format_huge(int huge)
393{
394 switch (huge) {
395 case SHMEM_HUGE_NEVER:
396 return "never";
397 case SHMEM_HUGE_ALWAYS:
398 return "always";
399 case SHMEM_HUGE_WITHIN_SIZE:
400 return "within_size";
401 case SHMEM_HUGE_ADVISE:
402 return "advise";
403 case SHMEM_HUGE_DENY:
404 return "deny";
405 case SHMEM_HUGE_FORCE:
406 return "force";
407 default:
408 VM_BUG_ON(1);
409 return "bad_val";
410 }
411}
f1f5929c 412#endif
5a6e75f8 413
779750d2
KS
414static unsigned long shmem_unused_huge_shrink(struct shmem_sb_info *sbinfo,
415 struct shrink_control *sc, unsigned long nr_to_split)
416{
417 LIST_HEAD(list), *pos, *next;
418 struct inode *inode;
419 struct shmem_inode_info *info;
420 struct page *page;
421 unsigned long batch = sc ? sc->nr_to_scan : 128;
422 int removed = 0, split = 0;
423
424 if (list_empty(&sbinfo->shrinklist))
425 return SHRINK_STOP;
426
427 spin_lock(&sbinfo->shrinklist_lock);
428 list_for_each_safe(pos, next, &sbinfo->shrinklist) {
429 info = list_entry(pos, struct shmem_inode_info, shrinklist);
430
431 /* pin the inode */
432 inode = igrab(&info->vfs_inode);
433
434 /* inode is about to be evicted */
435 if (!inode) {
436 list_del_init(&info->shrinklist);
437 removed++;
438 goto next;
439 }
440
441 /* Check if there's anything to gain */
442 if (round_up(inode->i_size, PAGE_SIZE) ==
443 round_up(inode->i_size, HPAGE_PMD_SIZE)) {
444 list_del_init(&info->shrinklist);
445 removed++;
446 iput(inode);
447 goto next;
448 }
449
450 list_move(&info->shrinklist, &list);
451next:
452 if (!--batch)
453 break;
454 }
455 spin_unlock(&sbinfo->shrinklist_lock);
456
457 list_for_each_safe(pos, next, &list) {
458 int ret;
459
460 info = list_entry(pos, struct shmem_inode_info, shrinklist);
461 inode = &info->vfs_inode;
462
463 if (nr_to_split && split >= nr_to_split) {
464 iput(inode);
465 continue;
466 }
467
468 page = find_lock_page(inode->i_mapping,
469 (inode->i_size & HPAGE_PMD_MASK) >> PAGE_SHIFT);
470 if (!page)
471 goto drop;
472
473 if (!PageTransHuge(page)) {
474 unlock_page(page);
475 put_page(page);
476 goto drop;
477 }
478
479 ret = split_huge_page(page);
480 unlock_page(page);
481 put_page(page);
482
483 if (ret) {
484 /* split failed: leave it on the list */
485 iput(inode);
486 continue;
487 }
488
489 split++;
490drop:
491 list_del_init(&info->shrinklist);
492 removed++;
493 iput(inode);
494 }
495
496 spin_lock(&sbinfo->shrinklist_lock);
497 list_splice_tail(&list, &sbinfo->shrinklist);
498 sbinfo->shrinklist_len -= removed;
499 spin_unlock(&sbinfo->shrinklist_lock);
500
501 return split;
502}
503
504static long shmem_unused_huge_scan(struct super_block *sb,
505 struct shrink_control *sc)
506{
507 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
508
509 if (!READ_ONCE(sbinfo->shrinklist_len))
510 return SHRINK_STOP;
511
512 return shmem_unused_huge_shrink(sbinfo, sc, 0);
513}
514
515static long shmem_unused_huge_count(struct super_block *sb,
516 struct shrink_control *sc)
517{
518 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
519 return READ_ONCE(sbinfo->shrinklist_len);
520}
e496cf3d 521#else /* !CONFIG_TRANSPARENT_HUGE_PAGECACHE */
5a6e75f8
KS
522
523#define shmem_huge SHMEM_HUGE_DENY
524
779750d2
KS
525static unsigned long shmem_unused_huge_shrink(struct shmem_sb_info *sbinfo,
526 struct shrink_control *sc, unsigned long nr_to_split)
527{
528 return 0;
529}
e496cf3d 530#endif /* CONFIG_TRANSPARENT_HUGE_PAGECACHE */
5a6e75f8 531
46f65ec1
HD
532/*
533 * Like add_to_page_cache_locked, but error if expected item has gone.
534 */
535static int shmem_add_to_page_cache(struct page *page,
536 struct address_space *mapping,
fed400a1 537 pgoff_t index, void *expected)
46f65ec1 538{
800d8c63 539 int error, nr = hpage_nr_pages(page);
46f65ec1 540
800d8c63
KS
541 VM_BUG_ON_PAGE(PageTail(page), page);
542 VM_BUG_ON_PAGE(index != round_down(index, nr), page);
309381fe
SL
543 VM_BUG_ON_PAGE(!PageLocked(page), page);
544 VM_BUG_ON_PAGE(!PageSwapBacked(page), page);
800d8c63 545 VM_BUG_ON(expected && PageTransHuge(page));
46f65ec1 546
800d8c63 547 page_ref_add(page, nr);
b065b432
HD
548 page->mapping = mapping;
549 page->index = index;
550
551 spin_lock_irq(&mapping->tree_lock);
800d8c63
KS
552 if (PageTransHuge(page)) {
553 void __rcu **results;
554 pgoff_t idx;
555 int i;
556
557 error = 0;
558 if (radix_tree_gang_lookup_slot(&mapping->page_tree,
559 &results, &idx, index, 1) &&
560 idx < index + HPAGE_PMD_NR) {
561 error = -EEXIST;
562 }
563
564 if (!error) {
565 for (i = 0; i < HPAGE_PMD_NR; i++) {
566 error = radix_tree_insert(&mapping->page_tree,
567 index + i, page + i);
568 VM_BUG_ON(error);
569 }
570 count_vm_event(THP_FILE_ALLOC);
571 }
572 } else if (!expected) {
b065b432 573 error = radix_tree_insert(&mapping->page_tree, index, page);
800d8c63 574 } else {
b065b432
HD
575 error = shmem_radix_tree_replace(mapping, index, expected,
576 page);
800d8c63
KS
577 }
578
46f65ec1 579 if (!error) {
800d8c63
KS
580 mapping->nrpages += nr;
581 if (PageTransHuge(page))
11fb9989
MG
582 __inc_node_page_state(page, NR_SHMEM_THPS);
583 __mod_node_page_state(page_pgdat(page), NR_FILE_PAGES, nr);
584 __mod_node_page_state(page_pgdat(page), NR_SHMEM, nr);
b065b432
HD
585 spin_unlock_irq(&mapping->tree_lock);
586 } else {
587 page->mapping = NULL;
588 spin_unlock_irq(&mapping->tree_lock);
800d8c63 589 page_ref_sub(page, nr);
46f65ec1 590 }
46f65ec1
HD
591 return error;
592}
593
6922c0c7
HD
594/*
595 * Like delete_from_page_cache, but substitutes swap for page.
596 */
597static void shmem_delete_from_page_cache(struct page *page, void *radswap)
598{
599 struct address_space *mapping = page->mapping;
600 int error;
601
800d8c63
KS
602 VM_BUG_ON_PAGE(PageCompound(page), page);
603
6922c0c7
HD
604 spin_lock_irq(&mapping->tree_lock);
605 error = shmem_radix_tree_replace(mapping, page->index, page, radswap);
606 page->mapping = NULL;
607 mapping->nrpages--;
11fb9989
MG
608 __dec_node_page_state(page, NR_FILE_PAGES);
609 __dec_node_page_state(page, NR_SHMEM);
6922c0c7 610 spin_unlock_irq(&mapping->tree_lock);
09cbfeaf 611 put_page(page);
6922c0c7
HD
612 BUG_ON(error);
613}
614
7a5d0fbb
HD
615/*
616 * Remove swap entry from radix tree, free the swap and its page cache.
617 */
618static int shmem_free_swap(struct address_space *mapping,
619 pgoff_t index, void *radswap)
620{
6dbaf22c 621 void *old;
7a5d0fbb
HD
622
623 spin_lock_irq(&mapping->tree_lock);
6dbaf22c 624 old = radix_tree_delete_item(&mapping->page_tree, index, radswap);
7a5d0fbb 625 spin_unlock_irq(&mapping->tree_lock);
6dbaf22c
JW
626 if (old != radswap)
627 return -ENOENT;
628 free_swap_and_cache(radix_to_swp_entry(radswap));
629 return 0;
7a5d0fbb
HD
630}
631
6a15a370
VB
632/*
633 * Determine (in bytes) how many of the shmem object's pages mapped by the
48131e03 634 * given offsets are swapped out.
6a15a370
VB
635 *
636 * This is safe to call without i_mutex or mapping->tree_lock thanks to RCU,
637 * as long as the inode doesn't go away and racy results are not a problem.
638 */
48131e03
VB
639unsigned long shmem_partial_swap_usage(struct address_space *mapping,
640 pgoff_t start, pgoff_t end)
6a15a370 641{
6a15a370
VB
642 struct radix_tree_iter iter;
643 void **slot;
644 struct page *page;
48131e03 645 unsigned long swapped = 0;
6a15a370
VB
646
647 rcu_read_lock();
648
6a15a370
VB
649 radix_tree_for_each_slot(slot, &mapping->page_tree, &iter, start) {
650 if (iter.index >= end)
651 break;
652
653 page = radix_tree_deref_slot(slot);
654
2cf938aa
MW
655 if (radix_tree_deref_retry(page)) {
656 slot = radix_tree_iter_retry(&iter);
657 continue;
658 }
6a15a370
VB
659
660 if (radix_tree_exceptional_entry(page))
661 swapped++;
662
663 if (need_resched()) {
664 cond_resched_rcu();
7165092f 665 slot = radix_tree_iter_next(&iter);
6a15a370
VB
666 }
667 }
668
669 rcu_read_unlock();
670
671 return swapped << PAGE_SHIFT;
672}
673
48131e03
VB
674/*
675 * Determine (in bytes) how many of the shmem object's pages mapped by the
676 * given vma is swapped out.
677 *
678 * This is safe to call without i_mutex or mapping->tree_lock thanks to RCU,
679 * as long as the inode doesn't go away and racy results are not a problem.
680 */
681unsigned long shmem_swap_usage(struct vm_area_struct *vma)
682{
683 struct inode *inode = file_inode(vma->vm_file);
684 struct shmem_inode_info *info = SHMEM_I(inode);
685 struct address_space *mapping = inode->i_mapping;
686 unsigned long swapped;
687
688 /* Be careful as we don't hold info->lock */
689 swapped = READ_ONCE(info->swapped);
690
691 /*
692 * The easier cases are when the shmem object has nothing in swap, or
693 * the vma maps it whole. Then we can simply use the stats that we
694 * already track.
695 */
696 if (!swapped)
697 return 0;
698
699 if (!vma->vm_pgoff && vma->vm_end - vma->vm_start >= inode->i_size)
700 return swapped << PAGE_SHIFT;
701
702 /* Here comes the more involved part */
703 return shmem_partial_swap_usage(mapping,
704 linear_page_index(vma, vma->vm_start),
705 linear_page_index(vma, vma->vm_end));
706}
707
24513264
HD
708/*
709 * SysV IPC SHM_UNLOCK restore Unevictable pages to their evictable lists.
710 */
711void shmem_unlock_mapping(struct address_space *mapping)
712{
713 struct pagevec pvec;
714 pgoff_t indices[PAGEVEC_SIZE];
715 pgoff_t index = 0;
716
717 pagevec_init(&pvec, 0);
718 /*
719 * Minor point, but we might as well stop if someone else SHM_LOCKs it.
720 */
721 while (!mapping_unevictable(mapping)) {
722 /*
723 * Avoid pagevec_lookup(): find_get_pages() returns 0 as if it
724 * has finished, if it hits a row of PAGEVEC_SIZE swap entries.
725 */
0cd6144a
JW
726 pvec.nr = find_get_entries(mapping, index,
727 PAGEVEC_SIZE, pvec.pages, indices);
24513264
HD
728 if (!pvec.nr)
729 break;
730 index = indices[pvec.nr - 1] + 1;
0cd6144a 731 pagevec_remove_exceptionals(&pvec);
24513264
HD
732 check_move_unevictable_pages(pvec.pages, pvec.nr);
733 pagevec_release(&pvec);
734 cond_resched();
735 }
7a5d0fbb
HD
736}
737
738/*
739 * Remove range of pages and swap entries from radix tree, and free them.
1635f6a7 740 * If !unfalloc, truncate or punch hole; if unfalloc, undo failed fallocate.
7a5d0fbb 741 */
1635f6a7
HD
742static void shmem_undo_range(struct inode *inode, loff_t lstart, loff_t lend,
743 bool unfalloc)
1da177e4 744{
285b2c4f 745 struct address_space *mapping = inode->i_mapping;
1da177e4 746 struct shmem_inode_info *info = SHMEM_I(inode);
09cbfeaf
KS
747 pgoff_t start = (lstart + PAGE_SIZE - 1) >> PAGE_SHIFT;
748 pgoff_t end = (lend + 1) >> PAGE_SHIFT;
749 unsigned int partial_start = lstart & (PAGE_SIZE - 1);
750 unsigned int partial_end = (lend + 1) & (PAGE_SIZE - 1);
bda97eab 751 struct pagevec pvec;
7a5d0fbb
HD
752 pgoff_t indices[PAGEVEC_SIZE];
753 long nr_swaps_freed = 0;
285b2c4f 754 pgoff_t index;
bda97eab
HD
755 int i;
756
83e4fa9c
HD
757 if (lend == -1)
758 end = -1; /* unsigned, so actually very big */
bda97eab
HD
759
760 pagevec_init(&pvec, 0);
761 index = start;
83e4fa9c 762 while (index < end) {
0cd6144a
JW
763 pvec.nr = find_get_entries(mapping, index,
764 min(end - index, (pgoff_t)PAGEVEC_SIZE),
765 pvec.pages, indices);
7a5d0fbb
HD
766 if (!pvec.nr)
767 break;
bda97eab
HD
768 for (i = 0; i < pagevec_count(&pvec); i++) {
769 struct page *page = pvec.pages[i];
770
7a5d0fbb 771 index = indices[i];
83e4fa9c 772 if (index >= end)
bda97eab
HD
773 break;
774
7a5d0fbb 775 if (radix_tree_exceptional_entry(page)) {
1635f6a7
HD
776 if (unfalloc)
777 continue;
7a5d0fbb
HD
778 nr_swaps_freed += !shmem_free_swap(mapping,
779 index, page);
bda97eab 780 continue;
7a5d0fbb
HD
781 }
782
800d8c63
KS
783 VM_BUG_ON_PAGE(page_to_pgoff(page) != index, page);
784
7a5d0fbb 785 if (!trylock_page(page))
bda97eab 786 continue;
800d8c63
KS
787
788 if (PageTransTail(page)) {
789 /* Middle of THP: zero out the page */
790 clear_highpage(page);
791 unlock_page(page);
792 continue;
793 } else if (PageTransHuge(page)) {
794 if (index == round_down(end, HPAGE_PMD_NR)) {
795 /*
796 * Range ends in the middle of THP:
797 * zero out the page
798 */
799 clear_highpage(page);
800 unlock_page(page);
801 continue;
802 }
803 index += HPAGE_PMD_NR - 1;
804 i += HPAGE_PMD_NR - 1;
805 }
806
1635f6a7 807 if (!unfalloc || !PageUptodate(page)) {
800d8c63
KS
808 VM_BUG_ON_PAGE(PageTail(page), page);
809 if (page_mapping(page) == mapping) {
309381fe 810 VM_BUG_ON_PAGE(PageWriteback(page), page);
1635f6a7
HD
811 truncate_inode_page(mapping, page);
812 }
bda97eab 813 }
bda97eab
HD
814 unlock_page(page);
815 }
0cd6144a 816 pagevec_remove_exceptionals(&pvec);
24513264 817 pagevec_release(&pvec);
bda97eab
HD
818 cond_resched();
819 index++;
820 }
1da177e4 821
83e4fa9c 822 if (partial_start) {
bda97eab 823 struct page *page = NULL;
9e18eb29 824 shmem_getpage(inode, start - 1, &page, SGP_READ);
bda97eab 825 if (page) {
09cbfeaf 826 unsigned int top = PAGE_SIZE;
83e4fa9c
HD
827 if (start > end) {
828 top = partial_end;
829 partial_end = 0;
830 }
831 zero_user_segment(page, partial_start, top);
832 set_page_dirty(page);
833 unlock_page(page);
09cbfeaf 834 put_page(page);
83e4fa9c
HD
835 }
836 }
837 if (partial_end) {
838 struct page *page = NULL;
9e18eb29 839 shmem_getpage(inode, end, &page, SGP_READ);
83e4fa9c
HD
840 if (page) {
841 zero_user_segment(page, 0, partial_end);
bda97eab
HD
842 set_page_dirty(page);
843 unlock_page(page);
09cbfeaf 844 put_page(page);
bda97eab
HD
845 }
846 }
83e4fa9c
HD
847 if (start >= end)
848 return;
bda97eab
HD
849
850 index = start;
b1a36650 851 while (index < end) {
bda97eab 852 cond_resched();
0cd6144a
JW
853
854 pvec.nr = find_get_entries(mapping, index,
83e4fa9c 855 min(end - index, (pgoff_t)PAGEVEC_SIZE),
0cd6144a 856 pvec.pages, indices);
7a5d0fbb 857 if (!pvec.nr) {
b1a36650
HD
858 /* If all gone or hole-punch or unfalloc, we're done */
859 if (index == start || end != -1)
bda97eab 860 break;
b1a36650 861 /* But if truncating, restart to make sure all gone */
bda97eab
HD
862 index = start;
863 continue;
864 }
bda97eab
HD
865 for (i = 0; i < pagevec_count(&pvec); i++) {
866 struct page *page = pvec.pages[i];
867
7a5d0fbb 868 index = indices[i];
83e4fa9c 869 if (index >= end)
bda97eab
HD
870 break;
871
7a5d0fbb 872 if (radix_tree_exceptional_entry(page)) {
1635f6a7
HD
873 if (unfalloc)
874 continue;
b1a36650
HD
875 if (shmem_free_swap(mapping, index, page)) {
876 /* Swap was replaced by page: retry */
877 index--;
878 break;
879 }
880 nr_swaps_freed++;
7a5d0fbb
HD
881 continue;
882 }
883
bda97eab 884 lock_page(page);
800d8c63
KS
885
886 if (PageTransTail(page)) {
887 /* Middle of THP: zero out the page */
888 clear_highpage(page);
889 unlock_page(page);
890 /*
891 * Partial thp truncate due 'start' in middle
892 * of THP: don't need to look on these pages
893 * again on !pvec.nr restart.
894 */
895 if (index != round_down(end, HPAGE_PMD_NR))
896 start++;
897 continue;
898 } else if (PageTransHuge(page)) {
899 if (index == round_down(end, HPAGE_PMD_NR)) {
900 /*
901 * Range ends in the middle of THP:
902 * zero out the page
903 */
904 clear_highpage(page);
905 unlock_page(page);
906 continue;
907 }
908 index += HPAGE_PMD_NR - 1;
909 i += HPAGE_PMD_NR - 1;
910 }
911
1635f6a7 912 if (!unfalloc || !PageUptodate(page)) {
800d8c63
KS
913 VM_BUG_ON_PAGE(PageTail(page), page);
914 if (page_mapping(page) == mapping) {
309381fe 915 VM_BUG_ON_PAGE(PageWriteback(page), page);
1635f6a7 916 truncate_inode_page(mapping, page);
b1a36650
HD
917 } else {
918 /* Page was replaced by swap: retry */
919 unlock_page(page);
920 index--;
921 break;
1635f6a7 922 }
7a5d0fbb 923 }
bda97eab
HD
924 unlock_page(page);
925 }
0cd6144a 926 pagevec_remove_exceptionals(&pvec);
24513264 927 pagevec_release(&pvec);
bda97eab
HD
928 index++;
929 }
94c1e62d 930
4595ef88 931 spin_lock_irq(&info->lock);
7a5d0fbb 932 info->swapped -= nr_swaps_freed;
1da177e4 933 shmem_recalc_inode(inode);
4595ef88 934 spin_unlock_irq(&info->lock);
1635f6a7 935}
1da177e4 936
1635f6a7
HD
937void shmem_truncate_range(struct inode *inode, loff_t lstart, loff_t lend)
938{
939 shmem_undo_range(inode, lstart, lend, false);
078cd827 940 inode->i_ctime = inode->i_mtime = current_time(inode);
1da177e4 941}
94c1e62d 942EXPORT_SYMBOL_GPL(shmem_truncate_range);
1da177e4 943
44a30220
YZ
944static int shmem_getattr(struct vfsmount *mnt, struct dentry *dentry,
945 struct kstat *stat)
946{
947 struct inode *inode = dentry->d_inode;
948 struct shmem_inode_info *info = SHMEM_I(inode);
949
d0424c42 950 if (info->alloced - info->swapped != inode->i_mapping->nrpages) {
4595ef88 951 spin_lock_irq(&info->lock);
d0424c42 952 shmem_recalc_inode(inode);
4595ef88 953 spin_unlock_irq(&info->lock);
d0424c42 954 }
44a30220 955 generic_fillattr(inode, stat);
44a30220
YZ
956 return 0;
957}
958
94c1e62d 959static int shmem_setattr(struct dentry *dentry, struct iattr *attr)
1da177e4 960{
75c3cfa8 961 struct inode *inode = d_inode(dentry);
40e041a2 962 struct shmem_inode_info *info = SHMEM_I(inode);
779750d2 963 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
1da177e4
LT
964 int error;
965
31051c85 966 error = setattr_prepare(dentry, attr);
db78b877
CH
967 if (error)
968 return error;
969
94c1e62d
HD
970 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
971 loff_t oldsize = inode->i_size;
972 loff_t newsize = attr->ia_size;
3889e6e7 973
40e041a2
DH
974 /* protected by i_mutex */
975 if ((newsize < oldsize && (info->seals & F_SEAL_SHRINK)) ||
976 (newsize > oldsize && (info->seals & F_SEAL_GROW)))
977 return -EPERM;
978
94c1e62d 979 if (newsize != oldsize) {
77142517
KK
980 error = shmem_reacct_size(SHMEM_I(inode)->flags,
981 oldsize, newsize);
982 if (error)
983 return error;
94c1e62d 984 i_size_write(inode, newsize);
078cd827 985 inode->i_ctime = inode->i_mtime = current_time(inode);
94c1e62d 986 }
afa2db2f 987 if (newsize <= oldsize) {
94c1e62d 988 loff_t holebegin = round_up(newsize, PAGE_SIZE);
d0424c42
HD
989 if (oldsize > holebegin)
990 unmap_mapping_range(inode->i_mapping,
991 holebegin, 0, 1);
992 if (info->alloced)
993 shmem_truncate_range(inode,
994 newsize, (loff_t)-1);
94c1e62d 995 /* unmap again to remove racily COWed private pages */
d0424c42
HD
996 if (oldsize > holebegin)
997 unmap_mapping_range(inode->i_mapping,
998 holebegin, 0, 1);
779750d2
KS
999
1000 /*
1001 * Part of the huge page can be beyond i_size: subject
1002 * to shrink under memory pressure.
1003 */
1004 if (IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE)) {
1005 spin_lock(&sbinfo->shrinklist_lock);
1006 if (list_empty(&info->shrinklist)) {
1007 list_add_tail(&info->shrinklist,
1008 &sbinfo->shrinklist);
1009 sbinfo->shrinklist_len++;
1010 }
1011 spin_unlock(&sbinfo->shrinklist_lock);
1012 }
94c1e62d 1013 }
1da177e4
LT
1014 }
1015
db78b877 1016 setattr_copy(inode, attr);
db78b877 1017 if (attr->ia_valid & ATTR_MODE)
feda821e 1018 error = posix_acl_chmod(inode, inode->i_mode);
1da177e4
LT
1019 return error;
1020}
1021
1f895f75 1022static void shmem_evict_inode(struct inode *inode)
1da177e4 1023{
1da177e4 1024 struct shmem_inode_info *info = SHMEM_I(inode);
779750d2 1025 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
1da177e4 1026
3889e6e7 1027 if (inode->i_mapping->a_ops == &shmem_aops) {
1da177e4
LT
1028 shmem_unacct_size(info->flags, inode->i_size);
1029 inode->i_size = 0;
3889e6e7 1030 shmem_truncate_range(inode, 0, (loff_t)-1);
779750d2
KS
1031 if (!list_empty(&info->shrinklist)) {
1032 spin_lock(&sbinfo->shrinklist_lock);
1033 if (!list_empty(&info->shrinklist)) {
1034 list_del_init(&info->shrinklist);
1035 sbinfo->shrinklist_len--;
1036 }
1037 spin_unlock(&sbinfo->shrinklist_lock);
1038 }
1da177e4 1039 if (!list_empty(&info->swaplist)) {
cb5f7b9a 1040 mutex_lock(&shmem_swaplist_mutex);
1da177e4 1041 list_del_init(&info->swaplist);
cb5f7b9a 1042 mutex_unlock(&shmem_swaplist_mutex);
1da177e4 1043 }
3ed47db3 1044 }
b09e0fa4 1045
38f38657 1046 simple_xattrs_free(&info->xattrs);
0f3c42f5 1047 WARN_ON(inode->i_blocks);
5b04c689 1048 shmem_free_inode(inode->i_sb);
dbd5768f 1049 clear_inode(inode);
1da177e4
LT
1050}
1051
46f65ec1
HD
1052/*
1053 * If swap found in inode, free it and move page from swapcache to filecache.
1054 */
41ffe5d5 1055static int shmem_unuse_inode(struct shmem_inode_info *info,
bde05d1c 1056 swp_entry_t swap, struct page **pagep)
1da177e4 1057{
285b2c4f 1058 struct address_space *mapping = info->vfs_inode.i_mapping;
46f65ec1 1059 void *radswap;
41ffe5d5 1060 pgoff_t index;
bde05d1c
HD
1061 gfp_t gfp;
1062 int error = 0;
1da177e4 1063
46f65ec1 1064 radswap = swp_to_radix_entry(swap);
e504f3fd 1065 index = radix_tree_locate_item(&mapping->page_tree, radswap);
46f65ec1 1066 if (index == -1)
00501b53 1067 return -EAGAIN; /* tell shmem_unuse we found nothing */
2e0e26c7 1068
1b1b32f2
HD
1069 /*
1070 * Move _head_ to start search for next from here.
1f895f75 1071 * But be careful: shmem_evict_inode checks list_empty without taking
1b1b32f2 1072 * mutex, and there's an instant in list_move_tail when info->swaplist
285b2c4f 1073 * would appear empty, if it were the only one on shmem_swaplist.
1b1b32f2
HD
1074 */
1075 if (shmem_swaplist.next != &info->swaplist)
1076 list_move_tail(&shmem_swaplist, &info->swaplist);
2e0e26c7 1077
bde05d1c
HD
1078 gfp = mapping_gfp_mask(mapping);
1079 if (shmem_should_replace_page(*pagep, gfp)) {
1080 mutex_unlock(&shmem_swaplist_mutex);
1081 error = shmem_replace_page(pagep, gfp, info, index);
1082 mutex_lock(&shmem_swaplist_mutex);
1083 /*
1084 * We needed to drop mutex to make that restrictive page
0142ef6c
HD
1085 * allocation, but the inode might have been freed while we
1086 * dropped it: although a racing shmem_evict_inode() cannot
1087 * complete without emptying the radix_tree, our page lock
1088 * on this swapcache page is not enough to prevent that -
1089 * free_swap_and_cache() of our swap entry will only
1090 * trylock_page(), removing swap from radix_tree whatever.
1091 *
1092 * We must not proceed to shmem_add_to_page_cache() if the
1093 * inode has been freed, but of course we cannot rely on
1094 * inode or mapping or info to check that. However, we can
1095 * safely check if our swap entry is still in use (and here
1096 * it can't have got reused for another page): if it's still
1097 * in use, then the inode cannot have been freed yet, and we
1098 * can safely proceed (if it's no longer in use, that tells
1099 * nothing about the inode, but we don't need to unuse swap).
bde05d1c
HD
1100 */
1101 if (!page_swapcount(*pagep))
1102 error = -ENOENT;
1103 }
1104
d13d1443 1105 /*
778dd893
HD
1106 * We rely on shmem_swaplist_mutex, not only to protect the swaplist,
1107 * but also to hold up shmem_evict_inode(): so inode cannot be freed
1108 * beneath us (pagelock doesn't help until the page is in pagecache).
d13d1443 1109 */
bde05d1c
HD
1110 if (!error)
1111 error = shmem_add_to_page_cache(*pagep, mapping, index,
fed400a1 1112 radswap);
48f170fb 1113 if (error != -ENOMEM) {
46f65ec1
HD
1114 /*
1115 * Truncation and eviction use free_swap_and_cache(), which
1116 * only does trylock page: if we raced, best clean up here.
1117 */
bde05d1c
HD
1118 delete_from_swap_cache(*pagep);
1119 set_page_dirty(*pagep);
46f65ec1 1120 if (!error) {
4595ef88 1121 spin_lock_irq(&info->lock);
46f65ec1 1122 info->swapped--;
4595ef88 1123 spin_unlock_irq(&info->lock);
46f65ec1
HD
1124 swap_free(swap);
1125 }
1da177e4 1126 }
2e0e26c7 1127 return error;
1da177e4
LT
1128}
1129
1130/*
46f65ec1 1131 * Search through swapped inodes to find and replace swap by page.
1da177e4 1132 */
41ffe5d5 1133int shmem_unuse(swp_entry_t swap, struct page *page)
1da177e4 1134{
41ffe5d5 1135 struct list_head *this, *next;
1da177e4 1136 struct shmem_inode_info *info;
00501b53 1137 struct mem_cgroup *memcg;
bde05d1c
HD
1138 int error = 0;
1139
1140 /*
1141 * There's a faint possibility that swap page was replaced before
0142ef6c 1142 * caller locked it: caller will come back later with the right page.
bde05d1c 1143 */
0142ef6c 1144 if (unlikely(!PageSwapCache(page) || page_private(page) != swap.val))
bde05d1c 1145 goto out;
778dd893
HD
1146
1147 /*
1148 * Charge page using GFP_KERNEL while we can wait, before taking
1149 * the shmem_swaplist_mutex which might hold up shmem_writepage().
1150 * Charged back to the user (not to caller) when swap account is used.
778dd893 1151 */
f627c2f5
KS
1152 error = mem_cgroup_try_charge(page, current->mm, GFP_KERNEL, &memcg,
1153 false);
778dd893
HD
1154 if (error)
1155 goto out;
46f65ec1 1156 /* No radix_tree_preload: swap entry keeps a place for page in tree */
00501b53 1157 error = -EAGAIN;
1da177e4 1158
cb5f7b9a 1159 mutex_lock(&shmem_swaplist_mutex);
41ffe5d5
HD
1160 list_for_each_safe(this, next, &shmem_swaplist) {
1161 info = list_entry(this, struct shmem_inode_info, swaplist);
285b2c4f 1162 if (info->swapped)
00501b53 1163 error = shmem_unuse_inode(info, swap, &page);
6922c0c7
HD
1164 else
1165 list_del_init(&info->swaplist);
cb5f7b9a 1166 cond_resched();
00501b53 1167 if (error != -EAGAIN)
778dd893 1168 break;
00501b53 1169 /* found nothing in this: move on to search the next */
1da177e4 1170 }
cb5f7b9a 1171 mutex_unlock(&shmem_swaplist_mutex);
778dd893 1172
00501b53
JW
1173 if (error) {
1174 if (error != -ENOMEM)
1175 error = 0;
f627c2f5 1176 mem_cgroup_cancel_charge(page, memcg, false);
00501b53 1177 } else
f627c2f5 1178 mem_cgroup_commit_charge(page, memcg, true, false);
778dd893 1179out:
aaa46865 1180 unlock_page(page);
09cbfeaf 1181 put_page(page);
778dd893 1182 return error;
1da177e4
LT
1183}
1184
1185/*
1186 * Move the page from the page cache to the swap cache.
1187 */
1188static int shmem_writepage(struct page *page, struct writeback_control *wbc)
1189{
1190 struct shmem_inode_info *info;
1da177e4 1191 struct address_space *mapping;
1da177e4 1192 struct inode *inode;
6922c0c7
HD
1193 swp_entry_t swap;
1194 pgoff_t index;
1da177e4 1195
800d8c63 1196 VM_BUG_ON_PAGE(PageCompound(page), page);
1da177e4 1197 BUG_ON(!PageLocked(page));
1da177e4
LT
1198 mapping = page->mapping;
1199 index = page->index;
1200 inode = mapping->host;
1201 info = SHMEM_I(inode);
1202 if (info->flags & VM_LOCKED)
1203 goto redirty;
d9fe526a 1204 if (!total_swap_pages)
1da177e4
LT
1205 goto redirty;
1206
d9fe526a 1207 /*
97b713ba
CH
1208 * Our capabilities prevent regular writeback or sync from ever calling
1209 * shmem_writepage; but a stacking filesystem might use ->writepage of
1210 * its underlying filesystem, in which case tmpfs should write out to
1211 * swap only in response to memory pressure, and not for the writeback
1212 * threads or sync.
d9fe526a 1213 */
48f170fb
HD
1214 if (!wbc->for_reclaim) {
1215 WARN_ON_ONCE(1); /* Still happens? Tell us about it! */
1216 goto redirty;
1217 }
1635f6a7
HD
1218
1219 /*
1220 * This is somewhat ridiculous, but without plumbing a SWAP_MAP_FALLOC
1221 * value into swapfile.c, the only way we can correctly account for a
1222 * fallocated page arriving here is now to initialize it and write it.
1aac1400
HD
1223 *
1224 * That's okay for a page already fallocated earlier, but if we have
1225 * not yet completed the fallocation, then (a) we want to keep track
1226 * of this page in case we have to undo it, and (b) it may not be a
1227 * good idea to continue anyway, once we're pushing into swap. So
1228 * reactivate the page, and let shmem_fallocate() quit when too many.
1635f6a7
HD
1229 */
1230 if (!PageUptodate(page)) {
1aac1400
HD
1231 if (inode->i_private) {
1232 struct shmem_falloc *shmem_falloc;
1233 spin_lock(&inode->i_lock);
1234 shmem_falloc = inode->i_private;
1235 if (shmem_falloc &&
8e205f77 1236 !shmem_falloc->waitq &&
1aac1400
HD
1237 index >= shmem_falloc->start &&
1238 index < shmem_falloc->next)
1239 shmem_falloc->nr_unswapped++;
1240 else
1241 shmem_falloc = NULL;
1242 spin_unlock(&inode->i_lock);
1243 if (shmem_falloc)
1244 goto redirty;
1245 }
1635f6a7
HD
1246 clear_highpage(page);
1247 flush_dcache_page(page);
1248 SetPageUptodate(page);
1249 }
1250
48f170fb
HD
1251 swap = get_swap_page();
1252 if (!swap.val)
1253 goto redirty;
d9fe526a 1254
37e84351
VD
1255 if (mem_cgroup_try_charge_swap(page, swap))
1256 goto free_swap;
1257
b1dea800
HD
1258 /*
1259 * Add inode to shmem_unuse()'s list of swapped-out inodes,
6922c0c7
HD
1260 * if it's not already there. Do it now before the page is
1261 * moved to swap cache, when its pagelock no longer protects
b1dea800 1262 * the inode from eviction. But don't unlock the mutex until
6922c0c7
HD
1263 * we've incremented swapped, because shmem_unuse_inode() will
1264 * prune a !swapped inode from the swaplist under this mutex.
b1dea800 1265 */
48f170fb
HD
1266 mutex_lock(&shmem_swaplist_mutex);
1267 if (list_empty(&info->swaplist))
1268 list_add_tail(&info->swaplist, &shmem_swaplist);
b1dea800 1269
48f170fb 1270 if (add_to_swap_cache(page, swap, GFP_ATOMIC) == 0) {
4595ef88 1271 spin_lock_irq(&info->lock);
6922c0c7 1272 shmem_recalc_inode(inode);
267a4c76 1273 info->swapped++;
4595ef88 1274 spin_unlock_irq(&info->lock);
6922c0c7 1275
267a4c76
HD
1276 swap_shmem_alloc(swap);
1277 shmem_delete_from_page_cache(page, swp_to_radix_entry(swap));
1278
6922c0c7 1279 mutex_unlock(&shmem_swaplist_mutex);
d9fe526a 1280 BUG_ON(page_mapped(page));
9fab5619 1281 swap_writepage(page, wbc);
1da177e4
LT
1282 return 0;
1283 }
1284
6922c0c7 1285 mutex_unlock(&shmem_swaplist_mutex);
37e84351 1286free_swap:
0a31bc97 1287 swapcache_free(swap);
1da177e4
LT
1288redirty:
1289 set_page_dirty(page);
d9fe526a
HD
1290 if (wbc->for_reclaim)
1291 return AOP_WRITEPAGE_ACTIVATE; /* Return with page locked */
1292 unlock_page(page);
1293 return 0;
1da177e4
LT
1294}
1295
75edd345 1296#if defined(CONFIG_NUMA) && defined(CONFIG_TMPFS)
71fe804b 1297static void shmem_show_mpol(struct seq_file *seq, struct mempolicy *mpol)
680d794b 1298{
095f1fc4 1299 char buffer[64];
680d794b 1300
71fe804b 1301 if (!mpol || mpol->mode == MPOL_DEFAULT)
095f1fc4 1302 return; /* show nothing */
680d794b 1303
a7a88b23 1304 mpol_to_str(buffer, sizeof(buffer), mpol);
095f1fc4
LS
1305
1306 seq_printf(seq, ",mpol=%s", buffer);
680d794b 1307}
71fe804b
LS
1308
1309static struct mempolicy *shmem_get_sbmpol(struct shmem_sb_info *sbinfo)
1310{
1311 struct mempolicy *mpol = NULL;
1312 if (sbinfo->mpol) {
1313 spin_lock(&sbinfo->stat_lock); /* prevent replace/use races */
1314 mpol = sbinfo->mpol;
1315 mpol_get(mpol);
1316 spin_unlock(&sbinfo->stat_lock);
1317 }
1318 return mpol;
1319}
75edd345
HD
1320#else /* !CONFIG_NUMA || !CONFIG_TMPFS */
1321static inline void shmem_show_mpol(struct seq_file *seq, struct mempolicy *mpol)
1322{
1323}
1324static inline struct mempolicy *shmem_get_sbmpol(struct shmem_sb_info *sbinfo)
1325{
1326 return NULL;
1327}
1328#endif /* CONFIG_NUMA && CONFIG_TMPFS */
1329#ifndef CONFIG_NUMA
1330#define vm_policy vm_private_data
1331#endif
680d794b 1332
800d8c63
KS
1333static void shmem_pseudo_vma_init(struct vm_area_struct *vma,
1334 struct shmem_inode_info *info, pgoff_t index)
1335{
1336 /* Create a pseudo vma that just contains the policy */
1337 vma->vm_start = 0;
1338 /* Bias interleave by inode number to distribute better across nodes */
1339 vma->vm_pgoff = index + info->vfs_inode.i_ino;
1340 vma->vm_ops = NULL;
1341 vma->vm_policy = mpol_shared_policy_lookup(&info->policy, index);
1342}
1343
1344static void shmem_pseudo_vma_destroy(struct vm_area_struct *vma)
1345{
1346 /* Drop reference taken by mpol_shared_policy_lookup() */
1347 mpol_cond_put(vma->vm_policy);
1348}
1349
41ffe5d5
HD
1350static struct page *shmem_swapin(swp_entry_t swap, gfp_t gfp,
1351 struct shmem_inode_info *info, pgoff_t index)
1da177e4 1352{
1da177e4 1353 struct vm_area_struct pvma;
18a2f371 1354 struct page *page;
52cd3b07 1355
800d8c63 1356 shmem_pseudo_vma_init(&pvma, info, index);
18a2f371 1357 page = swapin_readahead(swap, gfp, &pvma, 0);
800d8c63 1358 shmem_pseudo_vma_destroy(&pvma);
18a2f371 1359
800d8c63
KS
1360 return page;
1361}
1362
1363static struct page *shmem_alloc_hugepage(gfp_t gfp,
1364 struct shmem_inode_info *info, pgoff_t index)
1365{
1366 struct vm_area_struct pvma;
1367 struct inode *inode = &info->vfs_inode;
1368 struct address_space *mapping = inode->i_mapping;
4620a06e 1369 pgoff_t idx, hindex;
800d8c63
KS
1370 void __rcu **results;
1371 struct page *page;
1372
e496cf3d 1373 if (!IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE))
800d8c63
KS
1374 return NULL;
1375
4620a06e 1376 hindex = round_down(index, HPAGE_PMD_NR);
800d8c63
KS
1377 rcu_read_lock();
1378 if (radix_tree_gang_lookup_slot(&mapping->page_tree, &results, &idx,
1379 hindex, 1) && idx < hindex + HPAGE_PMD_NR) {
1380 rcu_read_unlock();
1381 return NULL;
1382 }
1383 rcu_read_unlock();
18a2f371 1384
800d8c63
KS
1385 shmem_pseudo_vma_init(&pvma, info, hindex);
1386 page = alloc_pages_vma(gfp | __GFP_COMP | __GFP_NORETRY | __GFP_NOWARN,
1387 HPAGE_PMD_ORDER, &pvma, 0, numa_node_id(), true);
1388 shmem_pseudo_vma_destroy(&pvma);
1389 if (page)
1390 prep_transhuge_page(page);
18a2f371 1391 return page;
1da177e4
LT
1392}
1393
02098fea 1394static struct page *shmem_alloc_page(gfp_t gfp,
41ffe5d5 1395 struct shmem_inode_info *info, pgoff_t index)
1da177e4
LT
1396{
1397 struct vm_area_struct pvma;
18a2f371 1398 struct page *page;
1da177e4 1399
800d8c63
KS
1400 shmem_pseudo_vma_init(&pvma, info, index);
1401 page = alloc_page_vma(gfp, &pvma, 0);
1402 shmem_pseudo_vma_destroy(&pvma);
1403
1404 return page;
1405}
1406
1407static struct page *shmem_alloc_and_acct_page(gfp_t gfp,
1408 struct shmem_inode_info *info, struct shmem_sb_info *sbinfo,
1409 pgoff_t index, bool huge)
1410{
1411 struct page *page;
1412 int nr;
1413 int err = -ENOSPC;
52cd3b07 1414
e496cf3d 1415 if (!IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE))
800d8c63
KS
1416 huge = false;
1417 nr = huge ? HPAGE_PMD_NR : 1;
1418
1419 if (shmem_acct_block(info->flags, nr))
1420 goto failed;
1421 if (sbinfo->max_blocks) {
1422 if (percpu_counter_compare(&sbinfo->used_blocks,
1423 sbinfo->max_blocks - nr) > 0)
1424 goto unacct;
1425 percpu_counter_add(&sbinfo->used_blocks, nr);
1426 }
1427
1428 if (huge)
1429 page = shmem_alloc_hugepage(gfp, info, index);
1430 else
1431 page = shmem_alloc_page(gfp, info, index);
75edd345
HD
1432 if (page) {
1433 __SetPageLocked(page);
1434 __SetPageSwapBacked(page);
800d8c63 1435 return page;
75edd345 1436 }
18a2f371 1437
800d8c63
KS
1438 err = -ENOMEM;
1439 if (sbinfo->max_blocks)
1440 percpu_counter_add(&sbinfo->used_blocks, -nr);
1441unacct:
1442 shmem_unacct_blocks(info->flags, nr);
1443failed:
1444 return ERR_PTR(err);
1da177e4 1445}
71fe804b 1446
bde05d1c
HD
1447/*
1448 * When a page is moved from swapcache to shmem filecache (either by the
1449 * usual swapin of shmem_getpage_gfp(), or by the less common swapoff of
1450 * shmem_unuse_inode()), it may have been read in earlier from swap, in
1451 * ignorance of the mapping it belongs to. If that mapping has special
1452 * constraints (like the gma500 GEM driver, which requires RAM below 4GB),
1453 * we may need to copy to a suitable page before moving to filecache.
1454 *
1455 * In a future release, this may well be extended to respect cpuset and
1456 * NUMA mempolicy, and applied also to anonymous pages in do_swap_page();
1457 * but for now it is a simple matter of zone.
1458 */
1459static bool shmem_should_replace_page(struct page *page, gfp_t gfp)
1460{
1461 return page_zonenum(page) > gfp_zone(gfp);
1462}
1463
1464static int shmem_replace_page(struct page **pagep, gfp_t gfp,
1465 struct shmem_inode_info *info, pgoff_t index)
1466{
1467 struct page *oldpage, *newpage;
1468 struct address_space *swap_mapping;
1469 pgoff_t swap_index;
1470 int error;
1471
1472 oldpage = *pagep;
1473 swap_index = page_private(oldpage);
1474 swap_mapping = page_mapping(oldpage);
1475
1476 /*
1477 * We have arrived here because our zones are constrained, so don't
1478 * limit chance of success by further cpuset and node constraints.
1479 */
1480 gfp &= ~GFP_CONSTRAINT_MASK;
1481 newpage = shmem_alloc_page(gfp, info, index);
1482 if (!newpage)
1483 return -ENOMEM;
bde05d1c 1484
09cbfeaf 1485 get_page(newpage);
bde05d1c 1486 copy_highpage(newpage, oldpage);
0142ef6c 1487 flush_dcache_page(newpage);
bde05d1c 1488
9956edf3
HD
1489 __SetPageLocked(newpage);
1490 __SetPageSwapBacked(newpage);
bde05d1c 1491 SetPageUptodate(newpage);
bde05d1c 1492 set_page_private(newpage, swap_index);
bde05d1c
HD
1493 SetPageSwapCache(newpage);
1494
1495 /*
1496 * Our caller will very soon move newpage out of swapcache, but it's
1497 * a nice clean interface for us to replace oldpage by newpage there.
1498 */
1499 spin_lock_irq(&swap_mapping->tree_lock);
1500 error = shmem_radix_tree_replace(swap_mapping, swap_index, oldpage,
1501 newpage);
0142ef6c 1502 if (!error) {
11fb9989
MG
1503 __inc_node_page_state(newpage, NR_FILE_PAGES);
1504 __dec_node_page_state(oldpage, NR_FILE_PAGES);
0142ef6c 1505 }
bde05d1c 1506 spin_unlock_irq(&swap_mapping->tree_lock);
bde05d1c 1507
0142ef6c
HD
1508 if (unlikely(error)) {
1509 /*
1510 * Is this possible? I think not, now that our callers check
1511 * both PageSwapCache and page_private after getting page lock;
1512 * but be defensive. Reverse old to newpage for clear and free.
1513 */
1514 oldpage = newpage;
1515 } else {
6a93ca8f 1516 mem_cgroup_migrate(oldpage, newpage);
0142ef6c
HD
1517 lru_cache_add_anon(newpage);
1518 *pagep = newpage;
1519 }
bde05d1c
HD
1520
1521 ClearPageSwapCache(oldpage);
1522 set_page_private(oldpage, 0);
1523
1524 unlock_page(oldpage);
09cbfeaf
KS
1525 put_page(oldpage);
1526 put_page(oldpage);
0142ef6c 1527 return error;
bde05d1c
HD
1528}
1529
1da177e4 1530/*
68da9f05 1531 * shmem_getpage_gfp - find page in cache, or get from swap, or allocate
1da177e4
LT
1532 *
1533 * If we allocate a new one we do not mark it dirty. That's up to the
1534 * vm. If we swap it in we mark it dirty since we also free the swap
9e18eb29
ALC
1535 * entry since a page cannot live in both the swap and page cache.
1536 *
1537 * fault_mm and fault_type are only supplied by shmem_fault:
1538 * otherwise they are NULL.
1da177e4 1539 */
41ffe5d5 1540static int shmem_getpage_gfp(struct inode *inode, pgoff_t index,
9e18eb29
ALC
1541 struct page **pagep, enum sgp_type sgp, gfp_t gfp,
1542 struct mm_struct *fault_mm, int *fault_type)
1da177e4
LT
1543{
1544 struct address_space *mapping = inode->i_mapping;
23f919d4 1545 struct shmem_inode_info *info = SHMEM_I(inode);
1da177e4 1546 struct shmem_sb_info *sbinfo;
9e18eb29 1547 struct mm_struct *charge_mm;
00501b53 1548 struct mem_cgroup *memcg;
27ab7006 1549 struct page *page;
1da177e4 1550 swp_entry_t swap;
657e3038 1551 enum sgp_type sgp_huge = sgp;
800d8c63 1552 pgoff_t hindex = index;
1da177e4 1553 int error;
54af6042 1554 int once = 0;
1635f6a7 1555 int alloced = 0;
1da177e4 1556
09cbfeaf 1557 if (index > (MAX_LFS_FILESIZE >> PAGE_SHIFT))
1da177e4 1558 return -EFBIG;
657e3038
KS
1559 if (sgp == SGP_NOHUGE || sgp == SGP_HUGE)
1560 sgp = SGP_CACHE;
1da177e4 1561repeat:
54af6042 1562 swap.val = 0;
0cd6144a 1563 page = find_lock_entry(mapping, index);
54af6042
HD
1564 if (radix_tree_exceptional_entry(page)) {
1565 swap = radix_to_swp_entry(page);
1566 page = NULL;
1567 }
1568
75edd345 1569 if (sgp <= SGP_CACHE &&
09cbfeaf 1570 ((loff_t)index << PAGE_SHIFT) >= i_size_read(inode)) {
54af6042 1571 error = -EINVAL;
267a4c76 1572 goto unlock;
54af6042
HD
1573 }
1574
66d2f4d2
HD
1575 if (page && sgp == SGP_WRITE)
1576 mark_page_accessed(page);
1577
1635f6a7
HD
1578 /* fallocated page? */
1579 if (page && !PageUptodate(page)) {
1580 if (sgp != SGP_READ)
1581 goto clear;
1582 unlock_page(page);
09cbfeaf 1583 put_page(page);
1635f6a7
HD
1584 page = NULL;
1585 }
54af6042 1586 if (page || (sgp == SGP_READ && !swap.val)) {
54af6042
HD
1587 *pagep = page;
1588 return 0;
27ab7006
HD
1589 }
1590
1591 /*
54af6042
HD
1592 * Fast cache lookup did not find it:
1593 * bring it back from swap or allocate.
27ab7006 1594 */
54af6042 1595 sbinfo = SHMEM_SB(inode->i_sb);
9e18eb29 1596 charge_mm = fault_mm ? : current->mm;
1da177e4 1597
1da177e4
LT
1598 if (swap.val) {
1599 /* Look it up and read it in.. */
27ab7006
HD
1600 page = lookup_swap_cache(swap);
1601 if (!page) {
9e18eb29
ALC
1602 /* Or update major stats only when swapin succeeds?? */
1603 if (fault_type) {
68da9f05 1604 *fault_type |= VM_FAULT_MAJOR;
9e18eb29
ALC
1605 count_vm_event(PGMAJFAULT);
1606 mem_cgroup_count_vm_event(fault_mm, PGMAJFAULT);
1607 }
1608 /* Here we actually start the io */
41ffe5d5 1609 page = shmem_swapin(swap, gfp, info, index);
27ab7006 1610 if (!page) {
54af6042
HD
1611 error = -ENOMEM;
1612 goto failed;
1da177e4 1613 }
1da177e4
LT
1614 }
1615
1616 /* We have to do this with page locked to prevent races */
54af6042 1617 lock_page(page);
0142ef6c 1618 if (!PageSwapCache(page) || page_private(page) != swap.val ||
d1899228 1619 !shmem_confirm_swap(mapping, index, swap)) {
bde05d1c 1620 error = -EEXIST; /* try again */
d1899228 1621 goto unlock;
bde05d1c 1622 }
27ab7006 1623 if (!PageUptodate(page)) {
1da177e4 1624 error = -EIO;
54af6042 1625 goto failed;
1da177e4 1626 }
54af6042
HD
1627 wait_on_page_writeback(page);
1628
bde05d1c
HD
1629 if (shmem_should_replace_page(page, gfp)) {
1630 error = shmem_replace_page(&page, gfp, info, index);
1631 if (error)
1632 goto failed;
1da177e4 1633 }
27ab7006 1634
9e18eb29 1635 error = mem_cgroup_try_charge(page, charge_mm, gfp, &memcg,
f627c2f5 1636 false);
d1899228 1637 if (!error) {
aa3b1895 1638 error = shmem_add_to_page_cache(page, mapping, index,
fed400a1 1639 swp_to_radix_entry(swap));
215c02bc
HD
1640 /*
1641 * We already confirmed swap under page lock, and make
1642 * no memory allocation here, so usually no possibility
1643 * of error; but free_swap_and_cache() only trylocks a
1644 * page, so it is just possible that the entry has been
1645 * truncated or holepunched since swap was confirmed.
1646 * shmem_undo_range() will have done some of the
1647 * unaccounting, now delete_from_swap_cache() will do
93aa7d95 1648 * the rest.
215c02bc
HD
1649 * Reset swap.val? No, leave it so "failed" goes back to
1650 * "repeat": reading a hole and writing should succeed.
1651 */
00501b53 1652 if (error) {
f627c2f5 1653 mem_cgroup_cancel_charge(page, memcg, false);
215c02bc 1654 delete_from_swap_cache(page);
00501b53 1655 }
d1899228 1656 }
54af6042
HD
1657 if (error)
1658 goto failed;
1659
f627c2f5 1660 mem_cgroup_commit_charge(page, memcg, true, false);
00501b53 1661
4595ef88 1662 spin_lock_irq(&info->lock);
285b2c4f 1663 info->swapped--;
54af6042 1664 shmem_recalc_inode(inode);
4595ef88 1665 spin_unlock_irq(&info->lock);
54af6042 1666
66d2f4d2
HD
1667 if (sgp == SGP_WRITE)
1668 mark_page_accessed(page);
1669
54af6042 1670 delete_from_swap_cache(page);
27ab7006
HD
1671 set_page_dirty(page);
1672 swap_free(swap);
1673
54af6042 1674 } else {
800d8c63
KS
1675 /* shmem_symlink() */
1676 if (mapping->a_ops != &shmem_aops)
1677 goto alloc_nohuge;
657e3038 1678 if (shmem_huge == SHMEM_HUGE_DENY || sgp_huge == SGP_NOHUGE)
800d8c63
KS
1679 goto alloc_nohuge;
1680 if (shmem_huge == SHMEM_HUGE_FORCE)
1681 goto alloc_huge;
1682 switch (sbinfo->huge) {
1683 loff_t i_size;
1684 pgoff_t off;
1685 case SHMEM_HUGE_NEVER:
1686 goto alloc_nohuge;
1687 case SHMEM_HUGE_WITHIN_SIZE:
1688 off = round_up(index, HPAGE_PMD_NR);
1689 i_size = round_up(i_size_read(inode), PAGE_SIZE);
1690 if (i_size >= HPAGE_PMD_SIZE &&
1691 i_size >> PAGE_SHIFT >= off)
1692 goto alloc_huge;
1693 /* fallthrough */
1694 case SHMEM_HUGE_ADVISE:
657e3038
KS
1695 if (sgp_huge == SGP_HUGE)
1696 goto alloc_huge;
1697 /* TODO: implement fadvise() hints */
800d8c63 1698 goto alloc_nohuge;
54af6042 1699 }
1da177e4 1700
800d8c63
KS
1701alloc_huge:
1702 page = shmem_alloc_and_acct_page(gfp, info, sbinfo,
1703 index, true);
1704 if (IS_ERR(page)) {
1705alloc_nohuge: page = shmem_alloc_and_acct_page(gfp, info, sbinfo,
1706 index, false);
1da177e4 1707 }
800d8c63 1708 if (IS_ERR(page)) {
779750d2 1709 int retry = 5;
800d8c63
KS
1710 error = PTR_ERR(page);
1711 page = NULL;
779750d2
KS
1712 if (error != -ENOSPC)
1713 goto failed;
1714 /*
1715 * Try to reclaim some spece by splitting a huge page
1716 * beyond i_size on the filesystem.
1717 */
1718 while (retry--) {
1719 int ret;
1720 ret = shmem_unused_huge_shrink(sbinfo, NULL, 1);
1721 if (ret == SHRINK_STOP)
1722 break;
1723 if (ret)
1724 goto alloc_nohuge;
1725 }
800d8c63
KS
1726 goto failed;
1727 }
1728
1729 if (PageTransHuge(page))
1730 hindex = round_down(index, HPAGE_PMD_NR);
1731 else
1732 hindex = index;
1733
66d2f4d2 1734 if (sgp == SGP_WRITE)
eb39d618 1735 __SetPageReferenced(page);
66d2f4d2 1736
9e18eb29 1737 error = mem_cgroup_try_charge(page, charge_mm, gfp, &memcg,
800d8c63 1738 PageTransHuge(page));
54af6042 1739 if (error)
800d8c63
KS
1740 goto unacct;
1741 error = radix_tree_maybe_preload_order(gfp & GFP_RECLAIM_MASK,
1742 compound_order(page));
b065b432 1743 if (!error) {
800d8c63 1744 error = shmem_add_to_page_cache(page, mapping, hindex,
fed400a1 1745 NULL);
b065b432
HD
1746 radix_tree_preload_end();
1747 }
1748 if (error) {
800d8c63
KS
1749 mem_cgroup_cancel_charge(page, memcg,
1750 PageTransHuge(page));
1751 goto unacct;
b065b432 1752 }
800d8c63
KS
1753 mem_cgroup_commit_charge(page, memcg, false,
1754 PageTransHuge(page));
54af6042
HD
1755 lru_cache_add_anon(page);
1756
4595ef88 1757 spin_lock_irq(&info->lock);
800d8c63
KS
1758 info->alloced += 1 << compound_order(page);
1759 inode->i_blocks += BLOCKS_PER_PAGE << compound_order(page);
54af6042 1760 shmem_recalc_inode(inode);
4595ef88 1761 spin_unlock_irq(&info->lock);
1635f6a7 1762 alloced = true;
54af6042 1763
779750d2
KS
1764 if (PageTransHuge(page) &&
1765 DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE) <
1766 hindex + HPAGE_PMD_NR - 1) {
1767 /*
1768 * Part of the huge page is beyond i_size: subject
1769 * to shrink under memory pressure.
1770 */
1771 spin_lock(&sbinfo->shrinklist_lock);
1772 if (list_empty(&info->shrinklist)) {
1773 list_add_tail(&info->shrinklist,
1774 &sbinfo->shrinklist);
1775 sbinfo->shrinklist_len++;
1776 }
1777 spin_unlock(&sbinfo->shrinklist_lock);
1778 }
1779
ec9516fb 1780 /*
1635f6a7
HD
1781 * Let SGP_FALLOC use the SGP_WRITE optimization on a new page.
1782 */
1783 if (sgp == SGP_FALLOC)
1784 sgp = SGP_WRITE;
1785clear:
1786 /*
1787 * Let SGP_WRITE caller clear ends if write does not fill page;
1788 * but SGP_FALLOC on a page fallocated earlier must initialize
1789 * it now, lest undo on failure cancel our earlier guarantee.
ec9516fb 1790 */
800d8c63
KS
1791 if (sgp != SGP_WRITE && !PageUptodate(page)) {
1792 struct page *head = compound_head(page);
1793 int i;
1794
1795 for (i = 0; i < (1 << compound_order(head)); i++) {
1796 clear_highpage(head + i);
1797 flush_dcache_page(head + i);
1798 }
1799 SetPageUptodate(head);
ec9516fb 1800 }
1da177e4 1801 }
bde05d1c 1802
54af6042 1803 /* Perhaps the file has been truncated since we checked */
75edd345 1804 if (sgp <= SGP_CACHE &&
09cbfeaf 1805 ((loff_t)index << PAGE_SHIFT) >= i_size_read(inode)) {
267a4c76
HD
1806 if (alloced) {
1807 ClearPageDirty(page);
1808 delete_from_page_cache(page);
4595ef88 1809 spin_lock_irq(&info->lock);
267a4c76 1810 shmem_recalc_inode(inode);
4595ef88 1811 spin_unlock_irq(&info->lock);
267a4c76 1812 }
54af6042 1813 error = -EINVAL;
267a4c76 1814 goto unlock;
e83c32e8 1815 }
800d8c63 1816 *pagep = page + index - hindex;
54af6042 1817 return 0;
1da177e4 1818
59a16ead 1819 /*
54af6042 1820 * Error recovery.
59a16ead 1821 */
54af6042 1822unacct:
800d8c63
KS
1823 if (sbinfo->max_blocks)
1824 percpu_counter_sub(&sbinfo->used_blocks,
1825 1 << compound_order(page));
1826 shmem_unacct_blocks(info->flags, 1 << compound_order(page));
1827
1828 if (PageTransHuge(page)) {
1829 unlock_page(page);
1830 put_page(page);
1831 goto alloc_nohuge;
1832 }
54af6042 1833failed:
267a4c76 1834 if (swap.val && !shmem_confirm_swap(mapping, index, swap))
d1899228
HD
1835 error = -EEXIST;
1836unlock:
27ab7006 1837 if (page) {
54af6042 1838 unlock_page(page);
09cbfeaf 1839 put_page(page);
54af6042
HD
1840 }
1841 if (error == -ENOSPC && !once++) {
4595ef88 1842 spin_lock_irq(&info->lock);
54af6042 1843 shmem_recalc_inode(inode);
4595ef88 1844 spin_unlock_irq(&info->lock);
27ab7006 1845 goto repeat;
ff36b801 1846 }
d1899228 1847 if (error == -EEXIST) /* from above or from radix_tree_insert */
54af6042
HD
1848 goto repeat;
1849 return error;
1da177e4
LT
1850}
1851
10d20bd2
LT
1852/*
1853 * This is like autoremove_wake_function, but it removes the wait queue
1854 * entry unconditionally - even if something else had already woken the
1855 * target.
1856 */
1857static int synchronous_wake_function(wait_queue_t *wait, unsigned mode, int sync, void *key)
1858{
1859 int ret = default_wake_function(wait, mode, sync, key);
1860 list_del_init(&wait->task_list);
1861 return ret;
1862}
1863
d0217ac0 1864static int shmem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1da177e4 1865{
496ad9aa 1866 struct inode *inode = file_inode(vma->vm_file);
9e18eb29 1867 gfp_t gfp = mapping_gfp_mask(inode->i_mapping);
657e3038 1868 enum sgp_type sgp;
1da177e4 1869 int error;
68da9f05 1870 int ret = VM_FAULT_LOCKED;
1da177e4 1871
f00cdc6d
HD
1872 /*
1873 * Trinity finds that probing a hole which tmpfs is punching can
1874 * prevent the hole-punch from ever completing: which in turn
1875 * locks writers out with its hold on i_mutex. So refrain from
8e205f77
HD
1876 * faulting pages into the hole while it's being punched. Although
1877 * shmem_undo_range() does remove the additions, it may be unable to
1878 * keep up, as each new page needs its own unmap_mapping_range() call,
1879 * and the i_mmap tree grows ever slower to scan if new vmas are added.
1880 *
1881 * It does not matter if we sometimes reach this check just before the
1882 * hole-punch begins, so that one fault then races with the punch:
1883 * we just need to make racing faults a rare case.
1884 *
1885 * The implementation below would be much simpler if we just used a
1886 * standard mutex or completion: but we cannot take i_mutex in fault,
1887 * and bloating every shmem inode for this unlikely case would be sad.
f00cdc6d
HD
1888 */
1889 if (unlikely(inode->i_private)) {
1890 struct shmem_falloc *shmem_falloc;
1891
1892 spin_lock(&inode->i_lock);
1893 shmem_falloc = inode->i_private;
8e205f77
HD
1894 if (shmem_falloc &&
1895 shmem_falloc->waitq &&
1896 vmf->pgoff >= shmem_falloc->start &&
1897 vmf->pgoff < shmem_falloc->next) {
1898 wait_queue_head_t *shmem_falloc_waitq;
10d20bd2 1899 DEFINE_WAIT_FUNC(shmem_fault_wait, synchronous_wake_function);
8e205f77
HD
1900
1901 ret = VM_FAULT_NOPAGE;
f00cdc6d
HD
1902 if ((vmf->flags & FAULT_FLAG_ALLOW_RETRY) &&
1903 !(vmf->flags & FAULT_FLAG_RETRY_NOWAIT)) {
8e205f77 1904 /* It's polite to up mmap_sem if we can */
f00cdc6d 1905 up_read(&vma->vm_mm->mmap_sem);
8e205f77 1906 ret = VM_FAULT_RETRY;
f00cdc6d 1907 }
8e205f77
HD
1908
1909 shmem_falloc_waitq = shmem_falloc->waitq;
1910 prepare_to_wait(shmem_falloc_waitq, &shmem_fault_wait,
1911 TASK_UNINTERRUPTIBLE);
1912 spin_unlock(&inode->i_lock);
1913 schedule();
1914
1915 /*
1916 * shmem_falloc_waitq points into the shmem_fallocate()
1917 * stack of the hole-punching task: shmem_falloc_waitq
1918 * is usually invalid by the time we reach here, but
1919 * finish_wait() does not dereference it in that case;
1920 * though i_lock needed lest racing with wake_up_all().
1921 */
1922 spin_lock(&inode->i_lock);
1923 finish_wait(shmem_falloc_waitq, &shmem_fault_wait);
1924 spin_unlock(&inode->i_lock);
1925 return ret;
f00cdc6d 1926 }
8e205f77 1927 spin_unlock(&inode->i_lock);
f00cdc6d
HD
1928 }
1929
657e3038
KS
1930 sgp = SGP_CACHE;
1931 if (vma->vm_flags & VM_HUGEPAGE)
1932 sgp = SGP_HUGE;
1933 else if (vma->vm_flags & VM_NOHUGEPAGE)
1934 sgp = SGP_NOHUGE;
1935
1936 error = shmem_getpage_gfp(inode, vmf->pgoff, &vmf->page, sgp,
9e18eb29 1937 gfp, vma->vm_mm, &ret);
d0217ac0
NP
1938 if (error)
1939 return ((error == -ENOMEM) ? VM_FAULT_OOM : VM_FAULT_SIGBUS);
68da9f05 1940 return ret;
1da177e4
LT
1941}
1942
c01d5b30
HD
1943unsigned long shmem_get_unmapped_area(struct file *file,
1944 unsigned long uaddr, unsigned long len,
1945 unsigned long pgoff, unsigned long flags)
1946{
1947 unsigned long (*get_area)(struct file *,
1948 unsigned long, unsigned long, unsigned long, unsigned long);
1949 unsigned long addr;
1950 unsigned long offset;
1951 unsigned long inflated_len;
1952 unsigned long inflated_addr;
1953 unsigned long inflated_offset;
1954
1955 if (len > TASK_SIZE)
1956 return -ENOMEM;
1957
1958 get_area = current->mm->get_unmapped_area;
1959 addr = get_area(file, uaddr, len, pgoff, flags);
1960
e496cf3d 1961 if (!IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE))
c01d5b30
HD
1962 return addr;
1963 if (IS_ERR_VALUE(addr))
1964 return addr;
1965 if (addr & ~PAGE_MASK)
1966 return addr;
1967 if (addr > TASK_SIZE - len)
1968 return addr;
1969
1970 if (shmem_huge == SHMEM_HUGE_DENY)
1971 return addr;
1972 if (len < HPAGE_PMD_SIZE)
1973 return addr;
1974 if (flags & MAP_FIXED)
1975 return addr;
1976 /*
1977 * Our priority is to support MAP_SHARED mapped hugely;
1978 * and support MAP_PRIVATE mapped hugely too, until it is COWed.
1979 * But if caller specified an address hint, respect that as before.
1980 */
1981 if (uaddr)
1982 return addr;
1983
1984 if (shmem_huge != SHMEM_HUGE_FORCE) {
1985 struct super_block *sb;
1986
1987 if (file) {
1988 VM_BUG_ON(file->f_op != &shmem_file_operations);
1989 sb = file_inode(file)->i_sb;
1990 } else {
1991 /*
1992 * Called directly from mm/mmap.c, or drivers/char/mem.c
1993 * for "/dev/zero", to create a shared anonymous object.
1994 */
1995 if (IS_ERR(shm_mnt))
1996 return addr;
1997 sb = shm_mnt->mnt_sb;
1998 }
3089bf61 1999 if (SHMEM_SB(sb)->huge == SHMEM_HUGE_NEVER)
c01d5b30
HD
2000 return addr;
2001 }
2002
2003 offset = (pgoff << PAGE_SHIFT) & (HPAGE_PMD_SIZE-1);
2004 if (offset && offset + len < 2 * HPAGE_PMD_SIZE)
2005 return addr;
2006 if ((addr & (HPAGE_PMD_SIZE-1)) == offset)
2007 return addr;
2008
2009 inflated_len = len + HPAGE_PMD_SIZE - PAGE_SIZE;
2010 if (inflated_len > TASK_SIZE)
2011 return addr;
2012 if (inflated_len < len)
2013 return addr;
2014
2015 inflated_addr = get_area(NULL, 0, inflated_len, 0, flags);
2016 if (IS_ERR_VALUE(inflated_addr))
2017 return addr;
2018 if (inflated_addr & ~PAGE_MASK)
2019 return addr;
2020
2021 inflated_offset = inflated_addr & (HPAGE_PMD_SIZE-1);
2022 inflated_addr += offset - inflated_offset;
2023 if (inflated_offset > offset)
2024 inflated_addr += HPAGE_PMD_SIZE;
2025
2026 if (inflated_addr > TASK_SIZE - len)
2027 return addr;
2028 return inflated_addr;
2029}
2030
1da177e4 2031#ifdef CONFIG_NUMA
41ffe5d5 2032static int shmem_set_policy(struct vm_area_struct *vma, struct mempolicy *mpol)
1da177e4 2033{
496ad9aa 2034 struct inode *inode = file_inode(vma->vm_file);
41ffe5d5 2035 return mpol_set_shared_policy(&SHMEM_I(inode)->policy, vma, mpol);
1da177e4
LT
2036}
2037
d8dc74f2
AB
2038static struct mempolicy *shmem_get_policy(struct vm_area_struct *vma,
2039 unsigned long addr)
1da177e4 2040{
496ad9aa 2041 struct inode *inode = file_inode(vma->vm_file);
41ffe5d5 2042 pgoff_t index;
1da177e4 2043
41ffe5d5
HD
2044 index = ((addr - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
2045 return mpol_shared_policy_lookup(&SHMEM_I(inode)->policy, index);
1da177e4
LT
2046}
2047#endif
2048
2049int shmem_lock(struct file *file, int lock, struct user_struct *user)
2050{
496ad9aa 2051 struct inode *inode = file_inode(file);
1da177e4
LT
2052 struct shmem_inode_info *info = SHMEM_I(inode);
2053 int retval = -ENOMEM;
2054
4595ef88 2055 spin_lock_irq(&info->lock);
1da177e4
LT
2056 if (lock && !(info->flags & VM_LOCKED)) {
2057 if (!user_shm_lock(inode->i_size, user))
2058 goto out_nomem;
2059 info->flags |= VM_LOCKED;
89e004ea 2060 mapping_set_unevictable(file->f_mapping);
1da177e4
LT
2061 }
2062 if (!lock && (info->flags & VM_LOCKED) && user) {
2063 user_shm_unlock(inode->i_size, user);
2064 info->flags &= ~VM_LOCKED;
89e004ea 2065 mapping_clear_unevictable(file->f_mapping);
1da177e4
LT
2066 }
2067 retval = 0;
89e004ea 2068
1da177e4 2069out_nomem:
4595ef88 2070 spin_unlock_irq(&info->lock);
1da177e4
LT
2071 return retval;
2072}
2073
9b83a6a8 2074static int shmem_mmap(struct file *file, struct vm_area_struct *vma)
1da177e4
LT
2075{
2076 file_accessed(file);
2077 vma->vm_ops = &shmem_vm_ops;
e496cf3d 2078 if (IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE) &&
f3f0e1d2
KS
2079 ((vma->vm_start + ~HPAGE_PMD_MASK) & HPAGE_PMD_MASK) <
2080 (vma->vm_end & HPAGE_PMD_MASK)) {
2081 khugepaged_enter(vma, vma->vm_flags);
2082 }
1da177e4
LT
2083 return 0;
2084}
2085
454abafe 2086static struct inode *shmem_get_inode(struct super_block *sb, const struct inode *dir,
09208d15 2087 umode_t mode, dev_t dev, unsigned long flags)
1da177e4
LT
2088{
2089 struct inode *inode;
2090 struct shmem_inode_info *info;
2091 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
2092
5b04c689
PE
2093 if (shmem_reserve_inode(sb))
2094 return NULL;
1da177e4
LT
2095
2096 inode = new_inode(sb);
2097 if (inode) {
85fe4025 2098 inode->i_ino = get_next_ino();
454abafe 2099 inode_init_owner(inode, dir, mode);
1da177e4 2100 inode->i_blocks = 0;
078cd827 2101 inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
91828a40 2102 inode->i_generation = get_seconds();
1da177e4
LT
2103 info = SHMEM_I(inode);
2104 memset(info, 0, (char *)inode - (char *)info);
2105 spin_lock_init(&info->lock);
40e041a2 2106 info->seals = F_SEAL_SEAL;
0b0a0806 2107 info->flags = flags & VM_NORESERVE;
779750d2 2108 INIT_LIST_HEAD(&info->shrinklist);
1da177e4 2109 INIT_LIST_HEAD(&info->swaplist);
38f38657 2110 simple_xattrs_init(&info->xattrs);
72c04902 2111 cache_no_acl(inode);
1da177e4
LT
2112
2113 switch (mode & S_IFMT) {
2114 default:
39f0247d 2115 inode->i_op = &shmem_special_inode_operations;
1da177e4
LT
2116 init_special_inode(inode, mode, dev);
2117 break;
2118 case S_IFREG:
14fcc23f 2119 inode->i_mapping->a_ops = &shmem_aops;
1da177e4
LT
2120 inode->i_op = &shmem_inode_operations;
2121 inode->i_fop = &shmem_file_operations;
71fe804b
LS
2122 mpol_shared_policy_init(&info->policy,
2123 shmem_get_sbmpol(sbinfo));
1da177e4
LT
2124 break;
2125 case S_IFDIR:
d8c76e6f 2126 inc_nlink(inode);
1da177e4
LT
2127 /* Some things misbehave if size == 0 on a directory */
2128 inode->i_size = 2 * BOGO_DIRENT_SIZE;
2129 inode->i_op = &shmem_dir_inode_operations;
2130 inode->i_fop = &simple_dir_operations;
2131 break;
2132 case S_IFLNK:
2133 /*
2134 * Must not load anything in the rbtree,
2135 * mpol_free_shared_policy will not be called.
2136 */
71fe804b 2137 mpol_shared_policy_init(&info->policy, NULL);
1da177e4
LT
2138 break;
2139 }
5b04c689
PE
2140 } else
2141 shmem_free_inode(sb);
1da177e4
LT
2142 return inode;
2143}
2144
0cd6144a
JW
2145bool shmem_mapping(struct address_space *mapping)
2146{
f0774d88
SL
2147 if (!mapping->host)
2148 return false;
2149
97b713ba 2150 return mapping->host->i_sb->s_op == &shmem_ops;
0cd6144a
JW
2151}
2152
1da177e4 2153#ifdef CONFIG_TMPFS
92e1d5be 2154static const struct inode_operations shmem_symlink_inode_operations;
69f07ec9 2155static const struct inode_operations shmem_short_symlink_operations;
1da177e4 2156
6d9d88d0
JS
2157#ifdef CONFIG_TMPFS_XATTR
2158static int shmem_initxattrs(struct inode *, const struct xattr *, void *);
2159#else
2160#define shmem_initxattrs NULL
2161#endif
2162
1da177e4 2163static int
800d15a5
NP
2164shmem_write_begin(struct file *file, struct address_space *mapping,
2165 loff_t pos, unsigned len, unsigned flags,
2166 struct page **pagep, void **fsdata)
1da177e4 2167{
800d15a5 2168 struct inode *inode = mapping->host;
40e041a2 2169 struct shmem_inode_info *info = SHMEM_I(inode);
09cbfeaf 2170 pgoff_t index = pos >> PAGE_SHIFT;
40e041a2
DH
2171
2172 /* i_mutex is held by caller */
2173 if (unlikely(info->seals)) {
2174 if (info->seals & F_SEAL_WRITE)
2175 return -EPERM;
2176 if ((info->seals & F_SEAL_GROW) && pos + len > inode->i_size)
2177 return -EPERM;
2178 }
2179
9e18eb29 2180 return shmem_getpage(inode, index, pagep, SGP_WRITE);
800d15a5
NP
2181}
2182
2183static int
2184shmem_write_end(struct file *file, struct address_space *mapping,
2185 loff_t pos, unsigned len, unsigned copied,
2186 struct page *page, void *fsdata)
2187{
2188 struct inode *inode = mapping->host;
2189
d3602444
HD
2190 if (pos + copied > inode->i_size)
2191 i_size_write(inode, pos + copied);
2192
ec9516fb 2193 if (!PageUptodate(page)) {
800d8c63
KS
2194 struct page *head = compound_head(page);
2195 if (PageTransCompound(page)) {
2196 int i;
2197
2198 for (i = 0; i < HPAGE_PMD_NR; i++) {
2199 if (head + i == page)
2200 continue;
2201 clear_highpage(head + i);
2202 flush_dcache_page(head + i);
2203 }
2204 }
09cbfeaf
KS
2205 if (copied < PAGE_SIZE) {
2206 unsigned from = pos & (PAGE_SIZE - 1);
ec9516fb 2207 zero_user_segments(page, 0, from,
09cbfeaf 2208 from + copied, PAGE_SIZE);
ec9516fb 2209 }
800d8c63 2210 SetPageUptodate(head);
ec9516fb 2211 }
800d15a5 2212 set_page_dirty(page);
6746aff7 2213 unlock_page(page);
09cbfeaf 2214 put_page(page);
800d15a5 2215
800d15a5 2216 return copied;
1da177e4
LT
2217}
2218
2ba5bbed 2219static ssize_t shmem_file_read_iter(struct kiocb *iocb, struct iov_iter *to)
1da177e4 2220{
6e58e79d
AV
2221 struct file *file = iocb->ki_filp;
2222 struct inode *inode = file_inode(file);
1da177e4 2223 struct address_space *mapping = inode->i_mapping;
41ffe5d5
HD
2224 pgoff_t index;
2225 unsigned long offset;
a0ee5ec5 2226 enum sgp_type sgp = SGP_READ;
f7c1d074 2227 int error = 0;
cb66a7a1 2228 ssize_t retval = 0;
6e58e79d 2229 loff_t *ppos = &iocb->ki_pos;
a0ee5ec5
HD
2230
2231 /*
2232 * Might this read be for a stacking filesystem? Then when reading
2233 * holes of a sparse file, we actually need to allocate those pages,
2234 * and even mark them dirty, so it cannot exceed the max_blocks limit.
2235 */
777eda2c 2236 if (!iter_is_iovec(to))
75edd345 2237 sgp = SGP_CACHE;
1da177e4 2238
09cbfeaf
KS
2239 index = *ppos >> PAGE_SHIFT;
2240 offset = *ppos & ~PAGE_MASK;
1da177e4
LT
2241
2242 for (;;) {
2243 struct page *page = NULL;
41ffe5d5
HD
2244 pgoff_t end_index;
2245 unsigned long nr, ret;
1da177e4
LT
2246 loff_t i_size = i_size_read(inode);
2247
09cbfeaf 2248 end_index = i_size >> PAGE_SHIFT;
1da177e4
LT
2249 if (index > end_index)
2250 break;
2251 if (index == end_index) {
09cbfeaf 2252 nr = i_size & ~PAGE_MASK;
1da177e4
LT
2253 if (nr <= offset)
2254 break;
2255 }
2256
9e18eb29 2257 error = shmem_getpage(inode, index, &page, sgp);
6e58e79d
AV
2258 if (error) {
2259 if (error == -EINVAL)
2260 error = 0;
1da177e4
LT
2261 break;
2262 }
75edd345
HD
2263 if (page) {
2264 if (sgp == SGP_CACHE)
2265 set_page_dirty(page);
d3602444 2266 unlock_page(page);
75edd345 2267 }
1da177e4
LT
2268
2269 /*
2270 * We must evaluate after, since reads (unlike writes)
1b1dcc1b 2271 * are called without i_mutex protection against truncate
1da177e4 2272 */
09cbfeaf 2273 nr = PAGE_SIZE;
1da177e4 2274 i_size = i_size_read(inode);
09cbfeaf 2275 end_index = i_size >> PAGE_SHIFT;
1da177e4 2276 if (index == end_index) {
09cbfeaf 2277 nr = i_size & ~PAGE_MASK;
1da177e4
LT
2278 if (nr <= offset) {
2279 if (page)
09cbfeaf 2280 put_page(page);
1da177e4
LT
2281 break;
2282 }
2283 }
2284 nr -= offset;
2285
2286 if (page) {
2287 /*
2288 * If users can be writing to this page using arbitrary
2289 * virtual addresses, take care about potential aliasing
2290 * before reading the page on the kernel side.
2291 */
2292 if (mapping_writably_mapped(mapping))
2293 flush_dcache_page(page);
2294 /*
2295 * Mark the page accessed if we read the beginning.
2296 */
2297 if (!offset)
2298 mark_page_accessed(page);
b5810039 2299 } else {
1da177e4 2300 page = ZERO_PAGE(0);
09cbfeaf 2301 get_page(page);
b5810039 2302 }
1da177e4
LT
2303
2304 /*
2305 * Ok, we have the page, and it's up-to-date, so
2306 * now we can copy it to user space...
1da177e4 2307 */
2ba5bbed 2308 ret = copy_page_to_iter(page, offset, nr, to);
6e58e79d 2309 retval += ret;
1da177e4 2310 offset += ret;
09cbfeaf
KS
2311 index += offset >> PAGE_SHIFT;
2312 offset &= ~PAGE_MASK;
1da177e4 2313
09cbfeaf 2314 put_page(page);
2ba5bbed 2315 if (!iov_iter_count(to))
1da177e4 2316 break;
6e58e79d
AV
2317 if (ret < nr) {
2318 error = -EFAULT;
2319 break;
2320 }
1da177e4
LT
2321 cond_resched();
2322 }
2323
09cbfeaf 2324 *ppos = ((loff_t) index << PAGE_SHIFT) + offset;
6e58e79d
AV
2325 file_accessed(file);
2326 return retval ? retval : error;
1da177e4
LT
2327}
2328
220f2ac9
HD
2329/*
2330 * llseek SEEK_DATA or SEEK_HOLE through the radix_tree.
2331 */
2332static pgoff_t shmem_seek_hole_data(struct address_space *mapping,
965c8e59 2333 pgoff_t index, pgoff_t end, int whence)
220f2ac9
HD
2334{
2335 struct page *page;
2336 struct pagevec pvec;
2337 pgoff_t indices[PAGEVEC_SIZE];
2338 bool done = false;
2339 int i;
2340
2341 pagevec_init(&pvec, 0);
2342 pvec.nr = 1; /* start small: we may be there already */
2343 while (!done) {
0cd6144a 2344 pvec.nr = find_get_entries(mapping, index,
220f2ac9
HD
2345 pvec.nr, pvec.pages, indices);
2346 if (!pvec.nr) {
965c8e59 2347 if (whence == SEEK_DATA)
220f2ac9
HD
2348 index = end;
2349 break;
2350 }
2351 for (i = 0; i < pvec.nr; i++, index++) {
2352 if (index < indices[i]) {
965c8e59 2353 if (whence == SEEK_HOLE) {
220f2ac9
HD
2354 done = true;
2355 break;
2356 }
2357 index = indices[i];
2358 }
2359 page = pvec.pages[i];
2360 if (page && !radix_tree_exceptional_entry(page)) {
2361 if (!PageUptodate(page))
2362 page = NULL;
2363 }
2364 if (index >= end ||
965c8e59
AM
2365 (page && whence == SEEK_DATA) ||
2366 (!page && whence == SEEK_HOLE)) {
220f2ac9
HD
2367 done = true;
2368 break;
2369 }
2370 }
0cd6144a 2371 pagevec_remove_exceptionals(&pvec);
220f2ac9
HD
2372 pagevec_release(&pvec);
2373 pvec.nr = PAGEVEC_SIZE;
2374 cond_resched();
2375 }
2376 return index;
2377}
2378
965c8e59 2379static loff_t shmem_file_llseek(struct file *file, loff_t offset, int whence)
220f2ac9
HD
2380{
2381 struct address_space *mapping = file->f_mapping;
2382 struct inode *inode = mapping->host;
2383 pgoff_t start, end;
2384 loff_t new_offset;
2385
965c8e59
AM
2386 if (whence != SEEK_DATA && whence != SEEK_HOLE)
2387 return generic_file_llseek_size(file, offset, whence,
220f2ac9 2388 MAX_LFS_FILESIZE, i_size_read(inode));
5955102c 2389 inode_lock(inode);
220f2ac9
HD
2390 /* We're holding i_mutex so we can access i_size directly */
2391
2392 if (offset < 0)
2393 offset = -EINVAL;
2394 else if (offset >= inode->i_size)
2395 offset = -ENXIO;
2396 else {
09cbfeaf
KS
2397 start = offset >> PAGE_SHIFT;
2398 end = (inode->i_size + PAGE_SIZE - 1) >> PAGE_SHIFT;
965c8e59 2399 new_offset = shmem_seek_hole_data(mapping, start, end, whence);
09cbfeaf 2400 new_offset <<= PAGE_SHIFT;
220f2ac9
HD
2401 if (new_offset > offset) {
2402 if (new_offset < inode->i_size)
2403 offset = new_offset;
965c8e59 2404 else if (whence == SEEK_DATA)
220f2ac9
HD
2405 offset = -ENXIO;
2406 else
2407 offset = inode->i_size;
2408 }
2409 }
2410
387aae6f
HD
2411 if (offset >= 0)
2412 offset = vfs_setpos(file, offset, MAX_LFS_FILESIZE);
5955102c 2413 inode_unlock(inode);
220f2ac9
HD
2414 return offset;
2415}
2416
05f65b5c
DH
2417/*
2418 * We need a tag: a new tag would expand every radix_tree_node by 8 bytes,
2419 * so reuse a tag which we firmly believe is never set or cleared on shmem.
2420 */
2421#define SHMEM_TAG_PINNED PAGECACHE_TAG_TOWRITE
2422#define LAST_SCAN 4 /* about 150ms max */
2423
2424static void shmem_tag_pins(struct address_space *mapping)
2425{
2426 struct radix_tree_iter iter;
2427 void **slot;
2428 pgoff_t start;
2429 struct page *page;
2430
2431 lru_add_drain();
2432 start = 0;
2433 rcu_read_lock();
2434
05f65b5c
DH
2435 radix_tree_for_each_slot(slot, &mapping->page_tree, &iter, start) {
2436 page = radix_tree_deref_slot(slot);
2437 if (!page || radix_tree_exception(page)) {
2cf938aa
MW
2438 if (radix_tree_deref_retry(page)) {
2439 slot = radix_tree_iter_retry(&iter);
2440 continue;
2441 }
05f65b5c
DH
2442 } else if (page_count(page) - page_mapcount(page) > 1) {
2443 spin_lock_irq(&mapping->tree_lock);
2444 radix_tree_tag_set(&mapping->page_tree, iter.index,
2445 SHMEM_TAG_PINNED);
2446 spin_unlock_irq(&mapping->tree_lock);
2447 }
2448
2449 if (need_resched()) {
2450 cond_resched_rcu();
7165092f 2451 slot = radix_tree_iter_next(&iter);
05f65b5c
DH
2452 }
2453 }
2454 rcu_read_unlock();
2455}
2456
2457/*
2458 * Setting SEAL_WRITE requires us to verify there's no pending writer. However,
2459 * via get_user_pages(), drivers might have some pending I/O without any active
2460 * user-space mappings (eg., direct-IO, AIO). Therefore, we look at all pages
2461 * and see whether it has an elevated ref-count. If so, we tag them and wait for
2462 * them to be dropped.
2463 * The caller must guarantee that no new user will acquire writable references
2464 * to those pages to avoid races.
2465 */
40e041a2
DH
2466static int shmem_wait_for_pins(struct address_space *mapping)
2467{
05f65b5c
DH
2468 struct radix_tree_iter iter;
2469 void **slot;
2470 pgoff_t start;
2471 struct page *page;
2472 int error, scan;
2473
2474 shmem_tag_pins(mapping);
2475
2476 error = 0;
2477 for (scan = 0; scan <= LAST_SCAN; scan++) {
2478 if (!radix_tree_tagged(&mapping->page_tree, SHMEM_TAG_PINNED))
2479 break;
2480
2481 if (!scan)
2482 lru_add_drain_all();
2483 else if (schedule_timeout_killable((HZ << scan) / 200))
2484 scan = LAST_SCAN;
2485
2486 start = 0;
2487 rcu_read_lock();
05f65b5c
DH
2488 radix_tree_for_each_tagged(slot, &mapping->page_tree, &iter,
2489 start, SHMEM_TAG_PINNED) {
2490
2491 page = radix_tree_deref_slot(slot);
2492 if (radix_tree_exception(page)) {
2cf938aa
MW
2493 if (radix_tree_deref_retry(page)) {
2494 slot = radix_tree_iter_retry(&iter);
2495 continue;
2496 }
05f65b5c
DH
2497
2498 page = NULL;
2499 }
2500
2501 if (page &&
2502 page_count(page) - page_mapcount(page) != 1) {
2503 if (scan < LAST_SCAN)
2504 goto continue_resched;
2505
2506 /*
2507 * On the last scan, we clean up all those tags
2508 * we inserted; but make a note that we still
2509 * found pages pinned.
2510 */
2511 error = -EBUSY;
2512 }
2513
2514 spin_lock_irq(&mapping->tree_lock);
2515 radix_tree_tag_clear(&mapping->page_tree,
2516 iter.index, SHMEM_TAG_PINNED);
2517 spin_unlock_irq(&mapping->tree_lock);
2518continue_resched:
2519 if (need_resched()) {
2520 cond_resched_rcu();
7165092f 2521 slot = radix_tree_iter_next(&iter);
05f65b5c
DH
2522 }
2523 }
2524 rcu_read_unlock();
2525 }
2526
2527 return error;
40e041a2
DH
2528}
2529
2530#define F_ALL_SEALS (F_SEAL_SEAL | \
2531 F_SEAL_SHRINK | \
2532 F_SEAL_GROW | \
2533 F_SEAL_WRITE)
2534
2535int shmem_add_seals(struct file *file, unsigned int seals)
2536{
2537 struct inode *inode = file_inode(file);
2538 struct shmem_inode_info *info = SHMEM_I(inode);
2539 int error;
2540
2541 /*
2542 * SEALING
2543 * Sealing allows multiple parties to share a shmem-file but restrict
2544 * access to a specific subset of file operations. Seals can only be
2545 * added, but never removed. This way, mutually untrusted parties can
2546 * share common memory regions with a well-defined policy. A malicious
2547 * peer can thus never perform unwanted operations on a shared object.
2548 *
2549 * Seals are only supported on special shmem-files and always affect
2550 * the whole underlying inode. Once a seal is set, it may prevent some
2551 * kinds of access to the file. Currently, the following seals are
2552 * defined:
2553 * SEAL_SEAL: Prevent further seals from being set on this file
2554 * SEAL_SHRINK: Prevent the file from shrinking
2555 * SEAL_GROW: Prevent the file from growing
2556 * SEAL_WRITE: Prevent write access to the file
2557 *
2558 * As we don't require any trust relationship between two parties, we
2559 * must prevent seals from being removed. Therefore, sealing a file
2560 * only adds a given set of seals to the file, it never touches
2561 * existing seals. Furthermore, the "setting seals"-operation can be
2562 * sealed itself, which basically prevents any further seal from being
2563 * added.
2564 *
2565 * Semantics of sealing are only defined on volatile files. Only
2566 * anonymous shmem files support sealing. More importantly, seals are
2567 * never written to disk. Therefore, there's no plan to support it on
2568 * other file types.
2569 */
2570
2571 if (file->f_op != &shmem_file_operations)
2572 return -EINVAL;
2573 if (!(file->f_mode & FMODE_WRITE))
2574 return -EPERM;
2575 if (seals & ~(unsigned int)F_ALL_SEALS)
2576 return -EINVAL;
2577
5955102c 2578 inode_lock(inode);
40e041a2
DH
2579
2580 if (info->seals & F_SEAL_SEAL) {
2581 error = -EPERM;
2582 goto unlock;
2583 }
2584
2585 if ((seals & F_SEAL_WRITE) && !(info->seals & F_SEAL_WRITE)) {
2586 error = mapping_deny_writable(file->f_mapping);
2587 if (error)
2588 goto unlock;
2589
2590 error = shmem_wait_for_pins(file->f_mapping);
2591 if (error) {
2592 mapping_allow_writable(file->f_mapping);
2593 goto unlock;
2594 }
2595 }
2596
2597 info->seals |= seals;
2598 error = 0;
2599
2600unlock:
5955102c 2601 inode_unlock(inode);
40e041a2
DH
2602 return error;
2603}
2604EXPORT_SYMBOL_GPL(shmem_add_seals);
2605
2606int shmem_get_seals(struct file *file)
2607{
2608 if (file->f_op != &shmem_file_operations)
2609 return -EINVAL;
2610
2611 return SHMEM_I(file_inode(file))->seals;
2612}
2613EXPORT_SYMBOL_GPL(shmem_get_seals);
2614
2615long shmem_fcntl(struct file *file, unsigned int cmd, unsigned long arg)
2616{
2617 long error;
2618
2619 switch (cmd) {
2620 case F_ADD_SEALS:
2621 /* disallow upper 32bit */
2622 if (arg > UINT_MAX)
2623 return -EINVAL;
2624
2625 error = shmem_add_seals(file, arg);
2626 break;
2627 case F_GET_SEALS:
2628 error = shmem_get_seals(file);
2629 break;
2630 default:
2631 error = -EINVAL;
2632 break;
2633 }
2634
2635 return error;
2636}
2637
83e4fa9c
HD
2638static long shmem_fallocate(struct file *file, int mode, loff_t offset,
2639 loff_t len)
2640{
496ad9aa 2641 struct inode *inode = file_inode(file);
e2d12e22 2642 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
40e041a2 2643 struct shmem_inode_info *info = SHMEM_I(inode);
1aac1400 2644 struct shmem_falloc shmem_falloc;
e2d12e22
HD
2645 pgoff_t start, index, end;
2646 int error;
83e4fa9c 2647
13ace4d0
HD
2648 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
2649 return -EOPNOTSUPP;
2650
5955102c 2651 inode_lock(inode);
83e4fa9c
HD
2652
2653 if (mode & FALLOC_FL_PUNCH_HOLE) {
2654 struct address_space *mapping = file->f_mapping;
2655 loff_t unmap_start = round_up(offset, PAGE_SIZE);
2656 loff_t unmap_end = round_down(offset + len, PAGE_SIZE) - 1;
8e205f77 2657 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(shmem_falloc_waitq);
83e4fa9c 2658
40e041a2
DH
2659 /* protected by i_mutex */
2660 if (info->seals & F_SEAL_WRITE) {
2661 error = -EPERM;
2662 goto out;
2663 }
2664
8e205f77 2665 shmem_falloc.waitq = &shmem_falloc_waitq;
f00cdc6d
HD
2666 shmem_falloc.start = unmap_start >> PAGE_SHIFT;
2667 shmem_falloc.next = (unmap_end + 1) >> PAGE_SHIFT;
2668 spin_lock(&inode->i_lock);
2669 inode->i_private = &shmem_falloc;
2670 spin_unlock(&inode->i_lock);
2671
83e4fa9c
HD
2672 if ((u64)unmap_end > (u64)unmap_start)
2673 unmap_mapping_range(mapping, unmap_start,
2674 1 + unmap_end - unmap_start, 0);
2675 shmem_truncate_range(inode, offset, offset + len - 1);
2676 /* No need to unmap again: hole-punching leaves COWed pages */
8e205f77
HD
2677
2678 spin_lock(&inode->i_lock);
2679 inode->i_private = NULL;
2680 wake_up_all(&shmem_falloc_waitq);
10d20bd2 2681 WARN_ON_ONCE(!list_empty(&shmem_falloc_waitq.task_list));
8e205f77 2682 spin_unlock(&inode->i_lock);
83e4fa9c 2683 error = 0;
8e205f77 2684 goto out;
e2d12e22
HD
2685 }
2686
2687 /* We need to check rlimit even when FALLOC_FL_KEEP_SIZE */
2688 error = inode_newsize_ok(inode, offset + len);
2689 if (error)
2690 goto out;
2691
40e041a2
DH
2692 if ((info->seals & F_SEAL_GROW) && offset + len > inode->i_size) {
2693 error = -EPERM;
2694 goto out;
2695 }
2696
09cbfeaf
KS
2697 start = offset >> PAGE_SHIFT;
2698 end = (offset + len + PAGE_SIZE - 1) >> PAGE_SHIFT;
e2d12e22
HD
2699 /* Try to avoid a swapstorm if len is impossible to satisfy */
2700 if (sbinfo->max_blocks && end - start > sbinfo->max_blocks) {
2701 error = -ENOSPC;
2702 goto out;
83e4fa9c
HD
2703 }
2704
8e205f77 2705 shmem_falloc.waitq = NULL;
1aac1400
HD
2706 shmem_falloc.start = start;
2707 shmem_falloc.next = start;
2708 shmem_falloc.nr_falloced = 0;
2709 shmem_falloc.nr_unswapped = 0;
2710 spin_lock(&inode->i_lock);
2711 inode->i_private = &shmem_falloc;
2712 spin_unlock(&inode->i_lock);
2713
e2d12e22
HD
2714 for (index = start; index < end; index++) {
2715 struct page *page;
2716
2717 /*
2718 * Good, the fallocate(2) manpage permits EINTR: we may have
2719 * been interrupted because we are using up too much memory.
2720 */
2721 if (signal_pending(current))
2722 error = -EINTR;
1aac1400
HD
2723 else if (shmem_falloc.nr_unswapped > shmem_falloc.nr_falloced)
2724 error = -ENOMEM;
e2d12e22 2725 else
9e18eb29 2726 error = shmem_getpage(inode, index, &page, SGP_FALLOC);
e2d12e22 2727 if (error) {
1635f6a7 2728 /* Remove the !PageUptodate pages we added */
7f556567
HD
2729 if (index > start) {
2730 shmem_undo_range(inode,
2731 (loff_t)start << PAGE_SHIFT,
2732 ((loff_t)index << PAGE_SHIFT) - 1, true);
2733 }
1aac1400 2734 goto undone;
e2d12e22
HD
2735 }
2736
1aac1400
HD
2737 /*
2738 * Inform shmem_writepage() how far we have reached.
2739 * No need for lock or barrier: we have the page lock.
2740 */
2741 shmem_falloc.next++;
2742 if (!PageUptodate(page))
2743 shmem_falloc.nr_falloced++;
2744
e2d12e22 2745 /*
1635f6a7
HD
2746 * If !PageUptodate, leave it that way so that freeable pages
2747 * can be recognized if we need to rollback on error later.
2748 * But set_page_dirty so that memory pressure will swap rather
e2d12e22
HD
2749 * than free the pages we are allocating (and SGP_CACHE pages
2750 * might still be clean: we now need to mark those dirty too).
2751 */
2752 set_page_dirty(page);
2753 unlock_page(page);
09cbfeaf 2754 put_page(page);
e2d12e22
HD
2755 cond_resched();
2756 }
2757
2758 if (!(mode & FALLOC_FL_KEEP_SIZE) && offset + len > inode->i_size)
2759 i_size_write(inode, offset + len);
078cd827 2760 inode->i_ctime = current_time(inode);
1aac1400
HD
2761undone:
2762 spin_lock(&inode->i_lock);
2763 inode->i_private = NULL;
2764 spin_unlock(&inode->i_lock);
e2d12e22 2765out:
5955102c 2766 inode_unlock(inode);
83e4fa9c
HD
2767 return error;
2768}
2769
726c3342 2770static int shmem_statfs(struct dentry *dentry, struct kstatfs *buf)
1da177e4 2771{
726c3342 2772 struct shmem_sb_info *sbinfo = SHMEM_SB(dentry->d_sb);
1da177e4
LT
2773
2774 buf->f_type = TMPFS_MAGIC;
09cbfeaf 2775 buf->f_bsize = PAGE_SIZE;
1da177e4 2776 buf->f_namelen = NAME_MAX;
0edd73b3 2777 if (sbinfo->max_blocks) {
1da177e4 2778 buf->f_blocks = sbinfo->max_blocks;
41ffe5d5
HD
2779 buf->f_bavail =
2780 buf->f_bfree = sbinfo->max_blocks -
2781 percpu_counter_sum(&sbinfo->used_blocks);
0edd73b3
HD
2782 }
2783 if (sbinfo->max_inodes) {
1da177e4
LT
2784 buf->f_files = sbinfo->max_inodes;
2785 buf->f_ffree = sbinfo->free_inodes;
1da177e4
LT
2786 }
2787 /* else leave those fields 0 like simple_statfs */
2788 return 0;
2789}
2790
2791/*
2792 * File creation. Allocate an inode, and we're done..
2793 */
2794static int
1a67aafb 2795shmem_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
1da177e4 2796{
0b0a0806 2797 struct inode *inode;
1da177e4
LT
2798 int error = -ENOSPC;
2799
454abafe 2800 inode = shmem_get_inode(dir->i_sb, dir, mode, dev, VM_NORESERVE);
1da177e4 2801 if (inode) {
feda821e
CH
2802 error = simple_acl_create(dir, inode);
2803 if (error)
2804 goto out_iput;
2a7dba39 2805 error = security_inode_init_security(inode, dir,
9d8f13ba 2806 &dentry->d_name,
6d9d88d0 2807 shmem_initxattrs, NULL);
feda821e
CH
2808 if (error && error != -EOPNOTSUPP)
2809 goto out_iput;
37ec43cd 2810
718deb6b 2811 error = 0;
1da177e4 2812 dir->i_size += BOGO_DIRENT_SIZE;
078cd827 2813 dir->i_ctime = dir->i_mtime = current_time(dir);
1da177e4
LT
2814 d_instantiate(dentry, inode);
2815 dget(dentry); /* Extra count - pin the dentry in core */
1da177e4
LT
2816 }
2817 return error;
feda821e
CH
2818out_iput:
2819 iput(inode);
2820 return error;
1da177e4
LT
2821}
2822
60545d0d
AV
2823static int
2824shmem_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
2825{
2826 struct inode *inode;
2827 int error = -ENOSPC;
2828
2829 inode = shmem_get_inode(dir->i_sb, dir, mode, 0, VM_NORESERVE);
2830 if (inode) {
2831 error = security_inode_init_security(inode, dir,
2832 NULL,
2833 shmem_initxattrs, NULL);
feda821e
CH
2834 if (error && error != -EOPNOTSUPP)
2835 goto out_iput;
2836 error = simple_acl_create(dir, inode);
2837 if (error)
2838 goto out_iput;
60545d0d
AV
2839 d_tmpfile(dentry, inode);
2840 }
2841 return error;
feda821e
CH
2842out_iput:
2843 iput(inode);
2844 return error;
60545d0d
AV
2845}
2846
18bb1db3 2847static int shmem_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
1da177e4
LT
2848{
2849 int error;
2850
2851 if ((error = shmem_mknod(dir, dentry, mode | S_IFDIR, 0)))
2852 return error;
d8c76e6f 2853 inc_nlink(dir);
1da177e4
LT
2854 return 0;
2855}
2856
4acdaf27 2857static int shmem_create(struct inode *dir, struct dentry *dentry, umode_t mode,
ebfc3b49 2858 bool excl)
1da177e4
LT
2859{
2860 return shmem_mknod(dir, dentry, mode | S_IFREG, 0);
2861}
2862
2863/*
2864 * Link a file..
2865 */
2866static int shmem_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
2867{
75c3cfa8 2868 struct inode *inode = d_inode(old_dentry);
5b04c689 2869 int ret;
1da177e4
LT
2870
2871 /*
2872 * No ordinary (disk based) filesystem counts links as inodes;
2873 * but each new link needs a new dentry, pinning lowmem, and
2874 * tmpfs dentries cannot be pruned until they are unlinked.
2875 */
5b04c689
PE
2876 ret = shmem_reserve_inode(inode->i_sb);
2877 if (ret)
2878 goto out;
1da177e4
LT
2879
2880 dir->i_size += BOGO_DIRENT_SIZE;
078cd827 2881 inode->i_ctime = dir->i_ctime = dir->i_mtime = current_time(inode);
d8c76e6f 2882 inc_nlink(inode);
7de9c6ee 2883 ihold(inode); /* New dentry reference */
1da177e4
LT
2884 dget(dentry); /* Extra pinning count for the created dentry */
2885 d_instantiate(dentry, inode);
5b04c689
PE
2886out:
2887 return ret;
1da177e4
LT
2888}
2889
2890static int shmem_unlink(struct inode *dir, struct dentry *dentry)
2891{
75c3cfa8 2892 struct inode *inode = d_inode(dentry);
1da177e4 2893
5b04c689
PE
2894 if (inode->i_nlink > 1 && !S_ISDIR(inode->i_mode))
2895 shmem_free_inode(inode->i_sb);
1da177e4
LT
2896
2897 dir->i_size -= BOGO_DIRENT_SIZE;
078cd827 2898 inode->i_ctime = dir->i_ctime = dir->i_mtime = current_time(inode);
9a53c3a7 2899 drop_nlink(inode);
1da177e4
LT
2900 dput(dentry); /* Undo the count from "create" - this does all the work */
2901 return 0;
2902}
2903
2904static int shmem_rmdir(struct inode *dir, struct dentry *dentry)
2905{
2906 if (!simple_empty(dentry))
2907 return -ENOTEMPTY;
2908
75c3cfa8 2909 drop_nlink(d_inode(dentry));
9a53c3a7 2910 drop_nlink(dir);
1da177e4
LT
2911 return shmem_unlink(dir, dentry);
2912}
2913
37456771
MS
2914static int shmem_exchange(struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry)
2915{
e36cb0b8
DH
2916 bool old_is_dir = d_is_dir(old_dentry);
2917 bool new_is_dir = d_is_dir(new_dentry);
37456771
MS
2918
2919 if (old_dir != new_dir && old_is_dir != new_is_dir) {
2920 if (old_is_dir) {
2921 drop_nlink(old_dir);
2922 inc_nlink(new_dir);
2923 } else {
2924 drop_nlink(new_dir);
2925 inc_nlink(old_dir);
2926 }
2927 }
2928 old_dir->i_ctime = old_dir->i_mtime =
2929 new_dir->i_ctime = new_dir->i_mtime =
75c3cfa8 2930 d_inode(old_dentry)->i_ctime =
078cd827 2931 d_inode(new_dentry)->i_ctime = current_time(old_dir);
37456771
MS
2932
2933 return 0;
2934}
2935
46fdb794
MS
2936static int shmem_whiteout(struct inode *old_dir, struct dentry *old_dentry)
2937{
2938 struct dentry *whiteout;
2939 int error;
2940
2941 whiteout = d_alloc(old_dentry->d_parent, &old_dentry->d_name);
2942 if (!whiteout)
2943 return -ENOMEM;
2944
2945 error = shmem_mknod(old_dir, whiteout,
2946 S_IFCHR | WHITEOUT_MODE, WHITEOUT_DEV);
2947 dput(whiteout);
2948 if (error)
2949 return error;
2950
2951 /*
2952 * Cheat and hash the whiteout while the old dentry is still in
2953 * place, instead of playing games with FS_RENAME_DOES_D_MOVE.
2954 *
2955 * d_lookup() will consistently find one of them at this point,
2956 * not sure which one, but that isn't even important.
2957 */
2958 d_rehash(whiteout);
2959 return 0;
2960}
2961
1da177e4
LT
2962/*
2963 * The VFS layer already does all the dentry stuff for rename,
2964 * we just have to decrement the usage count for the target if
2965 * it exists so that the VFS layer correctly free's it when it
2966 * gets overwritten.
2967 */
3b69ff51 2968static int shmem_rename2(struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry, unsigned int flags)
1da177e4 2969{
75c3cfa8 2970 struct inode *inode = d_inode(old_dentry);
1da177e4
LT
2971 int they_are_dirs = S_ISDIR(inode->i_mode);
2972
46fdb794 2973 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
3b69ff51
MS
2974 return -EINVAL;
2975
37456771
MS
2976 if (flags & RENAME_EXCHANGE)
2977 return shmem_exchange(old_dir, old_dentry, new_dir, new_dentry);
2978
1da177e4
LT
2979 if (!simple_empty(new_dentry))
2980 return -ENOTEMPTY;
2981
46fdb794
MS
2982 if (flags & RENAME_WHITEOUT) {
2983 int error;
2984
2985 error = shmem_whiteout(old_dir, old_dentry);
2986 if (error)
2987 return error;
2988 }
2989
75c3cfa8 2990 if (d_really_is_positive(new_dentry)) {
1da177e4 2991 (void) shmem_unlink(new_dir, new_dentry);
b928095b 2992 if (they_are_dirs) {
75c3cfa8 2993 drop_nlink(d_inode(new_dentry));
9a53c3a7 2994 drop_nlink(old_dir);
b928095b 2995 }
1da177e4 2996 } else if (they_are_dirs) {
9a53c3a7 2997 drop_nlink(old_dir);
d8c76e6f 2998 inc_nlink(new_dir);
1da177e4
LT
2999 }
3000
3001 old_dir->i_size -= BOGO_DIRENT_SIZE;
3002 new_dir->i_size += BOGO_DIRENT_SIZE;
3003 old_dir->i_ctime = old_dir->i_mtime =
3004 new_dir->i_ctime = new_dir->i_mtime =
078cd827 3005 inode->i_ctime = current_time(old_dir);
1da177e4
LT
3006 return 0;
3007}
3008
3009static int shmem_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
3010{
3011 int error;
3012 int len;
3013 struct inode *inode;
9276aad6 3014 struct page *page;
1da177e4
LT
3015 struct shmem_inode_info *info;
3016
3017 len = strlen(symname) + 1;
09cbfeaf 3018 if (len > PAGE_SIZE)
1da177e4
LT
3019 return -ENAMETOOLONG;
3020
454abafe 3021 inode = shmem_get_inode(dir->i_sb, dir, S_IFLNK|S_IRWXUGO, 0, VM_NORESERVE);
1da177e4
LT
3022 if (!inode)
3023 return -ENOSPC;
3024
9d8f13ba 3025 error = security_inode_init_security(inode, dir, &dentry->d_name,
6d9d88d0 3026 shmem_initxattrs, NULL);
570bc1c2
SS
3027 if (error) {
3028 if (error != -EOPNOTSUPP) {
3029 iput(inode);
3030 return error;
3031 }
3032 error = 0;
3033 }
3034
1da177e4
LT
3035 info = SHMEM_I(inode);
3036 inode->i_size = len-1;
69f07ec9 3037 if (len <= SHORT_SYMLINK_LEN) {
3ed47db3
AV
3038 inode->i_link = kmemdup(symname, len, GFP_KERNEL);
3039 if (!inode->i_link) {
69f07ec9
HD
3040 iput(inode);
3041 return -ENOMEM;
3042 }
3043 inode->i_op = &shmem_short_symlink_operations;
1da177e4 3044 } else {
e8ecde25 3045 inode_nohighmem(inode);
9e18eb29 3046 error = shmem_getpage(inode, 0, &page, SGP_WRITE);
1da177e4
LT
3047 if (error) {
3048 iput(inode);
3049 return error;
3050 }
14fcc23f 3051 inode->i_mapping->a_ops = &shmem_aops;
1da177e4 3052 inode->i_op = &shmem_symlink_inode_operations;
21fc61c7 3053 memcpy(page_address(page), symname, len);
ec9516fb 3054 SetPageUptodate(page);
1da177e4 3055 set_page_dirty(page);
6746aff7 3056 unlock_page(page);
09cbfeaf 3057 put_page(page);
1da177e4 3058 }
1da177e4 3059 dir->i_size += BOGO_DIRENT_SIZE;
078cd827 3060 dir->i_ctime = dir->i_mtime = current_time(dir);
1da177e4
LT
3061 d_instantiate(dentry, inode);
3062 dget(dentry);
3063 return 0;
3064}
3065
fceef393 3066static void shmem_put_link(void *arg)
1da177e4 3067{
fceef393
AV
3068 mark_page_accessed(arg);
3069 put_page(arg);
1da177e4
LT
3070}
3071
6b255391 3072static const char *shmem_get_link(struct dentry *dentry,
fceef393
AV
3073 struct inode *inode,
3074 struct delayed_call *done)
1da177e4 3075{
1da177e4 3076 struct page *page = NULL;
6b255391 3077 int error;
6a6c9904
AV
3078 if (!dentry) {
3079 page = find_get_page(inode->i_mapping, 0);
3080 if (!page)
3081 return ERR_PTR(-ECHILD);
3082 if (!PageUptodate(page)) {
3083 put_page(page);
3084 return ERR_PTR(-ECHILD);
3085 }
3086 } else {
9e18eb29 3087 error = shmem_getpage(inode, 0, &page, SGP_READ);
6a6c9904
AV
3088 if (error)
3089 return ERR_PTR(error);
3090 unlock_page(page);
3091 }
fceef393 3092 set_delayed_call(done, shmem_put_link, page);
21fc61c7 3093 return page_address(page);
1da177e4
LT
3094}
3095
b09e0fa4 3096#ifdef CONFIG_TMPFS_XATTR
46711810 3097/*
b09e0fa4
EP
3098 * Superblocks without xattr inode operations may get some security.* xattr
3099 * support from the LSM "for free". As soon as we have any other xattrs
39f0247d
AG
3100 * like ACLs, we also need to implement the security.* handlers at
3101 * filesystem level, though.
3102 */
3103
6d9d88d0
JS
3104/*
3105 * Callback for security_inode_init_security() for acquiring xattrs.
3106 */
3107static int shmem_initxattrs(struct inode *inode,
3108 const struct xattr *xattr_array,
3109 void *fs_info)
3110{
3111 struct shmem_inode_info *info = SHMEM_I(inode);
3112 const struct xattr *xattr;
38f38657 3113 struct simple_xattr *new_xattr;
6d9d88d0
JS
3114 size_t len;
3115
3116 for (xattr = xattr_array; xattr->name != NULL; xattr++) {
38f38657 3117 new_xattr = simple_xattr_alloc(xattr->value, xattr->value_len);
6d9d88d0
JS
3118 if (!new_xattr)
3119 return -ENOMEM;
3120
3121 len = strlen(xattr->name) + 1;
3122 new_xattr->name = kmalloc(XATTR_SECURITY_PREFIX_LEN + len,
3123 GFP_KERNEL);
3124 if (!new_xattr->name) {
3125 kfree(new_xattr);
3126 return -ENOMEM;
3127 }
3128
3129 memcpy(new_xattr->name, XATTR_SECURITY_PREFIX,
3130 XATTR_SECURITY_PREFIX_LEN);
3131 memcpy(new_xattr->name + XATTR_SECURITY_PREFIX_LEN,
3132 xattr->name, len);
3133
38f38657 3134 simple_xattr_list_add(&info->xattrs, new_xattr);
6d9d88d0
JS
3135 }
3136
3137 return 0;
3138}
3139
aa7c5241 3140static int shmem_xattr_handler_get(const struct xattr_handler *handler,
b296821a
AV
3141 struct dentry *unused, struct inode *inode,
3142 const char *name, void *buffer, size_t size)
b09e0fa4 3143{
b296821a 3144 struct shmem_inode_info *info = SHMEM_I(inode);
b09e0fa4 3145
aa7c5241 3146 name = xattr_full_name(handler, name);
38f38657 3147 return simple_xattr_get(&info->xattrs, name, buffer, size);
b09e0fa4
EP
3148}
3149
aa7c5241 3150static int shmem_xattr_handler_set(const struct xattr_handler *handler,
59301226
AV
3151 struct dentry *unused, struct inode *inode,
3152 const char *name, const void *value,
3153 size_t size, int flags)
b09e0fa4 3154{
59301226 3155 struct shmem_inode_info *info = SHMEM_I(inode);
b09e0fa4 3156
aa7c5241 3157 name = xattr_full_name(handler, name);
38f38657 3158 return simple_xattr_set(&info->xattrs, name, value, size, flags);
b09e0fa4
EP
3159}
3160
aa7c5241
AG
3161static const struct xattr_handler shmem_security_xattr_handler = {
3162 .prefix = XATTR_SECURITY_PREFIX,
3163 .get = shmem_xattr_handler_get,
3164 .set = shmem_xattr_handler_set,
3165};
b09e0fa4 3166
aa7c5241
AG
3167static const struct xattr_handler shmem_trusted_xattr_handler = {
3168 .prefix = XATTR_TRUSTED_PREFIX,
3169 .get = shmem_xattr_handler_get,
3170 .set = shmem_xattr_handler_set,
3171};
b09e0fa4 3172
aa7c5241
AG
3173static const struct xattr_handler *shmem_xattr_handlers[] = {
3174#ifdef CONFIG_TMPFS_POSIX_ACL
3175 &posix_acl_access_xattr_handler,
3176 &posix_acl_default_xattr_handler,
3177#endif
3178 &shmem_security_xattr_handler,
3179 &shmem_trusted_xattr_handler,
3180 NULL
3181};
b09e0fa4
EP
3182
3183static ssize_t shmem_listxattr(struct dentry *dentry, char *buffer, size_t size)
3184{
75c3cfa8 3185 struct shmem_inode_info *info = SHMEM_I(d_inode(dentry));
786534b9 3186 return simple_xattr_list(d_inode(dentry), &info->xattrs, buffer, size);
b09e0fa4
EP
3187}
3188#endif /* CONFIG_TMPFS_XATTR */
3189
69f07ec9 3190static const struct inode_operations shmem_short_symlink_operations = {
b09e0fa4 3191 .readlink = generic_readlink,
6b255391 3192 .get_link = simple_get_link,
b09e0fa4 3193#ifdef CONFIG_TMPFS_XATTR
b09e0fa4 3194 .listxattr = shmem_listxattr,
b09e0fa4
EP
3195#endif
3196};
3197
3198static const struct inode_operations shmem_symlink_inode_operations = {
3199 .readlink = generic_readlink,
6b255391 3200 .get_link = shmem_get_link,
b09e0fa4 3201#ifdef CONFIG_TMPFS_XATTR
b09e0fa4 3202 .listxattr = shmem_listxattr,
39f0247d 3203#endif
b09e0fa4 3204};
39f0247d 3205
91828a40
DG
3206static struct dentry *shmem_get_parent(struct dentry *child)
3207{
3208 return ERR_PTR(-ESTALE);
3209}
3210
3211static int shmem_match(struct inode *ino, void *vfh)
3212{
3213 __u32 *fh = vfh;
3214 __u64 inum = fh[2];
3215 inum = (inum << 32) | fh[1];
3216 return ino->i_ino == inum && fh[0] == ino->i_generation;
3217}
3218
480b116c
CH
3219static struct dentry *shmem_fh_to_dentry(struct super_block *sb,
3220 struct fid *fid, int fh_len, int fh_type)
91828a40 3221{
91828a40 3222 struct inode *inode;
480b116c 3223 struct dentry *dentry = NULL;
35c2a7f4 3224 u64 inum;
480b116c
CH
3225
3226 if (fh_len < 3)
3227 return NULL;
91828a40 3228
35c2a7f4
HD
3229 inum = fid->raw[2];
3230 inum = (inum << 32) | fid->raw[1];
3231
480b116c
CH
3232 inode = ilookup5(sb, (unsigned long)(inum + fid->raw[0]),
3233 shmem_match, fid->raw);
91828a40 3234 if (inode) {
480b116c 3235 dentry = d_find_alias(inode);
91828a40
DG
3236 iput(inode);
3237 }
3238
480b116c 3239 return dentry;
91828a40
DG
3240}
3241
b0b0382b
AV
3242static int shmem_encode_fh(struct inode *inode, __u32 *fh, int *len,
3243 struct inode *parent)
91828a40 3244{
5fe0c237
AK
3245 if (*len < 3) {
3246 *len = 3;
94e07a75 3247 return FILEID_INVALID;
5fe0c237 3248 }
91828a40 3249
1d3382cb 3250 if (inode_unhashed(inode)) {
91828a40
DG
3251 /* Unfortunately insert_inode_hash is not idempotent,
3252 * so as we hash inodes here rather than at creation
3253 * time, we need a lock to ensure we only try
3254 * to do it once
3255 */
3256 static DEFINE_SPINLOCK(lock);
3257 spin_lock(&lock);
1d3382cb 3258 if (inode_unhashed(inode))
91828a40
DG
3259 __insert_inode_hash(inode,
3260 inode->i_ino + inode->i_generation);
3261 spin_unlock(&lock);
3262 }
3263
3264 fh[0] = inode->i_generation;
3265 fh[1] = inode->i_ino;
3266 fh[2] = ((__u64)inode->i_ino) >> 32;
3267
3268 *len = 3;
3269 return 1;
3270}
3271
39655164 3272static const struct export_operations shmem_export_ops = {
91828a40 3273 .get_parent = shmem_get_parent,
91828a40 3274 .encode_fh = shmem_encode_fh,
480b116c 3275 .fh_to_dentry = shmem_fh_to_dentry,
91828a40
DG
3276};
3277
680d794b 3278static int shmem_parse_options(char *options, struct shmem_sb_info *sbinfo,
3279 bool remount)
1da177e4
LT
3280{
3281 char *this_char, *value, *rest;
49cd0a5c 3282 struct mempolicy *mpol = NULL;
8751e039
EB
3283 uid_t uid;
3284 gid_t gid;
1da177e4 3285
b00dc3ad
HD
3286 while (options != NULL) {
3287 this_char = options;
3288 for (;;) {
3289 /*
3290 * NUL-terminate this option: unfortunately,
3291 * mount options form a comma-separated list,
3292 * but mpol's nodelist may also contain commas.
3293 */
3294 options = strchr(options, ',');
3295 if (options == NULL)
3296 break;
3297 options++;
3298 if (!isdigit(*options)) {
3299 options[-1] = '\0';
3300 break;
3301 }
3302 }
1da177e4
LT
3303 if (!*this_char)
3304 continue;
3305 if ((value = strchr(this_char,'=')) != NULL) {
3306 *value++ = 0;
3307 } else {
1170532b
JP
3308 pr_err("tmpfs: No value for mount option '%s'\n",
3309 this_char);
49cd0a5c 3310 goto error;
1da177e4
LT
3311 }
3312
3313 if (!strcmp(this_char,"size")) {
3314 unsigned long long size;
3315 size = memparse(value,&rest);
3316 if (*rest == '%') {
3317 size <<= PAGE_SHIFT;
3318 size *= totalram_pages;
3319 do_div(size, 100);
3320 rest++;
3321 }
3322 if (*rest)
3323 goto bad_val;
680d794b 3324 sbinfo->max_blocks =
09cbfeaf 3325 DIV_ROUND_UP(size, PAGE_SIZE);
1da177e4 3326 } else if (!strcmp(this_char,"nr_blocks")) {
680d794b 3327 sbinfo->max_blocks = memparse(value, &rest);
1da177e4
LT
3328 if (*rest)
3329 goto bad_val;
3330 } else if (!strcmp(this_char,"nr_inodes")) {
680d794b 3331 sbinfo->max_inodes = memparse(value, &rest);
1da177e4
LT
3332 if (*rest)
3333 goto bad_val;
3334 } else if (!strcmp(this_char,"mode")) {
680d794b 3335 if (remount)
1da177e4 3336 continue;
680d794b 3337 sbinfo->mode = simple_strtoul(value, &rest, 8) & 07777;
1da177e4
LT
3338 if (*rest)
3339 goto bad_val;
3340 } else if (!strcmp(this_char,"uid")) {
680d794b 3341 if (remount)
1da177e4 3342 continue;
8751e039 3343 uid = simple_strtoul(value, &rest, 0);
1da177e4
LT
3344 if (*rest)
3345 goto bad_val;
8751e039
EB
3346 sbinfo->uid = make_kuid(current_user_ns(), uid);
3347 if (!uid_valid(sbinfo->uid))
3348 goto bad_val;
1da177e4 3349 } else if (!strcmp(this_char,"gid")) {
680d794b 3350 if (remount)
1da177e4 3351 continue;
8751e039 3352 gid = simple_strtoul(value, &rest, 0);
1da177e4
LT
3353 if (*rest)
3354 goto bad_val;
8751e039
EB
3355 sbinfo->gid = make_kgid(current_user_ns(), gid);
3356 if (!gid_valid(sbinfo->gid))
3357 goto bad_val;
e496cf3d 3358#ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE
5a6e75f8
KS
3359 } else if (!strcmp(this_char, "huge")) {
3360 int huge;
3361 huge = shmem_parse_huge(value);
3362 if (huge < 0)
3363 goto bad_val;
3364 if (!has_transparent_hugepage() &&
3365 huge != SHMEM_HUGE_NEVER)
3366 goto bad_val;
3367 sbinfo->huge = huge;
3368#endif
3369#ifdef CONFIG_NUMA
7339ff83 3370 } else if (!strcmp(this_char,"mpol")) {
49cd0a5c
GT
3371 mpol_put(mpol);
3372 mpol = NULL;
3373 if (mpol_parse_str(value, &mpol))
7339ff83 3374 goto bad_val;
5a6e75f8 3375#endif
1da177e4 3376 } else {
1170532b 3377 pr_err("tmpfs: Bad mount option %s\n", this_char);
49cd0a5c 3378 goto error;
1da177e4
LT
3379 }
3380 }
49cd0a5c 3381 sbinfo->mpol = mpol;
1da177e4
LT
3382 return 0;
3383
3384bad_val:
1170532b 3385 pr_err("tmpfs: Bad value '%s' for mount option '%s'\n",
1da177e4 3386 value, this_char);
49cd0a5c
GT
3387error:
3388 mpol_put(mpol);
1da177e4
LT
3389 return 1;
3390
3391}
3392
3393static int shmem_remount_fs(struct super_block *sb, int *flags, char *data)
3394{
3395 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
680d794b 3396 struct shmem_sb_info config = *sbinfo;
0edd73b3
HD
3397 unsigned long inodes;
3398 int error = -EINVAL;
3399
5f00110f 3400 config.mpol = NULL;
680d794b 3401 if (shmem_parse_options(data, &config, true))
0edd73b3 3402 return error;
1da177e4 3403
0edd73b3 3404 spin_lock(&sbinfo->stat_lock);
0edd73b3 3405 inodes = sbinfo->max_inodes - sbinfo->free_inodes;
7e496299 3406 if (percpu_counter_compare(&sbinfo->used_blocks, config.max_blocks) > 0)
0edd73b3 3407 goto out;
680d794b 3408 if (config.max_inodes < inodes)
0edd73b3
HD
3409 goto out;
3410 /*
54af6042 3411 * Those tests disallow limited->unlimited while any are in use;
0edd73b3
HD
3412 * but we must separately disallow unlimited->limited, because
3413 * in that case we have no record of how much is already in use.
3414 */
680d794b 3415 if (config.max_blocks && !sbinfo->max_blocks)
0edd73b3 3416 goto out;
680d794b 3417 if (config.max_inodes && !sbinfo->max_inodes)
0edd73b3
HD
3418 goto out;
3419
3420 error = 0;
5a6e75f8 3421 sbinfo->huge = config.huge;
680d794b 3422 sbinfo->max_blocks = config.max_blocks;
680d794b 3423 sbinfo->max_inodes = config.max_inodes;
3424 sbinfo->free_inodes = config.max_inodes - inodes;
71fe804b 3425
5f00110f
GT
3426 /*
3427 * Preserve previous mempolicy unless mpol remount option was specified.
3428 */
3429 if (config.mpol) {
3430 mpol_put(sbinfo->mpol);
3431 sbinfo->mpol = config.mpol; /* transfers initial ref */
3432 }
0edd73b3
HD
3433out:
3434 spin_unlock(&sbinfo->stat_lock);
3435 return error;
1da177e4 3436}
680d794b 3437
34c80b1d 3438static int shmem_show_options(struct seq_file *seq, struct dentry *root)
680d794b 3439{
34c80b1d 3440 struct shmem_sb_info *sbinfo = SHMEM_SB(root->d_sb);
680d794b 3441
3442 if (sbinfo->max_blocks != shmem_default_max_blocks())
3443 seq_printf(seq, ",size=%luk",
09cbfeaf 3444 sbinfo->max_blocks << (PAGE_SHIFT - 10));
680d794b 3445 if (sbinfo->max_inodes != shmem_default_max_inodes())
3446 seq_printf(seq, ",nr_inodes=%lu", sbinfo->max_inodes);
3447 if (sbinfo->mode != (S_IRWXUGO | S_ISVTX))
09208d15 3448 seq_printf(seq, ",mode=%03ho", sbinfo->mode);
8751e039
EB
3449 if (!uid_eq(sbinfo->uid, GLOBAL_ROOT_UID))
3450 seq_printf(seq, ",uid=%u",
3451 from_kuid_munged(&init_user_ns, sbinfo->uid));
3452 if (!gid_eq(sbinfo->gid, GLOBAL_ROOT_GID))
3453 seq_printf(seq, ",gid=%u",
3454 from_kgid_munged(&init_user_ns, sbinfo->gid));
e496cf3d 3455#ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE
5a6e75f8
KS
3456 /* Rightly or wrongly, show huge mount option unmasked by shmem_huge */
3457 if (sbinfo->huge)
3458 seq_printf(seq, ",huge=%s", shmem_format_huge(sbinfo->huge));
3459#endif
71fe804b 3460 shmem_show_mpol(seq, sbinfo->mpol);
680d794b 3461 return 0;
3462}
9183df25
DH
3463
3464#define MFD_NAME_PREFIX "memfd:"
3465#define MFD_NAME_PREFIX_LEN (sizeof(MFD_NAME_PREFIX) - 1)
3466#define MFD_NAME_MAX_LEN (NAME_MAX - MFD_NAME_PREFIX_LEN)
3467
3468#define MFD_ALL_FLAGS (MFD_CLOEXEC | MFD_ALLOW_SEALING)
3469
3470SYSCALL_DEFINE2(memfd_create,
3471 const char __user *, uname,
3472 unsigned int, flags)
3473{
3474 struct shmem_inode_info *info;
3475 struct file *file;
3476 int fd, error;
3477 char *name;
3478 long len;
3479
3480 if (flags & ~(unsigned int)MFD_ALL_FLAGS)
3481 return -EINVAL;
3482
3483 /* length includes terminating zero */
3484 len = strnlen_user(uname, MFD_NAME_MAX_LEN + 1);
3485 if (len <= 0)
3486 return -EFAULT;
3487 if (len > MFD_NAME_MAX_LEN + 1)
3488 return -EINVAL;
3489
3490 name = kmalloc(len + MFD_NAME_PREFIX_LEN, GFP_TEMPORARY);
3491 if (!name)
3492 return -ENOMEM;
3493
3494 strcpy(name, MFD_NAME_PREFIX);
3495 if (copy_from_user(&name[MFD_NAME_PREFIX_LEN], uname, len)) {
3496 error = -EFAULT;
3497 goto err_name;
3498 }
3499
3500 /* terminating-zero may have changed after strnlen_user() returned */
3501 if (name[len + MFD_NAME_PREFIX_LEN - 1]) {
3502 error = -EFAULT;
3503 goto err_name;
3504 }
3505
3506 fd = get_unused_fd_flags((flags & MFD_CLOEXEC) ? O_CLOEXEC : 0);
3507 if (fd < 0) {
3508 error = fd;
3509 goto err_name;
3510 }
3511
3512 file = shmem_file_setup(name, 0, VM_NORESERVE);
3513 if (IS_ERR(file)) {
3514 error = PTR_ERR(file);
3515 goto err_fd;
3516 }
3517 info = SHMEM_I(file_inode(file));
3518 file->f_mode |= FMODE_LSEEK | FMODE_PREAD | FMODE_PWRITE;
3519 file->f_flags |= O_RDWR | O_LARGEFILE;
3520 if (flags & MFD_ALLOW_SEALING)
3521 info->seals &= ~F_SEAL_SEAL;
3522
3523 fd_install(fd, file);
3524 kfree(name);
3525 return fd;
3526
3527err_fd:
3528 put_unused_fd(fd);
3529err_name:
3530 kfree(name);
3531 return error;
3532}
3533
680d794b 3534#endif /* CONFIG_TMPFS */
1da177e4
LT
3535
3536static void shmem_put_super(struct super_block *sb)
3537{
602586a8
HD
3538 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
3539
3540 percpu_counter_destroy(&sbinfo->used_blocks);
49cd0a5c 3541 mpol_put(sbinfo->mpol);
602586a8 3542 kfree(sbinfo);
1da177e4
LT
3543 sb->s_fs_info = NULL;
3544}
3545
2b2af54a 3546int shmem_fill_super(struct super_block *sb, void *data, int silent)
1da177e4
LT
3547{
3548 struct inode *inode;
0edd73b3 3549 struct shmem_sb_info *sbinfo;
680d794b 3550 int err = -ENOMEM;
3551
3552 /* Round up to L1_CACHE_BYTES to resist false sharing */
425fbf04 3553 sbinfo = kzalloc(max((int)sizeof(struct shmem_sb_info),
680d794b 3554 L1_CACHE_BYTES), GFP_KERNEL);
3555 if (!sbinfo)
3556 return -ENOMEM;
3557
680d794b 3558 sbinfo->mode = S_IRWXUGO | S_ISVTX;
76aac0e9
DH
3559 sbinfo->uid = current_fsuid();
3560 sbinfo->gid = current_fsgid();
680d794b 3561 sb->s_fs_info = sbinfo;
1da177e4 3562
0edd73b3 3563#ifdef CONFIG_TMPFS
1da177e4
LT
3564 /*
3565 * Per default we only allow half of the physical ram per
3566 * tmpfs instance, limiting inodes to one per page of lowmem;
3567 * but the internal instance is left unlimited.
3568 */
ca4e0519 3569 if (!(sb->s_flags & MS_KERNMOUNT)) {
680d794b 3570 sbinfo->max_blocks = shmem_default_max_blocks();
3571 sbinfo->max_inodes = shmem_default_max_inodes();
3572 if (shmem_parse_options(data, sbinfo, false)) {
3573 err = -EINVAL;
3574 goto failed;
3575 }
ca4e0519
AV
3576 } else {
3577 sb->s_flags |= MS_NOUSER;
1da177e4 3578 }
91828a40 3579 sb->s_export_op = &shmem_export_ops;
2f6e38f3 3580 sb->s_flags |= MS_NOSEC;
1da177e4
LT
3581#else
3582 sb->s_flags |= MS_NOUSER;
3583#endif
3584
0edd73b3 3585 spin_lock_init(&sbinfo->stat_lock);
908c7f19 3586 if (percpu_counter_init(&sbinfo->used_blocks, 0, GFP_KERNEL))
602586a8 3587 goto failed;
680d794b 3588 sbinfo->free_inodes = sbinfo->max_inodes;
779750d2
KS
3589 spin_lock_init(&sbinfo->shrinklist_lock);
3590 INIT_LIST_HEAD(&sbinfo->shrinklist);
0edd73b3 3591
285b2c4f 3592 sb->s_maxbytes = MAX_LFS_FILESIZE;
09cbfeaf
KS
3593 sb->s_blocksize = PAGE_SIZE;
3594 sb->s_blocksize_bits = PAGE_SHIFT;
1da177e4
LT
3595 sb->s_magic = TMPFS_MAGIC;
3596 sb->s_op = &shmem_ops;
cfd95a9c 3597 sb->s_time_gran = 1;
b09e0fa4 3598#ifdef CONFIG_TMPFS_XATTR
39f0247d 3599 sb->s_xattr = shmem_xattr_handlers;
b09e0fa4
EP
3600#endif
3601#ifdef CONFIG_TMPFS_POSIX_ACL
39f0247d
AG
3602 sb->s_flags |= MS_POSIXACL;
3603#endif
0edd73b3 3604
454abafe 3605 inode = shmem_get_inode(sb, NULL, S_IFDIR | sbinfo->mode, 0, VM_NORESERVE);
1da177e4
LT
3606 if (!inode)
3607 goto failed;
680d794b 3608 inode->i_uid = sbinfo->uid;
3609 inode->i_gid = sbinfo->gid;
318ceed0
AV
3610 sb->s_root = d_make_root(inode);
3611 if (!sb->s_root)
48fde701 3612 goto failed;
1da177e4
LT
3613 return 0;
3614
1da177e4
LT
3615failed:
3616 shmem_put_super(sb);
3617 return err;
3618}
3619
fcc234f8 3620static struct kmem_cache *shmem_inode_cachep;
1da177e4
LT
3621
3622static struct inode *shmem_alloc_inode(struct super_block *sb)
3623{
41ffe5d5
HD
3624 struct shmem_inode_info *info;
3625 info = kmem_cache_alloc(shmem_inode_cachep, GFP_KERNEL);
3626 if (!info)
1da177e4 3627 return NULL;
41ffe5d5 3628 return &info->vfs_inode;
1da177e4
LT
3629}
3630
41ffe5d5 3631static void shmem_destroy_callback(struct rcu_head *head)
fa0d7e3d
NP
3632{
3633 struct inode *inode = container_of(head, struct inode, i_rcu);
84e710da
AV
3634 if (S_ISLNK(inode->i_mode))
3635 kfree(inode->i_link);
fa0d7e3d
NP
3636 kmem_cache_free(shmem_inode_cachep, SHMEM_I(inode));
3637}
3638
1da177e4
LT
3639static void shmem_destroy_inode(struct inode *inode)
3640{
09208d15 3641 if (S_ISREG(inode->i_mode))
1da177e4 3642 mpol_free_shared_policy(&SHMEM_I(inode)->policy);
41ffe5d5 3643 call_rcu(&inode->i_rcu, shmem_destroy_callback);
1da177e4
LT
3644}
3645
41ffe5d5 3646static void shmem_init_inode(void *foo)
1da177e4 3647{
41ffe5d5
HD
3648 struct shmem_inode_info *info = foo;
3649 inode_init_once(&info->vfs_inode);
1da177e4
LT
3650}
3651
41ffe5d5 3652static int shmem_init_inodecache(void)
1da177e4
LT
3653{
3654 shmem_inode_cachep = kmem_cache_create("shmem_inode_cache",
3655 sizeof(struct shmem_inode_info),
5d097056 3656 0, SLAB_PANIC|SLAB_ACCOUNT, shmem_init_inode);
1da177e4
LT
3657 return 0;
3658}
3659
41ffe5d5 3660static void shmem_destroy_inodecache(void)
1da177e4 3661{
1a1d92c1 3662 kmem_cache_destroy(shmem_inode_cachep);
1da177e4
LT
3663}
3664
f5e54d6e 3665static const struct address_space_operations shmem_aops = {
1da177e4 3666 .writepage = shmem_writepage,
76719325 3667 .set_page_dirty = __set_page_dirty_no_writeback,
1da177e4 3668#ifdef CONFIG_TMPFS
800d15a5
NP
3669 .write_begin = shmem_write_begin,
3670 .write_end = shmem_write_end,
1da177e4 3671#endif
1c93923c 3672#ifdef CONFIG_MIGRATION
304dbdb7 3673 .migratepage = migrate_page,
1c93923c 3674#endif
aa261f54 3675 .error_remove_page = generic_error_remove_page,
1da177e4
LT
3676};
3677
15ad7cdc 3678static const struct file_operations shmem_file_operations = {
1da177e4 3679 .mmap = shmem_mmap,
c01d5b30 3680 .get_unmapped_area = shmem_get_unmapped_area,
1da177e4 3681#ifdef CONFIG_TMPFS
220f2ac9 3682 .llseek = shmem_file_llseek,
2ba5bbed 3683 .read_iter = shmem_file_read_iter,
8174202b 3684 .write_iter = generic_file_write_iter,
1b061d92 3685 .fsync = noop_fsync,
82c156f8 3686 .splice_read = generic_file_splice_read,
f6cb85d0 3687 .splice_write = iter_file_splice_write,
83e4fa9c 3688 .fallocate = shmem_fallocate,
1da177e4
LT
3689#endif
3690};
3691
92e1d5be 3692static const struct inode_operations shmem_inode_operations = {
44a30220 3693 .getattr = shmem_getattr,
94c1e62d 3694 .setattr = shmem_setattr,
b09e0fa4 3695#ifdef CONFIG_TMPFS_XATTR
b09e0fa4 3696 .listxattr = shmem_listxattr,
feda821e 3697 .set_acl = simple_set_acl,
b09e0fa4 3698#endif
1da177e4
LT
3699};
3700
92e1d5be 3701static const struct inode_operations shmem_dir_inode_operations = {
1da177e4
LT
3702#ifdef CONFIG_TMPFS
3703 .create = shmem_create,
3704 .lookup = simple_lookup,
3705 .link = shmem_link,
3706 .unlink = shmem_unlink,
3707 .symlink = shmem_symlink,
3708 .mkdir = shmem_mkdir,
3709 .rmdir = shmem_rmdir,
3710 .mknod = shmem_mknod,
2773bf00 3711 .rename = shmem_rename2,
60545d0d 3712 .tmpfile = shmem_tmpfile,
1da177e4 3713#endif
b09e0fa4 3714#ifdef CONFIG_TMPFS_XATTR
b09e0fa4 3715 .listxattr = shmem_listxattr,
b09e0fa4 3716#endif
39f0247d 3717#ifdef CONFIG_TMPFS_POSIX_ACL
94c1e62d 3718 .setattr = shmem_setattr,
feda821e 3719 .set_acl = simple_set_acl,
39f0247d
AG
3720#endif
3721};
3722
92e1d5be 3723static const struct inode_operations shmem_special_inode_operations = {
b09e0fa4 3724#ifdef CONFIG_TMPFS_XATTR
b09e0fa4 3725 .listxattr = shmem_listxattr,
b09e0fa4 3726#endif
39f0247d 3727#ifdef CONFIG_TMPFS_POSIX_ACL
94c1e62d 3728 .setattr = shmem_setattr,
feda821e 3729 .set_acl = simple_set_acl,
39f0247d 3730#endif
1da177e4
LT
3731};
3732
759b9775 3733static const struct super_operations shmem_ops = {
1da177e4
LT
3734 .alloc_inode = shmem_alloc_inode,
3735 .destroy_inode = shmem_destroy_inode,
3736#ifdef CONFIG_TMPFS
3737 .statfs = shmem_statfs,
3738 .remount_fs = shmem_remount_fs,
680d794b 3739 .show_options = shmem_show_options,
1da177e4 3740#endif
1f895f75 3741 .evict_inode = shmem_evict_inode,
1da177e4
LT
3742 .drop_inode = generic_delete_inode,
3743 .put_super = shmem_put_super,
779750d2
KS
3744#ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE
3745 .nr_cached_objects = shmem_unused_huge_count,
3746 .free_cached_objects = shmem_unused_huge_scan,
3747#endif
1da177e4
LT
3748};
3749
f0f37e2f 3750static const struct vm_operations_struct shmem_vm_ops = {
54cb8821 3751 .fault = shmem_fault,
d7c17551 3752 .map_pages = filemap_map_pages,
1da177e4
LT
3753#ifdef CONFIG_NUMA
3754 .set_policy = shmem_set_policy,
3755 .get_policy = shmem_get_policy,
3756#endif
3757};
3758
3c26ff6e
AV
3759static struct dentry *shmem_mount(struct file_system_type *fs_type,
3760 int flags, const char *dev_name, void *data)
1da177e4 3761{
3c26ff6e 3762 return mount_nodev(fs_type, flags, data, shmem_fill_super);
1da177e4
LT
3763}
3764
41ffe5d5 3765static struct file_system_type shmem_fs_type = {
1da177e4
LT
3766 .owner = THIS_MODULE,
3767 .name = "tmpfs",
3c26ff6e 3768 .mount = shmem_mount,
1da177e4 3769 .kill_sb = kill_litter_super,
2b8576cb 3770 .fs_flags = FS_USERNS_MOUNT,
1da177e4 3771};
1da177e4 3772
41ffe5d5 3773int __init shmem_init(void)
1da177e4
LT
3774{
3775 int error;
3776
16203a7a
RL
3777 /* If rootfs called this, don't re-init */
3778 if (shmem_inode_cachep)
3779 return 0;
3780
41ffe5d5 3781 error = shmem_init_inodecache();
1da177e4
LT
3782 if (error)
3783 goto out3;
3784
41ffe5d5 3785 error = register_filesystem(&shmem_fs_type);
1da177e4 3786 if (error) {
1170532b 3787 pr_err("Could not register tmpfs\n");
1da177e4
LT
3788 goto out2;
3789 }
95dc112a 3790
ca4e0519 3791 shm_mnt = kern_mount(&shmem_fs_type);
1da177e4
LT
3792 if (IS_ERR(shm_mnt)) {
3793 error = PTR_ERR(shm_mnt);
1170532b 3794 pr_err("Could not kern_mount tmpfs\n");
1da177e4
LT
3795 goto out1;
3796 }
5a6e75f8 3797
e496cf3d 3798#ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE
5a6e75f8
KS
3799 if (has_transparent_hugepage() && shmem_huge < SHMEM_HUGE_DENY)
3800 SHMEM_SB(shm_mnt->mnt_sb)->huge = shmem_huge;
3801 else
3802 shmem_huge = 0; /* just in case it was patched */
3803#endif
1da177e4
LT
3804 return 0;
3805
3806out1:
41ffe5d5 3807 unregister_filesystem(&shmem_fs_type);
1da177e4 3808out2:
41ffe5d5 3809 shmem_destroy_inodecache();
1da177e4
LT
3810out3:
3811 shm_mnt = ERR_PTR(error);
3812 return error;
3813}
853ac43a 3814
e496cf3d 3815#if defined(CONFIG_TRANSPARENT_HUGE_PAGECACHE) && defined(CONFIG_SYSFS)
5a6e75f8
KS
3816static ssize_t shmem_enabled_show(struct kobject *kobj,
3817 struct kobj_attribute *attr, char *buf)
3818{
3819 int values[] = {
3820 SHMEM_HUGE_ALWAYS,
3821 SHMEM_HUGE_WITHIN_SIZE,
3822 SHMEM_HUGE_ADVISE,
3823 SHMEM_HUGE_NEVER,
3824 SHMEM_HUGE_DENY,
3825 SHMEM_HUGE_FORCE,
3826 };
3827 int i, count;
3828
3829 for (i = 0, count = 0; i < ARRAY_SIZE(values); i++) {
3830 const char *fmt = shmem_huge == values[i] ? "[%s] " : "%s ";
3831
3832 count += sprintf(buf + count, fmt,
3833 shmem_format_huge(values[i]));
3834 }
3835 buf[count - 1] = '\n';
3836 return count;
3837}
3838
3839static ssize_t shmem_enabled_store(struct kobject *kobj,
3840 struct kobj_attribute *attr, const char *buf, size_t count)
3841{
3842 char tmp[16];
3843 int huge;
3844
3845 if (count + 1 > sizeof(tmp))
3846 return -EINVAL;
3847 memcpy(tmp, buf, count);
3848 tmp[count] = '\0';
3849 if (count && tmp[count - 1] == '\n')
3850 tmp[count - 1] = '\0';
3851
3852 huge = shmem_parse_huge(tmp);
3853 if (huge == -EINVAL)
3854 return -EINVAL;
3855 if (!has_transparent_hugepage() &&
3856 huge != SHMEM_HUGE_NEVER && huge != SHMEM_HUGE_DENY)
3857 return -EINVAL;
3858
3859 shmem_huge = huge;
3860 if (shmem_huge < SHMEM_HUGE_DENY)
3861 SHMEM_SB(shm_mnt->mnt_sb)->huge = shmem_huge;
3862 return count;
3863}
3864
3865struct kobj_attribute shmem_enabled_attr =
3866 __ATTR(shmem_enabled, 0644, shmem_enabled_show, shmem_enabled_store);
3b33719c 3867#endif /* CONFIG_TRANSPARENT_HUGE_PAGECACHE && CONFIG_SYSFS */
f3f0e1d2 3868
3b33719c 3869#ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE
f3f0e1d2
KS
3870bool shmem_huge_enabled(struct vm_area_struct *vma)
3871{
3872 struct inode *inode = file_inode(vma->vm_file);
3873 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
3874 loff_t i_size;
3875 pgoff_t off;
3876
3877 if (shmem_huge == SHMEM_HUGE_FORCE)
3878 return true;
3879 if (shmem_huge == SHMEM_HUGE_DENY)
3880 return false;
3881 switch (sbinfo->huge) {
3882 case SHMEM_HUGE_NEVER:
3883 return false;
3884 case SHMEM_HUGE_ALWAYS:
3885 return true;
3886 case SHMEM_HUGE_WITHIN_SIZE:
3887 off = round_up(vma->vm_pgoff, HPAGE_PMD_NR);
3888 i_size = round_up(i_size_read(inode), PAGE_SIZE);
3889 if (i_size >= HPAGE_PMD_SIZE &&
3890 i_size >> PAGE_SHIFT >= off)
3891 return true;
3892 case SHMEM_HUGE_ADVISE:
3893 /* TODO: implement fadvise() hints */
3894 return (vma->vm_flags & VM_HUGEPAGE);
3895 default:
3896 VM_BUG_ON(1);
3897 return false;
3898 }
3899}
3b33719c 3900#endif /* CONFIG_TRANSPARENT_HUGE_PAGECACHE */
5a6e75f8 3901
853ac43a
MM
3902#else /* !CONFIG_SHMEM */
3903
3904/*
3905 * tiny-shmem: simple shmemfs and tmpfs using ramfs code
3906 *
3907 * This is intended for small system where the benefits of the full
3908 * shmem code (swap-backed and resource-limited) are outweighed by
3909 * their complexity. On systems without swap this code should be
3910 * effectively equivalent, but much lighter weight.
3911 */
3912
41ffe5d5 3913static struct file_system_type shmem_fs_type = {
853ac43a 3914 .name = "tmpfs",
3c26ff6e 3915 .mount = ramfs_mount,
853ac43a 3916 .kill_sb = kill_litter_super,
2b8576cb 3917 .fs_flags = FS_USERNS_MOUNT,
853ac43a
MM
3918};
3919
41ffe5d5 3920int __init shmem_init(void)
853ac43a 3921{
41ffe5d5 3922 BUG_ON(register_filesystem(&shmem_fs_type) != 0);
853ac43a 3923
41ffe5d5 3924 shm_mnt = kern_mount(&shmem_fs_type);
853ac43a
MM
3925 BUG_ON(IS_ERR(shm_mnt));
3926
3927 return 0;
3928}
3929
41ffe5d5 3930int shmem_unuse(swp_entry_t swap, struct page *page)
853ac43a
MM
3931{
3932 return 0;
3933}
3934
3f96b79a
HD
3935int shmem_lock(struct file *file, int lock, struct user_struct *user)
3936{
3937 return 0;
3938}
3939
24513264
HD
3940void shmem_unlock_mapping(struct address_space *mapping)
3941{
3942}
3943
c01d5b30
HD
3944#ifdef CONFIG_MMU
3945unsigned long shmem_get_unmapped_area(struct file *file,
3946 unsigned long addr, unsigned long len,
3947 unsigned long pgoff, unsigned long flags)
3948{
3949 return current->mm->get_unmapped_area(file, addr, len, pgoff, flags);
3950}
3951#endif
3952
41ffe5d5 3953void shmem_truncate_range(struct inode *inode, loff_t lstart, loff_t lend)
94c1e62d 3954{
41ffe5d5 3955 truncate_inode_pages_range(inode->i_mapping, lstart, lend);
94c1e62d
HD
3956}
3957EXPORT_SYMBOL_GPL(shmem_truncate_range);
3958
0b0a0806
HD
3959#define shmem_vm_ops generic_file_vm_ops
3960#define shmem_file_operations ramfs_file_operations
454abafe 3961#define shmem_get_inode(sb, dir, mode, dev, flags) ramfs_get_inode(sb, dir, mode, dev)
0b0a0806
HD
3962#define shmem_acct_size(flags, size) 0
3963#define shmem_unacct_size(flags, size) do {} while (0)
853ac43a
MM
3964
3965#endif /* CONFIG_SHMEM */
3966
3967/* common code */
1da177e4 3968
19938e35 3969static const struct dentry_operations anon_ops = {
118b2302 3970 .d_dname = simple_dname
3451538a
AV
3971};
3972
c7277090
EP
3973static struct file *__shmem_file_setup(const char *name, loff_t size,
3974 unsigned long flags, unsigned int i_flags)
1da177e4 3975{
6b4d0b27 3976 struct file *res;
1da177e4 3977 struct inode *inode;
2c48b9c4 3978 struct path path;
3451538a 3979 struct super_block *sb;
1da177e4
LT
3980 struct qstr this;
3981
3982 if (IS_ERR(shm_mnt))
6b4d0b27 3983 return ERR_CAST(shm_mnt);
1da177e4 3984
285b2c4f 3985 if (size < 0 || size > MAX_LFS_FILESIZE)
1da177e4
LT
3986 return ERR_PTR(-EINVAL);
3987
3988 if (shmem_acct_size(flags, size))
3989 return ERR_PTR(-ENOMEM);
3990
6b4d0b27 3991 res = ERR_PTR(-ENOMEM);
1da177e4
LT
3992 this.name = name;
3993 this.len = strlen(name);
3994 this.hash = 0; /* will go */
3451538a 3995 sb = shm_mnt->mnt_sb;
66ee4b88 3996 path.mnt = mntget(shm_mnt);
3451538a 3997 path.dentry = d_alloc_pseudo(sb, &this);
2c48b9c4 3998 if (!path.dentry)
1da177e4 3999 goto put_memory;
3451538a 4000 d_set_d_op(path.dentry, &anon_ops);
1da177e4 4001
6b4d0b27 4002 res = ERR_PTR(-ENOSPC);
3451538a 4003 inode = shmem_get_inode(sb, NULL, S_IFREG | S_IRWXUGO, 0, flags);
1da177e4 4004 if (!inode)
66ee4b88 4005 goto put_memory;
1da177e4 4006
c7277090 4007 inode->i_flags |= i_flags;
2c48b9c4 4008 d_instantiate(path.dentry, inode);
1da177e4 4009 inode->i_size = size;
6d6b77f1 4010 clear_nlink(inode); /* It is unlinked */
26567cdb
AV
4011 res = ERR_PTR(ramfs_nommu_expand_for_mapping(inode, size));
4012 if (IS_ERR(res))
66ee4b88 4013 goto put_path;
4b42af81 4014
6b4d0b27 4015 res = alloc_file(&path, FMODE_WRITE | FMODE_READ,
4b42af81 4016 &shmem_file_operations);
6b4d0b27 4017 if (IS_ERR(res))
66ee4b88 4018 goto put_path;
4b42af81 4019
6b4d0b27 4020 return res;
1da177e4 4021
1da177e4
LT
4022put_memory:
4023 shmem_unacct_size(flags, size);
66ee4b88
KK
4024put_path:
4025 path_put(&path);
6b4d0b27 4026 return res;
1da177e4 4027}
c7277090
EP
4028
4029/**
4030 * shmem_kernel_file_setup - get an unlinked file living in tmpfs which must be
4031 * kernel internal. There will be NO LSM permission checks against the
4032 * underlying inode. So users of this interface must do LSM checks at a
e1832f29
SS
4033 * higher layer. The users are the big_key and shm implementations. LSM
4034 * checks are provided at the key or shm level rather than the inode.
c7277090
EP
4035 * @name: name for dentry (to be seen in /proc/<pid>/maps
4036 * @size: size to be set for the file
4037 * @flags: VM_NORESERVE suppresses pre-accounting of the entire object size
4038 */
4039struct file *shmem_kernel_file_setup(const char *name, loff_t size, unsigned long flags)
4040{
4041 return __shmem_file_setup(name, size, flags, S_PRIVATE);
4042}
4043
4044/**
4045 * shmem_file_setup - get an unlinked file living in tmpfs
4046 * @name: name for dentry (to be seen in /proc/<pid>/maps
4047 * @size: size to be set for the file
4048 * @flags: VM_NORESERVE suppresses pre-accounting of the entire object size
4049 */
4050struct file *shmem_file_setup(const char *name, loff_t size, unsigned long flags)
4051{
4052 return __shmem_file_setup(name, size, flags, 0);
4053}
395e0ddc 4054EXPORT_SYMBOL_GPL(shmem_file_setup);
1da177e4 4055
46711810 4056/**
1da177e4 4057 * shmem_zero_setup - setup a shared anonymous mapping
1da177e4
LT
4058 * @vma: the vma to be mmapped is prepared by do_mmap_pgoff
4059 */
4060int shmem_zero_setup(struct vm_area_struct *vma)
4061{
4062 struct file *file;
4063 loff_t size = vma->vm_end - vma->vm_start;
4064
66fc1303
HD
4065 /*
4066 * Cloning a new file under mmap_sem leads to a lock ordering conflict
4067 * between XFS directory reading and selinux: since this file is only
4068 * accessible to the user through its mapping, use S_PRIVATE flag to
4069 * bypass file security, in the same way as shmem_kernel_file_setup().
4070 */
4071 file = __shmem_file_setup("dev/zero", size, vma->vm_flags, S_PRIVATE);
1da177e4
LT
4072 if (IS_ERR(file))
4073 return PTR_ERR(file);
4074
4075 if (vma->vm_file)
4076 fput(vma->vm_file);
4077 vma->vm_file = file;
4078 vma->vm_ops = &shmem_vm_ops;
f3f0e1d2 4079
e496cf3d 4080 if (IS_ENABLED(CONFIG_TRANSPARENT_HUGE_PAGECACHE) &&
f3f0e1d2
KS
4081 ((vma->vm_start + ~HPAGE_PMD_MASK) & HPAGE_PMD_MASK) <
4082 (vma->vm_end & HPAGE_PMD_MASK)) {
4083 khugepaged_enter(vma, vma->vm_flags);
4084 }
4085
1da177e4
LT
4086 return 0;
4087}
d9d90e5e
HD
4088
4089/**
4090 * shmem_read_mapping_page_gfp - read into page cache, using specified page allocation flags.
4091 * @mapping: the page's address_space
4092 * @index: the page index
4093 * @gfp: the page allocator flags to use if allocating
4094 *
4095 * This behaves as a tmpfs "read_cache_page_gfp(mapping, index, gfp)",
4096 * with any new page allocations done using the specified allocation flags.
4097 * But read_cache_page_gfp() uses the ->readpage() method: which does not
4098 * suit tmpfs, since it may have pages in swapcache, and needs to find those
4099 * for itself; although drivers/gpu/drm i915 and ttm rely upon this support.
4100 *
68da9f05
HD
4101 * i915_gem_object_get_pages_gtt() mixes __GFP_NORETRY | __GFP_NOWARN in
4102 * with the mapping_gfp_mask(), to avoid OOMing the machine unnecessarily.
d9d90e5e
HD
4103 */
4104struct page *shmem_read_mapping_page_gfp(struct address_space *mapping,
4105 pgoff_t index, gfp_t gfp)
4106{
68da9f05
HD
4107#ifdef CONFIG_SHMEM
4108 struct inode *inode = mapping->host;
9276aad6 4109 struct page *page;
68da9f05
HD
4110 int error;
4111
4112 BUG_ON(mapping->a_ops != &shmem_aops);
9e18eb29
ALC
4113 error = shmem_getpage_gfp(inode, index, &page, SGP_CACHE,
4114 gfp, NULL, NULL);
68da9f05
HD
4115 if (error)
4116 page = ERR_PTR(error);
4117 else
4118 unlock_page(page);
4119 return page;
4120#else
4121 /*
4122 * The tiny !SHMEM case uses ramfs without swap
4123 */
d9d90e5e 4124 return read_cache_page_gfp(mapping, index, gfp);
68da9f05 4125#endif
d9d90e5e
HD
4126}
4127EXPORT_SYMBOL_GPL(shmem_read_mapping_page_gfp);