2 * Resizable virtual memory filesystem for Linux.
4 * Copyright (C) 2000 Linus Torvalds.
6 * 2000-2001 Christoph Rohland
9 * Copyright (C) 2002-2011 Hugh Dickins.
10 * Copyright (C) 2011 Google Inc.
11 * Copyright (C) 2002-2005 VERITAS Software Corporation.
12 * Copyright (C) 2004 Andi Kleen, SuSE Labs
14 * Extended attribute support for tmpfs:
21 * This file is released under the GPL.
25 #include <linux/init.h>
26 #include <linux/vfs.h>
27 #include <linux/mount.h>
28 #include <linux/ramfs.h>
29 #include <linux/pagemap.h>
30 #include <linux/file.h>
31 #include <linux/fileattr.h>
33 #include <linux/random.h>
34 #include <linux/sched/signal.h>
35 #include <linux/export.h>
36 #include <linux/shmem_fs.h>
37 #include <linux/swap.h>
38 #include <linux/uio.h>
39 #include <linux/hugetlb.h>
40 #include <linux/fs_parser.h>
41 #include <linux/swapfile.h>
42 #include <linux/iversion.h>
45 static struct vfsmount *shm_mnt __ro_after_init;
49 * This virtual memory filesystem is heavily based on the ramfs. It
50 * extends ramfs by the ability to use swap and honor resource limits
51 * which makes it a completely usable filesystem.
54 #include <linux/xattr.h>
55 #include <linux/exportfs.h>
56 #include <linux/posix_acl.h>
57 #include <linux/posix_acl_xattr.h>
58 #include <linux/mman.h>
59 #include <linux/string.h>
60 #include <linux/slab.h>
61 #include <linux/backing-dev.h>
62 #include <linux/writeback.h>
63 #include <linux/pagevec.h>
64 #include <linux/percpu_counter.h>
65 #include <linux/falloc.h>
66 #include <linux/splice.h>
67 #include <linux/security.h>
68 #include <linux/swapops.h>
69 #include <linux/mempolicy.h>
70 #include <linux/namei.h>
71 #include <linux/ctype.h>
72 #include <linux/migrate.h>
73 #include <linux/highmem.h>
74 #include <linux/seq_file.h>
75 #include <linux/magic.h>
76 #include <linux/syscalls.h>
77 #include <linux/fcntl.h>
78 #include <uapi/linux/memfd.h>
79 #include <linux/rmap.h>
80 #include <linux/uuid.h>
81 #include <linux/quotaops.h>
82 #include <linux/rcupdate_wait.h>
84 #include <linux/uaccess.h>
88 #define BLOCKS_PER_PAGE (PAGE_SIZE/512)
89 #define VM_ACCT(size) (PAGE_ALIGN(size) >> PAGE_SHIFT)
91 /* Pretend that each entry is of this size in directory's i_size */
92 #define BOGO_DIRENT_SIZE 20
94 /* Pretend that one inode + its dentry occupy this much memory */
95 #define BOGO_INODE_SIZE 1024
97 /* Symlink up to this size is kmalloc'ed instead of using a swappable page */
98 #define SHORT_SYMLINK_LEN 128
101 * shmem_fallocate communicates with shmem_fault or shmem_writepage via
102 * inode->i_private (with i_rwsem making sure that it has only one user at
103 * a time): we would prefer not to enlarge the shmem inode just for that.
105 struct shmem_falloc {
106 wait_queue_head_t *waitq; /* faults into hole wait for punch to end */
107 pgoff_t start; /* start of range currently being fallocated */
108 pgoff_t next; /* the next page offset to be fallocated */
109 pgoff_t nr_falloced; /* how many new pages have been fallocated */
110 pgoff_t nr_unswapped; /* how often writepage refused to swap out */
113 struct shmem_options {
114 unsigned long long blocks;
115 unsigned long long inodes;
116 struct mempolicy *mpol;
124 unsigned short quota_types;
125 struct shmem_quota_limits qlimits;
126 #define SHMEM_SEEN_BLOCKS 1
127 #define SHMEM_SEEN_INODES 2
128 #define SHMEM_SEEN_HUGE 4
129 #define SHMEM_SEEN_INUMS 8
130 #define SHMEM_SEEN_NOSWAP 16
131 #define SHMEM_SEEN_QUOTA 32
135 static unsigned long shmem_default_max_blocks(void)
137 return totalram_pages() / 2;
140 static unsigned long shmem_default_max_inodes(void)
142 unsigned long nr_pages = totalram_pages();
144 return min3(nr_pages - totalhigh_pages(), nr_pages / 2,
145 ULONG_MAX / BOGO_INODE_SIZE);
149 static int shmem_swapin_folio(struct inode *inode, pgoff_t index,
150 struct folio **foliop, enum sgp_type sgp, gfp_t gfp,
151 struct mm_struct *fault_mm, vm_fault_t *fault_type);
153 static inline struct shmem_sb_info *SHMEM_SB(struct super_block *sb)
155 return sb->s_fs_info;
159 * shmem_file_setup pre-accounts the whole fixed size of a VM object,
160 * for shared memory and for shared anonymous (/dev/zero) mappings
161 * (unless MAP_NORESERVE and sysctl_overcommit_memory <= 1),
162 * consistent with the pre-accounting of private mappings ...
164 static inline int shmem_acct_size(unsigned long flags, loff_t size)
166 return (flags & VM_NORESERVE) ?
167 0 : security_vm_enough_memory_mm(current->mm, VM_ACCT(size));
170 static inline void shmem_unacct_size(unsigned long flags, loff_t size)
172 if (!(flags & VM_NORESERVE))
173 vm_unacct_memory(VM_ACCT(size));
176 static inline int shmem_reacct_size(unsigned long flags,
177 loff_t oldsize, loff_t newsize)
179 if (!(flags & VM_NORESERVE)) {
180 if (VM_ACCT(newsize) > VM_ACCT(oldsize))
181 return security_vm_enough_memory_mm(current->mm,
182 VM_ACCT(newsize) - VM_ACCT(oldsize));
183 else if (VM_ACCT(newsize) < VM_ACCT(oldsize))
184 vm_unacct_memory(VM_ACCT(oldsize) - VM_ACCT(newsize));
190 * ... whereas tmpfs objects are accounted incrementally as
191 * pages are allocated, in order to allow large sparse files.
192 * shmem_get_folio reports shmem_acct_blocks failure as -ENOSPC not -ENOMEM,
193 * so that a failure on a sparse tmpfs mapping will give SIGBUS not OOM.
195 static inline int shmem_acct_blocks(unsigned long flags, long pages)
197 if (!(flags & VM_NORESERVE))
200 return security_vm_enough_memory_mm(current->mm,
201 pages * VM_ACCT(PAGE_SIZE));
204 static inline void shmem_unacct_blocks(unsigned long flags, long pages)
206 if (flags & VM_NORESERVE)
207 vm_unacct_memory(pages * VM_ACCT(PAGE_SIZE));
210 static int shmem_inode_acct_blocks(struct inode *inode, long pages)
212 struct shmem_inode_info *info = SHMEM_I(inode);
213 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
216 if (shmem_acct_blocks(info->flags, pages))
219 might_sleep(); /* when quotas */
220 if (sbinfo->max_blocks) {
221 if (!percpu_counter_limited_add(&sbinfo->used_blocks,
222 sbinfo->max_blocks, pages))
225 err = dquot_alloc_block_nodirty(inode, pages);
227 percpu_counter_sub(&sbinfo->used_blocks, pages);
231 err = dquot_alloc_block_nodirty(inode, pages);
239 shmem_unacct_blocks(info->flags, pages);
243 static void shmem_inode_unacct_blocks(struct inode *inode, long pages)
245 struct shmem_inode_info *info = SHMEM_I(inode);
246 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
248 might_sleep(); /* when quotas */
249 dquot_free_block_nodirty(inode, pages);
251 if (sbinfo->max_blocks)
252 percpu_counter_sub(&sbinfo->used_blocks, pages);
253 shmem_unacct_blocks(info->flags, pages);
256 static const struct super_operations shmem_ops;
257 static const struct address_space_operations shmem_aops;
258 static const struct file_operations shmem_file_operations;
259 static const struct inode_operations shmem_inode_operations;
260 static const struct inode_operations shmem_dir_inode_operations;
261 static const struct inode_operations shmem_special_inode_operations;
262 static const struct vm_operations_struct shmem_vm_ops;
263 static const struct vm_operations_struct shmem_anon_vm_ops;
264 static struct file_system_type shmem_fs_type;
266 bool shmem_mapping(struct address_space *mapping)
268 return mapping->a_ops == &shmem_aops;
270 EXPORT_SYMBOL_GPL(shmem_mapping);
272 bool vma_is_anon_shmem(struct vm_area_struct *vma)
274 return vma->vm_ops == &shmem_anon_vm_ops;
277 bool vma_is_shmem(struct vm_area_struct *vma)
279 return vma_is_anon_shmem(vma) || vma->vm_ops == &shmem_vm_ops;
282 static LIST_HEAD(shmem_swaplist);
283 static DEFINE_MUTEX(shmem_swaplist_mutex);
285 #ifdef CONFIG_TMPFS_QUOTA
287 static int shmem_enable_quotas(struct super_block *sb,
288 unsigned short quota_types)
292 sb_dqopt(sb)->flags |= DQUOT_QUOTA_SYS_FILE | DQUOT_NOLIST_DIRTY;
293 for (type = 0; type < SHMEM_MAXQUOTAS; type++) {
294 if (!(quota_types & (1 << type)))
296 err = dquot_load_quota_sb(sb, type, QFMT_SHMEM,
297 DQUOT_USAGE_ENABLED |
298 DQUOT_LIMITS_ENABLED);
305 pr_warn("tmpfs: failed to enable quota tracking (type=%d, err=%d)\n",
307 for (type--; type >= 0; type--)
308 dquot_quota_off(sb, type);
312 static void shmem_disable_quotas(struct super_block *sb)
316 for (type = 0; type < SHMEM_MAXQUOTAS; type++)
317 dquot_quota_off(sb, type);
320 static struct dquot __rcu **shmem_get_dquots(struct inode *inode)
322 return SHMEM_I(inode)->i_dquot;
324 #endif /* CONFIG_TMPFS_QUOTA */
327 * shmem_reserve_inode() performs bookkeeping to reserve a shmem inode, and
328 * produces a novel ino for the newly allocated inode.
330 * It may also be called when making a hard link to permit the space needed by
331 * each dentry. However, in that case, no new inode number is needed since that
332 * internally draws from another pool of inode numbers (currently global
333 * get_next_ino()). This case is indicated by passing NULL as inop.
335 #define SHMEM_INO_BATCH 1024
336 static int shmem_reserve_inode(struct super_block *sb, ino_t *inop)
338 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
341 if (!(sb->s_flags & SB_KERNMOUNT)) {
342 raw_spin_lock(&sbinfo->stat_lock);
343 if (sbinfo->max_inodes) {
344 if (sbinfo->free_ispace < BOGO_INODE_SIZE) {
345 raw_spin_unlock(&sbinfo->stat_lock);
348 sbinfo->free_ispace -= BOGO_INODE_SIZE;
351 ino = sbinfo->next_ino++;
352 if (unlikely(is_zero_ino(ino)))
353 ino = sbinfo->next_ino++;
354 if (unlikely(!sbinfo->full_inums &&
357 * Emulate get_next_ino uint wraparound for
360 if (IS_ENABLED(CONFIG_64BIT))
361 pr_warn("%s: inode number overflow on device %d, consider using inode64 mount option\n",
362 __func__, MINOR(sb->s_dev));
363 sbinfo->next_ino = 1;
364 ino = sbinfo->next_ino++;
368 raw_spin_unlock(&sbinfo->stat_lock);
371 * __shmem_file_setup, one of our callers, is lock-free: it
372 * doesn't hold stat_lock in shmem_reserve_inode since
373 * max_inodes is always 0, and is called from potentially
374 * unknown contexts. As such, use a per-cpu batched allocator
375 * which doesn't require the per-sb stat_lock unless we are at
376 * the batch boundary.
378 * We don't need to worry about inode{32,64} since SB_KERNMOUNT
379 * shmem mounts are not exposed to userspace, so we don't need
380 * to worry about things like glibc compatibility.
384 next_ino = per_cpu_ptr(sbinfo->ino_batch, get_cpu());
386 if (unlikely(ino % SHMEM_INO_BATCH == 0)) {
387 raw_spin_lock(&sbinfo->stat_lock);
388 ino = sbinfo->next_ino;
389 sbinfo->next_ino += SHMEM_INO_BATCH;
390 raw_spin_unlock(&sbinfo->stat_lock);
391 if (unlikely(is_zero_ino(ino)))
402 static void shmem_free_inode(struct super_block *sb, size_t freed_ispace)
404 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
405 if (sbinfo->max_inodes) {
406 raw_spin_lock(&sbinfo->stat_lock);
407 sbinfo->free_ispace += BOGO_INODE_SIZE + freed_ispace;
408 raw_spin_unlock(&sbinfo->stat_lock);
413 * shmem_recalc_inode - recalculate the block usage of an inode
414 * @inode: inode to recalc
415 * @alloced: the change in number of pages allocated to inode
416 * @swapped: the change in number of pages swapped from inode
418 * We have to calculate the free blocks since the mm can drop
419 * undirtied hole pages behind our back.
421 * But normally info->alloced == inode->i_mapping->nrpages + info->swapped
422 * So mm freed is info->alloced - (inode->i_mapping->nrpages + info->swapped)
424 static void shmem_recalc_inode(struct inode *inode, long alloced, long swapped)
426 struct shmem_inode_info *info = SHMEM_I(inode);
429 spin_lock(&info->lock);
430 info->alloced += alloced;
431 info->swapped += swapped;
432 freed = info->alloced - info->swapped -
433 READ_ONCE(inode->i_mapping->nrpages);
435 * Special case: whereas normally shmem_recalc_inode() is called
436 * after i_mapping->nrpages has already been adjusted (up or down),
437 * shmem_writepage() has to raise swapped before nrpages is lowered -
438 * to stop a racing shmem_recalc_inode() from thinking that a page has
439 * been freed. Compensate here, to avoid the need for a followup call.
444 info->alloced -= freed;
445 spin_unlock(&info->lock);
447 /* The quota case may block */
449 shmem_inode_unacct_blocks(inode, freed);
452 bool shmem_charge(struct inode *inode, long pages)
454 struct address_space *mapping = inode->i_mapping;
456 if (shmem_inode_acct_blocks(inode, pages))
459 /* nrpages adjustment first, then shmem_recalc_inode() when balanced */
460 xa_lock_irq(&mapping->i_pages);
461 mapping->nrpages += pages;
462 xa_unlock_irq(&mapping->i_pages);
464 shmem_recalc_inode(inode, pages, 0);
468 void shmem_uncharge(struct inode *inode, long pages)
470 /* pages argument is currently unused: keep it to help debugging */
471 /* nrpages adjustment done by __filemap_remove_folio() or caller */
473 shmem_recalc_inode(inode, 0, 0);
477 * Replace item expected in xarray by a new item, while holding xa_lock.
479 static int shmem_replace_entry(struct address_space *mapping,
480 pgoff_t index, void *expected, void *replacement)
482 XA_STATE(xas, &mapping->i_pages, index);
485 VM_BUG_ON(!expected);
486 VM_BUG_ON(!replacement);
487 item = xas_load(&xas);
488 if (item != expected)
490 xas_store(&xas, replacement);
495 * Sometimes, before we decide whether to proceed or to fail, we must check
496 * that an entry was not already brought back from swap by a racing thread.
498 * Checking page is not enough: by the time a SwapCache page is locked, it
499 * might be reused, and again be SwapCache, using the same swap as before.
501 static bool shmem_confirm_swap(struct address_space *mapping,
502 pgoff_t index, swp_entry_t swap)
504 return xa_load(&mapping->i_pages, index) == swp_to_radix_entry(swap);
508 * Definitions for "huge tmpfs": tmpfs mounted with the huge= option
511 * disables huge pages for the mount;
513 * enables huge pages for the mount;
514 * SHMEM_HUGE_WITHIN_SIZE:
515 * only allocate huge pages if the page will be fully within i_size,
516 * also respect fadvise()/madvise() hints;
518 * only allocate huge pages if requested with fadvise()/madvise();
521 #define SHMEM_HUGE_NEVER 0
522 #define SHMEM_HUGE_ALWAYS 1
523 #define SHMEM_HUGE_WITHIN_SIZE 2
524 #define SHMEM_HUGE_ADVISE 3
528 * Only can be set via /sys/kernel/mm/transparent_hugepage/shmem_enabled:
531 * disables huge on shm_mnt and all mounts, for emergency use;
533 * enables huge on shm_mnt and all mounts, w/o needing option, for testing;
536 #define SHMEM_HUGE_DENY (-1)
537 #define SHMEM_HUGE_FORCE (-2)
539 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
540 /* ifdef here to avoid bloating shmem.o when not necessary */
542 static int shmem_huge __read_mostly = SHMEM_HUGE_NEVER;
544 bool shmem_is_huge(struct inode *inode, pgoff_t index, bool shmem_huge_force,
545 struct mm_struct *mm, unsigned long vm_flags)
549 if (!S_ISREG(inode->i_mode))
551 if (mm && ((vm_flags & VM_NOHUGEPAGE) || test_bit(MMF_DISABLE_THP, &mm->flags)))
553 if (shmem_huge == SHMEM_HUGE_DENY)
555 if (shmem_huge_force || shmem_huge == SHMEM_HUGE_FORCE)
558 switch (SHMEM_SB(inode->i_sb)->huge) {
559 case SHMEM_HUGE_ALWAYS:
561 case SHMEM_HUGE_WITHIN_SIZE:
562 index = round_up(index + 1, HPAGE_PMD_NR);
563 i_size = round_up(i_size_read(inode), PAGE_SIZE);
564 if (i_size >> PAGE_SHIFT >= index)
567 case SHMEM_HUGE_ADVISE:
568 if (mm && (vm_flags & VM_HUGEPAGE))
576 #if defined(CONFIG_SYSFS)
577 static int shmem_parse_huge(const char *str)
579 if (!strcmp(str, "never"))
580 return SHMEM_HUGE_NEVER;
581 if (!strcmp(str, "always"))
582 return SHMEM_HUGE_ALWAYS;
583 if (!strcmp(str, "within_size"))
584 return SHMEM_HUGE_WITHIN_SIZE;
585 if (!strcmp(str, "advise"))
586 return SHMEM_HUGE_ADVISE;
587 if (!strcmp(str, "deny"))
588 return SHMEM_HUGE_DENY;
589 if (!strcmp(str, "force"))
590 return SHMEM_HUGE_FORCE;
595 #if defined(CONFIG_SYSFS) || defined(CONFIG_TMPFS)
596 static const char *shmem_format_huge(int huge)
599 case SHMEM_HUGE_NEVER:
601 case SHMEM_HUGE_ALWAYS:
603 case SHMEM_HUGE_WITHIN_SIZE:
604 return "within_size";
605 case SHMEM_HUGE_ADVISE:
607 case SHMEM_HUGE_DENY:
609 case SHMEM_HUGE_FORCE:
618 static unsigned long shmem_unused_huge_shrink(struct shmem_sb_info *sbinfo,
619 struct shrink_control *sc, unsigned long nr_to_split)
621 LIST_HEAD(list), *pos, *next;
622 LIST_HEAD(to_remove);
624 struct shmem_inode_info *info;
626 unsigned long batch = sc ? sc->nr_to_scan : 128;
629 if (list_empty(&sbinfo->shrinklist))
632 spin_lock(&sbinfo->shrinklist_lock);
633 list_for_each_safe(pos, next, &sbinfo->shrinklist) {
634 info = list_entry(pos, struct shmem_inode_info, shrinklist);
637 inode = igrab(&info->vfs_inode);
639 /* inode is about to be evicted */
641 list_del_init(&info->shrinklist);
645 /* Check if there's anything to gain */
646 if (round_up(inode->i_size, PAGE_SIZE) ==
647 round_up(inode->i_size, HPAGE_PMD_SIZE)) {
648 list_move(&info->shrinklist, &to_remove);
652 list_move(&info->shrinklist, &list);
654 sbinfo->shrinklist_len--;
658 spin_unlock(&sbinfo->shrinklist_lock);
660 list_for_each_safe(pos, next, &to_remove) {
661 info = list_entry(pos, struct shmem_inode_info, shrinklist);
662 inode = &info->vfs_inode;
663 list_del_init(&info->shrinklist);
667 list_for_each_safe(pos, next, &list) {
671 info = list_entry(pos, struct shmem_inode_info, shrinklist);
672 inode = &info->vfs_inode;
674 if (nr_to_split && split >= nr_to_split)
677 index = (inode->i_size & HPAGE_PMD_MASK) >> PAGE_SHIFT;
678 folio = filemap_get_folio(inode->i_mapping, index);
682 /* No huge page at the end of the file: nothing to split */
683 if (!folio_test_large(folio)) {
689 * Move the inode on the list back to shrinklist if we failed
690 * to lock the page at this time.
692 * Waiting for the lock may lead to deadlock in the
695 if (!folio_trylock(folio)) {
700 ret = split_folio(folio);
704 /* If split failed move the inode on the list back to shrinklist */
710 list_del_init(&info->shrinklist);
714 * Make sure the inode is either on the global list or deleted
715 * from any local list before iput() since it could be deleted
716 * in another thread once we put the inode (then the local list
719 spin_lock(&sbinfo->shrinklist_lock);
720 list_move(&info->shrinklist, &sbinfo->shrinklist);
721 sbinfo->shrinklist_len++;
722 spin_unlock(&sbinfo->shrinklist_lock);
730 static long shmem_unused_huge_scan(struct super_block *sb,
731 struct shrink_control *sc)
733 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
735 if (!READ_ONCE(sbinfo->shrinklist_len))
738 return shmem_unused_huge_shrink(sbinfo, sc, 0);
741 static long shmem_unused_huge_count(struct super_block *sb,
742 struct shrink_control *sc)
744 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
745 return READ_ONCE(sbinfo->shrinklist_len);
747 #else /* !CONFIG_TRANSPARENT_HUGEPAGE */
749 #define shmem_huge SHMEM_HUGE_DENY
751 bool shmem_is_huge(struct inode *inode, pgoff_t index, bool shmem_huge_force,
752 struct mm_struct *mm, unsigned long vm_flags)
757 static unsigned long shmem_unused_huge_shrink(struct shmem_sb_info *sbinfo,
758 struct shrink_control *sc, unsigned long nr_to_split)
762 #endif /* CONFIG_TRANSPARENT_HUGEPAGE */
765 * Somewhat like filemap_add_folio, but error if expected item has gone.
767 static int shmem_add_to_page_cache(struct folio *folio,
768 struct address_space *mapping,
769 pgoff_t index, void *expected, gfp_t gfp)
771 XA_STATE_ORDER(xas, &mapping->i_pages, index, folio_order(folio));
772 long nr = folio_nr_pages(folio);
774 VM_BUG_ON_FOLIO(index != round_down(index, nr), folio);
775 VM_BUG_ON_FOLIO(!folio_test_locked(folio), folio);
776 VM_BUG_ON_FOLIO(!folio_test_swapbacked(folio), folio);
777 VM_BUG_ON(expected && folio_test_large(folio));
779 folio_ref_add(folio, nr);
780 folio->mapping = mapping;
781 folio->index = index;
783 gfp &= GFP_RECLAIM_MASK;
784 folio_throttle_swaprate(folio, gfp);
788 if (expected != xas_find_conflict(&xas)) {
789 xas_set_err(&xas, -EEXIST);
792 if (expected && xas_find_conflict(&xas)) {
793 xas_set_err(&xas, -EEXIST);
796 xas_store(&xas, folio);
799 if (folio_test_pmd_mappable(folio))
800 __lruvec_stat_mod_folio(folio, NR_SHMEM_THPS, nr);
801 __lruvec_stat_mod_folio(folio, NR_FILE_PAGES, nr);
802 __lruvec_stat_mod_folio(folio, NR_SHMEM, nr);
803 mapping->nrpages += nr;
805 xas_unlock_irq(&xas);
806 } while (xas_nomem(&xas, gfp));
808 if (xas_error(&xas)) {
809 folio->mapping = NULL;
810 folio_ref_sub(folio, nr);
811 return xas_error(&xas);
818 * Somewhat like filemap_remove_folio, but substitutes swap for @folio.
820 static void shmem_delete_from_page_cache(struct folio *folio, void *radswap)
822 struct address_space *mapping = folio->mapping;
823 long nr = folio_nr_pages(folio);
826 xa_lock_irq(&mapping->i_pages);
827 error = shmem_replace_entry(mapping, folio->index, folio, radswap);
828 folio->mapping = NULL;
829 mapping->nrpages -= nr;
830 __lruvec_stat_mod_folio(folio, NR_FILE_PAGES, -nr);
831 __lruvec_stat_mod_folio(folio, NR_SHMEM, -nr);
832 xa_unlock_irq(&mapping->i_pages);
838 * Remove swap entry from page cache, free the swap and its page cache.
840 static int shmem_free_swap(struct address_space *mapping,
841 pgoff_t index, void *radswap)
845 old = xa_cmpxchg_irq(&mapping->i_pages, index, radswap, NULL, 0);
848 free_swap_and_cache(radix_to_swp_entry(radswap));
853 * Determine (in bytes) how many of the shmem object's pages mapped by the
854 * given offsets are swapped out.
856 * This is safe to call without i_rwsem or the i_pages lock thanks to RCU,
857 * as long as the inode doesn't go away and racy results are not a problem.
859 unsigned long shmem_partial_swap_usage(struct address_space *mapping,
860 pgoff_t start, pgoff_t end)
862 XA_STATE(xas, &mapping->i_pages, start);
864 unsigned long swapped = 0;
865 unsigned long max = end - 1;
868 xas_for_each(&xas, page, max) {
869 if (xas_retry(&xas, page))
871 if (xa_is_value(page))
873 if (xas.xa_index == max)
875 if (need_resched()) {
882 return swapped << PAGE_SHIFT;
886 * Determine (in bytes) how many of the shmem object's pages mapped by the
887 * given vma is swapped out.
889 * This is safe to call without i_rwsem or the i_pages lock thanks to RCU,
890 * as long as the inode doesn't go away and racy results are not a problem.
892 unsigned long shmem_swap_usage(struct vm_area_struct *vma)
894 struct inode *inode = file_inode(vma->vm_file);
895 struct shmem_inode_info *info = SHMEM_I(inode);
896 struct address_space *mapping = inode->i_mapping;
897 unsigned long swapped;
899 /* Be careful as we don't hold info->lock */
900 swapped = READ_ONCE(info->swapped);
903 * The easier cases are when the shmem object has nothing in swap, or
904 * the vma maps it whole. Then we can simply use the stats that we
910 if (!vma->vm_pgoff && vma->vm_end - vma->vm_start >= inode->i_size)
911 return swapped << PAGE_SHIFT;
913 /* Here comes the more involved part */
914 return shmem_partial_swap_usage(mapping, vma->vm_pgoff,
915 vma->vm_pgoff + vma_pages(vma));
919 * SysV IPC SHM_UNLOCK restore Unevictable pages to their evictable lists.
921 void shmem_unlock_mapping(struct address_space *mapping)
923 struct folio_batch fbatch;
926 folio_batch_init(&fbatch);
928 * Minor point, but we might as well stop if someone else SHM_LOCKs it.
930 while (!mapping_unevictable(mapping) &&
931 filemap_get_folios(mapping, &index, ~0UL, &fbatch)) {
932 check_move_unevictable_folios(&fbatch);
933 folio_batch_release(&fbatch);
938 static struct folio *shmem_get_partial_folio(struct inode *inode, pgoff_t index)
943 * At first avoid shmem_get_folio(,,,SGP_READ): that fails
944 * beyond i_size, and reports fallocated folios as holes.
946 folio = filemap_get_entry(inode->i_mapping, index);
949 if (!xa_is_value(folio)) {
951 if (folio->mapping == inode->i_mapping)
953 /* The folio has been swapped out */
958 * But read a folio back from swap if any of it is within i_size
959 * (although in some cases this is just a waste of time).
962 shmem_get_folio(inode, index, &folio, SGP_READ);
967 * Remove range of pages and swap entries from page cache, and free them.
968 * If !unfalloc, truncate or punch hole; if unfalloc, undo failed fallocate.
970 static void shmem_undo_range(struct inode *inode, loff_t lstart, loff_t lend,
973 struct address_space *mapping = inode->i_mapping;
974 struct shmem_inode_info *info = SHMEM_I(inode);
975 pgoff_t start = (lstart + PAGE_SIZE - 1) >> PAGE_SHIFT;
976 pgoff_t end = (lend + 1) >> PAGE_SHIFT;
977 struct folio_batch fbatch;
978 pgoff_t indices[PAGEVEC_SIZE];
981 long nr_swaps_freed = 0;
986 end = -1; /* unsigned, so actually very big */
988 if (info->fallocend > start && info->fallocend <= end && !unfalloc)
989 info->fallocend = start;
991 folio_batch_init(&fbatch);
993 while (index < end && find_lock_entries(mapping, &index, end - 1,
995 for (i = 0; i < folio_batch_count(&fbatch); i++) {
996 folio = fbatch.folios[i];
998 if (xa_is_value(folio)) {
1001 nr_swaps_freed += !shmem_free_swap(mapping,
1006 if (!unfalloc || !folio_test_uptodate(folio))
1007 truncate_inode_folio(mapping, folio);
1008 folio_unlock(folio);
1010 folio_batch_remove_exceptionals(&fbatch);
1011 folio_batch_release(&fbatch);
1016 * When undoing a failed fallocate, we want none of the partial folio
1017 * zeroing and splitting below, but shall want to truncate the whole
1018 * folio when !uptodate indicates that it was added by this fallocate,
1019 * even when [lstart, lend] covers only a part of the folio.
1024 same_folio = (lstart >> PAGE_SHIFT) == (lend >> PAGE_SHIFT);
1025 folio = shmem_get_partial_folio(inode, lstart >> PAGE_SHIFT);
1027 same_folio = lend < folio_pos(folio) + folio_size(folio);
1028 folio_mark_dirty(folio);
1029 if (!truncate_inode_partial_folio(folio, lstart, lend)) {
1030 start = folio_next_index(folio);
1034 folio_unlock(folio);
1040 folio = shmem_get_partial_folio(inode, lend >> PAGE_SHIFT);
1042 folio_mark_dirty(folio);
1043 if (!truncate_inode_partial_folio(folio, lstart, lend))
1045 folio_unlock(folio);
1052 while (index < end) {
1055 if (!find_get_entries(mapping, &index, end - 1, &fbatch,
1057 /* If all gone or hole-punch or unfalloc, we're done */
1058 if (index == start || end != -1)
1060 /* But if truncating, restart to make sure all gone */
1064 for (i = 0; i < folio_batch_count(&fbatch); i++) {
1065 folio = fbatch.folios[i];
1067 if (xa_is_value(folio)) {
1070 if (shmem_free_swap(mapping, indices[i], folio)) {
1071 /* Swap was replaced by page: retry */
1081 if (!unfalloc || !folio_test_uptodate(folio)) {
1082 if (folio_mapping(folio) != mapping) {
1083 /* Page was replaced by swap: retry */
1084 folio_unlock(folio);
1088 VM_BUG_ON_FOLIO(folio_test_writeback(folio),
1091 if (!folio_test_large(folio)) {
1092 truncate_inode_folio(mapping, folio);
1093 } else if (truncate_inode_partial_folio(folio, lstart, lend)) {
1095 * If we split a page, reset the loop so
1096 * that we pick up the new sub pages.
1097 * Otherwise the THP was entirely
1098 * dropped or the target range was
1099 * zeroed, so just continue the loop as
1102 if (!folio_test_large(folio)) {
1103 folio_unlock(folio);
1109 folio_unlock(folio);
1111 folio_batch_remove_exceptionals(&fbatch);
1112 folio_batch_release(&fbatch);
1115 shmem_recalc_inode(inode, 0, -nr_swaps_freed);
1118 void shmem_truncate_range(struct inode *inode, loff_t lstart, loff_t lend)
1120 shmem_undo_range(inode, lstart, lend, false);
1121 inode_set_mtime_to_ts(inode, inode_set_ctime_current(inode));
1122 inode_inc_iversion(inode);
1124 EXPORT_SYMBOL_GPL(shmem_truncate_range);
1126 static int shmem_getattr(struct mnt_idmap *idmap,
1127 const struct path *path, struct kstat *stat,
1128 u32 request_mask, unsigned int query_flags)
1130 struct inode *inode = path->dentry->d_inode;
1131 struct shmem_inode_info *info = SHMEM_I(inode);
1133 if (info->alloced - info->swapped != inode->i_mapping->nrpages)
1134 shmem_recalc_inode(inode, 0, 0);
1136 if (info->fsflags & FS_APPEND_FL)
1137 stat->attributes |= STATX_ATTR_APPEND;
1138 if (info->fsflags & FS_IMMUTABLE_FL)
1139 stat->attributes |= STATX_ATTR_IMMUTABLE;
1140 if (info->fsflags & FS_NODUMP_FL)
1141 stat->attributes |= STATX_ATTR_NODUMP;
1142 stat->attributes_mask |= (STATX_ATTR_APPEND |
1143 STATX_ATTR_IMMUTABLE |
1145 generic_fillattr(idmap, request_mask, inode, stat);
1147 if (shmem_is_huge(inode, 0, false, NULL, 0))
1148 stat->blksize = HPAGE_PMD_SIZE;
1150 if (request_mask & STATX_BTIME) {
1151 stat->result_mask |= STATX_BTIME;
1152 stat->btime.tv_sec = info->i_crtime.tv_sec;
1153 stat->btime.tv_nsec = info->i_crtime.tv_nsec;
1159 static int shmem_setattr(struct mnt_idmap *idmap,
1160 struct dentry *dentry, struct iattr *attr)
1162 struct inode *inode = d_inode(dentry);
1163 struct shmem_inode_info *info = SHMEM_I(inode);
1165 bool update_mtime = false;
1166 bool update_ctime = true;
1168 error = setattr_prepare(idmap, dentry, attr);
1172 if ((info->seals & F_SEAL_EXEC) && (attr->ia_valid & ATTR_MODE)) {
1173 if ((inode->i_mode ^ attr->ia_mode) & 0111) {
1178 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
1179 loff_t oldsize = inode->i_size;
1180 loff_t newsize = attr->ia_size;
1182 /* protected by i_rwsem */
1183 if ((newsize < oldsize && (info->seals & F_SEAL_SHRINK)) ||
1184 (newsize > oldsize && (info->seals & F_SEAL_GROW)))
1187 if (newsize != oldsize) {
1188 error = shmem_reacct_size(SHMEM_I(inode)->flags,
1192 i_size_write(inode, newsize);
1193 update_mtime = true;
1195 update_ctime = false;
1197 if (newsize <= oldsize) {
1198 loff_t holebegin = round_up(newsize, PAGE_SIZE);
1199 if (oldsize > holebegin)
1200 unmap_mapping_range(inode->i_mapping,
1203 shmem_truncate_range(inode,
1204 newsize, (loff_t)-1);
1205 /* unmap again to remove racily COWed private pages */
1206 if (oldsize > holebegin)
1207 unmap_mapping_range(inode->i_mapping,
1212 if (is_quota_modification(idmap, inode, attr)) {
1213 error = dquot_initialize(inode);
1218 /* Transfer quota accounting */
1219 if (i_uid_needs_update(idmap, attr, inode) ||
1220 i_gid_needs_update(idmap, attr, inode)) {
1221 error = dquot_transfer(idmap, inode, attr);
1226 setattr_copy(idmap, inode, attr);
1227 if (attr->ia_valid & ATTR_MODE)
1228 error = posix_acl_chmod(idmap, dentry, inode->i_mode);
1229 if (!error && update_ctime) {
1230 inode_set_ctime_current(inode);
1232 inode_set_mtime_to_ts(inode, inode_get_ctime(inode));
1233 inode_inc_iversion(inode);
1238 static void shmem_evict_inode(struct inode *inode)
1240 struct shmem_inode_info *info = SHMEM_I(inode);
1241 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
1244 if (shmem_mapping(inode->i_mapping)) {
1245 shmem_unacct_size(info->flags, inode->i_size);
1247 mapping_set_exiting(inode->i_mapping);
1248 shmem_truncate_range(inode, 0, (loff_t)-1);
1249 if (!list_empty(&info->shrinklist)) {
1250 spin_lock(&sbinfo->shrinklist_lock);
1251 if (!list_empty(&info->shrinklist)) {
1252 list_del_init(&info->shrinklist);
1253 sbinfo->shrinklist_len--;
1255 spin_unlock(&sbinfo->shrinklist_lock);
1257 while (!list_empty(&info->swaplist)) {
1258 /* Wait while shmem_unuse() is scanning this inode... */
1259 wait_var_event(&info->stop_eviction,
1260 !atomic_read(&info->stop_eviction));
1261 mutex_lock(&shmem_swaplist_mutex);
1262 /* ...but beware of the race if we peeked too early */
1263 if (!atomic_read(&info->stop_eviction))
1264 list_del_init(&info->swaplist);
1265 mutex_unlock(&shmem_swaplist_mutex);
1269 simple_xattrs_free(&info->xattrs, sbinfo->max_inodes ? &freed : NULL);
1270 shmem_free_inode(inode->i_sb, freed);
1271 WARN_ON(inode->i_blocks);
1273 #ifdef CONFIG_TMPFS_QUOTA
1274 dquot_free_inode(inode);
1279 static int shmem_find_swap_entries(struct address_space *mapping,
1280 pgoff_t start, struct folio_batch *fbatch,
1281 pgoff_t *indices, unsigned int type)
1283 XA_STATE(xas, &mapping->i_pages, start);
1284 struct folio *folio;
1288 xas_for_each(&xas, folio, ULONG_MAX) {
1289 if (xas_retry(&xas, folio))
1292 if (!xa_is_value(folio))
1295 entry = radix_to_swp_entry(folio);
1297 * swapin error entries can be found in the mapping. But they're
1298 * deliberately ignored here as we've done everything we can do.
1300 if (swp_type(entry) != type)
1303 indices[folio_batch_count(fbatch)] = xas.xa_index;
1304 if (!folio_batch_add(fbatch, folio))
1307 if (need_resched()) {
1314 return xas.xa_index;
1318 * Move the swapped pages for an inode to page cache. Returns the count
1319 * of pages swapped in, or the error in case of failure.
1321 static int shmem_unuse_swap_entries(struct inode *inode,
1322 struct folio_batch *fbatch, pgoff_t *indices)
1327 struct address_space *mapping = inode->i_mapping;
1329 for (i = 0; i < folio_batch_count(fbatch); i++) {
1330 struct folio *folio = fbatch->folios[i];
1332 if (!xa_is_value(folio))
1334 error = shmem_swapin_folio(inode, indices[i], &folio, SGP_CACHE,
1335 mapping_gfp_mask(mapping), NULL, NULL);
1337 folio_unlock(folio);
1341 if (error == -ENOMEM)
1345 return error ? error : ret;
1349 * If swap found in inode, free it and move page from swapcache to filecache.
1351 static int shmem_unuse_inode(struct inode *inode, unsigned int type)
1353 struct address_space *mapping = inode->i_mapping;
1355 struct folio_batch fbatch;
1356 pgoff_t indices[PAGEVEC_SIZE];
1360 folio_batch_init(&fbatch);
1361 shmem_find_swap_entries(mapping, start, &fbatch, indices, type);
1362 if (folio_batch_count(&fbatch) == 0) {
1367 ret = shmem_unuse_swap_entries(inode, &fbatch, indices);
1371 start = indices[folio_batch_count(&fbatch) - 1];
1378 * Read all the shared memory data that resides in the swap
1379 * device 'type' back into memory, so the swap device can be
1382 int shmem_unuse(unsigned int type)
1384 struct shmem_inode_info *info, *next;
1387 if (list_empty(&shmem_swaplist))
1390 mutex_lock(&shmem_swaplist_mutex);
1391 list_for_each_entry_safe(info, next, &shmem_swaplist, swaplist) {
1392 if (!info->swapped) {
1393 list_del_init(&info->swaplist);
1397 * Drop the swaplist mutex while searching the inode for swap;
1398 * but before doing so, make sure shmem_evict_inode() will not
1399 * remove placeholder inode from swaplist, nor let it be freed
1400 * (igrab() would protect from unlink, but not from unmount).
1402 atomic_inc(&info->stop_eviction);
1403 mutex_unlock(&shmem_swaplist_mutex);
1405 error = shmem_unuse_inode(&info->vfs_inode, type);
1408 mutex_lock(&shmem_swaplist_mutex);
1409 next = list_next_entry(info, swaplist);
1411 list_del_init(&info->swaplist);
1412 if (atomic_dec_and_test(&info->stop_eviction))
1413 wake_up_var(&info->stop_eviction);
1417 mutex_unlock(&shmem_swaplist_mutex);
1423 * Move the page from the page cache to the swap cache.
1425 static int shmem_writepage(struct page *page, struct writeback_control *wbc)
1427 struct folio *folio = page_folio(page);
1428 struct address_space *mapping = folio->mapping;
1429 struct inode *inode = mapping->host;
1430 struct shmem_inode_info *info = SHMEM_I(inode);
1431 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
1436 * Our capabilities prevent regular writeback or sync from ever calling
1437 * shmem_writepage; but a stacking filesystem might use ->writepage of
1438 * its underlying filesystem, in which case tmpfs should write out to
1439 * swap only in response to memory pressure, and not for the writeback
1442 if (WARN_ON_ONCE(!wbc->for_reclaim))
1445 if (WARN_ON_ONCE((info->flags & VM_LOCKED) || sbinfo->noswap))
1448 if (!total_swap_pages)
1452 * If /sys/kernel/mm/transparent_hugepage/shmem_enabled is "always" or
1453 * "force", drivers/gpu/drm/i915/gem/i915_gem_shmem.c gets huge pages,
1454 * and its shmem_writeback() needs them to be split when swapping.
1456 if (folio_test_large(folio)) {
1457 /* Ensure the subpages are still dirty */
1458 folio_test_set_dirty(folio);
1459 if (split_huge_page(page) < 0)
1461 folio = page_folio(page);
1462 folio_clear_dirty(folio);
1465 index = folio->index;
1468 * This is somewhat ridiculous, but without plumbing a SWAP_MAP_FALLOC
1469 * value into swapfile.c, the only way we can correctly account for a
1470 * fallocated folio arriving here is now to initialize it and write it.
1472 * That's okay for a folio already fallocated earlier, but if we have
1473 * not yet completed the fallocation, then (a) we want to keep track
1474 * of this folio in case we have to undo it, and (b) it may not be a
1475 * good idea to continue anyway, once we're pushing into swap. So
1476 * reactivate the folio, and let shmem_fallocate() quit when too many.
1478 if (!folio_test_uptodate(folio)) {
1479 if (inode->i_private) {
1480 struct shmem_falloc *shmem_falloc;
1481 spin_lock(&inode->i_lock);
1482 shmem_falloc = inode->i_private;
1484 !shmem_falloc->waitq &&
1485 index >= shmem_falloc->start &&
1486 index < shmem_falloc->next)
1487 shmem_falloc->nr_unswapped++;
1489 shmem_falloc = NULL;
1490 spin_unlock(&inode->i_lock);
1494 folio_zero_range(folio, 0, folio_size(folio));
1495 flush_dcache_folio(folio);
1496 folio_mark_uptodate(folio);
1499 swap = folio_alloc_swap(folio);
1504 * Add inode to shmem_unuse()'s list of swapped-out inodes,
1505 * if it's not already there. Do it now before the folio is
1506 * moved to swap cache, when its pagelock no longer protects
1507 * the inode from eviction. But don't unlock the mutex until
1508 * we've incremented swapped, because shmem_unuse_inode() will
1509 * prune a !swapped inode from the swaplist under this mutex.
1511 mutex_lock(&shmem_swaplist_mutex);
1512 if (list_empty(&info->swaplist))
1513 list_add(&info->swaplist, &shmem_swaplist);
1515 if (add_to_swap_cache(folio, swap,
1516 __GFP_HIGH | __GFP_NOMEMALLOC | __GFP_NOWARN,
1518 shmem_recalc_inode(inode, 0, 1);
1519 swap_shmem_alloc(swap);
1520 shmem_delete_from_page_cache(folio, swp_to_radix_entry(swap));
1522 mutex_unlock(&shmem_swaplist_mutex);
1523 BUG_ON(folio_mapped(folio));
1524 return swap_writepage(&folio->page, wbc);
1527 mutex_unlock(&shmem_swaplist_mutex);
1528 put_swap_folio(folio, swap);
1530 folio_mark_dirty(folio);
1531 if (wbc->for_reclaim)
1532 return AOP_WRITEPAGE_ACTIVATE; /* Return with folio locked */
1533 folio_unlock(folio);
1537 #if defined(CONFIG_NUMA) && defined(CONFIG_TMPFS)
1538 static void shmem_show_mpol(struct seq_file *seq, struct mempolicy *mpol)
1542 if (!mpol || mpol->mode == MPOL_DEFAULT)
1543 return; /* show nothing */
1545 mpol_to_str(buffer, sizeof(buffer), mpol);
1547 seq_printf(seq, ",mpol=%s", buffer);
1550 static struct mempolicy *shmem_get_sbmpol(struct shmem_sb_info *sbinfo)
1552 struct mempolicy *mpol = NULL;
1554 raw_spin_lock(&sbinfo->stat_lock); /* prevent replace/use races */
1555 mpol = sbinfo->mpol;
1557 raw_spin_unlock(&sbinfo->stat_lock);
1561 #else /* !CONFIG_NUMA || !CONFIG_TMPFS */
1562 static inline void shmem_show_mpol(struct seq_file *seq, struct mempolicy *mpol)
1565 static inline struct mempolicy *shmem_get_sbmpol(struct shmem_sb_info *sbinfo)
1569 #endif /* CONFIG_NUMA && CONFIG_TMPFS */
1571 static struct mempolicy *shmem_get_pgoff_policy(struct shmem_inode_info *info,
1572 pgoff_t index, unsigned int order, pgoff_t *ilx);
1574 static struct folio *shmem_swapin_cluster(swp_entry_t swap, gfp_t gfp,
1575 struct shmem_inode_info *info, pgoff_t index)
1577 struct mempolicy *mpol;
1579 struct folio *folio;
1581 mpol = shmem_get_pgoff_policy(info, index, 0, &ilx);
1582 folio = swap_cluster_readahead(swap, gfp, mpol, ilx);
1583 mpol_cond_put(mpol);
1589 * Make sure huge_gfp is always more limited than limit_gfp.
1590 * Some of the flags set permissions, while others set limitations.
1592 static gfp_t limit_gfp_mask(gfp_t huge_gfp, gfp_t limit_gfp)
1594 gfp_t allowflags = __GFP_IO | __GFP_FS | __GFP_RECLAIM;
1595 gfp_t denyflags = __GFP_NOWARN | __GFP_NORETRY;
1596 gfp_t zoneflags = limit_gfp & GFP_ZONEMASK;
1597 gfp_t result = huge_gfp & ~(allowflags | GFP_ZONEMASK);
1599 /* Allow allocations only from the originally specified zones. */
1600 result |= zoneflags;
1603 * Minimize the result gfp by taking the union with the deny flags,
1604 * and the intersection of the allow flags.
1606 result |= (limit_gfp & denyflags);
1607 result |= (huge_gfp & limit_gfp) & allowflags;
1612 static struct folio *shmem_alloc_hugefolio(gfp_t gfp,
1613 struct shmem_inode_info *info, pgoff_t index)
1615 struct mempolicy *mpol;
1619 mpol = shmem_get_pgoff_policy(info, index, HPAGE_PMD_ORDER, &ilx);
1620 page = alloc_pages_mpol(gfp, HPAGE_PMD_ORDER, mpol, ilx, numa_node_id());
1621 mpol_cond_put(mpol);
1623 return page_rmappable_folio(page);
1626 static struct folio *shmem_alloc_folio(gfp_t gfp,
1627 struct shmem_inode_info *info, pgoff_t index)
1629 struct mempolicy *mpol;
1633 mpol = shmem_get_pgoff_policy(info, index, 0, &ilx);
1634 page = alloc_pages_mpol(gfp, 0, mpol, ilx, numa_node_id());
1635 mpol_cond_put(mpol);
1637 return (struct folio *)page;
1640 static struct folio *shmem_alloc_and_add_folio(gfp_t gfp,
1641 struct inode *inode, pgoff_t index,
1642 struct mm_struct *fault_mm, bool huge)
1644 struct address_space *mapping = inode->i_mapping;
1645 struct shmem_inode_info *info = SHMEM_I(inode);
1646 struct folio *folio;
1650 if (!IS_ENABLED(CONFIG_TRANSPARENT_HUGEPAGE))
1654 pages = HPAGE_PMD_NR;
1655 index = round_down(index, HPAGE_PMD_NR);
1658 * Check for conflict before waiting on a huge allocation.
1659 * Conflict might be that a huge page has just been allocated
1660 * and added to page cache by a racing thread, or that there
1661 * is already at least one small page in the huge extent.
1662 * Be careful to retry when appropriate, but not forever!
1663 * Elsewhere -EEXIST would be the right code, but not here.
1665 if (xa_find(&mapping->i_pages, &index,
1666 index + HPAGE_PMD_NR - 1, XA_PRESENT))
1667 return ERR_PTR(-E2BIG);
1669 folio = shmem_alloc_hugefolio(gfp, info, index);
1671 count_vm_event(THP_FILE_FALLBACK);
1674 folio = shmem_alloc_folio(gfp, info, index);
1677 return ERR_PTR(-ENOMEM);
1679 __folio_set_locked(folio);
1680 __folio_set_swapbacked(folio);
1682 gfp &= GFP_RECLAIM_MASK;
1683 error = mem_cgroup_charge(folio, fault_mm, gfp);
1685 if (xa_find(&mapping->i_pages, &index,
1686 index + pages - 1, XA_PRESENT)) {
1689 count_vm_event(THP_FILE_FALLBACK);
1690 count_vm_event(THP_FILE_FALLBACK_CHARGE);
1695 error = shmem_add_to_page_cache(folio, mapping, index, NULL, gfp);
1699 error = shmem_inode_acct_blocks(inode, pages);
1701 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
1704 * Try to reclaim some space by splitting a few
1705 * large folios beyond i_size on the filesystem.
1707 shmem_unused_huge_shrink(sbinfo, NULL, 2);
1709 * And do a shmem_recalc_inode() to account for freed pages:
1710 * except our folio is there in cache, so not quite balanced.
1712 spin_lock(&info->lock);
1713 freed = pages + info->alloced - info->swapped -
1714 READ_ONCE(mapping->nrpages);
1716 info->alloced -= freed;
1717 spin_unlock(&info->lock);
1719 shmem_inode_unacct_blocks(inode, freed);
1720 error = shmem_inode_acct_blocks(inode, pages);
1722 filemap_remove_folio(folio);
1727 shmem_recalc_inode(inode, pages, 0);
1728 folio_add_lru(folio);
1732 folio_unlock(folio);
1734 return ERR_PTR(error);
1738 * When a page is moved from swapcache to shmem filecache (either by the
1739 * usual swapin of shmem_get_folio_gfp(), or by the less common swapoff of
1740 * shmem_unuse_inode()), it may have been read in earlier from swap, in
1741 * ignorance of the mapping it belongs to. If that mapping has special
1742 * constraints (like the gma500 GEM driver, which requires RAM below 4GB),
1743 * we may need to copy to a suitable page before moving to filecache.
1745 * In a future release, this may well be extended to respect cpuset and
1746 * NUMA mempolicy, and applied also to anonymous pages in do_swap_page();
1747 * but for now it is a simple matter of zone.
1749 static bool shmem_should_replace_folio(struct folio *folio, gfp_t gfp)
1751 return folio_zonenum(folio) > gfp_zone(gfp);
1754 static int shmem_replace_folio(struct folio **foliop, gfp_t gfp,
1755 struct shmem_inode_info *info, pgoff_t index)
1757 struct folio *old, *new;
1758 struct address_space *swap_mapping;
1765 swap_index = swp_offset(entry);
1766 swap_mapping = swap_address_space(entry);
1769 * We have arrived here because our zones are constrained, so don't
1770 * limit chance of success by further cpuset and node constraints.
1772 gfp &= ~GFP_CONSTRAINT_MASK;
1773 VM_BUG_ON_FOLIO(folio_test_large(old), old);
1774 new = shmem_alloc_folio(gfp, info, index);
1779 folio_copy(new, old);
1780 flush_dcache_folio(new);
1782 __folio_set_locked(new);
1783 __folio_set_swapbacked(new);
1784 folio_mark_uptodate(new);
1786 folio_set_swapcache(new);
1789 * Our caller will very soon move newpage out of swapcache, but it's
1790 * a nice clean interface for us to replace oldpage by newpage there.
1792 xa_lock_irq(&swap_mapping->i_pages);
1793 error = shmem_replace_entry(swap_mapping, swap_index, old, new);
1795 mem_cgroup_migrate(old, new);
1796 __lruvec_stat_mod_folio(new, NR_FILE_PAGES, 1);
1797 __lruvec_stat_mod_folio(new, NR_SHMEM, 1);
1798 __lruvec_stat_mod_folio(old, NR_FILE_PAGES, -1);
1799 __lruvec_stat_mod_folio(old, NR_SHMEM, -1);
1801 xa_unlock_irq(&swap_mapping->i_pages);
1803 if (unlikely(error)) {
1805 * Is this possible? I think not, now that our callers check
1806 * both PageSwapCache and page_private after getting page lock;
1807 * but be defensive. Reverse old to newpage for clear and free.
1815 folio_clear_swapcache(old);
1816 old->private = NULL;
1819 folio_put_refs(old, 2);
1823 static void shmem_set_folio_swapin_error(struct inode *inode, pgoff_t index,
1824 struct folio *folio, swp_entry_t swap)
1826 struct address_space *mapping = inode->i_mapping;
1827 swp_entry_t swapin_error;
1830 swapin_error = make_poisoned_swp_entry();
1831 old = xa_cmpxchg_irq(&mapping->i_pages, index,
1832 swp_to_radix_entry(swap),
1833 swp_to_radix_entry(swapin_error), 0);
1834 if (old != swp_to_radix_entry(swap))
1837 folio_wait_writeback(folio);
1838 delete_from_swap_cache(folio);
1840 * Don't treat swapin error folio as alloced. Otherwise inode->i_blocks
1841 * won't be 0 when inode is released and thus trigger WARN_ON(i_blocks)
1842 * in shmem_evict_inode().
1844 shmem_recalc_inode(inode, -1, -1);
1849 * Swap in the folio pointed to by *foliop.
1850 * Caller has to make sure that *foliop contains a valid swapped folio.
1851 * Returns 0 and the folio in foliop if success. On failure, returns the
1852 * error code and NULL in *foliop.
1854 static int shmem_swapin_folio(struct inode *inode, pgoff_t index,
1855 struct folio **foliop, enum sgp_type sgp,
1856 gfp_t gfp, struct mm_struct *fault_mm,
1857 vm_fault_t *fault_type)
1859 struct address_space *mapping = inode->i_mapping;
1860 struct shmem_inode_info *info = SHMEM_I(inode);
1861 struct swap_info_struct *si;
1862 struct folio *folio = NULL;
1866 VM_BUG_ON(!*foliop || !xa_is_value(*foliop));
1867 swap = radix_to_swp_entry(*foliop);
1870 if (is_poisoned_swp_entry(swap))
1873 si = get_swap_device(swap);
1875 if (!shmem_confirm_swap(mapping, index, swap))
1881 /* Look it up and read it in.. */
1882 folio = swap_cache_get_folio(swap, NULL, 0);
1884 /* Or update major stats only when swapin succeeds?? */
1886 *fault_type |= VM_FAULT_MAJOR;
1887 count_vm_event(PGMAJFAULT);
1888 count_memcg_event_mm(fault_mm, PGMAJFAULT);
1890 /* Here we actually start the io */
1891 folio = shmem_swapin_cluster(swap, gfp, info, index);
1898 /* We have to do this with folio locked to prevent races */
1900 if (!folio_test_swapcache(folio) ||
1901 folio->swap.val != swap.val ||
1902 !shmem_confirm_swap(mapping, index, swap)) {
1906 if (!folio_test_uptodate(folio)) {
1910 folio_wait_writeback(folio);
1913 * Some architectures may have to restore extra metadata to the
1914 * folio after reading from swap.
1916 arch_swap_restore(swap, folio);
1918 if (shmem_should_replace_folio(folio, gfp)) {
1919 error = shmem_replace_folio(&folio, gfp, info, index);
1924 error = shmem_add_to_page_cache(folio, mapping, index,
1925 swp_to_radix_entry(swap), gfp);
1929 shmem_recalc_inode(inode, 0, -1);
1931 if (sgp == SGP_WRITE)
1932 folio_mark_accessed(folio);
1934 delete_from_swap_cache(folio);
1935 folio_mark_dirty(folio);
1937 put_swap_device(si);
1942 if (!shmem_confirm_swap(mapping, index, swap))
1945 shmem_set_folio_swapin_error(inode, index, folio, swap);
1948 folio_unlock(folio);
1951 put_swap_device(si);
1957 * shmem_get_folio_gfp - find page in cache, or get from swap, or allocate
1959 * If we allocate a new one we do not mark it dirty. That's up to the
1960 * vm. If we swap it in we mark it dirty since we also free the swap
1961 * entry since a page cannot live in both the swap and page cache.
1963 * vmf and fault_type are only supplied by shmem_fault: otherwise they are NULL.
1965 static int shmem_get_folio_gfp(struct inode *inode, pgoff_t index,
1966 struct folio **foliop, enum sgp_type sgp, gfp_t gfp,
1967 struct vm_fault *vmf, vm_fault_t *fault_type)
1969 struct vm_area_struct *vma = vmf ? vmf->vma : NULL;
1970 struct mm_struct *fault_mm;
1971 struct folio *folio;
1975 if (WARN_ON_ONCE(!shmem_mapping(inode->i_mapping)))
1978 if (index > (MAX_LFS_FILESIZE >> PAGE_SHIFT))
1981 if (sgp <= SGP_CACHE &&
1982 ((loff_t)index << PAGE_SHIFT) >= i_size_read(inode))
1986 fault_mm = vma ? vma->vm_mm : NULL;
1988 folio = filemap_get_entry(inode->i_mapping, index);
1989 if (folio && vma && userfaultfd_minor(vma)) {
1990 if (!xa_is_value(folio))
1992 *fault_type = handle_userfault(vmf, VM_UFFD_MINOR);
1996 if (xa_is_value(folio)) {
1997 error = shmem_swapin_folio(inode, index, &folio,
1998 sgp, gfp, fault_mm, fault_type);
1999 if (error == -EEXIST)
2009 /* Has the folio been truncated or swapped out? */
2010 if (unlikely(folio->mapping != inode->i_mapping)) {
2011 folio_unlock(folio);
2015 if (sgp == SGP_WRITE)
2016 folio_mark_accessed(folio);
2017 if (folio_test_uptodate(folio))
2019 /* fallocated folio */
2020 if (sgp != SGP_READ)
2022 folio_unlock(folio);
2027 * SGP_READ: succeed on hole, with NULL folio, letting caller zero.
2028 * SGP_NOALLOC: fail on hole, with NULL folio, letting caller fail.
2031 if (sgp == SGP_READ)
2033 if (sgp == SGP_NOALLOC)
2037 * Fast cache lookup and swap lookup did not find it: allocate.
2040 if (vma && userfaultfd_missing(vma)) {
2041 *fault_type = handle_userfault(vmf, VM_UFFD_MISSING);
2045 if (shmem_is_huge(inode, index, false, fault_mm,
2046 vma ? vma->vm_flags : 0)) {
2049 huge_gfp = vma_thp_gfp_mask(vma);
2050 huge_gfp = limit_gfp_mask(huge_gfp, gfp);
2051 folio = shmem_alloc_and_add_folio(huge_gfp,
2052 inode, index, fault_mm, true);
2053 if (!IS_ERR(folio)) {
2054 count_vm_event(THP_FILE_ALLOC);
2057 if (PTR_ERR(folio) == -EEXIST)
2061 folio = shmem_alloc_and_add_folio(gfp, inode, index, fault_mm, false);
2062 if (IS_ERR(folio)) {
2063 error = PTR_ERR(folio);
2064 if (error == -EEXIST)
2072 if (folio_test_pmd_mappable(folio) &&
2073 DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE) <
2074 folio_next_index(folio) - 1) {
2075 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
2076 struct shmem_inode_info *info = SHMEM_I(inode);
2078 * Part of the large folio is beyond i_size: subject
2079 * to shrink under memory pressure.
2081 spin_lock(&sbinfo->shrinklist_lock);
2083 * _careful to defend against unlocked access to
2084 * ->shrink_list in shmem_unused_huge_shrink()
2086 if (list_empty_careful(&info->shrinklist)) {
2087 list_add_tail(&info->shrinklist,
2088 &sbinfo->shrinklist);
2089 sbinfo->shrinklist_len++;
2091 spin_unlock(&sbinfo->shrinklist_lock);
2094 if (sgp == SGP_WRITE)
2095 folio_set_referenced(folio);
2097 * Let SGP_FALLOC use the SGP_WRITE optimization on a new folio.
2099 if (sgp == SGP_FALLOC)
2103 * Let SGP_WRITE caller clear ends if write does not fill folio;
2104 * but SGP_FALLOC on a folio fallocated earlier must initialize
2105 * it now, lest undo on failure cancel our earlier guarantee.
2107 if (sgp != SGP_WRITE && !folio_test_uptodate(folio)) {
2108 long i, n = folio_nr_pages(folio);
2110 for (i = 0; i < n; i++)
2111 clear_highpage(folio_page(folio, i));
2112 flush_dcache_folio(folio);
2113 folio_mark_uptodate(folio);
2116 /* Perhaps the file has been truncated since we checked */
2117 if (sgp <= SGP_CACHE &&
2118 ((loff_t)index << PAGE_SHIFT) >= i_size_read(inode)) {
2131 filemap_remove_folio(folio);
2132 shmem_recalc_inode(inode, 0, 0);
2134 folio_unlock(folio);
2141 * shmem_get_folio - find, and lock a shmem folio.
2142 * @inode: inode to search
2143 * @index: the page index.
2144 * @foliop: pointer to the folio if found
2145 * @sgp: SGP_* flags to control behavior
2147 * Looks up the page cache entry at @inode & @index. If a folio is
2148 * present, it is returned locked with an increased refcount.
2150 * If the caller modifies data in the folio, it must call folio_mark_dirty()
2151 * before unlocking the folio to ensure that the folio is not reclaimed.
2152 * There is no need to reserve space before calling folio_mark_dirty().
2154 * When no folio is found, the behavior depends on @sgp:
2155 * - for SGP_READ, *@foliop is %NULL and 0 is returned
2156 * - for SGP_NOALLOC, *@foliop is %NULL and -ENOENT is returned
2157 * - for all other flags a new folio is allocated, inserted into the
2158 * page cache and returned locked in @foliop.
2160 * Context: May sleep.
2161 * Return: 0 if successful, else a negative error code.
2163 int shmem_get_folio(struct inode *inode, pgoff_t index, struct folio **foliop,
2166 return shmem_get_folio_gfp(inode, index, foliop, sgp,
2167 mapping_gfp_mask(inode->i_mapping), NULL, NULL);
2169 EXPORT_SYMBOL_GPL(shmem_get_folio);
2172 * This is like autoremove_wake_function, but it removes the wait queue
2173 * entry unconditionally - even if something else had already woken the
2176 static int synchronous_wake_function(wait_queue_entry_t *wait,
2177 unsigned int mode, int sync, void *key)
2179 int ret = default_wake_function(wait, mode, sync, key);
2180 list_del_init(&wait->entry);
2185 * Trinity finds that probing a hole which tmpfs is punching can
2186 * prevent the hole-punch from ever completing: which in turn
2187 * locks writers out with its hold on i_rwsem. So refrain from
2188 * faulting pages into the hole while it's being punched. Although
2189 * shmem_undo_range() does remove the additions, it may be unable to
2190 * keep up, as each new page needs its own unmap_mapping_range() call,
2191 * and the i_mmap tree grows ever slower to scan if new vmas are added.
2193 * It does not matter if we sometimes reach this check just before the
2194 * hole-punch begins, so that one fault then races with the punch:
2195 * we just need to make racing faults a rare case.
2197 * The implementation below would be much simpler if we just used a
2198 * standard mutex or completion: but we cannot take i_rwsem in fault,
2199 * and bloating every shmem inode for this unlikely case would be sad.
2201 static vm_fault_t shmem_falloc_wait(struct vm_fault *vmf, struct inode *inode)
2203 struct shmem_falloc *shmem_falloc;
2204 struct file *fpin = NULL;
2207 spin_lock(&inode->i_lock);
2208 shmem_falloc = inode->i_private;
2210 shmem_falloc->waitq &&
2211 vmf->pgoff >= shmem_falloc->start &&
2212 vmf->pgoff < shmem_falloc->next) {
2213 wait_queue_head_t *shmem_falloc_waitq;
2214 DEFINE_WAIT_FUNC(shmem_fault_wait, synchronous_wake_function);
2216 ret = VM_FAULT_NOPAGE;
2217 fpin = maybe_unlock_mmap_for_io(vmf, NULL);
2218 shmem_falloc_waitq = shmem_falloc->waitq;
2219 prepare_to_wait(shmem_falloc_waitq, &shmem_fault_wait,
2220 TASK_UNINTERRUPTIBLE);
2221 spin_unlock(&inode->i_lock);
2225 * shmem_falloc_waitq points into the shmem_fallocate()
2226 * stack of the hole-punching task: shmem_falloc_waitq
2227 * is usually invalid by the time we reach here, but
2228 * finish_wait() does not dereference it in that case;
2229 * though i_lock needed lest racing with wake_up_all().
2231 spin_lock(&inode->i_lock);
2232 finish_wait(shmem_falloc_waitq, &shmem_fault_wait);
2234 spin_unlock(&inode->i_lock);
2237 ret = VM_FAULT_RETRY;
2242 static vm_fault_t shmem_fault(struct vm_fault *vmf)
2244 struct inode *inode = file_inode(vmf->vma->vm_file);
2245 gfp_t gfp = mapping_gfp_mask(inode->i_mapping);
2246 struct folio *folio = NULL;
2251 * Trinity finds that probing a hole which tmpfs is punching can
2252 * prevent the hole-punch from ever completing: noted in i_private.
2254 if (unlikely(inode->i_private)) {
2255 ret = shmem_falloc_wait(vmf, inode);
2260 WARN_ON_ONCE(vmf->page != NULL);
2261 err = shmem_get_folio_gfp(inode, vmf->pgoff, &folio, SGP_CACHE,
2264 return vmf_error(err);
2266 vmf->page = folio_file_page(folio, vmf->pgoff);
2267 ret |= VM_FAULT_LOCKED;
2272 unsigned long shmem_get_unmapped_area(struct file *file,
2273 unsigned long uaddr, unsigned long len,
2274 unsigned long pgoff, unsigned long flags)
2276 unsigned long (*get_area)(struct file *,
2277 unsigned long, unsigned long, unsigned long, unsigned long);
2279 unsigned long offset;
2280 unsigned long inflated_len;
2281 unsigned long inflated_addr;
2282 unsigned long inflated_offset;
2284 if (len > TASK_SIZE)
2287 get_area = current->mm->get_unmapped_area;
2288 addr = get_area(file, uaddr, len, pgoff, flags);
2290 if (!IS_ENABLED(CONFIG_TRANSPARENT_HUGEPAGE))
2292 if (IS_ERR_VALUE(addr))
2294 if (addr & ~PAGE_MASK)
2296 if (addr > TASK_SIZE - len)
2299 if (shmem_huge == SHMEM_HUGE_DENY)
2301 if (len < HPAGE_PMD_SIZE)
2303 if (flags & MAP_FIXED)
2306 * Our priority is to support MAP_SHARED mapped hugely;
2307 * and support MAP_PRIVATE mapped hugely too, until it is COWed.
2308 * But if caller specified an address hint and we allocated area there
2309 * successfully, respect that as before.
2314 if (shmem_huge != SHMEM_HUGE_FORCE) {
2315 struct super_block *sb;
2318 VM_BUG_ON(file->f_op != &shmem_file_operations);
2319 sb = file_inode(file)->i_sb;
2322 * Called directly from mm/mmap.c, or drivers/char/mem.c
2323 * for "/dev/zero", to create a shared anonymous object.
2325 if (IS_ERR(shm_mnt))
2327 sb = shm_mnt->mnt_sb;
2329 if (SHMEM_SB(sb)->huge == SHMEM_HUGE_NEVER)
2333 offset = (pgoff << PAGE_SHIFT) & (HPAGE_PMD_SIZE-1);
2334 if (offset && offset + len < 2 * HPAGE_PMD_SIZE)
2336 if ((addr & (HPAGE_PMD_SIZE-1)) == offset)
2339 inflated_len = len + HPAGE_PMD_SIZE - PAGE_SIZE;
2340 if (inflated_len > TASK_SIZE)
2342 if (inflated_len < len)
2345 inflated_addr = get_area(NULL, uaddr, inflated_len, 0, flags);
2346 if (IS_ERR_VALUE(inflated_addr))
2348 if (inflated_addr & ~PAGE_MASK)
2351 inflated_offset = inflated_addr & (HPAGE_PMD_SIZE-1);
2352 inflated_addr += offset - inflated_offset;
2353 if (inflated_offset > offset)
2354 inflated_addr += HPAGE_PMD_SIZE;
2356 if (inflated_addr > TASK_SIZE - len)
2358 return inflated_addr;
2362 static int shmem_set_policy(struct vm_area_struct *vma, struct mempolicy *mpol)
2364 struct inode *inode = file_inode(vma->vm_file);
2365 return mpol_set_shared_policy(&SHMEM_I(inode)->policy, vma, mpol);
2368 static struct mempolicy *shmem_get_policy(struct vm_area_struct *vma,
2369 unsigned long addr, pgoff_t *ilx)
2371 struct inode *inode = file_inode(vma->vm_file);
2375 * Bias interleave by inode number to distribute better across nodes;
2376 * but this interface is independent of which page order is used, so
2377 * supplies only that bias, letting caller apply the offset (adjusted
2378 * by page order, as in shmem_get_pgoff_policy() and get_vma_policy()).
2380 *ilx = inode->i_ino;
2381 index = ((addr - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
2382 return mpol_shared_policy_lookup(&SHMEM_I(inode)->policy, index);
2385 static struct mempolicy *shmem_get_pgoff_policy(struct shmem_inode_info *info,
2386 pgoff_t index, unsigned int order, pgoff_t *ilx)
2388 struct mempolicy *mpol;
2390 /* Bias interleave by inode number to distribute better across nodes */
2391 *ilx = info->vfs_inode.i_ino + (index >> order);
2393 mpol = mpol_shared_policy_lookup(&info->policy, index);
2394 return mpol ? mpol : get_task_policy(current);
2397 static struct mempolicy *shmem_get_pgoff_policy(struct shmem_inode_info *info,
2398 pgoff_t index, unsigned int order, pgoff_t *ilx)
2403 #endif /* CONFIG_NUMA */
2405 int shmem_lock(struct file *file, int lock, struct ucounts *ucounts)
2407 struct inode *inode = file_inode(file);
2408 struct shmem_inode_info *info = SHMEM_I(inode);
2409 int retval = -ENOMEM;
2412 * What serializes the accesses to info->flags?
2413 * ipc_lock_object() when called from shmctl_do_lock(),
2414 * no serialization needed when called from shm_destroy().
2416 if (lock && !(info->flags & VM_LOCKED)) {
2417 if (!user_shm_lock(inode->i_size, ucounts))
2419 info->flags |= VM_LOCKED;
2420 mapping_set_unevictable(file->f_mapping);
2422 if (!lock && (info->flags & VM_LOCKED) && ucounts) {
2423 user_shm_unlock(inode->i_size, ucounts);
2424 info->flags &= ~VM_LOCKED;
2425 mapping_clear_unevictable(file->f_mapping);
2433 static int shmem_mmap(struct file *file, struct vm_area_struct *vma)
2435 struct inode *inode = file_inode(file);
2436 struct shmem_inode_info *info = SHMEM_I(inode);
2439 ret = seal_check_write(info->seals, vma);
2443 /* arm64 - allow memory tagging on RAM-based files */
2444 vm_flags_set(vma, VM_MTE_ALLOWED);
2446 file_accessed(file);
2447 /* This is anonymous shared memory if it is unlinked at the time of mmap */
2449 vma->vm_ops = &shmem_vm_ops;
2451 vma->vm_ops = &shmem_anon_vm_ops;
2455 static int shmem_file_open(struct inode *inode, struct file *file)
2457 file->f_mode |= FMODE_CAN_ODIRECT;
2458 return generic_file_open(inode, file);
2461 #ifdef CONFIG_TMPFS_XATTR
2462 static int shmem_initxattrs(struct inode *, const struct xattr *, void *);
2465 * chattr's fsflags are unrelated to extended attributes,
2466 * but tmpfs has chosen to enable them under the same config option.
2468 static void shmem_set_inode_flags(struct inode *inode, unsigned int fsflags)
2470 unsigned int i_flags = 0;
2472 if (fsflags & FS_NOATIME_FL)
2473 i_flags |= S_NOATIME;
2474 if (fsflags & FS_APPEND_FL)
2475 i_flags |= S_APPEND;
2476 if (fsflags & FS_IMMUTABLE_FL)
2477 i_flags |= S_IMMUTABLE;
2479 * But FS_NODUMP_FL does not require any action in i_flags.
2481 inode_set_flags(inode, i_flags, S_NOATIME | S_APPEND | S_IMMUTABLE);
2484 static void shmem_set_inode_flags(struct inode *inode, unsigned int fsflags)
2487 #define shmem_initxattrs NULL
2490 static struct offset_ctx *shmem_get_offset_ctx(struct inode *inode)
2492 return &SHMEM_I(inode)->dir_offsets;
2495 static struct inode *__shmem_get_inode(struct mnt_idmap *idmap,
2496 struct super_block *sb,
2497 struct inode *dir, umode_t mode,
2498 dev_t dev, unsigned long flags)
2500 struct inode *inode;
2501 struct shmem_inode_info *info;
2502 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
2506 err = shmem_reserve_inode(sb, &ino);
2508 return ERR_PTR(err);
2510 inode = new_inode(sb);
2512 shmem_free_inode(sb, 0);
2513 return ERR_PTR(-ENOSPC);
2517 inode_init_owner(idmap, inode, dir, mode);
2518 inode->i_blocks = 0;
2519 simple_inode_init_ts(inode);
2520 inode->i_generation = get_random_u32();
2521 info = SHMEM_I(inode);
2522 memset(info, 0, (char *)inode - (char *)info);
2523 spin_lock_init(&info->lock);
2524 atomic_set(&info->stop_eviction, 0);
2525 info->seals = F_SEAL_SEAL;
2526 info->flags = flags & VM_NORESERVE;
2527 info->i_crtime = inode_get_mtime(inode);
2528 info->fsflags = (dir == NULL) ? 0 :
2529 SHMEM_I(dir)->fsflags & SHMEM_FL_INHERITED;
2531 shmem_set_inode_flags(inode, info->fsflags);
2532 INIT_LIST_HEAD(&info->shrinklist);
2533 INIT_LIST_HEAD(&info->swaplist);
2534 simple_xattrs_init(&info->xattrs);
2535 cache_no_acl(inode);
2537 mapping_set_unevictable(inode->i_mapping);
2538 mapping_set_large_folios(inode->i_mapping);
2540 switch (mode & S_IFMT) {
2542 inode->i_op = &shmem_special_inode_operations;
2543 init_special_inode(inode, mode, dev);
2546 inode->i_mapping->a_ops = &shmem_aops;
2547 inode->i_op = &shmem_inode_operations;
2548 inode->i_fop = &shmem_file_operations;
2549 mpol_shared_policy_init(&info->policy,
2550 shmem_get_sbmpol(sbinfo));
2554 /* Some things misbehave if size == 0 on a directory */
2555 inode->i_size = 2 * BOGO_DIRENT_SIZE;
2556 inode->i_op = &shmem_dir_inode_operations;
2557 inode->i_fop = &simple_offset_dir_operations;
2558 simple_offset_init(shmem_get_offset_ctx(inode));
2562 * Must not load anything in the rbtree,
2563 * mpol_free_shared_policy will not be called.
2565 mpol_shared_policy_init(&info->policy, NULL);
2569 lockdep_annotate_inode_mutex_key(inode);
2573 #ifdef CONFIG_TMPFS_QUOTA
2574 static struct inode *shmem_get_inode(struct mnt_idmap *idmap,
2575 struct super_block *sb, struct inode *dir,
2576 umode_t mode, dev_t dev, unsigned long flags)
2579 struct inode *inode;
2581 inode = __shmem_get_inode(idmap, sb, dir, mode, dev, flags);
2585 err = dquot_initialize(inode);
2589 err = dquot_alloc_inode(inode);
2597 inode->i_flags |= S_NOQUOTA;
2599 return ERR_PTR(err);
2602 static inline struct inode *shmem_get_inode(struct mnt_idmap *idmap,
2603 struct super_block *sb, struct inode *dir,
2604 umode_t mode, dev_t dev, unsigned long flags)
2606 return __shmem_get_inode(idmap, sb, dir, mode, dev, flags);
2608 #endif /* CONFIG_TMPFS_QUOTA */
2610 #ifdef CONFIG_USERFAULTFD
2611 int shmem_mfill_atomic_pte(pmd_t *dst_pmd,
2612 struct vm_area_struct *dst_vma,
2613 unsigned long dst_addr,
2614 unsigned long src_addr,
2616 struct folio **foliop)
2618 struct inode *inode = file_inode(dst_vma->vm_file);
2619 struct shmem_inode_info *info = SHMEM_I(inode);
2620 struct address_space *mapping = inode->i_mapping;
2621 gfp_t gfp = mapping_gfp_mask(mapping);
2622 pgoff_t pgoff = linear_page_index(dst_vma, dst_addr);
2624 struct folio *folio;
2628 if (shmem_inode_acct_blocks(inode, 1)) {
2630 * We may have got a page, returned -ENOENT triggering a retry,
2631 * and now we find ourselves with -ENOMEM. Release the page, to
2632 * avoid a BUG_ON in our caller.
2634 if (unlikely(*foliop)) {
2643 folio = shmem_alloc_folio(gfp, info, pgoff);
2645 goto out_unacct_blocks;
2647 if (uffd_flags_mode_is(flags, MFILL_ATOMIC_COPY)) {
2648 page_kaddr = kmap_local_folio(folio, 0);
2650 * The read mmap_lock is held here. Despite the
2651 * mmap_lock being read recursive a deadlock is still
2652 * possible if a writer has taken a lock. For example:
2654 * process A thread 1 takes read lock on own mmap_lock
2655 * process A thread 2 calls mmap, blocks taking write lock
2656 * process B thread 1 takes page fault, read lock on own mmap lock
2657 * process B thread 2 calls mmap, blocks taking write lock
2658 * process A thread 1 blocks taking read lock on process B
2659 * process B thread 1 blocks taking read lock on process A
2661 * Disable page faults to prevent potential deadlock
2662 * and retry the copy outside the mmap_lock.
2664 pagefault_disable();
2665 ret = copy_from_user(page_kaddr,
2666 (const void __user *)src_addr,
2669 kunmap_local(page_kaddr);
2671 /* fallback to copy_from_user outside mmap_lock */
2672 if (unlikely(ret)) {
2675 /* don't free the page */
2676 goto out_unacct_blocks;
2679 flush_dcache_folio(folio);
2680 } else { /* ZEROPAGE */
2681 clear_user_highpage(&folio->page, dst_addr);
2685 VM_BUG_ON_FOLIO(folio_test_large(folio), folio);
2689 VM_BUG_ON(folio_test_locked(folio));
2690 VM_BUG_ON(folio_test_swapbacked(folio));
2691 __folio_set_locked(folio);
2692 __folio_set_swapbacked(folio);
2693 __folio_mark_uptodate(folio);
2696 max_off = DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE);
2697 if (unlikely(pgoff >= max_off))
2700 ret = mem_cgroup_charge(folio, dst_vma->vm_mm, gfp);
2703 ret = shmem_add_to_page_cache(folio, mapping, pgoff, NULL, gfp);
2707 ret = mfill_atomic_install_pte(dst_pmd, dst_vma, dst_addr,
2708 &folio->page, true, flags);
2710 goto out_delete_from_cache;
2712 shmem_recalc_inode(inode, 1, 0);
2713 folio_unlock(folio);
2715 out_delete_from_cache:
2716 filemap_remove_folio(folio);
2718 folio_unlock(folio);
2721 shmem_inode_unacct_blocks(inode, 1);
2724 #endif /* CONFIG_USERFAULTFD */
2727 static const struct inode_operations shmem_symlink_inode_operations;
2728 static const struct inode_operations shmem_short_symlink_operations;
2731 shmem_write_begin(struct file *file, struct address_space *mapping,
2732 loff_t pos, unsigned len,
2733 struct page **pagep, void **fsdata)
2735 struct inode *inode = mapping->host;
2736 struct shmem_inode_info *info = SHMEM_I(inode);
2737 pgoff_t index = pos >> PAGE_SHIFT;
2738 struct folio *folio;
2741 /* i_rwsem is held by caller */
2742 if (unlikely(info->seals & (F_SEAL_GROW |
2743 F_SEAL_WRITE | F_SEAL_FUTURE_WRITE))) {
2744 if (info->seals & (F_SEAL_WRITE | F_SEAL_FUTURE_WRITE))
2746 if ((info->seals & F_SEAL_GROW) && pos + len > inode->i_size)
2750 ret = shmem_get_folio(inode, index, &folio, SGP_WRITE);
2754 *pagep = folio_file_page(folio, index);
2755 if (PageHWPoison(*pagep)) {
2756 folio_unlock(folio);
2766 shmem_write_end(struct file *file, struct address_space *mapping,
2767 loff_t pos, unsigned len, unsigned copied,
2768 struct page *page, void *fsdata)
2770 struct folio *folio = page_folio(page);
2771 struct inode *inode = mapping->host;
2773 if (pos + copied > inode->i_size)
2774 i_size_write(inode, pos + copied);
2776 if (!folio_test_uptodate(folio)) {
2777 if (copied < folio_size(folio)) {
2778 size_t from = offset_in_folio(folio, pos);
2779 folio_zero_segments(folio, 0, from,
2780 from + copied, folio_size(folio));
2782 folio_mark_uptodate(folio);
2784 folio_mark_dirty(folio);
2785 folio_unlock(folio);
2791 static ssize_t shmem_file_read_iter(struct kiocb *iocb, struct iov_iter *to)
2793 struct file *file = iocb->ki_filp;
2794 struct inode *inode = file_inode(file);
2795 struct address_space *mapping = inode->i_mapping;
2797 unsigned long offset;
2800 loff_t *ppos = &iocb->ki_pos;
2802 index = *ppos >> PAGE_SHIFT;
2803 offset = *ppos & ~PAGE_MASK;
2806 struct folio *folio = NULL;
2807 struct page *page = NULL;
2809 unsigned long nr, ret;
2810 loff_t i_size = i_size_read(inode);
2812 end_index = i_size >> PAGE_SHIFT;
2813 if (index > end_index)
2815 if (index == end_index) {
2816 nr = i_size & ~PAGE_MASK;
2821 error = shmem_get_folio(inode, index, &folio, SGP_READ);
2823 if (error == -EINVAL)
2828 folio_unlock(folio);
2830 page = folio_file_page(folio, index);
2831 if (PageHWPoison(page)) {
2839 * We must evaluate after, since reads (unlike writes)
2840 * are called without i_rwsem protection against truncate
2843 i_size = i_size_read(inode);
2844 end_index = i_size >> PAGE_SHIFT;
2845 if (index == end_index) {
2846 nr = i_size & ~PAGE_MASK;
2857 * If users can be writing to this page using arbitrary
2858 * virtual addresses, take care about potential aliasing
2859 * before reading the page on the kernel side.
2861 if (mapping_writably_mapped(mapping))
2862 flush_dcache_page(page);
2864 * Mark the page accessed if we read the beginning.
2867 folio_mark_accessed(folio);
2869 * Ok, we have the page, and it's up-to-date, so
2870 * now we can copy it to user space...
2872 ret = copy_page_to_iter(page, offset, nr, to);
2875 } else if (user_backed_iter(to)) {
2877 * Copy to user tends to be so well optimized, but
2878 * clear_user() not so much, that it is noticeably
2879 * faster to copy the zero page instead of clearing.
2881 ret = copy_page_to_iter(ZERO_PAGE(0), offset, nr, to);
2884 * But submitting the same page twice in a row to
2885 * splice() - or others? - can result in confusion:
2886 * so don't attempt that optimization on pipes etc.
2888 ret = iov_iter_zero(nr, to);
2893 index += offset >> PAGE_SHIFT;
2894 offset &= ~PAGE_MASK;
2896 if (!iov_iter_count(to))
2905 *ppos = ((loff_t) index << PAGE_SHIFT) + offset;
2906 file_accessed(file);
2907 return retval ? retval : error;
2910 static ssize_t shmem_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
2912 struct file *file = iocb->ki_filp;
2913 struct inode *inode = file->f_mapping->host;
2917 ret = generic_write_checks(iocb, from);
2920 ret = file_remove_privs(file);
2923 ret = file_update_time(file);
2926 ret = generic_perform_write(iocb, from);
2928 inode_unlock(inode);
2932 static bool zero_pipe_buf_get(struct pipe_inode_info *pipe,
2933 struct pipe_buffer *buf)
2938 static void zero_pipe_buf_release(struct pipe_inode_info *pipe,
2939 struct pipe_buffer *buf)
2943 static bool zero_pipe_buf_try_steal(struct pipe_inode_info *pipe,
2944 struct pipe_buffer *buf)
2949 static const struct pipe_buf_operations zero_pipe_buf_ops = {
2950 .release = zero_pipe_buf_release,
2951 .try_steal = zero_pipe_buf_try_steal,
2952 .get = zero_pipe_buf_get,
2955 static size_t splice_zeropage_into_pipe(struct pipe_inode_info *pipe,
2956 loff_t fpos, size_t size)
2958 size_t offset = fpos & ~PAGE_MASK;
2960 size = min_t(size_t, size, PAGE_SIZE - offset);
2962 if (!pipe_full(pipe->head, pipe->tail, pipe->max_usage)) {
2963 struct pipe_buffer *buf = pipe_head_buf(pipe);
2965 *buf = (struct pipe_buffer) {
2966 .ops = &zero_pipe_buf_ops,
2967 .page = ZERO_PAGE(0),
2977 static ssize_t shmem_file_splice_read(struct file *in, loff_t *ppos,
2978 struct pipe_inode_info *pipe,
2979 size_t len, unsigned int flags)
2981 struct inode *inode = file_inode(in);
2982 struct address_space *mapping = inode->i_mapping;
2983 struct folio *folio = NULL;
2984 size_t total_spliced = 0, used, npages, n, part;
2988 /* Work out how much data we can actually add into the pipe */
2989 used = pipe_occupancy(pipe->head, pipe->tail);
2990 npages = max_t(ssize_t, pipe->max_usage - used, 0);
2991 len = min_t(size_t, len, npages * PAGE_SIZE);
2994 if (*ppos >= i_size_read(inode))
2997 error = shmem_get_folio(inode, *ppos / PAGE_SIZE, &folio,
3000 if (error == -EINVAL)
3005 folio_unlock(folio);
3007 if (folio_test_hwpoison(folio) ||
3008 (folio_test_large(folio) &&
3009 folio_test_has_hwpoisoned(folio))) {
3016 * i_size must be checked after we know the pages are Uptodate.
3018 * Checking i_size after the check allows us to calculate
3019 * the correct value for "nr", which means the zero-filled
3020 * part of the page is not copied back to userspace (unless
3021 * another truncate extends the file - this is desired though).
3023 isize = i_size_read(inode);
3024 if (unlikely(*ppos >= isize))
3026 part = min_t(loff_t, isize - *ppos, len);
3030 * If users can be writing to this page using arbitrary
3031 * virtual addresses, take care about potential aliasing
3032 * before reading the page on the kernel side.
3034 if (mapping_writably_mapped(mapping))
3035 flush_dcache_folio(folio);
3036 folio_mark_accessed(folio);
3038 * Ok, we have the page, and it's up-to-date, so we can
3039 * now splice it into the pipe.
3041 n = splice_folio_into_pipe(pipe, folio, *ppos, part);
3045 n = splice_zeropage_into_pipe(pipe, *ppos, part);
3053 in->f_ra.prev_pos = *ppos;
3054 if (pipe_full(pipe->head, pipe->tail, pipe->max_usage))
3064 return total_spliced ? total_spliced : error;
3067 static loff_t shmem_file_llseek(struct file *file, loff_t offset, int whence)
3069 struct address_space *mapping = file->f_mapping;
3070 struct inode *inode = mapping->host;
3072 if (whence != SEEK_DATA && whence != SEEK_HOLE)
3073 return generic_file_llseek_size(file, offset, whence,
3074 MAX_LFS_FILESIZE, i_size_read(inode));
3079 /* We're holding i_rwsem so we can access i_size directly */
3080 offset = mapping_seek_hole_data(mapping, offset, inode->i_size, whence);
3082 offset = vfs_setpos(file, offset, MAX_LFS_FILESIZE);
3083 inode_unlock(inode);
3087 static long shmem_fallocate(struct file *file, int mode, loff_t offset,
3090 struct inode *inode = file_inode(file);
3091 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
3092 struct shmem_inode_info *info = SHMEM_I(inode);
3093 struct shmem_falloc shmem_falloc;
3094 pgoff_t start, index, end, undo_fallocend;
3097 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
3102 if (mode & FALLOC_FL_PUNCH_HOLE) {
3103 struct address_space *mapping = file->f_mapping;
3104 loff_t unmap_start = round_up(offset, PAGE_SIZE);
3105 loff_t unmap_end = round_down(offset + len, PAGE_SIZE) - 1;
3106 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(shmem_falloc_waitq);
3108 /* protected by i_rwsem */
3109 if (info->seals & (F_SEAL_WRITE | F_SEAL_FUTURE_WRITE)) {
3114 shmem_falloc.waitq = &shmem_falloc_waitq;
3115 shmem_falloc.start = (u64)unmap_start >> PAGE_SHIFT;
3116 shmem_falloc.next = (unmap_end + 1) >> PAGE_SHIFT;
3117 spin_lock(&inode->i_lock);
3118 inode->i_private = &shmem_falloc;
3119 spin_unlock(&inode->i_lock);
3121 if ((u64)unmap_end > (u64)unmap_start)
3122 unmap_mapping_range(mapping, unmap_start,
3123 1 + unmap_end - unmap_start, 0);
3124 shmem_truncate_range(inode, offset, offset + len - 1);
3125 /* No need to unmap again: hole-punching leaves COWed pages */
3127 spin_lock(&inode->i_lock);
3128 inode->i_private = NULL;
3129 wake_up_all(&shmem_falloc_waitq);
3130 WARN_ON_ONCE(!list_empty(&shmem_falloc_waitq.head));
3131 spin_unlock(&inode->i_lock);
3136 /* We need to check rlimit even when FALLOC_FL_KEEP_SIZE */
3137 error = inode_newsize_ok(inode, offset + len);
3141 if ((info->seals & F_SEAL_GROW) && offset + len > inode->i_size) {
3146 start = offset >> PAGE_SHIFT;
3147 end = (offset + len + PAGE_SIZE - 1) >> PAGE_SHIFT;
3148 /* Try to avoid a swapstorm if len is impossible to satisfy */
3149 if (sbinfo->max_blocks && end - start > sbinfo->max_blocks) {
3154 shmem_falloc.waitq = NULL;
3155 shmem_falloc.start = start;
3156 shmem_falloc.next = start;
3157 shmem_falloc.nr_falloced = 0;
3158 shmem_falloc.nr_unswapped = 0;
3159 spin_lock(&inode->i_lock);
3160 inode->i_private = &shmem_falloc;
3161 spin_unlock(&inode->i_lock);
3164 * info->fallocend is only relevant when huge pages might be
3165 * involved: to prevent split_huge_page() freeing fallocated
3166 * pages when FALLOC_FL_KEEP_SIZE committed beyond i_size.
3168 undo_fallocend = info->fallocend;
3169 if (info->fallocend < end)
3170 info->fallocend = end;
3172 for (index = start; index < end; ) {
3173 struct folio *folio;
3176 * Good, the fallocate(2) manpage permits EINTR: we may have
3177 * been interrupted because we are using up too much memory.
3179 if (signal_pending(current))
3181 else if (shmem_falloc.nr_unswapped > shmem_falloc.nr_falloced)
3184 error = shmem_get_folio(inode, index, &folio,
3187 info->fallocend = undo_fallocend;
3188 /* Remove the !uptodate folios we added */
3189 if (index > start) {
3190 shmem_undo_range(inode,
3191 (loff_t)start << PAGE_SHIFT,
3192 ((loff_t)index << PAGE_SHIFT) - 1, true);
3198 * Here is a more important optimization than it appears:
3199 * a second SGP_FALLOC on the same large folio will clear it,
3200 * making it uptodate and un-undoable if we fail later.
3202 index = folio_next_index(folio);
3203 /* Beware 32-bit wraparound */
3208 * Inform shmem_writepage() how far we have reached.
3209 * No need for lock or barrier: we have the page lock.
3211 if (!folio_test_uptodate(folio))
3212 shmem_falloc.nr_falloced += index - shmem_falloc.next;
3213 shmem_falloc.next = index;
3216 * If !uptodate, leave it that way so that freeable folios
3217 * can be recognized if we need to rollback on error later.
3218 * But mark it dirty so that memory pressure will swap rather
3219 * than free the folios we are allocating (and SGP_CACHE folios
3220 * might still be clean: we now need to mark those dirty too).
3222 folio_mark_dirty(folio);
3223 folio_unlock(folio);
3228 if (!(mode & FALLOC_FL_KEEP_SIZE) && offset + len > inode->i_size)
3229 i_size_write(inode, offset + len);
3231 spin_lock(&inode->i_lock);
3232 inode->i_private = NULL;
3233 spin_unlock(&inode->i_lock);
3236 file_modified(file);
3237 inode_unlock(inode);
3241 static int shmem_statfs(struct dentry *dentry, struct kstatfs *buf)
3243 struct shmem_sb_info *sbinfo = SHMEM_SB(dentry->d_sb);
3245 buf->f_type = TMPFS_MAGIC;
3246 buf->f_bsize = PAGE_SIZE;
3247 buf->f_namelen = NAME_MAX;
3248 if (sbinfo->max_blocks) {
3249 buf->f_blocks = sbinfo->max_blocks;
3251 buf->f_bfree = sbinfo->max_blocks -
3252 percpu_counter_sum(&sbinfo->used_blocks);
3254 if (sbinfo->max_inodes) {
3255 buf->f_files = sbinfo->max_inodes;
3256 buf->f_ffree = sbinfo->free_ispace / BOGO_INODE_SIZE;
3258 /* else leave those fields 0 like simple_statfs */
3260 buf->f_fsid = uuid_to_fsid(dentry->d_sb->s_uuid.b);
3266 * File creation. Allocate an inode, and we're done..
3269 shmem_mknod(struct mnt_idmap *idmap, struct inode *dir,
3270 struct dentry *dentry, umode_t mode, dev_t dev)
3272 struct inode *inode;
3275 inode = shmem_get_inode(idmap, dir->i_sb, dir, mode, dev, VM_NORESERVE);
3277 return PTR_ERR(inode);
3279 error = simple_acl_create(dir, inode);
3282 error = security_inode_init_security(inode, dir, &dentry->d_name,
3283 shmem_initxattrs, NULL);
3284 if (error && error != -EOPNOTSUPP)
3287 error = simple_offset_add(shmem_get_offset_ctx(dir), dentry);
3291 dir->i_size += BOGO_DIRENT_SIZE;
3292 inode_set_mtime_to_ts(dir, inode_set_ctime_current(dir));
3293 inode_inc_iversion(dir);
3294 d_instantiate(dentry, inode);
3295 dget(dentry); /* Extra count - pin the dentry in core */
3304 shmem_tmpfile(struct mnt_idmap *idmap, struct inode *dir,
3305 struct file *file, umode_t mode)
3307 struct inode *inode;
3310 inode = shmem_get_inode(idmap, dir->i_sb, dir, mode, 0, VM_NORESERVE);
3311 if (IS_ERR(inode)) {
3312 error = PTR_ERR(inode);
3315 error = security_inode_init_security(inode, dir, NULL,
3316 shmem_initxattrs, NULL);
3317 if (error && error != -EOPNOTSUPP)
3319 error = simple_acl_create(dir, inode);
3322 d_tmpfile(file, inode);
3325 return finish_open_simple(file, error);
3331 static int shmem_mkdir(struct mnt_idmap *idmap, struct inode *dir,
3332 struct dentry *dentry, umode_t mode)
3336 error = shmem_mknod(idmap, dir, dentry, mode | S_IFDIR, 0);
3343 static int shmem_create(struct mnt_idmap *idmap, struct inode *dir,
3344 struct dentry *dentry, umode_t mode, bool excl)
3346 return shmem_mknod(idmap, dir, dentry, mode | S_IFREG, 0);
3352 static int shmem_link(struct dentry *old_dentry, struct inode *dir,
3353 struct dentry *dentry)
3355 struct inode *inode = d_inode(old_dentry);
3359 * No ordinary (disk based) filesystem counts links as inodes;
3360 * but each new link needs a new dentry, pinning lowmem, and
3361 * tmpfs dentries cannot be pruned until they are unlinked.
3362 * But if an O_TMPFILE file is linked into the tmpfs, the
3363 * first link must skip that, to get the accounting right.
3365 if (inode->i_nlink) {
3366 ret = shmem_reserve_inode(inode->i_sb, NULL);
3371 ret = simple_offset_add(shmem_get_offset_ctx(dir), dentry);
3374 shmem_free_inode(inode->i_sb, 0);
3378 dir->i_size += BOGO_DIRENT_SIZE;
3379 inode_set_mtime_to_ts(dir,
3380 inode_set_ctime_to_ts(dir, inode_set_ctime_current(inode)));
3381 inode_inc_iversion(dir);
3383 ihold(inode); /* New dentry reference */
3384 dget(dentry); /* Extra pinning count for the created dentry */
3385 d_instantiate(dentry, inode);
3390 static int shmem_unlink(struct inode *dir, struct dentry *dentry)
3392 struct inode *inode = d_inode(dentry);
3394 if (inode->i_nlink > 1 && !S_ISDIR(inode->i_mode))
3395 shmem_free_inode(inode->i_sb, 0);
3397 simple_offset_remove(shmem_get_offset_ctx(dir), dentry);
3399 dir->i_size -= BOGO_DIRENT_SIZE;
3400 inode_set_mtime_to_ts(dir,
3401 inode_set_ctime_to_ts(dir, inode_set_ctime_current(inode)));
3402 inode_inc_iversion(dir);
3404 dput(dentry); /* Undo the count from "create" - does all the work */
3408 static int shmem_rmdir(struct inode *dir, struct dentry *dentry)
3410 if (!simple_offset_empty(dentry))
3413 drop_nlink(d_inode(dentry));
3415 return shmem_unlink(dir, dentry);
3418 static int shmem_whiteout(struct mnt_idmap *idmap,
3419 struct inode *old_dir, struct dentry *old_dentry)
3421 struct dentry *whiteout;
3424 whiteout = d_alloc(old_dentry->d_parent, &old_dentry->d_name);
3428 error = shmem_mknod(idmap, old_dir, whiteout,
3429 S_IFCHR | WHITEOUT_MODE, WHITEOUT_DEV);
3435 * Cheat and hash the whiteout while the old dentry is still in
3436 * place, instead of playing games with FS_RENAME_DOES_D_MOVE.
3438 * d_lookup() will consistently find one of them at this point,
3439 * not sure which one, but that isn't even important.
3446 * The VFS layer already does all the dentry stuff for rename,
3447 * we just have to decrement the usage count for the target if
3448 * it exists so that the VFS layer correctly free's it when it
3451 static int shmem_rename2(struct mnt_idmap *idmap,
3452 struct inode *old_dir, struct dentry *old_dentry,
3453 struct inode *new_dir, struct dentry *new_dentry,
3456 struct inode *inode = d_inode(old_dentry);
3457 int they_are_dirs = S_ISDIR(inode->i_mode);
3460 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
3463 if (flags & RENAME_EXCHANGE)
3464 return simple_offset_rename_exchange(old_dir, old_dentry,
3465 new_dir, new_dentry);
3467 if (!simple_offset_empty(new_dentry))
3470 if (flags & RENAME_WHITEOUT) {
3471 error = shmem_whiteout(idmap, old_dir, old_dentry);
3476 simple_offset_remove(shmem_get_offset_ctx(old_dir), old_dentry);
3477 error = simple_offset_add(shmem_get_offset_ctx(new_dir), old_dentry);
3481 if (d_really_is_positive(new_dentry)) {
3482 (void) shmem_unlink(new_dir, new_dentry);
3483 if (they_are_dirs) {
3484 drop_nlink(d_inode(new_dentry));
3485 drop_nlink(old_dir);
3487 } else if (they_are_dirs) {
3488 drop_nlink(old_dir);
3492 old_dir->i_size -= BOGO_DIRENT_SIZE;
3493 new_dir->i_size += BOGO_DIRENT_SIZE;
3494 simple_rename_timestamp(old_dir, old_dentry, new_dir, new_dentry);
3495 inode_inc_iversion(old_dir);
3496 inode_inc_iversion(new_dir);
3500 static int shmem_symlink(struct mnt_idmap *idmap, struct inode *dir,
3501 struct dentry *dentry, const char *symname)
3505 struct inode *inode;
3506 struct folio *folio;
3508 len = strlen(symname) + 1;
3509 if (len > PAGE_SIZE)
3510 return -ENAMETOOLONG;
3512 inode = shmem_get_inode(idmap, dir->i_sb, dir, S_IFLNK | 0777, 0,
3515 return PTR_ERR(inode);
3517 error = security_inode_init_security(inode, dir, &dentry->d_name,
3518 shmem_initxattrs, NULL);
3519 if (error && error != -EOPNOTSUPP)
3522 error = simple_offset_add(shmem_get_offset_ctx(dir), dentry);
3526 inode->i_size = len-1;
3527 if (len <= SHORT_SYMLINK_LEN) {
3528 inode->i_link = kmemdup(symname, len, GFP_KERNEL);
3529 if (!inode->i_link) {
3531 goto out_remove_offset;
3533 inode->i_op = &shmem_short_symlink_operations;
3535 inode_nohighmem(inode);
3536 inode->i_mapping->a_ops = &shmem_aops;
3537 error = shmem_get_folio(inode, 0, &folio, SGP_WRITE);
3539 goto out_remove_offset;
3540 inode->i_op = &shmem_symlink_inode_operations;
3541 memcpy(folio_address(folio), symname, len);
3542 folio_mark_uptodate(folio);
3543 folio_mark_dirty(folio);
3544 folio_unlock(folio);
3547 dir->i_size += BOGO_DIRENT_SIZE;
3548 inode_set_mtime_to_ts(dir, inode_set_ctime_current(dir));
3549 inode_inc_iversion(dir);
3550 d_instantiate(dentry, inode);
3555 simple_offset_remove(shmem_get_offset_ctx(dir), dentry);
3561 static void shmem_put_link(void *arg)
3563 folio_mark_accessed(arg);
3567 static const char *shmem_get_link(struct dentry *dentry, struct inode *inode,
3568 struct delayed_call *done)
3570 struct folio *folio = NULL;
3574 folio = filemap_get_folio(inode->i_mapping, 0);
3576 return ERR_PTR(-ECHILD);
3577 if (PageHWPoison(folio_page(folio, 0)) ||
3578 !folio_test_uptodate(folio)) {
3580 return ERR_PTR(-ECHILD);
3583 error = shmem_get_folio(inode, 0, &folio, SGP_READ);
3585 return ERR_PTR(error);
3587 return ERR_PTR(-ECHILD);
3588 if (PageHWPoison(folio_page(folio, 0))) {
3589 folio_unlock(folio);
3591 return ERR_PTR(-ECHILD);
3593 folio_unlock(folio);
3595 set_delayed_call(done, shmem_put_link, folio);
3596 return folio_address(folio);
3599 #ifdef CONFIG_TMPFS_XATTR
3601 static int shmem_fileattr_get(struct dentry *dentry, struct fileattr *fa)
3603 struct shmem_inode_info *info = SHMEM_I(d_inode(dentry));
3605 fileattr_fill_flags(fa, info->fsflags & SHMEM_FL_USER_VISIBLE);
3610 static int shmem_fileattr_set(struct mnt_idmap *idmap,
3611 struct dentry *dentry, struct fileattr *fa)
3613 struct inode *inode = d_inode(dentry);
3614 struct shmem_inode_info *info = SHMEM_I(inode);
3616 if (fileattr_has_fsx(fa))
3618 if (fa->flags & ~SHMEM_FL_USER_MODIFIABLE)
3621 info->fsflags = (info->fsflags & ~SHMEM_FL_USER_MODIFIABLE) |
3622 (fa->flags & SHMEM_FL_USER_MODIFIABLE);
3624 shmem_set_inode_flags(inode, info->fsflags);
3625 inode_set_ctime_current(inode);
3626 inode_inc_iversion(inode);
3631 * Superblocks without xattr inode operations may get some security.* xattr
3632 * support from the LSM "for free". As soon as we have any other xattrs
3633 * like ACLs, we also need to implement the security.* handlers at
3634 * filesystem level, though.
3638 * Callback for security_inode_init_security() for acquiring xattrs.
3640 static int shmem_initxattrs(struct inode *inode,
3641 const struct xattr *xattr_array, void *fs_info)
3643 struct shmem_inode_info *info = SHMEM_I(inode);
3644 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
3645 const struct xattr *xattr;
3646 struct simple_xattr *new_xattr;
3650 if (sbinfo->max_inodes) {
3651 for (xattr = xattr_array; xattr->name != NULL; xattr++) {
3652 ispace += simple_xattr_space(xattr->name,
3653 xattr->value_len + XATTR_SECURITY_PREFIX_LEN);
3656 raw_spin_lock(&sbinfo->stat_lock);
3657 if (sbinfo->free_ispace < ispace)
3660 sbinfo->free_ispace -= ispace;
3661 raw_spin_unlock(&sbinfo->stat_lock);
3667 for (xattr = xattr_array; xattr->name != NULL; xattr++) {
3668 new_xattr = simple_xattr_alloc(xattr->value, xattr->value_len);
3672 len = strlen(xattr->name) + 1;
3673 new_xattr->name = kmalloc(XATTR_SECURITY_PREFIX_LEN + len,
3674 GFP_KERNEL_ACCOUNT);
3675 if (!new_xattr->name) {
3680 memcpy(new_xattr->name, XATTR_SECURITY_PREFIX,
3681 XATTR_SECURITY_PREFIX_LEN);
3682 memcpy(new_xattr->name + XATTR_SECURITY_PREFIX_LEN,
3685 simple_xattr_add(&info->xattrs, new_xattr);
3688 if (xattr->name != NULL) {
3690 raw_spin_lock(&sbinfo->stat_lock);
3691 sbinfo->free_ispace += ispace;
3692 raw_spin_unlock(&sbinfo->stat_lock);
3694 simple_xattrs_free(&info->xattrs, NULL);
3701 static int shmem_xattr_handler_get(const struct xattr_handler *handler,
3702 struct dentry *unused, struct inode *inode,
3703 const char *name, void *buffer, size_t size)
3705 struct shmem_inode_info *info = SHMEM_I(inode);
3707 name = xattr_full_name(handler, name);
3708 return simple_xattr_get(&info->xattrs, name, buffer, size);
3711 static int shmem_xattr_handler_set(const struct xattr_handler *handler,
3712 struct mnt_idmap *idmap,
3713 struct dentry *unused, struct inode *inode,
3714 const char *name, const void *value,
3715 size_t size, int flags)
3717 struct shmem_inode_info *info = SHMEM_I(inode);
3718 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
3719 struct simple_xattr *old_xattr;
3722 name = xattr_full_name(handler, name);
3723 if (value && sbinfo->max_inodes) {
3724 ispace = simple_xattr_space(name, size);
3725 raw_spin_lock(&sbinfo->stat_lock);
3726 if (sbinfo->free_ispace < ispace)
3729 sbinfo->free_ispace -= ispace;
3730 raw_spin_unlock(&sbinfo->stat_lock);
3735 old_xattr = simple_xattr_set(&info->xattrs, name, value, size, flags);
3736 if (!IS_ERR(old_xattr)) {
3738 if (old_xattr && sbinfo->max_inodes)
3739 ispace = simple_xattr_space(old_xattr->name,
3741 simple_xattr_free(old_xattr);
3743 inode_set_ctime_current(inode);
3744 inode_inc_iversion(inode);
3747 raw_spin_lock(&sbinfo->stat_lock);
3748 sbinfo->free_ispace += ispace;
3749 raw_spin_unlock(&sbinfo->stat_lock);
3751 return PTR_ERR(old_xattr);
3754 static const struct xattr_handler shmem_security_xattr_handler = {
3755 .prefix = XATTR_SECURITY_PREFIX,
3756 .get = shmem_xattr_handler_get,
3757 .set = shmem_xattr_handler_set,
3760 static const struct xattr_handler shmem_trusted_xattr_handler = {
3761 .prefix = XATTR_TRUSTED_PREFIX,
3762 .get = shmem_xattr_handler_get,
3763 .set = shmem_xattr_handler_set,
3766 static const struct xattr_handler shmem_user_xattr_handler = {
3767 .prefix = XATTR_USER_PREFIX,
3768 .get = shmem_xattr_handler_get,
3769 .set = shmem_xattr_handler_set,
3772 static const struct xattr_handler * const shmem_xattr_handlers[] = {
3773 &shmem_security_xattr_handler,
3774 &shmem_trusted_xattr_handler,
3775 &shmem_user_xattr_handler,
3779 static ssize_t shmem_listxattr(struct dentry *dentry, char *buffer, size_t size)
3781 struct shmem_inode_info *info = SHMEM_I(d_inode(dentry));
3782 return simple_xattr_list(d_inode(dentry), &info->xattrs, buffer, size);
3784 #endif /* CONFIG_TMPFS_XATTR */
3786 static const struct inode_operations shmem_short_symlink_operations = {
3787 .getattr = shmem_getattr,
3788 .setattr = shmem_setattr,
3789 .get_link = simple_get_link,
3790 #ifdef CONFIG_TMPFS_XATTR
3791 .listxattr = shmem_listxattr,
3795 static const struct inode_operations shmem_symlink_inode_operations = {
3796 .getattr = shmem_getattr,
3797 .setattr = shmem_setattr,
3798 .get_link = shmem_get_link,
3799 #ifdef CONFIG_TMPFS_XATTR
3800 .listxattr = shmem_listxattr,
3804 static struct dentry *shmem_get_parent(struct dentry *child)
3806 return ERR_PTR(-ESTALE);
3809 static int shmem_match(struct inode *ino, void *vfh)
3813 inum = (inum << 32) | fh[1];
3814 return ino->i_ino == inum && fh[0] == ino->i_generation;
3817 /* Find any alias of inode, but prefer a hashed alias */
3818 static struct dentry *shmem_find_alias(struct inode *inode)
3820 struct dentry *alias = d_find_alias(inode);
3822 return alias ?: d_find_any_alias(inode);
3825 static struct dentry *shmem_fh_to_dentry(struct super_block *sb,
3826 struct fid *fid, int fh_len, int fh_type)
3828 struct inode *inode;
3829 struct dentry *dentry = NULL;
3836 inum = (inum << 32) | fid->raw[1];
3838 inode = ilookup5(sb, (unsigned long)(inum + fid->raw[0]),
3839 shmem_match, fid->raw);
3841 dentry = shmem_find_alias(inode);
3848 static int shmem_encode_fh(struct inode *inode, __u32 *fh, int *len,
3849 struct inode *parent)
3853 return FILEID_INVALID;
3856 if (inode_unhashed(inode)) {
3857 /* Unfortunately insert_inode_hash is not idempotent,
3858 * so as we hash inodes here rather than at creation
3859 * time, we need a lock to ensure we only try
3862 static DEFINE_SPINLOCK(lock);
3864 if (inode_unhashed(inode))
3865 __insert_inode_hash(inode,
3866 inode->i_ino + inode->i_generation);
3870 fh[0] = inode->i_generation;
3871 fh[1] = inode->i_ino;
3872 fh[2] = ((__u64)inode->i_ino) >> 32;
3878 static const struct export_operations shmem_export_ops = {
3879 .get_parent = shmem_get_parent,
3880 .encode_fh = shmem_encode_fh,
3881 .fh_to_dentry = shmem_fh_to_dentry,
3899 Opt_usrquota_block_hardlimit,
3900 Opt_usrquota_inode_hardlimit,
3901 Opt_grpquota_block_hardlimit,
3902 Opt_grpquota_inode_hardlimit,
3905 static const struct constant_table shmem_param_enums_huge[] = {
3906 {"never", SHMEM_HUGE_NEVER },
3907 {"always", SHMEM_HUGE_ALWAYS },
3908 {"within_size", SHMEM_HUGE_WITHIN_SIZE },
3909 {"advise", SHMEM_HUGE_ADVISE },
3913 const struct fs_parameter_spec shmem_fs_parameters[] = {
3914 fsparam_u32 ("gid", Opt_gid),
3915 fsparam_enum ("huge", Opt_huge, shmem_param_enums_huge),
3916 fsparam_u32oct("mode", Opt_mode),
3917 fsparam_string("mpol", Opt_mpol),
3918 fsparam_string("nr_blocks", Opt_nr_blocks),
3919 fsparam_string("nr_inodes", Opt_nr_inodes),
3920 fsparam_string("size", Opt_size),
3921 fsparam_u32 ("uid", Opt_uid),
3922 fsparam_flag ("inode32", Opt_inode32),
3923 fsparam_flag ("inode64", Opt_inode64),
3924 fsparam_flag ("noswap", Opt_noswap),
3925 #ifdef CONFIG_TMPFS_QUOTA
3926 fsparam_flag ("quota", Opt_quota),
3927 fsparam_flag ("usrquota", Opt_usrquota),
3928 fsparam_flag ("grpquota", Opt_grpquota),
3929 fsparam_string("usrquota_block_hardlimit", Opt_usrquota_block_hardlimit),
3930 fsparam_string("usrquota_inode_hardlimit", Opt_usrquota_inode_hardlimit),
3931 fsparam_string("grpquota_block_hardlimit", Opt_grpquota_block_hardlimit),
3932 fsparam_string("grpquota_inode_hardlimit", Opt_grpquota_inode_hardlimit),
3937 static int shmem_parse_one(struct fs_context *fc, struct fs_parameter *param)
3939 struct shmem_options *ctx = fc->fs_private;
3940 struct fs_parse_result result;
3941 unsigned long long size;
3947 opt = fs_parse(fc, shmem_fs_parameters, param, &result);
3953 size = memparse(param->string, &rest);
3955 size <<= PAGE_SHIFT;
3956 size *= totalram_pages();
3962 ctx->blocks = DIV_ROUND_UP(size, PAGE_SIZE);
3963 ctx->seen |= SHMEM_SEEN_BLOCKS;
3966 ctx->blocks = memparse(param->string, &rest);
3967 if (*rest || ctx->blocks > LONG_MAX)
3969 ctx->seen |= SHMEM_SEEN_BLOCKS;
3972 ctx->inodes = memparse(param->string, &rest);
3973 if (*rest || ctx->inodes > ULONG_MAX / BOGO_INODE_SIZE)
3975 ctx->seen |= SHMEM_SEEN_INODES;
3978 ctx->mode = result.uint_32 & 07777;
3981 kuid = make_kuid(current_user_ns(), result.uint_32);
3982 if (!uid_valid(kuid))
3986 * The requested uid must be representable in the
3987 * filesystem's idmapping.
3989 if (!kuid_has_mapping(fc->user_ns, kuid))
3995 kgid = make_kgid(current_user_ns(), result.uint_32);
3996 if (!gid_valid(kgid))
4000 * The requested gid must be representable in the
4001 * filesystem's idmapping.
4003 if (!kgid_has_mapping(fc->user_ns, kgid))
4009 ctx->huge = result.uint_32;
4010 if (ctx->huge != SHMEM_HUGE_NEVER &&
4011 !(IS_ENABLED(CONFIG_TRANSPARENT_HUGEPAGE) &&
4012 has_transparent_hugepage()))
4013 goto unsupported_parameter;
4014 ctx->seen |= SHMEM_SEEN_HUGE;
4017 if (IS_ENABLED(CONFIG_NUMA)) {
4018 mpol_put(ctx->mpol);
4020 if (mpol_parse_str(param->string, &ctx->mpol))
4024 goto unsupported_parameter;
4026 ctx->full_inums = false;
4027 ctx->seen |= SHMEM_SEEN_INUMS;
4030 if (sizeof(ino_t) < 8) {
4032 "Cannot use inode64 with <64bit inums in kernel\n");
4034 ctx->full_inums = true;
4035 ctx->seen |= SHMEM_SEEN_INUMS;
4038 if ((fc->user_ns != &init_user_ns) || !capable(CAP_SYS_ADMIN)) {
4040 "Turning off swap in unprivileged tmpfs mounts unsupported");
4043 ctx->seen |= SHMEM_SEEN_NOSWAP;
4046 if (fc->user_ns != &init_user_ns)
4047 return invalfc(fc, "Quotas in unprivileged tmpfs mounts are unsupported");
4048 ctx->seen |= SHMEM_SEEN_QUOTA;
4049 ctx->quota_types |= (QTYPE_MASK_USR | QTYPE_MASK_GRP);
4052 if (fc->user_ns != &init_user_ns)
4053 return invalfc(fc, "Quotas in unprivileged tmpfs mounts are unsupported");
4054 ctx->seen |= SHMEM_SEEN_QUOTA;
4055 ctx->quota_types |= QTYPE_MASK_USR;
4058 if (fc->user_ns != &init_user_ns)
4059 return invalfc(fc, "Quotas in unprivileged tmpfs mounts are unsupported");
4060 ctx->seen |= SHMEM_SEEN_QUOTA;
4061 ctx->quota_types |= QTYPE_MASK_GRP;
4063 case Opt_usrquota_block_hardlimit:
4064 size = memparse(param->string, &rest);
4067 if (size > SHMEM_QUOTA_MAX_SPC_LIMIT)
4069 "User quota block hardlimit too large.");
4070 ctx->qlimits.usrquota_bhardlimit = size;
4072 case Opt_grpquota_block_hardlimit:
4073 size = memparse(param->string, &rest);
4076 if (size > SHMEM_QUOTA_MAX_SPC_LIMIT)
4078 "Group quota block hardlimit too large.");
4079 ctx->qlimits.grpquota_bhardlimit = size;
4081 case Opt_usrquota_inode_hardlimit:
4082 size = memparse(param->string, &rest);
4085 if (size > SHMEM_QUOTA_MAX_INO_LIMIT)
4087 "User quota inode hardlimit too large.");
4088 ctx->qlimits.usrquota_ihardlimit = size;
4090 case Opt_grpquota_inode_hardlimit:
4091 size = memparse(param->string, &rest);
4094 if (size > SHMEM_QUOTA_MAX_INO_LIMIT)
4096 "Group quota inode hardlimit too large.");
4097 ctx->qlimits.grpquota_ihardlimit = size;
4102 unsupported_parameter:
4103 return invalfc(fc, "Unsupported parameter '%s'", param->key);
4105 return invalfc(fc, "Bad value for '%s'", param->key);
4108 static int shmem_parse_options(struct fs_context *fc, void *data)
4110 char *options = data;
4113 int err = security_sb_eat_lsm_opts(options, &fc->security);
4118 while (options != NULL) {
4119 char *this_char = options;
4122 * NUL-terminate this option: unfortunately,
4123 * mount options form a comma-separated list,
4124 * but mpol's nodelist may also contain commas.
4126 options = strchr(options, ',');
4127 if (options == NULL)
4130 if (!isdigit(*options)) {
4136 char *value = strchr(this_char, '=');
4142 len = strlen(value);
4144 err = vfs_parse_fs_string(fc, this_char, value, len);
4153 * Reconfigure a shmem filesystem.
4155 static int shmem_reconfigure(struct fs_context *fc)
4157 struct shmem_options *ctx = fc->fs_private;
4158 struct shmem_sb_info *sbinfo = SHMEM_SB(fc->root->d_sb);
4159 unsigned long used_isp;
4160 struct mempolicy *mpol = NULL;
4163 raw_spin_lock(&sbinfo->stat_lock);
4164 used_isp = sbinfo->max_inodes * BOGO_INODE_SIZE - sbinfo->free_ispace;
4166 if ((ctx->seen & SHMEM_SEEN_BLOCKS) && ctx->blocks) {
4167 if (!sbinfo->max_blocks) {
4168 err = "Cannot retroactively limit size";
4171 if (percpu_counter_compare(&sbinfo->used_blocks,
4173 err = "Too small a size for current use";
4177 if ((ctx->seen & SHMEM_SEEN_INODES) && ctx->inodes) {
4178 if (!sbinfo->max_inodes) {
4179 err = "Cannot retroactively limit inodes";
4182 if (ctx->inodes * BOGO_INODE_SIZE < used_isp) {
4183 err = "Too few inodes for current use";
4188 if ((ctx->seen & SHMEM_SEEN_INUMS) && !ctx->full_inums &&
4189 sbinfo->next_ino > UINT_MAX) {
4190 err = "Current inum too high to switch to 32-bit inums";
4193 if ((ctx->seen & SHMEM_SEEN_NOSWAP) && ctx->noswap && !sbinfo->noswap) {
4194 err = "Cannot disable swap on remount";
4197 if (!(ctx->seen & SHMEM_SEEN_NOSWAP) && !ctx->noswap && sbinfo->noswap) {
4198 err = "Cannot enable swap on remount if it was disabled on first mount";
4202 if (ctx->seen & SHMEM_SEEN_QUOTA &&
4203 !sb_any_quota_loaded(fc->root->d_sb)) {
4204 err = "Cannot enable quota on remount";
4208 #ifdef CONFIG_TMPFS_QUOTA
4209 #define CHANGED_LIMIT(name) \
4210 (ctx->qlimits.name## hardlimit && \
4211 (ctx->qlimits.name## hardlimit != sbinfo->qlimits.name## hardlimit))
4213 if (CHANGED_LIMIT(usrquota_b) || CHANGED_LIMIT(usrquota_i) ||
4214 CHANGED_LIMIT(grpquota_b) || CHANGED_LIMIT(grpquota_i)) {
4215 err = "Cannot change global quota limit on remount";
4218 #endif /* CONFIG_TMPFS_QUOTA */
4220 if (ctx->seen & SHMEM_SEEN_HUGE)
4221 sbinfo->huge = ctx->huge;
4222 if (ctx->seen & SHMEM_SEEN_INUMS)
4223 sbinfo->full_inums = ctx->full_inums;
4224 if (ctx->seen & SHMEM_SEEN_BLOCKS)
4225 sbinfo->max_blocks = ctx->blocks;
4226 if (ctx->seen & SHMEM_SEEN_INODES) {
4227 sbinfo->max_inodes = ctx->inodes;
4228 sbinfo->free_ispace = ctx->inodes * BOGO_INODE_SIZE - used_isp;
4232 * Preserve previous mempolicy unless mpol remount option was specified.
4235 mpol = sbinfo->mpol;
4236 sbinfo->mpol = ctx->mpol; /* transfers initial ref */
4241 sbinfo->noswap = true;
4243 raw_spin_unlock(&sbinfo->stat_lock);
4247 raw_spin_unlock(&sbinfo->stat_lock);
4248 return invalfc(fc, "%s", err);
4251 static int shmem_show_options(struct seq_file *seq, struct dentry *root)
4253 struct shmem_sb_info *sbinfo = SHMEM_SB(root->d_sb);
4254 struct mempolicy *mpol;
4256 if (sbinfo->max_blocks != shmem_default_max_blocks())
4257 seq_printf(seq, ",size=%luk", K(sbinfo->max_blocks));
4258 if (sbinfo->max_inodes != shmem_default_max_inodes())
4259 seq_printf(seq, ",nr_inodes=%lu", sbinfo->max_inodes);
4260 if (sbinfo->mode != (0777 | S_ISVTX))
4261 seq_printf(seq, ",mode=%03ho", sbinfo->mode);
4262 if (!uid_eq(sbinfo->uid, GLOBAL_ROOT_UID))
4263 seq_printf(seq, ",uid=%u",
4264 from_kuid_munged(&init_user_ns, sbinfo->uid));
4265 if (!gid_eq(sbinfo->gid, GLOBAL_ROOT_GID))
4266 seq_printf(seq, ",gid=%u",
4267 from_kgid_munged(&init_user_ns, sbinfo->gid));
4270 * Showing inode{64,32} might be useful even if it's the system default,
4271 * since then people don't have to resort to checking both here and
4272 * /proc/config.gz to confirm 64-bit inums were successfully applied
4273 * (which may not even exist if IKCONFIG_PROC isn't enabled).
4275 * We hide it when inode64 isn't the default and we are using 32-bit
4276 * inodes, since that probably just means the feature isn't even under
4281 * +-----------------+-----------------+
4282 * | TMPFS_INODE64=y | TMPFS_INODE64=n |
4283 * +------------------+-----------------+-----------------+
4284 * | full_inums=true | show | show |
4285 * | full_inums=false | show | hide |
4286 * +------------------+-----------------+-----------------+
4289 if (IS_ENABLED(CONFIG_TMPFS_INODE64) || sbinfo->full_inums)
4290 seq_printf(seq, ",inode%d", (sbinfo->full_inums ? 64 : 32));
4291 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
4292 /* Rightly or wrongly, show huge mount option unmasked by shmem_huge */
4294 seq_printf(seq, ",huge=%s", shmem_format_huge(sbinfo->huge));
4296 mpol = shmem_get_sbmpol(sbinfo);
4297 shmem_show_mpol(seq, mpol);
4300 seq_printf(seq, ",noswap");
4301 #ifdef CONFIG_TMPFS_QUOTA
4302 if (sb_has_quota_active(root->d_sb, USRQUOTA))
4303 seq_printf(seq, ",usrquota");
4304 if (sb_has_quota_active(root->d_sb, GRPQUOTA))
4305 seq_printf(seq, ",grpquota");
4306 if (sbinfo->qlimits.usrquota_bhardlimit)
4307 seq_printf(seq, ",usrquota_block_hardlimit=%lld",
4308 sbinfo->qlimits.usrquota_bhardlimit);
4309 if (sbinfo->qlimits.grpquota_bhardlimit)
4310 seq_printf(seq, ",grpquota_block_hardlimit=%lld",
4311 sbinfo->qlimits.grpquota_bhardlimit);
4312 if (sbinfo->qlimits.usrquota_ihardlimit)
4313 seq_printf(seq, ",usrquota_inode_hardlimit=%lld",
4314 sbinfo->qlimits.usrquota_ihardlimit);
4315 if (sbinfo->qlimits.grpquota_ihardlimit)
4316 seq_printf(seq, ",grpquota_inode_hardlimit=%lld",
4317 sbinfo->qlimits.grpquota_ihardlimit);
4322 #endif /* CONFIG_TMPFS */
4324 static void shmem_put_super(struct super_block *sb)
4326 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
4328 #ifdef CONFIG_TMPFS_QUOTA
4329 shmem_disable_quotas(sb);
4331 free_percpu(sbinfo->ino_batch);
4332 percpu_counter_destroy(&sbinfo->used_blocks);
4333 mpol_put(sbinfo->mpol);
4335 sb->s_fs_info = NULL;
4338 static int shmem_fill_super(struct super_block *sb, struct fs_context *fc)
4340 struct shmem_options *ctx = fc->fs_private;
4341 struct inode *inode;
4342 struct shmem_sb_info *sbinfo;
4343 int error = -ENOMEM;
4345 /* Round up to L1_CACHE_BYTES to resist false sharing */
4346 sbinfo = kzalloc(max((int)sizeof(struct shmem_sb_info),
4347 L1_CACHE_BYTES), GFP_KERNEL);
4351 sb->s_fs_info = sbinfo;
4355 * Per default we only allow half of the physical ram per
4356 * tmpfs instance, limiting inodes to one per page of lowmem;
4357 * but the internal instance is left unlimited.
4359 if (!(sb->s_flags & SB_KERNMOUNT)) {
4360 if (!(ctx->seen & SHMEM_SEEN_BLOCKS))
4361 ctx->blocks = shmem_default_max_blocks();
4362 if (!(ctx->seen & SHMEM_SEEN_INODES))
4363 ctx->inodes = shmem_default_max_inodes();
4364 if (!(ctx->seen & SHMEM_SEEN_INUMS))
4365 ctx->full_inums = IS_ENABLED(CONFIG_TMPFS_INODE64);
4366 sbinfo->noswap = ctx->noswap;
4368 sb->s_flags |= SB_NOUSER;
4370 sb->s_export_op = &shmem_export_ops;
4371 sb->s_flags |= SB_NOSEC | SB_I_VERSION;
4373 sb->s_flags |= SB_NOUSER;
4375 sbinfo->max_blocks = ctx->blocks;
4376 sbinfo->max_inodes = ctx->inodes;
4377 sbinfo->free_ispace = sbinfo->max_inodes * BOGO_INODE_SIZE;
4378 if (sb->s_flags & SB_KERNMOUNT) {
4379 sbinfo->ino_batch = alloc_percpu(ino_t);
4380 if (!sbinfo->ino_batch)
4383 sbinfo->uid = ctx->uid;
4384 sbinfo->gid = ctx->gid;
4385 sbinfo->full_inums = ctx->full_inums;
4386 sbinfo->mode = ctx->mode;
4387 sbinfo->huge = ctx->huge;
4388 sbinfo->mpol = ctx->mpol;
4391 raw_spin_lock_init(&sbinfo->stat_lock);
4392 if (percpu_counter_init(&sbinfo->used_blocks, 0, GFP_KERNEL))
4394 spin_lock_init(&sbinfo->shrinklist_lock);
4395 INIT_LIST_HEAD(&sbinfo->shrinklist);
4397 sb->s_maxbytes = MAX_LFS_FILESIZE;
4398 sb->s_blocksize = PAGE_SIZE;
4399 sb->s_blocksize_bits = PAGE_SHIFT;
4400 sb->s_magic = TMPFS_MAGIC;
4401 sb->s_op = &shmem_ops;
4402 sb->s_time_gran = 1;
4403 #ifdef CONFIG_TMPFS_XATTR
4404 sb->s_xattr = shmem_xattr_handlers;
4406 #ifdef CONFIG_TMPFS_POSIX_ACL
4407 sb->s_flags |= SB_POSIXACL;
4411 super_set_uuid(sb, uuid.b, sizeof(uuid));
4413 #ifdef CONFIG_TMPFS_QUOTA
4414 if (ctx->seen & SHMEM_SEEN_QUOTA) {
4415 sb->dq_op = &shmem_quota_operations;
4416 sb->s_qcop = &dquot_quotactl_sysfile_ops;
4417 sb->s_quota_types = QTYPE_MASK_USR | QTYPE_MASK_GRP;
4419 /* Copy the default limits from ctx into sbinfo */
4420 memcpy(&sbinfo->qlimits, &ctx->qlimits,
4421 sizeof(struct shmem_quota_limits));
4423 if (shmem_enable_quotas(sb, ctx->quota_types))
4426 #endif /* CONFIG_TMPFS_QUOTA */
4428 inode = shmem_get_inode(&nop_mnt_idmap, sb, NULL,
4429 S_IFDIR | sbinfo->mode, 0, VM_NORESERVE);
4430 if (IS_ERR(inode)) {
4431 error = PTR_ERR(inode);
4434 inode->i_uid = sbinfo->uid;
4435 inode->i_gid = sbinfo->gid;
4436 sb->s_root = d_make_root(inode);
4442 shmem_put_super(sb);
4446 static int shmem_get_tree(struct fs_context *fc)
4448 return get_tree_nodev(fc, shmem_fill_super);
4451 static void shmem_free_fc(struct fs_context *fc)
4453 struct shmem_options *ctx = fc->fs_private;
4456 mpol_put(ctx->mpol);
4461 static const struct fs_context_operations shmem_fs_context_ops = {
4462 .free = shmem_free_fc,
4463 .get_tree = shmem_get_tree,
4465 .parse_monolithic = shmem_parse_options,
4466 .parse_param = shmem_parse_one,
4467 .reconfigure = shmem_reconfigure,
4471 static struct kmem_cache *shmem_inode_cachep __ro_after_init;
4473 static struct inode *shmem_alloc_inode(struct super_block *sb)
4475 struct shmem_inode_info *info;
4476 info = alloc_inode_sb(sb, shmem_inode_cachep, GFP_KERNEL);
4479 return &info->vfs_inode;
4482 static void shmem_free_in_core_inode(struct inode *inode)
4484 if (S_ISLNK(inode->i_mode))
4485 kfree(inode->i_link);
4486 kmem_cache_free(shmem_inode_cachep, SHMEM_I(inode));
4489 static void shmem_destroy_inode(struct inode *inode)
4491 if (S_ISREG(inode->i_mode))
4492 mpol_free_shared_policy(&SHMEM_I(inode)->policy);
4493 if (S_ISDIR(inode->i_mode))
4494 simple_offset_destroy(shmem_get_offset_ctx(inode));
4497 static void shmem_init_inode(void *foo)
4499 struct shmem_inode_info *info = foo;
4500 inode_init_once(&info->vfs_inode);
4503 static void __init shmem_init_inodecache(void)
4505 shmem_inode_cachep = kmem_cache_create("shmem_inode_cache",
4506 sizeof(struct shmem_inode_info),
4507 0, SLAB_PANIC|SLAB_ACCOUNT, shmem_init_inode);
4510 static void __init shmem_destroy_inodecache(void)
4512 kmem_cache_destroy(shmem_inode_cachep);
4515 /* Keep the page in page cache instead of truncating it */
4516 static int shmem_error_remove_folio(struct address_space *mapping,
4517 struct folio *folio)
4522 static const struct address_space_operations shmem_aops = {
4523 .writepage = shmem_writepage,
4524 .dirty_folio = noop_dirty_folio,
4526 .write_begin = shmem_write_begin,
4527 .write_end = shmem_write_end,
4529 #ifdef CONFIG_MIGRATION
4530 .migrate_folio = migrate_folio,
4532 .error_remove_folio = shmem_error_remove_folio,
4535 static const struct file_operations shmem_file_operations = {
4537 .open = shmem_file_open,
4538 .get_unmapped_area = shmem_get_unmapped_area,
4540 .llseek = shmem_file_llseek,
4541 .read_iter = shmem_file_read_iter,
4542 .write_iter = shmem_file_write_iter,
4543 .fsync = noop_fsync,
4544 .splice_read = shmem_file_splice_read,
4545 .splice_write = iter_file_splice_write,
4546 .fallocate = shmem_fallocate,
4550 static const struct inode_operations shmem_inode_operations = {
4551 .getattr = shmem_getattr,
4552 .setattr = shmem_setattr,
4553 #ifdef CONFIG_TMPFS_XATTR
4554 .listxattr = shmem_listxattr,
4555 .set_acl = simple_set_acl,
4556 .fileattr_get = shmem_fileattr_get,
4557 .fileattr_set = shmem_fileattr_set,
4561 static const struct inode_operations shmem_dir_inode_operations = {
4563 .getattr = shmem_getattr,
4564 .create = shmem_create,
4565 .lookup = simple_lookup,
4567 .unlink = shmem_unlink,
4568 .symlink = shmem_symlink,
4569 .mkdir = shmem_mkdir,
4570 .rmdir = shmem_rmdir,
4571 .mknod = shmem_mknod,
4572 .rename = shmem_rename2,
4573 .tmpfile = shmem_tmpfile,
4574 .get_offset_ctx = shmem_get_offset_ctx,
4576 #ifdef CONFIG_TMPFS_XATTR
4577 .listxattr = shmem_listxattr,
4578 .fileattr_get = shmem_fileattr_get,
4579 .fileattr_set = shmem_fileattr_set,
4581 #ifdef CONFIG_TMPFS_POSIX_ACL
4582 .setattr = shmem_setattr,
4583 .set_acl = simple_set_acl,
4587 static const struct inode_operations shmem_special_inode_operations = {
4588 .getattr = shmem_getattr,
4589 #ifdef CONFIG_TMPFS_XATTR
4590 .listxattr = shmem_listxattr,
4592 #ifdef CONFIG_TMPFS_POSIX_ACL
4593 .setattr = shmem_setattr,
4594 .set_acl = simple_set_acl,
4598 static const struct super_operations shmem_ops = {
4599 .alloc_inode = shmem_alloc_inode,
4600 .free_inode = shmem_free_in_core_inode,
4601 .destroy_inode = shmem_destroy_inode,
4603 .statfs = shmem_statfs,
4604 .show_options = shmem_show_options,
4606 #ifdef CONFIG_TMPFS_QUOTA
4607 .get_dquots = shmem_get_dquots,
4609 .evict_inode = shmem_evict_inode,
4610 .drop_inode = generic_delete_inode,
4611 .put_super = shmem_put_super,
4612 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
4613 .nr_cached_objects = shmem_unused_huge_count,
4614 .free_cached_objects = shmem_unused_huge_scan,
4618 static const struct vm_operations_struct shmem_vm_ops = {
4619 .fault = shmem_fault,
4620 .map_pages = filemap_map_pages,
4622 .set_policy = shmem_set_policy,
4623 .get_policy = shmem_get_policy,
4627 static const struct vm_operations_struct shmem_anon_vm_ops = {
4628 .fault = shmem_fault,
4629 .map_pages = filemap_map_pages,
4631 .set_policy = shmem_set_policy,
4632 .get_policy = shmem_get_policy,
4636 int shmem_init_fs_context(struct fs_context *fc)
4638 struct shmem_options *ctx;
4640 ctx = kzalloc(sizeof(struct shmem_options), GFP_KERNEL);
4644 ctx->mode = 0777 | S_ISVTX;
4645 ctx->uid = current_fsuid();
4646 ctx->gid = current_fsgid();
4648 fc->fs_private = ctx;
4649 fc->ops = &shmem_fs_context_ops;
4653 static struct file_system_type shmem_fs_type = {
4654 .owner = THIS_MODULE,
4656 .init_fs_context = shmem_init_fs_context,
4658 .parameters = shmem_fs_parameters,
4660 .kill_sb = kill_litter_super,
4661 .fs_flags = FS_USERNS_MOUNT | FS_ALLOW_IDMAP,
4664 void __init shmem_init(void)
4668 shmem_init_inodecache();
4670 #ifdef CONFIG_TMPFS_QUOTA
4671 error = register_quota_format(&shmem_quota_format);
4673 pr_err("Could not register quota format\n");
4678 error = register_filesystem(&shmem_fs_type);
4680 pr_err("Could not register tmpfs\n");
4684 shm_mnt = kern_mount(&shmem_fs_type);
4685 if (IS_ERR(shm_mnt)) {
4686 error = PTR_ERR(shm_mnt);
4687 pr_err("Could not kern_mount tmpfs\n");
4691 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
4692 if (has_transparent_hugepage() && shmem_huge > SHMEM_HUGE_DENY)
4693 SHMEM_SB(shm_mnt->mnt_sb)->huge = shmem_huge;
4695 shmem_huge = SHMEM_HUGE_NEVER; /* just in case it was patched */
4700 unregister_filesystem(&shmem_fs_type);
4702 #ifdef CONFIG_TMPFS_QUOTA
4703 unregister_quota_format(&shmem_quota_format);
4706 shmem_destroy_inodecache();
4707 shm_mnt = ERR_PTR(error);
4710 #if defined(CONFIG_TRANSPARENT_HUGEPAGE) && defined(CONFIG_SYSFS)
4711 static ssize_t shmem_enabled_show(struct kobject *kobj,
4712 struct kobj_attribute *attr, char *buf)
4714 static const int values[] = {
4716 SHMEM_HUGE_WITHIN_SIZE,
4725 for (i = 0; i < ARRAY_SIZE(values); i++) {
4726 len += sysfs_emit_at(buf, len,
4727 shmem_huge == values[i] ? "%s[%s]" : "%s%s",
4728 i ? " " : "", shmem_format_huge(values[i]));
4730 len += sysfs_emit_at(buf, len, "\n");
4735 static ssize_t shmem_enabled_store(struct kobject *kobj,
4736 struct kobj_attribute *attr, const char *buf, size_t count)
4741 if (count + 1 > sizeof(tmp))
4743 memcpy(tmp, buf, count);
4745 if (count && tmp[count - 1] == '\n')
4746 tmp[count - 1] = '\0';
4748 huge = shmem_parse_huge(tmp);
4749 if (huge == -EINVAL)
4751 if (!has_transparent_hugepage() &&
4752 huge != SHMEM_HUGE_NEVER && huge != SHMEM_HUGE_DENY)
4756 if (shmem_huge > SHMEM_HUGE_DENY)
4757 SHMEM_SB(shm_mnt->mnt_sb)->huge = shmem_huge;
4761 struct kobj_attribute shmem_enabled_attr = __ATTR_RW(shmem_enabled);
4762 #endif /* CONFIG_TRANSPARENT_HUGEPAGE && CONFIG_SYSFS */
4764 #else /* !CONFIG_SHMEM */
4767 * tiny-shmem: simple shmemfs and tmpfs using ramfs code
4769 * This is intended for small system where the benefits of the full
4770 * shmem code (swap-backed and resource-limited) are outweighed by
4771 * their complexity. On systems without swap this code should be
4772 * effectively equivalent, but much lighter weight.
4775 static struct file_system_type shmem_fs_type = {
4777 .init_fs_context = ramfs_init_fs_context,
4778 .parameters = ramfs_fs_parameters,
4779 .kill_sb = ramfs_kill_sb,
4780 .fs_flags = FS_USERNS_MOUNT,
4783 void __init shmem_init(void)
4785 BUG_ON(register_filesystem(&shmem_fs_type) != 0);
4787 shm_mnt = kern_mount(&shmem_fs_type);
4788 BUG_ON(IS_ERR(shm_mnt));
4791 int shmem_unuse(unsigned int type)
4796 int shmem_lock(struct file *file, int lock, struct ucounts *ucounts)
4801 void shmem_unlock_mapping(struct address_space *mapping)
4806 unsigned long shmem_get_unmapped_area(struct file *file,
4807 unsigned long addr, unsigned long len,
4808 unsigned long pgoff, unsigned long flags)
4810 return current->mm->get_unmapped_area(file, addr, len, pgoff, flags);
4814 void shmem_truncate_range(struct inode *inode, loff_t lstart, loff_t lend)
4816 truncate_inode_pages_range(inode->i_mapping, lstart, lend);
4818 EXPORT_SYMBOL_GPL(shmem_truncate_range);
4820 #define shmem_vm_ops generic_file_vm_ops
4821 #define shmem_anon_vm_ops generic_file_vm_ops
4822 #define shmem_file_operations ramfs_file_operations
4823 #define shmem_acct_size(flags, size) 0
4824 #define shmem_unacct_size(flags, size) do {} while (0)
4826 static inline struct inode *shmem_get_inode(struct mnt_idmap *idmap,
4827 struct super_block *sb, struct inode *dir,
4828 umode_t mode, dev_t dev, unsigned long flags)
4830 struct inode *inode = ramfs_get_inode(sb, dir, mode, dev);
4831 return inode ? inode : ERR_PTR(-ENOSPC);
4834 #endif /* CONFIG_SHMEM */
4838 static struct file *__shmem_file_setup(struct vfsmount *mnt, const char *name,
4839 loff_t size, unsigned long flags, unsigned int i_flags)
4841 struct inode *inode;
4845 return ERR_CAST(mnt);
4847 if (size < 0 || size > MAX_LFS_FILESIZE)
4848 return ERR_PTR(-EINVAL);
4850 if (shmem_acct_size(flags, size))
4851 return ERR_PTR(-ENOMEM);
4853 if (is_idmapped_mnt(mnt))
4854 return ERR_PTR(-EINVAL);
4856 inode = shmem_get_inode(&nop_mnt_idmap, mnt->mnt_sb, NULL,
4857 S_IFREG | S_IRWXUGO, 0, flags);
4858 if (IS_ERR(inode)) {
4859 shmem_unacct_size(flags, size);
4860 return ERR_CAST(inode);
4862 inode->i_flags |= i_flags;
4863 inode->i_size = size;
4864 clear_nlink(inode); /* It is unlinked */
4865 res = ERR_PTR(ramfs_nommu_expand_for_mapping(inode, size));
4867 res = alloc_file_pseudo(inode, mnt, name, O_RDWR,
4868 &shmem_file_operations);
4875 * shmem_kernel_file_setup - get an unlinked file living in tmpfs which must be
4876 * kernel internal. There will be NO LSM permission checks against the
4877 * underlying inode. So users of this interface must do LSM checks at a
4878 * higher layer. The users are the big_key and shm implementations. LSM
4879 * checks are provided at the key or shm level rather than the inode.
4880 * @name: name for dentry (to be seen in /proc/<pid>/maps
4881 * @size: size to be set for the file
4882 * @flags: VM_NORESERVE suppresses pre-accounting of the entire object size
4884 struct file *shmem_kernel_file_setup(const char *name, loff_t size, unsigned long flags)
4886 return __shmem_file_setup(shm_mnt, name, size, flags, S_PRIVATE);
4888 EXPORT_SYMBOL_GPL(shmem_kernel_file_setup);
4891 * shmem_file_setup - get an unlinked file living in tmpfs
4892 * @name: name for dentry (to be seen in /proc/<pid>/maps
4893 * @size: size to be set for the file
4894 * @flags: VM_NORESERVE suppresses pre-accounting of the entire object size
4896 struct file *shmem_file_setup(const char *name, loff_t size, unsigned long flags)
4898 return __shmem_file_setup(shm_mnt, name, size, flags, 0);
4900 EXPORT_SYMBOL_GPL(shmem_file_setup);
4903 * shmem_file_setup_with_mnt - get an unlinked file living in tmpfs
4904 * @mnt: the tmpfs mount where the file will be created
4905 * @name: name for dentry (to be seen in /proc/<pid>/maps
4906 * @size: size to be set for the file
4907 * @flags: VM_NORESERVE suppresses pre-accounting of the entire object size
4909 struct file *shmem_file_setup_with_mnt(struct vfsmount *mnt, const char *name,
4910 loff_t size, unsigned long flags)
4912 return __shmem_file_setup(mnt, name, size, flags, 0);
4914 EXPORT_SYMBOL_GPL(shmem_file_setup_with_mnt);
4917 * shmem_zero_setup - setup a shared anonymous mapping
4918 * @vma: the vma to be mmapped is prepared by do_mmap
4920 int shmem_zero_setup(struct vm_area_struct *vma)
4923 loff_t size = vma->vm_end - vma->vm_start;
4926 * Cloning a new file under mmap_lock leads to a lock ordering conflict
4927 * between XFS directory reading and selinux: since this file is only
4928 * accessible to the user through its mapping, use S_PRIVATE flag to
4929 * bypass file security, in the same way as shmem_kernel_file_setup().
4931 file = shmem_kernel_file_setup("dev/zero", size, vma->vm_flags);
4933 return PTR_ERR(file);
4937 vma->vm_file = file;
4938 vma->vm_ops = &shmem_anon_vm_ops;
4944 * shmem_read_folio_gfp - read into page cache, using specified page allocation flags.
4945 * @mapping: the folio's address_space
4946 * @index: the folio index
4947 * @gfp: the page allocator flags to use if allocating
4949 * This behaves as a tmpfs "read_cache_page_gfp(mapping, index, gfp)",
4950 * with any new page allocations done using the specified allocation flags.
4951 * But read_cache_page_gfp() uses the ->read_folio() method: which does not
4952 * suit tmpfs, since it may have pages in swapcache, and needs to find those
4953 * for itself; although drivers/gpu/drm i915 and ttm rely upon this support.
4955 * i915_gem_object_get_pages_gtt() mixes __GFP_NORETRY | __GFP_NOWARN in
4956 * with the mapping_gfp_mask(), to avoid OOMing the machine unnecessarily.
4958 struct folio *shmem_read_folio_gfp(struct address_space *mapping,
4959 pgoff_t index, gfp_t gfp)
4962 struct inode *inode = mapping->host;
4963 struct folio *folio;
4966 error = shmem_get_folio_gfp(inode, index, &folio, SGP_CACHE,
4969 return ERR_PTR(error);
4971 folio_unlock(folio);
4975 * The tiny !SHMEM case uses ramfs without swap
4977 return mapping_read_folio_gfp(mapping, index, gfp);
4980 EXPORT_SYMBOL_GPL(shmem_read_folio_gfp);
4982 struct page *shmem_read_mapping_page_gfp(struct address_space *mapping,
4983 pgoff_t index, gfp_t gfp)
4985 struct folio *folio = shmem_read_folio_gfp(mapping, index, gfp);
4989 return &folio->page;
4991 page = folio_file_page(folio, index);
4992 if (PageHWPoison(page)) {
4994 return ERR_PTR(-EIO);
4999 EXPORT_SYMBOL_GPL(shmem_read_mapping_page_gfp);