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