xref: /linux/mm/shmem.c (revision 056a5087d87ead77dedbe9cf5bde53b7cd4b4651)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Resizable virtual memory filesystem for Linux.
4  *
5  * Copyright (C) 2000 Linus Torvalds.
6  *		 2000 Transmeta Corp.
7  *		 2000-2001 Christoph Rohland
8  *		 2000-2001 SAP AG
9  *		 2002 Red Hat Inc.
10  * Copyright (C) 2002-2011 Hugh Dickins.
11  * Copyright (C) 2011 Google Inc.
12  * Copyright (C) 2002-2005 VERITAS Software Corporation.
13  * Copyright (C) 2004 Andi Kleen, SuSE Labs
14  *
15  * Extended attribute support for tmpfs:
16  * Copyright (c) 2004, Luke Kenneth Casson Leighton <lkcl@lkcl.net>
17  * Copyright (c) 2004 Red Hat, Inc., James Morris <jmorris@redhat.com>
18  *
19  * tiny-shmem:
20  * Copyright (c) 2004, 2008 Matt Mackall <mpm@selenic.com>
21  */
22 
23 #include <linux/fs.h>
24 #include <linux/init.h>
25 #include <linux/vfs.h>
26 #include <linux/mount.h>
27 #include <linux/ramfs.h>
28 #include <linux/pagemap.h>
29 #include <linux/file.h>
30 #include <linux/fileattr.h>
31 #include <linux/filelock.h>
32 #include <linux/mm.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>
43 #include <linux/unicode.h>
44 #include "swap.h"
45 
46 static struct vfsmount *shm_mnt __ro_after_init;
47 
48 #ifdef CONFIG_SHMEM
49 /*
50  * This virtual memory filesystem is heavily based on the ramfs. It
51  * extends ramfs by the ability to use swap and honor resource limits
52  * which makes it a completely usable filesystem.
53  */
54 
55 #include <linux/xattr.h>
56 #include <linux/exportfs.h>
57 #include <linux/posix_acl.h>
58 #include <linux/posix_acl_xattr.h>
59 #include <linux/mman.h>
60 #include <linux/string.h>
61 #include <linux/slab.h>
62 #include <linux/backing-dev.h>
63 #include <linux/writeback.h>
64 #include <linux/folio_batch.h>
65 #include <linux/percpu_counter.h>
66 #include <linux/falloc.h>
67 #include <linux/splice.h>
68 #include <linux/security.h>
69 #include <linux/leafops.h>
70 #include <linux/mempolicy.h>
71 #include <linux/namei.h>
72 #include <linux/ctype.h>
73 #include <linux/migrate.h>
74 #include <linux/highmem.h>
75 #include <linux/seq_file.h>
76 #include <linux/magic.h>
77 #include <linux/syscalls.h>
78 #include <linux/fcntl.h>
79 #include <uapi/linux/memfd.h>
80 #include <linux/rmap.h>
81 #include <linux/uuid.h>
82 #include <linux/quotaops.h>
83 #include <linux/rcupdate_wait.h>
84 
85 #include <linux/uaccess.h>
86 
87 #include "internal.h"
88 
89 #define VM_ACCT(size)    (PAGE_ALIGN(size) >> PAGE_SHIFT)
90 
91 /* Pretend that each entry is of this size in directory's i_size */
92 #define BOGO_DIRENT_SIZE 20
93 
94 /* Pretend that one inode + its dentry occupy this much memory */
95 #define BOGO_INODE_SIZE 1024
96 
97 /* Symlink up to this size is kmalloc'ed instead of using a swappable page */
98 #define SHORT_SYMLINK_LEN 128
99 
100 /*
101  * shmem_fallocate communicates with shmem_fault or shmem_writeout 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.
104  */
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 writeout refused to swap out */
111 };
112 
113 struct shmem_options {
114 	unsigned long long blocks;
115 	unsigned long long inodes;
116 	struct mempolicy *mpol;
117 	kuid_t uid;
118 	kgid_t gid;
119 	umode_t mode;
120 	bool full_inums;
121 	int huge;
122 	int seen;
123 	bool noswap;
124 	unsigned short quota_types;
125 	struct shmem_quota_limits qlimits;
126 #if IS_ENABLED(CONFIG_UNICODE)
127 	struct unicode_map *encoding;
128 	bool strict_encoding;
129 #endif
130 #define SHMEM_SEEN_BLOCKS 1
131 #define SHMEM_SEEN_INODES 2
132 #define SHMEM_SEEN_HUGE 4
133 #define SHMEM_SEEN_INUMS 8
134 #define SHMEM_SEEN_QUOTA 16
135 };
136 
137 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
138 static unsigned long huge_shmem_orders_always __read_mostly;
139 static unsigned long huge_shmem_orders_madvise __read_mostly;
140 static unsigned long huge_shmem_orders_inherit __read_mostly;
141 static unsigned long huge_shmem_orders_within_size __read_mostly;
142 static bool shmem_orders_configured __initdata;
143 #endif
144 
145 #ifdef CONFIG_TMPFS
146 static unsigned long shmem_default_max_blocks(void)
147 {
148 	return totalram_pages() / 2;
149 }
150 
151 static unsigned long shmem_default_max_inodes(void)
152 {
153 	unsigned long nr_pages = totalram_pages();
154 
155 	return min3(nr_pages - totalhigh_pages(), nr_pages / 2,
156 			ULONG_MAX / BOGO_INODE_SIZE);
157 }
158 #endif
159 
160 static int shmem_swapin_folio(struct inode *inode, pgoff_t index,
161 			struct folio **foliop, enum sgp_type sgp, gfp_t gfp,
162 			struct vm_area_struct *vma, vm_fault_t *fault_type);
163 
164 static inline struct shmem_sb_info *SHMEM_SB(struct super_block *sb)
165 {
166 	return sb->s_fs_info;
167 }
168 
169 /*
170  * shmem_file_setup pre-accounts the whole fixed size of a VM object,
171  * for shared memory and for shared anonymous (/dev/zero) mappings
172  * (unless MAP_NORESERVE and sysctl_overcommit_memory <= 1),
173  * consistent with the pre-accounting of private mappings ...
174  */
175 static inline int shmem_acct_size(unsigned long flags, loff_t size)
176 {
177 	return (flags & SHMEM_F_NORESERVE) ?
178 		0 : security_vm_enough_memory_mm(current->mm, VM_ACCT(size));
179 }
180 
181 static inline void shmem_unacct_size(unsigned long flags, loff_t size)
182 {
183 	if (!(flags & SHMEM_F_NORESERVE))
184 		vm_unacct_memory(VM_ACCT(size));
185 }
186 
187 static inline int shmem_reacct_size(unsigned long flags,
188 		loff_t oldsize, loff_t newsize)
189 {
190 	if (!(flags & SHMEM_F_NORESERVE)) {
191 		if (VM_ACCT(newsize) > VM_ACCT(oldsize))
192 			return security_vm_enough_memory_mm(current->mm,
193 					VM_ACCT(newsize) - VM_ACCT(oldsize));
194 		else if (VM_ACCT(newsize) < VM_ACCT(oldsize))
195 			vm_unacct_memory(VM_ACCT(oldsize) - VM_ACCT(newsize));
196 	}
197 	return 0;
198 }
199 
200 /*
201  * ... whereas tmpfs objects are accounted incrementally as
202  * pages are allocated, in order to allow large sparse files.
203  * shmem_get_folio reports shmem_acct_blocks failure as -ENOSPC not -ENOMEM,
204  * so that a failure on a sparse tmpfs mapping will give SIGBUS not OOM.
205  */
206 static inline int shmem_acct_blocks(unsigned long flags, long pages)
207 {
208 	if (!(flags & SHMEM_F_NORESERVE))
209 		return 0;
210 
211 	return security_vm_enough_memory_mm(current->mm,
212 			pages * VM_ACCT(PAGE_SIZE));
213 }
214 
215 static inline void shmem_unacct_blocks(unsigned long flags, long pages)
216 {
217 	if (flags & SHMEM_F_NORESERVE)
218 		vm_unacct_memory(pages * VM_ACCT(PAGE_SIZE));
219 }
220 
221 int shmem_inode_acct_blocks(struct inode *inode, long pages)
222 {
223 	struct shmem_inode_info *info = SHMEM_I(inode);
224 	struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
225 	int err = -ENOSPC;
226 
227 	if (shmem_acct_blocks(info->flags, pages))
228 		return err;
229 
230 	might_sleep();	/* when quotas */
231 	if (sbinfo->max_blocks) {
232 		if (!percpu_counter_limited_add(&sbinfo->used_blocks,
233 						sbinfo->max_blocks, pages))
234 			goto unacct;
235 
236 		err = dquot_alloc_block_nodirty(inode, pages);
237 		if (err) {
238 			percpu_counter_sub(&sbinfo->used_blocks, pages);
239 			goto unacct;
240 		}
241 	} else {
242 		err = dquot_alloc_block_nodirty(inode, pages);
243 		if (err)
244 			goto unacct;
245 	}
246 
247 	return 0;
248 
249 unacct:
250 	shmem_unacct_blocks(info->flags, pages);
251 	return err;
252 }
253 
254 static void shmem_inode_unacct_blocks(struct inode *inode, long pages)
255 {
256 	struct shmem_inode_info *info = SHMEM_I(inode);
257 	struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
258 
259 	might_sleep();	/* when quotas */
260 	dquot_free_block_nodirty(inode, pages);
261 
262 	if (sbinfo->max_blocks)
263 		percpu_counter_sub(&sbinfo->used_blocks, pages);
264 	shmem_unacct_blocks(info->flags, pages);
265 }
266 
267 static const struct super_operations shmem_ops;
268 static const struct address_space_operations shmem_aops;
269 static const struct file_operations shmem_file_operations;
270 static const struct inode_operations shmem_inode_operations;
271 static const struct inode_operations shmem_dir_inode_operations;
272 static const struct inode_operations shmem_special_inode_operations;
273 static const struct vm_operations_struct shmem_vm_ops;
274 static const struct vm_operations_struct shmem_anon_vm_ops;
275 static struct file_system_type shmem_fs_type;
276 
277 bool shmem_mapping(const struct address_space *mapping)
278 {
279 	return mapping->a_ops == &shmem_aops;
280 }
281 EXPORT_SYMBOL_GPL(shmem_mapping);
282 
283 bool vma_is_anon_shmem(const struct vm_area_struct *vma)
284 {
285 	return vma->vm_ops == &shmem_anon_vm_ops;
286 }
287 
288 bool vma_is_shmem(const struct vm_area_struct *vma)
289 {
290 	return vma_is_anon_shmem(vma) || vma->vm_ops == &shmem_vm_ops;
291 }
292 
293 static LIST_HEAD(shmem_swaplist);
294 static DEFINE_SPINLOCK(shmem_swaplist_lock);
295 
296 #ifdef CONFIG_TMPFS_QUOTA
297 
298 static int shmem_enable_quotas(struct super_block *sb,
299 			       unsigned short quota_types)
300 {
301 	int type, err = 0;
302 
303 	sb_dqopt(sb)->flags |= DQUOT_QUOTA_SYS_FILE | DQUOT_NOLIST_DIRTY;
304 	for (type = 0; type < SHMEM_MAXQUOTAS; type++) {
305 		if (!(quota_types & (1 << type)))
306 			continue;
307 		err = dquot_load_quota_sb(sb, type, QFMT_SHMEM,
308 					  DQUOT_USAGE_ENABLED |
309 					  DQUOT_LIMITS_ENABLED);
310 		if (err)
311 			goto out_err;
312 	}
313 	return 0;
314 
315 out_err:
316 	pr_warn("tmpfs: failed to enable quota tracking (type=%d, err=%d)\n",
317 		type, err);
318 	for (type--; type >= 0; type--)
319 		dquot_quota_off(sb, type);
320 	return err;
321 }
322 
323 static void shmem_disable_quotas(struct super_block *sb)
324 {
325 	int type;
326 
327 	for (type = 0; type < SHMEM_MAXQUOTAS; type++)
328 		dquot_quota_off(sb, type);
329 }
330 
331 static struct dquot __rcu **shmem_get_dquots(struct inode *inode)
332 {
333 	return SHMEM_I(inode)->i_dquot;
334 }
335 #endif /* CONFIG_TMPFS_QUOTA */
336 
337 /*
338  * shmem_reserve_inode() performs bookkeeping to reserve a shmem inode, and
339  * produces a novel ino for the newly allocated inode.
340  *
341  * It may also be called when making a hard link to permit the space needed by
342  * each dentry. However, in that case, no new inode number is needed since that
343  * internally draws from another pool of inode numbers (currently global
344  * get_next_ino()). This case is indicated by passing NULL as inop.
345  */
346 #define SHMEM_INO_BATCH 1024
347 static int shmem_reserve_inode(struct super_block *sb, ino_t *inop)
348 {
349 	struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
350 	ino_t ino;
351 
352 	if (!(sb->s_flags & SB_KERNMOUNT)) {
353 		raw_spin_lock(&sbinfo->stat_lock);
354 		if (sbinfo->max_inodes) {
355 			if (sbinfo->free_ispace < BOGO_INODE_SIZE) {
356 				raw_spin_unlock(&sbinfo->stat_lock);
357 				return -ENOSPC;
358 			}
359 			sbinfo->free_ispace -= BOGO_INODE_SIZE;
360 		}
361 		if (inop) {
362 			ino = sbinfo->next_ino++;
363 			if (unlikely(is_zero_ino(ino)))
364 				ino = sbinfo->next_ino++;
365 			if (unlikely(!sbinfo->full_inums &&
366 				     ino > UINT_MAX)) {
367 				/*
368 				 * Emulate get_next_ino uint wraparound for
369 				 * compatibility
370 				 */
371 				if (IS_ENABLED(CONFIG_64BIT))
372 					pr_warn("%s: inode number overflow on device %d, consider using inode64 mount option\n",
373 						__func__, MINOR(sb->s_dev));
374 				sbinfo->next_ino = 1;
375 				ino = sbinfo->next_ino++;
376 			}
377 			*inop = ino;
378 		}
379 		raw_spin_unlock(&sbinfo->stat_lock);
380 	} else if (inop) {
381 		/*
382 		 * __shmem_file_setup, one of our callers, is lock-free: it
383 		 * doesn't hold stat_lock in shmem_reserve_inode since
384 		 * max_inodes is always 0, and is called from potentially
385 		 * unknown contexts. As such, use a per-cpu batched allocator
386 		 * which doesn't require the per-sb stat_lock unless we are at
387 		 * the batch boundary.
388 		 *
389 		 * We don't need to worry about inode{32,64} since SB_KERNMOUNT
390 		 * shmem mounts are not exposed to userspace, so we don't need
391 		 * to worry about things like glibc compatibility.
392 		 */
393 		ino_t *next_ino;
394 
395 		next_ino = per_cpu_ptr(sbinfo->ino_batch, get_cpu());
396 		ino = *next_ino;
397 		if (unlikely(ino % SHMEM_INO_BATCH == 0)) {
398 			raw_spin_lock(&sbinfo->stat_lock);
399 			ino = sbinfo->next_ino;
400 			sbinfo->next_ino += SHMEM_INO_BATCH;
401 			raw_spin_unlock(&sbinfo->stat_lock);
402 			if (unlikely(is_zero_ino(ino)))
403 				ino++;
404 		}
405 		*inop = ino;
406 		*next_ino = ++ino;
407 		put_cpu();
408 	}
409 
410 	return 0;
411 }
412 
413 static void shmem_free_inode(struct super_block *sb, size_t freed_ispace)
414 {
415 	struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
416 	if (sbinfo->max_inodes) {
417 		raw_spin_lock(&sbinfo->stat_lock);
418 		sbinfo->free_ispace += BOGO_INODE_SIZE + freed_ispace;
419 		raw_spin_unlock(&sbinfo->stat_lock);
420 	}
421 }
422 
423 /**
424  * shmem_recalc_inode - recalculate the block usage of an inode
425  * @inode: inode to recalc
426  * @alloced: the change in number of pages allocated to inode
427  * @swapped: the change in number of pages swapped from inode
428  *
429  * We have to calculate the free blocks since the mm can drop
430  * undirtied hole pages behind our back.
431  *
432  * But normally   info->alloced == inode->i_mapping->nrpages + info->swapped
433  * So mm freed is info->alloced - (inode->i_mapping->nrpages + info->swapped)
434  *
435  * Return: true if swapped was incremented from 0, for shmem_writeout().
436  */
437 bool shmem_recalc_inode(struct inode *inode, long alloced, long swapped)
438 {
439 	struct shmem_inode_info *info = SHMEM_I(inode);
440 	bool first_swapped = false;
441 	long freed;
442 
443 	spin_lock(&info->lock);
444 	info->alloced += alloced;
445 	info->swapped += swapped;
446 	freed = info->alloced - info->swapped -
447 		READ_ONCE(inode->i_mapping->nrpages);
448 	/*
449 	 * Special case: whereas normally shmem_recalc_inode() is called
450 	 * after i_mapping->nrpages has already been adjusted (up or down),
451 	 * shmem_writeout() has to raise swapped before nrpages is lowered -
452 	 * to stop a racing shmem_recalc_inode() from thinking that a page has
453 	 * been freed.  Compensate here, to avoid the need for a followup call.
454 	 */
455 	if (swapped > 0) {
456 		if (info->swapped == swapped)
457 			first_swapped = true;
458 		freed += swapped;
459 	}
460 	if (freed > 0)
461 		info->alloced -= freed;
462 	spin_unlock(&info->lock);
463 
464 	/* The quota case may block */
465 	if (freed > 0)
466 		shmem_inode_unacct_blocks(inode, freed);
467 	return first_swapped;
468 }
469 
470 bool shmem_charge(struct inode *inode, long pages)
471 {
472 	struct address_space *mapping = inode->i_mapping;
473 
474 	if (shmem_inode_acct_blocks(inode, pages))
475 		return false;
476 
477 	/* nrpages adjustment first, then shmem_recalc_inode() when balanced */
478 	xa_lock_irq(&mapping->i_pages);
479 	mapping->nrpages += pages;
480 	xa_unlock_irq(&mapping->i_pages);
481 
482 	shmem_recalc_inode(inode, pages, 0);
483 	return true;
484 }
485 
486 void shmem_uncharge(struct inode *inode, long pages)
487 {
488 	/* pages argument is currently unused: keep it to help debugging */
489 	/* nrpages adjustment done by __filemap_remove_folio() or caller */
490 
491 	shmem_recalc_inode(inode, 0, 0);
492 }
493 
494 /*
495  * Replace item expected in xarray by a new item, while holding xa_lock.
496  */
497 static int shmem_replace_entry(struct address_space *mapping,
498 			pgoff_t index, void *expected, void *replacement)
499 {
500 	XA_STATE(xas, &mapping->i_pages, index);
501 	void *item;
502 
503 	VM_BUG_ON(!expected);
504 	VM_BUG_ON(!replacement);
505 	item = xas_load(&xas);
506 	if (item != expected)
507 		return -ENOENT;
508 	xas_store(&xas, replacement);
509 	return 0;
510 }
511 
512 /*
513  * Sometimes, before we decide whether to proceed or to fail, we must check
514  * that an entry was not already brought back or split by a racing thread.
515  *
516  * Checking folio is not enough: by the time a swapcache folio is locked, it
517  * might be reused, and again be swapcache, using the same swap as before.
518  * Returns the swap entry's order if it still presents, else returns -1.
519  */
520 static int shmem_confirm_swap(struct address_space *mapping, pgoff_t index,
521 			      swp_entry_t swap)
522 {
523 	XA_STATE(xas, &mapping->i_pages, index);
524 	int ret = -1;
525 	void *entry;
526 
527 	rcu_read_lock();
528 	do {
529 		entry = xas_load(&xas);
530 		if (entry == swp_to_radix_entry(swap))
531 			ret = xas_get_order(&xas);
532 	} while (xas_retry(&xas, entry));
533 	rcu_read_unlock();
534 	return ret;
535 }
536 
537 /*
538  * Definitions for "huge tmpfs": tmpfs mounted with the huge= option
539  *
540  * SHMEM_HUGE_NEVER:
541  *	disables huge pages for the mount;
542  * SHMEM_HUGE_ALWAYS:
543  *	enables huge pages for the mount;
544  * SHMEM_HUGE_WITHIN_SIZE:
545  *	only allocate huge pages if the page will be fully within i_size,
546  *	also respect madvise() hints;
547  * SHMEM_HUGE_ADVISE:
548  *	only allocate huge pages if requested with madvise();
549  */
550 
551 #define SHMEM_HUGE_NEVER	0
552 #define SHMEM_HUGE_ALWAYS	1
553 #define SHMEM_HUGE_WITHIN_SIZE	2
554 #define SHMEM_HUGE_ADVISE	3
555 
556 /*
557  * Special values.
558  * Only can be set via /sys/kernel/mm/transparent_hugepage/shmem_enabled:
559  *
560  * SHMEM_HUGE_DENY:
561  *	disables huge on shm_mnt and all mounts, for emergency use;
562  * SHMEM_HUGE_FORCE:
563  *	enables huge on shm_mnt and all mounts, w/o needing option, for testing;
564  *
565  */
566 #define SHMEM_HUGE_DENY		(-1)
567 #define SHMEM_HUGE_FORCE	(-2)
568 
569 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
570 /* ifdef here to avoid bloating shmem.o when not necessary */
571 
572 #if defined(CONFIG_TRANSPARENT_HUGEPAGE_SHMEM_HUGE_NEVER)
573 #define SHMEM_HUGE_DEFAULT SHMEM_HUGE_NEVER
574 #elif defined(CONFIG_TRANSPARENT_HUGEPAGE_SHMEM_HUGE_ALWAYS)
575 #define SHMEM_HUGE_DEFAULT SHMEM_HUGE_ALWAYS
576 #elif defined(CONFIG_TRANSPARENT_HUGEPAGE_SHMEM_HUGE_WITHIN_SIZE)
577 #define SHMEM_HUGE_DEFAULT SHMEM_HUGE_WITHIN_SIZE
578 #elif defined(CONFIG_TRANSPARENT_HUGEPAGE_SHMEM_HUGE_ADVISE)
579 #define SHMEM_HUGE_DEFAULT SHMEM_HUGE_ADVISE
580 #else
581 #define SHMEM_HUGE_DEFAULT SHMEM_HUGE_NEVER
582 #endif
583 
584 static int shmem_huge __read_mostly = SHMEM_HUGE_DEFAULT;
585 
586 #undef SHMEM_HUGE_DEFAULT
587 
588 #if defined(CONFIG_TRANSPARENT_HUGEPAGE_TMPFS_HUGE_NEVER)
589 #define TMPFS_HUGE_DEFAULT SHMEM_HUGE_NEVER
590 #elif defined(CONFIG_TRANSPARENT_HUGEPAGE_TMPFS_HUGE_ALWAYS)
591 #define TMPFS_HUGE_DEFAULT SHMEM_HUGE_ALWAYS
592 #elif defined(CONFIG_TRANSPARENT_HUGEPAGE_TMPFS_HUGE_WITHIN_SIZE)
593 #define TMPFS_HUGE_DEFAULT SHMEM_HUGE_WITHIN_SIZE
594 #elif defined(CONFIG_TRANSPARENT_HUGEPAGE_TMPFS_HUGE_ADVISE)
595 #define TMPFS_HUGE_DEFAULT SHMEM_HUGE_ADVISE
596 #else
597 #define TMPFS_HUGE_DEFAULT SHMEM_HUGE_NEVER
598 #endif
599 
600 static int tmpfs_huge __read_mostly = TMPFS_HUGE_DEFAULT;
601 
602 #undef TMPFS_HUGE_DEFAULT
603 
604 static unsigned int shmem_get_orders_within_size(struct inode *inode,
605 		unsigned long within_size_orders, pgoff_t index,
606 		loff_t write_end)
607 {
608 	pgoff_t aligned_index;
609 	unsigned long order;
610 	loff_t i_size;
611 
612 	order = highest_order(within_size_orders);
613 	while (within_size_orders) {
614 		aligned_index = round_up(index + 1, 1 << order);
615 		i_size = max(write_end, i_size_read(inode));
616 		i_size = round_up(i_size, PAGE_SIZE);
617 		if (i_size >> PAGE_SHIFT >= aligned_index)
618 			return within_size_orders;
619 
620 		order = next_order(&within_size_orders, order);
621 	}
622 
623 	return 0;
624 }
625 
626 static unsigned int shmem_huge_global_enabled(struct inode *inode, pgoff_t index,
627 					      loff_t write_end, bool shmem_huge_force,
628 					      struct vm_area_struct *vma,
629 					      vm_flags_t vm_flags)
630 {
631 	unsigned int maybe_pmd_order = HPAGE_PMD_ORDER > MAX_PAGECACHE_ORDER ?
632 		0 : BIT(HPAGE_PMD_ORDER);
633 	unsigned long within_size_orders;
634 
635 	if (!S_ISREG(inode->i_mode))
636 		return 0;
637 	if (shmem_huge == SHMEM_HUGE_DENY)
638 		return 0;
639 	if (shmem_huge_force || shmem_huge == SHMEM_HUGE_FORCE)
640 		return maybe_pmd_order;
641 
642 	/*
643 	 * The huge order allocation for anon shmem is controlled through
644 	 * the mTHP interface, so we still use PMD-sized huge order to
645 	 * check whether global control is enabled.
646 	 *
647 	 * For tmpfs with 'huge=always' or 'huge=within_size' mount option,
648 	 * we will always try PMD-sized order first. If that failed, it will
649 	 * fall back to small large folios.
650 	 */
651 	switch (SHMEM_SB(inode->i_sb)->huge) {
652 	case SHMEM_HUGE_ALWAYS:
653 		return THP_ORDERS_ALL_FILE_DEFAULT;
654 	case SHMEM_HUGE_WITHIN_SIZE:
655 		within_size_orders = shmem_get_orders_within_size(inode,
656 				THP_ORDERS_ALL_FILE_DEFAULT, index, write_end);
657 		if (within_size_orders > 0)
658 			return within_size_orders;
659 
660 		fallthrough;
661 	case SHMEM_HUGE_ADVISE:
662 		if (vm_flags & VM_HUGEPAGE)
663 			return THP_ORDERS_ALL_FILE_DEFAULT;
664 		fallthrough;
665 	default:
666 		return 0;
667 	}
668 }
669 
670 static int shmem_parse_huge(const char *str)
671 {
672 	int huge;
673 
674 	if (!str)
675 		return -EINVAL;
676 
677 	if (!strcmp(str, "never"))
678 		huge = SHMEM_HUGE_NEVER;
679 	else if (!strcmp(str, "always"))
680 		huge = SHMEM_HUGE_ALWAYS;
681 	else if (!strcmp(str, "within_size"))
682 		huge = SHMEM_HUGE_WITHIN_SIZE;
683 	else if (!strcmp(str, "advise"))
684 		huge = SHMEM_HUGE_ADVISE;
685 	else if (!strcmp(str, "deny"))
686 		huge = SHMEM_HUGE_DENY;
687 	else if (!strcmp(str, "force"))
688 		huge = SHMEM_HUGE_FORCE;
689 	else
690 		return -EINVAL;
691 
692 	if (!has_transparent_hugepage() &&
693 	    huge != SHMEM_HUGE_NEVER && huge != SHMEM_HUGE_DENY)
694 		return -EINVAL;
695 
696 	/* Do not override huge allocation policy with non-PMD sized mTHP */
697 	if (huge == SHMEM_HUGE_FORCE &&
698 	    huge_shmem_orders_inherit != BIT(HPAGE_PMD_ORDER))
699 		return -EINVAL;
700 
701 	return huge;
702 }
703 
704 #if defined(CONFIG_SYSFS) || defined(CONFIG_TMPFS)
705 static const char *shmem_format_huge(int huge)
706 {
707 	switch (huge) {
708 	case SHMEM_HUGE_NEVER:
709 		return "never";
710 	case SHMEM_HUGE_ALWAYS:
711 		return "always";
712 	case SHMEM_HUGE_WITHIN_SIZE:
713 		return "within_size";
714 	case SHMEM_HUGE_ADVISE:
715 		return "advise";
716 	case SHMEM_HUGE_DENY:
717 		return "deny";
718 	case SHMEM_HUGE_FORCE:
719 		return "force";
720 	default:
721 		VM_BUG_ON(1);
722 		return "bad_val";
723 	}
724 }
725 #endif
726 
727 static unsigned long shmem_unused_huge_shrink(struct shmem_sb_info *sbinfo,
728 		struct shrink_control *sc, unsigned long nr_to_free)
729 {
730 	LIST_HEAD(list), *pos, *next;
731 	struct inode *inode;
732 	struct shmem_inode_info *info;
733 	struct folio *folio;
734 	unsigned long batch = sc ? sc->nr_to_scan : 128;
735 	unsigned long split = 0, freed = 0;
736 
737 	if (list_empty(&sbinfo->shrinklist))
738 		return SHRINK_STOP;
739 
740 	spin_lock(&sbinfo->shrinklist_lock);
741 	list_for_each_safe(pos, next, &sbinfo->shrinklist) {
742 		info = list_entry(pos, struct shmem_inode_info, shrinklist);
743 
744 		/* pin the inode */
745 		inode = igrab(&info->vfs_inode);
746 
747 		/* inode is about to be evicted */
748 		if (!inode) {
749 			list_del_init(&info->shrinklist);
750 			goto next;
751 		}
752 
753 		list_move(&info->shrinklist, &list);
754 next:
755 		sbinfo->shrinklist_len--;
756 		if (!--batch)
757 			break;
758 	}
759 	spin_unlock(&sbinfo->shrinklist_lock);
760 
761 	list_for_each_safe(pos, next, &list) {
762 		pgoff_t next, end;
763 		loff_t i_size;
764 		int ret;
765 
766 		info = list_entry(pos, struct shmem_inode_info, shrinklist);
767 		inode = &info->vfs_inode;
768 
769 		if (nr_to_free && freed >= nr_to_free)
770 			goto move_back;
771 
772 		i_size = i_size_read(inode);
773 		folio = filemap_get_entry(inode->i_mapping, i_size / PAGE_SIZE);
774 		if (!folio || xa_is_value(folio))
775 			goto drop;
776 
777 		/* No large folio at the end of the file: nothing to split */
778 		if (!folio_test_large(folio)) {
779 			folio_put(folio);
780 			goto drop;
781 		}
782 
783 		/* Check if there is anything to gain from splitting */
784 		next = folio_next_index(folio);
785 		end = shmem_fallocend(inode, DIV_ROUND_UP(i_size, PAGE_SIZE));
786 		if (end <= folio->index || end >= next) {
787 			folio_put(folio);
788 			goto drop;
789 		}
790 
791 		/*
792 		 * Move the inode on the list back to shrinklist if we failed
793 		 * to lock the page at this time.
794 		 *
795 		 * Waiting for the lock may lead to deadlock in the
796 		 * reclaim path.
797 		 */
798 		if (!folio_trylock(folio)) {
799 			folio_put(folio);
800 			goto move_back;
801 		}
802 
803 		ret = split_folio(folio);
804 		folio_unlock(folio);
805 		folio_put(folio);
806 
807 		/* If split failed move the inode on the list back to shrinklist */
808 		if (ret)
809 			goto move_back;
810 
811 		freed += next - end;
812 		split++;
813 drop:
814 		list_del_init(&info->shrinklist);
815 		goto put;
816 move_back:
817 		/*
818 		 * Make sure the inode is either on the global list or deleted
819 		 * from any local list before iput() since it could be deleted
820 		 * in another thread once we put the inode (then the local list
821 		 * is corrupted).
822 		 */
823 		spin_lock(&sbinfo->shrinklist_lock);
824 		list_move(&info->shrinklist, &sbinfo->shrinklist);
825 		sbinfo->shrinklist_len++;
826 		spin_unlock(&sbinfo->shrinklist_lock);
827 put:
828 		iput(inode);
829 	}
830 
831 	return split;
832 }
833 
834 static long shmem_unused_huge_scan(struct super_block *sb,
835 		struct shrink_control *sc)
836 {
837 	struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
838 
839 	if (!READ_ONCE(sbinfo->shrinklist_len))
840 		return SHRINK_STOP;
841 
842 	return shmem_unused_huge_shrink(sbinfo, sc, 0);
843 }
844 
845 static long shmem_unused_huge_count(struct super_block *sb,
846 		struct shrink_control *sc)
847 {
848 	struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
849 	return READ_ONCE(sbinfo->shrinklist_len);
850 }
851 #else /* !CONFIG_TRANSPARENT_HUGEPAGE */
852 
853 #define shmem_huge SHMEM_HUGE_DENY
854 
855 static unsigned long shmem_unused_huge_shrink(struct shmem_sb_info *sbinfo,
856 		struct shrink_control *sc, unsigned long nr_to_free)
857 {
858 	return 0;
859 }
860 
861 static unsigned int shmem_huge_global_enabled(struct inode *inode, pgoff_t index,
862 					      loff_t write_end, bool shmem_huge_force,
863 					      struct vm_area_struct *vma,
864 					      vm_flags_t vm_flags)
865 {
866 	return 0;
867 }
868 #endif /* CONFIG_TRANSPARENT_HUGEPAGE */
869 
870 static void shmem_update_stats(struct folio *folio, int nr_pages)
871 {
872 	if (folio_test_pmd_mappable(folio))
873 		lruvec_stat_mod_folio(folio, NR_SHMEM_THPS, nr_pages);
874 	lruvec_stat_mod_folio(folio, NR_FILE_PAGES, nr_pages);
875 	lruvec_stat_mod_folio(folio, NR_SHMEM, nr_pages);
876 }
877 
878 /*
879  * Somewhat like filemap_add_folio, but error if expected item has gone.
880  */
881 int shmem_add_to_page_cache(struct folio *folio,
882 			    struct address_space *mapping,
883 			    pgoff_t index, void *expected, gfp_t gfp)
884 {
885 	XA_STATE_ORDER(xas, &mapping->i_pages, index, folio_order(folio));
886 	unsigned long nr = folio_nr_pages(folio);
887 	swp_entry_t iter, swap;
888 	void *entry;
889 
890 	VM_BUG_ON_FOLIO(index != round_down(index, nr), folio);
891 	VM_BUG_ON_FOLIO(!folio_test_locked(folio), folio);
892 	VM_BUG_ON_FOLIO(!folio_test_swapbacked(folio), folio);
893 
894 	folio_ref_add(folio, nr);
895 	folio->mapping = mapping;
896 	folio->index = index;
897 
898 	gfp &= GFP_RECLAIM_MASK;
899 	folio_throttle_swaprate(folio, gfp);
900 	swap = radix_to_swp_entry(expected);
901 
902 	do {
903 		iter = swap;
904 		xas_lock_irq(&xas);
905 		xas_for_each_conflict(&xas, entry) {
906 			/*
907 			 * The range must either be empty, or filled with
908 			 * expected swap entries. Shmem swap entries are never
909 			 * partially freed without split of both entry and
910 			 * folio, so there shouldn't be any holes.
911 			 */
912 			if (!expected || entry != swp_to_radix_entry(iter)) {
913 				xas_set_err(&xas, -EEXIST);
914 				goto unlock;
915 			}
916 			iter.val += 1 << xas_get_order(&xas);
917 		}
918 		if (expected && iter.val - nr != swap.val) {
919 			xas_set_err(&xas, -EEXIST);
920 			goto unlock;
921 		}
922 		xas_store(&xas, folio);
923 		if (xas_error(&xas))
924 			goto unlock;
925 		shmem_update_stats(folio, nr);
926 		mapping->nrpages += nr;
927 unlock:
928 		xas_unlock_irq(&xas);
929 	} while (xas_nomem(&xas, gfp));
930 
931 	if (xas_error(&xas)) {
932 		folio->mapping = NULL;
933 		folio_ref_sub(folio, nr);
934 		return xas_error(&xas);
935 	}
936 
937 	return 0;
938 }
939 
940 /*
941  * Somewhat like filemap_remove_folio, but substitutes swap for @folio.
942  */
943 static void shmem_delete_from_page_cache(struct folio *folio, void *radswap)
944 {
945 	struct address_space *mapping = folio->mapping;
946 	long nr = folio_nr_pages(folio);
947 	int error;
948 
949 	xa_lock_irq(&mapping->i_pages);
950 	error = shmem_replace_entry(mapping, folio->index, folio, radswap);
951 	folio->mapping = NULL;
952 	mapping->nrpages -= nr;
953 	shmem_update_stats(folio, -nr);
954 	xa_unlock_irq(&mapping->i_pages);
955 	folio_put_refs(folio, nr);
956 	BUG_ON(error);
957 }
958 
959 /*
960  * Remove swap entry from page cache, free the swap and its page cache. Returns
961  * the number of pages being freed. 0 means entry not found in XArray (0 pages
962  * being freed).
963  */
964 static long shmem_free_swap(struct address_space *mapping,
965 			    pgoff_t index, pgoff_t end, void *radswap)
966 {
967 	XA_STATE(xas, &mapping->i_pages, index);
968 	unsigned int nr_pages = 0;
969 	pgoff_t base;
970 	void *entry;
971 
972 	xas_lock_irq(&xas);
973 	entry = xas_load(&xas);
974 	if (entry == radswap) {
975 		nr_pages = 1 << xas_get_order(&xas);
976 		base = round_down(xas.xa_index, nr_pages);
977 		if (base < index || base + nr_pages - 1 > end)
978 			nr_pages = 0;
979 		else
980 			xas_store(&xas, NULL);
981 	}
982 	xas_unlock_irq(&xas);
983 
984 	if (nr_pages)
985 		swap_put_entries_direct(radix_to_swp_entry(radswap), nr_pages);
986 
987 	return nr_pages;
988 }
989 
990 /*
991  * Determine (in bytes) how many of the shmem object's pages mapped by the
992  * given offsets are swapped out.
993  *
994  * This is safe to call without i_rwsem or the i_pages lock thanks to RCU,
995  * as long as the inode doesn't go away and racy results are not a problem.
996  */
997 unsigned long shmem_partial_swap_usage(struct address_space *mapping,
998 						pgoff_t start, pgoff_t end)
999 {
1000 	XA_STATE(xas, &mapping->i_pages, start);
1001 	struct folio *folio;
1002 	unsigned long swapped = 0;
1003 	unsigned long max = end - 1;
1004 
1005 	rcu_read_lock();
1006 	xas_for_each(&xas, folio, max) {
1007 		if (xas_retry(&xas, folio))
1008 			continue;
1009 		if (xa_is_value(folio))
1010 			swapped += 1 << xas_get_order(&xas);
1011 		if (xas.xa_index == max)
1012 			break;
1013 		if (need_resched()) {
1014 			xas_pause(&xas);
1015 			cond_resched_rcu();
1016 		}
1017 	}
1018 	rcu_read_unlock();
1019 
1020 	return swapped << PAGE_SHIFT;
1021 }
1022 
1023 /*
1024  * Determine (in bytes) how many of the shmem object's pages mapped by the
1025  * given vma is swapped out.
1026  *
1027  * This is safe to call without i_rwsem or the i_pages lock thanks to RCU,
1028  * as long as the inode doesn't go away and racy results are not a problem.
1029  */
1030 unsigned long shmem_swap_usage(struct vm_area_struct *vma)
1031 {
1032 	struct inode *inode = file_inode(vma->vm_file);
1033 	struct shmem_inode_info *info = SHMEM_I(inode);
1034 	struct address_space *mapping = inode->i_mapping;
1035 	unsigned long swapped;
1036 
1037 	/* Be careful as we don't hold info->lock */
1038 	swapped = READ_ONCE(info->swapped);
1039 
1040 	/*
1041 	 * The easier cases are when the shmem object has nothing in swap, or
1042 	 * the vma maps it whole. Then we can simply use the stats that we
1043 	 * already track.
1044 	 */
1045 	if (!swapped)
1046 		return 0;
1047 
1048 	if (!vma->vm_pgoff && vma->vm_end - vma->vm_start >= inode->i_size)
1049 		return swapped << PAGE_SHIFT;
1050 
1051 	/* Here comes the more involved part */
1052 	return shmem_partial_swap_usage(mapping, vma->vm_pgoff,
1053 					vma->vm_pgoff + vma_pages(vma));
1054 }
1055 
1056 /*
1057  * SysV IPC SHM_UNLOCK restore Unevictable pages to their evictable lists.
1058  */
1059 void shmem_unlock_mapping(struct address_space *mapping)
1060 {
1061 	struct folio_batch fbatch;
1062 	pgoff_t index = 0;
1063 
1064 	folio_batch_init(&fbatch);
1065 	/*
1066 	 * Minor point, but we might as well stop if someone else SHM_LOCKs it.
1067 	 */
1068 	while (!mapping_unevictable(mapping) &&
1069 	       filemap_get_folios(mapping, &index, ~0UL, &fbatch)) {
1070 		check_move_unevictable_folios(&fbatch);
1071 		folio_batch_release(&fbatch);
1072 		cond_resched();
1073 	}
1074 }
1075 
1076 static struct folio *shmem_get_partial_folio(struct inode *inode, pgoff_t index)
1077 {
1078 	struct folio *folio;
1079 
1080 	/*
1081 	 * At first avoid shmem_get_folio(,,,SGP_READ): that fails
1082 	 * beyond i_size, and reports fallocated folios as holes.
1083 	 */
1084 	folio = filemap_get_entry(inode->i_mapping, index);
1085 	if (!folio)
1086 		return folio;
1087 	if (!xa_is_value(folio)) {
1088 		folio_lock(folio);
1089 		if (folio->mapping == inode->i_mapping)
1090 			return folio;
1091 		/* The folio has been swapped out */
1092 		folio_unlock(folio);
1093 		folio_put(folio);
1094 	}
1095 	/*
1096 	 * But read a folio back from swap if any of it is within i_size
1097 	 * (although in some cases this is just a waste of time).
1098 	 */
1099 	folio = NULL;
1100 	shmem_get_folio(inode, index, 0, &folio, SGP_READ);
1101 	return folio;
1102 }
1103 
1104 /*
1105  * Remove range of pages and swap entries from page cache, and free them.
1106  * If !unfalloc, truncate or punch hole; if unfalloc, undo failed fallocate.
1107  */
1108 static void shmem_undo_range(struct inode *inode, loff_t lstart, uoff_t lend,
1109 								 bool unfalloc)
1110 {
1111 	struct address_space *mapping = inode->i_mapping;
1112 	struct shmem_inode_info *info = SHMEM_I(inode);
1113 	pgoff_t start = (lstart + PAGE_SIZE - 1) >> PAGE_SHIFT;
1114 	pgoff_t end = (lend + 1) >> PAGE_SHIFT;
1115 	struct folio_batch fbatch;
1116 	pgoff_t indices[FOLIO_BATCH_SIZE];
1117 	struct folio *folio;
1118 	bool same_folio;
1119 	long nr_swaps_freed = 0;
1120 	pgoff_t index;
1121 	int i;
1122 
1123 	if (lend == -1)
1124 		end = -1;	/* unsigned, so actually very big */
1125 
1126 	if (info->fallocend > start && info->fallocend <= end && !unfalloc)
1127 		info->fallocend = start;
1128 
1129 	folio_batch_init(&fbatch);
1130 	index = start;
1131 	while (index < end && find_lock_entries(mapping, &index, end - 1,
1132 			&fbatch, indices)) {
1133 		for (i = 0; i < folio_batch_count(&fbatch); i++) {
1134 			folio = fbatch.folios[i];
1135 
1136 			if (xa_is_value(folio)) {
1137 				if (unfalloc)
1138 					continue;
1139 				nr_swaps_freed += shmem_free_swap(mapping, indices[i],
1140 								  end - 1, folio);
1141 				continue;
1142 			}
1143 
1144 			if (!unfalloc || !folio_test_uptodate(folio))
1145 				truncate_inode_folio(mapping, folio);
1146 			folio_unlock(folio);
1147 		}
1148 		folio_batch_remove_exceptionals(&fbatch);
1149 		folio_batch_release(&fbatch);
1150 		cond_resched();
1151 	}
1152 
1153 	/*
1154 	 * When undoing a failed fallocate, we want none of the partial folio
1155 	 * zeroing and splitting below, but shall want to truncate the whole
1156 	 * folio when !uptodate indicates that it was added by this fallocate,
1157 	 * even when [lstart, lend] covers only a part of the folio.
1158 	 */
1159 	if (unfalloc)
1160 		goto whole_folios;
1161 
1162 	same_folio = (lstart >> PAGE_SHIFT) == (lend >> PAGE_SHIFT);
1163 	folio = shmem_get_partial_folio(inode, lstart >> PAGE_SHIFT);
1164 	if (folio) {
1165 		same_folio = lend < folio_next_pos(folio);
1166 		folio_mark_dirty(folio);
1167 		if (!truncate_inode_partial_folio(folio, lstart, lend)) {
1168 			start = folio_next_index(folio);
1169 			if (same_folio)
1170 				end = folio->index;
1171 		}
1172 		folio_unlock(folio);
1173 		folio_put(folio);
1174 		folio = NULL;
1175 	}
1176 
1177 	if (!same_folio)
1178 		folio = shmem_get_partial_folio(inode, lend >> PAGE_SHIFT);
1179 	if (folio) {
1180 		folio_mark_dirty(folio);
1181 		if (!truncate_inode_partial_folio(folio, lstart, lend))
1182 			end = folio->index;
1183 		folio_unlock(folio);
1184 		folio_put(folio);
1185 	}
1186 
1187 whole_folios:
1188 
1189 	index = start;
1190 	while (index < end) {
1191 		cond_resched();
1192 
1193 		if (!find_get_entries(mapping, &index, end - 1, &fbatch,
1194 				indices)) {
1195 			/* If all gone or hole-punch or unfalloc, we're done */
1196 			if (index == start || end != -1)
1197 				break;
1198 			/* But if truncating, restart to make sure all gone */
1199 			index = start;
1200 			continue;
1201 		}
1202 		for (i = 0; i < folio_batch_count(&fbatch); i++) {
1203 			folio = fbatch.folios[i];
1204 
1205 			if (xa_is_value(folio)) {
1206 				int order;
1207 				long swaps_freed;
1208 
1209 				if (unfalloc)
1210 					continue;
1211 				swaps_freed = shmem_free_swap(mapping, indices[i],
1212 							      end - 1, folio);
1213 				if (!swaps_freed) {
1214 					pgoff_t base = indices[i];
1215 
1216 					order = shmem_confirm_swap(mapping, indices[i],
1217 								   radix_to_swp_entry(folio));
1218 					/*
1219 					 * If found a large swap entry cross the end or start
1220 					 * border, skip it as the truncate_inode_partial_folio
1221 					 * above should have at least zerod its content once.
1222 					 */
1223 					if (order > 0) {
1224 						base = round_down(base, 1 << order);
1225 						if (base < start || base + (1 << order) > end)
1226 							continue;
1227 					}
1228 					/* Swap was replaced by page or extended, retry */
1229 					index = base;
1230 					break;
1231 				}
1232 				nr_swaps_freed += swaps_freed;
1233 				continue;
1234 			}
1235 
1236 			folio_lock(folio);
1237 
1238 			if (!unfalloc || !folio_test_uptodate(folio)) {
1239 				if (folio_mapping(folio) != mapping) {
1240 					/* Page was replaced by swap: retry */
1241 					folio_unlock(folio);
1242 					index = indices[i];
1243 					break;
1244 				}
1245 				VM_BUG_ON_FOLIO(folio_test_writeback(folio),
1246 						folio);
1247 
1248 				if (!folio_test_large(folio)) {
1249 					truncate_inode_folio(mapping, folio);
1250 				} else if (truncate_inode_partial_folio(folio, lstart, lend)) {
1251 					/*
1252 					 * If we split a page, reset the loop so
1253 					 * that we pick up the new sub pages.
1254 					 * Otherwise the THP was entirely
1255 					 * dropped or the target range was
1256 					 * zeroed, so just continue the loop as
1257 					 * is.
1258 					 */
1259 					if (!folio_test_large(folio)) {
1260 						folio_unlock(folio);
1261 						index = start;
1262 						break;
1263 					}
1264 				}
1265 			}
1266 			folio_unlock(folio);
1267 		}
1268 		folio_batch_remove_exceptionals(&fbatch);
1269 		folio_batch_release(&fbatch);
1270 	}
1271 
1272 	shmem_recalc_inode(inode, 0, -nr_swaps_freed);
1273 }
1274 
1275 void shmem_truncate_range(struct inode *inode, loff_t lstart, uoff_t lend)
1276 {
1277 	shmem_undo_range(inode, lstart, lend, false);
1278 	inode_set_mtime_to_ts(inode, inode_set_ctime_current(inode));
1279 	inode_inc_iversion(inode);
1280 }
1281 EXPORT_SYMBOL_GPL(shmem_truncate_range);
1282 
1283 static int shmem_getattr(struct mnt_idmap *idmap,
1284 			 const struct path *path, struct kstat *stat,
1285 			 u32 request_mask, unsigned int query_flags)
1286 {
1287 	struct inode *inode = path->dentry->d_inode;
1288 	struct shmem_inode_info *info = SHMEM_I(inode);
1289 
1290 	if (info->alloced - info->swapped != inode->i_mapping->nrpages)
1291 		shmem_recalc_inode(inode, 0, 0);
1292 
1293 	if (info->fsflags & FS_APPEND_FL)
1294 		stat->attributes |= STATX_ATTR_APPEND;
1295 	if (info->fsflags & FS_IMMUTABLE_FL)
1296 		stat->attributes |= STATX_ATTR_IMMUTABLE;
1297 	if (info->fsflags & FS_NODUMP_FL)
1298 		stat->attributes |= STATX_ATTR_NODUMP;
1299 	stat->attributes_mask |= (STATX_ATTR_APPEND |
1300 			STATX_ATTR_IMMUTABLE |
1301 			STATX_ATTR_NODUMP);
1302 	generic_fillattr(idmap, request_mask, inode, stat);
1303 
1304 	if (shmem_huge_global_enabled(inode, 0, 0, false, NULL, 0))
1305 		stat->blksize = HPAGE_PMD_SIZE;
1306 
1307 	if (request_mask & STATX_BTIME) {
1308 		stat->result_mask |= STATX_BTIME;
1309 		stat->btime.tv_sec = info->i_crtime.tv_sec;
1310 		stat->btime.tv_nsec = info->i_crtime.tv_nsec;
1311 	}
1312 
1313 	return 0;
1314 }
1315 
1316 static int shmem_setattr(struct mnt_idmap *idmap,
1317 			 struct dentry *dentry, struct iattr *attr)
1318 {
1319 	struct inode *inode = d_inode(dentry);
1320 	struct shmem_inode_info *info = SHMEM_I(inode);
1321 	int error;
1322 	bool update_mtime = false;
1323 	bool update_ctime = true;
1324 
1325 	error = setattr_prepare(idmap, dentry, attr);
1326 	if (error)
1327 		return error;
1328 
1329 	if ((info->seals & F_SEAL_EXEC) && (attr->ia_valid & ATTR_MODE)) {
1330 		if ((inode->i_mode ^ attr->ia_mode) & 0111) {
1331 			return -EPERM;
1332 		}
1333 	}
1334 
1335 	if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
1336 		loff_t oldsize = inode->i_size;
1337 		loff_t newsize = attr->ia_size;
1338 
1339 		/* protected by i_rwsem */
1340 		if ((newsize < oldsize && (info->seals & F_SEAL_SHRINK)) ||
1341 		    (newsize > oldsize && (info->seals & F_SEAL_GROW)))
1342 			return -EPERM;
1343 
1344 		if (newsize != oldsize) {
1345 			if (info->flags & SHMEM_F_MAPPING_FROZEN)
1346 				return -EPERM;
1347 			error = shmem_reacct_size(SHMEM_I(inode)->flags,
1348 					oldsize, newsize);
1349 			if (error)
1350 				return error;
1351 			i_size_write(inode, newsize);
1352 			update_mtime = true;
1353 		} else {
1354 			update_ctime = false;
1355 		}
1356 		if (newsize <= oldsize) {
1357 			loff_t holebegin = round_up(newsize, PAGE_SIZE);
1358 			if (oldsize > holebegin)
1359 				unmap_mapping_range(inode->i_mapping,
1360 							holebegin, 0, 1);
1361 			if (info->alloced)
1362 				shmem_truncate_range(inode,
1363 							newsize, (loff_t)-1);
1364 			/* unmap again to remove racily COWed private pages */
1365 			if (oldsize > holebegin)
1366 				unmap_mapping_range(inode->i_mapping,
1367 							holebegin, 0, 1);
1368 		}
1369 	}
1370 
1371 	if (is_quota_modification(idmap, inode, attr)) {
1372 		error = dquot_initialize(inode);
1373 		if (error)
1374 			return error;
1375 	}
1376 
1377 	/* Transfer quota accounting */
1378 	if (i_uid_needs_update(idmap, attr, inode) ||
1379 	    i_gid_needs_update(idmap, attr, inode)) {
1380 		error = dquot_transfer(idmap, inode, attr);
1381 		if (error)
1382 			return error;
1383 	}
1384 
1385 	setattr_copy(idmap, inode, attr);
1386 	if (attr->ia_valid & ATTR_MODE)
1387 		error = posix_acl_chmod(idmap, dentry, inode->i_mode);
1388 	if (!error && update_ctime) {
1389 		inode_set_ctime_current(inode);
1390 		if (update_mtime)
1391 			inode_set_mtime_to_ts(inode, inode_get_ctime(inode));
1392 		inode_inc_iversion(inode);
1393 	}
1394 	return error;
1395 }
1396 
1397 static void shmem_evict_inode(struct inode *inode)
1398 {
1399 	struct shmem_inode_info *info = SHMEM_I(inode);
1400 	struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
1401 	size_t freed = 0;
1402 
1403 	if (shmem_mapping(inode->i_mapping)) {
1404 		shmem_unacct_size(info->flags, inode->i_size);
1405 		inode->i_size = 0;
1406 		mapping_set_exiting(inode->i_mapping);
1407 		shmem_truncate_range(inode, 0, (loff_t)-1);
1408 		if (!list_empty(&info->shrinklist)) {
1409 			spin_lock(&sbinfo->shrinklist_lock);
1410 			if (!list_empty(&info->shrinklist)) {
1411 				list_del_init(&info->shrinklist);
1412 				sbinfo->shrinklist_len--;
1413 			}
1414 			spin_unlock(&sbinfo->shrinklist_lock);
1415 		}
1416 		while (!list_empty(&info->swaplist)) {
1417 			/* Wait while shmem_unuse() is scanning this inode... */
1418 			wait_var_event(&info->stop_eviction,
1419 				       !atomic_read(&info->stop_eviction));
1420 			spin_lock(&shmem_swaplist_lock);
1421 			/* ...but beware of the race if we peeked too early */
1422 			if (!atomic_read(&info->stop_eviction))
1423 				list_del_init(&info->swaplist);
1424 			spin_unlock(&shmem_swaplist_lock);
1425 		}
1426 	}
1427 
1428 	simple_xattrs_free(&sbinfo->xa_cache, &info->xattrs, sbinfo->max_inodes ? &freed : NULL);
1429 
1430 	shmem_free_inode(inode->i_sb, freed);
1431 	WARN_ON(inode->i_blocks);
1432 	clear_inode(inode);
1433 #ifdef CONFIG_TMPFS_QUOTA
1434 	dquot_free_inode(inode);
1435 	dquot_drop(inode);
1436 #endif
1437 }
1438 
1439 static unsigned int shmem_find_swap_entries(struct address_space *mapping,
1440 				pgoff_t start, struct folio_batch *fbatch,
1441 				pgoff_t *indices, unsigned int type)
1442 {
1443 	XA_STATE(xas, &mapping->i_pages, start);
1444 	struct folio *folio;
1445 	swp_entry_t entry;
1446 
1447 	rcu_read_lock();
1448 	xas_for_each(&xas, folio, ULONG_MAX) {
1449 		if (xas_retry(&xas, folio))
1450 			continue;
1451 
1452 		if (!xa_is_value(folio))
1453 			continue;
1454 
1455 		entry = radix_to_swp_entry(folio);
1456 		/*
1457 		 * swapin error entries can be found in the mapping. But they're
1458 		 * deliberately ignored here as we've done everything we can do.
1459 		 */
1460 		if (swp_type(entry) != type)
1461 			continue;
1462 
1463 		indices[folio_batch_count(fbatch)] = xas.xa_index;
1464 		if (!folio_batch_add(fbatch, folio))
1465 			break;
1466 
1467 		if (need_resched()) {
1468 			xas_pause(&xas);
1469 			cond_resched_rcu();
1470 		}
1471 	}
1472 	rcu_read_unlock();
1473 
1474 	return folio_batch_count(fbatch);
1475 }
1476 
1477 /*
1478  * Move the swapped pages for an inode to page cache. Returns the count
1479  * of pages swapped in, or the error in case of failure.
1480  */
1481 static int shmem_unuse_swap_entries(struct inode *inode,
1482 		struct folio_batch *fbatch, pgoff_t *indices)
1483 {
1484 	int i = 0;
1485 	int ret = 0;
1486 	int error = 0;
1487 	struct address_space *mapping = inode->i_mapping;
1488 
1489 	for (i = 0; i < folio_batch_count(fbatch); i++) {
1490 		struct folio *folio = fbatch->folios[i];
1491 
1492 		error = shmem_swapin_folio(inode, indices[i], &folio, SGP_CACHE,
1493 					mapping_gfp_mask(mapping), NULL, NULL);
1494 		if (error == 0) {
1495 			folio_unlock(folio);
1496 			folio_put(folio);
1497 			ret++;
1498 		}
1499 		if (error == -ENOMEM)
1500 			break;
1501 		error = 0;
1502 	}
1503 	return error ? error : ret;
1504 }
1505 
1506 /*
1507  * If swap found in inode, free it and move page from swapcache to filecache.
1508  */
1509 static int shmem_unuse_inode(struct inode *inode, unsigned int type)
1510 {
1511 	struct address_space *mapping = inode->i_mapping;
1512 	pgoff_t start = 0;
1513 	struct folio_batch fbatch;
1514 	pgoff_t indices[FOLIO_BATCH_SIZE];
1515 	int ret = 0;
1516 
1517 	do {
1518 		folio_batch_init(&fbatch);
1519 		if (!shmem_find_swap_entries(mapping, start, &fbatch,
1520 					     indices, type)) {
1521 			ret = 0;
1522 			break;
1523 		}
1524 
1525 		ret = shmem_unuse_swap_entries(inode, &fbatch, indices);
1526 		if (ret < 0)
1527 			break;
1528 
1529 		start = indices[folio_batch_count(&fbatch) - 1];
1530 	} while (true);
1531 
1532 	return ret;
1533 }
1534 
1535 /*
1536  * Read all the shared memory data that resides in the swap
1537  * device 'type' back into memory, so the swap device can be
1538  * unused.
1539  */
1540 int shmem_unuse(unsigned int type)
1541 {
1542 	struct shmem_inode_info *info, *next;
1543 	int error = 0;
1544 
1545 	if (list_empty(&shmem_swaplist))
1546 		return 0;
1547 
1548 	spin_lock(&shmem_swaplist_lock);
1549 start_over:
1550 	list_for_each_entry_safe(info, next, &shmem_swaplist, swaplist) {
1551 		if (!info->swapped) {
1552 			list_del_init(&info->swaplist);
1553 			continue;
1554 		}
1555 		/*
1556 		 * Drop the swaplist mutex while searching the inode for swap;
1557 		 * but before doing so, make sure shmem_evict_inode() will not
1558 		 * remove placeholder inode from swaplist, nor let it be freed
1559 		 * (igrab() would protect from unlink, but not from unmount).
1560 		 */
1561 		atomic_inc(&info->stop_eviction);
1562 		spin_unlock(&shmem_swaplist_lock);
1563 
1564 		error = shmem_unuse_inode(&info->vfs_inode, type);
1565 		cond_resched();
1566 
1567 		spin_lock(&shmem_swaplist_lock);
1568 		if (atomic_dec_and_test(&info->stop_eviction))
1569 			wake_up_var(&info->stop_eviction);
1570 		if (error)
1571 			break;
1572 		if (list_empty(&info->swaplist))
1573 			goto start_over;
1574 		next = list_next_entry(info, swaplist);
1575 		if (!info->swapped)
1576 			list_del_init(&info->swaplist);
1577 	}
1578 	spin_unlock(&shmem_swaplist_lock);
1579 
1580 	return error;
1581 }
1582 
1583 /**
1584  * shmem_writeout - Write the folio to swap
1585  * @folio: The folio to write
1586  * @plug: swap plug
1587  * @folio_list: list to put back folios on split
1588  *
1589  * Move the folio from the page cache to the swap cache.
1590  */
1591 int shmem_writeout(struct folio *folio, struct swap_iocb **plug,
1592 		struct list_head *folio_list)
1593 {
1594 	struct address_space *mapping = folio->mapping;
1595 	struct inode *inode = mapping->host;
1596 	struct shmem_inode_info *info = SHMEM_I(inode);
1597 	struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
1598 	pgoff_t index;
1599 	int nr_pages;
1600 	bool split = false;
1601 
1602 	if ((info->flags & SHMEM_F_LOCKED) || sbinfo->noswap)
1603 		goto redirty;
1604 
1605 	if (!total_swap_pages)
1606 		goto redirty;
1607 
1608 	/*
1609 	 * If CONFIG_THP_SWAP is not enabled, the large folio should be
1610 	 * split when swapping.
1611 	 *
1612 	 * And shrinkage of pages beyond i_size does not split swap, so
1613 	 * swapout of a large folio crossing i_size needs to split too
1614 	 * (unless fallocate has been used to preallocate beyond EOF).
1615 	 */
1616 	if (folio_test_large(folio)) {
1617 		index = shmem_fallocend(inode,
1618 			DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE));
1619 		if ((index > folio->index && index < folio_next_index(folio)) ||
1620 		    !IS_ENABLED(CONFIG_THP_SWAP))
1621 			split = true;
1622 	}
1623 
1624 	if (split) {
1625 		int order;
1626 
1627 try_split:
1628 		order = folio_order(folio);
1629 		/* Ensure the subpages are still dirty */
1630 		folio_test_set_dirty(folio);
1631 		if (split_folio_to_list(folio, folio_list))
1632 			goto redirty;
1633 
1634 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
1635 		if (order >= HPAGE_PMD_ORDER) {
1636 			count_memcg_folio_events(folio, THP_SWPOUT_FALLBACK, 1);
1637 			count_vm_event(THP_SWPOUT_FALLBACK);
1638 		}
1639 #endif
1640 		count_mthp_stat(order, MTHP_STAT_SWPOUT_FALLBACK);
1641 
1642 		folio_clear_dirty(folio);
1643 	}
1644 
1645 	index = folio->index;
1646 	nr_pages = folio_nr_pages(folio);
1647 
1648 	/*
1649 	 * This is somewhat ridiculous, but without plumbing a SWAP_MAP_FALLOC
1650 	 * value into swapfile.c, the only way we can correctly account for a
1651 	 * fallocated folio arriving here is now to initialize it and write it.
1652 	 *
1653 	 * That's okay for a folio already fallocated earlier, but if we have
1654 	 * not yet completed the fallocation, then (a) we want to keep track
1655 	 * of this folio in case we have to undo it, and (b) it may not be a
1656 	 * good idea to continue anyway, once we're pushing into swap.  So
1657 	 * reactivate the folio, and let shmem_fallocate() quit when too many.
1658 	 */
1659 	if (!folio_test_uptodate(folio)) {
1660 		if (inode->i_private) {
1661 			struct shmem_falloc *shmem_falloc;
1662 			spin_lock(&inode->i_lock);
1663 			shmem_falloc = inode->i_private;
1664 			if (shmem_falloc &&
1665 			    !shmem_falloc->waitq &&
1666 			    index >= shmem_falloc->start &&
1667 			    index < shmem_falloc->next)
1668 				shmem_falloc->nr_unswapped += nr_pages;
1669 			else
1670 				shmem_falloc = NULL;
1671 			spin_unlock(&inode->i_lock);
1672 			if (shmem_falloc)
1673 				goto redirty;
1674 		}
1675 		folio_zero_range(folio, 0, folio_size(folio));
1676 		flush_dcache_folio(folio);
1677 		folio_mark_uptodate(folio);
1678 	}
1679 
1680 	if (!folio_alloc_swap(folio)) {
1681 		bool first_swapped = shmem_recalc_inode(inode, 0, nr_pages);
1682 		int error;
1683 
1684 		/*
1685 		 * Add inode to shmem_unuse()'s list of swapped-out inodes,
1686 		 * if it's not already there.  Do it now before the folio is
1687 		 * removed from page cache, when its pagelock no longer
1688 		 * protects the inode from eviction.  And do it now, after
1689 		 * we've incremented swapped, because shmem_unuse() will
1690 		 * prune a !swapped inode from the swaplist.
1691 		 */
1692 		if (first_swapped) {
1693 			spin_lock(&shmem_swaplist_lock);
1694 			if (list_empty(&info->swaplist))
1695 				list_add(&info->swaplist, &shmem_swaplist);
1696 			spin_unlock(&shmem_swaplist_lock);
1697 		}
1698 
1699 		folio_dup_swap(folio, NULL);
1700 		shmem_delete_from_page_cache(folio, swp_to_radix_entry(folio->swap));
1701 
1702 		BUG_ON(folio_mapped(folio));
1703 		error = swap_writeout(folio, plug);
1704 		if (error != AOP_WRITEPAGE_ACTIVATE) {
1705 			/* folio has been unlocked */
1706 			return error;
1707 		}
1708 
1709 		/*
1710 		 * The intention here is to avoid holding on to the swap when
1711 		 * zswap was unable to compress and unable to writeback; but
1712 		 * it will be appropriate if other reactivate cases are added.
1713 		 */
1714 		error = shmem_add_to_page_cache(folio, mapping, index,
1715 				swp_to_radix_entry(folio->swap),
1716 				__GFP_HIGH | __GFP_NOMEMALLOC | __GFP_NOWARN);
1717 		/* Swap entry might be erased by racing shmem_free_swap() */
1718 		if (!error) {
1719 			shmem_recalc_inode(inode, 0, -nr_pages);
1720 			folio_put_swap(folio, NULL);
1721 		}
1722 
1723 		/*
1724 		 * The swap_cache_del_folio() below could be left for
1725 		 * shrink_folio_list()'s folio_free_swap() to dispose of;
1726 		 * but I'm a little nervous about letting this folio out of
1727 		 * shmem_writeout() in a hybrid half-tmpfs-half-swap state
1728 		 * e.g. folio_mapping(folio) might give an unexpected answer.
1729 		 */
1730 		swap_cache_del_folio(folio);
1731 		goto redirty;
1732 	}
1733 	if (nr_pages > 1)
1734 		goto try_split;
1735 redirty:
1736 	folio_mark_dirty(folio);
1737 	return AOP_WRITEPAGE_ACTIVATE;	/* Return with folio locked */
1738 }
1739 EXPORT_SYMBOL_GPL(shmem_writeout);
1740 
1741 #if defined(CONFIG_NUMA) && defined(CONFIG_TMPFS)
1742 static void shmem_show_mpol(struct seq_file *seq, struct mempolicy *mpol)
1743 {
1744 	char buffer[64];
1745 
1746 	if (!mpol || mpol->mode == MPOL_DEFAULT)
1747 		return;		/* show nothing */
1748 
1749 	mpol_to_str(buffer, sizeof(buffer), mpol);
1750 
1751 	seq_printf(seq, ",mpol=%s", buffer);
1752 }
1753 
1754 static struct mempolicy *shmem_get_sbmpol(struct shmem_sb_info *sbinfo)
1755 {
1756 	struct mempolicy *mpol = NULL;
1757 	if (sbinfo->mpol) {
1758 		raw_spin_lock(&sbinfo->stat_lock);	/* prevent replace/use races */
1759 		mpol = sbinfo->mpol;
1760 		mpol_get(mpol);
1761 		raw_spin_unlock(&sbinfo->stat_lock);
1762 	}
1763 	return mpol;
1764 }
1765 #else /* !CONFIG_NUMA || !CONFIG_TMPFS */
1766 static inline void shmem_show_mpol(struct seq_file *seq, struct mempolicy *mpol)
1767 {
1768 }
1769 static inline struct mempolicy *shmem_get_sbmpol(struct shmem_sb_info *sbinfo)
1770 {
1771 	return NULL;
1772 }
1773 #endif /* CONFIG_NUMA && CONFIG_TMPFS */
1774 
1775 static struct mempolicy *shmem_get_pgoff_policy(struct shmem_inode_info *info,
1776 			pgoff_t index, unsigned int order, pgoff_t *ilx);
1777 
1778 static struct folio *shmem_swapin_cluster(swp_entry_t swap, gfp_t gfp,
1779 			struct shmem_inode_info *info, pgoff_t index)
1780 {
1781 	struct mempolicy *mpol;
1782 	pgoff_t ilx;
1783 	struct folio *folio;
1784 
1785 	mpol = shmem_get_pgoff_policy(info, index, 0, &ilx);
1786 	folio = swap_cluster_readahead(swap, gfp, mpol, ilx);
1787 	mpol_cond_put(mpol);
1788 
1789 	return folio;
1790 }
1791 
1792 /*
1793  * Make sure huge_gfp is always more limited than limit_gfp.
1794  * Some of the flags set permissions, while others set limitations.
1795  */
1796 static gfp_t limit_gfp_mask(gfp_t huge_gfp, gfp_t limit_gfp)
1797 {
1798 	gfp_t allowflags = __GFP_IO | __GFP_FS | __GFP_RECLAIM;
1799 	gfp_t denyflags = __GFP_NOWARN | __GFP_NORETRY;
1800 	gfp_t zoneflags = limit_gfp & GFP_ZONEMASK;
1801 	gfp_t result = huge_gfp & ~(allowflags | GFP_ZONEMASK);
1802 
1803 	/* Allow allocations only from the originally specified zones. */
1804 	result |= zoneflags;
1805 
1806 	/*
1807 	 * Minimize the result gfp by taking the union with the deny flags,
1808 	 * and the intersection of the allow flags.
1809 	 */
1810 	result |= (limit_gfp & denyflags);
1811 	result |= (huge_gfp & limit_gfp) & allowflags;
1812 
1813 	return result;
1814 }
1815 
1816 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
1817 bool shmem_hpage_pmd_enabled(void)
1818 {
1819 	if (shmem_huge == SHMEM_HUGE_DENY)
1820 		return false;
1821 	if (test_bit(HPAGE_PMD_ORDER, &huge_shmem_orders_always))
1822 		return true;
1823 	if (test_bit(HPAGE_PMD_ORDER, &huge_shmem_orders_madvise))
1824 		return true;
1825 	if (test_bit(HPAGE_PMD_ORDER, &huge_shmem_orders_within_size))
1826 		return true;
1827 	if (test_bit(HPAGE_PMD_ORDER, &huge_shmem_orders_inherit) &&
1828 	    shmem_huge != SHMEM_HUGE_NEVER)
1829 		return true;
1830 
1831 	return false;
1832 }
1833 
1834 unsigned long shmem_allowable_huge_orders(struct inode *inode,
1835 				struct vm_area_struct *vma, pgoff_t index,
1836 				loff_t write_end, bool shmem_huge_force)
1837 {
1838 	unsigned long mask = READ_ONCE(huge_shmem_orders_always);
1839 	unsigned long within_size_orders = READ_ONCE(huge_shmem_orders_within_size);
1840 	vm_flags_t vm_flags = vma ? vma->vm_flags : 0;
1841 	unsigned int global_orders;
1842 
1843 	if (thp_disabled_by_hw() || (vma && vma_thp_disabled(vma, vm_flags, shmem_huge_force)))
1844 		return 0;
1845 
1846 	global_orders = shmem_huge_global_enabled(inode, index, write_end,
1847 						  shmem_huge_force, vma, vm_flags);
1848 	/* Tmpfs huge pages allocation */
1849 	if (!vma || !vma_is_anon_shmem(vma))
1850 		return global_orders;
1851 
1852 	/*
1853 	 * Following the 'deny' semantics of the top level, force the huge
1854 	 * option off from all mounts.
1855 	 */
1856 	if (shmem_huge == SHMEM_HUGE_DENY)
1857 		return 0;
1858 
1859 	/*
1860 	 * Only allow inherit orders if the top-level value is 'force', which
1861 	 * means non-PMD sized THP can not override 'huge' mount option now.
1862 	 */
1863 	if (shmem_huge == SHMEM_HUGE_FORCE)
1864 		return READ_ONCE(huge_shmem_orders_inherit);
1865 
1866 	/* Allow mTHP that will be fully within i_size. */
1867 	mask |= shmem_get_orders_within_size(inode, within_size_orders, index, 0);
1868 
1869 	if (vm_flags & VM_HUGEPAGE)
1870 		mask |= READ_ONCE(huge_shmem_orders_madvise);
1871 
1872 	if (global_orders > 0)
1873 		mask |= READ_ONCE(huge_shmem_orders_inherit);
1874 
1875 	return THP_ORDERS_ALL_FILE_DEFAULT & mask;
1876 }
1877 
1878 static unsigned long shmem_suitable_orders(struct inode *inode, struct vm_fault *vmf,
1879 					   struct address_space *mapping, pgoff_t index,
1880 					   unsigned long orders)
1881 {
1882 	struct vm_area_struct *vma = vmf ? vmf->vma : NULL;
1883 	pgoff_t aligned_index;
1884 	unsigned long pages;
1885 	int order;
1886 
1887 	if (vma) {
1888 		orders = thp_vma_suitable_orders(vma, vmf->address, orders);
1889 		if (!orders)
1890 			return 0;
1891 	}
1892 
1893 	/* Find the highest order that can add into the page cache */
1894 	order = highest_order(orders);
1895 	while (orders) {
1896 		pages = 1UL << order;
1897 		aligned_index = round_down(index, pages);
1898 		/*
1899 		 * Check for conflict before waiting on a huge allocation.
1900 		 * Conflict might be that a huge page has just been allocated
1901 		 * and added to page cache by a racing thread, or that there
1902 		 * is already at least one small page in the huge extent.
1903 		 * Be careful to retry when appropriate, but not forever!
1904 		 * Elsewhere -EEXIST would be the right code, but not here.
1905 		 */
1906 		if (!xa_find(&mapping->i_pages, &aligned_index,
1907 			     aligned_index + pages - 1, XA_PRESENT))
1908 			break;
1909 		order = next_order(&orders, order);
1910 	}
1911 
1912 	return orders;
1913 }
1914 #else
1915 static unsigned long shmem_suitable_orders(struct inode *inode, struct vm_fault *vmf,
1916 					   struct address_space *mapping, pgoff_t index,
1917 					   unsigned long orders)
1918 {
1919 	return 0;
1920 }
1921 #endif /* CONFIG_TRANSPARENT_HUGEPAGE */
1922 
1923 static struct folio *shmem_alloc_folio(gfp_t gfp, int order,
1924 		struct shmem_inode_info *info, pgoff_t index)
1925 {
1926 	struct mempolicy *mpol;
1927 	pgoff_t ilx;
1928 	struct folio *folio;
1929 
1930 	mpol = shmem_get_pgoff_policy(info, index, order, &ilx);
1931 	folio = folio_alloc_mpol(gfp, order, mpol, ilx, numa_node_id());
1932 	mpol_cond_put(mpol);
1933 
1934 	return folio;
1935 }
1936 
1937 static struct folio *shmem_alloc_and_add_folio(struct vm_fault *vmf,
1938 		gfp_t gfp, struct inode *inode, pgoff_t index,
1939 		struct mm_struct *fault_mm, unsigned long orders)
1940 {
1941 	struct address_space *mapping = inode->i_mapping;
1942 	struct shmem_inode_info *info = SHMEM_I(inode);
1943 	unsigned long suitable_orders = 0;
1944 	struct folio *folio = NULL;
1945 	pgoff_t aligned_index;
1946 	long pages;
1947 	int error, order;
1948 
1949 	if (!IS_ENABLED(CONFIG_TRANSPARENT_HUGEPAGE))
1950 		orders = 0;
1951 
1952 	if (orders > 0) {
1953 		suitable_orders = shmem_suitable_orders(inode, vmf,
1954 							mapping, index, orders);
1955 
1956 		order = highest_order(suitable_orders);
1957 		while (suitable_orders) {
1958 			pages = 1UL << order;
1959 			aligned_index = round_down(index, pages);
1960 			folio = shmem_alloc_folio(gfp, order, info, aligned_index);
1961 			if (folio) {
1962 				index = aligned_index;
1963 				goto allocated;
1964 			}
1965 
1966 			if (pages == HPAGE_PMD_NR)
1967 				count_vm_event(THP_FILE_FALLBACK);
1968 			count_mthp_stat(order, MTHP_STAT_SHMEM_FALLBACK);
1969 			order = next_order(&suitable_orders, order);
1970 		}
1971 	} else {
1972 		pages = 1;
1973 		folio = shmem_alloc_folio(gfp, 0, info, index);
1974 	}
1975 	if (!folio)
1976 		return ERR_PTR(-ENOMEM);
1977 
1978 allocated:
1979 	__folio_set_locked(folio);
1980 	__folio_set_swapbacked(folio);
1981 
1982 	gfp &= GFP_RECLAIM_MASK;
1983 	error = mem_cgroup_charge(folio, fault_mm, gfp);
1984 	if (error) {
1985 		if (xa_find(&mapping->i_pages, &index,
1986 				index + pages - 1, XA_PRESENT)) {
1987 			error = -EEXIST;
1988 		} else if (pages > 1) {
1989 			if (pages == HPAGE_PMD_NR) {
1990 				count_vm_event(THP_FILE_FALLBACK);
1991 				count_vm_event(THP_FILE_FALLBACK_CHARGE);
1992 			}
1993 			count_mthp_stat(folio_order(folio), MTHP_STAT_SHMEM_FALLBACK);
1994 			count_mthp_stat(folio_order(folio), MTHP_STAT_SHMEM_FALLBACK_CHARGE);
1995 		}
1996 		goto unlock;
1997 	}
1998 
1999 	error = shmem_add_to_page_cache(folio, mapping, index, NULL, gfp);
2000 	if (error)
2001 		goto unlock;
2002 
2003 	error = shmem_inode_acct_blocks(inode, pages);
2004 	if (error) {
2005 		struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
2006 		long freed;
2007 		/*
2008 		 * Try to reclaim some space by splitting a few
2009 		 * large folios beyond i_size on the filesystem.
2010 		 */
2011 		shmem_unused_huge_shrink(sbinfo, NULL, pages);
2012 		/*
2013 		 * And do a shmem_recalc_inode() to account for freed pages:
2014 		 * except our folio is there in cache, so not quite balanced.
2015 		 */
2016 		spin_lock(&info->lock);
2017 		freed = pages + info->alloced - info->swapped -
2018 			READ_ONCE(mapping->nrpages);
2019 		if (freed > 0)
2020 			info->alloced -= freed;
2021 		spin_unlock(&info->lock);
2022 		if (freed > 0)
2023 			shmem_inode_unacct_blocks(inode, freed);
2024 		error = shmem_inode_acct_blocks(inode, pages);
2025 		if (error) {
2026 			filemap_remove_folio(folio);
2027 			goto unlock;
2028 		}
2029 	}
2030 
2031 	shmem_recalc_inode(inode, pages, 0);
2032 	folio_add_lru(folio);
2033 	return folio;
2034 
2035 unlock:
2036 	folio_unlock(folio);
2037 	folio_put(folio);
2038 	return ERR_PTR(error);
2039 }
2040 
2041 static struct folio *shmem_swap_alloc_folio(struct inode *inode,
2042 		struct vm_area_struct *vma, pgoff_t index,
2043 		swp_entry_t entry, int order, gfp_t gfp)
2044 {
2045 	struct shmem_inode_info *info = SHMEM_I(inode);
2046 	struct folio *new, *swapcache;
2047 	int nr_pages = 1 << order;
2048 	gfp_t alloc_gfp = gfp;
2049 
2050 	if (!IS_ENABLED(CONFIG_TRANSPARENT_HUGEPAGE)) {
2051 		if (WARN_ON_ONCE(order))
2052 			return ERR_PTR(-EINVAL);
2053 	} else if (order) {
2054 		/*
2055 		 * If uffd is active for the vma, we need per-page fault
2056 		 * fidelity to maintain the uffd semantics, then fallback
2057 		 * to swapin order-0 folio, as well as for zswap case.
2058 		 * Any existing sub folio in the swap cache also blocks
2059 		 * mTHP swapin.
2060 		 */
2061 		if ((vma && unlikely(userfaultfd_armed(vma))) ||
2062 		     !zswap_never_enabled() ||
2063 		     non_swapcache_batch(entry, nr_pages) != nr_pages)
2064 			goto fallback;
2065 
2066 		alloc_gfp = limit_gfp_mask(vma_thp_gfp_mask(vma), gfp);
2067 	}
2068 retry:
2069 	new = shmem_alloc_folio(alloc_gfp, order, info, index);
2070 	if (!new) {
2071 		new = ERR_PTR(-ENOMEM);
2072 		goto fallback;
2073 	}
2074 
2075 	if (mem_cgroup_swapin_charge_folio(new, vma ? vma->vm_mm : NULL,
2076 					   alloc_gfp, entry)) {
2077 		folio_put(new);
2078 		new = ERR_PTR(-ENOMEM);
2079 		goto fallback;
2080 	}
2081 
2082 	swapcache = swapin_folio(entry, new);
2083 	if (swapcache != new) {
2084 		folio_put(new);
2085 		if (!swapcache) {
2086 			/*
2087 			 * The new folio is charged already, swapin can
2088 			 * only fail due to another raced swapin.
2089 			 */
2090 			new = ERR_PTR(-EEXIST);
2091 			goto fallback;
2092 		}
2093 	}
2094 	return swapcache;
2095 fallback:
2096 	/* Order 0 swapin failed, nothing to fallback to, abort */
2097 	if (!order)
2098 		return new;
2099 	entry.val += index - round_down(index, nr_pages);
2100 	alloc_gfp = gfp;
2101 	nr_pages = 1;
2102 	order = 0;
2103 	goto retry;
2104 }
2105 
2106 /*
2107  * When a page is moved from swapcache to shmem filecache (either by the
2108  * usual swapin of shmem_get_folio_gfp(), or by the less common swapoff of
2109  * shmem_unuse_inode()), it may have been read in earlier from swap, in
2110  * ignorance of the mapping it belongs to.  If that mapping has special
2111  * constraints (like the gma500 GEM driver, which requires RAM below 4GB),
2112  * we may need to copy to a suitable page before moving to filecache.
2113  *
2114  * In a future release, this may well be extended to respect cpuset and
2115  * NUMA mempolicy, and applied also to anonymous pages in do_swap_page();
2116  * but for now it is a simple matter of zone.
2117  */
2118 static bool shmem_should_replace_folio(struct folio *folio, gfp_t gfp)
2119 {
2120 	return folio_zonenum(folio) > gfp_zone(gfp);
2121 }
2122 
2123 static int shmem_replace_folio(struct folio **foliop, gfp_t gfp,
2124 				struct shmem_inode_info *info, pgoff_t index,
2125 				struct vm_area_struct *vma)
2126 {
2127 	struct swap_cluster_info *ci;
2128 	struct folio *new, *old = *foliop;
2129 	swp_entry_t entry = old->swap;
2130 	int nr_pages = folio_nr_pages(old);
2131 	int error = 0;
2132 
2133 	/*
2134 	 * We have arrived here because our zones are constrained, so don't
2135 	 * limit chance of success by further cpuset and node constraints.
2136 	 */
2137 	gfp &= ~GFP_CONSTRAINT_MASK;
2138 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
2139 	if (nr_pages > 1) {
2140 		gfp_t huge_gfp = vma_thp_gfp_mask(vma);
2141 
2142 		gfp = limit_gfp_mask(huge_gfp, gfp);
2143 	}
2144 #endif
2145 
2146 	new = shmem_alloc_folio(gfp, folio_order(old), info, index);
2147 	if (!new)
2148 		return -ENOMEM;
2149 
2150 	folio_ref_add(new, nr_pages);
2151 	folio_copy(new, old);
2152 	flush_dcache_folio(new);
2153 
2154 	__folio_set_locked(new);
2155 	__folio_set_swapbacked(new);
2156 	folio_mark_uptodate(new);
2157 	new->swap = entry;
2158 	folio_set_swapcache(new);
2159 
2160 	ci = swap_cluster_get_and_lock_irq(old);
2161 	__swap_cache_replace_folio(ci, old, new);
2162 	mem_cgroup_replace_folio(old, new);
2163 	shmem_update_stats(new, nr_pages);
2164 	shmem_update_stats(old, -nr_pages);
2165 	swap_cluster_unlock_irq(ci);
2166 
2167 	folio_add_lru(new);
2168 	*foliop = new;
2169 
2170 	folio_clear_swapcache(old);
2171 	old->private = NULL;
2172 
2173 	folio_unlock(old);
2174 	/*
2175 	 * The old folio are removed from swap cache, drop the 'nr_pages'
2176 	 * reference, as well as one temporary reference getting from swap
2177 	 * cache.
2178 	 */
2179 	folio_put_refs(old, nr_pages + 1);
2180 	return error;
2181 }
2182 
2183 static void shmem_set_folio_swapin_error(struct inode *inode, pgoff_t index,
2184 					 struct folio *folio, swp_entry_t swap)
2185 {
2186 	struct address_space *mapping = inode->i_mapping;
2187 	swp_entry_t swapin_error;
2188 	void *old;
2189 	int nr_pages;
2190 
2191 	swapin_error = make_poisoned_swp_entry();
2192 	old = xa_cmpxchg_irq(&mapping->i_pages, index,
2193 			     swp_to_radix_entry(swap),
2194 			     swp_to_radix_entry(swapin_error), 0);
2195 	if (old != swp_to_radix_entry(swap))
2196 		return;
2197 
2198 	nr_pages = folio_nr_pages(folio);
2199 	folio_wait_writeback(folio);
2200 	folio_put_swap(folio, NULL);
2201 	swap_cache_del_folio(folio);
2202 	/*
2203 	 * Don't treat swapin error folio as alloced. Otherwise inode->i_blocks
2204 	 * won't be 0 when inode is released and thus trigger WARN_ON(i_blocks)
2205 	 * in shmem_evict_inode().
2206 	 */
2207 	shmem_recalc_inode(inode, -nr_pages, -nr_pages);
2208 }
2209 
2210 static int shmem_split_large_entry(struct inode *inode, pgoff_t index,
2211 				   swp_entry_t swap, gfp_t gfp)
2212 {
2213 	struct address_space *mapping = inode->i_mapping;
2214 	XA_STATE_ORDER(xas, &mapping->i_pages, index, 0);
2215 	int split_order = 0;
2216 	int i;
2217 
2218 	/* Convert user data gfp flags to xarray node gfp flags */
2219 	gfp &= GFP_RECLAIM_MASK;
2220 
2221 	for (;;) {
2222 		void *old = NULL;
2223 		int cur_order;
2224 		pgoff_t swap_index;
2225 
2226 		xas_lock_irq(&xas);
2227 		old = xas_load(&xas);
2228 		if (!xa_is_value(old) || swp_to_radix_entry(swap) != old) {
2229 			xas_set_err(&xas, -EEXIST);
2230 			goto unlock;
2231 		}
2232 
2233 		cur_order = xas_get_order(&xas);
2234 		if (!cur_order)
2235 			goto unlock;
2236 
2237 		/* Try to split large swap entry in pagecache */
2238 		swap_index = round_down(index, 1 << cur_order);
2239 		split_order = xas_try_split_min_order(cur_order);
2240 
2241 		while (cur_order > 0) {
2242 			pgoff_t aligned_index =
2243 				round_down(index, 1 << cur_order);
2244 			pgoff_t swap_offset = aligned_index - swap_index;
2245 
2246 			xas_set_order(&xas, index, split_order);
2247 			xas_try_split(&xas, old, cur_order);
2248 			if (xas_error(&xas))
2249 				goto unlock;
2250 
2251 			/*
2252 			 * Re-set the swap entry after splitting, and the swap
2253 			 * offset of the original large entry must be continuous.
2254 			 */
2255 			for (i = 0; i < 1 << cur_order;
2256 			     i += (1 << split_order)) {
2257 				swp_entry_t tmp;
2258 
2259 				tmp = swp_entry(swp_type(swap),
2260 						swp_offset(swap) + swap_offset +
2261 							i);
2262 				__xa_store(&mapping->i_pages, aligned_index + i,
2263 					   swp_to_radix_entry(tmp), 0);
2264 			}
2265 			cur_order = split_order;
2266 			split_order = xas_try_split_min_order(split_order);
2267 		}
2268 
2269 unlock:
2270 		xas_unlock_irq(&xas);
2271 
2272 		if (!xas_nomem(&xas, gfp))
2273 			break;
2274 	}
2275 
2276 	if (xas_error(&xas))
2277 		return xas_error(&xas);
2278 
2279 	return 0;
2280 }
2281 
2282 /*
2283  * Swap in the folio pointed to by *foliop.
2284  * Caller has to make sure that *foliop contains a valid swapped folio.
2285  * Returns 0 and the folio in foliop if success. On failure, returns the
2286  * error code and NULL in *foliop.
2287  */
2288 static int shmem_swapin_folio(struct inode *inode, pgoff_t index,
2289 			     struct folio **foliop, enum sgp_type sgp,
2290 			     gfp_t gfp, struct vm_area_struct *vma,
2291 			     vm_fault_t *fault_type)
2292 {
2293 	struct address_space *mapping = inode->i_mapping;
2294 	struct mm_struct *fault_mm = vma ? vma->vm_mm : NULL;
2295 	struct shmem_inode_info *info = SHMEM_I(inode);
2296 	swp_entry_t swap;
2297 	softleaf_t index_entry;
2298 	struct swap_info_struct *si;
2299 	struct folio *folio = NULL;
2300 	int error, nr_pages, order;
2301 	pgoff_t offset;
2302 
2303 	VM_BUG_ON(!*foliop || !xa_is_value(*foliop));
2304 	index_entry = radix_to_swp_entry(*foliop);
2305 	swap = index_entry;
2306 	*foliop = NULL;
2307 
2308 	if (softleaf_is_poison_marker(index_entry))
2309 		return -EIO;
2310 
2311 	si = get_swap_device(index_entry);
2312 	order = shmem_confirm_swap(mapping, index, index_entry);
2313 	if (unlikely(!si)) {
2314 		if (order < 0)
2315 			return -EEXIST;
2316 		else
2317 			return -EINVAL;
2318 	}
2319 	if (unlikely(order < 0)) {
2320 		put_swap_device(si);
2321 		return -EEXIST;
2322 	}
2323 
2324 	/* index may point to the middle of a large entry, get the sub entry */
2325 	if (order) {
2326 		offset = index - round_down(index, 1 << order);
2327 		swap = swp_entry(swp_type(swap), swp_offset(swap) + offset);
2328 	}
2329 
2330 	/* Look it up and read it in.. */
2331 	folio = swap_cache_get_folio(swap);
2332 	if (!folio) {
2333 		if (data_race(si->flags & SWP_SYNCHRONOUS_IO)) {
2334 			/* Direct swapin skipping swap cache & readahead */
2335 			folio = shmem_swap_alloc_folio(inode, vma, index,
2336 						       index_entry, order, gfp);
2337 			if (IS_ERR(folio)) {
2338 				error = PTR_ERR(folio);
2339 				folio = NULL;
2340 				goto failed;
2341 			}
2342 		} else {
2343 			/* Cached swapin only supports order 0 folio */
2344 			folio = shmem_swapin_cluster(swap, gfp, info, index);
2345 			if (!folio) {
2346 				error = -ENOMEM;
2347 				goto failed;
2348 			}
2349 		}
2350 		if (fault_type) {
2351 			*fault_type |= VM_FAULT_MAJOR;
2352 			count_vm_event(PGMAJFAULT);
2353 			count_memcg_event_mm(fault_mm, PGMAJFAULT);
2354 		}
2355 	} else {
2356 		swap_update_readahead(folio, NULL, 0);
2357 	}
2358 
2359 	if (order > folio_order(folio)) {
2360 		/*
2361 		 * Swapin may get smaller folios due to various reasons:
2362 		 * It may fallback to order 0 due to memory pressure or race,
2363 		 * swap readahead may swap in order 0 folios into swapcache
2364 		 * asynchronously, while the shmem mapping can still stores
2365 		 * large swap entries. In such cases, we should split the
2366 		 * large swap entry to prevent possible data corruption.
2367 		 */
2368 		error = shmem_split_large_entry(inode, index, index_entry, gfp);
2369 		if (error)
2370 			goto failed_nolock;
2371 	}
2372 
2373 	/*
2374 	 * If the folio is large, round down swap and index by folio size.
2375 	 * No matter what race occurs, the swap layer ensures we either get
2376 	 * a valid folio that has its swap entry aligned by size, or a
2377 	 * temporarily invalid one which we'll abort very soon and retry.
2378 	 *
2379 	 * shmem_add_to_page_cache ensures the whole range contains expected
2380 	 * entries and prevents any corruption, so any race split is fine
2381 	 * too, it will succeed as long as the entries are still there.
2382 	 */
2383 	nr_pages = folio_nr_pages(folio);
2384 	if (nr_pages > 1) {
2385 		swap.val = round_down(swap.val, nr_pages);
2386 		index = round_down(index, nr_pages);
2387 	}
2388 
2389 	/*
2390 	 * We have to do this with the folio locked to prevent races.
2391 	 * The shmem_confirm_swap below only checks if the first swap
2392 	 * entry matches the folio, that's enough to ensure the folio
2393 	 * is not used outside of shmem, as shmem swap entries
2394 	 * and swap cache folios are never partially freed.
2395 	 */
2396 	folio_lock(folio);
2397 	if (!folio_matches_swap_entry(folio, swap) ||
2398 	    shmem_confirm_swap(mapping, index, swap) < 0) {
2399 		error = -EEXIST;
2400 		goto unlock;
2401 	}
2402 	if (!folio_test_uptodate(folio)) {
2403 		error = -EIO;
2404 		goto failed;
2405 	}
2406 	folio_wait_writeback(folio);
2407 
2408 	/*
2409 	 * Some architectures may have to restore extra metadata to the
2410 	 * folio after reading from swap.
2411 	 */
2412 	arch_swap_restore(folio_swap(swap, folio), folio);
2413 
2414 	if (shmem_should_replace_folio(folio, gfp)) {
2415 		error = shmem_replace_folio(&folio, gfp, info, index, vma);
2416 		if (error)
2417 			goto failed;
2418 	}
2419 
2420 	error = shmem_add_to_page_cache(folio, mapping, index,
2421 					swp_to_radix_entry(swap), gfp);
2422 	if (error)
2423 		goto failed;
2424 
2425 	shmem_recalc_inode(inode, 0, -nr_pages);
2426 
2427 	if (sgp == SGP_WRITE)
2428 		folio_mark_accessed(folio);
2429 
2430 	folio_put_swap(folio, NULL);
2431 	swap_cache_del_folio(folio);
2432 	folio_mark_dirty(folio);
2433 	put_swap_device(si);
2434 
2435 	*foliop = folio;
2436 	return 0;
2437 failed:
2438 	if (shmem_confirm_swap(mapping, index, swap) < 0)
2439 		error = -EEXIST;
2440 	if (error == -EIO)
2441 		shmem_set_folio_swapin_error(inode, index, folio, swap);
2442 unlock:
2443 	if (folio)
2444 		folio_unlock(folio);
2445 failed_nolock:
2446 	if (folio)
2447 		folio_put(folio);
2448 	put_swap_device(si);
2449 
2450 	return error;
2451 }
2452 
2453 /*
2454  * shmem_get_folio_gfp - find page in cache, or get from swap, or allocate
2455  *
2456  * If we allocate a new one we do not mark it dirty. That's up to the
2457  * vm. If we swap it in we mark it dirty since we also free the swap
2458  * entry since a page cannot live in both the swap and page cache.
2459  *
2460  * vmf and fault_type are only supplied by shmem_fault: otherwise they are NULL.
2461  */
2462 static int shmem_get_folio_gfp(struct inode *inode, pgoff_t index,
2463 		loff_t write_end, struct folio **foliop, enum sgp_type sgp,
2464 		gfp_t gfp, struct vm_fault *vmf, vm_fault_t *fault_type)
2465 {
2466 	struct vm_area_struct *vma = vmf ? vmf->vma : NULL;
2467 	struct mm_struct *fault_mm;
2468 	struct folio *folio;
2469 	int error;
2470 	bool alloced;
2471 	unsigned long orders = 0;
2472 
2473 	if (WARN_ON_ONCE(!shmem_mapping(inode->i_mapping)))
2474 		return -EINVAL;
2475 
2476 	if (index > (MAX_LFS_FILESIZE >> PAGE_SHIFT))
2477 		return -EFBIG;
2478 repeat:
2479 	if (sgp <= SGP_CACHE &&
2480 	    ((loff_t)index << PAGE_SHIFT) >= i_size_read(inode))
2481 		return -EINVAL;
2482 
2483 	alloced = false;
2484 	fault_mm = vma ? vma->vm_mm : NULL;
2485 
2486 	folio = filemap_get_entry(inode->i_mapping, index);
2487 	if (folio && vma && userfaultfd_minor(vma)) {
2488 		if (!xa_is_value(folio))
2489 			folio_put(folio);
2490 		*fault_type = handle_userfault(vmf, VM_UFFD_MINOR);
2491 		return 0;
2492 	}
2493 
2494 	if (xa_is_value(folio)) {
2495 		error = shmem_swapin_folio(inode, index, &folio,
2496 					   sgp, gfp, vma, fault_type);
2497 		if (error == -EEXIST)
2498 			goto repeat;
2499 
2500 		*foliop = folio;
2501 		return error;
2502 	}
2503 
2504 	if (folio) {
2505 		folio_lock(folio);
2506 
2507 		/* Has the folio been truncated or swapped out? */
2508 		if (unlikely(folio->mapping != inode->i_mapping)) {
2509 			folio_unlock(folio);
2510 			folio_put(folio);
2511 			goto repeat;
2512 		}
2513 		if (sgp == SGP_WRITE)
2514 			folio_mark_accessed(folio);
2515 		if (folio_test_uptodate(folio))
2516 			goto out;
2517 		/* fallocated folio */
2518 		if (sgp != SGP_READ)
2519 			goto clear;
2520 		folio_unlock(folio);
2521 		folio_put(folio);
2522 	}
2523 
2524 	/*
2525 	 * SGP_READ: succeed on hole, with NULL folio, letting caller zero.
2526 	 * SGP_NOALLOC: fail on hole, with NULL folio, letting caller fail.
2527 	 */
2528 	*foliop = NULL;
2529 	if (sgp == SGP_READ)
2530 		return 0;
2531 	if (sgp == SGP_NOALLOC)
2532 		return -ENOENT;
2533 
2534 	/*
2535 	 * Fast cache lookup and swap lookup did not find it: allocate.
2536 	 */
2537 
2538 	if (vma && userfaultfd_missing(vma)) {
2539 		*fault_type = handle_userfault(vmf, VM_UFFD_MISSING);
2540 		return 0;
2541 	}
2542 
2543 	/* Find hugepage orders that are allowed for anonymous shmem and tmpfs. */
2544 	orders = shmem_allowable_huge_orders(inode, vma, index, write_end, false);
2545 	if (orders > 0) {
2546 		gfp_t huge_gfp;
2547 
2548 		huge_gfp = vma_thp_gfp_mask(vma);
2549 		huge_gfp = limit_gfp_mask(huge_gfp, gfp);
2550 		folio = shmem_alloc_and_add_folio(vmf, huge_gfp,
2551 				inode, index, fault_mm, orders);
2552 		if (!IS_ERR(folio)) {
2553 			if (folio_test_pmd_mappable(folio))
2554 				count_vm_event(THP_FILE_ALLOC);
2555 			count_mthp_stat(folio_order(folio), MTHP_STAT_SHMEM_ALLOC);
2556 			goto alloced;
2557 		}
2558 		if (PTR_ERR(folio) == -EEXIST)
2559 			goto repeat;
2560 	}
2561 
2562 	folio = shmem_alloc_and_add_folio(vmf, gfp, inode, index, fault_mm, 0);
2563 	if (IS_ERR(folio)) {
2564 		error = PTR_ERR(folio);
2565 		if (error == -EEXIST)
2566 			goto repeat;
2567 		folio = NULL;
2568 		goto unlock;
2569 	}
2570 
2571 alloced:
2572 	alloced = true;
2573 	if (folio_test_large(folio) &&
2574 	    DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE) <
2575 					folio_next_index(folio)) {
2576 		struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
2577 		struct shmem_inode_info *info = SHMEM_I(inode);
2578 		/*
2579 		 * Part of the large folio is beyond i_size: subject
2580 		 * to shrink under memory pressure.
2581 		 */
2582 		spin_lock(&sbinfo->shrinklist_lock);
2583 		/*
2584 		 * _careful to defend against unlocked access to
2585 		 * ->shrink_list in shmem_unused_huge_shrink()
2586 		 */
2587 		if (list_empty_careful(&info->shrinklist)) {
2588 			list_add_tail(&info->shrinklist,
2589 				      &sbinfo->shrinklist);
2590 			sbinfo->shrinklist_len++;
2591 		}
2592 		spin_unlock(&sbinfo->shrinklist_lock);
2593 	}
2594 
2595 	if (sgp == SGP_WRITE)
2596 		folio_set_referenced(folio);
2597 	/*
2598 	 * Let SGP_FALLOC use the SGP_WRITE optimization on a new folio.
2599 	 */
2600 	if (sgp == SGP_FALLOC)
2601 		sgp = SGP_WRITE;
2602 clear:
2603 	/*
2604 	 * Let SGP_WRITE caller clear ends if write does not fill folio;
2605 	 * but SGP_FALLOC on a folio fallocated earlier must initialize
2606 	 * it now, lest undo on failure cancel our earlier guarantee.
2607 	 */
2608 	if (sgp != SGP_WRITE && !folio_test_uptodate(folio)) {
2609 		long i, n = folio_nr_pages(folio);
2610 
2611 		for (i = 0; i < n; i++)
2612 			clear_highpage(folio_page(folio, i));
2613 		flush_dcache_folio(folio);
2614 		folio_mark_uptodate(folio);
2615 	}
2616 
2617 	/* Perhaps the file has been truncated since we checked */
2618 	if (sgp <= SGP_CACHE &&
2619 	    ((loff_t)index << PAGE_SHIFT) >= i_size_read(inode)) {
2620 		error = -EINVAL;
2621 		goto unlock;
2622 	}
2623 out:
2624 	*foliop = folio;
2625 	return 0;
2626 
2627 	/*
2628 	 * Error recovery.
2629 	 */
2630 unlock:
2631 	if (alloced)
2632 		filemap_remove_folio(folio);
2633 	shmem_recalc_inode(inode, 0, 0);
2634 	if (folio) {
2635 		folio_unlock(folio);
2636 		folio_put(folio);
2637 	}
2638 	return error;
2639 }
2640 
2641 /**
2642  * shmem_get_folio - find, and lock a shmem folio.
2643  * @inode:	inode to search
2644  * @index:	the page index.
2645  * @write_end:	end of a write, could extend inode size
2646  * @foliop:	pointer to the folio if found
2647  * @sgp:	SGP_* flags to control behavior
2648  *
2649  * Looks up the page cache entry at @inode & @index.  If a folio is
2650  * present, it is returned locked with an increased refcount.
2651  *
2652  * If the caller modifies data in the folio, it must call folio_mark_dirty()
2653  * before unlocking the folio to ensure that the folio is not reclaimed.
2654  * There is no need to reserve space before calling folio_mark_dirty().
2655  *
2656  * When no folio is found, the behavior depends on @sgp:
2657  *  - for SGP_READ, *@foliop is %NULL and 0 is returned
2658  *  - for SGP_NOALLOC, *@foliop is %NULL and -ENOENT is returned
2659  *  - for all other flags a new folio is allocated, inserted into the
2660  *    page cache and returned locked in @foliop.
2661  *
2662  * Context: May sleep.
2663  * Return: 0 if successful, else a negative error code.
2664  */
2665 int shmem_get_folio(struct inode *inode, pgoff_t index, loff_t write_end,
2666 		    struct folio **foliop, enum sgp_type sgp)
2667 {
2668 	return shmem_get_folio_gfp(inode, index, write_end, foliop, sgp,
2669 			mapping_gfp_mask(inode->i_mapping), NULL, NULL);
2670 }
2671 EXPORT_SYMBOL_GPL(shmem_get_folio);
2672 
2673 /*
2674  * This is like autoremove_wake_function, but it removes the wait queue
2675  * entry unconditionally - even if something else had already woken the
2676  * target.
2677  */
2678 static int synchronous_wake_function(wait_queue_entry_t *wait,
2679 			unsigned int mode, int sync, void *key)
2680 {
2681 	int ret = default_wake_function(wait, mode, sync, key);
2682 	list_del_init(&wait->entry);
2683 	return ret;
2684 }
2685 
2686 /*
2687  * Trinity finds that probing a hole which tmpfs is punching can
2688  * prevent the hole-punch from ever completing: which in turn
2689  * locks writers out with its hold on i_rwsem.  So refrain from
2690  * faulting pages into the hole while it's being punched.  Although
2691  * shmem_undo_range() does remove the additions, it may be unable to
2692  * keep up, as each new page needs its own unmap_mapping_range() call,
2693  * and the i_mmap tree grows ever slower to scan if new vmas are added.
2694  *
2695  * It does not matter if we sometimes reach this check just before the
2696  * hole-punch begins, so that one fault then races with the punch:
2697  * we just need to make racing faults a rare case.
2698  *
2699  * The implementation below would be much simpler if we just used a
2700  * standard mutex or completion: but we cannot take i_rwsem in fault,
2701  * and bloating every shmem inode for this unlikely case would be sad.
2702  */
2703 static vm_fault_t shmem_falloc_wait(struct vm_fault *vmf, struct inode *inode)
2704 {
2705 	struct shmem_falloc *shmem_falloc;
2706 	struct file *fpin = NULL;
2707 	vm_fault_t ret = 0;
2708 
2709 	spin_lock(&inode->i_lock);
2710 	shmem_falloc = inode->i_private;
2711 	if (shmem_falloc &&
2712 	    shmem_falloc->waitq &&
2713 	    vmf->pgoff >= shmem_falloc->start &&
2714 	    vmf->pgoff < shmem_falloc->next) {
2715 		wait_queue_head_t *shmem_falloc_waitq;
2716 		DEFINE_WAIT_FUNC(shmem_fault_wait, synchronous_wake_function);
2717 
2718 		ret = VM_FAULT_NOPAGE;
2719 		fpin = maybe_unlock_mmap_for_io(vmf, NULL);
2720 		shmem_falloc_waitq = shmem_falloc->waitq;
2721 		prepare_to_wait(shmem_falloc_waitq, &shmem_fault_wait,
2722 				TASK_UNINTERRUPTIBLE);
2723 		spin_unlock(&inode->i_lock);
2724 		schedule();
2725 
2726 		/*
2727 		 * shmem_falloc_waitq points into the shmem_fallocate()
2728 		 * stack of the hole-punching task: shmem_falloc_waitq
2729 		 * is usually invalid by the time we reach here, but
2730 		 * finish_wait() does not dereference it in that case;
2731 		 * though i_lock needed lest racing with wake_up_all().
2732 		 */
2733 		spin_lock(&inode->i_lock);
2734 		finish_wait(shmem_falloc_waitq, &shmem_fault_wait);
2735 	}
2736 	spin_unlock(&inode->i_lock);
2737 	if (fpin) {
2738 		fput(fpin);
2739 		ret = VM_FAULT_RETRY;
2740 	}
2741 	return ret;
2742 }
2743 
2744 static vm_fault_t shmem_fault(struct vm_fault *vmf)
2745 {
2746 	struct inode *inode = file_inode(vmf->vma->vm_file);
2747 	gfp_t gfp = mapping_gfp_mask(inode->i_mapping);
2748 	struct folio *folio = NULL;
2749 	vm_fault_t ret = 0;
2750 	int err;
2751 
2752 	/*
2753 	 * Trinity finds that probing a hole which tmpfs is punching can
2754 	 * prevent the hole-punch from ever completing: noted in i_private.
2755 	 */
2756 	if (unlikely(inode->i_private)) {
2757 		ret = shmem_falloc_wait(vmf, inode);
2758 		if (ret)
2759 			return ret;
2760 	}
2761 
2762 	WARN_ON_ONCE(vmf->page != NULL);
2763 	err = shmem_get_folio_gfp(inode, vmf->pgoff, 0, &folio, SGP_CACHE,
2764 				  gfp, vmf, &ret);
2765 	if (err)
2766 		return vmf_error(err);
2767 	if (folio) {
2768 		vmf->page = folio_file_page(folio, vmf->pgoff);
2769 		ret |= VM_FAULT_LOCKED;
2770 	}
2771 	return ret;
2772 }
2773 
2774 unsigned long shmem_get_unmapped_area(struct file *file,
2775 				      unsigned long uaddr, unsigned long len,
2776 				      unsigned long pgoff, unsigned long flags)
2777 {
2778 	unsigned long addr;
2779 	unsigned long offset;
2780 	unsigned long inflated_len;
2781 	unsigned long inflated_addr;
2782 	unsigned long inflated_offset;
2783 	unsigned long hpage_size;
2784 
2785 	if (len > TASK_SIZE)
2786 		return -ENOMEM;
2787 
2788 	addr = mm_get_unmapped_area(file, uaddr, len, pgoff, flags);
2789 
2790 	if (!IS_ENABLED(CONFIG_TRANSPARENT_HUGEPAGE))
2791 		return addr;
2792 	if (IS_ERR_VALUE(addr))
2793 		return addr;
2794 	if (addr & ~PAGE_MASK)
2795 		return addr;
2796 	if (addr > TASK_SIZE - len)
2797 		return addr;
2798 
2799 	if (shmem_huge == SHMEM_HUGE_DENY)
2800 		return addr;
2801 	if (flags & MAP_FIXED)
2802 		return addr;
2803 	/*
2804 	 * Our priority is to support MAP_SHARED mapped hugely;
2805 	 * and support MAP_PRIVATE mapped hugely too, until it is COWed.
2806 	 * But if caller specified an address hint and we allocated area there
2807 	 * successfully, respect that as before.
2808 	 */
2809 	if (uaddr == addr)
2810 		return addr;
2811 
2812 	hpage_size = HPAGE_PMD_SIZE;
2813 	if (shmem_huge != SHMEM_HUGE_FORCE) {
2814 		struct super_block *sb;
2815 		unsigned long __maybe_unused hpage_orders;
2816 		int order = 0;
2817 
2818 		if (file) {
2819 			VM_BUG_ON(file->f_op != &shmem_file_operations);
2820 			sb = file_inode(file)->i_sb;
2821 		} else {
2822 			/*
2823 			 * Called directly from mm/mmap.c, or drivers/char/mem.c
2824 			 * for "/dev/zero", to create a shared anonymous object.
2825 			 */
2826 			if (IS_ERR(shm_mnt))
2827 				return addr;
2828 			sb = shm_mnt->mnt_sb;
2829 
2830 			/*
2831 			 * Find the highest mTHP order used for anonymous shmem to
2832 			 * provide a suitable alignment address.
2833 			 */
2834 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
2835 			hpage_orders = READ_ONCE(huge_shmem_orders_always);
2836 			hpage_orders |= READ_ONCE(huge_shmem_orders_within_size);
2837 			hpage_orders |= READ_ONCE(huge_shmem_orders_madvise);
2838 			if (SHMEM_SB(sb)->huge != SHMEM_HUGE_NEVER)
2839 				hpage_orders |= READ_ONCE(huge_shmem_orders_inherit);
2840 
2841 			if (hpage_orders > 0) {
2842 				order = highest_order(hpage_orders);
2843 				hpage_size = PAGE_SIZE << order;
2844 			}
2845 #endif
2846 		}
2847 		if (SHMEM_SB(sb)->huge == SHMEM_HUGE_NEVER && !order)
2848 			return addr;
2849 	}
2850 
2851 	if (len < hpage_size)
2852 		return addr;
2853 
2854 	offset = (pgoff << PAGE_SHIFT) & (hpage_size - 1);
2855 	if (offset && offset + len < 2 * hpage_size)
2856 		return addr;
2857 	if ((addr & (hpage_size - 1)) == offset)
2858 		return addr;
2859 
2860 	inflated_len = len + hpage_size - PAGE_SIZE;
2861 	if (inflated_len > TASK_SIZE)
2862 		return addr;
2863 	if (inflated_len < len)
2864 		return addr;
2865 
2866 	inflated_addr = mm_get_unmapped_area(NULL, uaddr, inflated_len, 0, flags);
2867 	if (IS_ERR_VALUE(inflated_addr))
2868 		return addr;
2869 	if (inflated_addr & ~PAGE_MASK)
2870 		return addr;
2871 
2872 	inflated_offset = inflated_addr & (hpage_size - 1);
2873 	inflated_addr += offset - inflated_offset;
2874 	if (inflated_offset > offset)
2875 		inflated_addr += hpage_size;
2876 
2877 	if (inflated_addr > TASK_SIZE - len)
2878 		return addr;
2879 	return inflated_addr;
2880 }
2881 
2882 #ifdef CONFIG_NUMA
2883 static int shmem_set_policy(struct vm_area_struct *vma, struct mempolicy *mpol)
2884 {
2885 	struct inode *inode = file_inode(vma->vm_file);
2886 	return mpol_set_shared_policy(&SHMEM_I(inode)->policy, vma, mpol);
2887 }
2888 
2889 static struct mempolicy *shmem_get_policy(struct vm_area_struct *vma,
2890 					  unsigned long addr, pgoff_t *ilx)
2891 {
2892 	struct inode *inode = file_inode(vma->vm_file);
2893 	pgoff_t index;
2894 
2895 	/*
2896 	 * Bias interleave by inode number to distribute better across nodes;
2897 	 * but this interface is independent of which page order is used, so
2898 	 * supplies only that bias, letting caller apply the offset (adjusted
2899 	 * by page order, as in shmem_get_pgoff_policy() and get_vma_policy()).
2900 	 */
2901 	*ilx = inode->i_ino;
2902 	index = ((addr - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
2903 	return mpol_shared_policy_lookup(&SHMEM_I(inode)->policy, index);
2904 }
2905 
2906 static struct mempolicy *shmem_get_pgoff_policy(struct shmem_inode_info *info,
2907 			pgoff_t index, unsigned int order, pgoff_t *ilx)
2908 {
2909 	struct mempolicy *mpol;
2910 
2911 	/* Bias interleave by inode number to distribute better across nodes */
2912 	*ilx = info->vfs_inode.i_ino + (index >> order);
2913 
2914 	mpol = mpol_shared_policy_lookup(&info->policy, index);
2915 	return mpol ? mpol : get_task_policy(current);
2916 }
2917 #else
2918 static struct mempolicy *shmem_get_pgoff_policy(struct shmem_inode_info *info,
2919 			pgoff_t index, unsigned int order, pgoff_t *ilx)
2920 {
2921 	*ilx = 0;
2922 	return NULL;
2923 }
2924 #endif /* CONFIG_NUMA */
2925 
2926 int shmem_lock(struct file *file, int lock, struct ucounts *ucounts)
2927 {
2928 	struct inode *inode = file_inode(file);
2929 	struct shmem_inode_info *info = SHMEM_I(inode);
2930 	int retval = -ENOMEM;
2931 
2932 	/*
2933 	 * What serializes the accesses to info->flags?
2934 	 * ipc_lock_object() when called from shmctl_do_lock(),
2935 	 * no serialization needed when called from shm_destroy().
2936 	 */
2937 	if (lock && !(info->flags & SHMEM_F_LOCKED)) {
2938 		if (!user_shm_lock(inode->i_size, ucounts))
2939 			goto out_nomem;
2940 		info->flags |= SHMEM_F_LOCKED;
2941 		mapping_set_unevictable(file->f_mapping);
2942 	}
2943 	if (!lock && (info->flags & SHMEM_F_LOCKED) && ucounts) {
2944 		user_shm_unlock(inode->i_size, ucounts);
2945 		info->flags &= ~SHMEM_F_LOCKED;
2946 		mapping_clear_unevictable(file->f_mapping);
2947 	}
2948 	retval = 0;
2949 
2950 out_nomem:
2951 	return retval;
2952 }
2953 
2954 static int shmem_mmap_prepare(struct vm_area_desc *desc)
2955 {
2956 	struct file *file = desc->file;
2957 	struct inode *inode = file_inode(file);
2958 
2959 	file_accessed(file);
2960 	/* This is anonymous shared memory if it is unlinked at the time of mmap */
2961 	if (inode->i_nlink)
2962 		desc->vm_ops = &shmem_vm_ops;
2963 	else
2964 		desc->vm_ops = &shmem_anon_vm_ops;
2965 	return 0;
2966 }
2967 
2968 static int shmem_file_open(struct inode *inode, struct file *file)
2969 {
2970 	file->f_mode |= FMODE_CAN_ODIRECT;
2971 	return generic_file_open(inode, file);
2972 }
2973 
2974 #ifdef CONFIG_TMPFS_XATTR
2975 static int shmem_initxattrs(struct inode *, const struct xattr *, void *);
2976 
2977 #if IS_ENABLED(CONFIG_UNICODE)
2978 /*
2979  * shmem_inode_casefold_flags - Deal with casefold file attribute flag
2980  *
2981  * The casefold file attribute needs some special checks. I can just be added to
2982  * an empty dir, and can't be removed from a non-empty dir.
2983  */
2984 static int shmem_inode_casefold_flags(struct inode *inode, unsigned int fsflags,
2985 				      struct dentry *dentry, unsigned int *i_flags)
2986 {
2987 	unsigned int old = inode->i_flags;
2988 	struct super_block *sb = inode->i_sb;
2989 
2990 	if (fsflags & FS_CASEFOLD_FL) {
2991 		if (!(old & S_CASEFOLD)) {
2992 			if (!sb->s_encoding)
2993 				return -EOPNOTSUPP;
2994 
2995 			if (!S_ISDIR(inode->i_mode))
2996 				return -ENOTDIR;
2997 
2998 			if (dentry && !simple_empty(dentry))
2999 				return -ENOTEMPTY;
3000 		}
3001 
3002 		*i_flags = *i_flags | S_CASEFOLD;
3003 	} else if (old & S_CASEFOLD) {
3004 		if (dentry && !simple_empty(dentry))
3005 			return -ENOTEMPTY;
3006 	}
3007 
3008 	return 0;
3009 }
3010 #else
3011 static int shmem_inode_casefold_flags(struct inode *inode, unsigned int fsflags,
3012 				      struct dentry *dentry, unsigned int *i_flags)
3013 {
3014 	if (fsflags & FS_CASEFOLD_FL)
3015 		return -EOPNOTSUPP;
3016 
3017 	return 0;
3018 }
3019 #endif
3020 
3021 /*
3022  * chattr's fsflags are unrelated to extended attributes,
3023  * but tmpfs has chosen to enable them under the same config option.
3024  */
3025 static int shmem_set_inode_flags(struct inode *inode, unsigned int fsflags, struct dentry *dentry)
3026 {
3027 	unsigned int i_flags = 0;
3028 	int ret;
3029 
3030 	ret = shmem_inode_casefold_flags(inode, fsflags, dentry, &i_flags);
3031 	if (ret)
3032 		return ret;
3033 
3034 	if (fsflags & FS_NOATIME_FL)
3035 		i_flags |= S_NOATIME;
3036 	if (fsflags & FS_APPEND_FL)
3037 		i_flags |= S_APPEND;
3038 	if (fsflags & FS_IMMUTABLE_FL)
3039 		i_flags |= S_IMMUTABLE;
3040 	/*
3041 	 * But FS_NODUMP_FL does not require any action in i_flags.
3042 	 */
3043 	inode_set_flags(inode, i_flags, S_NOATIME | S_APPEND | S_IMMUTABLE | S_CASEFOLD);
3044 
3045 	return 0;
3046 }
3047 #else
3048 static void shmem_set_inode_flags(struct inode *inode, unsigned int fsflags, struct dentry *dentry)
3049 {
3050 }
3051 #define shmem_initxattrs NULL
3052 #endif
3053 
3054 static struct offset_ctx *shmem_get_offset_ctx(struct inode *inode)
3055 {
3056 	return &SHMEM_I(inode)->dir_offsets;
3057 }
3058 
3059 static struct inode *__shmem_get_inode(struct mnt_idmap *idmap,
3060 				       struct super_block *sb,
3061 				       struct inode *dir, umode_t mode,
3062 				       dev_t dev, vma_flags_t flags)
3063 {
3064 	struct inode *inode;
3065 	struct shmem_inode_info *info;
3066 	struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
3067 	ino_t ino;
3068 	int err;
3069 
3070 	err = shmem_reserve_inode(sb, &ino);
3071 	if (err)
3072 		return ERR_PTR(err);
3073 
3074 	inode = new_inode(sb);
3075 	if (!inode) {
3076 		shmem_free_inode(sb, 0);
3077 		return ERR_PTR(-ENOSPC);
3078 	}
3079 
3080 	inode->i_ino = ino;
3081 	inode_init_owner(idmap, inode, dir, mode);
3082 	inode->i_blocks = 0;
3083 	simple_inode_init_ts(inode);
3084 	inode->i_generation = get_random_u32();
3085 	info = SHMEM_I(inode);
3086 	memset(info, 0, (char *)inode - (char *)info);
3087 	INIT_LIST_HEAD_RCU(&info->xattrs);
3088 	spin_lock_init(&info->lock);
3089 	atomic_set(&info->stop_eviction, 0);
3090 	info->seals = F_SEAL_SEAL;
3091 	info->flags = vma_flags_test(&flags, VMA_NORESERVE_BIT)
3092 		? SHMEM_F_NORESERVE : 0;
3093 	info->i_crtime = inode_get_mtime(inode);
3094 	info->fsflags = (dir == NULL) ? 0 :
3095 		SHMEM_I(dir)->fsflags & SHMEM_FL_INHERITED;
3096 	if (info->fsflags)
3097 		shmem_set_inode_flags(inode, info->fsflags, NULL);
3098 	INIT_LIST_HEAD(&info->shrinklist);
3099 	INIT_LIST_HEAD(&info->swaplist);
3100 	cache_no_acl(inode);
3101 	if (sbinfo->noswap)
3102 		mapping_set_unevictable(inode->i_mapping);
3103 
3104 	/* Don't consider 'deny' for emergencies and 'force' for testing */
3105 	if (sbinfo->huge)
3106 		mapping_set_large_folios(inode->i_mapping);
3107 
3108 	switch (mode & S_IFMT) {
3109 	default:
3110 		inode->i_op = &shmem_special_inode_operations;
3111 		init_special_inode(inode, mode, dev);
3112 		break;
3113 	case S_IFREG:
3114 		inode->i_mapping->a_ops = &shmem_aops;
3115 		inode->i_op = &shmem_inode_operations;
3116 		inode->i_fop = &shmem_file_operations;
3117 		mpol_shared_policy_init(&info->policy,
3118 					 shmem_get_sbmpol(sbinfo));
3119 		break;
3120 	case S_IFDIR:
3121 		inc_nlink(inode);
3122 		/* Some things misbehave if size == 0 on a directory */
3123 		inode->i_size = 2 * BOGO_DIRENT_SIZE;
3124 		inode->i_op = &shmem_dir_inode_operations;
3125 		inode->i_fop = &simple_offset_dir_operations;
3126 		simple_offset_init(shmem_get_offset_ctx(inode));
3127 		break;
3128 	case S_IFLNK:
3129 		/*
3130 		 * Must not load anything in the rbtree,
3131 		 * mpol_free_shared_policy will not be called.
3132 		 */
3133 		mpol_shared_policy_init(&info->policy, NULL);
3134 		break;
3135 	}
3136 
3137 	lockdep_annotate_inode_mutex_key(inode);
3138 	return inode;
3139 }
3140 
3141 #ifdef CONFIG_TMPFS_QUOTA
3142 static struct inode *shmem_get_inode(struct mnt_idmap *idmap,
3143 				     struct super_block *sb, struct inode *dir,
3144 				     umode_t mode, dev_t dev, vma_flags_t flags)
3145 {
3146 	int err;
3147 	struct inode *inode;
3148 
3149 	inode = __shmem_get_inode(idmap, sb, dir, mode, dev, flags);
3150 	if (IS_ERR(inode))
3151 		return inode;
3152 
3153 	err = dquot_initialize(inode);
3154 	if (err)
3155 		goto errout;
3156 
3157 	err = dquot_alloc_inode(inode);
3158 	if (err) {
3159 		dquot_drop(inode);
3160 		goto errout;
3161 	}
3162 	return inode;
3163 
3164 errout:
3165 	inode->i_flags |= S_NOQUOTA;
3166 	iput(inode);
3167 	return ERR_PTR(err);
3168 }
3169 #else
3170 static struct inode *shmem_get_inode(struct mnt_idmap *idmap,
3171 				     struct super_block *sb, struct inode *dir,
3172 				     umode_t mode, dev_t dev, vma_flags_t flags)
3173 {
3174 	return __shmem_get_inode(idmap, sb, dir, mode, dev, flags);
3175 }
3176 #endif /* CONFIG_TMPFS_QUOTA */
3177 
3178 #ifdef CONFIG_USERFAULTFD
3179 static struct folio *shmem_mfill_folio_alloc(struct vm_area_struct *vma,
3180 					     unsigned long addr)
3181 {
3182 	struct inode *inode = file_inode(vma->vm_file);
3183 	struct address_space *mapping = inode->i_mapping;
3184 	struct shmem_inode_info *info = SHMEM_I(inode);
3185 	pgoff_t pgoff = linear_page_index(vma, addr);
3186 	gfp_t gfp = mapping_gfp_mask(mapping);
3187 	struct folio *folio;
3188 
3189 	if (unlikely(pgoff >= DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE)))
3190 		return NULL;
3191 
3192 	folio = shmem_alloc_folio(gfp, 0, info, pgoff);
3193 	if (!folio)
3194 		return NULL;
3195 
3196 	if (mem_cgroup_charge(folio, vma->vm_mm, GFP_KERNEL)) {
3197 		folio_put(folio);
3198 		return NULL;
3199 	}
3200 
3201 	return folio;
3202 }
3203 
3204 static int shmem_mfill_filemap_add(struct folio *folio,
3205 				   struct vm_area_struct *vma,
3206 				   unsigned long addr)
3207 {
3208 	struct inode *inode = file_inode(vma->vm_file);
3209 	struct address_space *mapping = inode->i_mapping;
3210 	pgoff_t pgoff = linear_page_index(vma, addr);
3211 	gfp_t gfp = mapping_gfp_mask(mapping);
3212 	int err;
3213 
3214 	__folio_set_locked(folio);
3215 	__folio_set_swapbacked(folio);
3216 
3217 	err = shmem_add_to_page_cache(folio, mapping, pgoff, NULL, gfp);
3218 	if (err)
3219 		goto err_unlock;
3220 
3221 	if (shmem_inode_acct_blocks(inode, 1)) {
3222 		err = -ENOMEM;
3223 		goto err_delete_from_cache;
3224 	}
3225 
3226 	folio_add_lru(folio);
3227 	shmem_recalc_inode(inode, 1, 0);
3228 
3229 	return 0;
3230 
3231 err_delete_from_cache:
3232 	filemap_remove_folio(folio);
3233 err_unlock:
3234 	folio_unlock(folio);
3235 	return err;
3236 }
3237 
3238 static void shmem_mfill_filemap_remove(struct folio *folio,
3239 				       struct vm_area_struct *vma)
3240 {
3241 	struct inode *inode = file_inode(vma->vm_file);
3242 
3243 	filemap_remove_folio(folio);
3244 	shmem_recalc_inode(inode, 0, 0);
3245 	folio_unlock(folio);
3246 }
3247 
3248 static struct folio *shmem_get_folio_noalloc(struct inode *inode, pgoff_t pgoff)
3249 {
3250 	struct folio *folio;
3251 	int err;
3252 
3253 	err = shmem_get_folio(inode, pgoff, 0, &folio, SGP_NOALLOC);
3254 	if (err)
3255 		return ERR_PTR(err);
3256 
3257 	return folio;
3258 }
3259 
3260 static bool shmem_can_userfault(struct vm_area_struct *vma, vm_flags_t vm_flags)
3261 {
3262 	return true;
3263 }
3264 
3265 static const struct vm_uffd_ops shmem_uffd_ops = {
3266 	.can_userfault		= shmem_can_userfault,
3267 	.get_folio_noalloc	= shmem_get_folio_noalloc,
3268 	.alloc_folio		= shmem_mfill_folio_alloc,
3269 	.filemap_add		= shmem_mfill_filemap_add,
3270 	.filemap_remove		= shmem_mfill_filemap_remove,
3271 };
3272 #endif /* CONFIG_USERFAULTFD */
3273 
3274 #ifdef CONFIG_TMPFS
3275 static const struct inode_operations shmem_symlink_inode_operations;
3276 static const struct inode_operations shmem_short_symlink_operations;
3277 
3278 static int
3279 shmem_write_begin(const struct kiocb *iocb, struct address_space *mapping,
3280 		  loff_t pos, unsigned len,
3281 		  struct folio **foliop, void **fsdata)
3282 {
3283 	struct inode *inode = mapping->host;
3284 	struct shmem_inode_info *info = SHMEM_I(inode);
3285 	pgoff_t index = pos >> PAGE_SHIFT;
3286 	struct folio *folio;
3287 	int ret = 0;
3288 
3289 	/* i_rwsem is held by caller */
3290 	if (unlikely(info->seals & (F_SEAL_GROW |
3291 				   F_SEAL_WRITE | F_SEAL_FUTURE_WRITE))) {
3292 		if (info->seals & (F_SEAL_WRITE | F_SEAL_FUTURE_WRITE))
3293 			return -EPERM;
3294 		if ((info->seals & F_SEAL_GROW) && pos + len > inode->i_size)
3295 			return -EPERM;
3296 	}
3297 
3298 	if (unlikely((info->flags & SHMEM_F_MAPPING_FROZEN) &&
3299 		     pos + len > inode->i_size))
3300 		return -EPERM;
3301 
3302 	ret = shmem_get_folio(inode, index, pos + len, &folio, SGP_WRITE);
3303 	if (ret)
3304 		return ret;
3305 
3306 	if (folio_contain_hwpoisoned_page(folio)) {
3307 		folio_unlock(folio);
3308 		folio_put(folio);
3309 		return -EIO;
3310 	}
3311 
3312 	*foliop = folio;
3313 	return 0;
3314 }
3315 
3316 static int
3317 shmem_write_end(const struct kiocb *iocb, struct address_space *mapping,
3318 		loff_t pos, unsigned len, unsigned copied,
3319 		struct folio *folio, void *fsdata)
3320 {
3321 	struct inode *inode = mapping->host;
3322 
3323 	if (pos + copied > inode->i_size)
3324 		i_size_write(inode, pos + copied);
3325 
3326 	if (!folio_test_uptodate(folio)) {
3327 		if (copied < folio_size(folio)) {
3328 			size_t from = offset_in_folio(folio, pos);
3329 			folio_zero_segments(folio, 0, from,
3330 					from + copied, folio_size(folio));
3331 		}
3332 		folio_mark_uptodate(folio);
3333 	}
3334 	folio_mark_dirty(folio);
3335 	folio_unlock(folio);
3336 	folio_put(folio);
3337 
3338 	return copied;
3339 }
3340 
3341 static ssize_t shmem_file_read_iter(struct kiocb *iocb, struct iov_iter *to)
3342 {
3343 	struct file *file = iocb->ki_filp;
3344 	struct inode *inode = file_inode(file);
3345 	struct address_space *mapping = inode->i_mapping;
3346 	pgoff_t index;
3347 	unsigned long offset;
3348 	int error = 0;
3349 	ssize_t retval = 0;
3350 
3351 	for (;;) {
3352 		struct folio *folio = NULL;
3353 		struct page *page = NULL;
3354 		unsigned long nr, ret;
3355 		loff_t end_offset, i_size = i_size_read(inode);
3356 		bool fallback_page_copy = false;
3357 		size_t fsize;
3358 
3359 		if (unlikely(iocb->ki_pos >= i_size))
3360 			break;
3361 
3362 		index = iocb->ki_pos >> PAGE_SHIFT;
3363 		error = shmem_get_folio(inode, index, 0, &folio, SGP_READ);
3364 		if (error) {
3365 			if (error == -EINVAL)
3366 				error = 0;
3367 			break;
3368 		}
3369 		if (folio) {
3370 			folio_unlock(folio);
3371 
3372 			page = folio_file_page(folio, index);
3373 			if (PageHWPoison(page)) {
3374 				folio_put(folio);
3375 				error = -EIO;
3376 				break;
3377 			}
3378 
3379 			if (folio_test_large(folio) &&
3380 			    folio_test_has_hwpoisoned(folio))
3381 				fallback_page_copy = true;
3382 		}
3383 
3384 		/*
3385 		 * We must evaluate after, since reads (unlike writes)
3386 		 * are called without i_rwsem protection against truncate
3387 		 */
3388 		i_size = i_size_read(inode);
3389 		if (unlikely(iocb->ki_pos >= i_size)) {
3390 			if (folio)
3391 				folio_put(folio);
3392 			break;
3393 		}
3394 		end_offset = min_t(loff_t, i_size, iocb->ki_pos + to->count);
3395 		if (folio && likely(!fallback_page_copy))
3396 			fsize = folio_size(folio);
3397 		else
3398 			fsize = PAGE_SIZE;
3399 		offset = iocb->ki_pos & (fsize - 1);
3400 		nr = min_t(loff_t, end_offset - iocb->ki_pos, fsize - offset);
3401 
3402 		if (folio) {
3403 			/*
3404 			 * If users can be writing to this page using arbitrary
3405 			 * virtual addresses, take care about potential aliasing
3406 			 * before reading the page on the kernel side.
3407 			 */
3408 			if (mapping_writably_mapped(mapping)) {
3409 				if (likely(!fallback_page_copy))
3410 					flush_dcache_folio(folio);
3411 				else
3412 					flush_dcache_page(page);
3413 			}
3414 
3415 			/*
3416 			 * Mark the folio accessed if we read the beginning.
3417 			 */
3418 			if (!offset)
3419 				folio_mark_accessed(folio);
3420 			/*
3421 			 * Ok, we have the page, and it's up-to-date, so
3422 			 * now we can copy it to user space...
3423 			 */
3424 			if (likely(!fallback_page_copy))
3425 				ret = copy_folio_to_iter(folio, offset, nr, to);
3426 			else
3427 				ret = copy_page_to_iter(page, offset, nr, to);
3428 			folio_put(folio);
3429 		} else if (user_backed_iter(to)) {
3430 			/*
3431 			 * Copy to user tends to be so well optimized, but
3432 			 * clear_user() not so much, that it is noticeably
3433 			 * faster to copy the zero page instead of clearing.
3434 			 */
3435 			ret = copy_page_to_iter(ZERO_PAGE(0), offset, nr, to);
3436 		} else {
3437 			/*
3438 			 * But submitting the same page twice in a row to
3439 			 * splice() - or others? - can result in confusion:
3440 			 * so don't attempt that optimization on pipes etc.
3441 			 */
3442 			ret = iov_iter_zero(nr, to);
3443 		}
3444 
3445 		retval += ret;
3446 		iocb->ki_pos += ret;
3447 
3448 		if (!iov_iter_count(to))
3449 			break;
3450 		if (ret < nr) {
3451 			error = -EFAULT;
3452 			break;
3453 		}
3454 		cond_resched();
3455 	}
3456 
3457 	file_accessed(file);
3458 	return retval ? retval : error;
3459 }
3460 
3461 static ssize_t shmem_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
3462 {
3463 	struct file *file = iocb->ki_filp;
3464 	struct inode *inode = file->f_mapping->host;
3465 	ssize_t ret;
3466 
3467 	inode_lock(inode);
3468 	ret = generic_write_checks(iocb, from);
3469 	if (ret <= 0)
3470 		goto unlock;
3471 	ret = file_remove_privs(file);
3472 	if (ret)
3473 		goto unlock;
3474 	ret = file_update_time(file);
3475 	if (ret)
3476 		goto unlock;
3477 	ret = generic_perform_write(iocb, from);
3478 unlock:
3479 	inode_unlock(inode);
3480 	return ret;
3481 }
3482 
3483 static bool zero_pipe_buf_get(struct pipe_inode_info *pipe,
3484 			      struct pipe_buffer *buf)
3485 {
3486 	return true;
3487 }
3488 
3489 static void zero_pipe_buf_release(struct pipe_inode_info *pipe,
3490 				  struct pipe_buffer *buf)
3491 {
3492 }
3493 
3494 static bool zero_pipe_buf_try_steal(struct pipe_inode_info *pipe,
3495 				    struct pipe_buffer *buf)
3496 {
3497 	return false;
3498 }
3499 
3500 static const struct pipe_buf_operations zero_pipe_buf_ops = {
3501 	.release	= zero_pipe_buf_release,
3502 	.try_steal	= zero_pipe_buf_try_steal,
3503 	.get		= zero_pipe_buf_get,
3504 };
3505 
3506 static size_t splice_zeropage_into_pipe(struct pipe_inode_info *pipe,
3507 					loff_t fpos, size_t size)
3508 {
3509 	size_t offset = fpos & ~PAGE_MASK;
3510 
3511 	size = min_t(size_t, size, PAGE_SIZE - offset);
3512 
3513 	if (!pipe_is_full(pipe)) {
3514 		struct pipe_buffer *buf = pipe_head_buf(pipe);
3515 
3516 		*buf = (struct pipe_buffer) {
3517 			.ops	= &zero_pipe_buf_ops,
3518 			.page	= ZERO_PAGE(0),
3519 			.offset	= offset,
3520 			.len	= size,
3521 		};
3522 		pipe->head++;
3523 	}
3524 
3525 	return size;
3526 }
3527 
3528 static ssize_t shmem_file_splice_read(struct file *in, loff_t *ppos,
3529 				      struct pipe_inode_info *pipe,
3530 				      size_t len, unsigned int flags)
3531 {
3532 	struct inode *inode = file_inode(in);
3533 	struct address_space *mapping = inode->i_mapping;
3534 	struct folio *folio = NULL;
3535 	size_t total_spliced = 0, used, npages, n, part;
3536 	loff_t isize;
3537 	int error = 0;
3538 
3539 	/* Work out how much data we can actually add into the pipe */
3540 	used = pipe_buf_usage(pipe);
3541 	npages = max_t(ssize_t, pipe->max_usage - used, 0);
3542 	len = min_t(size_t, len, npages * PAGE_SIZE);
3543 
3544 	do {
3545 		bool fallback_page_splice = false;
3546 		struct page *page = NULL;
3547 		pgoff_t index;
3548 		size_t size;
3549 
3550 		if (*ppos >= i_size_read(inode))
3551 			break;
3552 
3553 		index = *ppos >> PAGE_SHIFT;
3554 		error = shmem_get_folio(inode, index, 0, &folio, SGP_READ);
3555 		if (error) {
3556 			if (error == -EINVAL)
3557 				error = 0;
3558 			break;
3559 		}
3560 		if (folio) {
3561 			folio_unlock(folio);
3562 
3563 			page = folio_file_page(folio, index);
3564 			if (PageHWPoison(page)) {
3565 				error = -EIO;
3566 				break;
3567 			}
3568 
3569 			if (folio_test_large(folio) &&
3570 			    folio_test_has_hwpoisoned(folio))
3571 				fallback_page_splice = true;
3572 		}
3573 
3574 		/*
3575 		 * i_size must be checked after we know the pages are Uptodate.
3576 		 *
3577 		 * Checking i_size after the check allows us to calculate
3578 		 * the correct value for "nr", which means the zero-filled
3579 		 * part of the page is not copied back to userspace (unless
3580 		 * another truncate extends the file - this is desired though).
3581 		 */
3582 		isize = i_size_read(inode);
3583 		if (unlikely(*ppos >= isize))
3584 			break;
3585 		/*
3586 		 * Fallback to PAGE_SIZE splice if the large folio has hwpoisoned
3587 		 * pages.
3588 		 */
3589 		size = len;
3590 		if (unlikely(fallback_page_splice)) {
3591 			size_t offset = *ppos & ~PAGE_MASK;
3592 
3593 			size = umin(size, PAGE_SIZE - offset);
3594 		}
3595 		part = min_t(loff_t, isize - *ppos, size);
3596 
3597 		if (folio) {
3598 			/*
3599 			 * If users can be writing to this page using arbitrary
3600 			 * virtual addresses, take care about potential aliasing
3601 			 * before reading the page on the kernel side.
3602 			 */
3603 			if (mapping_writably_mapped(mapping)) {
3604 				if (likely(!fallback_page_splice))
3605 					flush_dcache_folio(folio);
3606 				else
3607 					flush_dcache_page(page);
3608 			}
3609 			folio_mark_accessed(folio);
3610 			/*
3611 			 * Ok, we have the page, and it's up-to-date, so we can
3612 			 * now splice it into the pipe.
3613 			 */
3614 			n = splice_folio_into_pipe(pipe, folio, *ppos, part);
3615 			folio_put(folio);
3616 			folio = NULL;
3617 		} else {
3618 			n = splice_zeropage_into_pipe(pipe, *ppos, part);
3619 		}
3620 
3621 		if (!n)
3622 			break;
3623 		len -= n;
3624 		total_spliced += n;
3625 		*ppos += n;
3626 		in->f_ra.prev_pos = *ppos;
3627 		if (pipe_is_full(pipe))
3628 			break;
3629 
3630 		cond_resched();
3631 	} while (len);
3632 
3633 	if (folio)
3634 		folio_put(folio);
3635 
3636 	file_accessed(in);
3637 	return total_spliced ? total_spliced : error;
3638 }
3639 
3640 static loff_t shmem_file_llseek(struct file *file, loff_t offset, int whence)
3641 {
3642 	struct address_space *mapping = file->f_mapping;
3643 	struct inode *inode = mapping->host;
3644 
3645 	if (whence != SEEK_DATA && whence != SEEK_HOLE)
3646 		return generic_file_llseek_size(file, offset, whence,
3647 					MAX_LFS_FILESIZE, i_size_read(inode));
3648 	if (offset < 0)
3649 		return -ENXIO;
3650 
3651 	inode_lock(inode);
3652 	/* We're holding i_rwsem so we can access i_size directly */
3653 	offset = mapping_seek_hole_data(mapping, offset, inode->i_size, whence);
3654 	if (offset >= 0)
3655 		offset = vfs_setpos(file, offset, MAX_LFS_FILESIZE);
3656 	inode_unlock(inode);
3657 	return offset;
3658 }
3659 
3660 static long shmem_fallocate(struct file *file, int mode, loff_t offset,
3661 							 loff_t len)
3662 {
3663 	struct inode *inode = file_inode(file);
3664 	struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
3665 	struct shmem_inode_info *info = SHMEM_I(inode);
3666 	struct shmem_falloc shmem_falloc;
3667 	pgoff_t start, index, end, undo_fallocend;
3668 	int error;
3669 
3670 	if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
3671 		return -EOPNOTSUPP;
3672 
3673 	inode_lock(inode);
3674 
3675 	if (info->flags & SHMEM_F_MAPPING_FROZEN) {
3676 		error = -EPERM;
3677 		goto out;
3678 	}
3679 
3680 	if (mode & FALLOC_FL_PUNCH_HOLE) {
3681 		struct address_space *mapping = file->f_mapping;
3682 		loff_t unmap_start = round_up(offset, PAGE_SIZE);
3683 		loff_t unmap_end = round_down(offset + len, PAGE_SIZE) - 1;
3684 		DECLARE_WAIT_QUEUE_HEAD_ONSTACK(shmem_falloc_waitq);
3685 
3686 		/* protected by i_rwsem */
3687 		if (info->seals & (F_SEAL_WRITE | F_SEAL_FUTURE_WRITE)) {
3688 			error = -EPERM;
3689 			goto out;
3690 		}
3691 
3692 		shmem_falloc.waitq = &shmem_falloc_waitq;
3693 		shmem_falloc.start = (u64)unmap_start >> PAGE_SHIFT;
3694 		shmem_falloc.next = (unmap_end + 1) >> PAGE_SHIFT;
3695 		spin_lock(&inode->i_lock);
3696 		inode->i_private = &shmem_falloc;
3697 		spin_unlock(&inode->i_lock);
3698 
3699 		if ((u64)unmap_end > (u64)unmap_start)
3700 			unmap_mapping_range(mapping, unmap_start,
3701 					    1 + unmap_end - unmap_start, 0);
3702 		shmem_truncate_range(inode, offset, offset + len - 1);
3703 		/* No need to unmap again: hole-punching leaves COWed pages */
3704 
3705 		spin_lock(&inode->i_lock);
3706 		inode->i_private = NULL;
3707 		wake_up_all(&shmem_falloc_waitq);
3708 		WARN_ON_ONCE(!list_empty(&shmem_falloc_waitq.head));
3709 		spin_unlock(&inode->i_lock);
3710 		error = 0;
3711 		goto out;
3712 	}
3713 
3714 	/* We need to check rlimit even when FALLOC_FL_KEEP_SIZE */
3715 	error = inode_newsize_ok(inode, offset + len);
3716 	if (error)
3717 		goto out;
3718 
3719 	if ((info->seals & F_SEAL_GROW) && offset + len > inode->i_size) {
3720 		error = -EPERM;
3721 		goto out;
3722 	}
3723 
3724 	start = offset >> PAGE_SHIFT;
3725 	end = (offset + len + PAGE_SIZE - 1) >> PAGE_SHIFT;
3726 	/* Try to avoid a swapstorm if len is impossible to satisfy */
3727 	if (sbinfo->max_blocks && end - start > sbinfo->max_blocks) {
3728 		error = -ENOSPC;
3729 		goto out;
3730 	}
3731 
3732 	shmem_falloc.waitq = NULL;
3733 	shmem_falloc.start = start;
3734 	shmem_falloc.next  = start;
3735 	shmem_falloc.nr_falloced = 0;
3736 	shmem_falloc.nr_unswapped = 0;
3737 	spin_lock(&inode->i_lock);
3738 	inode->i_private = &shmem_falloc;
3739 	spin_unlock(&inode->i_lock);
3740 
3741 	/*
3742 	 * info->fallocend is only relevant when huge pages might be
3743 	 * involved: to prevent split_huge_page() freeing fallocated
3744 	 * pages when FALLOC_FL_KEEP_SIZE committed beyond i_size.
3745 	 */
3746 	undo_fallocend = info->fallocend;
3747 	if (info->fallocend < end)
3748 		info->fallocend = end;
3749 
3750 	for (index = start; index < end; ) {
3751 		struct folio *folio;
3752 
3753 		/*
3754 		 * Check for fatal signal so that we abort early in OOM
3755 		 * situations. We don't want to abort in case of non-fatal
3756 		 * signals as large fallocate can take noticeable time and
3757 		 * e.g. periodic timers may result in fallocate constantly
3758 		 * restarting.
3759 		 */
3760 		if (fatal_signal_pending(current))
3761 			error = -EINTR;
3762 		else if (shmem_falloc.nr_unswapped > shmem_falloc.nr_falloced)
3763 			error = -ENOMEM;
3764 		else
3765 			error = shmem_get_folio(inode, index, offset + len,
3766 						&folio, SGP_FALLOC);
3767 		if (error) {
3768 			info->fallocend = undo_fallocend;
3769 			/* Remove the !uptodate folios we added */
3770 			if (index > start) {
3771 				shmem_undo_range(inode,
3772 				    (loff_t)start << PAGE_SHIFT,
3773 				    ((loff_t)index << PAGE_SHIFT) - 1, true);
3774 			}
3775 			goto undone;
3776 		}
3777 
3778 		/*
3779 		 * Here is a more important optimization than it appears:
3780 		 * a second SGP_FALLOC on the same large folio will clear it,
3781 		 * making it uptodate and un-undoable if we fail later.
3782 		 */
3783 		index = folio_next_index(folio);
3784 		/* Beware 32-bit wraparound */
3785 		if (!index)
3786 			index--;
3787 
3788 		/*
3789 		 * Inform shmem_writeout() how far we have reached.
3790 		 * No need for lock or barrier: we have the page lock.
3791 		 */
3792 		if (!folio_test_uptodate(folio))
3793 			shmem_falloc.nr_falloced += index - shmem_falloc.next;
3794 		shmem_falloc.next = index;
3795 
3796 		/*
3797 		 * If !uptodate, leave it that way so that freeable folios
3798 		 * can be recognized if we need to rollback on error later.
3799 		 * But mark it dirty so that memory pressure will swap rather
3800 		 * than free the folios we are allocating (and SGP_CACHE folios
3801 		 * might still be clean: we now need to mark those dirty too).
3802 		 */
3803 		folio_mark_dirty(folio);
3804 		folio_unlock(folio);
3805 		folio_put(folio);
3806 		cond_resched();
3807 	}
3808 
3809 	if (!(mode & FALLOC_FL_KEEP_SIZE) && offset + len > inode->i_size)
3810 		i_size_write(inode, offset + len);
3811 undone:
3812 	spin_lock(&inode->i_lock);
3813 	inode->i_private = NULL;
3814 	spin_unlock(&inode->i_lock);
3815 out:
3816 	if (!error)
3817 		file_modified(file);
3818 	inode_unlock(inode);
3819 	return error;
3820 }
3821 
3822 static int shmem_statfs(struct dentry *dentry, struct kstatfs *buf)
3823 {
3824 	struct shmem_sb_info *sbinfo = SHMEM_SB(dentry->d_sb);
3825 
3826 	buf->f_type = TMPFS_MAGIC;
3827 	buf->f_bsize = PAGE_SIZE;
3828 	buf->f_namelen = NAME_MAX;
3829 	if (sbinfo->max_blocks) {
3830 		buf->f_blocks = sbinfo->max_blocks;
3831 		buf->f_bavail =
3832 		buf->f_bfree  = sbinfo->max_blocks -
3833 				percpu_counter_sum(&sbinfo->used_blocks);
3834 	}
3835 	if (sbinfo->max_inodes) {
3836 		buf->f_files = sbinfo->max_inodes;
3837 		buf->f_ffree = sbinfo->free_ispace / BOGO_INODE_SIZE;
3838 	}
3839 	/* else leave those fields 0 like simple_statfs */
3840 
3841 	buf->f_fsid = uuid_to_fsid(dentry->d_sb->s_uuid.b);
3842 
3843 	return 0;
3844 }
3845 
3846 /*
3847  * File creation. Allocate an inode, and we're done..
3848  */
3849 static int
3850 shmem_mknod(struct mnt_idmap *idmap, struct inode *dir,
3851 	    struct dentry *dentry, umode_t mode, dev_t dev)
3852 {
3853 	struct inode *inode;
3854 	int error;
3855 
3856 	if (!generic_ci_validate_strict_name(dir, &dentry->d_name))
3857 		return -EINVAL;
3858 
3859 	inode = shmem_get_inode(idmap, dir->i_sb, dir, mode, dev,
3860 				mk_vma_flags(VMA_NORESERVE_BIT));
3861 	if (IS_ERR(inode))
3862 		return PTR_ERR(inode);
3863 
3864 	error = simple_acl_create(dir, inode);
3865 	if (error)
3866 		goto out_iput;
3867 	error = security_inode_init_security(inode, dir, &dentry->d_name,
3868 					     shmem_initxattrs, NULL);
3869 	if (error && error != -EOPNOTSUPP)
3870 		goto out_iput;
3871 
3872 	error = simple_offset_add(shmem_get_offset_ctx(dir), dentry);
3873 	if (error)
3874 		goto out_iput;
3875 
3876 	dir->i_size += BOGO_DIRENT_SIZE;
3877 	inode_set_mtime_to_ts(dir, inode_set_ctime_current(dir));
3878 	inode_inc_iversion(dir);
3879 
3880 	d_make_persistent(dentry, inode);
3881 	return error;
3882 
3883 out_iput:
3884 	iput(inode);
3885 	return error;
3886 }
3887 
3888 static int
3889 shmem_tmpfile(struct mnt_idmap *idmap, struct inode *dir,
3890 	      struct file *file, umode_t mode)
3891 {
3892 	struct inode *inode;
3893 	int error;
3894 
3895 	inode = shmem_get_inode(idmap, dir->i_sb, dir, mode, 0,
3896 				mk_vma_flags(VMA_NORESERVE_BIT));
3897 	if (IS_ERR(inode)) {
3898 		error = PTR_ERR(inode);
3899 		goto err_out;
3900 	}
3901 	error = security_inode_init_security(inode, dir, NULL,
3902 					     shmem_initxattrs, NULL);
3903 	if (error && error != -EOPNOTSUPP)
3904 		goto out_iput;
3905 	error = simple_acl_create(dir, inode);
3906 	if (error)
3907 		goto out_iput;
3908 	d_tmpfile(file, inode);
3909 
3910 err_out:
3911 	return finish_open_simple(file, error);
3912 out_iput:
3913 	iput(inode);
3914 	return error;
3915 }
3916 
3917 static struct dentry *shmem_mkdir(struct mnt_idmap *idmap, struct inode *dir,
3918 				  struct dentry *dentry, umode_t mode)
3919 {
3920 	int error;
3921 
3922 	error = shmem_mknod(idmap, dir, dentry, mode | S_IFDIR, 0);
3923 	if (error)
3924 		return ERR_PTR(error);
3925 	inc_nlink(dir);
3926 	return NULL;
3927 }
3928 
3929 static int shmem_create(struct mnt_idmap *idmap, struct inode *dir,
3930 			struct dentry *dentry, umode_t mode, bool excl)
3931 {
3932 	return shmem_mknod(idmap, dir, dentry, mode | S_IFREG, 0);
3933 }
3934 
3935 /*
3936  * Link a file..
3937  */
3938 static int shmem_link(struct dentry *old_dentry, struct inode *dir,
3939 		      struct dentry *dentry)
3940 {
3941 	struct inode *inode = d_inode(old_dentry);
3942 	int ret;
3943 
3944 	/*
3945 	 * No ordinary (disk based) filesystem counts links as inodes;
3946 	 * but each new link needs a new dentry, pinning lowmem, and
3947 	 * tmpfs dentries cannot be pruned until they are unlinked.
3948 	 * But if an O_TMPFILE file is linked into the tmpfs, the
3949 	 * first link must skip that, to get the accounting right.
3950 	 */
3951 	if (inode->i_nlink) {
3952 		ret = shmem_reserve_inode(inode->i_sb, NULL);
3953 		if (ret)
3954 			return ret;
3955 	}
3956 
3957 	ret = simple_offset_add(shmem_get_offset_ctx(dir), dentry);
3958 	if (ret) {
3959 		if (inode->i_nlink)
3960 			shmem_free_inode(inode->i_sb, 0);
3961 		return ret;
3962 	}
3963 
3964 	dir->i_size += BOGO_DIRENT_SIZE;
3965 	inode_inc_iversion(dir);
3966 	return simple_link(old_dentry, dir, dentry);
3967 }
3968 
3969 static int shmem_unlink(struct inode *dir, struct dentry *dentry)
3970 {
3971 	struct inode *inode = d_inode(dentry);
3972 
3973 	if (inode->i_nlink > 1 && !S_ISDIR(inode->i_mode))
3974 		shmem_free_inode(inode->i_sb, 0);
3975 
3976 	simple_offset_remove(shmem_get_offset_ctx(dir), dentry);
3977 
3978 	dir->i_size -= BOGO_DIRENT_SIZE;
3979 	inode_inc_iversion(dir);
3980 	simple_unlink(dir, dentry);
3981 
3982 	/*
3983 	 * For now, VFS can't deal with case-insensitive negative dentries, so
3984 	 * we invalidate them
3985 	 */
3986 	if (IS_ENABLED(CONFIG_UNICODE) && IS_CASEFOLDED(dir))
3987 		d_invalidate(dentry);
3988 
3989 	return 0;
3990 }
3991 
3992 static int shmem_rmdir(struct inode *dir, struct dentry *dentry)
3993 {
3994 	if (!simple_empty(dentry))
3995 		return -ENOTEMPTY;
3996 
3997 	drop_nlink(d_inode(dentry));
3998 	drop_nlink(dir);
3999 	return shmem_unlink(dir, dentry);
4000 }
4001 
4002 static int shmem_whiteout(struct mnt_idmap *idmap,
4003 			  struct inode *old_dir, struct dentry *old_dentry)
4004 {
4005 	struct dentry *whiteout;
4006 	int error;
4007 
4008 	whiteout = d_alloc(old_dentry->d_parent, &old_dentry->d_name);
4009 	if (!whiteout)
4010 		return -ENOMEM;
4011 	error = shmem_mknod(idmap, old_dir, whiteout,
4012 			    S_IFCHR | WHITEOUT_MODE, WHITEOUT_DEV);
4013 	dput(whiteout);
4014 	return error;
4015 }
4016 
4017 /*
4018  * The VFS layer already does all the dentry stuff for rename,
4019  * we just have to decrement the usage count for the target if
4020  * it exists so that the VFS layer correctly free's it when it
4021  * gets overwritten.
4022  */
4023 static int shmem_rename2(struct mnt_idmap *idmap,
4024 			 struct inode *old_dir, struct dentry *old_dentry,
4025 			 struct inode *new_dir, struct dentry *new_dentry,
4026 			 unsigned int flags)
4027 {
4028 	struct inode *inode = d_inode(old_dentry);
4029 	int they_are_dirs = S_ISDIR(inode->i_mode);
4030 	bool had_offset = false;
4031 	int error;
4032 
4033 	if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
4034 		return -EINVAL;
4035 
4036 	if (flags & RENAME_EXCHANGE)
4037 		return simple_offset_rename_exchange(old_dir, old_dentry,
4038 						     new_dir, new_dentry);
4039 
4040 	if (!simple_empty(new_dentry))
4041 		return -ENOTEMPTY;
4042 
4043 	error = simple_offset_add(shmem_get_offset_ctx(new_dir), new_dentry);
4044 	if (error == -EBUSY)
4045 		had_offset = true;
4046 	else if (unlikely(error))
4047 		return error;
4048 
4049 	if (flags & RENAME_WHITEOUT) {
4050 		error = shmem_whiteout(idmap, old_dir, old_dentry);
4051 		if (error) {
4052 			if (!had_offset)
4053 				simple_offset_remove(shmem_get_offset_ctx(new_dir),
4054 						     new_dentry);
4055 			return error;
4056 		}
4057 	}
4058 
4059 	simple_offset_rename(old_dir, old_dentry, new_dir, new_dentry);
4060 	if (d_really_is_positive(new_dentry)) {
4061 		(void) shmem_unlink(new_dir, new_dentry);
4062 		if (they_are_dirs) {
4063 			drop_nlink(d_inode(new_dentry));
4064 			drop_nlink(old_dir);
4065 		}
4066 	} else if (they_are_dirs) {
4067 		drop_nlink(old_dir);
4068 		inc_nlink(new_dir);
4069 	}
4070 
4071 	old_dir->i_size -= BOGO_DIRENT_SIZE;
4072 	new_dir->i_size += BOGO_DIRENT_SIZE;
4073 	simple_rename_timestamp(old_dir, old_dentry, new_dir, new_dentry);
4074 	inode_inc_iversion(old_dir);
4075 	inode_inc_iversion(new_dir);
4076 	return 0;
4077 }
4078 
4079 static int shmem_symlink(struct mnt_idmap *idmap, struct inode *dir,
4080 			 struct dentry *dentry, const char *symname)
4081 {
4082 	int error;
4083 	int len;
4084 	struct inode *inode;
4085 	struct folio *folio;
4086 	char *link;
4087 
4088 	len = strlen(symname) + 1;
4089 	if (len > PAGE_SIZE)
4090 		return -ENAMETOOLONG;
4091 
4092 	inode = shmem_get_inode(idmap, dir->i_sb, dir, S_IFLNK | 0777, 0,
4093 				mk_vma_flags(VMA_NORESERVE_BIT));
4094 	if (IS_ERR(inode))
4095 		return PTR_ERR(inode);
4096 
4097 	error = security_inode_init_security(inode, dir, &dentry->d_name,
4098 					     shmem_initxattrs, NULL);
4099 	if (error && error != -EOPNOTSUPP)
4100 		goto out_iput;
4101 
4102 	error = simple_offset_add(shmem_get_offset_ctx(dir), dentry);
4103 	if (error)
4104 		goto out_iput;
4105 
4106 	inode->i_size = len-1;
4107 	if (len <= SHORT_SYMLINK_LEN) {
4108 		link = kmemdup(symname, len, GFP_KERNEL);
4109 		if (!link) {
4110 			error = -ENOMEM;
4111 			goto out_remove_offset;
4112 		}
4113 		inode->i_op = &shmem_short_symlink_operations;
4114 		inode_set_cached_link(inode, link, len - 1);
4115 	} else {
4116 		inode_nohighmem(inode);
4117 		inode->i_mapping->a_ops = &shmem_aops;
4118 		error = shmem_get_folio(inode, 0, 0, &folio, SGP_WRITE);
4119 		if (error)
4120 			goto out_remove_offset;
4121 		inode->i_op = &shmem_symlink_inode_operations;
4122 		memcpy(folio_address(folio), symname, len);
4123 		folio_mark_uptodate(folio);
4124 		folio_mark_dirty(folio);
4125 		folio_unlock(folio);
4126 		folio_put(folio);
4127 	}
4128 	dir->i_size += BOGO_DIRENT_SIZE;
4129 	inode_set_mtime_to_ts(dir, inode_set_ctime_current(dir));
4130 	inode_inc_iversion(dir);
4131 	d_make_persistent(dentry, inode);
4132 	return 0;
4133 
4134 out_remove_offset:
4135 	simple_offset_remove(shmem_get_offset_ctx(dir), dentry);
4136 out_iput:
4137 	iput(inode);
4138 	return error;
4139 }
4140 
4141 static void shmem_put_link(void *arg)
4142 {
4143 	folio_mark_accessed(arg);
4144 	folio_put(arg);
4145 }
4146 
4147 static const char *shmem_get_link(struct dentry *dentry, struct inode *inode,
4148 				  struct delayed_call *done)
4149 {
4150 	struct folio *folio = NULL;
4151 	int error;
4152 
4153 	if (!dentry) {
4154 		folio = filemap_get_folio(inode->i_mapping, 0);
4155 		if (IS_ERR(folio))
4156 			return ERR_PTR(-ECHILD);
4157 		if (PageHWPoison(folio_page(folio, 0)) ||
4158 		    !folio_test_uptodate(folio)) {
4159 			folio_put(folio);
4160 			return ERR_PTR(-ECHILD);
4161 		}
4162 	} else {
4163 		error = shmem_get_folio(inode, 0, 0, &folio, SGP_READ);
4164 		if (error)
4165 			return ERR_PTR(error);
4166 		if (!folio)
4167 			return ERR_PTR(-ECHILD);
4168 		if (PageHWPoison(folio_page(folio, 0))) {
4169 			folio_unlock(folio);
4170 			folio_put(folio);
4171 			return ERR_PTR(-ECHILD);
4172 		}
4173 		folio_unlock(folio);
4174 	}
4175 	set_delayed_call(done, shmem_put_link, folio);
4176 	return folio_address(folio);
4177 }
4178 
4179 #ifdef CONFIG_TMPFS_XATTR
4180 
4181 static int shmem_fileattr_get(struct dentry *dentry, struct file_kattr *fa)
4182 {
4183 	struct shmem_inode_info *info = SHMEM_I(d_inode(dentry));
4184 
4185 	fileattr_fill_flags(fa, info->fsflags & SHMEM_FL_USER_VISIBLE);
4186 
4187 	return 0;
4188 }
4189 
4190 static int shmem_fileattr_set(struct mnt_idmap *idmap,
4191 			      struct dentry *dentry, struct file_kattr *fa)
4192 {
4193 	struct inode *inode = d_inode(dentry);
4194 	struct shmem_inode_info *info = SHMEM_I(inode);
4195 	int ret, flags;
4196 
4197 	if (fileattr_has_fsx(fa))
4198 		return -EOPNOTSUPP;
4199 	if (fa->flags & ~SHMEM_FL_USER_MODIFIABLE)
4200 		return -EOPNOTSUPP;
4201 
4202 	flags = (info->fsflags & ~SHMEM_FL_USER_MODIFIABLE) |
4203 		(fa->flags & SHMEM_FL_USER_MODIFIABLE);
4204 
4205 	ret = shmem_set_inode_flags(inode, flags, dentry);
4206 
4207 	if (ret)
4208 		return ret;
4209 
4210 	info->fsflags = flags;
4211 
4212 	inode_set_ctime_current(inode);
4213 	inode_inc_iversion(inode);
4214 	return 0;
4215 }
4216 
4217 /*
4218  * Superblocks without xattr inode operations may get some security.* xattr
4219  * support from the LSM "for free". As soon as we have any other xattrs
4220  * like ACLs, we also need to implement the security.* handlers at
4221  * filesystem level, though.
4222  */
4223 
4224 /*
4225  * Callback for security_inode_init_security() for acquiring xattrs.
4226  */
4227 static int shmem_initxattrs(struct inode *inode,
4228 			    const struct xattr *xattr_array, void *fs_info)
4229 {
4230 	struct shmem_inode_info *info = SHMEM_I(inode);
4231 	struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
4232 	const struct xattr *xattr;
4233 	size_t ispace = 0;
4234 
4235 	if (sbinfo->max_inodes) {
4236 		for (xattr = xattr_array; xattr->name != NULL; xattr++) {
4237 			ispace += simple_xattr_space(xattr->name,
4238 				xattr->value_len + XATTR_SECURITY_PREFIX_LEN);
4239 		}
4240 		if (ispace) {
4241 			raw_spin_lock(&sbinfo->stat_lock);
4242 			if (sbinfo->free_ispace < ispace)
4243 				ispace = 0;
4244 			else
4245 				sbinfo->free_ispace -= ispace;
4246 			raw_spin_unlock(&sbinfo->stat_lock);
4247 			if (!ispace)
4248 				return -ENOSPC;
4249 		}
4250 	}
4251 
4252 	for (xattr = xattr_array; xattr->name != NULL; xattr++) {
4253 		CLASS(simple_xattr, new_xattr)(xattr->value, xattr->value_len);
4254 		if (IS_ERR(new_xattr))
4255 			break;
4256 
4257 		new_xattr->name = kasprintf(GFP_KERNEL_ACCOUNT,
4258 					XATTR_SECURITY_PREFIX "%s", xattr->name);
4259 		if (!new_xattr->name)
4260 			break;
4261 
4262 		if (simple_xattr_add(&sbinfo->xa_cache, &info->xattrs, new_xattr))
4263 			break;
4264 
4265 		if (sbinfo->max_inodes)
4266 			ispace -= simple_xattr_space(new_xattr->name, new_xattr->size);
4267 		retain_and_null_ptr(new_xattr);
4268 	}
4269 
4270 	if (xattr->name != NULL) {
4271 		if (ispace) {
4272 			raw_spin_lock(&sbinfo->stat_lock);
4273 			sbinfo->free_ispace += ispace;
4274 			raw_spin_unlock(&sbinfo->stat_lock);
4275 		}
4276 		return -ENOMEM;
4277 	}
4278 	WARN_ON(ispace);
4279 
4280 	return 0;
4281 }
4282 
4283 static int shmem_xattr_handler_get(const struct xattr_handler *handler,
4284 				   struct dentry *unused, struct inode *inode,
4285 				   const char *name, void *buffer, size_t size)
4286 {
4287 	struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
4288 	struct shmem_inode_info *info = SHMEM_I(inode);
4289 
4290 	name = xattr_full_name(handler, name);
4291 	return simple_xattr_get(&sbinfo->xa_cache, &info->xattrs, name, buffer, size);
4292 }
4293 
4294 static int shmem_xattr_handler_set(const struct xattr_handler *handler,
4295 				   struct mnt_idmap *idmap,
4296 				   struct dentry *unused, struct inode *inode,
4297 				   const char *name, const void *value,
4298 				   size_t size, int flags)
4299 {
4300 	struct shmem_inode_info *info = SHMEM_I(inode);
4301 	struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
4302 	struct simple_xattr *old_xattr;
4303 	size_t ispace = 0;
4304 
4305 	name = xattr_full_name(handler, name);
4306 
4307 	if (value && sbinfo->max_inodes) {
4308 		ispace = simple_xattr_space(name, size);
4309 		raw_spin_lock(&sbinfo->stat_lock);
4310 		if (sbinfo->free_ispace < ispace)
4311 			ispace = 0;
4312 		else
4313 			sbinfo->free_ispace -= ispace;
4314 		raw_spin_unlock(&sbinfo->stat_lock);
4315 		if (!ispace)
4316 			return -ENOSPC;
4317 	}
4318 
4319 	old_xattr = simple_xattr_set(&sbinfo->xa_cache, &info->xattrs, name, value, size, flags);
4320 	if (!IS_ERR(old_xattr)) {
4321 		ispace = 0;
4322 		if (old_xattr && sbinfo->max_inodes)
4323 			ispace = simple_xattr_space(old_xattr->name,
4324 						    old_xattr->size);
4325 		simple_xattr_free_rcu(old_xattr);
4326 		old_xattr = NULL;
4327 		inode_set_ctime_current(inode);
4328 		inode_inc_iversion(inode);
4329 	}
4330 	if (ispace) {
4331 		raw_spin_lock(&sbinfo->stat_lock);
4332 		sbinfo->free_ispace += ispace;
4333 		raw_spin_unlock(&sbinfo->stat_lock);
4334 	}
4335 	return PTR_ERR(old_xattr);
4336 }
4337 
4338 static const struct xattr_handler shmem_security_xattr_handler = {
4339 	.prefix = XATTR_SECURITY_PREFIX,
4340 	.get = shmem_xattr_handler_get,
4341 	.set = shmem_xattr_handler_set,
4342 };
4343 
4344 static const struct xattr_handler shmem_trusted_xattr_handler = {
4345 	.prefix = XATTR_TRUSTED_PREFIX,
4346 	.get = shmem_xattr_handler_get,
4347 	.set = shmem_xattr_handler_set,
4348 };
4349 
4350 static const struct xattr_handler shmem_user_xattr_handler = {
4351 	.prefix = XATTR_USER_PREFIX,
4352 	.get = shmem_xattr_handler_get,
4353 	.set = shmem_xattr_handler_set,
4354 };
4355 
4356 static const struct xattr_handler * const shmem_xattr_handlers[] = {
4357 	&shmem_security_xattr_handler,
4358 	&shmem_trusted_xattr_handler,
4359 	&shmem_user_xattr_handler,
4360 	NULL
4361 };
4362 
4363 static ssize_t shmem_listxattr(struct dentry *dentry, char *buffer, size_t size)
4364 {
4365 	struct shmem_inode_info *info = SHMEM_I(d_inode(dentry));
4366 
4367 	return simple_xattr_list(d_inode(dentry), &info->xattrs, buffer, size);
4368 }
4369 #endif /* CONFIG_TMPFS_XATTR */
4370 
4371 static const struct inode_operations shmem_short_symlink_operations = {
4372 	.getattr	= shmem_getattr,
4373 	.setattr	= shmem_setattr,
4374 	.get_link	= simple_get_link,
4375 #ifdef CONFIG_TMPFS_XATTR
4376 	.listxattr	= shmem_listxattr,
4377 #endif
4378 };
4379 
4380 static const struct inode_operations shmem_symlink_inode_operations = {
4381 	.getattr	= shmem_getattr,
4382 	.setattr	= shmem_setattr,
4383 	.get_link	= shmem_get_link,
4384 #ifdef CONFIG_TMPFS_XATTR
4385 	.listxattr	= shmem_listxattr,
4386 #endif
4387 };
4388 
4389 static struct dentry *shmem_get_parent(struct dentry *child)
4390 {
4391 	return ERR_PTR(-ESTALE);
4392 }
4393 
4394 static int shmem_match(struct inode *ino, void *vfh)
4395 {
4396 	__u32 *fh = vfh;
4397 	__u64 inum = fh[2];
4398 	inum = (inum << 32) | fh[1];
4399 	return ino->i_ino == inum && fh[0] == ino->i_generation;
4400 }
4401 
4402 /* Find any alias of inode, but prefer a hashed alias */
4403 static struct dentry *shmem_find_alias(struct inode *inode)
4404 {
4405 	struct dentry *alias = d_find_alias(inode);
4406 
4407 	return alias ?: d_find_any_alias(inode);
4408 }
4409 
4410 static struct dentry *shmem_fh_to_dentry(struct super_block *sb,
4411 		struct fid *fid, int fh_len, int fh_type)
4412 {
4413 	struct inode *inode;
4414 	struct dentry *dentry = NULL;
4415 	u64 inum;
4416 
4417 	if (fh_len < 3)
4418 		return NULL;
4419 
4420 	inum = fid->raw[2];
4421 	inum = (inum << 32) | fid->raw[1];
4422 
4423 	inode = ilookup5(sb, (unsigned long)(inum + fid->raw[0]),
4424 			shmem_match, fid->raw);
4425 	if (inode) {
4426 		dentry = shmem_find_alias(inode);
4427 		iput(inode);
4428 	}
4429 
4430 	return dentry;
4431 }
4432 
4433 static int shmem_encode_fh(struct inode *inode, __u32 *fh, int *len,
4434 				struct inode *parent)
4435 {
4436 	if (*len < 3) {
4437 		*len = 3;
4438 		return FILEID_INVALID;
4439 	}
4440 
4441 	if (inode_unhashed(inode)) {
4442 		/* Unfortunately insert_inode_hash is not idempotent,
4443 		 * so as we hash inodes here rather than at creation
4444 		 * time, we need a lock to ensure we only try
4445 		 * to do it once
4446 		 */
4447 		static DEFINE_SPINLOCK(lock);
4448 		spin_lock(&lock);
4449 		if (inode_unhashed(inode))
4450 			__insert_inode_hash(inode,
4451 					    inode->i_ino + inode->i_generation);
4452 		spin_unlock(&lock);
4453 	}
4454 
4455 	fh[0] = inode->i_generation;
4456 	fh[1] = inode->i_ino;
4457 	fh[2] = ((__u64)inode->i_ino) >> 32;
4458 
4459 	*len = 3;
4460 	return 1;
4461 }
4462 
4463 static const struct export_operations shmem_export_ops = {
4464 	.get_parent     = shmem_get_parent,
4465 	.encode_fh      = shmem_encode_fh,
4466 	.fh_to_dentry	= shmem_fh_to_dentry,
4467 };
4468 
4469 enum shmem_param {
4470 	Opt_gid,
4471 	Opt_huge,
4472 	Opt_mode,
4473 	Opt_mpol,
4474 	Opt_nr_blocks,
4475 	Opt_nr_inodes,
4476 	Opt_size,
4477 	Opt_uid,
4478 	Opt_inode32,
4479 	Opt_inode64,
4480 	Opt_noswap,
4481 	Opt_quota,
4482 	Opt_usrquota,
4483 	Opt_grpquota,
4484 	Opt_usrquota_block_hardlimit,
4485 	Opt_usrquota_inode_hardlimit,
4486 	Opt_grpquota_block_hardlimit,
4487 	Opt_grpquota_inode_hardlimit,
4488 	Opt_casefold_version,
4489 	Opt_casefold,
4490 	Opt_strict_encoding,
4491 };
4492 
4493 static const struct constant_table shmem_param_enums_huge[] = {
4494 	{"never",	SHMEM_HUGE_NEVER },
4495 	{"always",	SHMEM_HUGE_ALWAYS },
4496 	{"within_size",	SHMEM_HUGE_WITHIN_SIZE },
4497 	{"advise",	SHMEM_HUGE_ADVISE },
4498 	{}
4499 };
4500 
4501 const struct fs_parameter_spec shmem_fs_parameters[] = {
4502 	fsparam_gid   ("gid",		Opt_gid),
4503 	fsparam_enum  ("huge",		Opt_huge,  shmem_param_enums_huge),
4504 	fsparam_u32oct("mode",		Opt_mode),
4505 	fsparam_string("mpol",		Opt_mpol),
4506 	fsparam_string("nr_blocks",	Opt_nr_blocks),
4507 	fsparam_string("nr_inodes",	Opt_nr_inodes),
4508 	fsparam_string("size",		Opt_size),
4509 	fsparam_uid   ("uid",		Opt_uid),
4510 	fsparam_flag  ("inode32",	Opt_inode32),
4511 	fsparam_flag  ("inode64",	Opt_inode64),
4512 	fsparam_flag  ("noswap",	Opt_noswap),
4513 #ifdef CONFIG_TMPFS_QUOTA
4514 	fsparam_flag  ("quota",		Opt_quota),
4515 	fsparam_flag  ("usrquota",	Opt_usrquota),
4516 	fsparam_flag  ("grpquota",	Opt_grpquota),
4517 	fsparam_string("usrquota_block_hardlimit", Opt_usrquota_block_hardlimit),
4518 	fsparam_string("usrquota_inode_hardlimit", Opt_usrquota_inode_hardlimit),
4519 	fsparam_string("grpquota_block_hardlimit", Opt_grpquota_block_hardlimit),
4520 	fsparam_string("grpquota_inode_hardlimit", Opt_grpquota_inode_hardlimit),
4521 #endif
4522 	fsparam_string("casefold",	Opt_casefold_version),
4523 	fsparam_flag  ("casefold",	Opt_casefold),
4524 	fsparam_flag  ("strict_encoding", Opt_strict_encoding),
4525 	{}
4526 };
4527 
4528 #if IS_ENABLED(CONFIG_UNICODE)
4529 static int shmem_parse_opt_casefold(struct fs_context *fc, struct fs_parameter *param,
4530 				    bool latest_version)
4531 {
4532 	struct shmem_options *ctx = fc->fs_private;
4533 	int version = UTF8_LATEST;
4534 	struct unicode_map *encoding;
4535 	char *version_str = param->string + 5;
4536 
4537 	if (!latest_version) {
4538 		if (strncmp(param->string, "utf8-", 5))
4539 			return invalfc(fc, "Only UTF-8 encodings are supported "
4540 				       "in the format: utf8-<version number>");
4541 
4542 		version = utf8_parse_version(version_str);
4543 		if (version < 0)
4544 			return invalfc(fc, "Invalid UTF-8 version: %s", version_str);
4545 	}
4546 
4547 	encoding = utf8_load(version);
4548 
4549 	if (IS_ERR(encoding)) {
4550 		return invalfc(fc, "Failed loading UTF-8 version: utf8-%u.%u.%u\n",
4551 			       unicode_major(version), unicode_minor(version),
4552 			       unicode_rev(version));
4553 	}
4554 
4555 	pr_info("tmpfs: Using encoding : utf8-%u.%u.%u\n",
4556 		unicode_major(version), unicode_minor(version), unicode_rev(version));
4557 
4558 	ctx->encoding = encoding;
4559 
4560 	return 0;
4561 }
4562 #else
4563 static int shmem_parse_opt_casefold(struct fs_context *fc, struct fs_parameter *param,
4564 				    bool latest_version)
4565 {
4566 	return invalfc(fc, "tmpfs: Kernel not built with CONFIG_UNICODE\n");
4567 }
4568 #endif
4569 
4570 static int shmem_parse_one(struct fs_context *fc, struct fs_parameter *param)
4571 {
4572 	struct shmem_options *ctx = fc->fs_private;
4573 	struct fs_parse_result result;
4574 	unsigned long long size;
4575 	char *rest;
4576 	int opt;
4577 	kuid_t kuid;
4578 	kgid_t kgid;
4579 
4580 	opt = fs_parse(fc, shmem_fs_parameters, param, &result);
4581 	if (opt < 0)
4582 		return opt;
4583 
4584 	switch (opt) {
4585 	case Opt_size:
4586 		size = memparse(param->string, &rest);
4587 		if (*rest == '%') {
4588 			size <<= PAGE_SHIFT;
4589 			size *= totalram_pages();
4590 			do_div(size, 100);
4591 			rest++;
4592 		}
4593 		if (*rest)
4594 			goto bad_value;
4595 		ctx->blocks = DIV_ROUND_UP(size, PAGE_SIZE);
4596 		ctx->seen |= SHMEM_SEEN_BLOCKS;
4597 		break;
4598 	case Opt_nr_blocks:
4599 		ctx->blocks = memparse(param->string, &rest);
4600 		if (*rest || ctx->blocks > LONG_MAX)
4601 			goto bad_value;
4602 		ctx->seen |= SHMEM_SEEN_BLOCKS;
4603 		break;
4604 	case Opt_nr_inodes:
4605 		ctx->inodes = memparse(param->string, &rest);
4606 		if (*rest || ctx->inodes > ULONG_MAX / BOGO_INODE_SIZE)
4607 			goto bad_value;
4608 		ctx->seen |= SHMEM_SEEN_INODES;
4609 		break;
4610 	case Opt_mode:
4611 		ctx->mode = result.uint_32 & 07777;
4612 		break;
4613 	case Opt_uid:
4614 		kuid = result.uid;
4615 
4616 		/*
4617 		 * The requested uid must be representable in the
4618 		 * filesystem's idmapping.
4619 		 */
4620 		if (!kuid_has_mapping(fc->user_ns, kuid))
4621 			goto bad_value;
4622 
4623 		ctx->uid = kuid;
4624 		break;
4625 	case Opt_gid:
4626 		kgid = result.gid;
4627 
4628 		/*
4629 		 * The requested gid must be representable in the
4630 		 * filesystem's idmapping.
4631 		 */
4632 		if (!kgid_has_mapping(fc->user_ns, kgid))
4633 			goto bad_value;
4634 
4635 		ctx->gid = kgid;
4636 		break;
4637 	case Opt_huge:
4638 		ctx->huge = result.uint_32;
4639 		if (ctx->huge != SHMEM_HUGE_NEVER &&
4640 		    !(IS_ENABLED(CONFIG_TRANSPARENT_HUGEPAGE) &&
4641 		      has_transparent_hugepage()))
4642 			goto unsupported_parameter;
4643 		ctx->seen |= SHMEM_SEEN_HUGE;
4644 		break;
4645 	case Opt_mpol:
4646 		if (IS_ENABLED(CONFIG_NUMA)) {
4647 			mpol_put(ctx->mpol);
4648 			ctx->mpol = NULL;
4649 			if (mpol_parse_str(param->string, &ctx->mpol))
4650 				goto bad_value;
4651 			break;
4652 		}
4653 		goto unsupported_parameter;
4654 	case Opt_inode32:
4655 		ctx->full_inums = false;
4656 		ctx->seen |= SHMEM_SEEN_INUMS;
4657 		break;
4658 	case Opt_inode64:
4659 		if (sizeof(ino_t) < 8) {
4660 			return invalfc(fc,
4661 				       "Cannot use inode64 with <64bit inums in kernel\n");
4662 		}
4663 		ctx->full_inums = true;
4664 		ctx->seen |= SHMEM_SEEN_INUMS;
4665 		break;
4666 	case Opt_noswap:
4667 		if ((fc->user_ns != &init_user_ns) || !capable(CAP_SYS_ADMIN)) {
4668 			return invalfc(fc,
4669 				       "Turning off swap in unprivileged tmpfs mounts unsupported");
4670 		}
4671 		ctx->noswap = true;
4672 		break;
4673 	case Opt_quota:
4674 		if (fc->user_ns != &init_user_ns)
4675 			return invalfc(fc, "Quotas in unprivileged tmpfs mounts are unsupported");
4676 		ctx->seen |= SHMEM_SEEN_QUOTA;
4677 		ctx->quota_types |= (QTYPE_MASK_USR | QTYPE_MASK_GRP);
4678 		break;
4679 	case Opt_usrquota:
4680 		if (fc->user_ns != &init_user_ns)
4681 			return invalfc(fc, "Quotas in unprivileged tmpfs mounts are unsupported");
4682 		ctx->seen |= SHMEM_SEEN_QUOTA;
4683 		ctx->quota_types |= QTYPE_MASK_USR;
4684 		break;
4685 	case Opt_grpquota:
4686 		if (fc->user_ns != &init_user_ns)
4687 			return invalfc(fc, "Quotas in unprivileged tmpfs mounts are unsupported");
4688 		ctx->seen |= SHMEM_SEEN_QUOTA;
4689 		ctx->quota_types |= QTYPE_MASK_GRP;
4690 		break;
4691 	case Opt_usrquota_block_hardlimit:
4692 		size = memparse(param->string, &rest);
4693 		if (*rest || !size)
4694 			goto bad_value;
4695 		if (size > SHMEM_QUOTA_MAX_SPC_LIMIT)
4696 			return invalfc(fc,
4697 				       "User quota block hardlimit too large.");
4698 		ctx->qlimits.usrquota_bhardlimit = size;
4699 		break;
4700 	case Opt_grpquota_block_hardlimit:
4701 		size = memparse(param->string, &rest);
4702 		if (*rest || !size)
4703 			goto bad_value;
4704 		if (size > SHMEM_QUOTA_MAX_SPC_LIMIT)
4705 			return invalfc(fc,
4706 				       "Group quota block hardlimit too large.");
4707 		ctx->qlimits.grpquota_bhardlimit = size;
4708 		break;
4709 	case Opt_usrquota_inode_hardlimit:
4710 		size = memparse(param->string, &rest);
4711 		if (*rest || !size)
4712 			goto bad_value;
4713 		if (size > SHMEM_QUOTA_MAX_INO_LIMIT)
4714 			return invalfc(fc,
4715 				       "User quota inode hardlimit too large.");
4716 		ctx->qlimits.usrquota_ihardlimit = size;
4717 		break;
4718 	case Opt_grpquota_inode_hardlimit:
4719 		size = memparse(param->string, &rest);
4720 		if (*rest || !size)
4721 			goto bad_value;
4722 		if (size > SHMEM_QUOTA_MAX_INO_LIMIT)
4723 			return invalfc(fc,
4724 				       "Group quota inode hardlimit too large.");
4725 		ctx->qlimits.grpquota_ihardlimit = size;
4726 		break;
4727 	case Opt_casefold_version:
4728 		return shmem_parse_opt_casefold(fc, param, false);
4729 	case Opt_casefold:
4730 		return shmem_parse_opt_casefold(fc, param, true);
4731 	case Opt_strict_encoding:
4732 #if IS_ENABLED(CONFIG_UNICODE)
4733 		ctx->strict_encoding = true;
4734 		break;
4735 #else
4736 		return invalfc(fc, "tmpfs: Kernel not built with CONFIG_UNICODE\n");
4737 #endif
4738 	}
4739 	return 0;
4740 
4741 unsupported_parameter:
4742 	return invalfc(fc, "Unsupported parameter '%s'", param->key);
4743 bad_value:
4744 	return invalfc(fc, "Bad value for '%s'", param->key);
4745 }
4746 
4747 static char *shmem_next_opt(char **s)
4748 {
4749 	char *sbegin = *s;
4750 	char *p;
4751 
4752 	if (sbegin == NULL)
4753 		return NULL;
4754 
4755 	/*
4756 	 * NUL-terminate this option: unfortunately,
4757 	 * mount options form a comma-separated list,
4758 	 * but mpol's nodelist may also contain commas.
4759 	 */
4760 	for (;;) {
4761 		p = strchr(*s, ',');
4762 		if (p == NULL)
4763 			break;
4764 		*s = p + 1;
4765 		if (!isdigit(*(p+1))) {
4766 			*p = '\0';
4767 			return sbegin;
4768 		}
4769 	}
4770 
4771 	*s = NULL;
4772 	return sbegin;
4773 }
4774 
4775 static int shmem_parse_monolithic(struct fs_context *fc, void *data)
4776 {
4777 	return vfs_parse_monolithic_sep(fc, data, shmem_next_opt);
4778 }
4779 
4780 /*
4781  * Reconfigure a shmem filesystem.
4782  */
4783 static int shmem_reconfigure(struct fs_context *fc)
4784 {
4785 	struct shmem_options *ctx = fc->fs_private;
4786 	struct shmem_sb_info *sbinfo = SHMEM_SB(fc->root->d_sb);
4787 	unsigned long used_isp;
4788 	struct mempolicy *mpol = NULL;
4789 	const char *err;
4790 
4791 	raw_spin_lock(&sbinfo->stat_lock);
4792 	used_isp = sbinfo->max_inodes * BOGO_INODE_SIZE - sbinfo->free_ispace;
4793 
4794 	if ((ctx->seen & SHMEM_SEEN_BLOCKS) && ctx->blocks) {
4795 		if (!sbinfo->max_blocks) {
4796 			err = "Cannot retroactively limit size";
4797 			goto out;
4798 		}
4799 		if (percpu_counter_compare(&sbinfo->used_blocks,
4800 					   ctx->blocks) > 0) {
4801 			err = "Too small a size for current use";
4802 			goto out;
4803 		}
4804 	}
4805 	if ((ctx->seen & SHMEM_SEEN_INODES) && ctx->inodes) {
4806 		if (!sbinfo->max_inodes) {
4807 			err = "Cannot retroactively limit inodes";
4808 			goto out;
4809 		}
4810 		if (ctx->inodes * BOGO_INODE_SIZE < used_isp) {
4811 			err = "Too few inodes for current use";
4812 			goto out;
4813 		}
4814 	}
4815 
4816 	if ((ctx->seen & SHMEM_SEEN_INUMS) && !ctx->full_inums &&
4817 	    sbinfo->next_ino > UINT_MAX) {
4818 		err = "Current inum too high to switch to 32-bit inums";
4819 		goto out;
4820 	}
4821 
4822 	/*
4823 	 * "noswap" doesn't use fsparam_flag_no, i.e. there's no "swap"
4824 	 * counterpart for (re-)enabling swap.
4825 	 */
4826 	if (ctx->noswap && !sbinfo->noswap) {
4827 		err = "Cannot disable swap on remount";
4828 		goto out;
4829 	}
4830 
4831 	if (ctx->seen & SHMEM_SEEN_QUOTA &&
4832 	    !sb_any_quota_loaded(fc->root->d_sb)) {
4833 		err = "Cannot enable quota on remount";
4834 		goto out;
4835 	}
4836 
4837 #ifdef CONFIG_TMPFS_QUOTA
4838 #define CHANGED_LIMIT(name)						\
4839 	(ctx->qlimits.name## hardlimit &&				\
4840 	(ctx->qlimits.name## hardlimit != sbinfo->qlimits.name## hardlimit))
4841 
4842 	if (CHANGED_LIMIT(usrquota_b) || CHANGED_LIMIT(usrquota_i) ||
4843 	    CHANGED_LIMIT(grpquota_b) || CHANGED_LIMIT(grpquota_i)) {
4844 		err = "Cannot change global quota limit on remount";
4845 		goto out;
4846 	}
4847 #endif /* CONFIG_TMPFS_QUOTA */
4848 
4849 	if (ctx->seen & SHMEM_SEEN_HUGE)
4850 		sbinfo->huge = ctx->huge;
4851 	if (ctx->seen & SHMEM_SEEN_INUMS)
4852 		sbinfo->full_inums = ctx->full_inums;
4853 	if (ctx->seen & SHMEM_SEEN_BLOCKS)
4854 		sbinfo->max_blocks  = ctx->blocks;
4855 	if (ctx->seen & SHMEM_SEEN_INODES) {
4856 		sbinfo->max_inodes  = ctx->inodes;
4857 		sbinfo->free_ispace = ctx->inodes * BOGO_INODE_SIZE - used_isp;
4858 	}
4859 
4860 	/*
4861 	 * Preserve previous mempolicy unless mpol remount option was specified.
4862 	 */
4863 	if (ctx->mpol) {
4864 		mpol = sbinfo->mpol;
4865 		sbinfo->mpol = ctx->mpol;	/* transfers initial ref */
4866 		ctx->mpol = NULL;
4867 	}
4868 
4869 	if (ctx->noswap)
4870 		sbinfo->noswap = true;
4871 
4872 	raw_spin_unlock(&sbinfo->stat_lock);
4873 	mpol_put(mpol);
4874 	return 0;
4875 out:
4876 	raw_spin_unlock(&sbinfo->stat_lock);
4877 	return invalfc(fc, "%s", err);
4878 }
4879 
4880 static int shmem_show_options(struct seq_file *seq, struct dentry *root)
4881 {
4882 	struct shmem_sb_info *sbinfo = SHMEM_SB(root->d_sb);
4883 	struct mempolicy *mpol;
4884 
4885 	if (sbinfo->max_blocks != shmem_default_max_blocks())
4886 		seq_printf(seq, ",size=%luk", K(sbinfo->max_blocks));
4887 	if (sbinfo->max_inodes != shmem_default_max_inodes())
4888 		seq_printf(seq, ",nr_inodes=%lu", sbinfo->max_inodes);
4889 	if (sbinfo->mode != (0777 | S_ISVTX))
4890 		seq_printf(seq, ",mode=%03ho", sbinfo->mode);
4891 	if (!uid_eq(sbinfo->uid, GLOBAL_ROOT_UID))
4892 		seq_printf(seq, ",uid=%u",
4893 				from_kuid_munged(&init_user_ns, sbinfo->uid));
4894 	if (!gid_eq(sbinfo->gid, GLOBAL_ROOT_GID))
4895 		seq_printf(seq, ",gid=%u",
4896 				from_kgid_munged(&init_user_ns, sbinfo->gid));
4897 
4898 	/*
4899 	 * Showing inode{64,32} might be useful even if it's the system default,
4900 	 * since then people don't have to resort to checking both here and
4901 	 * /proc/config.gz to confirm 64-bit inums were successfully applied
4902 	 * (which may not even exist if IKCONFIG_PROC isn't enabled).
4903 	 *
4904 	 * We hide it when inode64 isn't the default and we are using 32-bit
4905 	 * inodes, since that probably just means the feature isn't even under
4906 	 * consideration.
4907 	 *
4908 	 * As such:
4909 	 *
4910 	 *                     +-----------------+-----------------+
4911 	 *                     | TMPFS_INODE64=y | TMPFS_INODE64=n |
4912 	 *  +------------------+-----------------+-----------------+
4913 	 *  | full_inums=true  | show            | show            |
4914 	 *  | full_inums=false | show            | hide            |
4915 	 *  +------------------+-----------------+-----------------+
4916 	 *
4917 	 */
4918 	if (IS_ENABLED(CONFIG_TMPFS_INODE64) || sbinfo->full_inums)
4919 		seq_printf(seq, ",inode%d", (sbinfo->full_inums ? 64 : 32));
4920 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
4921 	/* Rightly or wrongly, show huge mount option unmasked by shmem_huge */
4922 	if (sbinfo->huge)
4923 		seq_printf(seq, ",huge=%s", shmem_format_huge(sbinfo->huge));
4924 #endif
4925 	mpol = shmem_get_sbmpol(sbinfo);
4926 	shmem_show_mpol(seq, mpol);
4927 	mpol_put(mpol);
4928 	if (sbinfo->noswap)
4929 		seq_printf(seq, ",noswap");
4930 #ifdef CONFIG_TMPFS_QUOTA
4931 	if (sb_has_quota_active(root->d_sb, USRQUOTA))
4932 		seq_printf(seq, ",usrquota");
4933 	if (sb_has_quota_active(root->d_sb, GRPQUOTA))
4934 		seq_printf(seq, ",grpquota");
4935 	if (sbinfo->qlimits.usrquota_bhardlimit)
4936 		seq_printf(seq, ",usrquota_block_hardlimit=%lld",
4937 			   sbinfo->qlimits.usrquota_bhardlimit);
4938 	if (sbinfo->qlimits.grpquota_bhardlimit)
4939 		seq_printf(seq, ",grpquota_block_hardlimit=%lld",
4940 			   sbinfo->qlimits.grpquota_bhardlimit);
4941 	if (sbinfo->qlimits.usrquota_ihardlimit)
4942 		seq_printf(seq, ",usrquota_inode_hardlimit=%lld",
4943 			   sbinfo->qlimits.usrquota_ihardlimit);
4944 	if (sbinfo->qlimits.grpquota_ihardlimit)
4945 		seq_printf(seq, ",grpquota_inode_hardlimit=%lld",
4946 			   sbinfo->qlimits.grpquota_ihardlimit);
4947 #endif
4948 	return 0;
4949 }
4950 
4951 #endif /* CONFIG_TMPFS */
4952 
4953 static void shmem_put_super(struct super_block *sb)
4954 {
4955 	struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
4956 
4957 #if IS_ENABLED(CONFIG_UNICODE)
4958 	if (sb->s_encoding)
4959 		utf8_unload(sb->s_encoding);
4960 #endif
4961 
4962 #ifdef CONFIG_TMPFS_QUOTA
4963 	shmem_disable_quotas(sb);
4964 #endif
4965 	free_percpu(sbinfo->ino_batch);
4966 	percpu_counter_destroy(&sbinfo->used_blocks);
4967 	mpol_put(sbinfo->mpol);
4968 #ifdef CONFIG_TMPFS_XATTR
4969 	simple_xattr_cache_cleanup(&sbinfo->xa_cache);
4970 #endif
4971 	kfree(sbinfo);
4972 	sb->s_fs_info = NULL;
4973 }
4974 
4975 #if IS_ENABLED(CONFIG_UNICODE) && defined(CONFIG_TMPFS)
4976 static const struct dentry_operations shmem_ci_dentry_ops = {
4977 	.d_hash = generic_ci_d_hash,
4978 	.d_compare = generic_ci_d_compare,
4979 };
4980 #endif
4981 
4982 static int shmem_fill_super(struct super_block *sb, struct fs_context *fc)
4983 {
4984 	struct shmem_options *ctx = fc->fs_private;
4985 	struct inode *inode;
4986 	struct shmem_sb_info *sbinfo;
4987 	int error = -ENOMEM;
4988 
4989 	/* Round up to L1_CACHE_BYTES to resist false sharing */
4990 	sbinfo = kzalloc(max((int)sizeof(struct shmem_sb_info),
4991 				L1_CACHE_BYTES), GFP_KERNEL);
4992 	if (!sbinfo)
4993 		return error;
4994 
4995 	sb->s_fs_info = sbinfo;
4996 
4997 #ifdef CONFIG_TMPFS
4998 	/*
4999 	 * Per default we only allow half of the physical ram per
5000 	 * tmpfs instance, limiting inodes to one per page of lowmem;
5001 	 * but the internal instance is left unlimited.
5002 	 */
5003 	if (!(sb->s_flags & SB_KERNMOUNT)) {
5004 		if (!(ctx->seen & SHMEM_SEEN_BLOCKS))
5005 			ctx->blocks = shmem_default_max_blocks();
5006 		if (!(ctx->seen & SHMEM_SEEN_INODES))
5007 			ctx->inodes = shmem_default_max_inodes();
5008 		if (!(ctx->seen & SHMEM_SEEN_INUMS))
5009 			ctx->full_inums = IS_ENABLED(CONFIG_TMPFS_INODE64);
5010 		sbinfo->noswap = ctx->noswap;
5011 	} else {
5012 		sb->s_flags |= SB_NOUSER;
5013 	}
5014 	sb->s_export_op = &shmem_export_ops;
5015 	sb->s_flags |= SB_NOSEC;
5016 
5017 #if IS_ENABLED(CONFIG_UNICODE)
5018 	if (!ctx->encoding && ctx->strict_encoding) {
5019 		pr_err("tmpfs: strict_encoding option without encoding is forbidden\n");
5020 		error = -EINVAL;
5021 		goto failed;
5022 	}
5023 
5024 	if (ctx->encoding) {
5025 		sb->s_encoding = ctx->encoding;
5026 		set_default_d_op(sb, &shmem_ci_dentry_ops);
5027 		if (ctx->strict_encoding)
5028 			sb->s_encoding_flags = SB_ENC_STRICT_MODE_FL;
5029 	}
5030 #endif
5031 
5032 #else
5033 	sb->s_flags |= SB_NOUSER;
5034 #endif /* CONFIG_TMPFS */
5035 	sb->s_d_flags |= DCACHE_DONTCACHE;
5036 	sbinfo->max_blocks = ctx->blocks;
5037 	sbinfo->max_inodes = ctx->inodes;
5038 	sbinfo->free_ispace = sbinfo->max_inodes * BOGO_INODE_SIZE;
5039 	if (sb->s_flags & SB_KERNMOUNT) {
5040 		sbinfo->ino_batch = alloc_percpu(ino_t);
5041 		if (!sbinfo->ino_batch)
5042 			goto failed;
5043 	}
5044 	sbinfo->uid = ctx->uid;
5045 	sbinfo->gid = ctx->gid;
5046 	sbinfo->full_inums = ctx->full_inums;
5047 	sbinfo->mode = ctx->mode;
5048 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
5049 	if (ctx->seen & SHMEM_SEEN_HUGE)
5050 		sbinfo->huge = ctx->huge;
5051 	else
5052 		sbinfo->huge = tmpfs_huge;
5053 #endif
5054 	sbinfo->mpol = ctx->mpol;
5055 	ctx->mpol = NULL;
5056 
5057 	raw_spin_lock_init(&sbinfo->stat_lock);
5058 	if (percpu_counter_init(&sbinfo->used_blocks, 0, GFP_KERNEL))
5059 		goto failed;
5060 	spin_lock_init(&sbinfo->shrinklist_lock);
5061 	INIT_LIST_HEAD(&sbinfo->shrinklist);
5062 
5063 	sb->s_maxbytes = MAX_LFS_FILESIZE;
5064 	sb->s_blocksize = PAGE_SIZE;
5065 	sb->s_blocksize_bits = PAGE_SHIFT;
5066 	sb->s_magic = TMPFS_MAGIC;
5067 	sb->s_op = &shmem_ops;
5068 	sb->s_time_gran = 1;
5069 #ifdef CONFIG_TMPFS_XATTR
5070 	sb->s_xattr = shmem_xattr_handlers;
5071 #endif
5072 #ifdef CONFIG_TMPFS_POSIX_ACL
5073 	sb->s_flags |= SB_POSIXACL;
5074 #endif
5075 	uuid_t uuid;
5076 	uuid_gen(&uuid);
5077 	super_set_uuid(sb, uuid.b, sizeof(uuid));
5078 
5079 #ifdef CONFIG_TMPFS_QUOTA
5080 	if (ctx->seen & SHMEM_SEEN_QUOTA) {
5081 		sb->dq_op = &shmem_quota_operations;
5082 		sb->s_qcop = &dquot_quotactl_sysfile_ops;
5083 		sb->s_quota_types = QTYPE_MASK_USR | QTYPE_MASK_GRP;
5084 
5085 		/* Copy the default limits from ctx into sbinfo */
5086 		memcpy(&sbinfo->qlimits, &ctx->qlimits,
5087 		       sizeof(struct shmem_quota_limits));
5088 
5089 		if (shmem_enable_quotas(sb, ctx->quota_types))
5090 			goto failed;
5091 	}
5092 #endif /* CONFIG_TMPFS_QUOTA */
5093 
5094 	inode = shmem_get_inode(&nop_mnt_idmap, sb, NULL,
5095 				S_IFDIR | sbinfo->mode, 0,
5096 				mk_vma_flags(VMA_NORESERVE_BIT));
5097 	if (IS_ERR(inode)) {
5098 		error = PTR_ERR(inode);
5099 		goto failed;
5100 	}
5101 	inode->i_uid = sbinfo->uid;
5102 	inode->i_gid = sbinfo->gid;
5103 	sb->s_root = d_make_root(inode);
5104 	if (!sb->s_root)
5105 		goto failed;
5106 	return 0;
5107 
5108 failed:
5109 	shmem_put_super(sb);
5110 	return error;
5111 }
5112 
5113 static int shmem_get_tree(struct fs_context *fc)
5114 {
5115 	return get_tree_nodev(fc, shmem_fill_super);
5116 }
5117 
5118 static void shmem_free_fc(struct fs_context *fc)
5119 {
5120 	struct shmem_options *ctx = fc->fs_private;
5121 
5122 	if (ctx) {
5123 		mpol_put(ctx->mpol);
5124 		kfree(ctx);
5125 	}
5126 }
5127 
5128 static const struct fs_context_operations shmem_fs_context_ops = {
5129 	.free			= shmem_free_fc,
5130 	.get_tree		= shmem_get_tree,
5131 #ifdef CONFIG_TMPFS
5132 	.parse_monolithic	= shmem_parse_monolithic,
5133 	.parse_param		= shmem_parse_one,
5134 	.reconfigure		= shmem_reconfigure,
5135 #endif
5136 };
5137 
5138 static struct kmem_cache *shmem_inode_cachep __ro_after_init;
5139 
5140 static struct inode *shmem_alloc_inode(struct super_block *sb)
5141 {
5142 	struct shmem_inode_info *info;
5143 	info = alloc_inode_sb(sb, shmem_inode_cachep, GFP_KERNEL);
5144 	if (!info)
5145 		return NULL;
5146 	return &info->vfs_inode;
5147 }
5148 
5149 static void shmem_free_in_core_inode(struct inode *inode)
5150 {
5151 	if (S_ISLNK(inode->i_mode))
5152 		kfree(inode->i_link);
5153 	kmem_cache_free(shmem_inode_cachep, SHMEM_I(inode));
5154 }
5155 
5156 static void shmem_destroy_inode(struct inode *inode)
5157 {
5158 	if (S_ISREG(inode->i_mode))
5159 		mpol_free_shared_policy(&SHMEM_I(inode)->policy);
5160 	if (S_ISDIR(inode->i_mode))
5161 		simple_offset_destroy(shmem_get_offset_ctx(inode));
5162 }
5163 
5164 static void shmem_init_inode(void *foo)
5165 {
5166 	struct shmem_inode_info *info = foo;
5167 	inode_init_once(&info->vfs_inode);
5168 }
5169 
5170 static void __init shmem_init_inodecache(void)
5171 {
5172 	shmem_inode_cachep = kmem_cache_create("shmem_inode_cache",
5173 				sizeof(struct shmem_inode_info),
5174 				0, SLAB_PANIC|SLAB_ACCOUNT, shmem_init_inode);
5175 }
5176 
5177 static void __init shmem_destroy_inodecache(void)
5178 {
5179 	kmem_cache_destroy(shmem_inode_cachep);
5180 }
5181 
5182 /* Keep the page in page cache instead of truncating it */
5183 static int shmem_error_remove_folio(struct address_space *mapping,
5184 				   struct folio *folio)
5185 {
5186 	return 0;
5187 }
5188 
5189 static const struct address_space_operations shmem_aops = {
5190 	.dirty_folio	= noop_dirty_folio,
5191 #ifdef CONFIG_TMPFS
5192 	.write_begin	= shmem_write_begin,
5193 	.write_end	= shmem_write_end,
5194 #endif
5195 #ifdef CONFIG_MIGRATION
5196 	.migrate_folio	= migrate_folio,
5197 #endif
5198 	.error_remove_folio = shmem_error_remove_folio,
5199 };
5200 
5201 static const struct file_operations shmem_file_operations = {
5202 	.mmap_prepare	= shmem_mmap_prepare,
5203 	.open		= shmem_file_open,
5204 	.get_unmapped_area = shmem_get_unmapped_area,
5205 #ifdef CONFIG_TMPFS
5206 	.llseek		= shmem_file_llseek,
5207 	.read_iter	= shmem_file_read_iter,
5208 	.write_iter	= shmem_file_write_iter,
5209 	.fsync		= noop_fsync,
5210 	.splice_read	= shmem_file_splice_read,
5211 	.splice_write	= iter_file_splice_write,
5212 	.fallocate	= shmem_fallocate,
5213 	.setlease	= generic_setlease,
5214 #endif
5215 };
5216 
5217 static const struct inode_operations shmem_inode_operations = {
5218 	.getattr	= shmem_getattr,
5219 	.setattr	= shmem_setattr,
5220 #ifdef CONFIG_TMPFS_XATTR
5221 	.listxattr	= shmem_listxattr,
5222 	.set_acl	= simple_set_acl,
5223 	.fileattr_get	= shmem_fileattr_get,
5224 	.fileattr_set	= shmem_fileattr_set,
5225 #endif
5226 };
5227 
5228 static const struct inode_operations shmem_dir_inode_operations = {
5229 #ifdef CONFIG_TMPFS
5230 	.getattr	= shmem_getattr,
5231 	.create		= shmem_create,
5232 	.lookup		= simple_lookup,
5233 	.link		= shmem_link,
5234 	.unlink		= shmem_unlink,
5235 	.symlink	= shmem_symlink,
5236 	.mkdir		= shmem_mkdir,
5237 	.rmdir		= shmem_rmdir,
5238 	.mknod		= shmem_mknod,
5239 	.rename		= shmem_rename2,
5240 	.tmpfile	= shmem_tmpfile,
5241 	.get_offset_ctx	= shmem_get_offset_ctx,
5242 #endif
5243 #ifdef CONFIG_TMPFS_XATTR
5244 	.listxattr	= shmem_listxattr,
5245 	.fileattr_get	= shmem_fileattr_get,
5246 	.fileattr_set	= shmem_fileattr_set,
5247 #endif
5248 #ifdef CONFIG_TMPFS_POSIX_ACL
5249 	.setattr	= shmem_setattr,
5250 	.set_acl	= simple_set_acl,
5251 #endif
5252 };
5253 
5254 static const struct inode_operations shmem_special_inode_operations = {
5255 	.getattr	= shmem_getattr,
5256 #ifdef CONFIG_TMPFS_XATTR
5257 	.listxattr	= shmem_listxattr,
5258 #endif
5259 #ifdef CONFIG_TMPFS_POSIX_ACL
5260 	.setattr	= shmem_setattr,
5261 	.set_acl	= simple_set_acl,
5262 #endif
5263 };
5264 
5265 static const struct super_operations shmem_ops = {
5266 	.alloc_inode	= shmem_alloc_inode,
5267 	.free_inode	= shmem_free_in_core_inode,
5268 	.destroy_inode	= shmem_destroy_inode,
5269 #ifdef CONFIG_TMPFS
5270 	.statfs		= shmem_statfs,
5271 	.show_options	= shmem_show_options,
5272 #endif
5273 #ifdef CONFIG_TMPFS_QUOTA
5274 	.get_dquots	= shmem_get_dquots,
5275 #endif
5276 	.evict_inode	= shmem_evict_inode,
5277 	.drop_inode	= inode_just_drop,
5278 	.put_super	= shmem_put_super,
5279 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
5280 	.nr_cached_objects	= shmem_unused_huge_count,
5281 	.free_cached_objects	= shmem_unused_huge_scan,
5282 #endif
5283 };
5284 
5285 static const struct vm_operations_struct shmem_vm_ops = {
5286 	.fault		= shmem_fault,
5287 	.map_pages	= filemap_map_pages,
5288 #ifdef CONFIG_NUMA
5289 	.set_policy     = shmem_set_policy,
5290 	.get_policy     = shmem_get_policy,
5291 #endif
5292 #ifdef CONFIG_USERFAULTFD
5293 	.uffd_ops	= &shmem_uffd_ops,
5294 #endif
5295 };
5296 
5297 static const struct vm_operations_struct shmem_anon_vm_ops = {
5298 	.fault		= shmem_fault,
5299 	.map_pages	= filemap_map_pages,
5300 #ifdef CONFIG_NUMA
5301 	.set_policy     = shmem_set_policy,
5302 	.get_policy     = shmem_get_policy,
5303 #endif
5304 #ifdef CONFIG_USERFAULTFD
5305 	.uffd_ops	= &shmem_uffd_ops,
5306 #endif
5307 };
5308 
5309 int shmem_init_fs_context(struct fs_context *fc)
5310 {
5311 	struct shmem_options *ctx;
5312 
5313 	ctx = kzalloc_obj(struct shmem_options);
5314 	if (!ctx)
5315 		return -ENOMEM;
5316 
5317 	ctx->mode = 0777 | S_ISVTX;
5318 	ctx->uid = current_fsuid();
5319 	ctx->gid = current_fsgid();
5320 
5321 #if IS_ENABLED(CONFIG_UNICODE)
5322 	ctx->encoding = NULL;
5323 #endif
5324 
5325 	fc->fs_private = ctx;
5326 	fc->ops = &shmem_fs_context_ops;
5327 #ifdef CONFIG_TMPFS
5328 	fc->sb_flags |= SB_I_VERSION;
5329 #endif
5330 	return 0;
5331 }
5332 
5333 static struct file_system_type shmem_fs_type = {
5334 	.owner		= THIS_MODULE,
5335 	.name		= "tmpfs",
5336 	.init_fs_context = shmem_init_fs_context,
5337 #ifdef CONFIG_TMPFS
5338 	.parameters	= shmem_fs_parameters,
5339 #endif
5340 	.kill_sb	= kill_anon_super,
5341 	.fs_flags	= FS_USERNS_MOUNT | FS_ALLOW_IDMAP | FS_MGTIME,
5342 };
5343 
5344 #if defined(CONFIG_SYSFS) && defined(CONFIG_TMPFS)
5345 
5346 #define __INIT_KOBJ_ATTR(_name, _mode, _show, _store)			\
5347 {									\
5348 	.attr	= { .name = __stringify(_name), .mode = _mode },	\
5349 	.show	= _show,						\
5350 	.store	= _store,						\
5351 }
5352 
5353 #define TMPFS_ATTR_W(_name, _store)				\
5354 	static struct kobj_attribute tmpfs_attr_##_name =	\
5355 			__INIT_KOBJ_ATTR(_name, 0200, NULL, _store)
5356 
5357 #define TMPFS_ATTR_RW(_name, _show, _store)			\
5358 	static struct kobj_attribute tmpfs_attr_##_name =	\
5359 			__INIT_KOBJ_ATTR(_name, 0644, _show, _store)
5360 
5361 #define TMPFS_ATTR_RO(_name, _show)				\
5362 	static struct kobj_attribute tmpfs_attr_##_name =	\
5363 			__INIT_KOBJ_ATTR(_name, 0444, _show, NULL)
5364 
5365 #if IS_ENABLED(CONFIG_UNICODE)
5366 static ssize_t casefold_show(struct kobject *kobj, struct kobj_attribute *a,
5367 			char *buf)
5368 {
5369 		return sysfs_emit(buf, "supported\n");
5370 }
5371 TMPFS_ATTR_RO(casefold, casefold_show);
5372 #endif
5373 
5374 static struct attribute *tmpfs_attributes[] = {
5375 #if IS_ENABLED(CONFIG_UNICODE)
5376 	&tmpfs_attr_casefold.attr,
5377 #endif
5378 	NULL
5379 };
5380 
5381 static const struct attribute_group tmpfs_attribute_group = {
5382 	.attrs = tmpfs_attributes,
5383 	.name = "features"
5384 };
5385 
5386 static struct kobject *tmpfs_kobj;
5387 
5388 static int __init tmpfs_sysfs_init(void)
5389 {
5390 	int ret;
5391 
5392 	tmpfs_kobj = kobject_create_and_add("tmpfs", fs_kobj);
5393 	if (!tmpfs_kobj)
5394 		return -ENOMEM;
5395 
5396 	ret = sysfs_create_group(tmpfs_kobj, &tmpfs_attribute_group);
5397 	if (ret)
5398 		kobject_put(tmpfs_kobj);
5399 
5400 	return ret;
5401 }
5402 #endif /* CONFIG_SYSFS && CONFIG_TMPFS */
5403 
5404 void __init shmem_init(void)
5405 {
5406 	int error;
5407 
5408 	shmem_init_inodecache();
5409 
5410 #ifdef CONFIG_TMPFS_QUOTA
5411 	register_quota_format(&shmem_quota_format);
5412 #endif
5413 
5414 	error = register_filesystem(&shmem_fs_type);
5415 	if (error) {
5416 		pr_err("Could not register tmpfs\n");
5417 		goto out2;
5418 	}
5419 
5420 	shm_mnt = kern_mount(&shmem_fs_type);
5421 	if (IS_ERR(shm_mnt)) {
5422 		error = PTR_ERR(shm_mnt);
5423 		pr_err("Could not kern_mount tmpfs\n");
5424 		goto out1;
5425 	}
5426 
5427 #if defined(CONFIG_SYSFS) && defined(CONFIG_TMPFS)
5428 	error = tmpfs_sysfs_init();
5429 	if (error) {
5430 		pr_err("Could not init tmpfs sysfs\n");
5431 		goto out1;
5432 	}
5433 #endif
5434 
5435 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
5436 	if (has_transparent_hugepage() && shmem_huge > SHMEM_HUGE_DENY)
5437 		SHMEM_SB(shm_mnt->mnt_sb)->huge = shmem_huge;
5438 	else
5439 		shmem_huge = SHMEM_HUGE_NEVER; /* just in case it was patched */
5440 
5441 	/*
5442 	 * Default to setting PMD-sized THP to inherit the global setting and
5443 	 * disable all other multi-size THPs.
5444 	 */
5445 	if (!shmem_orders_configured)
5446 		huge_shmem_orders_inherit = BIT(HPAGE_PMD_ORDER);
5447 #endif
5448 	return;
5449 
5450 out1:
5451 	unregister_filesystem(&shmem_fs_type);
5452 out2:
5453 #ifdef CONFIG_TMPFS_QUOTA
5454 	unregister_quota_format(&shmem_quota_format);
5455 #endif
5456 	shmem_destroy_inodecache();
5457 	shm_mnt = ERR_PTR(error);
5458 }
5459 
5460 #if defined(CONFIG_TRANSPARENT_HUGEPAGE) && defined(CONFIG_SYSFS)
5461 static ssize_t shmem_enabled_show(struct kobject *kobj,
5462 				  struct kobj_attribute *attr, char *buf)
5463 {
5464 	static const int values[] = {
5465 		SHMEM_HUGE_ALWAYS,
5466 		SHMEM_HUGE_WITHIN_SIZE,
5467 		SHMEM_HUGE_ADVISE,
5468 		SHMEM_HUGE_NEVER,
5469 		SHMEM_HUGE_DENY,
5470 		SHMEM_HUGE_FORCE,
5471 	};
5472 	int len = 0;
5473 	int i;
5474 
5475 	for (i = 0; i < ARRAY_SIZE(values); i++) {
5476 		len += sysfs_emit_at(buf, len,
5477 				shmem_huge == values[i] ? "%s[%s]" : "%s%s",
5478 				i ? " " : "", shmem_format_huge(values[i]));
5479 	}
5480 	len += sysfs_emit_at(buf, len, "\n");
5481 
5482 	return len;
5483 }
5484 
5485 static ssize_t shmem_enabled_store(struct kobject *kobj,
5486 		struct kobj_attribute *attr, const char *buf, size_t count)
5487 {
5488 	char tmp[16];
5489 	int huge, err;
5490 
5491 	if (count + 1 > sizeof(tmp))
5492 		return -EINVAL;
5493 	memcpy(tmp, buf, count);
5494 	tmp[count] = '\0';
5495 	if (count && tmp[count - 1] == '\n')
5496 		tmp[count - 1] = '\0';
5497 
5498 	huge = shmem_parse_huge(tmp);
5499 	if (huge == -EINVAL)
5500 		return huge;
5501 
5502 	shmem_huge = huge;
5503 	if (shmem_huge > SHMEM_HUGE_DENY)
5504 		SHMEM_SB(shm_mnt->mnt_sb)->huge = shmem_huge;
5505 
5506 	err = start_stop_khugepaged();
5507 	return err ? err : count;
5508 }
5509 
5510 struct kobj_attribute shmem_enabled_attr = __ATTR_RW(shmem_enabled);
5511 static DEFINE_SPINLOCK(huge_shmem_orders_lock);
5512 
5513 static ssize_t thpsize_shmem_enabled_show(struct kobject *kobj,
5514 					  struct kobj_attribute *attr, char *buf)
5515 {
5516 	int order = to_thpsize(kobj)->order;
5517 	const char *output;
5518 
5519 	if (test_bit(order, &huge_shmem_orders_always))
5520 		output = "[always] inherit within_size advise never";
5521 	else if (test_bit(order, &huge_shmem_orders_inherit))
5522 		output = "always [inherit] within_size advise never";
5523 	else if (test_bit(order, &huge_shmem_orders_within_size))
5524 		output = "always inherit [within_size] advise never";
5525 	else if (test_bit(order, &huge_shmem_orders_madvise))
5526 		output = "always inherit within_size [advise] never";
5527 	else
5528 		output = "always inherit within_size advise [never]";
5529 
5530 	return sysfs_emit(buf, "%s\n", output);
5531 }
5532 
5533 static ssize_t thpsize_shmem_enabled_store(struct kobject *kobj,
5534 					   struct kobj_attribute *attr,
5535 					   const char *buf, size_t count)
5536 {
5537 	int order = to_thpsize(kobj)->order;
5538 	ssize_t ret = count;
5539 
5540 	if (sysfs_streq(buf, "always")) {
5541 		spin_lock(&huge_shmem_orders_lock);
5542 		clear_bit(order, &huge_shmem_orders_inherit);
5543 		clear_bit(order, &huge_shmem_orders_madvise);
5544 		clear_bit(order, &huge_shmem_orders_within_size);
5545 		set_bit(order, &huge_shmem_orders_always);
5546 		spin_unlock(&huge_shmem_orders_lock);
5547 	} else if (sysfs_streq(buf, "inherit")) {
5548 		/* Do not override huge allocation policy with non-PMD sized mTHP */
5549 		if (shmem_huge == SHMEM_HUGE_FORCE && !is_pmd_order(order))
5550 			return -EINVAL;
5551 
5552 		spin_lock(&huge_shmem_orders_lock);
5553 		clear_bit(order, &huge_shmem_orders_always);
5554 		clear_bit(order, &huge_shmem_orders_madvise);
5555 		clear_bit(order, &huge_shmem_orders_within_size);
5556 		set_bit(order, &huge_shmem_orders_inherit);
5557 		spin_unlock(&huge_shmem_orders_lock);
5558 	} else if (sysfs_streq(buf, "within_size")) {
5559 		spin_lock(&huge_shmem_orders_lock);
5560 		clear_bit(order, &huge_shmem_orders_always);
5561 		clear_bit(order, &huge_shmem_orders_inherit);
5562 		clear_bit(order, &huge_shmem_orders_madvise);
5563 		set_bit(order, &huge_shmem_orders_within_size);
5564 		spin_unlock(&huge_shmem_orders_lock);
5565 	} else if (sysfs_streq(buf, "advise")) {
5566 		spin_lock(&huge_shmem_orders_lock);
5567 		clear_bit(order, &huge_shmem_orders_always);
5568 		clear_bit(order, &huge_shmem_orders_inherit);
5569 		clear_bit(order, &huge_shmem_orders_within_size);
5570 		set_bit(order, &huge_shmem_orders_madvise);
5571 		spin_unlock(&huge_shmem_orders_lock);
5572 	} else if (sysfs_streq(buf, "never")) {
5573 		spin_lock(&huge_shmem_orders_lock);
5574 		clear_bit(order, &huge_shmem_orders_always);
5575 		clear_bit(order, &huge_shmem_orders_inherit);
5576 		clear_bit(order, &huge_shmem_orders_within_size);
5577 		clear_bit(order, &huge_shmem_orders_madvise);
5578 		spin_unlock(&huge_shmem_orders_lock);
5579 	} else {
5580 		ret = -EINVAL;
5581 	}
5582 
5583 	if (ret > 0) {
5584 		int err = start_stop_khugepaged();
5585 
5586 		if (err)
5587 			ret = err;
5588 	}
5589 	return ret;
5590 }
5591 
5592 struct kobj_attribute thpsize_shmem_enabled_attr =
5593 	__ATTR(shmem_enabled, 0644, thpsize_shmem_enabled_show, thpsize_shmem_enabled_store);
5594 #endif /* CONFIG_TRANSPARENT_HUGEPAGE && CONFIG_SYSFS */
5595 
5596 #if defined(CONFIG_TRANSPARENT_HUGEPAGE)
5597 
5598 static int __init setup_transparent_hugepage_shmem(char *str)
5599 {
5600 	int huge;
5601 
5602 	huge = shmem_parse_huge(str);
5603 	if (huge == -EINVAL) {
5604 		pr_warn("transparent_hugepage_shmem= cannot parse, ignored\n");
5605 		return huge;
5606 	}
5607 
5608 	shmem_huge = huge;
5609 	return 1;
5610 }
5611 __setup("transparent_hugepage_shmem=", setup_transparent_hugepage_shmem);
5612 
5613 static int __init setup_transparent_hugepage_tmpfs(char *str)
5614 {
5615 	int huge;
5616 
5617 	huge = shmem_parse_huge(str);
5618 	if (huge < 0) {
5619 		pr_warn("transparent_hugepage_tmpfs= cannot parse, ignored\n");
5620 		return huge;
5621 	}
5622 
5623 	tmpfs_huge = huge;
5624 	return 1;
5625 }
5626 __setup("transparent_hugepage_tmpfs=", setup_transparent_hugepage_tmpfs);
5627 
5628 static char str_dup[PAGE_SIZE] __initdata;
5629 static int __init setup_thp_shmem(char *str)
5630 {
5631 	char *token, *range, *policy, *subtoken;
5632 	unsigned long always, inherit, madvise, within_size;
5633 	char *start_size, *end_size;
5634 	int start, end, nr;
5635 	char *p;
5636 
5637 	if (!str || strlen(str) + 1 > PAGE_SIZE)
5638 		goto err;
5639 	strscpy(str_dup, str);
5640 
5641 	always = huge_shmem_orders_always;
5642 	inherit = huge_shmem_orders_inherit;
5643 	madvise = huge_shmem_orders_madvise;
5644 	within_size = huge_shmem_orders_within_size;
5645 	p = str_dup;
5646 	while ((token = strsep(&p, ";")) != NULL) {
5647 		range = strsep(&token, ":");
5648 		policy = token;
5649 
5650 		if (!policy)
5651 			goto err;
5652 
5653 		while ((subtoken = strsep(&range, ",")) != NULL) {
5654 			if (strchr(subtoken, '-')) {
5655 				start_size = strsep(&subtoken, "-");
5656 				end_size = subtoken;
5657 
5658 				start = get_order_from_str(start_size,
5659 							   THP_ORDERS_ALL_FILE_DEFAULT);
5660 				end = get_order_from_str(end_size,
5661 							 THP_ORDERS_ALL_FILE_DEFAULT);
5662 			} else {
5663 				start_size = end_size = subtoken;
5664 				start = end = get_order_from_str(subtoken,
5665 								 THP_ORDERS_ALL_FILE_DEFAULT);
5666 			}
5667 
5668 			if (start < 0) {
5669 				pr_err("invalid size %s in thp_shmem boot parameter\n",
5670 				       start_size);
5671 				goto err;
5672 			}
5673 
5674 			if (end < 0) {
5675 				pr_err("invalid size %s in thp_shmem boot parameter\n",
5676 				       end_size);
5677 				goto err;
5678 			}
5679 
5680 			if (start > end)
5681 				goto err;
5682 
5683 			nr = end - start + 1;
5684 			if (!strcmp(policy, "always")) {
5685 				bitmap_set(&always, start, nr);
5686 				bitmap_clear(&inherit, start, nr);
5687 				bitmap_clear(&madvise, start, nr);
5688 				bitmap_clear(&within_size, start, nr);
5689 			} else if (!strcmp(policy, "advise")) {
5690 				bitmap_set(&madvise, start, nr);
5691 				bitmap_clear(&inherit, start, nr);
5692 				bitmap_clear(&always, start, nr);
5693 				bitmap_clear(&within_size, start, nr);
5694 			} else if (!strcmp(policy, "inherit")) {
5695 				bitmap_set(&inherit, start, nr);
5696 				bitmap_clear(&madvise, start, nr);
5697 				bitmap_clear(&always, start, nr);
5698 				bitmap_clear(&within_size, start, nr);
5699 			} else if (!strcmp(policy, "within_size")) {
5700 				bitmap_set(&within_size, start, nr);
5701 				bitmap_clear(&inherit, start, nr);
5702 				bitmap_clear(&madvise, start, nr);
5703 				bitmap_clear(&always, start, nr);
5704 			} else if (!strcmp(policy, "never")) {
5705 				bitmap_clear(&inherit, start, nr);
5706 				bitmap_clear(&madvise, start, nr);
5707 				bitmap_clear(&always, start, nr);
5708 				bitmap_clear(&within_size, start, nr);
5709 			} else {
5710 				pr_err("invalid policy %s in thp_shmem boot parameter\n", policy);
5711 				goto err;
5712 			}
5713 		}
5714 	}
5715 
5716 	huge_shmem_orders_always = always;
5717 	huge_shmem_orders_madvise = madvise;
5718 	huge_shmem_orders_inherit = inherit;
5719 	huge_shmem_orders_within_size = within_size;
5720 	shmem_orders_configured = true;
5721 	return 1;
5722 
5723 err:
5724 	pr_warn("thp_shmem=%s: error parsing string, ignoring setting\n", str);
5725 	return 0;
5726 }
5727 __setup("thp_shmem=", setup_thp_shmem);
5728 
5729 #endif /* CONFIG_TRANSPARENT_HUGEPAGE */
5730 
5731 #else /* !CONFIG_SHMEM */
5732 
5733 /*
5734  * tiny-shmem: simple shmemfs and tmpfs using ramfs code
5735  *
5736  * This is intended for small system where the benefits of the full
5737  * shmem code (swap-backed and resource-limited) are outweighed by
5738  * their complexity. On systems without swap this code should be
5739  * effectively equivalent, but much lighter weight.
5740  */
5741 
5742 static struct file_system_type shmem_fs_type = {
5743 	.name		= "tmpfs",
5744 	.init_fs_context = ramfs_init_fs_context,
5745 	.parameters	= ramfs_fs_parameters,
5746 	.kill_sb	= ramfs_kill_sb,
5747 	.fs_flags	= FS_USERNS_MOUNT,
5748 };
5749 
5750 void __init shmem_init(void)
5751 {
5752 	BUG_ON(register_filesystem(&shmem_fs_type) != 0);
5753 
5754 	shm_mnt = kern_mount(&shmem_fs_type);
5755 	BUG_ON(IS_ERR(shm_mnt));
5756 }
5757 
5758 int shmem_unuse(unsigned int type)
5759 {
5760 	return 0;
5761 }
5762 
5763 int shmem_lock(struct file *file, int lock, struct ucounts *ucounts)
5764 {
5765 	return 0;
5766 }
5767 
5768 void shmem_unlock_mapping(struct address_space *mapping)
5769 {
5770 }
5771 
5772 #ifdef CONFIG_MMU
5773 unsigned long shmem_get_unmapped_area(struct file *file,
5774 				      unsigned long addr, unsigned long len,
5775 				      unsigned long pgoff, unsigned long flags)
5776 {
5777 	return mm_get_unmapped_area(file, addr, len, pgoff, flags);
5778 }
5779 #endif
5780 
5781 void shmem_truncate_range(struct inode *inode, loff_t lstart, uoff_t lend)
5782 {
5783 	truncate_inode_pages_range(inode->i_mapping, lstart, lend);
5784 }
5785 EXPORT_SYMBOL_GPL(shmem_truncate_range);
5786 
5787 #define shmem_vm_ops				generic_file_vm_ops
5788 #define shmem_anon_vm_ops			generic_file_vm_ops
5789 #define shmem_file_operations			ramfs_file_operations
5790 
5791 static inline int shmem_acct_size(unsigned long flags, loff_t size)
5792 {
5793 	return 0;
5794 }
5795 
5796 static inline void shmem_unacct_size(unsigned long flags, loff_t size)
5797 {
5798 }
5799 
5800 static inline struct inode *shmem_get_inode(struct mnt_idmap *idmap,
5801 				struct super_block *sb, struct inode *dir,
5802 				umode_t mode, dev_t dev, vma_flags_t flags)
5803 {
5804 	struct inode *inode = ramfs_get_inode(sb, dir, mode, dev);
5805 	return inode ? inode : ERR_PTR(-ENOSPC);
5806 }
5807 
5808 #endif /* CONFIG_SHMEM */
5809 
5810 /* common code */
5811 
5812 static struct file *__shmem_file_setup(struct vfsmount *mnt, const char *name,
5813 				       loff_t size, vma_flags_t flags,
5814 				       unsigned int i_flags)
5815 {
5816 	const unsigned long shmem_flags =
5817 		vma_flags_test(&flags, VMA_NORESERVE_BIT) ? SHMEM_F_NORESERVE : 0;
5818 	struct inode *inode;
5819 	struct file *res;
5820 
5821 	if (IS_ERR(mnt))
5822 		return ERR_CAST(mnt);
5823 
5824 	if (size < 0 || size > MAX_LFS_FILESIZE)
5825 		return ERR_PTR(-EINVAL);
5826 
5827 	if (is_idmapped_mnt(mnt))
5828 		return ERR_PTR(-EINVAL);
5829 
5830 	if (shmem_acct_size(shmem_flags, size))
5831 		return ERR_PTR(-ENOMEM);
5832 
5833 	inode = shmem_get_inode(&nop_mnt_idmap, mnt->mnt_sb, NULL,
5834 				S_IFREG | S_IRWXUGO, 0, flags);
5835 	if (IS_ERR(inode)) {
5836 		shmem_unacct_size(shmem_flags, size);
5837 		return ERR_CAST(inode);
5838 	}
5839 	inode->i_flags |= i_flags;
5840 	inode->i_size = size;
5841 	clear_nlink(inode);	/* It is unlinked */
5842 	res = ERR_PTR(ramfs_nommu_expand_for_mapping(inode, size));
5843 	if (!IS_ERR(res))
5844 		res = alloc_file_pseudo(inode, mnt, name, O_RDWR,
5845 				&shmem_file_operations);
5846 	if (IS_ERR(res))
5847 		iput(inode);
5848 	return res;
5849 }
5850 
5851 /**
5852  * shmem_kernel_file_setup - get an unlinked file living in tmpfs which must be
5853  * 	kernel internal.  There will be NO LSM permission checks against the
5854  * 	underlying inode.  So users of this interface must do LSM checks at a
5855  *	higher layer.  The users are the big_key and shm implementations.  LSM
5856  *	checks are provided at the key or shm level rather than the inode.
5857  * @name: name for dentry (to be seen in /proc/<pid>/maps)
5858  * @size: size to be set for the file
5859  * @flags: VMA_NORESERVE_BIT suppresses pre-accounting of the entire object size
5860  */
5861 struct file *shmem_kernel_file_setup(const char *name, loff_t size,
5862 				     vma_flags_t flags)
5863 {
5864 	return __shmem_file_setup(shm_mnt, name, size, flags, S_PRIVATE);
5865 }
5866 EXPORT_SYMBOL_GPL(shmem_kernel_file_setup);
5867 
5868 /**
5869  * shmem_file_setup - get an unlinked file living in tmpfs
5870  * @name: name for dentry (to be seen in /proc/<pid>/maps)
5871  * @size: size to be set for the file
5872  * @flags: VMA_NORESERVE_BIT suppresses pre-accounting of the entire object size
5873  */
5874 struct file *shmem_file_setup(const char *name, loff_t size, vma_flags_t flags)
5875 {
5876 	return __shmem_file_setup(shm_mnt, name, size, flags, 0);
5877 }
5878 EXPORT_SYMBOL_GPL(shmem_file_setup);
5879 
5880 /**
5881  * shmem_file_setup_with_mnt - get an unlinked file living in tmpfs
5882  * @mnt: the tmpfs mount where the file will be created
5883  * @name: name for dentry (to be seen in /proc/<pid>/maps)
5884  * @size: size to be set for the file
5885  * @flags: VMA_NORESERVE_BIT suppresses pre-accounting of the entire object size
5886  */
5887 struct file *shmem_file_setup_with_mnt(struct vfsmount *mnt, const char *name,
5888 				       loff_t size, vma_flags_t flags)
5889 {
5890 	return __shmem_file_setup(mnt, name, size, flags, 0);
5891 }
5892 EXPORT_SYMBOL_GPL(shmem_file_setup_with_mnt);
5893 
5894 static struct file *__shmem_zero_setup(unsigned long start, unsigned long end,
5895 		vma_flags_t flags)
5896 {
5897 	loff_t size = end - start;
5898 
5899 	/*
5900 	 * Cloning a new file under mmap_lock leads to a lock ordering conflict
5901 	 * between XFS directory reading and selinux: since this file is only
5902 	 * accessible to the user through its mapping, use S_PRIVATE flag to
5903 	 * bypass file security, in the same way as shmem_kernel_file_setup().
5904 	 */
5905 	return shmem_kernel_file_setup("dev/zero", size, flags);
5906 }
5907 
5908 /**
5909  * shmem_zero_setup - setup a shared anonymous mapping
5910  * @vma: the vma to be mmapped is prepared by do_mmap
5911  * Returns: 0 on success, or error
5912  */
5913 int shmem_zero_setup(struct vm_area_struct *vma)
5914 {
5915 	struct file *file = __shmem_zero_setup(vma->vm_start, vma->vm_end, vma->flags);
5916 
5917 	if (IS_ERR(file))
5918 		return PTR_ERR(file);
5919 
5920 	if (vma->vm_file)
5921 		fput(vma->vm_file);
5922 	vma->vm_file = file;
5923 	vma->vm_ops = &shmem_anon_vm_ops;
5924 
5925 	return 0;
5926 }
5927 
5928 /**
5929  * shmem_zero_setup_desc - same as shmem_zero_setup, but determined by VMA
5930  * descriptor for convenience.
5931  * @desc: Describes VMA
5932  * Returns: 0 on success, or error
5933  */
5934 int shmem_zero_setup_desc(struct vm_area_desc *desc)
5935 {
5936 	struct file *file = __shmem_zero_setup(desc->start, desc->end, desc->vma_flags);
5937 
5938 	if (IS_ERR(file))
5939 		return PTR_ERR(file);
5940 
5941 	desc->vm_file = file;
5942 	desc->vm_ops = &shmem_anon_vm_ops;
5943 
5944 	return 0;
5945 }
5946 
5947 /**
5948  * shmem_read_folio_gfp - read into page cache, using specified page allocation flags.
5949  * @mapping:	the folio's address_space
5950  * @index:	the folio index
5951  * @gfp:	the page allocator flags to use if allocating
5952  *
5953  * This behaves as a tmpfs "read_cache_page_gfp(mapping, index, gfp)",
5954  * with any new page allocations done using the specified allocation flags.
5955  * But read_cache_page_gfp() uses the ->read_folio() method: which does not
5956  * suit tmpfs, since it may have pages in swapcache, and needs to find those
5957  * for itself; although drivers/gpu/drm i915 and ttm rely upon this support.
5958  *
5959  * i915_gem_object_get_pages_gtt() mixes __GFP_NORETRY | __GFP_NOWARN in
5960  * with the mapping_gfp_mask(), to avoid OOMing the machine unnecessarily.
5961  */
5962 struct folio *shmem_read_folio_gfp(struct address_space *mapping,
5963 		pgoff_t index, gfp_t gfp)
5964 {
5965 #ifdef CONFIG_SHMEM
5966 	struct inode *inode = mapping->host;
5967 	struct folio *folio;
5968 	int error;
5969 
5970 	error = shmem_get_folio_gfp(inode, index, i_size_read(inode),
5971 				    &folio, SGP_CACHE, gfp, NULL, NULL);
5972 	if (error)
5973 		return ERR_PTR(error);
5974 
5975 	folio_unlock(folio);
5976 	return folio;
5977 #else
5978 	/*
5979 	 * The tiny !SHMEM case uses ramfs without swap
5980 	 */
5981 	return mapping_read_folio_gfp(mapping, index, gfp);
5982 #endif
5983 }
5984 EXPORT_SYMBOL_GPL(shmem_read_folio_gfp);
5985 
5986 struct page *shmem_read_mapping_page_gfp(struct address_space *mapping,
5987 					 pgoff_t index, gfp_t gfp)
5988 {
5989 	struct folio *folio = shmem_read_folio_gfp(mapping, index, gfp);
5990 	struct page *page;
5991 
5992 	if (IS_ERR(folio))
5993 		return &folio->page;
5994 
5995 	page = folio_file_page(folio, index);
5996 	if (PageHWPoison(page)) {
5997 		folio_put(folio);
5998 		return ERR_PTR(-EIO);
5999 	}
6000 
6001 	return page;
6002 }
6003 EXPORT_SYMBOL_GPL(shmem_read_mapping_page_gfp);
6004