xref: /linux/mm/hugetlb.c (revision 247dbcdbf790c52fc76cf8e327cd0a5778e41e66)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Generic hugetlb support.
4  * (C) Nadia Yvette Chambers, April 2004
5  */
6 #include <linux/list.h>
7 #include <linux/init.h>
8 #include <linux/mm.h>
9 #include <linux/seq_file.h>
10 #include <linux/sysctl.h>
11 #include <linux/highmem.h>
12 #include <linux/mmu_notifier.h>
13 #include <linux/nodemask.h>
14 #include <linux/pagemap.h>
15 #include <linux/mempolicy.h>
16 #include <linux/compiler.h>
17 #include <linux/cpuset.h>
18 #include <linux/mutex.h>
19 #include <linux/memblock.h>
20 #include <linux/sysfs.h>
21 #include <linux/slab.h>
22 #include <linux/sched/mm.h>
23 #include <linux/mmdebug.h>
24 #include <linux/sched/signal.h>
25 #include <linux/rmap.h>
26 #include <linux/string_helpers.h>
27 #include <linux/swap.h>
28 #include <linux/swapops.h>
29 #include <linux/jhash.h>
30 #include <linux/numa.h>
31 #include <linux/llist.h>
32 #include <linux/cma.h>
33 #include <linux/migrate.h>
34 #include <linux/nospec.h>
35 #include <linux/delayacct.h>
36 #include <linux/memory.h>
37 #include <linux/mm_inline.h>
38 
39 #include <asm/page.h>
40 #include <asm/pgalloc.h>
41 #include <asm/tlb.h>
42 
43 #include <linux/io.h>
44 #include <linux/hugetlb.h>
45 #include <linux/hugetlb_cgroup.h>
46 #include <linux/node.h>
47 #include <linux/page_owner.h>
48 #include "internal.h"
49 #include "hugetlb_vmemmap.h"
50 
51 int hugetlb_max_hstate __read_mostly;
52 unsigned int default_hstate_idx;
53 struct hstate hstates[HUGE_MAX_HSTATE];
54 
55 #ifdef CONFIG_CMA
56 static struct cma *hugetlb_cma[MAX_NUMNODES];
57 static unsigned long hugetlb_cma_size_in_node[MAX_NUMNODES] __initdata;
58 static bool hugetlb_cma_folio(struct folio *folio, unsigned int order)
59 {
60 	return cma_pages_valid(hugetlb_cma[folio_nid(folio)], &folio->page,
61 				1 << order);
62 }
63 #else
64 static bool hugetlb_cma_folio(struct folio *folio, unsigned int order)
65 {
66 	return false;
67 }
68 #endif
69 static unsigned long hugetlb_cma_size __initdata;
70 
71 __initdata LIST_HEAD(huge_boot_pages);
72 
73 /* for command line parsing */
74 static struct hstate * __initdata parsed_hstate;
75 static unsigned long __initdata default_hstate_max_huge_pages;
76 static bool __initdata parsed_valid_hugepagesz = true;
77 static bool __initdata parsed_default_hugepagesz;
78 static unsigned int default_hugepages_in_node[MAX_NUMNODES] __initdata;
79 
80 /*
81  * Protects updates to hugepage_freelists, hugepage_activelist, nr_huge_pages,
82  * free_huge_pages, and surplus_huge_pages.
83  */
84 DEFINE_SPINLOCK(hugetlb_lock);
85 
86 /*
87  * Serializes faults on the same logical page.  This is used to
88  * prevent spurious OOMs when the hugepage pool is fully utilized.
89  */
90 static int num_fault_mutexes;
91 struct mutex *hugetlb_fault_mutex_table ____cacheline_aligned_in_smp;
92 
93 /* Forward declaration */
94 static int hugetlb_acct_memory(struct hstate *h, long delta);
95 static void hugetlb_vma_lock_free(struct vm_area_struct *vma);
96 static void hugetlb_vma_lock_alloc(struct vm_area_struct *vma);
97 static void __hugetlb_vma_unlock_write_free(struct vm_area_struct *vma);
98 static void hugetlb_unshare_pmds(struct vm_area_struct *vma,
99 		unsigned long start, unsigned long end);
100 static struct resv_map *vma_resv_map(struct vm_area_struct *vma);
101 
102 static inline bool subpool_is_free(struct hugepage_subpool *spool)
103 {
104 	if (spool->count)
105 		return false;
106 	if (spool->max_hpages != -1)
107 		return spool->used_hpages == 0;
108 	if (spool->min_hpages != -1)
109 		return spool->rsv_hpages == spool->min_hpages;
110 
111 	return true;
112 }
113 
114 static inline void unlock_or_release_subpool(struct hugepage_subpool *spool,
115 						unsigned long irq_flags)
116 {
117 	spin_unlock_irqrestore(&spool->lock, irq_flags);
118 
119 	/* If no pages are used, and no other handles to the subpool
120 	 * remain, give up any reservations based on minimum size and
121 	 * free the subpool */
122 	if (subpool_is_free(spool)) {
123 		if (spool->min_hpages != -1)
124 			hugetlb_acct_memory(spool->hstate,
125 						-spool->min_hpages);
126 		kfree(spool);
127 	}
128 }
129 
130 struct hugepage_subpool *hugepage_new_subpool(struct hstate *h, long max_hpages,
131 						long min_hpages)
132 {
133 	struct hugepage_subpool *spool;
134 
135 	spool = kzalloc(sizeof(*spool), GFP_KERNEL);
136 	if (!spool)
137 		return NULL;
138 
139 	spin_lock_init(&spool->lock);
140 	spool->count = 1;
141 	spool->max_hpages = max_hpages;
142 	spool->hstate = h;
143 	spool->min_hpages = min_hpages;
144 
145 	if (min_hpages != -1 && hugetlb_acct_memory(h, min_hpages)) {
146 		kfree(spool);
147 		return NULL;
148 	}
149 	spool->rsv_hpages = min_hpages;
150 
151 	return spool;
152 }
153 
154 void hugepage_put_subpool(struct hugepage_subpool *spool)
155 {
156 	unsigned long flags;
157 
158 	spin_lock_irqsave(&spool->lock, flags);
159 	BUG_ON(!spool->count);
160 	spool->count--;
161 	unlock_or_release_subpool(spool, flags);
162 }
163 
164 /*
165  * Subpool accounting for allocating and reserving pages.
166  * Return -ENOMEM if there are not enough resources to satisfy the
167  * request.  Otherwise, return the number of pages by which the
168  * global pools must be adjusted (upward).  The returned value may
169  * only be different than the passed value (delta) in the case where
170  * a subpool minimum size must be maintained.
171  */
172 static long hugepage_subpool_get_pages(struct hugepage_subpool *spool,
173 				      long delta)
174 {
175 	long ret = delta;
176 
177 	if (!spool)
178 		return ret;
179 
180 	spin_lock_irq(&spool->lock);
181 
182 	if (spool->max_hpages != -1) {		/* maximum size accounting */
183 		if ((spool->used_hpages + delta) <= spool->max_hpages)
184 			spool->used_hpages += delta;
185 		else {
186 			ret = -ENOMEM;
187 			goto unlock_ret;
188 		}
189 	}
190 
191 	/* minimum size accounting */
192 	if (spool->min_hpages != -1 && spool->rsv_hpages) {
193 		if (delta > spool->rsv_hpages) {
194 			/*
195 			 * Asking for more reserves than those already taken on
196 			 * behalf of subpool.  Return difference.
197 			 */
198 			ret = delta - spool->rsv_hpages;
199 			spool->rsv_hpages = 0;
200 		} else {
201 			ret = 0;	/* reserves already accounted for */
202 			spool->rsv_hpages -= delta;
203 		}
204 	}
205 
206 unlock_ret:
207 	spin_unlock_irq(&spool->lock);
208 	return ret;
209 }
210 
211 /*
212  * Subpool accounting for freeing and unreserving pages.
213  * Return the number of global page reservations that must be dropped.
214  * The return value may only be different than the passed value (delta)
215  * in the case where a subpool minimum size must be maintained.
216  */
217 static long hugepage_subpool_put_pages(struct hugepage_subpool *spool,
218 				       long delta)
219 {
220 	long ret = delta;
221 	unsigned long flags;
222 
223 	if (!spool)
224 		return delta;
225 
226 	spin_lock_irqsave(&spool->lock, flags);
227 
228 	if (spool->max_hpages != -1)		/* maximum size accounting */
229 		spool->used_hpages -= delta;
230 
231 	 /* minimum size accounting */
232 	if (spool->min_hpages != -1 && spool->used_hpages < spool->min_hpages) {
233 		if (spool->rsv_hpages + delta <= spool->min_hpages)
234 			ret = 0;
235 		else
236 			ret = spool->rsv_hpages + delta - spool->min_hpages;
237 
238 		spool->rsv_hpages += delta;
239 		if (spool->rsv_hpages > spool->min_hpages)
240 			spool->rsv_hpages = spool->min_hpages;
241 	}
242 
243 	/*
244 	 * If hugetlbfs_put_super couldn't free spool due to an outstanding
245 	 * quota reference, free it now.
246 	 */
247 	unlock_or_release_subpool(spool, flags);
248 
249 	return ret;
250 }
251 
252 static inline struct hugepage_subpool *subpool_inode(struct inode *inode)
253 {
254 	return HUGETLBFS_SB(inode->i_sb)->spool;
255 }
256 
257 static inline struct hugepage_subpool *subpool_vma(struct vm_area_struct *vma)
258 {
259 	return subpool_inode(file_inode(vma->vm_file));
260 }
261 
262 /*
263  * hugetlb vma_lock helper routines
264  */
265 void hugetlb_vma_lock_read(struct vm_area_struct *vma)
266 {
267 	if (__vma_shareable_lock(vma)) {
268 		struct hugetlb_vma_lock *vma_lock = vma->vm_private_data;
269 
270 		down_read(&vma_lock->rw_sema);
271 	} else if (__vma_private_lock(vma)) {
272 		struct resv_map *resv_map = vma_resv_map(vma);
273 
274 		down_read(&resv_map->rw_sema);
275 	}
276 }
277 
278 void hugetlb_vma_unlock_read(struct vm_area_struct *vma)
279 {
280 	if (__vma_shareable_lock(vma)) {
281 		struct hugetlb_vma_lock *vma_lock = vma->vm_private_data;
282 
283 		up_read(&vma_lock->rw_sema);
284 	} else if (__vma_private_lock(vma)) {
285 		struct resv_map *resv_map = vma_resv_map(vma);
286 
287 		up_read(&resv_map->rw_sema);
288 	}
289 }
290 
291 void hugetlb_vma_lock_write(struct vm_area_struct *vma)
292 {
293 	if (__vma_shareable_lock(vma)) {
294 		struct hugetlb_vma_lock *vma_lock = vma->vm_private_data;
295 
296 		down_write(&vma_lock->rw_sema);
297 	} else if (__vma_private_lock(vma)) {
298 		struct resv_map *resv_map = vma_resv_map(vma);
299 
300 		down_write(&resv_map->rw_sema);
301 	}
302 }
303 
304 void hugetlb_vma_unlock_write(struct vm_area_struct *vma)
305 {
306 	if (__vma_shareable_lock(vma)) {
307 		struct hugetlb_vma_lock *vma_lock = vma->vm_private_data;
308 
309 		up_write(&vma_lock->rw_sema);
310 	} else if (__vma_private_lock(vma)) {
311 		struct resv_map *resv_map = vma_resv_map(vma);
312 
313 		up_write(&resv_map->rw_sema);
314 	}
315 }
316 
317 int hugetlb_vma_trylock_write(struct vm_area_struct *vma)
318 {
319 
320 	if (__vma_shareable_lock(vma)) {
321 		struct hugetlb_vma_lock *vma_lock = vma->vm_private_data;
322 
323 		return down_write_trylock(&vma_lock->rw_sema);
324 	} else if (__vma_private_lock(vma)) {
325 		struct resv_map *resv_map = vma_resv_map(vma);
326 
327 		return down_write_trylock(&resv_map->rw_sema);
328 	}
329 
330 	return 1;
331 }
332 
333 void hugetlb_vma_assert_locked(struct vm_area_struct *vma)
334 {
335 	if (__vma_shareable_lock(vma)) {
336 		struct hugetlb_vma_lock *vma_lock = vma->vm_private_data;
337 
338 		lockdep_assert_held(&vma_lock->rw_sema);
339 	} else if (__vma_private_lock(vma)) {
340 		struct resv_map *resv_map = vma_resv_map(vma);
341 
342 		lockdep_assert_held(&resv_map->rw_sema);
343 	}
344 }
345 
346 void hugetlb_vma_lock_release(struct kref *kref)
347 {
348 	struct hugetlb_vma_lock *vma_lock = container_of(kref,
349 			struct hugetlb_vma_lock, refs);
350 
351 	kfree(vma_lock);
352 }
353 
354 static void __hugetlb_vma_unlock_write_put(struct hugetlb_vma_lock *vma_lock)
355 {
356 	struct vm_area_struct *vma = vma_lock->vma;
357 
358 	/*
359 	 * vma_lock structure may or not be released as a result of put,
360 	 * it certainly will no longer be attached to vma so clear pointer.
361 	 * Semaphore synchronizes access to vma_lock->vma field.
362 	 */
363 	vma_lock->vma = NULL;
364 	vma->vm_private_data = NULL;
365 	up_write(&vma_lock->rw_sema);
366 	kref_put(&vma_lock->refs, hugetlb_vma_lock_release);
367 }
368 
369 static void __hugetlb_vma_unlock_write_free(struct vm_area_struct *vma)
370 {
371 	if (__vma_shareable_lock(vma)) {
372 		struct hugetlb_vma_lock *vma_lock = vma->vm_private_data;
373 
374 		__hugetlb_vma_unlock_write_put(vma_lock);
375 	} else if (__vma_private_lock(vma)) {
376 		struct resv_map *resv_map = vma_resv_map(vma);
377 
378 		/* no free for anon vmas, but still need to unlock */
379 		up_write(&resv_map->rw_sema);
380 	}
381 }
382 
383 static void hugetlb_vma_lock_free(struct vm_area_struct *vma)
384 {
385 	/*
386 	 * Only present in sharable vmas.
387 	 */
388 	if (!vma || !__vma_shareable_lock(vma))
389 		return;
390 
391 	if (vma->vm_private_data) {
392 		struct hugetlb_vma_lock *vma_lock = vma->vm_private_data;
393 
394 		down_write(&vma_lock->rw_sema);
395 		__hugetlb_vma_unlock_write_put(vma_lock);
396 	}
397 }
398 
399 static void hugetlb_vma_lock_alloc(struct vm_area_struct *vma)
400 {
401 	struct hugetlb_vma_lock *vma_lock;
402 
403 	/* Only establish in (flags) sharable vmas */
404 	if (!vma || !(vma->vm_flags & VM_MAYSHARE))
405 		return;
406 
407 	/* Should never get here with non-NULL vm_private_data */
408 	if (vma->vm_private_data)
409 		return;
410 
411 	vma_lock = kmalloc(sizeof(*vma_lock), GFP_KERNEL);
412 	if (!vma_lock) {
413 		/*
414 		 * If we can not allocate structure, then vma can not
415 		 * participate in pmd sharing.  This is only a possible
416 		 * performance enhancement and memory saving issue.
417 		 * However, the lock is also used to synchronize page
418 		 * faults with truncation.  If the lock is not present,
419 		 * unlikely races could leave pages in a file past i_size
420 		 * until the file is removed.  Warn in the unlikely case of
421 		 * allocation failure.
422 		 */
423 		pr_warn_once("HugeTLB: unable to allocate vma specific lock\n");
424 		return;
425 	}
426 
427 	kref_init(&vma_lock->refs);
428 	init_rwsem(&vma_lock->rw_sema);
429 	vma_lock->vma = vma;
430 	vma->vm_private_data = vma_lock;
431 }
432 
433 /* Helper that removes a struct file_region from the resv_map cache and returns
434  * it for use.
435  */
436 static struct file_region *
437 get_file_region_entry_from_cache(struct resv_map *resv, long from, long to)
438 {
439 	struct file_region *nrg;
440 
441 	VM_BUG_ON(resv->region_cache_count <= 0);
442 
443 	resv->region_cache_count--;
444 	nrg = list_first_entry(&resv->region_cache, struct file_region, link);
445 	list_del(&nrg->link);
446 
447 	nrg->from = from;
448 	nrg->to = to;
449 
450 	return nrg;
451 }
452 
453 static void copy_hugetlb_cgroup_uncharge_info(struct file_region *nrg,
454 					      struct file_region *rg)
455 {
456 #ifdef CONFIG_CGROUP_HUGETLB
457 	nrg->reservation_counter = rg->reservation_counter;
458 	nrg->css = rg->css;
459 	if (rg->css)
460 		css_get(rg->css);
461 #endif
462 }
463 
464 /* Helper that records hugetlb_cgroup uncharge info. */
465 static void record_hugetlb_cgroup_uncharge_info(struct hugetlb_cgroup *h_cg,
466 						struct hstate *h,
467 						struct resv_map *resv,
468 						struct file_region *nrg)
469 {
470 #ifdef CONFIG_CGROUP_HUGETLB
471 	if (h_cg) {
472 		nrg->reservation_counter =
473 			&h_cg->rsvd_hugepage[hstate_index(h)];
474 		nrg->css = &h_cg->css;
475 		/*
476 		 * The caller will hold exactly one h_cg->css reference for the
477 		 * whole contiguous reservation region. But this area might be
478 		 * scattered when there are already some file_regions reside in
479 		 * it. As a result, many file_regions may share only one css
480 		 * reference. In order to ensure that one file_region must hold
481 		 * exactly one h_cg->css reference, we should do css_get for
482 		 * each file_region and leave the reference held by caller
483 		 * untouched.
484 		 */
485 		css_get(&h_cg->css);
486 		if (!resv->pages_per_hpage)
487 			resv->pages_per_hpage = pages_per_huge_page(h);
488 		/* pages_per_hpage should be the same for all entries in
489 		 * a resv_map.
490 		 */
491 		VM_BUG_ON(resv->pages_per_hpage != pages_per_huge_page(h));
492 	} else {
493 		nrg->reservation_counter = NULL;
494 		nrg->css = NULL;
495 	}
496 #endif
497 }
498 
499 static void put_uncharge_info(struct file_region *rg)
500 {
501 #ifdef CONFIG_CGROUP_HUGETLB
502 	if (rg->css)
503 		css_put(rg->css);
504 #endif
505 }
506 
507 static bool has_same_uncharge_info(struct file_region *rg,
508 				   struct file_region *org)
509 {
510 #ifdef CONFIG_CGROUP_HUGETLB
511 	return rg->reservation_counter == org->reservation_counter &&
512 	       rg->css == org->css;
513 
514 #else
515 	return true;
516 #endif
517 }
518 
519 static void coalesce_file_region(struct resv_map *resv, struct file_region *rg)
520 {
521 	struct file_region *nrg, *prg;
522 
523 	prg = list_prev_entry(rg, link);
524 	if (&prg->link != &resv->regions && prg->to == rg->from &&
525 	    has_same_uncharge_info(prg, rg)) {
526 		prg->to = rg->to;
527 
528 		list_del(&rg->link);
529 		put_uncharge_info(rg);
530 		kfree(rg);
531 
532 		rg = prg;
533 	}
534 
535 	nrg = list_next_entry(rg, link);
536 	if (&nrg->link != &resv->regions && nrg->from == rg->to &&
537 	    has_same_uncharge_info(nrg, rg)) {
538 		nrg->from = rg->from;
539 
540 		list_del(&rg->link);
541 		put_uncharge_info(rg);
542 		kfree(rg);
543 	}
544 }
545 
546 static inline long
547 hugetlb_resv_map_add(struct resv_map *map, struct list_head *rg, long from,
548 		     long to, struct hstate *h, struct hugetlb_cgroup *cg,
549 		     long *regions_needed)
550 {
551 	struct file_region *nrg;
552 
553 	if (!regions_needed) {
554 		nrg = get_file_region_entry_from_cache(map, from, to);
555 		record_hugetlb_cgroup_uncharge_info(cg, h, map, nrg);
556 		list_add(&nrg->link, rg);
557 		coalesce_file_region(map, nrg);
558 	} else
559 		*regions_needed += 1;
560 
561 	return to - from;
562 }
563 
564 /*
565  * Must be called with resv->lock held.
566  *
567  * Calling this with regions_needed != NULL will count the number of pages
568  * to be added but will not modify the linked list. And regions_needed will
569  * indicate the number of file_regions needed in the cache to carry out to add
570  * the regions for this range.
571  */
572 static long add_reservation_in_range(struct resv_map *resv, long f, long t,
573 				     struct hugetlb_cgroup *h_cg,
574 				     struct hstate *h, long *regions_needed)
575 {
576 	long add = 0;
577 	struct list_head *head = &resv->regions;
578 	long last_accounted_offset = f;
579 	struct file_region *iter, *trg = NULL;
580 	struct list_head *rg = NULL;
581 
582 	if (regions_needed)
583 		*regions_needed = 0;
584 
585 	/* In this loop, we essentially handle an entry for the range
586 	 * [last_accounted_offset, iter->from), at every iteration, with some
587 	 * bounds checking.
588 	 */
589 	list_for_each_entry_safe(iter, trg, head, link) {
590 		/* Skip irrelevant regions that start before our range. */
591 		if (iter->from < f) {
592 			/* If this region ends after the last accounted offset,
593 			 * then we need to update last_accounted_offset.
594 			 */
595 			if (iter->to > last_accounted_offset)
596 				last_accounted_offset = iter->to;
597 			continue;
598 		}
599 
600 		/* When we find a region that starts beyond our range, we've
601 		 * finished.
602 		 */
603 		if (iter->from >= t) {
604 			rg = iter->link.prev;
605 			break;
606 		}
607 
608 		/* Add an entry for last_accounted_offset -> iter->from, and
609 		 * update last_accounted_offset.
610 		 */
611 		if (iter->from > last_accounted_offset)
612 			add += hugetlb_resv_map_add(resv, iter->link.prev,
613 						    last_accounted_offset,
614 						    iter->from, h, h_cg,
615 						    regions_needed);
616 
617 		last_accounted_offset = iter->to;
618 	}
619 
620 	/* Handle the case where our range extends beyond
621 	 * last_accounted_offset.
622 	 */
623 	if (!rg)
624 		rg = head->prev;
625 	if (last_accounted_offset < t)
626 		add += hugetlb_resv_map_add(resv, rg, last_accounted_offset,
627 					    t, h, h_cg, regions_needed);
628 
629 	return add;
630 }
631 
632 /* Must be called with resv->lock acquired. Will drop lock to allocate entries.
633  */
634 static int allocate_file_region_entries(struct resv_map *resv,
635 					int regions_needed)
636 	__must_hold(&resv->lock)
637 {
638 	LIST_HEAD(allocated_regions);
639 	int to_allocate = 0, i = 0;
640 	struct file_region *trg = NULL, *rg = NULL;
641 
642 	VM_BUG_ON(regions_needed < 0);
643 
644 	/*
645 	 * Check for sufficient descriptors in the cache to accommodate
646 	 * the number of in progress add operations plus regions_needed.
647 	 *
648 	 * This is a while loop because when we drop the lock, some other call
649 	 * to region_add or region_del may have consumed some region_entries,
650 	 * so we keep looping here until we finally have enough entries for
651 	 * (adds_in_progress + regions_needed).
652 	 */
653 	while (resv->region_cache_count <
654 	       (resv->adds_in_progress + regions_needed)) {
655 		to_allocate = resv->adds_in_progress + regions_needed -
656 			      resv->region_cache_count;
657 
658 		/* At this point, we should have enough entries in the cache
659 		 * for all the existing adds_in_progress. We should only be
660 		 * needing to allocate for regions_needed.
661 		 */
662 		VM_BUG_ON(resv->region_cache_count < resv->adds_in_progress);
663 
664 		spin_unlock(&resv->lock);
665 		for (i = 0; i < to_allocate; i++) {
666 			trg = kmalloc(sizeof(*trg), GFP_KERNEL);
667 			if (!trg)
668 				goto out_of_memory;
669 			list_add(&trg->link, &allocated_regions);
670 		}
671 
672 		spin_lock(&resv->lock);
673 
674 		list_splice(&allocated_regions, &resv->region_cache);
675 		resv->region_cache_count += to_allocate;
676 	}
677 
678 	return 0;
679 
680 out_of_memory:
681 	list_for_each_entry_safe(rg, trg, &allocated_regions, link) {
682 		list_del(&rg->link);
683 		kfree(rg);
684 	}
685 	return -ENOMEM;
686 }
687 
688 /*
689  * Add the huge page range represented by [f, t) to the reserve
690  * map.  Regions will be taken from the cache to fill in this range.
691  * Sufficient regions should exist in the cache due to the previous
692  * call to region_chg with the same range, but in some cases the cache will not
693  * have sufficient entries due to races with other code doing region_add or
694  * region_del.  The extra needed entries will be allocated.
695  *
696  * regions_needed is the out value provided by a previous call to region_chg.
697  *
698  * Return the number of new huge pages added to the map.  This number is greater
699  * than or equal to zero.  If file_region entries needed to be allocated for
700  * this operation and we were not able to allocate, it returns -ENOMEM.
701  * region_add of regions of length 1 never allocate file_regions and cannot
702  * fail; region_chg will always allocate at least 1 entry and a region_add for
703  * 1 page will only require at most 1 entry.
704  */
705 static long region_add(struct resv_map *resv, long f, long t,
706 		       long in_regions_needed, struct hstate *h,
707 		       struct hugetlb_cgroup *h_cg)
708 {
709 	long add = 0, actual_regions_needed = 0;
710 
711 	spin_lock(&resv->lock);
712 retry:
713 
714 	/* Count how many regions are actually needed to execute this add. */
715 	add_reservation_in_range(resv, f, t, NULL, NULL,
716 				 &actual_regions_needed);
717 
718 	/*
719 	 * Check for sufficient descriptors in the cache to accommodate
720 	 * this add operation. Note that actual_regions_needed may be greater
721 	 * than in_regions_needed, as the resv_map may have been modified since
722 	 * the region_chg call. In this case, we need to make sure that we
723 	 * allocate extra entries, such that we have enough for all the
724 	 * existing adds_in_progress, plus the excess needed for this
725 	 * operation.
726 	 */
727 	if (actual_regions_needed > in_regions_needed &&
728 	    resv->region_cache_count <
729 		    resv->adds_in_progress +
730 			    (actual_regions_needed - in_regions_needed)) {
731 		/* region_add operation of range 1 should never need to
732 		 * allocate file_region entries.
733 		 */
734 		VM_BUG_ON(t - f <= 1);
735 
736 		if (allocate_file_region_entries(
737 			    resv, actual_regions_needed - in_regions_needed)) {
738 			return -ENOMEM;
739 		}
740 
741 		goto retry;
742 	}
743 
744 	add = add_reservation_in_range(resv, f, t, h_cg, h, NULL);
745 
746 	resv->adds_in_progress -= in_regions_needed;
747 
748 	spin_unlock(&resv->lock);
749 	return add;
750 }
751 
752 /*
753  * Examine the existing reserve map and determine how many
754  * huge pages in the specified range [f, t) are NOT currently
755  * represented.  This routine is called before a subsequent
756  * call to region_add that will actually modify the reserve
757  * map to add the specified range [f, t).  region_chg does
758  * not change the number of huge pages represented by the
759  * map.  A number of new file_region structures is added to the cache as a
760  * placeholder, for the subsequent region_add call to use. At least 1
761  * file_region structure is added.
762  *
763  * out_regions_needed is the number of regions added to the
764  * resv->adds_in_progress.  This value needs to be provided to a follow up call
765  * to region_add or region_abort for proper accounting.
766  *
767  * Returns the number of huge pages that need to be added to the existing
768  * reservation map for the range [f, t).  This number is greater or equal to
769  * zero.  -ENOMEM is returned if a new file_region structure or cache entry
770  * is needed and can not be allocated.
771  */
772 static long region_chg(struct resv_map *resv, long f, long t,
773 		       long *out_regions_needed)
774 {
775 	long chg = 0;
776 
777 	spin_lock(&resv->lock);
778 
779 	/* Count how many hugepages in this range are NOT represented. */
780 	chg = add_reservation_in_range(resv, f, t, NULL, NULL,
781 				       out_regions_needed);
782 
783 	if (*out_regions_needed == 0)
784 		*out_regions_needed = 1;
785 
786 	if (allocate_file_region_entries(resv, *out_regions_needed))
787 		return -ENOMEM;
788 
789 	resv->adds_in_progress += *out_regions_needed;
790 
791 	spin_unlock(&resv->lock);
792 	return chg;
793 }
794 
795 /*
796  * Abort the in progress add operation.  The adds_in_progress field
797  * of the resv_map keeps track of the operations in progress between
798  * calls to region_chg and region_add.  Operations are sometimes
799  * aborted after the call to region_chg.  In such cases, region_abort
800  * is called to decrement the adds_in_progress counter. regions_needed
801  * is the value returned by the region_chg call, it is used to decrement
802  * the adds_in_progress counter.
803  *
804  * NOTE: The range arguments [f, t) are not needed or used in this
805  * routine.  They are kept to make reading the calling code easier as
806  * arguments will match the associated region_chg call.
807  */
808 static void region_abort(struct resv_map *resv, long f, long t,
809 			 long regions_needed)
810 {
811 	spin_lock(&resv->lock);
812 	VM_BUG_ON(!resv->region_cache_count);
813 	resv->adds_in_progress -= regions_needed;
814 	spin_unlock(&resv->lock);
815 }
816 
817 /*
818  * Delete the specified range [f, t) from the reserve map.  If the
819  * t parameter is LONG_MAX, this indicates that ALL regions after f
820  * should be deleted.  Locate the regions which intersect [f, t)
821  * and either trim, delete or split the existing regions.
822  *
823  * Returns the number of huge pages deleted from the reserve map.
824  * In the normal case, the return value is zero or more.  In the
825  * case where a region must be split, a new region descriptor must
826  * be allocated.  If the allocation fails, -ENOMEM will be returned.
827  * NOTE: If the parameter t == LONG_MAX, then we will never split
828  * a region and possibly return -ENOMEM.  Callers specifying
829  * t == LONG_MAX do not need to check for -ENOMEM error.
830  */
831 static long region_del(struct resv_map *resv, long f, long t)
832 {
833 	struct list_head *head = &resv->regions;
834 	struct file_region *rg, *trg;
835 	struct file_region *nrg = NULL;
836 	long del = 0;
837 
838 retry:
839 	spin_lock(&resv->lock);
840 	list_for_each_entry_safe(rg, trg, head, link) {
841 		/*
842 		 * Skip regions before the range to be deleted.  file_region
843 		 * ranges are normally of the form [from, to).  However, there
844 		 * may be a "placeholder" entry in the map which is of the form
845 		 * (from, to) with from == to.  Check for placeholder entries
846 		 * at the beginning of the range to be deleted.
847 		 */
848 		if (rg->to <= f && (rg->to != rg->from || rg->to != f))
849 			continue;
850 
851 		if (rg->from >= t)
852 			break;
853 
854 		if (f > rg->from && t < rg->to) { /* Must split region */
855 			/*
856 			 * Check for an entry in the cache before dropping
857 			 * lock and attempting allocation.
858 			 */
859 			if (!nrg &&
860 			    resv->region_cache_count > resv->adds_in_progress) {
861 				nrg = list_first_entry(&resv->region_cache,
862 							struct file_region,
863 							link);
864 				list_del(&nrg->link);
865 				resv->region_cache_count--;
866 			}
867 
868 			if (!nrg) {
869 				spin_unlock(&resv->lock);
870 				nrg = kmalloc(sizeof(*nrg), GFP_KERNEL);
871 				if (!nrg)
872 					return -ENOMEM;
873 				goto retry;
874 			}
875 
876 			del += t - f;
877 			hugetlb_cgroup_uncharge_file_region(
878 				resv, rg, t - f, false);
879 
880 			/* New entry for end of split region */
881 			nrg->from = t;
882 			nrg->to = rg->to;
883 
884 			copy_hugetlb_cgroup_uncharge_info(nrg, rg);
885 
886 			INIT_LIST_HEAD(&nrg->link);
887 
888 			/* Original entry is trimmed */
889 			rg->to = f;
890 
891 			list_add(&nrg->link, &rg->link);
892 			nrg = NULL;
893 			break;
894 		}
895 
896 		if (f <= rg->from && t >= rg->to) { /* Remove entire region */
897 			del += rg->to - rg->from;
898 			hugetlb_cgroup_uncharge_file_region(resv, rg,
899 							    rg->to - rg->from, true);
900 			list_del(&rg->link);
901 			kfree(rg);
902 			continue;
903 		}
904 
905 		if (f <= rg->from) {	/* Trim beginning of region */
906 			hugetlb_cgroup_uncharge_file_region(resv, rg,
907 							    t - rg->from, false);
908 
909 			del += t - rg->from;
910 			rg->from = t;
911 		} else {		/* Trim end of region */
912 			hugetlb_cgroup_uncharge_file_region(resv, rg,
913 							    rg->to - f, false);
914 
915 			del += rg->to - f;
916 			rg->to = f;
917 		}
918 	}
919 
920 	spin_unlock(&resv->lock);
921 	kfree(nrg);
922 	return del;
923 }
924 
925 /*
926  * A rare out of memory error was encountered which prevented removal of
927  * the reserve map region for a page.  The huge page itself was free'ed
928  * and removed from the page cache.  This routine will adjust the subpool
929  * usage count, and the global reserve count if needed.  By incrementing
930  * these counts, the reserve map entry which could not be deleted will
931  * appear as a "reserved" entry instead of simply dangling with incorrect
932  * counts.
933  */
934 void hugetlb_fix_reserve_counts(struct inode *inode)
935 {
936 	struct hugepage_subpool *spool = subpool_inode(inode);
937 	long rsv_adjust;
938 	bool reserved = false;
939 
940 	rsv_adjust = hugepage_subpool_get_pages(spool, 1);
941 	if (rsv_adjust > 0) {
942 		struct hstate *h = hstate_inode(inode);
943 
944 		if (!hugetlb_acct_memory(h, 1))
945 			reserved = true;
946 	} else if (!rsv_adjust) {
947 		reserved = true;
948 	}
949 
950 	if (!reserved)
951 		pr_warn("hugetlb: Huge Page Reserved count may go negative.\n");
952 }
953 
954 /*
955  * Count and return the number of huge pages in the reserve map
956  * that intersect with the range [f, t).
957  */
958 static long region_count(struct resv_map *resv, long f, long t)
959 {
960 	struct list_head *head = &resv->regions;
961 	struct file_region *rg;
962 	long chg = 0;
963 
964 	spin_lock(&resv->lock);
965 	/* Locate each segment we overlap with, and count that overlap. */
966 	list_for_each_entry(rg, head, link) {
967 		long seg_from;
968 		long seg_to;
969 
970 		if (rg->to <= f)
971 			continue;
972 		if (rg->from >= t)
973 			break;
974 
975 		seg_from = max(rg->from, f);
976 		seg_to = min(rg->to, t);
977 
978 		chg += seg_to - seg_from;
979 	}
980 	spin_unlock(&resv->lock);
981 
982 	return chg;
983 }
984 
985 /*
986  * Convert the address within this vma to the page offset within
987  * the mapping, huge page units here.
988  */
989 static pgoff_t vma_hugecache_offset(struct hstate *h,
990 			struct vm_area_struct *vma, unsigned long address)
991 {
992 	return ((address - vma->vm_start) >> huge_page_shift(h)) +
993 			(vma->vm_pgoff >> huge_page_order(h));
994 }
995 
996 /**
997  * vma_kernel_pagesize - Page size granularity for this VMA.
998  * @vma: The user mapping.
999  *
1000  * Folios in this VMA will be aligned to, and at least the size of the
1001  * number of bytes returned by this function.
1002  *
1003  * Return: The default size of the folios allocated when backing a VMA.
1004  */
1005 unsigned long vma_kernel_pagesize(struct vm_area_struct *vma)
1006 {
1007 	if (vma->vm_ops && vma->vm_ops->pagesize)
1008 		return vma->vm_ops->pagesize(vma);
1009 	return PAGE_SIZE;
1010 }
1011 EXPORT_SYMBOL_GPL(vma_kernel_pagesize);
1012 
1013 /*
1014  * Return the page size being used by the MMU to back a VMA. In the majority
1015  * of cases, the page size used by the kernel matches the MMU size. On
1016  * architectures where it differs, an architecture-specific 'strong'
1017  * version of this symbol is required.
1018  */
1019 __weak unsigned long vma_mmu_pagesize(struct vm_area_struct *vma)
1020 {
1021 	return vma_kernel_pagesize(vma);
1022 }
1023 
1024 /*
1025  * Flags for MAP_PRIVATE reservations.  These are stored in the bottom
1026  * bits of the reservation map pointer, which are always clear due to
1027  * alignment.
1028  */
1029 #define HPAGE_RESV_OWNER    (1UL << 0)
1030 #define HPAGE_RESV_UNMAPPED (1UL << 1)
1031 #define HPAGE_RESV_MASK (HPAGE_RESV_OWNER | HPAGE_RESV_UNMAPPED)
1032 
1033 /*
1034  * These helpers are used to track how many pages are reserved for
1035  * faults in a MAP_PRIVATE mapping. Only the process that called mmap()
1036  * is guaranteed to have their future faults succeed.
1037  *
1038  * With the exception of hugetlb_dup_vma_private() which is called at fork(),
1039  * the reserve counters are updated with the hugetlb_lock held. It is safe
1040  * to reset the VMA at fork() time as it is not in use yet and there is no
1041  * chance of the global counters getting corrupted as a result of the values.
1042  *
1043  * The private mapping reservation is represented in a subtly different
1044  * manner to a shared mapping.  A shared mapping has a region map associated
1045  * with the underlying file, this region map represents the backing file
1046  * pages which have ever had a reservation assigned which this persists even
1047  * after the page is instantiated.  A private mapping has a region map
1048  * associated with the original mmap which is attached to all VMAs which
1049  * reference it, this region map represents those offsets which have consumed
1050  * reservation ie. where pages have been instantiated.
1051  */
1052 static unsigned long get_vma_private_data(struct vm_area_struct *vma)
1053 {
1054 	return (unsigned long)vma->vm_private_data;
1055 }
1056 
1057 static void set_vma_private_data(struct vm_area_struct *vma,
1058 							unsigned long value)
1059 {
1060 	vma->vm_private_data = (void *)value;
1061 }
1062 
1063 static void
1064 resv_map_set_hugetlb_cgroup_uncharge_info(struct resv_map *resv_map,
1065 					  struct hugetlb_cgroup *h_cg,
1066 					  struct hstate *h)
1067 {
1068 #ifdef CONFIG_CGROUP_HUGETLB
1069 	if (!h_cg || !h) {
1070 		resv_map->reservation_counter = NULL;
1071 		resv_map->pages_per_hpage = 0;
1072 		resv_map->css = NULL;
1073 	} else {
1074 		resv_map->reservation_counter =
1075 			&h_cg->rsvd_hugepage[hstate_index(h)];
1076 		resv_map->pages_per_hpage = pages_per_huge_page(h);
1077 		resv_map->css = &h_cg->css;
1078 	}
1079 #endif
1080 }
1081 
1082 struct resv_map *resv_map_alloc(void)
1083 {
1084 	struct resv_map *resv_map = kmalloc(sizeof(*resv_map), GFP_KERNEL);
1085 	struct file_region *rg = kmalloc(sizeof(*rg), GFP_KERNEL);
1086 
1087 	if (!resv_map || !rg) {
1088 		kfree(resv_map);
1089 		kfree(rg);
1090 		return NULL;
1091 	}
1092 
1093 	kref_init(&resv_map->refs);
1094 	spin_lock_init(&resv_map->lock);
1095 	INIT_LIST_HEAD(&resv_map->regions);
1096 	init_rwsem(&resv_map->rw_sema);
1097 
1098 	resv_map->adds_in_progress = 0;
1099 	/*
1100 	 * Initialize these to 0. On shared mappings, 0's here indicate these
1101 	 * fields don't do cgroup accounting. On private mappings, these will be
1102 	 * re-initialized to the proper values, to indicate that hugetlb cgroup
1103 	 * reservations are to be un-charged from here.
1104 	 */
1105 	resv_map_set_hugetlb_cgroup_uncharge_info(resv_map, NULL, NULL);
1106 
1107 	INIT_LIST_HEAD(&resv_map->region_cache);
1108 	list_add(&rg->link, &resv_map->region_cache);
1109 	resv_map->region_cache_count = 1;
1110 
1111 	return resv_map;
1112 }
1113 
1114 void resv_map_release(struct kref *ref)
1115 {
1116 	struct resv_map *resv_map = container_of(ref, struct resv_map, refs);
1117 	struct list_head *head = &resv_map->region_cache;
1118 	struct file_region *rg, *trg;
1119 
1120 	/* Clear out any active regions before we release the map. */
1121 	region_del(resv_map, 0, LONG_MAX);
1122 
1123 	/* ... and any entries left in the cache */
1124 	list_for_each_entry_safe(rg, trg, head, link) {
1125 		list_del(&rg->link);
1126 		kfree(rg);
1127 	}
1128 
1129 	VM_BUG_ON(resv_map->adds_in_progress);
1130 
1131 	kfree(resv_map);
1132 }
1133 
1134 static inline struct resv_map *inode_resv_map(struct inode *inode)
1135 {
1136 	/*
1137 	 * At inode evict time, i_mapping may not point to the original
1138 	 * address space within the inode.  This original address space
1139 	 * contains the pointer to the resv_map.  So, always use the
1140 	 * address space embedded within the inode.
1141 	 * The VERY common case is inode->mapping == &inode->i_data but,
1142 	 * this may not be true for device special inodes.
1143 	 */
1144 	return (struct resv_map *)(&inode->i_data)->private_data;
1145 }
1146 
1147 static struct resv_map *vma_resv_map(struct vm_area_struct *vma)
1148 {
1149 	VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
1150 	if (vma->vm_flags & VM_MAYSHARE) {
1151 		struct address_space *mapping = vma->vm_file->f_mapping;
1152 		struct inode *inode = mapping->host;
1153 
1154 		return inode_resv_map(inode);
1155 
1156 	} else {
1157 		return (struct resv_map *)(get_vma_private_data(vma) &
1158 							~HPAGE_RESV_MASK);
1159 	}
1160 }
1161 
1162 static void set_vma_resv_map(struct vm_area_struct *vma, struct resv_map *map)
1163 {
1164 	VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
1165 	VM_BUG_ON_VMA(vma->vm_flags & VM_MAYSHARE, vma);
1166 
1167 	set_vma_private_data(vma, (unsigned long)map);
1168 }
1169 
1170 static void set_vma_resv_flags(struct vm_area_struct *vma, unsigned long flags)
1171 {
1172 	VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
1173 	VM_BUG_ON_VMA(vma->vm_flags & VM_MAYSHARE, vma);
1174 
1175 	set_vma_private_data(vma, get_vma_private_data(vma) | flags);
1176 }
1177 
1178 static int is_vma_resv_set(struct vm_area_struct *vma, unsigned long flag)
1179 {
1180 	VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
1181 
1182 	return (get_vma_private_data(vma) & flag) != 0;
1183 }
1184 
1185 void hugetlb_dup_vma_private(struct vm_area_struct *vma)
1186 {
1187 	VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
1188 	/*
1189 	 * Clear vm_private_data
1190 	 * - For shared mappings this is a per-vma semaphore that may be
1191 	 *   allocated in a subsequent call to hugetlb_vm_op_open.
1192 	 *   Before clearing, make sure pointer is not associated with vma
1193 	 *   as this will leak the structure.  This is the case when called
1194 	 *   via clear_vma_resv_huge_pages() and hugetlb_vm_op_open has already
1195 	 *   been called to allocate a new structure.
1196 	 * - For MAP_PRIVATE mappings, this is the reserve map which does
1197 	 *   not apply to children.  Faults generated by the children are
1198 	 *   not guaranteed to succeed, even if read-only.
1199 	 */
1200 	if (vma->vm_flags & VM_MAYSHARE) {
1201 		struct hugetlb_vma_lock *vma_lock = vma->vm_private_data;
1202 
1203 		if (vma_lock && vma_lock->vma != vma)
1204 			vma->vm_private_data = NULL;
1205 	} else
1206 		vma->vm_private_data = NULL;
1207 }
1208 
1209 /*
1210  * Reset and decrement one ref on hugepage private reservation.
1211  * Called with mm->mmap_lock writer semaphore held.
1212  * This function should be only used by move_vma() and operate on
1213  * same sized vma. It should never come here with last ref on the
1214  * reservation.
1215  */
1216 void clear_vma_resv_huge_pages(struct vm_area_struct *vma)
1217 {
1218 	/*
1219 	 * Clear the old hugetlb private page reservation.
1220 	 * It has already been transferred to new_vma.
1221 	 *
1222 	 * During a mremap() operation of a hugetlb vma we call move_vma()
1223 	 * which copies vma into new_vma and unmaps vma. After the copy
1224 	 * operation both new_vma and vma share a reference to the resv_map
1225 	 * struct, and at that point vma is about to be unmapped. We don't
1226 	 * want to return the reservation to the pool at unmap of vma because
1227 	 * the reservation still lives on in new_vma, so simply decrement the
1228 	 * ref here and remove the resv_map reference from this vma.
1229 	 */
1230 	struct resv_map *reservations = vma_resv_map(vma);
1231 
1232 	if (reservations && is_vma_resv_set(vma, HPAGE_RESV_OWNER)) {
1233 		resv_map_put_hugetlb_cgroup_uncharge_info(reservations);
1234 		kref_put(&reservations->refs, resv_map_release);
1235 	}
1236 
1237 	hugetlb_dup_vma_private(vma);
1238 }
1239 
1240 /* Returns true if the VMA has associated reserve pages */
1241 static bool vma_has_reserves(struct vm_area_struct *vma, long chg)
1242 {
1243 	if (vma->vm_flags & VM_NORESERVE) {
1244 		/*
1245 		 * This address is already reserved by other process(chg == 0),
1246 		 * so, we should decrement reserved count. Without decrementing,
1247 		 * reserve count remains after releasing inode, because this
1248 		 * allocated page will go into page cache and is regarded as
1249 		 * coming from reserved pool in releasing step.  Currently, we
1250 		 * don't have any other solution to deal with this situation
1251 		 * properly, so add work-around here.
1252 		 */
1253 		if (vma->vm_flags & VM_MAYSHARE && chg == 0)
1254 			return true;
1255 		else
1256 			return false;
1257 	}
1258 
1259 	/* Shared mappings always use reserves */
1260 	if (vma->vm_flags & VM_MAYSHARE) {
1261 		/*
1262 		 * We know VM_NORESERVE is not set.  Therefore, there SHOULD
1263 		 * be a region map for all pages.  The only situation where
1264 		 * there is no region map is if a hole was punched via
1265 		 * fallocate.  In this case, there really are no reserves to
1266 		 * use.  This situation is indicated if chg != 0.
1267 		 */
1268 		if (chg)
1269 			return false;
1270 		else
1271 			return true;
1272 	}
1273 
1274 	/*
1275 	 * Only the process that called mmap() has reserves for
1276 	 * private mappings.
1277 	 */
1278 	if (is_vma_resv_set(vma, HPAGE_RESV_OWNER)) {
1279 		/*
1280 		 * Like the shared case above, a hole punch or truncate
1281 		 * could have been performed on the private mapping.
1282 		 * Examine the value of chg to determine if reserves
1283 		 * actually exist or were previously consumed.
1284 		 * Very Subtle - The value of chg comes from a previous
1285 		 * call to vma_needs_reserves().  The reserve map for
1286 		 * private mappings has different (opposite) semantics
1287 		 * than that of shared mappings.  vma_needs_reserves()
1288 		 * has already taken this difference in semantics into
1289 		 * account.  Therefore, the meaning of chg is the same
1290 		 * as in the shared case above.  Code could easily be
1291 		 * combined, but keeping it separate draws attention to
1292 		 * subtle differences.
1293 		 */
1294 		if (chg)
1295 			return false;
1296 		else
1297 			return true;
1298 	}
1299 
1300 	return false;
1301 }
1302 
1303 static void enqueue_hugetlb_folio(struct hstate *h, struct folio *folio)
1304 {
1305 	int nid = folio_nid(folio);
1306 
1307 	lockdep_assert_held(&hugetlb_lock);
1308 	VM_BUG_ON_FOLIO(folio_ref_count(folio), folio);
1309 
1310 	list_move(&folio->lru, &h->hugepage_freelists[nid]);
1311 	h->free_huge_pages++;
1312 	h->free_huge_pages_node[nid]++;
1313 	folio_set_hugetlb_freed(folio);
1314 }
1315 
1316 static struct folio *dequeue_hugetlb_folio_node_exact(struct hstate *h,
1317 								int nid)
1318 {
1319 	struct folio *folio;
1320 	bool pin = !!(current->flags & PF_MEMALLOC_PIN);
1321 
1322 	lockdep_assert_held(&hugetlb_lock);
1323 	list_for_each_entry(folio, &h->hugepage_freelists[nid], lru) {
1324 		if (pin && !folio_is_longterm_pinnable(folio))
1325 			continue;
1326 
1327 		if (folio_test_hwpoison(folio))
1328 			continue;
1329 
1330 		list_move(&folio->lru, &h->hugepage_activelist);
1331 		folio_ref_unfreeze(folio, 1);
1332 		folio_clear_hugetlb_freed(folio);
1333 		h->free_huge_pages--;
1334 		h->free_huge_pages_node[nid]--;
1335 		return folio;
1336 	}
1337 
1338 	return NULL;
1339 }
1340 
1341 static struct folio *dequeue_hugetlb_folio_nodemask(struct hstate *h, gfp_t gfp_mask,
1342 							int nid, nodemask_t *nmask)
1343 {
1344 	unsigned int cpuset_mems_cookie;
1345 	struct zonelist *zonelist;
1346 	struct zone *zone;
1347 	struct zoneref *z;
1348 	int node = NUMA_NO_NODE;
1349 
1350 	zonelist = node_zonelist(nid, gfp_mask);
1351 
1352 retry_cpuset:
1353 	cpuset_mems_cookie = read_mems_allowed_begin();
1354 	for_each_zone_zonelist_nodemask(zone, z, zonelist, gfp_zone(gfp_mask), nmask) {
1355 		struct folio *folio;
1356 
1357 		if (!cpuset_zone_allowed(zone, gfp_mask))
1358 			continue;
1359 		/*
1360 		 * no need to ask again on the same node. Pool is node rather than
1361 		 * zone aware
1362 		 */
1363 		if (zone_to_nid(zone) == node)
1364 			continue;
1365 		node = zone_to_nid(zone);
1366 
1367 		folio = dequeue_hugetlb_folio_node_exact(h, node);
1368 		if (folio)
1369 			return folio;
1370 	}
1371 	if (unlikely(read_mems_allowed_retry(cpuset_mems_cookie)))
1372 		goto retry_cpuset;
1373 
1374 	return NULL;
1375 }
1376 
1377 static unsigned long available_huge_pages(struct hstate *h)
1378 {
1379 	return h->free_huge_pages - h->resv_huge_pages;
1380 }
1381 
1382 static struct folio *dequeue_hugetlb_folio_vma(struct hstate *h,
1383 				struct vm_area_struct *vma,
1384 				unsigned long address, int avoid_reserve,
1385 				long chg)
1386 {
1387 	struct folio *folio = NULL;
1388 	struct mempolicy *mpol;
1389 	gfp_t gfp_mask;
1390 	nodemask_t *nodemask;
1391 	int nid;
1392 
1393 	/*
1394 	 * A child process with MAP_PRIVATE mappings created by their parent
1395 	 * have no page reserves. This check ensures that reservations are
1396 	 * not "stolen". The child may still get SIGKILLed
1397 	 */
1398 	if (!vma_has_reserves(vma, chg) && !available_huge_pages(h))
1399 		goto err;
1400 
1401 	/* If reserves cannot be used, ensure enough pages are in the pool */
1402 	if (avoid_reserve && !available_huge_pages(h))
1403 		goto err;
1404 
1405 	gfp_mask = htlb_alloc_mask(h);
1406 	nid = huge_node(vma, address, gfp_mask, &mpol, &nodemask);
1407 
1408 	if (mpol_is_preferred_many(mpol)) {
1409 		folio = dequeue_hugetlb_folio_nodemask(h, gfp_mask,
1410 							nid, nodemask);
1411 
1412 		/* Fallback to all nodes if page==NULL */
1413 		nodemask = NULL;
1414 	}
1415 
1416 	if (!folio)
1417 		folio = dequeue_hugetlb_folio_nodemask(h, gfp_mask,
1418 							nid, nodemask);
1419 
1420 	if (folio && !avoid_reserve && vma_has_reserves(vma, chg)) {
1421 		folio_set_hugetlb_restore_reserve(folio);
1422 		h->resv_huge_pages--;
1423 	}
1424 
1425 	mpol_cond_put(mpol);
1426 	return folio;
1427 
1428 err:
1429 	return NULL;
1430 }
1431 
1432 /*
1433  * common helper functions for hstate_next_node_to_{alloc|free}.
1434  * We may have allocated or freed a huge page based on a different
1435  * nodes_allowed previously, so h->next_node_to_{alloc|free} might
1436  * be outside of *nodes_allowed.  Ensure that we use an allowed
1437  * node for alloc or free.
1438  */
1439 static int next_node_allowed(int nid, nodemask_t *nodes_allowed)
1440 {
1441 	nid = next_node_in(nid, *nodes_allowed);
1442 	VM_BUG_ON(nid >= MAX_NUMNODES);
1443 
1444 	return nid;
1445 }
1446 
1447 static int get_valid_node_allowed(int nid, nodemask_t *nodes_allowed)
1448 {
1449 	if (!node_isset(nid, *nodes_allowed))
1450 		nid = next_node_allowed(nid, nodes_allowed);
1451 	return nid;
1452 }
1453 
1454 /*
1455  * returns the previously saved node ["this node"] from which to
1456  * allocate a persistent huge page for the pool and advance the
1457  * next node from which to allocate, handling wrap at end of node
1458  * mask.
1459  */
1460 static int hstate_next_node_to_alloc(struct hstate *h,
1461 					nodemask_t *nodes_allowed)
1462 {
1463 	int nid;
1464 
1465 	VM_BUG_ON(!nodes_allowed);
1466 
1467 	nid = get_valid_node_allowed(h->next_nid_to_alloc, nodes_allowed);
1468 	h->next_nid_to_alloc = next_node_allowed(nid, nodes_allowed);
1469 
1470 	return nid;
1471 }
1472 
1473 /*
1474  * helper for remove_pool_hugetlb_folio() - return the previously saved
1475  * node ["this node"] from which to free a huge page.  Advance the
1476  * next node id whether or not we find a free huge page to free so
1477  * that the next attempt to free addresses the next node.
1478  */
1479 static int hstate_next_node_to_free(struct hstate *h, nodemask_t *nodes_allowed)
1480 {
1481 	int nid;
1482 
1483 	VM_BUG_ON(!nodes_allowed);
1484 
1485 	nid = get_valid_node_allowed(h->next_nid_to_free, nodes_allowed);
1486 	h->next_nid_to_free = next_node_allowed(nid, nodes_allowed);
1487 
1488 	return nid;
1489 }
1490 
1491 #define for_each_node_mask_to_alloc(hs, nr_nodes, node, mask)		\
1492 	for (nr_nodes = nodes_weight(*mask);				\
1493 		nr_nodes > 0 &&						\
1494 		((node = hstate_next_node_to_alloc(hs, mask)) || 1);	\
1495 		nr_nodes--)
1496 
1497 #define for_each_node_mask_to_free(hs, nr_nodes, node, mask)		\
1498 	for (nr_nodes = nodes_weight(*mask);				\
1499 		nr_nodes > 0 &&						\
1500 		((node = hstate_next_node_to_free(hs, mask)) || 1);	\
1501 		nr_nodes--)
1502 
1503 /* used to demote non-gigantic_huge pages as well */
1504 static void __destroy_compound_gigantic_folio(struct folio *folio,
1505 					unsigned int order, bool demote)
1506 {
1507 	int i;
1508 	int nr_pages = 1 << order;
1509 	struct page *p;
1510 
1511 	atomic_set(&folio->_entire_mapcount, 0);
1512 	atomic_set(&folio->_nr_pages_mapped, 0);
1513 	atomic_set(&folio->_pincount, 0);
1514 
1515 	for (i = 1; i < nr_pages; i++) {
1516 		p = folio_page(folio, i);
1517 		p->flags &= ~PAGE_FLAGS_CHECK_AT_FREE;
1518 		p->mapping = NULL;
1519 		clear_compound_head(p);
1520 		if (!demote)
1521 			set_page_refcounted(p);
1522 	}
1523 
1524 	__folio_clear_head(folio);
1525 }
1526 
1527 static void destroy_compound_hugetlb_folio_for_demote(struct folio *folio,
1528 					unsigned int order)
1529 {
1530 	__destroy_compound_gigantic_folio(folio, order, true);
1531 }
1532 
1533 #ifdef CONFIG_ARCH_HAS_GIGANTIC_PAGE
1534 static void destroy_compound_gigantic_folio(struct folio *folio,
1535 					unsigned int order)
1536 {
1537 	__destroy_compound_gigantic_folio(folio, order, false);
1538 }
1539 
1540 static void free_gigantic_folio(struct folio *folio, unsigned int order)
1541 {
1542 	/*
1543 	 * If the page isn't allocated using the cma allocator,
1544 	 * cma_release() returns false.
1545 	 */
1546 #ifdef CONFIG_CMA
1547 	int nid = folio_nid(folio);
1548 
1549 	if (cma_release(hugetlb_cma[nid], &folio->page, 1 << order))
1550 		return;
1551 #endif
1552 
1553 	free_contig_range(folio_pfn(folio), 1 << order);
1554 }
1555 
1556 #ifdef CONFIG_CONTIG_ALLOC
1557 static struct folio *alloc_gigantic_folio(struct hstate *h, gfp_t gfp_mask,
1558 		int nid, nodemask_t *nodemask)
1559 {
1560 	struct page *page;
1561 	unsigned long nr_pages = pages_per_huge_page(h);
1562 	if (nid == NUMA_NO_NODE)
1563 		nid = numa_mem_id();
1564 
1565 #ifdef CONFIG_CMA
1566 	{
1567 		int node;
1568 
1569 		if (hugetlb_cma[nid]) {
1570 			page = cma_alloc(hugetlb_cma[nid], nr_pages,
1571 					huge_page_order(h), true);
1572 			if (page)
1573 				return page_folio(page);
1574 		}
1575 
1576 		if (!(gfp_mask & __GFP_THISNODE)) {
1577 			for_each_node_mask(node, *nodemask) {
1578 				if (node == nid || !hugetlb_cma[node])
1579 					continue;
1580 
1581 				page = cma_alloc(hugetlb_cma[node], nr_pages,
1582 						huge_page_order(h), true);
1583 				if (page)
1584 					return page_folio(page);
1585 			}
1586 		}
1587 	}
1588 #endif
1589 
1590 	page = alloc_contig_pages(nr_pages, gfp_mask, nid, nodemask);
1591 	return page ? page_folio(page) : NULL;
1592 }
1593 
1594 #else /* !CONFIG_CONTIG_ALLOC */
1595 static struct folio *alloc_gigantic_folio(struct hstate *h, gfp_t gfp_mask,
1596 					int nid, nodemask_t *nodemask)
1597 {
1598 	return NULL;
1599 }
1600 #endif /* CONFIG_CONTIG_ALLOC */
1601 
1602 #else /* !CONFIG_ARCH_HAS_GIGANTIC_PAGE */
1603 static struct folio *alloc_gigantic_folio(struct hstate *h, gfp_t gfp_mask,
1604 					int nid, nodemask_t *nodemask)
1605 {
1606 	return NULL;
1607 }
1608 static inline void free_gigantic_folio(struct folio *folio,
1609 						unsigned int order) { }
1610 static inline void destroy_compound_gigantic_folio(struct folio *folio,
1611 						unsigned int order) { }
1612 #endif
1613 
1614 static inline void __clear_hugetlb_destructor(struct hstate *h,
1615 						struct folio *folio)
1616 {
1617 	lockdep_assert_held(&hugetlb_lock);
1618 
1619 	folio_clear_hugetlb(folio);
1620 }
1621 
1622 /*
1623  * Remove hugetlb folio from lists.
1624  * If vmemmap exists for the folio, update dtor so that the folio appears
1625  * as just a compound page.  Otherwise, wait until after allocating vmemmap
1626  * to update dtor.
1627  *
1628  * A reference is held on the folio, except in the case of demote.
1629  *
1630  * Must be called with hugetlb lock held.
1631  */
1632 static void __remove_hugetlb_folio(struct hstate *h, struct folio *folio,
1633 							bool adjust_surplus,
1634 							bool demote)
1635 {
1636 	int nid = folio_nid(folio);
1637 
1638 	VM_BUG_ON_FOLIO(hugetlb_cgroup_from_folio(folio), folio);
1639 	VM_BUG_ON_FOLIO(hugetlb_cgroup_from_folio_rsvd(folio), folio);
1640 
1641 	lockdep_assert_held(&hugetlb_lock);
1642 	if (hstate_is_gigantic(h) && !gigantic_page_runtime_supported())
1643 		return;
1644 
1645 	list_del(&folio->lru);
1646 
1647 	if (folio_test_hugetlb_freed(folio)) {
1648 		h->free_huge_pages--;
1649 		h->free_huge_pages_node[nid]--;
1650 	}
1651 	if (adjust_surplus) {
1652 		h->surplus_huge_pages--;
1653 		h->surplus_huge_pages_node[nid]--;
1654 	}
1655 
1656 	/*
1657 	 * We can only clear the hugetlb destructor after allocating vmemmap
1658 	 * pages.  Otherwise, someone (memory error handling) may try to write
1659 	 * to tail struct pages.
1660 	 */
1661 	if (!folio_test_hugetlb_vmemmap_optimized(folio))
1662 		__clear_hugetlb_destructor(h, folio);
1663 
1664 	 /*
1665 	  * In the case of demote we do not ref count the page as it will soon
1666 	  * be turned into a page of smaller size.
1667 	 */
1668 	if (!demote)
1669 		folio_ref_unfreeze(folio, 1);
1670 
1671 	h->nr_huge_pages--;
1672 	h->nr_huge_pages_node[nid]--;
1673 }
1674 
1675 static void remove_hugetlb_folio(struct hstate *h, struct folio *folio,
1676 							bool adjust_surplus)
1677 {
1678 	__remove_hugetlb_folio(h, folio, adjust_surplus, false);
1679 }
1680 
1681 static void remove_hugetlb_folio_for_demote(struct hstate *h, struct folio *folio,
1682 							bool adjust_surplus)
1683 {
1684 	__remove_hugetlb_folio(h, folio, adjust_surplus, true);
1685 }
1686 
1687 static void add_hugetlb_folio(struct hstate *h, struct folio *folio,
1688 			     bool adjust_surplus)
1689 {
1690 	int zeroed;
1691 	int nid = folio_nid(folio);
1692 
1693 	VM_BUG_ON_FOLIO(!folio_test_hugetlb_vmemmap_optimized(folio), folio);
1694 
1695 	lockdep_assert_held(&hugetlb_lock);
1696 
1697 	INIT_LIST_HEAD(&folio->lru);
1698 	h->nr_huge_pages++;
1699 	h->nr_huge_pages_node[nid]++;
1700 
1701 	if (adjust_surplus) {
1702 		h->surplus_huge_pages++;
1703 		h->surplus_huge_pages_node[nid]++;
1704 	}
1705 
1706 	folio_set_hugetlb(folio);
1707 	folio_change_private(folio, NULL);
1708 	/*
1709 	 * We have to set hugetlb_vmemmap_optimized again as above
1710 	 * folio_change_private(folio, NULL) cleared it.
1711 	 */
1712 	folio_set_hugetlb_vmemmap_optimized(folio);
1713 
1714 	/*
1715 	 * This folio is about to be managed by the hugetlb allocator and
1716 	 * should have no users.  Drop our reference, and check for others
1717 	 * just in case.
1718 	 */
1719 	zeroed = folio_put_testzero(folio);
1720 	if (unlikely(!zeroed))
1721 		/*
1722 		 * It is VERY unlikely soneone else has taken a ref
1723 		 * on the folio.  In this case, we simply return as
1724 		 * free_huge_folio() will be called when this other ref
1725 		 * is dropped.
1726 		 */
1727 		return;
1728 
1729 	arch_clear_hugepage_flags(&folio->page);
1730 	enqueue_hugetlb_folio(h, folio);
1731 }
1732 
1733 static void __update_and_free_hugetlb_folio(struct hstate *h,
1734 						struct folio *folio)
1735 {
1736 	bool clear_dtor = folio_test_hugetlb_vmemmap_optimized(folio);
1737 
1738 	if (hstate_is_gigantic(h) && !gigantic_page_runtime_supported())
1739 		return;
1740 
1741 	/*
1742 	 * If we don't know which subpages are hwpoisoned, we can't free
1743 	 * the hugepage, so it's leaked intentionally.
1744 	 */
1745 	if (folio_test_hugetlb_raw_hwp_unreliable(folio))
1746 		return;
1747 
1748 	/*
1749 	 * If folio is not vmemmap optimized (!clear_dtor), then the folio
1750 	 * is no longer identified as a hugetlb page.  hugetlb_vmemmap_restore
1751 	 * can only be passed hugetlb pages and will BUG otherwise.
1752 	 */
1753 	if (clear_dtor && hugetlb_vmemmap_restore(h, &folio->page)) {
1754 		spin_lock_irq(&hugetlb_lock);
1755 		/*
1756 		 * If we cannot allocate vmemmap pages, just refuse to free the
1757 		 * page and put the page back on the hugetlb free list and treat
1758 		 * as a surplus page.
1759 		 */
1760 		add_hugetlb_folio(h, folio, true);
1761 		spin_unlock_irq(&hugetlb_lock);
1762 		return;
1763 	}
1764 
1765 	/*
1766 	 * Move PageHWPoison flag from head page to the raw error pages,
1767 	 * which makes any healthy subpages reusable.
1768 	 */
1769 	if (unlikely(folio_test_hwpoison(folio)))
1770 		folio_clear_hugetlb_hwpoison(folio);
1771 
1772 	/*
1773 	 * If vmemmap pages were allocated above, then we need to clear the
1774 	 * hugetlb destructor under the hugetlb lock.
1775 	 */
1776 	if (clear_dtor) {
1777 		spin_lock_irq(&hugetlb_lock);
1778 		__clear_hugetlb_destructor(h, folio);
1779 		spin_unlock_irq(&hugetlb_lock);
1780 	}
1781 
1782 	/*
1783 	 * Non-gigantic pages demoted from CMA allocated gigantic pages
1784 	 * need to be given back to CMA in free_gigantic_folio.
1785 	 */
1786 	if (hstate_is_gigantic(h) ||
1787 	    hugetlb_cma_folio(folio, huge_page_order(h))) {
1788 		destroy_compound_gigantic_folio(folio, huge_page_order(h));
1789 		free_gigantic_folio(folio, huge_page_order(h));
1790 	} else {
1791 		__free_pages(&folio->page, huge_page_order(h));
1792 	}
1793 }
1794 
1795 /*
1796  * As update_and_free_hugetlb_folio() can be called under any context, so we cannot
1797  * use GFP_KERNEL to allocate vmemmap pages. However, we can defer the
1798  * actual freeing in a workqueue to prevent from using GFP_ATOMIC to allocate
1799  * the vmemmap pages.
1800  *
1801  * free_hpage_workfn() locklessly retrieves the linked list of pages to be
1802  * freed and frees them one-by-one. As the page->mapping pointer is going
1803  * to be cleared in free_hpage_workfn() anyway, it is reused as the llist_node
1804  * structure of a lockless linked list of huge pages to be freed.
1805  */
1806 static LLIST_HEAD(hpage_freelist);
1807 
1808 static void free_hpage_workfn(struct work_struct *work)
1809 {
1810 	struct llist_node *node;
1811 
1812 	node = llist_del_all(&hpage_freelist);
1813 
1814 	while (node) {
1815 		struct folio *folio;
1816 		struct hstate *h;
1817 
1818 		folio = container_of((struct address_space **)node,
1819 				     struct folio, mapping);
1820 		node = node->next;
1821 		folio->mapping = NULL;
1822 		/*
1823 		 * The VM_BUG_ON_FOLIO(!folio_test_hugetlb(folio), folio) in
1824 		 * folio_hstate() is going to trigger because a previous call to
1825 		 * remove_hugetlb_folio() will clear the hugetlb bit, so do
1826 		 * not use folio_hstate() directly.
1827 		 */
1828 		h = size_to_hstate(folio_size(folio));
1829 
1830 		__update_and_free_hugetlb_folio(h, folio);
1831 
1832 		cond_resched();
1833 	}
1834 }
1835 static DECLARE_WORK(free_hpage_work, free_hpage_workfn);
1836 
1837 static inline void flush_free_hpage_work(struct hstate *h)
1838 {
1839 	if (hugetlb_vmemmap_optimizable(h))
1840 		flush_work(&free_hpage_work);
1841 }
1842 
1843 static void update_and_free_hugetlb_folio(struct hstate *h, struct folio *folio,
1844 				 bool atomic)
1845 {
1846 	if (!folio_test_hugetlb_vmemmap_optimized(folio) || !atomic) {
1847 		__update_and_free_hugetlb_folio(h, folio);
1848 		return;
1849 	}
1850 
1851 	/*
1852 	 * Defer freeing to avoid using GFP_ATOMIC to allocate vmemmap pages.
1853 	 *
1854 	 * Only call schedule_work() if hpage_freelist is previously
1855 	 * empty. Otherwise, schedule_work() had been called but the workfn
1856 	 * hasn't retrieved the list yet.
1857 	 */
1858 	if (llist_add((struct llist_node *)&folio->mapping, &hpage_freelist))
1859 		schedule_work(&free_hpage_work);
1860 }
1861 
1862 static void update_and_free_pages_bulk(struct hstate *h, struct list_head *list)
1863 {
1864 	struct folio *folio, *t_folio;
1865 
1866 	list_for_each_entry_safe(folio, t_folio, list, lru) {
1867 		update_and_free_hugetlb_folio(h, folio, false);
1868 		cond_resched();
1869 	}
1870 }
1871 
1872 struct hstate *size_to_hstate(unsigned long size)
1873 {
1874 	struct hstate *h;
1875 
1876 	for_each_hstate(h) {
1877 		if (huge_page_size(h) == size)
1878 			return h;
1879 	}
1880 	return NULL;
1881 }
1882 
1883 void free_huge_folio(struct folio *folio)
1884 {
1885 	/*
1886 	 * Can't pass hstate in here because it is called from the
1887 	 * compound page destructor.
1888 	 */
1889 	struct hstate *h = folio_hstate(folio);
1890 	int nid = folio_nid(folio);
1891 	struct hugepage_subpool *spool = hugetlb_folio_subpool(folio);
1892 	bool restore_reserve;
1893 	unsigned long flags;
1894 
1895 	VM_BUG_ON_FOLIO(folio_ref_count(folio), folio);
1896 	VM_BUG_ON_FOLIO(folio_mapcount(folio), folio);
1897 
1898 	hugetlb_set_folio_subpool(folio, NULL);
1899 	if (folio_test_anon(folio))
1900 		__ClearPageAnonExclusive(&folio->page);
1901 	folio->mapping = NULL;
1902 	restore_reserve = folio_test_hugetlb_restore_reserve(folio);
1903 	folio_clear_hugetlb_restore_reserve(folio);
1904 
1905 	/*
1906 	 * If HPageRestoreReserve was set on page, page allocation consumed a
1907 	 * reservation.  If the page was associated with a subpool, there
1908 	 * would have been a page reserved in the subpool before allocation
1909 	 * via hugepage_subpool_get_pages().  Since we are 'restoring' the
1910 	 * reservation, do not call hugepage_subpool_put_pages() as this will
1911 	 * remove the reserved page from the subpool.
1912 	 */
1913 	if (!restore_reserve) {
1914 		/*
1915 		 * A return code of zero implies that the subpool will be
1916 		 * under its minimum size if the reservation is not restored
1917 		 * after page is free.  Therefore, force restore_reserve
1918 		 * operation.
1919 		 */
1920 		if (hugepage_subpool_put_pages(spool, 1) == 0)
1921 			restore_reserve = true;
1922 	}
1923 
1924 	spin_lock_irqsave(&hugetlb_lock, flags);
1925 	folio_clear_hugetlb_migratable(folio);
1926 	hugetlb_cgroup_uncharge_folio(hstate_index(h),
1927 				     pages_per_huge_page(h), folio);
1928 	hugetlb_cgroup_uncharge_folio_rsvd(hstate_index(h),
1929 					  pages_per_huge_page(h), folio);
1930 	if (restore_reserve)
1931 		h->resv_huge_pages++;
1932 
1933 	if (folio_test_hugetlb_temporary(folio)) {
1934 		remove_hugetlb_folio(h, folio, false);
1935 		spin_unlock_irqrestore(&hugetlb_lock, flags);
1936 		update_and_free_hugetlb_folio(h, folio, true);
1937 	} else if (h->surplus_huge_pages_node[nid]) {
1938 		/* remove the page from active list */
1939 		remove_hugetlb_folio(h, folio, true);
1940 		spin_unlock_irqrestore(&hugetlb_lock, flags);
1941 		update_and_free_hugetlb_folio(h, folio, true);
1942 	} else {
1943 		arch_clear_hugepage_flags(&folio->page);
1944 		enqueue_hugetlb_folio(h, folio);
1945 		spin_unlock_irqrestore(&hugetlb_lock, flags);
1946 	}
1947 }
1948 
1949 /*
1950  * Must be called with the hugetlb lock held
1951  */
1952 static void __prep_account_new_huge_page(struct hstate *h, int nid)
1953 {
1954 	lockdep_assert_held(&hugetlb_lock);
1955 	h->nr_huge_pages++;
1956 	h->nr_huge_pages_node[nid]++;
1957 }
1958 
1959 static void __prep_new_hugetlb_folio(struct hstate *h, struct folio *folio)
1960 {
1961 	folio_set_hugetlb(folio);
1962 	hugetlb_vmemmap_optimize(h, &folio->page);
1963 	INIT_LIST_HEAD(&folio->lru);
1964 	hugetlb_set_folio_subpool(folio, NULL);
1965 	set_hugetlb_cgroup(folio, NULL);
1966 	set_hugetlb_cgroup_rsvd(folio, NULL);
1967 }
1968 
1969 static void prep_new_hugetlb_folio(struct hstate *h, struct folio *folio, int nid)
1970 {
1971 	__prep_new_hugetlb_folio(h, folio);
1972 	spin_lock_irq(&hugetlb_lock);
1973 	__prep_account_new_huge_page(h, nid);
1974 	spin_unlock_irq(&hugetlb_lock);
1975 }
1976 
1977 static bool __prep_compound_gigantic_folio(struct folio *folio,
1978 					unsigned int order, bool demote)
1979 {
1980 	int i, j;
1981 	int nr_pages = 1 << order;
1982 	struct page *p;
1983 
1984 	__folio_clear_reserved(folio);
1985 	for (i = 0; i < nr_pages; i++) {
1986 		p = folio_page(folio, i);
1987 
1988 		/*
1989 		 * For gigantic hugepages allocated through bootmem at
1990 		 * boot, it's safer to be consistent with the not-gigantic
1991 		 * hugepages and clear the PG_reserved bit from all tail pages
1992 		 * too.  Otherwise drivers using get_user_pages() to access tail
1993 		 * pages may get the reference counting wrong if they see
1994 		 * PG_reserved set on a tail page (despite the head page not
1995 		 * having PG_reserved set).  Enforcing this consistency between
1996 		 * head and tail pages allows drivers to optimize away a check
1997 		 * on the head page when they need know if put_page() is needed
1998 		 * after get_user_pages().
1999 		 */
2000 		if (i != 0)	/* head page cleared above */
2001 			__ClearPageReserved(p);
2002 		/*
2003 		 * Subtle and very unlikely
2004 		 *
2005 		 * Gigantic 'page allocators' such as memblock or cma will
2006 		 * return a set of pages with each page ref counted.  We need
2007 		 * to turn this set of pages into a compound page with tail
2008 		 * page ref counts set to zero.  Code such as speculative page
2009 		 * cache adding could take a ref on a 'to be' tail page.
2010 		 * We need to respect any increased ref count, and only set
2011 		 * the ref count to zero if count is currently 1.  If count
2012 		 * is not 1, we return an error.  An error return indicates
2013 		 * the set of pages can not be converted to a gigantic page.
2014 		 * The caller who allocated the pages should then discard the
2015 		 * pages using the appropriate free interface.
2016 		 *
2017 		 * In the case of demote, the ref count will be zero.
2018 		 */
2019 		if (!demote) {
2020 			if (!page_ref_freeze(p, 1)) {
2021 				pr_warn("HugeTLB page can not be used due to unexpected inflated ref count\n");
2022 				goto out_error;
2023 			}
2024 		} else {
2025 			VM_BUG_ON_PAGE(page_count(p), p);
2026 		}
2027 		if (i != 0)
2028 			set_compound_head(p, &folio->page);
2029 	}
2030 	__folio_set_head(folio);
2031 	/* we rely on prep_new_hugetlb_folio to set the destructor */
2032 	folio_set_order(folio, order);
2033 	atomic_set(&folio->_entire_mapcount, -1);
2034 	atomic_set(&folio->_nr_pages_mapped, 0);
2035 	atomic_set(&folio->_pincount, 0);
2036 	return true;
2037 
2038 out_error:
2039 	/* undo page modifications made above */
2040 	for (j = 0; j < i; j++) {
2041 		p = folio_page(folio, j);
2042 		if (j != 0)
2043 			clear_compound_head(p);
2044 		set_page_refcounted(p);
2045 	}
2046 	/* need to clear PG_reserved on remaining tail pages  */
2047 	for (; j < nr_pages; j++) {
2048 		p = folio_page(folio, j);
2049 		__ClearPageReserved(p);
2050 	}
2051 	return false;
2052 }
2053 
2054 static bool prep_compound_gigantic_folio(struct folio *folio,
2055 							unsigned int order)
2056 {
2057 	return __prep_compound_gigantic_folio(folio, order, false);
2058 }
2059 
2060 static bool prep_compound_gigantic_folio_for_demote(struct folio *folio,
2061 							unsigned int order)
2062 {
2063 	return __prep_compound_gigantic_folio(folio, order, true);
2064 }
2065 
2066 /*
2067  * PageHuge() only returns true for hugetlbfs pages, but not for normal or
2068  * transparent huge pages.  See the PageTransHuge() documentation for more
2069  * details.
2070  */
2071 int PageHuge(struct page *page)
2072 {
2073 	struct folio *folio;
2074 
2075 	if (!PageCompound(page))
2076 		return 0;
2077 	folio = page_folio(page);
2078 	return folio_test_hugetlb(folio);
2079 }
2080 EXPORT_SYMBOL_GPL(PageHuge);
2081 
2082 /*
2083  * Find and lock address space (mapping) in write mode.
2084  *
2085  * Upon entry, the page is locked which means that page_mapping() is
2086  * stable.  Due to locking order, we can only trylock_write.  If we can
2087  * not get the lock, simply return NULL to caller.
2088  */
2089 struct address_space *hugetlb_page_mapping_lock_write(struct page *hpage)
2090 {
2091 	struct address_space *mapping = page_mapping(hpage);
2092 
2093 	if (!mapping)
2094 		return mapping;
2095 
2096 	if (i_mmap_trylock_write(mapping))
2097 		return mapping;
2098 
2099 	return NULL;
2100 }
2101 
2102 static struct folio *alloc_buddy_hugetlb_folio(struct hstate *h,
2103 		gfp_t gfp_mask, int nid, nodemask_t *nmask,
2104 		nodemask_t *node_alloc_noretry)
2105 {
2106 	int order = huge_page_order(h);
2107 	struct page *page;
2108 	bool alloc_try_hard = true;
2109 	bool retry = true;
2110 
2111 	/*
2112 	 * By default we always try hard to allocate the page with
2113 	 * __GFP_RETRY_MAYFAIL flag.  However, if we are allocating pages in
2114 	 * a loop (to adjust global huge page counts) and previous allocation
2115 	 * failed, do not continue to try hard on the same node.  Use the
2116 	 * node_alloc_noretry bitmap to manage this state information.
2117 	 */
2118 	if (node_alloc_noretry && node_isset(nid, *node_alloc_noretry))
2119 		alloc_try_hard = false;
2120 	gfp_mask |= __GFP_COMP|__GFP_NOWARN;
2121 	if (alloc_try_hard)
2122 		gfp_mask |= __GFP_RETRY_MAYFAIL;
2123 	if (nid == NUMA_NO_NODE)
2124 		nid = numa_mem_id();
2125 retry:
2126 	page = __alloc_pages(gfp_mask, order, nid, nmask);
2127 
2128 	/* Freeze head page */
2129 	if (page && !page_ref_freeze(page, 1)) {
2130 		__free_pages(page, order);
2131 		if (retry) {	/* retry once */
2132 			retry = false;
2133 			goto retry;
2134 		}
2135 		/* WOW!  twice in a row. */
2136 		pr_warn("HugeTLB head page unexpected inflated ref count\n");
2137 		page = NULL;
2138 	}
2139 
2140 	/*
2141 	 * If we did not specify __GFP_RETRY_MAYFAIL, but still got a page this
2142 	 * indicates an overall state change.  Clear bit so that we resume
2143 	 * normal 'try hard' allocations.
2144 	 */
2145 	if (node_alloc_noretry && page && !alloc_try_hard)
2146 		node_clear(nid, *node_alloc_noretry);
2147 
2148 	/*
2149 	 * If we tried hard to get a page but failed, set bit so that
2150 	 * subsequent attempts will not try as hard until there is an
2151 	 * overall state change.
2152 	 */
2153 	if (node_alloc_noretry && !page && alloc_try_hard)
2154 		node_set(nid, *node_alloc_noretry);
2155 
2156 	if (!page) {
2157 		__count_vm_event(HTLB_BUDDY_PGALLOC_FAIL);
2158 		return NULL;
2159 	}
2160 
2161 	__count_vm_event(HTLB_BUDDY_PGALLOC);
2162 	return page_folio(page);
2163 }
2164 
2165 /*
2166  * Common helper to allocate a fresh hugetlb page. All specific allocators
2167  * should use this function to get new hugetlb pages
2168  *
2169  * Note that returned page is 'frozen':  ref count of head page and all tail
2170  * pages is zero.
2171  */
2172 static struct folio *alloc_fresh_hugetlb_folio(struct hstate *h,
2173 		gfp_t gfp_mask, int nid, nodemask_t *nmask,
2174 		nodemask_t *node_alloc_noretry)
2175 {
2176 	struct folio *folio;
2177 	bool retry = false;
2178 
2179 retry:
2180 	if (hstate_is_gigantic(h))
2181 		folio = alloc_gigantic_folio(h, gfp_mask, nid, nmask);
2182 	else
2183 		folio = alloc_buddy_hugetlb_folio(h, gfp_mask,
2184 				nid, nmask, node_alloc_noretry);
2185 	if (!folio)
2186 		return NULL;
2187 	if (hstate_is_gigantic(h)) {
2188 		if (!prep_compound_gigantic_folio(folio, huge_page_order(h))) {
2189 			/*
2190 			 * Rare failure to convert pages to compound page.
2191 			 * Free pages and try again - ONCE!
2192 			 */
2193 			free_gigantic_folio(folio, huge_page_order(h));
2194 			if (!retry) {
2195 				retry = true;
2196 				goto retry;
2197 			}
2198 			return NULL;
2199 		}
2200 	}
2201 	prep_new_hugetlb_folio(h, folio, folio_nid(folio));
2202 
2203 	return folio;
2204 }
2205 
2206 /*
2207  * Allocates a fresh page to the hugetlb allocator pool in the node interleaved
2208  * manner.
2209  */
2210 static int alloc_pool_huge_page(struct hstate *h, nodemask_t *nodes_allowed,
2211 				nodemask_t *node_alloc_noretry)
2212 {
2213 	struct folio *folio;
2214 	int nr_nodes, node;
2215 	gfp_t gfp_mask = htlb_alloc_mask(h) | __GFP_THISNODE;
2216 
2217 	for_each_node_mask_to_alloc(h, nr_nodes, node, nodes_allowed) {
2218 		folio = alloc_fresh_hugetlb_folio(h, gfp_mask, node,
2219 					nodes_allowed, node_alloc_noretry);
2220 		if (folio) {
2221 			free_huge_folio(folio); /* free it into the hugepage allocator */
2222 			return 1;
2223 		}
2224 	}
2225 
2226 	return 0;
2227 }
2228 
2229 /*
2230  * Remove huge page from pool from next node to free.  Attempt to keep
2231  * persistent huge pages more or less balanced over allowed nodes.
2232  * This routine only 'removes' the hugetlb page.  The caller must make
2233  * an additional call to free the page to low level allocators.
2234  * Called with hugetlb_lock locked.
2235  */
2236 static struct folio *remove_pool_hugetlb_folio(struct hstate *h,
2237 		nodemask_t *nodes_allowed, bool acct_surplus)
2238 {
2239 	int nr_nodes, node;
2240 	struct folio *folio = NULL;
2241 
2242 	lockdep_assert_held(&hugetlb_lock);
2243 	for_each_node_mask_to_free(h, nr_nodes, node, nodes_allowed) {
2244 		/*
2245 		 * If we're returning unused surplus pages, only examine
2246 		 * nodes with surplus pages.
2247 		 */
2248 		if ((!acct_surplus || h->surplus_huge_pages_node[node]) &&
2249 		    !list_empty(&h->hugepage_freelists[node])) {
2250 			folio = list_entry(h->hugepage_freelists[node].next,
2251 					  struct folio, lru);
2252 			remove_hugetlb_folio(h, folio, acct_surplus);
2253 			break;
2254 		}
2255 	}
2256 
2257 	return folio;
2258 }
2259 
2260 /*
2261  * Dissolve a given free hugepage into free buddy pages. This function does
2262  * nothing for in-use hugepages and non-hugepages.
2263  * This function returns values like below:
2264  *
2265  *  -ENOMEM: failed to allocate vmemmap pages to free the freed hugepages
2266  *           when the system is under memory pressure and the feature of
2267  *           freeing unused vmemmap pages associated with each hugetlb page
2268  *           is enabled.
2269  *  -EBUSY:  failed to dissolved free hugepages or the hugepage is in-use
2270  *           (allocated or reserved.)
2271  *       0:  successfully dissolved free hugepages or the page is not a
2272  *           hugepage (considered as already dissolved)
2273  */
2274 int dissolve_free_huge_page(struct page *page)
2275 {
2276 	int rc = -EBUSY;
2277 	struct folio *folio = page_folio(page);
2278 
2279 retry:
2280 	/* Not to disrupt normal path by vainly holding hugetlb_lock */
2281 	if (!folio_test_hugetlb(folio))
2282 		return 0;
2283 
2284 	spin_lock_irq(&hugetlb_lock);
2285 	if (!folio_test_hugetlb(folio)) {
2286 		rc = 0;
2287 		goto out;
2288 	}
2289 
2290 	if (!folio_ref_count(folio)) {
2291 		struct hstate *h = folio_hstate(folio);
2292 		if (!available_huge_pages(h))
2293 			goto out;
2294 
2295 		/*
2296 		 * We should make sure that the page is already on the free list
2297 		 * when it is dissolved.
2298 		 */
2299 		if (unlikely(!folio_test_hugetlb_freed(folio))) {
2300 			spin_unlock_irq(&hugetlb_lock);
2301 			cond_resched();
2302 
2303 			/*
2304 			 * Theoretically, we should return -EBUSY when we
2305 			 * encounter this race. In fact, we have a chance
2306 			 * to successfully dissolve the page if we do a
2307 			 * retry. Because the race window is quite small.
2308 			 * If we seize this opportunity, it is an optimization
2309 			 * for increasing the success rate of dissolving page.
2310 			 */
2311 			goto retry;
2312 		}
2313 
2314 		remove_hugetlb_folio(h, folio, false);
2315 		h->max_huge_pages--;
2316 		spin_unlock_irq(&hugetlb_lock);
2317 
2318 		/*
2319 		 * Normally update_and_free_hugtlb_folio will allocate required vmemmmap
2320 		 * before freeing the page.  update_and_free_hugtlb_folio will fail to
2321 		 * free the page if it can not allocate required vmemmap.  We
2322 		 * need to adjust max_huge_pages if the page is not freed.
2323 		 * Attempt to allocate vmemmmap here so that we can take
2324 		 * appropriate action on failure.
2325 		 *
2326 		 * The folio_test_hugetlb check here is because
2327 		 * remove_hugetlb_folio will clear hugetlb folio flag for
2328 		 * non-vmemmap optimized hugetlb folios.
2329 		 */
2330 		if (folio_test_hugetlb(folio)) {
2331 			rc = hugetlb_vmemmap_restore(h, &folio->page);
2332 			if (rc) {
2333 				spin_lock_irq(&hugetlb_lock);
2334 				add_hugetlb_folio(h, folio, false);
2335 				h->max_huge_pages++;
2336 				goto out;
2337 			}
2338 		} else
2339 			rc = 0;
2340 
2341 		update_and_free_hugetlb_folio(h, folio, false);
2342 		return rc;
2343 	}
2344 out:
2345 	spin_unlock_irq(&hugetlb_lock);
2346 	return rc;
2347 }
2348 
2349 /*
2350  * Dissolve free hugepages in a given pfn range. Used by memory hotplug to
2351  * make specified memory blocks removable from the system.
2352  * Note that this will dissolve a free gigantic hugepage completely, if any
2353  * part of it lies within the given range.
2354  * Also note that if dissolve_free_huge_page() returns with an error, all
2355  * free hugepages that were dissolved before that error are lost.
2356  */
2357 int dissolve_free_huge_pages(unsigned long start_pfn, unsigned long end_pfn)
2358 {
2359 	unsigned long pfn;
2360 	struct page *page;
2361 	int rc = 0;
2362 	unsigned int order;
2363 	struct hstate *h;
2364 
2365 	if (!hugepages_supported())
2366 		return rc;
2367 
2368 	order = huge_page_order(&default_hstate);
2369 	for_each_hstate(h)
2370 		order = min(order, huge_page_order(h));
2371 
2372 	for (pfn = start_pfn; pfn < end_pfn; pfn += 1 << order) {
2373 		page = pfn_to_page(pfn);
2374 		rc = dissolve_free_huge_page(page);
2375 		if (rc)
2376 			break;
2377 	}
2378 
2379 	return rc;
2380 }
2381 
2382 /*
2383  * Allocates a fresh surplus page from the page allocator.
2384  */
2385 static struct folio *alloc_surplus_hugetlb_folio(struct hstate *h,
2386 				gfp_t gfp_mask,	int nid, nodemask_t *nmask)
2387 {
2388 	struct folio *folio = NULL;
2389 
2390 	if (hstate_is_gigantic(h))
2391 		return NULL;
2392 
2393 	spin_lock_irq(&hugetlb_lock);
2394 	if (h->surplus_huge_pages >= h->nr_overcommit_huge_pages)
2395 		goto out_unlock;
2396 	spin_unlock_irq(&hugetlb_lock);
2397 
2398 	folio = alloc_fresh_hugetlb_folio(h, gfp_mask, nid, nmask, NULL);
2399 	if (!folio)
2400 		return NULL;
2401 
2402 	spin_lock_irq(&hugetlb_lock);
2403 	/*
2404 	 * We could have raced with the pool size change.
2405 	 * Double check that and simply deallocate the new page
2406 	 * if we would end up overcommiting the surpluses. Abuse
2407 	 * temporary page to workaround the nasty free_huge_folio
2408 	 * codeflow
2409 	 */
2410 	if (h->surplus_huge_pages >= h->nr_overcommit_huge_pages) {
2411 		folio_set_hugetlb_temporary(folio);
2412 		spin_unlock_irq(&hugetlb_lock);
2413 		free_huge_folio(folio);
2414 		return NULL;
2415 	}
2416 
2417 	h->surplus_huge_pages++;
2418 	h->surplus_huge_pages_node[folio_nid(folio)]++;
2419 
2420 out_unlock:
2421 	spin_unlock_irq(&hugetlb_lock);
2422 
2423 	return folio;
2424 }
2425 
2426 static struct folio *alloc_migrate_hugetlb_folio(struct hstate *h, gfp_t gfp_mask,
2427 				     int nid, nodemask_t *nmask)
2428 {
2429 	struct folio *folio;
2430 
2431 	if (hstate_is_gigantic(h))
2432 		return NULL;
2433 
2434 	folio = alloc_fresh_hugetlb_folio(h, gfp_mask, nid, nmask, NULL);
2435 	if (!folio)
2436 		return NULL;
2437 
2438 	/* fresh huge pages are frozen */
2439 	folio_ref_unfreeze(folio, 1);
2440 	/*
2441 	 * We do not account these pages as surplus because they are only
2442 	 * temporary and will be released properly on the last reference
2443 	 */
2444 	folio_set_hugetlb_temporary(folio);
2445 
2446 	return folio;
2447 }
2448 
2449 /*
2450  * Use the VMA's mpolicy to allocate a huge page from the buddy.
2451  */
2452 static
2453 struct folio *alloc_buddy_hugetlb_folio_with_mpol(struct hstate *h,
2454 		struct vm_area_struct *vma, unsigned long addr)
2455 {
2456 	struct folio *folio = NULL;
2457 	struct mempolicy *mpol;
2458 	gfp_t gfp_mask = htlb_alloc_mask(h);
2459 	int nid;
2460 	nodemask_t *nodemask;
2461 
2462 	nid = huge_node(vma, addr, gfp_mask, &mpol, &nodemask);
2463 	if (mpol_is_preferred_many(mpol)) {
2464 		gfp_t gfp = gfp_mask | __GFP_NOWARN;
2465 
2466 		gfp &=  ~(__GFP_DIRECT_RECLAIM | __GFP_NOFAIL);
2467 		folio = alloc_surplus_hugetlb_folio(h, gfp, nid, nodemask);
2468 
2469 		/* Fallback to all nodes if page==NULL */
2470 		nodemask = NULL;
2471 	}
2472 
2473 	if (!folio)
2474 		folio = alloc_surplus_hugetlb_folio(h, gfp_mask, nid, nodemask);
2475 	mpol_cond_put(mpol);
2476 	return folio;
2477 }
2478 
2479 /* folio migration callback function */
2480 struct folio *alloc_hugetlb_folio_nodemask(struct hstate *h, int preferred_nid,
2481 		nodemask_t *nmask, gfp_t gfp_mask)
2482 {
2483 	spin_lock_irq(&hugetlb_lock);
2484 	if (available_huge_pages(h)) {
2485 		struct folio *folio;
2486 
2487 		folio = dequeue_hugetlb_folio_nodemask(h, gfp_mask,
2488 						preferred_nid, nmask);
2489 		if (folio) {
2490 			spin_unlock_irq(&hugetlb_lock);
2491 			return folio;
2492 		}
2493 	}
2494 	spin_unlock_irq(&hugetlb_lock);
2495 
2496 	return alloc_migrate_hugetlb_folio(h, gfp_mask, preferred_nid, nmask);
2497 }
2498 
2499 /* mempolicy aware migration callback */
2500 struct folio *alloc_hugetlb_folio_vma(struct hstate *h, struct vm_area_struct *vma,
2501 		unsigned long address)
2502 {
2503 	struct mempolicy *mpol;
2504 	nodemask_t *nodemask;
2505 	struct folio *folio;
2506 	gfp_t gfp_mask;
2507 	int node;
2508 
2509 	gfp_mask = htlb_alloc_mask(h);
2510 	node = huge_node(vma, address, gfp_mask, &mpol, &nodemask);
2511 	folio = alloc_hugetlb_folio_nodemask(h, node, nodemask, gfp_mask);
2512 	mpol_cond_put(mpol);
2513 
2514 	return folio;
2515 }
2516 
2517 /*
2518  * Increase the hugetlb pool such that it can accommodate a reservation
2519  * of size 'delta'.
2520  */
2521 static int gather_surplus_pages(struct hstate *h, long delta)
2522 	__must_hold(&hugetlb_lock)
2523 {
2524 	LIST_HEAD(surplus_list);
2525 	struct folio *folio, *tmp;
2526 	int ret;
2527 	long i;
2528 	long needed, allocated;
2529 	bool alloc_ok = true;
2530 
2531 	lockdep_assert_held(&hugetlb_lock);
2532 	needed = (h->resv_huge_pages + delta) - h->free_huge_pages;
2533 	if (needed <= 0) {
2534 		h->resv_huge_pages += delta;
2535 		return 0;
2536 	}
2537 
2538 	allocated = 0;
2539 
2540 	ret = -ENOMEM;
2541 retry:
2542 	spin_unlock_irq(&hugetlb_lock);
2543 	for (i = 0; i < needed; i++) {
2544 		folio = alloc_surplus_hugetlb_folio(h, htlb_alloc_mask(h),
2545 				NUMA_NO_NODE, NULL);
2546 		if (!folio) {
2547 			alloc_ok = false;
2548 			break;
2549 		}
2550 		list_add(&folio->lru, &surplus_list);
2551 		cond_resched();
2552 	}
2553 	allocated += i;
2554 
2555 	/*
2556 	 * After retaking hugetlb_lock, we need to recalculate 'needed'
2557 	 * because either resv_huge_pages or free_huge_pages may have changed.
2558 	 */
2559 	spin_lock_irq(&hugetlb_lock);
2560 	needed = (h->resv_huge_pages + delta) -
2561 			(h->free_huge_pages + allocated);
2562 	if (needed > 0) {
2563 		if (alloc_ok)
2564 			goto retry;
2565 		/*
2566 		 * We were not able to allocate enough pages to
2567 		 * satisfy the entire reservation so we free what
2568 		 * we've allocated so far.
2569 		 */
2570 		goto free;
2571 	}
2572 	/*
2573 	 * The surplus_list now contains _at_least_ the number of extra pages
2574 	 * needed to accommodate the reservation.  Add the appropriate number
2575 	 * of pages to the hugetlb pool and free the extras back to the buddy
2576 	 * allocator.  Commit the entire reservation here to prevent another
2577 	 * process from stealing the pages as they are added to the pool but
2578 	 * before they are reserved.
2579 	 */
2580 	needed += allocated;
2581 	h->resv_huge_pages += delta;
2582 	ret = 0;
2583 
2584 	/* Free the needed pages to the hugetlb pool */
2585 	list_for_each_entry_safe(folio, tmp, &surplus_list, lru) {
2586 		if ((--needed) < 0)
2587 			break;
2588 		/* Add the page to the hugetlb allocator */
2589 		enqueue_hugetlb_folio(h, folio);
2590 	}
2591 free:
2592 	spin_unlock_irq(&hugetlb_lock);
2593 
2594 	/*
2595 	 * Free unnecessary surplus pages to the buddy allocator.
2596 	 * Pages have no ref count, call free_huge_folio directly.
2597 	 */
2598 	list_for_each_entry_safe(folio, tmp, &surplus_list, lru)
2599 		free_huge_folio(folio);
2600 	spin_lock_irq(&hugetlb_lock);
2601 
2602 	return ret;
2603 }
2604 
2605 /*
2606  * This routine has two main purposes:
2607  * 1) Decrement the reservation count (resv_huge_pages) by the value passed
2608  *    in unused_resv_pages.  This corresponds to the prior adjustments made
2609  *    to the associated reservation map.
2610  * 2) Free any unused surplus pages that may have been allocated to satisfy
2611  *    the reservation.  As many as unused_resv_pages may be freed.
2612  */
2613 static void return_unused_surplus_pages(struct hstate *h,
2614 					unsigned long unused_resv_pages)
2615 {
2616 	unsigned long nr_pages;
2617 	LIST_HEAD(page_list);
2618 
2619 	lockdep_assert_held(&hugetlb_lock);
2620 	/* Uncommit the reservation */
2621 	h->resv_huge_pages -= unused_resv_pages;
2622 
2623 	if (hstate_is_gigantic(h) && !gigantic_page_runtime_supported())
2624 		goto out;
2625 
2626 	/*
2627 	 * Part (or even all) of the reservation could have been backed
2628 	 * by pre-allocated pages. Only free surplus pages.
2629 	 */
2630 	nr_pages = min(unused_resv_pages, h->surplus_huge_pages);
2631 
2632 	/*
2633 	 * We want to release as many surplus pages as possible, spread
2634 	 * evenly across all nodes with memory. Iterate across these nodes
2635 	 * until we can no longer free unreserved surplus pages. This occurs
2636 	 * when the nodes with surplus pages have no free pages.
2637 	 * remove_pool_hugetlb_folio() will balance the freed pages across the
2638 	 * on-line nodes with memory and will handle the hstate accounting.
2639 	 */
2640 	while (nr_pages--) {
2641 		struct folio *folio;
2642 
2643 		folio = remove_pool_hugetlb_folio(h, &node_states[N_MEMORY], 1);
2644 		if (!folio)
2645 			goto out;
2646 
2647 		list_add(&folio->lru, &page_list);
2648 	}
2649 
2650 out:
2651 	spin_unlock_irq(&hugetlb_lock);
2652 	update_and_free_pages_bulk(h, &page_list);
2653 	spin_lock_irq(&hugetlb_lock);
2654 }
2655 
2656 
2657 /*
2658  * vma_needs_reservation, vma_commit_reservation and vma_end_reservation
2659  * are used by the huge page allocation routines to manage reservations.
2660  *
2661  * vma_needs_reservation is called to determine if the huge page at addr
2662  * within the vma has an associated reservation.  If a reservation is
2663  * needed, the value 1 is returned.  The caller is then responsible for
2664  * managing the global reservation and subpool usage counts.  After
2665  * the huge page has been allocated, vma_commit_reservation is called
2666  * to add the page to the reservation map.  If the page allocation fails,
2667  * the reservation must be ended instead of committed.  vma_end_reservation
2668  * is called in such cases.
2669  *
2670  * In the normal case, vma_commit_reservation returns the same value
2671  * as the preceding vma_needs_reservation call.  The only time this
2672  * is not the case is if a reserve map was changed between calls.  It
2673  * is the responsibility of the caller to notice the difference and
2674  * take appropriate action.
2675  *
2676  * vma_add_reservation is used in error paths where a reservation must
2677  * be restored when a newly allocated huge page must be freed.  It is
2678  * to be called after calling vma_needs_reservation to determine if a
2679  * reservation exists.
2680  *
2681  * vma_del_reservation is used in error paths where an entry in the reserve
2682  * map was created during huge page allocation and must be removed.  It is to
2683  * be called after calling vma_needs_reservation to determine if a reservation
2684  * exists.
2685  */
2686 enum vma_resv_mode {
2687 	VMA_NEEDS_RESV,
2688 	VMA_COMMIT_RESV,
2689 	VMA_END_RESV,
2690 	VMA_ADD_RESV,
2691 	VMA_DEL_RESV,
2692 };
2693 static long __vma_reservation_common(struct hstate *h,
2694 				struct vm_area_struct *vma, unsigned long addr,
2695 				enum vma_resv_mode mode)
2696 {
2697 	struct resv_map *resv;
2698 	pgoff_t idx;
2699 	long ret;
2700 	long dummy_out_regions_needed;
2701 
2702 	resv = vma_resv_map(vma);
2703 	if (!resv)
2704 		return 1;
2705 
2706 	idx = vma_hugecache_offset(h, vma, addr);
2707 	switch (mode) {
2708 	case VMA_NEEDS_RESV:
2709 		ret = region_chg(resv, idx, idx + 1, &dummy_out_regions_needed);
2710 		/* We assume that vma_reservation_* routines always operate on
2711 		 * 1 page, and that adding to resv map a 1 page entry can only
2712 		 * ever require 1 region.
2713 		 */
2714 		VM_BUG_ON(dummy_out_regions_needed != 1);
2715 		break;
2716 	case VMA_COMMIT_RESV:
2717 		ret = region_add(resv, idx, idx + 1, 1, NULL, NULL);
2718 		/* region_add calls of range 1 should never fail. */
2719 		VM_BUG_ON(ret < 0);
2720 		break;
2721 	case VMA_END_RESV:
2722 		region_abort(resv, idx, idx + 1, 1);
2723 		ret = 0;
2724 		break;
2725 	case VMA_ADD_RESV:
2726 		if (vma->vm_flags & VM_MAYSHARE) {
2727 			ret = region_add(resv, idx, idx + 1, 1, NULL, NULL);
2728 			/* region_add calls of range 1 should never fail. */
2729 			VM_BUG_ON(ret < 0);
2730 		} else {
2731 			region_abort(resv, idx, idx + 1, 1);
2732 			ret = region_del(resv, idx, idx + 1);
2733 		}
2734 		break;
2735 	case VMA_DEL_RESV:
2736 		if (vma->vm_flags & VM_MAYSHARE) {
2737 			region_abort(resv, idx, idx + 1, 1);
2738 			ret = region_del(resv, idx, idx + 1);
2739 		} else {
2740 			ret = region_add(resv, idx, idx + 1, 1, NULL, NULL);
2741 			/* region_add calls of range 1 should never fail. */
2742 			VM_BUG_ON(ret < 0);
2743 		}
2744 		break;
2745 	default:
2746 		BUG();
2747 	}
2748 
2749 	if (vma->vm_flags & VM_MAYSHARE || mode == VMA_DEL_RESV)
2750 		return ret;
2751 	/*
2752 	 * We know private mapping must have HPAGE_RESV_OWNER set.
2753 	 *
2754 	 * In most cases, reserves always exist for private mappings.
2755 	 * However, a file associated with mapping could have been
2756 	 * hole punched or truncated after reserves were consumed.
2757 	 * As subsequent fault on such a range will not use reserves.
2758 	 * Subtle - The reserve map for private mappings has the
2759 	 * opposite meaning than that of shared mappings.  If NO
2760 	 * entry is in the reserve map, it means a reservation exists.
2761 	 * If an entry exists in the reserve map, it means the
2762 	 * reservation has already been consumed.  As a result, the
2763 	 * return value of this routine is the opposite of the
2764 	 * value returned from reserve map manipulation routines above.
2765 	 */
2766 	if (ret > 0)
2767 		return 0;
2768 	if (ret == 0)
2769 		return 1;
2770 	return ret;
2771 }
2772 
2773 static long vma_needs_reservation(struct hstate *h,
2774 			struct vm_area_struct *vma, unsigned long addr)
2775 {
2776 	return __vma_reservation_common(h, vma, addr, VMA_NEEDS_RESV);
2777 }
2778 
2779 static long vma_commit_reservation(struct hstate *h,
2780 			struct vm_area_struct *vma, unsigned long addr)
2781 {
2782 	return __vma_reservation_common(h, vma, addr, VMA_COMMIT_RESV);
2783 }
2784 
2785 static void vma_end_reservation(struct hstate *h,
2786 			struct vm_area_struct *vma, unsigned long addr)
2787 {
2788 	(void)__vma_reservation_common(h, vma, addr, VMA_END_RESV);
2789 }
2790 
2791 static long vma_add_reservation(struct hstate *h,
2792 			struct vm_area_struct *vma, unsigned long addr)
2793 {
2794 	return __vma_reservation_common(h, vma, addr, VMA_ADD_RESV);
2795 }
2796 
2797 static long vma_del_reservation(struct hstate *h,
2798 			struct vm_area_struct *vma, unsigned long addr)
2799 {
2800 	return __vma_reservation_common(h, vma, addr, VMA_DEL_RESV);
2801 }
2802 
2803 /*
2804  * This routine is called to restore reservation information on error paths.
2805  * It should ONLY be called for folios allocated via alloc_hugetlb_folio(),
2806  * and the hugetlb mutex should remain held when calling this routine.
2807  *
2808  * It handles two specific cases:
2809  * 1) A reservation was in place and the folio consumed the reservation.
2810  *    hugetlb_restore_reserve is set in the folio.
2811  * 2) No reservation was in place for the page, so hugetlb_restore_reserve is
2812  *    not set.  However, alloc_hugetlb_folio always updates the reserve map.
2813  *
2814  * In case 1, free_huge_folio later in the error path will increment the
2815  * global reserve count.  But, free_huge_folio does not have enough context
2816  * to adjust the reservation map.  This case deals primarily with private
2817  * mappings.  Adjust the reserve map here to be consistent with global
2818  * reserve count adjustments to be made by free_huge_folio.  Make sure the
2819  * reserve map indicates there is a reservation present.
2820  *
2821  * In case 2, simply undo reserve map modifications done by alloc_hugetlb_folio.
2822  */
2823 void restore_reserve_on_error(struct hstate *h, struct vm_area_struct *vma,
2824 			unsigned long address, struct folio *folio)
2825 {
2826 	long rc = vma_needs_reservation(h, vma, address);
2827 
2828 	if (folio_test_hugetlb_restore_reserve(folio)) {
2829 		if (unlikely(rc < 0))
2830 			/*
2831 			 * Rare out of memory condition in reserve map
2832 			 * manipulation.  Clear hugetlb_restore_reserve so
2833 			 * that global reserve count will not be incremented
2834 			 * by free_huge_folio.  This will make it appear
2835 			 * as though the reservation for this folio was
2836 			 * consumed.  This may prevent the task from
2837 			 * faulting in the folio at a later time.  This
2838 			 * is better than inconsistent global huge page
2839 			 * accounting of reserve counts.
2840 			 */
2841 			folio_clear_hugetlb_restore_reserve(folio);
2842 		else if (rc)
2843 			(void)vma_add_reservation(h, vma, address);
2844 		else
2845 			vma_end_reservation(h, vma, address);
2846 	} else {
2847 		if (!rc) {
2848 			/*
2849 			 * This indicates there is an entry in the reserve map
2850 			 * not added by alloc_hugetlb_folio.  We know it was added
2851 			 * before the alloc_hugetlb_folio call, otherwise
2852 			 * hugetlb_restore_reserve would be set on the folio.
2853 			 * Remove the entry so that a subsequent allocation
2854 			 * does not consume a reservation.
2855 			 */
2856 			rc = vma_del_reservation(h, vma, address);
2857 			if (rc < 0)
2858 				/*
2859 				 * VERY rare out of memory condition.  Since
2860 				 * we can not delete the entry, set
2861 				 * hugetlb_restore_reserve so that the reserve
2862 				 * count will be incremented when the folio
2863 				 * is freed.  This reserve will be consumed
2864 				 * on a subsequent allocation.
2865 				 */
2866 				folio_set_hugetlb_restore_reserve(folio);
2867 		} else if (rc < 0) {
2868 			/*
2869 			 * Rare out of memory condition from
2870 			 * vma_needs_reservation call.  Memory allocation is
2871 			 * only attempted if a new entry is needed.  Therefore,
2872 			 * this implies there is not an entry in the
2873 			 * reserve map.
2874 			 *
2875 			 * For shared mappings, no entry in the map indicates
2876 			 * no reservation.  We are done.
2877 			 */
2878 			if (!(vma->vm_flags & VM_MAYSHARE))
2879 				/*
2880 				 * For private mappings, no entry indicates
2881 				 * a reservation is present.  Since we can
2882 				 * not add an entry, set hugetlb_restore_reserve
2883 				 * on the folio so reserve count will be
2884 				 * incremented when freed.  This reserve will
2885 				 * be consumed on a subsequent allocation.
2886 				 */
2887 				folio_set_hugetlb_restore_reserve(folio);
2888 		} else
2889 			/*
2890 			 * No reservation present, do nothing
2891 			 */
2892 			 vma_end_reservation(h, vma, address);
2893 	}
2894 }
2895 
2896 /*
2897  * alloc_and_dissolve_hugetlb_folio - Allocate a new folio and dissolve
2898  * the old one
2899  * @h: struct hstate old page belongs to
2900  * @old_folio: Old folio to dissolve
2901  * @list: List to isolate the page in case we need to
2902  * Returns 0 on success, otherwise negated error.
2903  */
2904 static int alloc_and_dissolve_hugetlb_folio(struct hstate *h,
2905 			struct folio *old_folio, struct list_head *list)
2906 {
2907 	gfp_t gfp_mask = htlb_alloc_mask(h) | __GFP_THISNODE;
2908 	int nid = folio_nid(old_folio);
2909 	struct folio *new_folio;
2910 	int ret = 0;
2911 
2912 	/*
2913 	 * Before dissolving the folio, we need to allocate a new one for the
2914 	 * pool to remain stable.  Here, we allocate the folio and 'prep' it
2915 	 * by doing everything but actually updating counters and adding to
2916 	 * the pool.  This simplifies and let us do most of the processing
2917 	 * under the lock.
2918 	 */
2919 	new_folio = alloc_buddy_hugetlb_folio(h, gfp_mask, nid, NULL, NULL);
2920 	if (!new_folio)
2921 		return -ENOMEM;
2922 	__prep_new_hugetlb_folio(h, new_folio);
2923 
2924 retry:
2925 	spin_lock_irq(&hugetlb_lock);
2926 	if (!folio_test_hugetlb(old_folio)) {
2927 		/*
2928 		 * Freed from under us. Drop new_folio too.
2929 		 */
2930 		goto free_new;
2931 	} else if (folio_ref_count(old_folio)) {
2932 		bool isolated;
2933 
2934 		/*
2935 		 * Someone has grabbed the folio, try to isolate it here.
2936 		 * Fail with -EBUSY if not possible.
2937 		 */
2938 		spin_unlock_irq(&hugetlb_lock);
2939 		isolated = isolate_hugetlb(old_folio, list);
2940 		ret = isolated ? 0 : -EBUSY;
2941 		spin_lock_irq(&hugetlb_lock);
2942 		goto free_new;
2943 	} else if (!folio_test_hugetlb_freed(old_folio)) {
2944 		/*
2945 		 * Folio's refcount is 0 but it has not been enqueued in the
2946 		 * freelist yet. Race window is small, so we can succeed here if
2947 		 * we retry.
2948 		 */
2949 		spin_unlock_irq(&hugetlb_lock);
2950 		cond_resched();
2951 		goto retry;
2952 	} else {
2953 		/*
2954 		 * Ok, old_folio is still a genuine free hugepage. Remove it from
2955 		 * the freelist and decrease the counters. These will be
2956 		 * incremented again when calling __prep_account_new_huge_page()
2957 		 * and enqueue_hugetlb_folio() for new_folio. The counters will
2958 		 * remain stable since this happens under the lock.
2959 		 */
2960 		remove_hugetlb_folio(h, old_folio, false);
2961 
2962 		/*
2963 		 * Ref count on new_folio is already zero as it was dropped
2964 		 * earlier.  It can be directly added to the pool free list.
2965 		 */
2966 		__prep_account_new_huge_page(h, nid);
2967 		enqueue_hugetlb_folio(h, new_folio);
2968 
2969 		/*
2970 		 * Folio has been replaced, we can safely free the old one.
2971 		 */
2972 		spin_unlock_irq(&hugetlb_lock);
2973 		update_and_free_hugetlb_folio(h, old_folio, false);
2974 	}
2975 
2976 	return ret;
2977 
2978 free_new:
2979 	spin_unlock_irq(&hugetlb_lock);
2980 	/* Folio has a zero ref count, but needs a ref to be freed */
2981 	folio_ref_unfreeze(new_folio, 1);
2982 	update_and_free_hugetlb_folio(h, new_folio, false);
2983 
2984 	return ret;
2985 }
2986 
2987 int isolate_or_dissolve_huge_page(struct page *page, struct list_head *list)
2988 {
2989 	struct hstate *h;
2990 	struct folio *folio = page_folio(page);
2991 	int ret = -EBUSY;
2992 
2993 	/*
2994 	 * The page might have been dissolved from under our feet, so make sure
2995 	 * to carefully check the state under the lock.
2996 	 * Return success when racing as if we dissolved the page ourselves.
2997 	 */
2998 	spin_lock_irq(&hugetlb_lock);
2999 	if (folio_test_hugetlb(folio)) {
3000 		h = folio_hstate(folio);
3001 	} else {
3002 		spin_unlock_irq(&hugetlb_lock);
3003 		return 0;
3004 	}
3005 	spin_unlock_irq(&hugetlb_lock);
3006 
3007 	/*
3008 	 * Fence off gigantic pages as there is a cyclic dependency between
3009 	 * alloc_contig_range and them. Return -ENOMEM as this has the effect
3010 	 * of bailing out right away without further retrying.
3011 	 */
3012 	if (hstate_is_gigantic(h))
3013 		return -ENOMEM;
3014 
3015 	if (folio_ref_count(folio) && isolate_hugetlb(folio, list))
3016 		ret = 0;
3017 	else if (!folio_ref_count(folio))
3018 		ret = alloc_and_dissolve_hugetlb_folio(h, folio, list);
3019 
3020 	return ret;
3021 }
3022 
3023 struct folio *alloc_hugetlb_folio(struct vm_area_struct *vma,
3024 				    unsigned long addr, int avoid_reserve)
3025 {
3026 	struct hugepage_subpool *spool = subpool_vma(vma);
3027 	struct hstate *h = hstate_vma(vma);
3028 	struct folio *folio;
3029 	long map_chg, map_commit;
3030 	long gbl_chg;
3031 	int ret, idx;
3032 	struct hugetlb_cgroup *h_cg = NULL;
3033 	bool deferred_reserve;
3034 
3035 	idx = hstate_index(h);
3036 	/*
3037 	 * Examine the region/reserve map to determine if the process
3038 	 * has a reservation for the page to be allocated.  A return
3039 	 * code of zero indicates a reservation exists (no change).
3040 	 */
3041 	map_chg = gbl_chg = vma_needs_reservation(h, vma, addr);
3042 	if (map_chg < 0)
3043 		return ERR_PTR(-ENOMEM);
3044 
3045 	/*
3046 	 * Processes that did not create the mapping will have no
3047 	 * reserves as indicated by the region/reserve map. Check
3048 	 * that the allocation will not exceed the subpool limit.
3049 	 * Allocations for MAP_NORESERVE mappings also need to be
3050 	 * checked against any subpool limit.
3051 	 */
3052 	if (map_chg || avoid_reserve) {
3053 		gbl_chg = hugepage_subpool_get_pages(spool, 1);
3054 		if (gbl_chg < 0) {
3055 			vma_end_reservation(h, vma, addr);
3056 			return ERR_PTR(-ENOSPC);
3057 		}
3058 
3059 		/*
3060 		 * Even though there was no reservation in the region/reserve
3061 		 * map, there could be reservations associated with the
3062 		 * subpool that can be used.  This would be indicated if the
3063 		 * return value of hugepage_subpool_get_pages() is zero.
3064 		 * However, if avoid_reserve is specified we still avoid even
3065 		 * the subpool reservations.
3066 		 */
3067 		if (avoid_reserve)
3068 			gbl_chg = 1;
3069 	}
3070 
3071 	/* If this allocation is not consuming a reservation, charge it now.
3072 	 */
3073 	deferred_reserve = map_chg || avoid_reserve;
3074 	if (deferred_reserve) {
3075 		ret = hugetlb_cgroup_charge_cgroup_rsvd(
3076 			idx, pages_per_huge_page(h), &h_cg);
3077 		if (ret)
3078 			goto out_subpool_put;
3079 	}
3080 
3081 	ret = hugetlb_cgroup_charge_cgroup(idx, pages_per_huge_page(h), &h_cg);
3082 	if (ret)
3083 		goto out_uncharge_cgroup_reservation;
3084 
3085 	spin_lock_irq(&hugetlb_lock);
3086 	/*
3087 	 * glb_chg is passed to indicate whether or not a page must be taken
3088 	 * from the global free pool (global change).  gbl_chg == 0 indicates
3089 	 * a reservation exists for the allocation.
3090 	 */
3091 	folio = dequeue_hugetlb_folio_vma(h, vma, addr, avoid_reserve, gbl_chg);
3092 	if (!folio) {
3093 		spin_unlock_irq(&hugetlb_lock);
3094 		folio = alloc_buddy_hugetlb_folio_with_mpol(h, vma, addr);
3095 		if (!folio)
3096 			goto out_uncharge_cgroup;
3097 		spin_lock_irq(&hugetlb_lock);
3098 		if (!avoid_reserve && vma_has_reserves(vma, gbl_chg)) {
3099 			folio_set_hugetlb_restore_reserve(folio);
3100 			h->resv_huge_pages--;
3101 		}
3102 		list_add(&folio->lru, &h->hugepage_activelist);
3103 		folio_ref_unfreeze(folio, 1);
3104 		/* Fall through */
3105 	}
3106 
3107 	hugetlb_cgroup_commit_charge(idx, pages_per_huge_page(h), h_cg, folio);
3108 	/* If allocation is not consuming a reservation, also store the
3109 	 * hugetlb_cgroup pointer on the page.
3110 	 */
3111 	if (deferred_reserve) {
3112 		hugetlb_cgroup_commit_charge_rsvd(idx, pages_per_huge_page(h),
3113 						  h_cg, folio);
3114 	}
3115 
3116 	spin_unlock_irq(&hugetlb_lock);
3117 
3118 	hugetlb_set_folio_subpool(folio, spool);
3119 
3120 	map_commit = vma_commit_reservation(h, vma, addr);
3121 	if (unlikely(map_chg > map_commit)) {
3122 		/*
3123 		 * The page was added to the reservation map between
3124 		 * vma_needs_reservation and vma_commit_reservation.
3125 		 * This indicates a race with hugetlb_reserve_pages.
3126 		 * Adjust for the subpool count incremented above AND
3127 		 * in hugetlb_reserve_pages for the same page.  Also,
3128 		 * the reservation count added in hugetlb_reserve_pages
3129 		 * no longer applies.
3130 		 */
3131 		long rsv_adjust;
3132 
3133 		rsv_adjust = hugepage_subpool_put_pages(spool, 1);
3134 		hugetlb_acct_memory(h, -rsv_adjust);
3135 		if (deferred_reserve)
3136 			hugetlb_cgroup_uncharge_folio_rsvd(hstate_index(h),
3137 					pages_per_huge_page(h), folio);
3138 	}
3139 	return folio;
3140 
3141 out_uncharge_cgroup:
3142 	hugetlb_cgroup_uncharge_cgroup(idx, pages_per_huge_page(h), h_cg);
3143 out_uncharge_cgroup_reservation:
3144 	if (deferred_reserve)
3145 		hugetlb_cgroup_uncharge_cgroup_rsvd(idx, pages_per_huge_page(h),
3146 						    h_cg);
3147 out_subpool_put:
3148 	if (map_chg || avoid_reserve)
3149 		hugepage_subpool_put_pages(spool, 1);
3150 	vma_end_reservation(h, vma, addr);
3151 	return ERR_PTR(-ENOSPC);
3152 }
3153 
3154 int alloc_bootmem_huge_page(struct hstate *h, int nid)
3155 	__attribute__ ((weak, alias("__alloc_bootmem_huge_page")));
3156 int __alloc_bootmem_huge_page(struct hstate *h, int nid)
3157 {
3158 	struct huge_bootmem_page *m = NULL; /* initialize for clang */
3159 	int nr_nodes, node;
3160 
3161 	/* do node specific alloc */
3162 	if (nid != NUMA_NO_NODE) {
3163 		m = memblock_alloc_try_nid_raw(huge_page_size(h), huge_page_size(h),
3164 				0, MEMBLOCK_ALLOC_ACCESSIBLE, nid);
3165 		if (!m)
3166 			return 0;
3167 		goto found;
3168 	}
3169 	/* allocate from next node when distributing huge pages */
3170 	for_each_node_mask_to_alloc(h, nr_nodes, node, &node_states[N_MEMORY]) {
3171 		m = memblock_alloc_try_nid_raw(
3172 				huge_page_size(h), huge_page_size(h),
3173 				0, MEMBLOCK_ALLOC_ACCESSIBLE, node);
3174 		/*
3175 		 * Use the beginning of the huge page to store the
3176 		 * huge_bootmem_page struct (until gather_bootmem
3177 		 * puts them into the mem_map).
3178 		 */
3179 		if (!m)
3180 			return 0;
3181 		goto found;
3182 	}
3183 
3184 found:
3185 
3186 	/*
3187 	 * Only initialize the head struct page in memmap_init_reserved_pages,
3188 	 * rest of the struct pages will be initialized by the HugeTLB
3189 	 * subsystem itself.
3190 	 * The head struct page is used to get folio information by the HugeTLB
3191 	 * subsystem like zone id and node id.
3192 	 */
3193 	memblock_reserved_mark_noinit(virt_to_phys((void *)m + PAGE_SIZE),
3194 		huge_page_size(h) - PAGE_SIZE);
3195 	/* Put them into a private list first because mem_map is not up yet */
3196 	INIT_LIST_HEAD(&m->list);
3197 	list_add(&m->list, &huge_boot_pages);
3198 	m->hstate = h;
3199 	return 1;
3200 }
3201 
3202 /* Initialize [start_page:end_page_number] tail struct pages of a hugepage */
3203 static void __init hugetlb_folio_init_tail_vmemmap(struct folio *folio,
3204 					unsigned long start_page_number,
3205 					unsigned long end_page_number)
3206 {
3207 	enum zone_type zone = zone_idx(folio_zone(folio));
3208 	int nid = folio_nid(folio);
3209 	unsigned long head_pfn = folio_pfn(folio);
3210 	unsigned long pfn, end_pfn = head_pfn + end_page_number;
3211 	int ret;
3212 
3213 	for (pfn = head_pfn + start_page_number; pfn < end_pfn; pfn++) {
3214 		struct page *page = pfn_to_page(pfn);
3215 
3216 		__init_single_page(page, pfn, zone, nid);
3217 		prep_compound_tail((struct page *)folio, pfn - head_pfn);
3218 		ret = page_ref_freeze(page, 1);
3219 		VM_BUG_ON(!ret);
3220 	}
3221 }
3222 
3223 static void __init hugetlb_folio_init_vmemmap(struct folio *folio,
3224 					      struct hstate *h,
3225 					      unsigned long nr_pages)
3226 {
3227 	int ret;
3228 
3229 	/* Prepare folio head */
3230 	__folio_clear_reserved(folio);
3231 	__folio_set_head(folio);
3232 	ret = folio_ref_freeze(folio, 1);
3233 	VM_BUG_ON(!ret);
3234 	/* Initialize the necessary tail struct pages */
3235 	hugetlb_folio_init_tail_vmemmap(folio, 1, nr_pages);
3236 	prep_compound_head((struct page *)folio, huge_page_order(h));
3237 }
3238 
3239 /*
3240  * Put bootmem huge pages into the standard lists after mem_map is up.
3241  * Note: This only applies to gigantic (order > MAX_ORDER) pages.
3242  */
3243 static void __init gather_bootmem_prealloc(void)
3244 {
3245 	struct huge_bootmem_page *m;
3246 
3247 	list_for_each_entry(m, &huge_boot_pages, list) {
3248 		struct page *page = virt_to_page(m);
3249 		struct folio *folio = (void *)page;
3250 		struct hstate *h = m->hstate;
3251 
3252 		VM_BUG_ON(!hstate_is_gigantic(h));
3253 		WARN_ON(folio_ref_count(folio) != 1);
3254 
3255 		hugetlb_folio_init_vmemmap(folio, h,
3256 					   HUGETLB_VMEMMAP_RESERVE_PAGES);
3257 		prep_new_hugetlb_folio(h, folio, folio_nid(folio));
3258 		/* If HVO fails, initialize all tail struct pages */
3259 		if (!HPageVmemmapOptimized(&folio->page))
3260 			hugetlb_folio_init_tail_vmemmap(folio,
3261 						HUGETLB_VMEMMAP_RESERVE_PAGES,
3262 						pages_per_huge_page(h));
3263 		free_huge_folio(folio); /* add to the hugepage allocator */
3264 
3265 		/*
3266 		 * We need to restore the 'stolen' pages to totalram_pages
3267 		 * in order to fix confusing memory reports from free(1) and
3268 		 * other side-effects, like CommitLimit going negative.
3269 		 */
3270 		adjust_managed_page_count(page, pages_per_huge_page(h));
3271 		cond_resched();
3272 	}
3273 }
3274 
3275 static void __init hugetlb_hstate_alloc_pages_onenode(struct hstate *h, int nid)
3276 {
3277 	unsigned long i;
3278 	char buf[32];
3279 
3280 	for (i = 0; i < h->max_huge_pages_node[nid]; ++i) {
3281 		if (hstate_is_gigantic(h)) {
3282 			if (!alloc_bootmem_huge_page(h, nid))
3283 				break;
3284 		} else {
3285 			struct folio *folio;
3286 			gfp_t gfp_mask = htlb_alloc_mask(h) | __GFP_THISNODE;
3287 
3288 			folio = alloc_fresh_hugetlb_folio(h, gfp_mask, nid,
3289 					&node_states[N_MEMORY], NULL);
3290 			if (!folio)
3291 				break;
3292 			free_huge_folio(folio); /* free it into the hugepage allocator */
3293 		}
3294 		cond_resched();
3295 	}
3296 	if (i == h->max_huge_pages_node[nid])
3297 		return;
3298 
3299 	string_get_size(huge_page_size(h), 1, STRING_UNITS_2, buf, 32);
3300 	pr_warn("HugeTLB: allocating %u of page size %s failed node%d.  Only allocated %lu hugepages.\n",
3301 		h->max_huge_pages_node[nid], buf, nid, i);
3302 	h->max_huge_pages -= (h->max_huge_pages_node[nid] - i);
3303 	h->max_huge_pages_node[nid] = i;
3304 }
3305 
3306 static void __init hugetlb_hstate_alloc_pages(struct hstate *h)
3307 {
3308 	unsigned long i;
3309 	nodemask_t *node_alloc_noretry;
3310 	bool node_specific_alloc = false;
3311 
3312 	/* skip gigantic hugepages allocation if hugetlb_cma enabled */
3313 	if (hstate_is_gigantic(h) && hugetlb_cma_size) {
3314 		pr_warn_once("HugeTLB: hugetlb_cma is enabled, skip boot time allocation\n");
3315 		return;
3316 	}
3317 
3318 	/* do node specific alloc */
3319 	for_each_online_node(i) {
3320 		if (h->max_huge_pages_node[i] > 0) {
3321 			hugetlb_hstate_alloc_pages_onenode(h, i);
3322 			node_specific_alloc = true;
3323 		}
3324 	}
3325 
3326 	if (node_specific_alloc)
3327 		return;
3328 
3329 	/* below will do all node balanced alloc */
3330 	if (!hstate_is_gigantic(h)) {
3331 		/*
3332 		 * Bit mask controlling how hard we retry per-node allocations.
3333 		 * Ignore errors as lower level routines can deal with
3334 		 * node_alloc_noretry == NULL.  If this kmalloc fails at boot
3335 		 * time, we are likely in bigger trouble.
3336 		 */
3337 		node_alloc_noretry = kmalloc(sizeof(*node_alloc_noretry),
3338 						GFP_KERNEL);
3339 	} else {
3340 		/* allocations done at boot time */
3341 		node_alloc_noretry = NULL;
3342 	}
3343 
3344 	/* bit mask controlling how hard we retry per-node allocations */
3345 	if (node_alloc_noretry)
3346 		nodes_clear(*node_alloc_noretry);
3347 
3348 	for (i = 0; i < h->max_huge_pages; ++i) {
3349 		if (hstate_is_gigantic(h)) {
3350 			if (!alloc_bootmem_huge_page(h, NUMA_NO_NODE))
3351 				break;
3352 		} else if (!alloc_pool_huge_page(h,
3353 					 &node_states[N_MEMORY],
3354 					 node_alloc_noretry))
3355 			break;
3356 		cond_resched();
3357 	}
3358 	if (i < h->max_huge_pages) {
3359 		char buf[32];
3360 
3361 		string_get_size(huge_page_size(h), 1, STRING_UNITS_2, buf, 32);
3362 		pr_warn("HugeTLB: allocating %lu of page size %s failed.  Only allocated %lu hugepages.\n",
3363 			h->max_huge_pages, buf, i);
3364 		h->max_huge_pages = i;
3365 	}
3366 	kfree(node_alloc_noretry);
3367 }
3368 
3369 static void __init hugetlb_init_hstates(void)
3370 {
3371 	struct hstate *h, *h2;
3372 
3373 	for_each_hstate(h) {
3374 		/* oversize hugepages were init'ed in early boot */
3375 		if (!hstate_is_gigantic(h))
3376 			hugetlb_hstate_alloc_pages(h);
3377 
3378 		/*
3379 		 * Set demote order for each hstate.  Note that
3380 		 * h->demote_order is initially 0.
3381 		 * - We can not demote gigantic pages if runtime freeing
3382 		 *   is not supported, so skip this.
3383 		 * - If CMA allocation is possible, we can not demote
3384 		 *   HUGETLB_PAGE_ORDER or smaller size pages.
3385 		 */
3386 		if (hstate_is_gigantic(h) && !gigantic_page_runtime_supported())
3387 			continue;
3388 		if (hugetlb_cma_size && h->order <= HUGETLB_PAGE_ORDER)
3389 			continue;
3390 		for_each_hstate(h2) {
3391 			if (h2 == h)
3392 				continue;
3393 			if (h2->order < h->order &&
3394 			    h2->order > h->demote_order)
3395 				h->demote_order = h2->order;
3396 		}
3397 	}
3398 }
3399 
3400 static void __init report_hugepages(void)
3401 {
3402 	struct hstate *h;
3403 
3404 	for_each_hstate(h) {
3405 		char buf[32];
3406 
3407 		string_get_size(huge_page_size(h), 1, STRING_UNITS_2, buf, 32);
3408 		pr_info("HugeTLB: registered %s page size, pre-allocated %ld pages\n",
3409 			buf, h->free_huge_pages);
3410 		pr_info("HugeTLB: %d KiB vmemmap can be freed for a %s page\n",
3411 			hugetlb_vmemmap_optimizable_size(h) / SZ_1K, buf);
3412 	}
3413 }
3414 
3415 #ifdef CONFIG_HIGHMEM
3416 static void try_to_free_low(struct hstate *h, unsigned long count,
3417 						nodemask_t *nodes_allowed)
3418 {
3419 	int i;
3420 	LIST_HEAD(page_list);
3421 
3422 	lockdep_assert_held(&hugetlb_lock);
3423 	if (hstate_is_gigantic(h))
3424 		return;
3425 
3426 	/*
3427 	 * Collect pages to be freed on a list, and free after dropping lock
3428 	 */
3429 	for_each_node_mask(i, *nodes_allowed) {
3430 		struct folio *folio, *next;
3431 		struct list_head *freel = &h->hugepage_freelists[i];
3432 		list_for_each_entry_safe(folio, next, freel, lru) {
3433 			if (count >= h->nr_huge_pages)
3434 				goto out;
3435 			if (folio_test_highmem(folio))
3436 				continue;
3437 			remove_hugetlb_folio(h, folio, false);
3438 			list_add(&folio->lru, &page_list);
3439 		}
3440 	}
3441 
3442 out:
3443 	spin_unlock_irq(&hugetlb_lock);
3444 	update_and_free_pages_bulk(h, &page_list);
3445 	spin_lock_irq(&hugetlb_lock);
3446 }
3447 #else
3448 static inline void try_to_free_low(struct hstate *h, unsigned long count,
3449 						nodemask_t *nodes_allowed)
3450 {
3451 }
3452 #endif
3453 
3454 /*
3455  * Increment or decrement surplus_huge_pages.  Keep node-specific counters
3456  * balanced by operating on them in a round-robin fashion.
3457  * Returns 1 if an adjustment was made.
3458  */
3459 static int adjust_pool_surplus(struct hstate *h, nodemask_t *nodes_allowed,
3460 				int delta)
3461 {
3462 	int nr_nodes, node;
3463 
3464 	lockdep_assert_held(&hugetlb_lock);
3465 	VM_BUG_ON(delta != -1 && delta != 1);
3466 
3467 	if (delta < 0) {
3468 		for_each_node_mask_to_alloc(h, nr_nodes, node, nodes_allowed) {
3469 			if (h->surplus_huge_pages_node[node])
3470 				goto found;
3471 		}
3472 	} else {
3473 		for_each_node_mask_to_free(h, nr_nodes, node, nodes_allowed) {
3474 			if (h->surplus_huge_pages_node[node] <
3475 					h->nr_huge_pages_node[node])
3476 				goto found;
3477 		}
3478 	}
3479 	return 0;
3480 
3481 found:
3482 	h->surplus_huge_pages += delta;
3483 	h->surplus_huge_pages_node[node] += delta;
3484 	return 1;
3485 }
3486 
3487 #define persistent_huge_pages(h) (h->nr_huge_pages - h->surplus_huge_pages)
3488 static int set_max_huge_pages(struct hstate *h, unsigned long count, int nid,
3489 			      nodemask_t *nodes_allowed)
3490 {
3491 	unsigned long min_count, ret;
3492 	LIST_HEAD(page_list);
3493 	NODEMASK_ALLOC(nodemask_t, node_alloc_noretry, GFP_KERNEL);
3494 
3495 	/*
3496 	 * Bit mask controlling how hard we retry per-node allocations.
3497 	 * If we can not allocate the bit mask, do not attempt to allocate
3498 	 * the requested huge pages.
3499 	 */
3500 	if (node_alloc_noretry)
3501 		nodes_clear(*node_alloc_noretry);
3502 	else
3503 		return -ENOMEM;
3504 
3505 	/*
3506 	 * resize_lock mutex prevents concurrent adjustments to number of
3507 	 * pages in hstate via the proc/sysfs interfaces.
3508 	 */
3509 	mutex_lock(&h->resize_lock);
3510 	flush_free_hpage_work(h);
3511 	spin_lock_irq(&hugetlb_lock);
3512 
3513 	/*
3514 	 * Check for a node specific request.
3515 	 * Changing node specific huge page count may require a corresponding
3516 	 * change to the global count.  In any case, the passed node mask
3517 	 * (nodes_allowed) will restrict alloc/free to the specified node.
3518 	 */
3519 	if (nid != NUMA_NO_NODE) {
3520 		unsigned long old_count = count;
3521 
3522 		count += persistent_huge_pages(h) -
3523 			 (h->nr_huge_pages_node[nid] -
3524 			  h->surplus_huge_pages_node[nid]);
3525 		/*
3526 		 * User may have specified a large count value which caused the
3527 		 * above calculation to overflow.  In this case, they wanted
3528 		 * to allocate as many huge pages as possible.  Set count to
3529 		 * largest possible value to align with their intention.
3530 		 */
3531 		if (count < old_count)
3532 			count = ULONG_MAX;
3533 	}
3534 
3535 	/*
3536 	 * Gigantic pages runtime allocation depend on the capability for large
3537 	 * page range allocation.
3538 	 * If the system does not provide this feature, return an error when
3539 	 * the user tries to allocate gigantic pages but let the user free the
3540 	 * boottime allocated gigantic pages.
3541 	 */
3542 	if (hstate_is_gigantic(h) && !IS_ENABLED(CONFIG_CONTIG_ALLOC)) {
3543 		if (count > persistent_huge_pages(h)) {
3544 			spin_unlock_irq(&hugetlb_lock);
3545 			mutex_unlock(&h->resize_lock);
3546 			NODEMASK_FREE(node_alloc_noretry);
3547 			return -EINVAL;
3548 		}
3549 		/* Fall through to decrease pool */
3550 	}
3551 
3552 	/*
3553 	 * Increase the pool size
3554 	 * First take pages out of surplus state.  Then make up the
3555 	 * remaining difference by allocating fresh huge pages.
3556 	 *
3557 	 * We might race with alloc_surplus_hugetlb_folio() here and be unable
3558 	 * to convert a surplus huge page to a normal huge page. That is
3559 	 * not critical, though, it just means the overall size of the
3560 	 * pool might be one hugepage larger than it needs to be, but
3561 	 * within all the constraints specified by the sysctls.
3562 	 */
3563 	while (h->surplus_huge_pages && count > persistent_huge_pages(h)) {
3564 		if (!adjust_pool_surplus(h, nodes_allowed, -1))
3565 			break;
3566 	}
3567 
3568 	while (count > persistent_huge_pages(h)) {
3569 		/*
3570 		 * If this allocation races such that we no longer need the
3571 		 * page, free_huge_folio will handle it by freeing the page
3572 		 * and reducing the surplus.
3573 		 */
3574 		spin_unlock_irq(&hugetlb_lock);
3575 
3576 		/* yield cpu to avoid soft lockup */
3577 		cond_resched();
3578 
3579 		ret = alloc_pool_huge_page(h, nodes_allowed,
3580 						node_alloc_noretry);
3581 		spin_lock_irq(&hugetlb_lock);
3582 		if (!ret)
3583 			goto out;
3584 
3585 		/* Bail for signals. Probably ctrl-c from user */
3586 		if (signal_pending(current))
3587 			goto out;
3588 	}
3589 
3590 	/*
3591 	 * Decrease the pool size
3592 	 * First return free pages to the buddy allocator (being careful
3593 	 * to keep enough around to satisfy reservations).  Then place
3594 	 * pages into surplus state as needed so the pool will shrink
3595 	 * to the desired size as pages become free.
3596 	 *
3597 	 * By placing pages into the surplus state independent of the
3598 	 * overcommit value, we are allowing the surplus pool size to
3599 	 * exceed overcommit. There are few sane options here. Since
3600 	 * alloc_surplus_hugetlb_folio() is checking the global counter,
3601 	 * though, we'll note that we're not allowed to exceed surplus
3602 	 * and won't grow the pool anywhere else. Not until one of the
3603 	 * sysctls are changed, or the surplus pages go out of use.
3604 	 */
3605 	min_count = h->resv_huge_pages + h->nr_huge_pages - h->free_huge_pages;
3606 	min_count = max(count, min_count);
3607 	try_to_free_low(h, min_count, nodes_allowed);
3608 
3609 	/*
3610 	 * Collect pages to be removed on list without dropping lock
3611 	 */
3612 	while (min_count < persistent_huge_pages(h)) {
3613 		struct folio *folio;
3614 
3615 		folio = remove_pool_hugetlb_folio(h, nodes_allowed, 0);
3616 		if (!folio)
3617 			break;
3618 
3619 		list_add(&folio->lru, &page_list);
3620 	}
3621 	/* free the pages after dropping lock */
3622 	spin_unlock_irq(&hugetlb_lock);
3623 	update_and_free_pages_bulk(h, &page_list);
3624 	flush_free_hpage_work(h);
3625 	spin_lock_irq(&hugetlb_lock);
3626 
3627 	while (count < persistent_huge_pages(h)) {
3628 		if (!adjust_pool_surplus(h, nodes_allowed, 1))
3629 			break;
3630 	}
3631 out:
3632 	h->max_huge_pages = persistent_huge_pages(h);
3633 	spin_unlock_irq(&hugetlb_lock);
3634 	mutex_unlock(&h->resize_lock);
3635 
3636 	NODEMASK_FREE(node_alloc_noretry);
3637 
3638 	return 0;
3639 }
3640 
3641 static int demote_free_hugetlb_folio(struct hstate *h, struct folio *folio)
3642 {
3643 	int i, nid = folio_nid(folio);
3644 	struct hstate *target_hstate;
3645 	struct page *subpage;
3646 	struct folio *inner_folio;
3647 	int rc = 0;
3648 
3649 	target_hstate = size_to_hstate(PAGE_SIZE << h->demote_order);
3650 
3651 	remove_hugetlb_folio_for_demote(h, folio, false);
3652 	spin_unlock_irq(&hugetlb_lock);
3653 
3654 	/*
3655 	 * If vmemmap already existed for folio, the remove routine above would
3656 	 * have cleared the hugetlb folio flag.  Hence the folio is technically
3657 	 * no longer a hugetlb folio.  hugetlb_vmemmap_restore can only be
3658 	 * passed hugetlb folios and will BUG otherwise.
3659 	 */
3660 	if (folio_test_hugetlb(folio)) {
3661 		rc = hugetlb_vmemmap_restore(h, &folio->page);
3662 		if (rc) {
3663 			/* Allocation of vmemmmap failed, we can not demote folio */
3664 			spin_lock_irq(&hugetlb_lock);
3665 			folio_ref_unfreeze(folio, 1);
3666 			add_hugetlb_folio(h, folio, false);
3667 			return rc;
3668 		}
3669 	}
3670 
3671 	/*
3672 	 * Use destroy_compound_hugetlb_folio_for_demote for all huge page
3673 	 * sizes as it will not ref count folios.
3674 	 */
3675 	destroy_compound_hugetlb_folio_for_demote(folio, huge_page_order(h));
3676 
3677 	/*
3678 	 * Taking target hstate mutex synchronizes with set_max_huge_pages.
3679 	 * Without the mutex, pages added to target hstate could be marked
3680 	 * as surplus.
3681 	 *
3682 	 * Note that we already hold h->resize_lock.  To prevent deadlock,
3683 	 * use the convention of always taking larger size hstate mutex first.
3684 	 */
3685 	mutex_lock(&target_hstate->resize_lock);
3686 	for (i = 0; i < pages_per_huge_page(h);
3687 				i += pages_per_huge_page(target_hstate)) {
3688 		subpage = folio_page(folio, i);
3689 		inner_folio = page_folio(subpage);
3690 		if (hstate_is_gigantic(target_hstate))
3691 			prep_compound_gigantic_folio_for_demote(inner_folio,
3692 							target_hstate->order);
3693 		else
3694 			prep_compound_page(subpage, target_hstate->order);
3695 		folio_change_private(inner_folio, NULL);
3696 		prep_new_hugetlb_folio(target_hstate, inner_folio, nid);
3697 		free_huge_folio(inner_folio);
3698 	}
3699 	mutex_unlock(&target_hstate->resize_lock);
3700 
3701 	spin_lock_irq(&hugetlb_lock);
3702 
3703 	/*
3704 	 * Not absolutely necessary, but for consistency update max_huge_pages
3705 	 * based on pool changes for the demoted page.
3706 	 */
3707 	h->max_huge_pages--;
3708 	target_hstate->max_huge_pages +=
3709 		pages_per_huge_page(h) / pages_per_huge_page(target_hstate);
3710 
3711 	return rc;
3712 }
3713 
3714 static int demote_pool_huge_page(struct hstate *h, nodemask_t *nodes_allowed)
3715 	__must_hold(&hugetlb_lock)
3716 {
3717 	int nr_nodes, node;
3718 	struct folio *folio;
3719 
3720 	lockdep_assert_held(&hugetlb_lock);
3721 
3722 	/* We should never get here if no demote order */
3723 	if (!h->demote_order) {
3724 		pr_warn("HugeTLB: NULL demote order passed to demote_pool_huge_page.\n");
3725 		return -EINVAL;		/* internal error */
3726 	}
3727 
3728 	for_each_node_mask_to_free(h, nr_nodes, node, nodes_allowed) {
3729 		list_for_each_entry(folio, &h->hugepage_freelists[node], lru) {
3730 			if (folio_test_hwpoison(folio))
3731 				continue;
3732 			return demote_free_hugetlb_folio(h, folio);
3733 		}
3734 	}
3735 
3736 	/*
3737 	 * Only way to get here is if all pages on free lists are poisoned.
3738 	 * Return -EBUSY so that caller will not retry.
3739 	 */
3740 	return -EBUSY;
3741 }
3742 
3743 #define HSTATE_ATTR_RO(_name) \
3744 	static struct kobj_attribute _name##_attr = __ATTR_RO(_name)
3745 
3746 #define HSTATE_ATTR_WO(_name) \
3747 	static struct kobj_attribute _name##_attr = __ATTR_WO(_name)
3748 
3749 #define HSTATE_ATTR(_name) \
3750 	static struct kobj_attribute _name##_attr = __ATTR_RW(_name)
3751 
3752 static struct kobject *hugepages_kobj;
3753 static struct kobject *hstate_kobjs[HUGE_MAX_HSTATE];
3754 
3755 static struct hstate *kobj_to_node_hstate(struct kobject *kobj, int *nidp);
3756 
3757 static struct hstate *kobj_to_hstate(struct kobject *kobj, int *nidp)
3758 {
3759 	int i;
3760 
3761 	for (i = 0; i < HUGE_MAX_HSTATE; i++)
3762 		if (hstate_kobjs[i] == kobj) {
3763 			if (nidp)
3764 				*nidp = NUMA_NO_NODE;
3765 			return &hstates[i];
3766 		}
3767 
3768 	return kobj_to_node_hstate(kobj, nidp);
3769 }
3770 
3771 static ssize_t nr_hugepages_show_common(struct kobject *kobj,
3772 					struct kobj_attribute *attr, char *buf)
3773 {
3774 	struct hstate *h;
3775 	unsigned long nr_huge_pages;
3776 	int nid;
3777 
3778 	h = kobj_to_hstate(kobj, &nid);
3779 	if (nid == NUMA_NO_NODE)
3780 		nr_huge_pages = h->nr_huge_pages;
3781 	else
3782 		nr_huge_pages = h->nr_huge_pages_node[nid];
3783 
3784 	return sysfs_emit(buf, "%lu\n", nr_huge_pages);
3785 }
3786 
3787 static ssize_t __nr_hugepages_store_common(bool obey_mempolicy,
3788 					   struct hstate *h, int nid,
3789 					   unsigned long count, size_t len)
3790 {
3791 	int err;
3792 	nodemask_t nodes_allowed, *n_mask;
3793 
3794 	if (hstate_is_gigantic(h) && !gigantic_page_runtime_supported())
3795 		return -EINVAL;
3796 
3797 	if (nid == NUMA_NO_NODE) {
3798 		/*
3799 		 * global hstate attribute
3800 		 */
3801 		if (!(obey_mempolicy &&
3802 				init_nodemask_of_mempolicy(&nodes_allowed)))
3803 			n_mask = &node_states[N_MEMORY];
3804 		else
3805 			n_mask = &nodes_allowed;
3806 	} else {
3807 		/*
3808 		 * Node specific request.  count adjustment happens in
3809 		 * set_max_huge_pages() after acquiring hugetlb_lock.
3810 		 */
3811 		init_nodemask_of_node(&nodes_allowed, nid);
3812 		n_mask = &nodes_allowed;
3813 	}
3814 
3815 	err = set_max_huge_pages(h, count, nid, n_mask);
3816 
3817 	return err ? err : len;
3818 }
3819 
3820 static ssize_t nr_hugepages_store_common(bool obey_mempolicy,
3821 					 struct kobject *kobj, const char *buf,
3822 					 size_t len)
3823 {
3824 	struct hstate *h;
3825 	unsigned long count;
3826 	int nid;
3827 	int err;
3828 
3829 	err = kstrtoul(buf, 10, &count);
3830 	if (err)
3831 		return err;
3832 
3833 	h = kobj_to_hstate(kobj, &nid);
3834 	return __nr_hugepages_store_common(obey_mempolicy, h, nid, count, len);
3835 }
3836 
3837 static ssize_t nr_hugepages_show(struct kobject *kobj,
3838 				       struct kobj_attribute *attr, char *buf)
3839 {
3840 	return nr_hugepages_show_common(kobj, attr, buf);
3841 }
3842 
3843 static ssize_t nr_hugepages_store(struct kobject *kobj,
3844 	       struct kobj_attribute *attr, const char *buf, size_t len)
3845 {
3846 	return nr_hugepages_store_common(false, kobj, buf, len);
3847 }
3848 HSTATE_ATTR(nr_hugepages);
3849 
3850 #ifdef CONFIG_NUMA
3851 
3852 /*
3853  * hstate attribute for optionally mempolicy-based constraint on persistent
3854  * huge page alloc/free.
3855  */
3856 static ssize_t nr_hugepages_mempolicy_show(struct kobject *kobj,
3857 					   struct kobj_attribute *attr,
3858 					   char *buf)
3859 {
3860 	return nr_hugepages_show_common(kobj, attr, buf);
3861 }
3862 
3863 static ssize_t nr_hugepages_mempolicy_store(struct kobject *kobj,
3864 	       struct kobj_attribute *attr, const char *buf, size_t len)
3865 {
3866 	return nr_hugepages_store_common(true, kobj, buf, len);
3867 }
3868 HSTATE_ATTR(nr_hugepages_mempolicy);
3869 #endif
3870 
3871 
3872 static ssize_t nr_overcommit_hugepages_show(struct kobject *kobj,
3873 					struct kobj_attribute *attr, char *buf)
3874 {
3875 	struct hstate *h = kobj_to_hstate(kobj, NULL);
3876 	return sysfs_emit(buf, "%lu\n", h->nr_overcommit_huge_pages);
3877 }
3878 
3879 static ssize_t nr_overcommit_hugepages_store(struct kobject *kobj,
3880 		struct kobj_attribute *attr, const char *buf, size_t count)
3881 {
3882 	int err;
3883 	unsigned long input;
3884 	struct hstate *h = kobj_to_hstate(kobj, NULL);
3885 
3886 	if (hstate_is_gigantic(h))
3887 		return -EINVAL;
3888 
3889 	err = kstrtoul(buf, 10, &input);
3890 	if (err)
3891 		return err;
3892 
3893 	spin_lock_irq(&hugetlb_lock);
3894 	h->nr_overcommit_huge_pages = input;
3895 	spin_unlock_irq(&hugetlb_lock);
3896 
3897 	return count;
3898 }
3899 HSTATE_ATTR(nr_overcommit_hugepages);
3900 
3901 static ssize_t free_hugepages_show(struct kobject *kobj,
3902 					struct kobj_attribute *attr, char *buf)
3903 {
3904 	struct hstate *h;
3905 	unsigned long free_huge_pages;
3906 	int nid;
3907 
3908 	h = kobj_to_hstate(kobj, &nid);
3909 	if (nid == NUMA_NO_NODE)
3910 		free_huge_pages = h->free_huge_pages;
3911 	else
3912 		free_huge_pages = h->free_huge_pages_node[nid];
3913 
3914 	return sysfs_emit(buf, "%lu\n", free_huge_pages);
3915 }
3916 HSTATE_ATTR_RO(free_hugepages);
3917 
3918 static ssize_t resv_hugepages_show(struct kobject *kobj,
3919 					struct kobj_attribute *attr, char *buf)
3920 {
3921 	struct hstate *h = kobj_to_hstate(kobj, NULL);
3922 	return sysfs_emit(buf, "%lu\n", h->resv_huge_pages);
3923 }
3924 HSTATE_ATTR_RO(resv_hugepages);
3925 
3926 static ssize_t surplus_hugepages_show(struct kobject *kobj,
3927 					struct kobj_attribute *attr, char *buf)
3928 {
3929 	struct hstate *h;
3930 	unsigned long surplus_huge_pages;
3931 	int nid;
3932 
3933 	h = kobj_to_hstate(kobj, &nid);
3934 	if (nid == NUMA_NO_NODE)
3935 		surplus_huge_pages = h->surplus_huge_pages;
3936 	else
3937 		surplus_huge_pages = h->surplus_huge_pages_node[nid];
3938 
3939 	return sysfs_emit(buf, "%lu\n", surplus_huge_pages);
3940 }
3941 HSTATE_ATTR_RO(surplus_hugepages);
3942 
3943 static ssize_t demote_store(struct kobject *kobj,
3944 	       struct kobj_attribute *attr, const char *buf, size_t len)
3945 {
3946 	unsigned long nr_demote;
3947 	unsigned long nr_available;
3948 	nodemask_t nodes_allowed, *n_mask;
3949 	struct hstate *h;
3950 	int err;
3951 	int nid;
3952 
3953 	err = kstrtoul(buf, 10, &nr_demote);
3954 	if (err)
3955 		return err;
3956 	h = kobj_to_hstate(kobj, &nid);
3957 
3958 	if (nid != NUMA_NO_NODE) {
3959 		init_nodemask_of_node(&nodes_allowed, nid);
3960 		n_mask = &nodes_allowed;
3961 	} else {
3962 		n_mask = &node_states[N_MEMORY];
3963 	}
3964 
3965 	/* Synchronize with other sysfs operations modifying huge pages */
3966 	mutex_lock(&h->resize_lock);
3967 	spin_lock_irq(&hugetlb_lock);
3968 
3969 	while (nr_demote) {
3970 		/*
3971 		 * Check for available pages to demote each time thorough the
3972 		 * loop as demote_pool_huge_page will drop hugetlb_lock.
3973 		 */
3974 		if (nid != NUMA_NO_NODE)
3975 			nr_available = h->free_huge_pages_node[nid];
3976 		else
3977 			nr_available = h->free_huge_pages;
3978 		nr_available -= h->resv_huge_pages;
3979 		if (!nr_available)
3980 			break;
3981 
3982 		err = demote_pool_huge_page(h, n_mask);
3983 		if (err)
3984 			break;
3985 
3986 		nr_demote--;
3987 	}
3988 
3989 	spin_unlock_irq(&hugetlb_lock);
3990 	mutex_unlock(&h->resize_lock);
3991 
3992 	if (err)
3993 		return err;
3994 	return len;
3995 }
3996 HSTATE_ATTR_WO(demote);
3997 
3998 static ssize_t demote_size_show(struct kobject *kobj,
3999 					struct kobj_attribute *attr, char *buf)
4000 {
4001 	struct hstate *h = kobj_to_hstate(kobj, NULL);
4002 	unsigned long demote_size = (PAGE_SIZE << h->demote_order) / SZ_1K;
4003 
4004 	return sysfs_emit(buf, "%lukB\n", demote_size);
4005 }
4006 
4007 static ssize_t demote_size_store(struct kobject *kobj,
4008 					struct kobj_attribute *attr,
4009 					const char *buf, size_t count)
4010 {
4011 	struct hstate *h, *demote_hstate;
4012 	unsigned long demote_size;
4013 	unsigned int demote_order;
4014 
4015 	demote_size = (unsigned long)memparse(buf, NULL);
4016 
4017 	demote_hstate = size_to_hstate(demote_size);
4018 	if (!demote_hstate)
4019 		return -EINVAL;
4020 	demote_order = demote_hstate->order;
4021 	if (demote_order < HUGETLB_PAGE_ORDER)
4022 		return -EINVAL;
4023 
4024 	/* demote order must be smaller than hstate order */
4025 	h = kobj_to_hstate(kobj, NULL);
4026 	if (demote_order >= h->order)
4027 		return -EINVAL;
4028 
4029 	/* resize_lock synchronizes access to demote size and writes */
4030 	mutex_lock(&h->resize_lock);
4031 	h->demote_order = demote_order;
4032 	mutex_unlock(&h->resize_lock);
4033 
4034 	return count;
4035 }
4036 HSTATE_ATTR(demote_size);
4037 
4038 static struct attribute *hstate_attrs[] = {
4039 	&nr_hugepages_attr.attr,
4040 	&nr_overcommit_hugepages_attr.attr,
4041 	&free_hugepages_attr.attr,
4042 	&resv_hugepages_attr.attr,
4043 	&surplus_hugepages_attr.attr,
4044 #ifdef CONFIG_NUMA
4045 	&nr_hugepages_mempolicy_attr.attr,
4046 #endif
4047 	NULL,
4048 };
4049 
4050 static const struct attribute_group hstate_attr_group = {
4051 	.attrs = hstate_attrs,
4052 };
4053 
4054 static struct attribute *hstate_demote_attrs[] = {
4055 	&demote_size_attr.attr,
4056 	&demote_attr.attr,
4057 	NULL,
4058 };
4059 
4060 static const struct attribute_group hstate_demote_attr_group = {
4061 	.attrs = hstate_demote_attrs,
4062 };
4063 
4064 static int hugetlb_sysfs_add_hstate(struct hstate *h, struct kobject *parent,
4065 				    struct kobject **hstate_kobjs,
4066 				    const struct attribute_group *hstate_attr_group)
4067 {
4068 	int retval;
4069 	int hi = hstate_index(h);
4070 
4071 	hstate_kobjs[hi] = kobject_create_and_add(h->name, parent);
4072 	if (!hstate_kobjs[hi])
4073 		return -ENOMEM;
4074 
4075 	retval = sysfs_create_group(hstate_kobjs[hi], hstate_attr_group);
4076 	if (retval) {
4077 		kobject_put(hstate_kobjs[hi]);
4078 		hstate_kobjs[hi] = NULL;
4079 		return retval;
4080 	}
4081 
4082 	if (h->demote_order) {
4083 		retval = sysfs_create_group(hstate_kobjs[hi],
4084 					    &hstate_demote_attr_group);
4085 		if (retval) {
4086 			pr_warn("HugeTLB unable to create demote interfaces for %s\n", h->name);
4087 			sysfs_remove_group(hstate_kobjs[hi], hstate_attr_group);
4088 			kobject_put(hstate_kobjs[hi]);
4089 			hstate_kobjs[hi] = NULL;
4090 			return retval;
4091 		}
4092 	}
4093 
4094 	return 0;
4095 }
4096 
4097 #ifdef CONFIG_NUMA
4098 static bool hugetlb_sysfs_initialized __ro_after_init;
4099 
4100 /*
4101  * node_hstate/s - associate per node hstate attributes, via their kobjects,
4102  * with node devices in node_devices[] using a parallel array.  The array
4103  * index of a node device or _hstate == node id.
4104  * This is here to avoid any static dependency of the node device driver, in
4105  * the base kernel, on the hugetlb module.
4106  */
4107 struct node_hstate {
4108 	struct kobject		*hugepages_kobj;
4109 	struct kobject		*hstate_kobjs[HUGE_MAX_HSTATE];
4110 };
4111 static struct node_hstate node_hstates[MAX_NUMNODES];
4112 
4113 /*
4114  * A subset of global hstate attributes for node devices
4115  */
4116 static struct attribute *per_node_hstate_attrs[] = {
4117 	&nr_hugepages_attr.attr,
4118 	&free_hugepages_attr.attr,
4119 	&surplus_hugepages_attr.attr,
4120 	NULL,
4121 };
4122 
4123 static const struct attribute_group per_node_hstate_attr_group = {
4124 	.attrs = per_node_hstate_attrs,
4125 };
4126 
4127 /*
4128  * kobj_to_node_hstate - lookup global hstate for node device hstate attr kobj.
4129  * Returns node id via non-NULL nidp.
4130  */
4131 static struct hstate *kobj_to_node_hstate(struct kobject *kobj, int *nidp)
4132 {
4133 	int nid;
4134 
4135 	for (nid = 0; nid < nr_node_ids; nid++) {
4136 		struct node_hstate *nhs = &node_hstates[nid];
4137 		int i;
4138 		for (i = 0; i < HUGE_MAX_HSTATE; i++)
4139 			if (nhs->hstate_kobjs[i] == kobj) {
4140 				if (nidp)
4141 					*nidp = nid;
4142 				return &hstates[i];
4143 			}
4144 	}
4145 
4146 	BUG();
4147 	return NULL;
4148 }
4149 
4150 /*
4151  * Unregister hstate attributes from a single node device.
4152  * No-op if no hstate attributes attached.
4153  */
4154 void hugetlb_unregister_node(struct node *node)
4155 {
4156 	struct hstate *h;
4157 	struct node_hstate *nhs = &node_hstates[node->dev.id];
4158 
4159 	if (!nhs->hugepages_kobj)
4160 		return;		/* no hstate attributes */
4161 
4162 	for_each_hstate(h) {
4163 		int idx = hstate_index(h);
4164 		struct kobject *hstate_kobj = nhs->hstate_kobjs[idx];
4165 
4166 		if (!hstate_kobj)
4167 			continue;
4168 		if (h->demote_order)
4169 			sysfs_remove_group(hstate_kobj, &hstate_demote_attr_group);
4170 		sysfs_remove_group(hstate_kobj, &per_node_hstate_attr_group);
4171 		kobject_put(hstate_kobj);
4172 		nhs->hstate_kobjs[idx] = NULL;
4173 	}
4174 
4175 	kobject_put(nhs->hugepages_kobj);
4176 	nhs->hugepages_kobj = NULL;
4177 }
4178 
4179 
4180 /*
4181  * Register hstate attributes for a single node device.
4182  * No-op if attributes already registered.
4183  */
4184 void hugetlb_register_node(struct node *node)
4185 {
4186 	struct hstate *h;
4187 	struct node_hstate *nhs = &node_hstates[node->dev.id];
4188 	int err;
4189 
4190 	if (!hugetlb_sysfs_initialized)
4191 		return;
4192 
4193 	if (nhs->hugepages_kobj)
4194 		return;		/* already allocated */
4195 
4196 	nhs->hugepages_kobj = kobject_create_and_add("hugepages",
4197 							&node->dev.kobj);
4198 	if (!nhs->hugepages_kobj)
4199 		return;
4200 
4201 	for_each_hstate(h) {
4202 		err = hugetlb_sysfs_add_hstate(h, nhs->hugepages_kobj,
4203 						nhs->hstate_kobjs,
4204 						&per_node_hstate_attr_group);
4205 		if (err) {
4206 			pr_err("HugeTLB: Unable to add hstate %s for node %d\n",
4207 				h->name, node->dev.id);
4208 			hugetlb_unregister_node(node);
4209 			break;
4210 		}
4211 	}
4212 }
4213 
4214 /*
4215  * hugetlb init time:  register hstate attributes for all registered node
4216  * devices of nodes that have memory.  All on-line nodes should have
4217  * registered their associated device by this time.
4218  */
4219 static void __init hugetlb_register_all_nodes(void)
4220 {
4221 	int nid;
4222 
4223 	for_each_online_node(nid)
4224 		hugetlb_register_node(node_devices[nid]);
4225 }
4226 #else	/* !CONFIG_NUMA */
4227 
4228 static struct hstate *kobj_to_node_hstate(struct kobject *kobj, int *nidp)
4229 {
4230 	BUG();
4231 	if (nidp)
4232 		*nidp = -1;
4233 	return NULL;
4234 }
4235 
4236 static void hugetlb_register_all_nodes(void) { }
4237 
4238 #endif
4239 
4240 #ifdef CONFIG_CMA
4241 static void __init hugetlb_cma_check(void);
4242 #else
4243 static inline __init void hugetlb_cma_check(void)
4244 {
4245 }
4246 #endif
4247 
4248 static void __init hugetlb_sysfs_init(void)
4249 {
4250 	struct hstate *h;
4251 	int err;
4252 
4253 	hugepages_kobj = kobject_create_and_add("hugepages", mm_kobj);
4254 	if (!hugepages_kobj)
4255 		return;
4256 
4257 	for_each_hstate(h) {
4258 		err = hugetlb_sysfs_add_hstate(h, hugepages_kobj,
4259 					 hstate_kobjs, &hstate_attr_group);
4260 		if (err)
4261 			pr_err("HugeTLB: Unable to add hstate %s", h->name);
4262 	}
4263 
4264 #ifdef CONFIG_NUMA
4265 	hugetlb_sysfs_initialized = true;
4266 #endif
4267 	hugetlb_register_all_nodes();
4268 }
4269 
4270 #ifdef CONFIG_SYSCTL
4271 static void hugetlb_sysctl_init(void);
4272 #else
4273 static inline void hugetlb_sysctl_init(void) { }
4274 #endif
4275 
4276 static int __init hugetlb_init(void)
4277 {
4278 	int i;
4279 
4280 	BUILD_BUG_ON(sizeof_field(struct page, private) * BITS_PER_BYTE <
4281 			__NR_HPAGEFLAGS);
4282 
4283 	if (!hugepages_supported()) {
4284 		if (hugetlb_max_hstate || default_hstate_max_huge_pages)
4285 			pr_warn("HugeTLB: huge pages not supported, ignoring associated command-line parameters\n");
4286 		return 0;
4287 	}
4288 
4289 	/*
4290 	 * Make sure HPAGE_SIZE (HUGETLB_PAGE_ORDER) hstate exists.  Some
4291 	 * architectures depend on setup being done here.
4292 	 */
4293 	hugetlb_add_hstate(HUGETLB_PAGE_ORDER);
4294 	if (!parsed_default_hugepagesz) {
4295 		/*
4296 		 * If we did not parse a default huge page size, set
4297 		 * default_hstate_idx to HPAGE_SIZE hstate. And, if the
4298 		 * number of huge pages for this default size was implicitly
4299 		 * specified, set that here as well.
4300 		 * Note that the implicit setting will overwrite an explicit
4301 		 * setting.  A warning will be printed in this case.
4302 		 */
4303 		default_hstate_idx = hstate_index(size_to_hstate(HPAGE_SIZE));
4304 		if (default_hstate_max_huge_pages) {
4305 			if (default_hstate.max_huge_pages) {
4306 				char buf[32];
4307 
4308 				string_get_size(huge_page_size(&default_hstate),
4309 					1, STRING_UNITS_2, buf, 32);
4310 				pr_warn("HugeTLB: Ignoring hugepages=%lu associated with %s page size\n",
4311 					default_hstate.max_huge_pages, buf);
4312 				pr_warn("HugeTLB: Using hugepages=%lu for number of default huge pages\n",
4313 					default_hstate_max_huge_pages);
4314 			}
4315 			default_hstate.max_huge_pages =
4316 				default_hstate_max_huge_pages;
4317 
4318 			for_each_online_node(i)
4319 				default_hstate.max_huge_pages_node[i] =
4320 					default_hugepages_in_node[i];
4321 		}
4322 	}
4323 
4324 	hugetlb_cma_check();
4325 	hugetlb_init_hstates();
4326 	gather_bootmem_prealloc();
4327 	report_hugepages();
4328 
4329 	hugetlb_sysfs_init();
4330 	hugetlb_cgroup_file_init();
4331 	hugetlb_sysctl_init();
4332 
4333 #ifdef CONFIG_SMP
4334 	num_fault_mutexes = roundup_pow_of_two(8 * num_possible_cpus());
4335 #else
4336 	num_fault_mutexes = 1;
4337 #endif
4338 	hugetlb_fault_mutex_table =
4339 		kmalloc_array(num_fault_mutexes, sizeof(struct mutex),
4340 			      GFP_KERNEL);
4341 	BUG_ON(!hugetlb_fault_mutex_table);
4342 
4343 	for (i = 0; i < num_fault_mutexes; i++)
4344 		mutex_init(&hugetlb_fault_mutex_table[i]);
4345 	return 0;
4346 }
4347 subsys_initcall(hugetlb_init);
4348 
4349 /* Overwritten by architectures with more huge page sizes */
4350 bool __init __attribute((weak)) arch_hugetlb_valid_size(unsigned long size)
4351 {
4352 	return size == HPAGE_SIZE;
4353 }
4354 
4355 void __init hugetlb_add_hstate(unsigned int order)
4356 {
4357 	struct hstate *h;
4358 	unsigned long i;
4359 
4360 	if (size_to_hstate(PAGE_SIZE << order)) {
4361 		return;
4362 	}
4363 	BUG_ON(hugetlb_max_hstate >= HUGE_MAX_HSTATE);
4364 	BUG_ON(order == 0);
4365 	h = &hstates[hugetlb_max_hstate++];
4366 	mutex_init(&h->resize_lock);
4367 	h->order = order;
4368 	h->mask = ~(huge_page_size(h) - 1);
4369 	for (i = 0; i < MAX_NUMNODES; ++i)
4370 		INIT_LIST_HEAD(&h->hugepage_freelists[i]);
4371 	INIT_LIST_HEAD(&h->hugepage_activelist);
4372 	h->next_nid_to_alloc = first_memory_node;
4373 	h->next_nid_to_free = first_memory_node;
4374 	snprintf(h->name, HSTATE_NAME_LEN, "hugepages-%lukB",
4375 					huge_page_size(h)/SZ_1K);
4376 
4377 	parsed_hstate = h;
4378 }
4379 
4380 bool __init __weak hugetlb_node_alloc_supported(void)
4381 {
4382 	return true;
4383 }
4384 
4385 static void __init hugepages_clear_pages_in_node(void)
4386 {
4387 	if (!hugetlb_max_hstate) {
4388 		default_hstate_max_huge_pages = 0;
4389 		memset(default_hugepages_in_node, 0,
4390 			sizeof(default_hugepages_in_node));
4391 	} else {
4392 		parsed_hstate->max_huge_pages = 0;
4393 		memset(parsed_hstate->max_huge_pages_node, 0,
4394 			sizeof(parsed_hstate->max_huge_pages_node));
4395 	}
4396 }
4397 
4398 /*
4399  * hugepages command line processing
4400  * hugepages normally follows a valid hugepagsz or default_hugepagsz
4401  * specification.  If not, ignore the hugepages value.  hugepages can also
4402  * be the first huge page command line  option in which case it implicitly
4403  * specifies the number of huge pages for the default size.
4404  */
4405 static int __init hugepages_setup(char *s)
4406 {
4407 	unsigned long *mhp;
4408 	static unsigned long *last_mhp;
4409 	int node = NUMA_NO_NODE;
4410 	int count;
4411 	unsigned long tmp;
4412 	char *p = s;
4413 
4414 	if (!parsed_valid_hugepagesz) {
4415 		pr_warn("HugeTLB: hugepages=%s does not follow a valid hugepagesz, ignoring\n", s);
4416 		parsed_valid_hugepagesz = true;
4417 		return 1;
4418 	}
4419 
4420 	/*
4421 	 * !hugetlb_max_hstate means we haven't parsed a hugepagesz= parameter
4422 	 * yet, so this hugepages= parameter goes to the "default hstate".
4423 	 * Otherwise, it goes with the previously parsed hugepagesz or
4424 	 * default_hugepagesz.
4425 	 */
4426 	else if (!hugetlb_max_hstate)
4427 		mhp = &default_hstate_max_huge_pages;
4428 	else
4429 		mhp = &parsed_hstate->max_huge_pages;
4430 
4431 	if (mhp == last_mhp) {
4432 		pr_warn("HugeTLB: hugepages= specified twice without interleaving hugepagesz=, ignoring hugepages=%s\n", s);
4433 		return 1;
4434 	}
4435 
4436 	while (*p) {
4437 		count = 0;
4438 		if (sscanf(p, "%lu%n", &tmp, &count) != 1)
4439 			goto invalid;
4440 		/* Parameter is node format */
4441 		if (p[count] == ':') {
4442 			if (!hugetlb_node_alloc_supported()) {
4443 				pr_warn("HugeTLB: architecture can't support node specific alloc, ignoring!\n");
4444 				return 1;
4445 			}
4446 			if (tmp >= MAX_NUMNODES || !node_online(tmp))
4447 				goto invalid;
4448 			node = array_index_nospec(tmp, MAX_NUMNODES);
4449 			p += count + 1;
4450 			/* Parse hugepages */
4451 			if (sscanf(p, "%lu%n", &tmp, &count) != 1)
4452 				goto invalid;
4453 			if (!hugetlb_max_hstate)
4454 				default_hugepages_in_node[node] = tmp;
4455 			else
4456 				parsed_hstate->max_huge_pages_node[node] = tmp;
4457 			*mhp += tmp;
4458 			/* Go to parse next node*/
4459 			if (p[count] == ',')
4460 				p += count + 1;
4461 			else
4462 				break;
4463 		} else {
4464 			if (p != s)
4465 				goto invalid;
4466 			*mhp = tmp;
4467 			break;
4468 		}
4469 	}
4470 
4471 	/*
4472 	 * Global state is always initialized later in hugetlb_init.
4473 	 * But we need to allocate gigantic hstates here early to still
4474 	 * use the bootmem allocator.
4475 	 */
4476 	if (hugetlb_max_hstate && hstate_is_gigantic(parsed_hstate))
4477 		hugetlb_hstate_alloc_pages(parsed_hstate);
4478 
4479 	last_mhp = mhp;
4480 
4481 	return 1;
4482 
4483 invalid:
4484 	pr_warn("HugeTLB: Invalid hugepages parameter %s\n", p);
4485 	hugepages_clear_pages_in_node();
4486 	return 1;
4487 }
4488 __setup("hugepages=", hugepages_setup);
4489 
4490 /*
4491  * hugepagesz command line processing
4492  * A specific huge page size can only be specified once with hugepagesz.
4493  * hugepagesz is followed by hugepages on the command line.  The global
4494  * variable 'parsed_valid_hugepagesz' is used to determine if prior
4495  * hugepagesz argument was valid.
4496  */
4497 static int __init hugepagesz_setup(char *s)
4498 {
4499 	unsigned long size;
4500 	struct hstate *h;
4501 
4502 	parsed_valid_hugepagesz = false;
4503 	size = (unsigned long)memparse(s, NULL);
4504 
4505 	if (!arch_hugetlb_valid_size(size)) {
4506 		pr_err("HugeTLB: unsupported hugepagesz=%s\n", s);
4507 		return 1;
4508 	}
4509 
4510 	h = size_to_hstate(size);
4511 	if (h) {
4512 		/*
4513 		 * hstate for this size already exists.  This is normally
4514 		 * an error, but is allowed if the existing hstate is the
4515 		 * default hstate.  More specifically, it is only allowed if
4516 		 * the number of huge pages for the default hstate was not
4517 		 * previously specified.
4518 		 */
4519 		if (!parsed_default_hugepagesz ||  h != &default_hstate ||
4520 		    default_hstate.max_huge_pages) {
4521 			pr_warn("HugeTLB: hugepagesz=%s specified twice, ignoring\n", s);
4522 			return 1;
4523 		}
4524 
4525 		/*
4526 		 * No need to call hugetlb_add_hstate() as hstate already
4527 		 * exists.  But, do set parsed_hstate so that a following
4528 		 * hugepages= parameter will be applied to this hstate.
4529 		 */
4530 		parsed_hstate = h;
4531 		parsed_valid_hugepagesz = true;
4532 		return 1;
4533 	}
4534 
4535 	hugetlb_add_hstate(ilog2(size) - PAGE_SHIFT);
4536 	parsed_valid_hugepagesz = true;
4537 	return 1;
4538 }
4539 __setup("hugepagesz=", hugepagesz_setup);
4540 
4541 /*
4542  * default_hugepagesz command line input
4543  * Only one instance of default_hugepagesz allowed on command line.
4544  */
4545 static int __init default_hugepagesz_setup(char *s)
4546 {
4547 	unsigned long size;
4548 	int i;
4549 
4550 	parsed_valid_hugepagesz = false;
4551 	if (parsed_default_hugepagesz) {
4552 		pr_err("HugeTLB: default_hugepagesz previously specified, ignoring %s\n", s);
4553 		return 1;
4554 	}
4555 
4556 	size = (unsigned long)memparse(s, NULL);
4557 
4558 	if (!arch_hugetlb_valid_size(size)) {
4559 		pr_err("HugeTLB: unsupported default_hugepagesz=%s\n", s);
4560 		return 1;
4561 	}
4562 
4563 	hugetlb_add_hstate(ilog2(size) - PAGE_SHIFT);
4564 	parsed_valid_hugepagesz = true;
4565 	parsed_default_hugepagesz = true;
4566 	default_hstate_idx = hstate_index(size_to_hstate(size));
4567 
4568 	/*
4569 	 * The number of default huge pages (for this size) could have been
4570 	 * specified as the first hugetlb parameter: hugepages=X.  If so,
4571 	 * then default_hstate_max_huge_pages is set.  If the default huge
4572 	 * page size is gigantic (> MAX_ORDER), then the pages must be
4573 	 * allocated here from bootmem allocator.
4574 	 */
4575 	if (default_hstate_max_huge_pages) {
4576 		default_hstate.max_huge_pages = default_hstate_max_huge_pages;
4577 		for_each_online_node(i)
4578 			default_hstate.max_huge_pages_node[i] =
4579 				default_hugepages_in_node[i];
4580 		if (hstate_is_gigantic(&default_hstate))
4581 			hugetlb_hstate_alloc_pages(&default_hstate);
4582 		default_hstate_max_huge_pages = 0;
4583 	}
4584 
4585 	return 1;
4586 }
4587 __setup("default_hugepagesz=", default_hugepagesz_setup);
4588 
4589 static nodemask_t *policy_mbind_nodemask(gfp_t gfp)
4590 {
4591 #ifdef CONFIG_NUMA
4592 	struct mempolicy *mpol = get_task_policy(current);
4593 
4594 	/*
4595 	 * Only enforce MPOL_BIND policy which overlaps with cpuset policy
4596 	 * (from policy_nodemask) specifically for hugetlb case
4597 	 */
4598 	if (mpol->mode == MPOL_BIND &&
4599 		(apply_policy_zone(mpol, gfp_zone(gfp)) &&
4600 		 cpuset_nodemask_valid_mems_allowed(&mpol->nodes)))
4601 		return &mpol->nodes;
4602 #endif
4603 	return NULL;
4604 }
4605 
4606 static unsigned int allowed_mems_nr(struct hstate *h)
4607 {
4608 	int node;
4609 	unsigned int nr = 0;
4610 	nodemask_t *mbind_nodemask;
4611 	unsigned int *array = h->free_huge_pages_node;
4612 	gfp_t gfp_mask = htlb_alloc_mask(h);
4613 
4614 	mbind_nodemask = policy_mbind_nodemask(gfp_mask);
4615 	for_each_node_mask(node, cpuset_current_mems_allowed) {
4616 		if (!mbind_nodemask || node_isset(node, *mbind_nodemask))
4617 			nr += array[node];
4618 	}
4619 
4620 	return nr;
4621 }
4622 
4623 #ifdef CONFIG_SYSCTL
4624 static int proc_hugetlb_doulongvec_minmax(struct ctl_table *table, int write,
4625 					  void *buffer, size_t *length,
4626 					  loff_t *ppos, unsigned long *out)
4627 {
4628 	struct ctl_table dup_table;
4629 
4630 	/*
4631 	 * In order to avoid races with __do_proc_doulongvec_minmax(), we
4632 	 * can duplicate the @table and alter the duplicate of it.
4633 	 */
4634 	dup_table = *table;
4635 	dup_table.data = out;
4636 
4637 	return proc_doulongvec_minmax(&dup_table, write, buffer, length, ppos);
4638 }
4639 
4640 static int hugetlb_sysctl_handler_common(bool obey_mempolicy,
4641 			 struct ctl_table *table, int write,
4642 			 void *buffer, size_t *length, loff_t *ppos)
4643 {
4644 	struct hstate *h = &default_hstate;
4645 	unsigned long tmp = h->max_huge_pages;
4646 	int ret;
4647 
4648 	if (!hugepages_supported())
4649 		return -EOPNOTSUPP;
4650 
4651 	ret = proc_hugetlb_doulongvec_minmax(table, write, buffer, length, ppos,
4652 					     &tmp);
4653 	if (ret)
4654 		goto out;
4655 
4656 	if (write)
4657 		ret = __nr_hugepages_store_common(obey_mempolicy, h,
4658 						  NUMA_NO_NODE, tmp, *length);
4659 out:
4660 	return ret;
4661 }
4662 
4663 static int hugetlb_sysctl_handler(struct ctl_table *table, int write,
4664 			  void *buffer, size_t *length, loff_t *ppos)
4665 {
4666 
4667 	return hugetlb_sysctl_handler_common(false, table, write,
4668 							buffer, length, ppos);
4669 }
4670 
4671 #ifdef CONFIG_NUMA
4672 static int hugetlb_mempolicy_sysctl_handler(struct ctl_table *table, int write,
4673 			  void *buffer, size_t *length, loff_t *ppos)
4674 {
4675 	return hugetlb_sysctl_handler_common(true, table, write,
4676 							buffer, length, ppos);
4677 }
4678 #endif /* CONFIG_NUMA */
4679 
4680 static int hugetlb_overcommit_handler(struct ctl_table *table, int write,
4681 		void *buffer, size_t *length, loff_t *ppos)
4682 {
4683 	struct hstate *h = &default_hstate;
4684 	unsigned long tmp;
4685 	int ret;
4686 
4687 	if (!hugepages_supported())
4688 		return -EOPNOTSUPP;
4689 
4690 	tmp = h->nr_overcommit_huge_pages;
4691 
4692 	if (write && hstate_is_gigantic(h))
4693 		return -EINVAL;
4694 
4695 	ret = proc_hugetlb_doulongvec_minmax(table, write, buffer, length, ppos,
4696 					     &tmp);
4697 	if (ret)
4698 		goto out;
4699 
4700 	if (write) {
4701 		spin_lock_irq(&hugetlb_lock);
4702 		h->nr_overcommit_huge_pages = tmp;
4703 		spin_unlock_irq(&hugetlb_lock);
4704 	}
4705 out:
4706 	return ret;
4707 }
4708 
4709 static struct ctl_table hugetlb_table[] = {
4710 	{
4711 		.procname	= "nr_hugepages",
4712 		.data		= NULL,
4713 		.maxlen		= sizeof(unsigned long),
4714 		.mode		= 0644,
4715 		.proc_handler	= hugetlb_sysctl_handler,
4716 	},
4717 #ifdef CONFIG_NUMA
4718 	{
4719 		.procname       = "nr_hugepages_mempolicy",
4720 		.data           = NULL,
4721 		.maxlen         = sizeof(unsigned long),
4722 		.mode           = 0644,
4723 		.proc_handler   = &hugetlb_mempolicy_sysctl_handler,
4724 	},
4725 #endif
4726 	{
4727 		.procname	= "hugetlb_shm_group",
4728 		.data		= &sysctl_hugetlb_shm_group,
4729 		.maxlen		= sizeof(gid_t),
4730 		.mode		= 0644,
4731 		.proc_handler	= proc_dointvec,
4732 	},
4733 	{
4734 		.procname	= "nr_overcommit_hugepages",
4735 		.data		= NULL,
4736 		.maxlen		= sizeof(unsigned long),
4737 		.mode		= 0644,
4738 		.proc_handler	= hugetlb_overcommit_handler,
4739 	},
4740 	{ }
4741 };
4742 
4743 static void hugetlb_sysctl_init(void)
4744 {
4745 	register_sysctl_init("vm", hugetlb_table);
4746 }
4747 #endif /* CONFIG_SYSCTL */
4748 
4749 void hugetlb_report_meminfo(struct seq_file *m)
4750 {
4751 	struct hstate *h;
4752 	unsigned long total = 0;
4753 
4754 	if (!hugepages_supported())
4755 		return;
4756 
4757 	for_each_hstate(h) {
4758 		unsigned long count = h->nr_huge_pages;
4759 
4760 		total += huge_page_size(h) * count;
4761 
4762 		if (h == &default_hstate)
4763 			seq_printf(m,
4764 				   "HugePages_Total:   %5lu\n"
4765 				   "HugePages_Free:    %5lu\n"
4766 				   "HugePages_Rsvd:    %5lu\n"
4767 				   "HugePages_Surp:    %5lu\n"
4768 				   "Hugepagesize:   %8lu kB\n",
4769 				   count,
4770 				   h->free_huge_pages,
4771 				   h->resv_huge_pages,
4772 				   h->surplus_huge_pages,
4773 				   huge_page_size(h) / SZ_1K);
4774 	}
4775 
4776 	seq_printf(m, "Hugetlb:        %8lu kB\n", total / SZ_1K);
4777 }
4778 
4779 int hugetlb_report_node_meminfo(char *buf, int len, int nid)
4780 {
4781 	struct hstate *h = &default_hstate;
4782 
4783 	if (!hugepages_supported())
4784 		return 0;
4785 
4786 	return sysfs_emit_at(buf, len,
4787 			     "Node %d HugePages_Total: %5u\n"
4788 			     "Node %d HugePages_Free:  %5u\n"
4789 			     "Node %d HugePages_Surp:  %5u\n",
4790 			     nid, h->nr_huge_pages_node[nid],
4791 			     nid, h->free_huge_pages_node[nid],
4792 			     nid, h->surplus_huge_pages_node[nid]);
4793 }
4794 
4795 void hugetlb_show_meminfo_node(int nid)
4796 {
4797 	struct hstate *h;
4798 
4799 	if (!hugepages_supported())
4800 		return;
4801 
4802 	for_each_hstate(h)
4803 		printk("Node %d hugepages_total=%u hugepages_free=%u hugepages_surp=%u hugepages_size=%lukB\n",
4804 			nid,
4805 			h->nr_huge_pages_node[nid],
4806 			h->free_huge_pages_node[nid],
4807 			h->surplus_huge_pages_node[nid],
4808 			huge_page_size(h) / SZ_1K);
4809 }
4810 
4811 void hugetlb_report_usage(struct seq_file *m, struct mm_struct *mm)
4812 {
4813 	seq_printf(m, "HugetlbPages:\t%8lu kB\n",
4814 		   K(atomic_long_read(&mm->hugetlb_usage)));
4815 }
4816 
4817 /* Return the number pages of memory we physically have, in PAGE_SIZE units. */
4818 unsigned long hugetlb_total_pages(void)
4819 {
4820 	struct hstate *h;
4821 	unsigned long nr_total_pages = 0;
4822 
4823 	for_each_hstate(h)
4824 		nr_total_pages += h->nr_huge_pages * pages_per_huge_page(h);
4825 	return nr_total_pages;
4826 }
4827 
4828 static int hugetlb_acct_memory(struct hstate *h, long delta)
4829 {
4830 	int ret = -ENOMEM;
4831 
4832 	if (!delta)
4833 		return 0;
4834 
4835 	spin_lock_irq(&hugetlb_lock);
4836 	/*
4837 	 * When cpuset is configured, it breaks the strict hugetlb page
4838 	 * reservation as the accounting is done on a global variable. Such
4839 	 * reservation is completely rubbish in the presence of cpuset because
4840 	 * the reservation is not checked against page availability for the
4841 	 * current cpuset. Application can still potentially OOM'ed by kernel
4842 	 * with lack of free htlb page in cpuset that the task is in.
4843 	 * Attempt to enforce strict accounting with cpuset is almost
4844 	 * impossible (or too ugly) because cpuset is too fluid that
4845 	 * task or memory node can be dynamically moved between cpusets.
4846 	 *
4847 	 * The change of semantics for shared hugetlb mapping with cpuset is
4848 	 * undesirable. However, in order to preserve some of the semantics,
4849 	 * we fall back to check against current free page availability as
4850 	 * a best attempt and hopefully to minimize the impact of changing
4851 	 * semantics that cpuset has.
4852 	 *
4853 	 * Apart from cpuset, we also have memory policy mechanism that
4854 	 * also determines from which node the kernel will allocate memory
4855 	 * in a NUMA system. So similar to cpuset, we also should consider
4856 	 * the memory policy of the current task. Similar to the description
4857 	 * above.
4858 	 */
4859 	if (delta > 0) {
4860 		if (gather_surplus_pages(h, delta) < 0)
4861 			goto out;
4862 
4863 		if (delta > allowed_mems_nr(h)) {
4864 			return_unused_surplus_pages(h, delta);
4865 			goto out;
4866 		}
4867 	}
4868 
4869 	ret = 0;
4870 	if (delta < 0)
4871 		return_unused_surplus_pages(h, (unsigned long) -delta);
4872 
4873 out:
4874 	spin_unlock_irq(&hugetlb_lock);
4875 	return ret;
4876 }
4877 
4878 static void hugetlb_vm_op_open(struct vm_area_struct *vma)
4879 {
4880 	struct resv_map *resv = vma_resv_map(vma);
4881 
4882 	/*
4883 	 * HPAGE_RESV_OWNER indicates a private mapping.
4884 	 * This new VMA should share its siblings reservation map if present.
4885 	 * The VMA will only ever have a valid reservation map pointer where
4886 	 * it is being copied for another still existing VMA.  As that VMA
4887 	 * has a reference to the reservation map it cannot disappear until
4888 	 * after this open call completes.  It is therefore safe to take a
4889 	 * new reference here without additional locking.
4890 	 */
4891 	if (resv && is_vma_resv_set(vma, HPAGE_RESV_OWNER)) {
4892 		resv_map_dup_hugetlb_cgroup_uncharge_info(resv);
4893 		kref_get(&resv->refs);
4894 	}
4895 
4896 	/*
4897 	 * vma_lock structure for sharable mappings is vma specific.
4898 	 * Clear old pointer (if copied via vm_area_dup) and allocate
4899 	 * new structure.  Before clearing, make sure vma_lock is not
4900 	 * for this vma.
4901 	 */
4902 	if (vma->vm_flags & VM_MAYSHARE) {
4903 		struct hugetlb_vma_lock *vma_lock = vma->vm_private_data;
4904 
4905 		if (vma_lock) {
4906 			if (vma_lock->vma != vma) {
4907 				vma->vm_private_data = NULL;
4908 				hugetlb_vma_lock_alloc(vma);
4909 			} else
4910 				pr_warn("HugeTLB: vma_lock already exists in %s.\n", __func__);
4911 		} else
4912 			hugetlb_vma_lock_alloc(vma);
4913 	}
4914 }
4915 
4916 static void hugetlb_vm_op_close(struct vm_area_struct *vma)
4917 {
4918 	struct hstate *h = hstate_vma(vma);
4919 	struct resv_map *resv;
4920 	struct hugepage_subpool *spool = subpool_vma(vma);
4921 	unsigned long reserve, start, end;
4922 	long gbl_reserve;
4923 
4924 	hugetlb_vma_lock_free(vma);
4925 
4926 	resv = vma_resv_map(vma);
4927 	if (!resv || !is_vma_resv_set(vma, HPAGE_RESV_OWNER))
4928 		return;
4929 
4930 	start = vma_hugecache_offset(h, vma, vma->vm_start);
4931 	end = vma_hugecache_offset(h, vma, vma->vm_end);
4932 
4933 	reserve = (end - start) - region_count(resv, start, end);
4934 	hugetlb_cgroup_uncharge_counter(resv, start, end);
4935 	if (reserve) {
4936 		/*
4937 		 * Decrement reserve counts.  The global reserve count may be
4938 		 * adjusted if the subpool has a minimum size.
4939 		 */
4940 		gbl_reserve = hugepage_subpool_put_pages(spool, reserve);
4941 		hugetlb_acct_memory(h, -gbl_reserve);
4942 	}
4943 
4944 	kref_put(&resv->refs, resv_map_release);
4945 }
4946 
4947 static int hugetlb_vm_op_split(struct vm_area_struct *vma, unsigned long addr)
4948 {
4949 	if (addr & ~(huge_page_mask(hstate_vma(vma))))
4950 		return -EINVAL;
4951 
4952 	/*
4953 	 * PMD sharing is only possible for PUD_SIZE-aligned address ranges
4954 	 * in HugeTLB VMAs. If we will lose PUD_SIZE alignment due to this
4955 	 * split, unshare PMDs in the PUD_SIZE interval surrounding addr now.
4956 	 */
4957 	if (addr & ~PUD_MASK) {
4958 		/*
4959 		 * hugetlb_vm_op_split is called right before we attempt to
4960 		 * split the VMA. We will need to unshare PMDs in the old and
4961 		 * new VMAs, so let's unshare before we split.
4962 		 */
4963 		unsigned long floor = addr & PUD_MASK;
4964 		unsigned long ceil = floor + PUD_SIZE;
4965 
4966 		if (floor >= vma->vm_start && ceil <= vma->vm_end)
4967 			hugetlb_unshare_pmds(vma, floor, ceil);
4968 	}
4969 
4970 	return 0;
4971 }
4972 
4973 static unsigned long hugetlb_vm_op_pagesize(struct vm_area_struct *vma)
4974 {
4975 	return huge_page_size(hstate_vma(vma));
4976 }
4977 
4978 /*
4979  * We cannot handle pagefaults against hugetlb pages at all.  They cause
4980  * handle_mm_fault() to try to instantiate regular-sized pages in the
4981  * hugepage VMA.  do_page_fault() is supposed to trap this, so BUG is we get
4982  * this far.
4983  */
4984 static vm_fault_t hugetlb_vm_op_fault(struct vm_fault *vmf)
4985 {
4986 	BUG();
4987 	return 0;
4988 }
4989 
4990 /*
4991  * When a new function is introduced to vm_operations_struct and added
4992  * to hugetlb_vm_ops, please consider adding the function to shm_vm_ops.
4993  * This is because under System V memory model, mappings created via
4994  * shmget/shmat with "huge page" specified are backed by hugetlbfs files,
4995  * their original vm_ops are overwritten with shm_vm_ops.
4996  */
4997 const struct vm_operations_struct hugetlb_vm_ops = {
4998 	.fault = hugetlb_vm_op_fault,
4999 	.open = hugetlb_vm_op_open,
5000 	.close = hugetlb_vm_op_close,
5001 	.may_split = hugetlb_vm_op_split,
5002 	.pagesize = hugetlb_vm_op_pagesize,
5003 };
5004 
5005 static pte_t make_huge_pte(struct vm_area_struct *vma, struct page *page,
5006 				int writable)
5007 {
5008 	pte_t entry;
5009 	unsigned int shift = huge_page_shift(hstate_vma(vma));
5010 
5011 	if (writable) {
5012 		entry = huge_pte_mkwrite(huge_pte_mkdirty(mk_huge_pte(page,
5013 					 vma->vm_page_prot)));
5014 	} else {
5015 		entry = huge_pte_wrprotect(mk_huge_pte(page,
5016 					   vma->vm_page_prot));
5017 	}
5018 	entry = pte_mkyoung(entry);
5019 	entry = arch_make_huge_pte(entry, shift, vma->vm_flags);
5020 
5021 	return entry;
5022 }
5023 
5024 static void set_huge_ptep_writable(struct vm_area_struct *vma,
5025 				   unsigned long address, pte_t *ptep)
5026 {
5027 	pte_t entry;
5028 
5029 	entry = huge_pte_mkwrite(huge_pte_mkdirty(huge_ptep_get(ptep)));
5030 	if (huge_ptep_set_access_flags(vma, address, ptep, entry, 1))
5031 		update_mmu_cache(vma, address, ptep);
5032 }
5033 
5034 bool is_hugetlb_entry_migration(pte_t pte)
5035 {
5036 	swp_entry_t swp;
5037 
5038 	if (huge_pte_none(pte) || pte_present(pte))
5039 		return false;
5040 	swp = pte_to_swp_entry(pte);
5041 	if (is_migration_entry(swp))
5042 		return true;
5043 	else
5044 		return false;
5045 }
5046 
5047 bool is_hugetlb_entry_hwpoisoned(pte_t pte)
5048 {
5049 	swp_entry_t swp;
5050 
5051 	if (huge_pte_none(pte) || pte_present(pte))
5052 		return false;
5053 	swp = pte_to_swp_entry(pte);
5054 	if (is_hwpoison_entry(swp))
5055 		return true;
5056 	else
5057 		return false;
5058 }
5059 
5060 static void
5061 hugetlb_install_folio(struct vm_area_struct *vma, pte_t *ptep, unsigned long addr,
5062 		      struct folio *new_folio, pte_t old, unsigned long sz)
5063 {
5064 	pte_t newpte = make_huge_pte(vma, &new_folio->page, 1);
5065 
5066 	__folio_mark_uptodate(new_folio);
5067 	hugepage_add_new_anon_rmap(new_folio, vma, addr);
5068 	if (userfaultfd_wp(vma) && huge_pte_uffd_wp(old))
5069 		newpte = huge_pte_mkuffd_wp(newpte);
5070 	set_huge_pte_at(vma->vm_mm, addr, ptep, newpte, sz);
5071 	hugetlb_count_add(pages_per_huge_page(hstate_vma(vma)), vma->vm_mm);
5072 	folio_set_hugetlb_migratable(new_folio);
5073 }
5074 
5075 int copy_hugetlb_page_range(struct mm_struct *dst, struct mm_struct *src,
5076 			    struct vm_area_struct *dst_vma,
5077 			    struct vm_area_struct *src_vma)
5078 {
5079 	pte_t *src_pte, *dst_pte, entry;
5080 	struct folio *pte_folio;
5081 	unsigned long addr;
5082 	bool cow = is_cow_mapping(src_vma->vm_flags);
5083 	struct hstate *h = hstate_vma(src_vma);
5084 	unsigned long sz = huge_page_size(h);
5085 	unsigned long npages = pages_per_huge_page(h);
5086 	struct mmu_notifier_range range;
5087 	unsigned long last_addr_mask;
5088 	int ret = 0;
5089 
5090 	if (cow) {
5091 		mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, src,
5092 					src_vma->vm_start,
5093 					src_vma->vm_end);
5094 		mmu_notifier_invalidate_range_start(&range);
5095 		vma_assert_write_locked(src_vma);
5096 		raw_write_seqcount_begin(&src->write_protect_seq);
5097 	} else {
5098 		/*
5099 		 * For shared mappings the vma lock must be held before
5100 		 * calling hugetlb_walk() in the src vma. Otherwise, the
5101 		 * returned ptep could go away if part of a shared pmd and
5102 		 * another thread calls huge_pmd_unshare.
5103 		 */
5104 		hugetlb_vma_lock_read(src_vma);
5105 	}
5106 
5107 	last_addr_mask = hugetlb_mask_last_page(h);
5108 	for (addr = src_vma->vm_start; addr < src_vma->vm_end; addr += sz) {
5109 		spinlock_t *src_ptl, *dst_ptl;
5110 		src_pte = hugetlb_walk(src_vma, addr, sz);
5111 		if (!src_pte) {
5112 			addr |= last_addr_mask;
5113 			continue;
5114 		}
5115 		dst_pte = huge_pte_alloc(dst, dst_vma, addr, sz);
5116 		if (!dst_pte) {
5117 			ret = -ENOMEM;
5118 			break;
5119 		}
5120 
5121 		/*
5122 		 * If the pagetables are shared don't copy or take references.
5123 		 *
5124 		 * dst_pte == src_pte is the common case of src/dest sharing.
5125 		 * However, src could have 'unshared' and dst shares with
5126 		 * another vma. So page_count of ptep page is checked instead
5127 		 * to reliably determine whether pte is shared.
5128 		 */
5129 		if (page_count(virt_to_page(dst_pte)) > 1) {
5130 			addr |= last_addr_mask;
5131 			continue;
5132 		}
5133 
5134 		dst_ptl = huge_pte_lock(h, dst, dst_pte);
5135 		src_ptl = huge_pte_lockptr(h, src, src_pte);
5136 		spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
5137 		entry = huge_ptep_get(src_pte);
5138 again:
5139 		if (huge_pte_none(entry)) {
5140 			/*
5141 			 * Skip if src entry none.
5142 			 */
5143 			;
5144 		} else if (unlikely(is_hugetlb_entry_hwpoisoned(entry))) {
5145 			if (!userfaultfd_wp(dst_vma))
5146 				entry = huge_pte_clear_uffd_wp(entry);
5147 			set_huge_pte_at(dst, addr, dst_pte, entry, sz);
5148 		} else if (unlikely(is_hugetlb_entry_migration(entry))) {
5149 			swp_entry_t swp_entry = pte_to_swp_entry(entry);
5150 			bool uffd_wp = pte_swp_uffd_wp(entry);
5151 
5152 			if (!is_readable_migration_entry(swp_entry) && cow) {
5153 				/*
5154 				 * COW mappings require pages in both
5155 				 * parent and child to be set to read.
5156 				 */
5157 				swp_entry = make_readable_migration_entry(
5158 							swp_offset(swp_entry));
5159 				entry = swp_entry_to_pte(swp_entry);
5160 				if (userfaultfd_wp(src_vma) && uffd_wp)
5161 					entry = pte_swp_mkuffd_wp(entry);
5162 				set_huge_pte_at(src, addr, src_pte, entry, sz);
5163 			}
5164 			if (!userfaultfd_wp(dst_vma))
5165 				entry = huge_pte_clear_uffd_wp(entry);
5166 			set_huge_pte_at(dst, addr, dst_pte, entry, sz);
5167 		} else if (unlikely(is_pte_marker(entry))) {
5168 			pte_marker marker = copy_pte_marker(
5169 				pte_to_swp_entry(entry), dst_vma);
5170 
5171 			if (marker)
5172 				set_huge_pte_at(dst, addr, dst_pte,
5173 						make_pte_marker(marker), sz);
5174 		} else {
5175 			entry = huge_ptep_get(src_pte);
5176 			pte_folio = page_folio(pte_page(entry));
5177 			folio_get(pte_folio);
5178 
5179 			/*
5180 			 * Failing to duplicate the anon rmap is a rare case
5181 			 * where we see pinned hugetlb pages while they're
5182 			 * prone to COW. We need to do the COW earlier during
5183 			 * fork.
5184 			 *
5185 			 * When pre-allocating the page or copying data, we
5186 			 * need to be without the pgtable locks since we could
5187 			 * sleep during the process.
5188 			 */
5189 			if (!folio_test_anon(pte_folio)) {
5190 				page_dup_file_rmap(&pte_folio->page, true);
5191 			} else if (page_try_dup_anon_rmap(&pte_folio->page,
5192 							  true, src_vma)) {
5193 				pte_t src_pte_old = entry;
5194 				struct folio *new_folio;
5195 
5196 				spin_unlock(src_ptl);
5197 				spin_unlock(dst_ptl);
5198 				/* Do not use reserve as it's private owned */
5199 				new_folio = alloc_hugetlb_folio(dst_vma, addr, 1);
5200 				if (IS_ERR(new_folio)) {
5201 					folio_put(pte_folio);
5202 					ret = PTR_ERR(new_folio);
5203 					break;
5204 				}
5205 				ret = copy_user_large_folio(new_folio,
5206 							    pte_folio,
5207 							    addr, dst_vma);
5208 				folio_put(pte_folio);
5209 				if (ret) {
5210 					folio_put(new_folio);
5211 					break;
5212 				}
5213 
5214 				/* Install the new hugetlb folio if src pte stable */
5215 				dst_ptl = huge_pte_lock(h, dst, dst_pte);
5216 				src_ptl = huge_pte_lockptr(h, src, src_pte);
5217 				spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
5218 				entry = huge_ptep_get(src_pte);
5219 				if (!pte_same(src_pte_old, entry)) {
5220 					restore_reserve_on_error(h, dst_vma, addr,
5221 								new_folio);
5222 					folio_put(new_folio);
5223 					/* huge_ptep of dst_pte won't change as in child */
5224 					goto again;
5225 				}
5226 				hugetlb_install_folio(dst_vma, dst_pte, addr,
5227 						      new_folio, src_pte_old, sz);
5228 				spin_unlock(src_ptl);
5229 				spin_unlock(dst_ptl);
5230 				continue;
5231 			}
5232 
5233 			if (cow) {
5234 				/*
5235 				 * No need to notify as we are downgrading page
5236 				 * table protection not changing it to point
5237 				 * to a new page.
5238 				 *
5239 				 * See Documentation/mm/mmu_notifier.rst
5240 				 */
5241 				huge_ptep_set_wrprotect(src, addr, src_pte);
5242 				entry = huge_pte_wrprotect(entry);
5243 			}
5244 
5245 			if (!userfaultfd_wp(dst_vma))
5246 				entry = huge_pte_clear_uffd_wp(entry);
5247 
5248 			set_huge_pte_at(dst, addr, dst_pte, entry, sz);
5249 			hugetlb_count_add(npages, dst);
5250 		}
5251 		spin_unlock(src_ptl);
5252 		spin_unlock(dst_ptl);
5253 	}
5254 
5255 	if (cow) {
5256 		raw_write_seqcount_end(&src->write_protect_seq);
5257 		mmu_notifier_invalidate_range_end(&range);
5258 	} else {
5259 		hugetlb_vma_unlock_read(src_vma);
5260 	}
5261 
5262 	return ret;
5263 }
5264 
5265 static void move_huge_pte(struct vm_area_struct *vma, unsigned long old_addr,
5266 			  unsigned long new_addr, pte_t *src_pte, pte_t *dst_pte,
5267 			  unsigned long sz)
5268 {
5269 	struct hstate *h = hstate_vma(vma);
5270 	struct mm_struct *mm = vma->vm_mm;
5271 	spinlock_t *src_ptl, *dst_ptl;
5272 	pte_t pte;
5273 
5274 	dst_ptl = huge_pte_lock(h, mm, dst_pte);
5275 	src_ptl = huge_pte_lockptr(h, mm, src_pte);
5276 
5277 	/*
5278 	 * We don't have to worry about the ordering of src and dst ptlocks
5279 	 * because exclusive mmap_lock (or the i_mmap_lock) prevents deadlock.
5280 	 */
5281 	if (src_ptl != dst_ptl)
5282 		spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
5283 
5284 	pte = huge_ptep_get_and_clear(mm, old_addr, src_pte);
5285 	set_huge_pte_at(mm, new_addr, dst_pte, pte, sz);
5286 
5287 	if (src_ptl != dst_ptl)
5288 		spin_unlock(src_ptl);
5289 	spin_unlock(dst_ptl);
5290 }
5291 
5292 int move_hugetlb_page_tables(struct vm_area_struct *vma,
5293 			     struct vm_area_struct *new_vma,
5294 			     unsigned long old_addr, unsigned long new_addr,
5295 			     unsigned long len)
5296 {
5297 	struct hstate *h = hstate_vma(vma);
5298 	struct address_space *mapping = vma->vm_file->f_mapping;
5299 	unsigned long sz = huge_page_size(h);
5300 	struct mm_struct *mm = vma->vm_mm;
5301 	unsigned long old_end = old_addr + len;
5302 	unsigned long last_addr_mask;
5303 	pte_t *src_pte, *dst_pte;
5304 	struct mmu_notifier_range range;
5305 	bool shared_pmd = false;
5306 
5307 	mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, mm, old_addr,
5308 				old_end);
5309 	adjust_range_if_pmd_sharing_possible(vma, &range.start, &range.end);
5310 	/*
5311 	 * In case of shared PMDs, we should cover the maximum possible
5312 	 * range.
5313 	 */
5314 	flush_cache_range(vma, range.start, range.end);
5315 
5316 	mmu_notifier_invalidate_range_start(&range);
5317 	last_addr_mask = hugetlb_mask_last_page(h);
5318 	/* Prevent race with file truncation */
5319 	hugetlb_vma_lock_write(vma);
5320 	i_mmap_lock_write(mapping);
5321 	for (; old_addr < old_end; old_addr += sz, new_addr += sz) {
5322 		src_pte = hugetlb_walk(vma, old_addr, sz);
5323 		if (!src_pte) {
5324 			old_addr |= last_addr_mask;
5325 			new_addr |= last_addr_mask;
5326 			continue;
5327 		}
5328 		if (huge_pte_none(huge_ptep_get(src_pte)))
5329 			continue;
5330 
5331 		if (huge_pmd_unshare(mm, vma, old_addr, src_pte)) {
5332 			shared_pmd = true;
5333 			old_addr |= last_addr_mask;
5334 			new_addr |= last_addr_mask;
5335 			continue;
5336 		}
5337 
5338 		dst_pte = huge_pte_alloc(mm, new_vma, new_addr, sz);
5339 		if (!dst_pte)
5340 			break;
5341 
5342 		move_huge_pte(vma, old_addr, new_addr, src_pte, dst_pte, sz);
5343 	}
5344 
5345 	if (shared_pmd)
5346 		flush_hugetlb_tlb_range(vma, range.start, range.end);
5347 	else
5348 		flush_hugetlb_tlb_range(vma, old_end - len, old_end);
5349 	mmu_notifier_invalidate_range_end(&range);
5350 	i_mmap_unlock_write(mapping);
5351 	hugetlb_vma_unlock_write(vma);
5352 
5353 	return len + old_addr - old_end;
5354 }
5355 
5356 void __unmap_hugepage_range(struct mmu_gather *tlb, struct vm_area_struct *vma,
5357 			    unsigned long start, unsigned long end,
5358 			    struct page *ref_page, zap_flags_t zap_flags)
5359 {
5360 	struct mm_struct *mm = vma->vm_mm;
5361 	unsigned long address;
5362 	pte_t *ptep;
5363 	pte_t pte;
5364 	spinlock_t *ptl;
5365 	struct page *page;
5366 	struct hstate *h = hstate_vma(vma);
5367 	unsigned long sz = huge_page_size(h);
5368 	unsigned long last_addr_mask;
5369 	bool force_flush = false;
5370 
5371 	WARN_ON(!is_vm_hugetlb_page(vma));
5372 	BUG_ON(start & ~huge_page_mask(h));
5373 	BUG_ON(end & ~huge_page_mask(h));
5374 
5375 	/*
5376 	 * This is a hugetlb vma, all the pte entries should point
5377 	 * to huge page.
5378 	 */
5379 	tlb_change_page_size(tlb, sz);
5380 	tlb_start_vma(tlb, vma);
5381 
5382 	last_addr_mask = hugetlb_mask_last_page(h);
5383 	address = start;
5384 	for (; address < end; address += sz) {
5385 		ptep = hugetlb_walk(vma, address, sz);
5386 		if (!ptep) {
5387 			address |= last_addr_mask;
5388 			continue;
5389 		}
5390 
5391 		ptl = huge_pte_lock(h, mm, ptep);
5392 		if (huge_pmd_unshare(mm, vma, address, ptep)) {
5393 			spin_unlock(ptl);
5394 			tlb_flush_pmd_range(tlb, address & PUD_MASK, PUD_SIZE);
5395 			force_flush = true;
5396 			address |= last_addr_mask;
5397 			continue;
5398 		}
5399 
5400 		pte = huge_ptep_get(ptep);
5401 		if (huge_pte_none(pte)) {
5402 			spin_unlock(ptl);
5403 			continue;
5404 		}
5405 
5406 		/*
5407 		 * Migrating hugepage or HWPoisoned hugepage is already
5408 		 * unmapped and its refcount is dropped, so just clear pte here.
5409 		 */
5410 		if (unlikely(!pte_present(pte))) {
5411 			/*
5412 			 * If the pte was wr-protected by uffd-wp in any of the
5413 			 * swap forms, meanwhile the caller does not want to
5414 			 * drop the uffd-wp bit in this zap, then replace the
5415 			 * pte with a marker.
5416 			 */
5417 			if (pte_swp_uffd_wp_any(pte) &&
5418 			    !(zap_flags & ZAP_FLAG_DROP_MARKER))
5419 				set_huge_pte_at(mm, address, ptep,
5420 						make_pte_marker(PTE_MARKER_UFFD_WP),
5421 						sz);
5422 			else
5423 				huge_pte_clear(mm, address, ptep, sz);
5424 			spin_unlock(ptl);
5425 			continue;
5426 		}
5427 
5428 		page = pte_page(pte);
5429 		/*
5430 		 * If a reference page is supplied, it is because a specific
5431 		 * page is being unmapped, not a range. Ensure the page we
5432 		 * are about to unmap is the actual page of interest.
5433 		 */
5434 		if (ref_page) {
5435 			if (page != ref_page) {
5436 				spin_unlock(ptl);
5437 				continue;
5438 			}
5439 			/*
5440 			 * Mark the VMA as having unmapped its page so that
5441 			 * future faults in this VMA will fail rather than
5442 			 * looking like data was lost
5443 			 */
5444 			set_vma_resv_flags(vma, HPAGE_RESV_UNMAPPED);
5445 		}
5446 
5447 		pte = huge_ptep_get_and_clear(mm, address, ptep);
5448 		tlb_remove_huge_tlb_entry(h, tlb, ptep, address);
5449 		if (huge_pte_dirty(pte))
5450 			set_page_dirty(page);
5451 		/* Leave a uffd-wp pte marker if needed */
5452 		if (huge_pte_uffd_wp(pte) &&
5453 		    !(zap_flags & ZAP_FLAG_DROP_MARKER))
5454 			set_huge_pte_at(mm, address, ptep,
5455 					make_pte_marker(PTE_MARKER_UFFD_WP),
5456 					sz);
5457 		hugetlb_count_sub(pages_per_huge_page(h), mm);
5458 		page_remove_rmap(page, vma, true);
5459 
5460 		spin_unlock(ptl);
5461 		tlb_remove_page_size(tlb, page, huge_page_size(h));
5462 		/*
5463 		 * Bail out after unmapping reference page if supplied
5464 		 */
5465 		if (ref_page)
5466 			break;
5467 	}
5468 	tlb_end_vma(tlb, vma);
5469 
5470 	/*
5471 	 * If we unshared PMDs, the TLB flush was not recorded in mmu_gather. We
5472 	 * could defer the flush until now, since by holding i_mmap_rwsem we
5473 	 * guaranteed that the last refernece would not be dropped. But we must
5474 	 * do the flushing before we return, as otherwise i_mmap_rwsem will be
5475 	 * dropped and the last reference to the shared PMDs page might be
5476 	 * dropped as well.
5477 	 *
5478 	 * In theory we could defer the freeing of the PMD pages as well, but
5479 	 * huge_pmd_unshare() relies on the exact page_count for the PMD page to
5480 	 * detect sharing, so we cannot defer the release of the page either.
5481 	 * Instead, do flush now.
5482 	 */
5483 	if (force_flush)
5484 		tlb_flush_mmu_tlbonly(tlb);
5485 }
5486 
5487 void __hugetlb_zap_begin(struct vm_area_struct *vma,
5488 			 unsigned long *start, unsigned long *end)
5489 {
5490 	if (!vma->vm_file)	/* hugetlbfs_file_mmap error */
5491 		return;
5492 
5493 	adjust_range_if_pmd_sharing_possible(vma, start, end);
5494 	hugetlb_vma_lock_write(vma);
5495 	if (vma->vm_file)
5496 		i_mmap_lock_write(vma->vm_file->f_mapping);
5497 }
5498 
5499 void __hugetlb_zap_end(struct vm_area_struct *vma,
5500 		       struct zap_details *details)
5501 {
5502 	zap_flags_t zap_flags = details ? details->zap_flags : 0;
5503 
5504 	if (!vma->vm_file)	/* hugetlbfs_file_mmap error */
5505 		return;
5506 
5507 	if (zap_flags & ZAP_FLAG_UNMAP) {	/* final unmap */
5508 		/*
5509 		 * Unlock and free the vma lock before releasing i_mmap_rwsem.
5510 		 * When the vma_lock is freed, this makes the vma ineligible
5511 		 * for pmd sharing.  And, i_mmap_rwsem is required to set up
5512 		 * pmd sharing.  This is important as page tables for this
5513 		 * unmapped range will be asynchrously deleted.  If the page
5514 		 * tables are shared, there will be issues when accessed by
5515 		 * someone else.
5516 		 */
5517 		__hugetlb_vma_unlock_write_free(vma);
5518 	} else {
5519 		hugetlb_vma_unlock_write(vma);
5520 	}
5521 
5522 	if (vma->vm_file)
5523 		i_mmap_unlock_write(vma->vm_file->f_mapping);
5524 }
5525 
5526 void unmap_hugepage_range(struct vm_area_struct *vma, unsigned long start,
5527 			  unsigned long end, struct page *ref_page,
5528 			  zap_flags_t zap_flags)
5529 {
5530 	struct mmu_notifier_range range;
5531 	struct mmu_gather tlb;
5532 
5533 	mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma->vm_mm,
5534 				start, end);
5535 	adjust_range_if_pmd_sharing_possible(vma, &range.start, &range.end);
5536 	mmu_notifier_invalidate_range_start(&range);
5537 	tlb_gather_mmu(&tlb, vma->vm_mm);
5538 
5539 	__unmap_hugepage_range(&tlb, vma, start, end, ref_page, zap_flags);
5540 
5541 	mmu_notifier_invalidate_range_end(&range);
5542 	tlb_finish_mmu(&tlb);
5543 }
5544 
5545 /*
5546  * This is called when the original mapper is failing to COW a MAP_PRIVATE
5547  * mapping it owns the reserve page for. The intention is to unmap the page
5548  * from other VMAs and let the children be SIGKILLed if they are faulting the
5549  * same region.
5550  */
5551 static void unmap_ref_private(struct mm_struct *mm, struct vm_area_struct *vma,
5552 			      struct page *page, unsigned long address)
5553 {
5554 	struct hstate *h = hstate_vma(vma);
5555 	struct vm_area_struct *iter_vma;
5556 	struct address_space *mapping;
5557 	pgoff_t pgoff;
5558 
5559 	/*
5560 	 * vm_pgoff is in PAGE_SIZE units, hence the different calculation
5561 	 * from page cache lookup which is in HPAGE_SIZE units.
5562 	 */
5563 	address = address & huge_page_mask(h);
5564 	pgoff = ((address - vma->vm_start) >> PAGE_SHIFT) +
5565 			vma->vm_pgoff;
5566 	mapping = vma->vm_file->f_mapping;
5567 
5568 	/*
5569 	 * Take the mapping lock for the duration of the table walk. As
5570 	 * this mapping should be shared between all the VMAs,
5571 	 * __unmap_hugepage_range() is called as the lock is already held
5572 	 */
5573 	i_mmap_lock_write(mapping);
5574 	vma_interval_tree_foreach(iter_vma, &mapping->i_mmap, pgoff, pgoff) {
5575 		/* Do not unmap the current VMA */
5576 		if (iter_vma == vma)
5577 			continue;
5578 
5579 		/*
5580 		 * Shared VMAs have their own reserves and do not affect
5581 		 * MAP_PRIVATE accounting but it is possible that a shared
5582 		 * VMA is using the same page so check and skip such VMAs.
5583 		 */
5584 		if (iter_vma->vm_flags & VM_MAYSHARE)
5585 			continue;
5586 
5587 		/*
5588 		 * Unmap the page from other VMAs without their own reserves.
5589 		 * They get marked to be SIGKILLed if they fault in these
5590 		 * areas. This is because a future no-page fault on this VMA
5591 		 * could insert a zeroed page instead of the data existing
5592 		 * from the time of fork. This would look like data corruption
5593 		 */
5594 		if (!is_vma_resv_set(iter_vma, HPAGE_RESV_OWNER))
5595 			unmap_hugepage_range(iter_vma, address,
5596 					     address + huge_page_size(h), page, 0);
5597 	}
5598 	i_mmap_unlock_write(mapping);
5599 }
5600 
5601 /*
5602  * hugetlb_wp() should be called with page lock of the original hugepage held.
5603  * Called with hugetlb_fault_mutex_table held and pte_page locked so we
5604  * cannot race with other handlers or page migration.
5605  * Keep the pte_same checks anyway to make transition from the mutex easier.
5606  */
5607 static vm_fault_t hugetlb_wp(struct mm_struct *mm, struct vm_area_struct *vma,
5608 		       unsigned long address, pte_t *ptep, unsigned int flags,
5609 		       struct folio *pagecache_folio, spinlock_t *ptl)
5610 {
5611 	const bool unshare = flags & FAULT_FLAG_UNSHARE;
5612 	pte_t pte = huge_ptep_get(ptep);
5613 	struct hstate *h = hstate_vma(vma);
5614 	struct folio *old_folio;
5615 	struct folio *new_folio;
5616 	int outside_reserve = 0;
5617 	vm_fault_t ret = 0;
5618 	unsigned long haddr = address & huge_page_mask(h);
5619 	struct mmu_notifier_range range;
5620 
5621 	/*
5622 	 * Never handle CoW for uffd-wp protected pages.  It should be only
5623 	 * handled when the uffd-wp protection is removed.
5624 	 *
5625 	 * Note that only the CoW optimization path (in hugetlb_no_page())
5626 	 * can trigger this, because hugetlb_fault() will always resolve
5627 	 * uffd-wp bit first.
5628 	 */
5629 	if (!unshare && huge_pte_uffd_wp(pte))
5630 		return 0;
5631 
5632 	/*
5633 	 * hugetlb does not support FOLL_FORCE-style write faults that keep the
5634 	 * PTE mapped R/O such as maybe_mkwrite() would do.
5635 	 */
5636 	if (WARN_ON_ONCE(!unshare && !(vma->vm_flags & VM_WRITE)))
5637 		return VM_FAULT_SIGSEGV;
5638 
5639 	/* Let's take out MAP_SHARED mappings first. */
5640 	if (vma->vm_flags & VM_MAYSHARE) {
5641 		set_huge_ptep_writable(vma, haddr, ptep);
5642 		return 0;
5643 	}
5644 
5645 	old_folio = page_folio(pte_page(pte));
5646 
5647 	delayacct_wpcopy_start();
5648 
5649 retry_avoidcopy:
5650 	/*
5651 	 * If no-one else is actually using this page, we're the exclusive
5652 	 * owner and can reuse this page.
5653 	 */
5654 	if (folio_mapcount(old_folio) == 1 && folio_test_anon(old_folio)) {
5655 		if (!PageAnonExclusive(&old_folio->page)) {
5656 			folio_move_anon_rmap(old_folio, vma);
5657 			SetPageAnonExclusive(&old_folio->page);
5658 		}
5659 		if (likely(!unshare))
5660 			set_huge_ptep_writable(vma, haddr, ptep);
5661 
5662 		delayacct_wpcopy_end();
5663 		return 0;
5664 	}
5665 	VM_BUG_ON_PAGE(folio_test_anon(old_folio) &&
5666 		       PageAnonExclusive(&old_folio->page), &old_folio->page);
5667 
5668 	/*
5669 	 * If the process that created a MAP_PRIVATE mapping is about to
5670 	 * perform a COW due to a shared page count, attempt to satisfy
5671 	 * the allocation without using the existing reserves. The pagecache
5672 	 * page is used to determine if the reserve at this address was
5673 	 * consumed or not. If reserves were used, a partial faulted mapping
5674 	 * at the time of fork() could consume its reserves on COW instead
5675 	 * of the full address range.
5676 	 */
5677 	if (is_vma_resv_set(vma, HPAGE_RESV_OWNER) &&
5678 			old_folio != pagecache_folio)
5679 		outside_reserve = 1;
5680 
5681 	folio_get(old_folio);
5682 
5683 	/*
5684 	 * Drop page table lock as buddy allocator may be called. It will
5685 	 * be acquired again before returning to the caller, as expected.
5686 	 */
5687 	spin_unlock(ptl);
5688 	new_folio = alloc_hugetlb_folio(vma, haddr, outside_reserve);
5689 
5690 	if (IS_ERR(new_folio)) {
5691 		/*
5692 		 * If a process owning a MAP_PRIVATE mapping fails to COW,
5693 		 * it is due to references held by a child and an insufficient
5694 		 * huge page pool. To guarantee the original mappers
5695 		 * reliability, unmap the page from child processes. The child
5696 		 * may get SIGKILLed if it later faults.
5697 		 */
5698 		if (outside_reserve) {
5699 			struct address_space *mapping = vma->vm_file->f_mapping;
5700 			pgoff_t idx;
5701 			u32 hash;
5702 
5703 			folio_put(old_folio);
5704 			/*
5705 			 * Drop hugetlb_fault_mutex and vma_lock before
5706 			 * unmapping.  unmapping needs to hold vma_lock
5707 			 * in write mode.  Dropping vma_lock in read mode
5708 			 * here is OK as COW mappings do not interact with
5709 			 * PMD sharing.
5710 			 *
5711 			 * Reacquire both after unmap operation.
5712 			 */
5713 			idx = vma_hugecache_offset(h, vma, haddr);
5714 			hash = hugetlb_fault_mutex_hash(mapping, idx);
5715 			hugetlb_vma_unlock_read(vma);
5716 			mutex_unlock(&hugetlb_fault_mutex_table[hash]);
5717 
5718 			unmap_ref_private(mm, vma, &old_folio->page, haddr);
5719 
5720 			mutex_lock(&hugetlb_fault_mutex_table[hash]);
5721 			hugetlb_vma_lock_read(vma);
5722 			spin_lock(ptl);
5723 			ptep = hugetlb_walk(vma, haddr, huge_page_size(h));
5724 			if (likely(ptep &&
5725 				   pte_same(huge_ptep_get(ptep), pte)))
5726 				goto retry_avoidcopy;
5727 			/*
5728 			 * race occurs while re-acquiring page table
5729 			 * lock, and our job is done.
5730 			 */
5731 			delayacct_wpcopy_end();
5732 			return 0;
5733 		}
5734 
5735 		ret = vmf_error(PTR_ERR(new_folio));
5736 		goto out_release_old;
5737 	}
5738 
5739 	/*
5740 	 * When the original hugepage is shared one, it does not have
5741 	 * anon_vma prepared.
5742 	 */
5743 	if (unlikely(anon_vma_prepare(vma))) {
5744 		ret = VM_FAULT_OOM;
5745 		goto out_release_all;
5746 	}
5747 
5748 	if (copy_user_large_folio(new_folio, old_folio, address, vma)) {
5749 		ret = VM_FAULT_HWPOISON_LARGE;
5750 		goto out_release_all;
5751 	}
5752 	__folio_mark_uptodate(new_folio);
5753 
5754 	mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, mm, haddr,
5755 				haddr + huge_page_size(h));
5756 	mmu_notifier_invalidate_range_start(&range);
5757 
5758 	/*
5759 	 * Retake the page table lock to check for racing updates
5760 	 * before the page tables are altered
5761 	 */
5762 	spin_lock(ptl);
5763 	ptep = hugetlb_walk(vma, haddr, huge_page_size(h));
5764 	if (likely(ptep && pte_same(huge_ptep_get(ptep), pte))) {
5765 		pte_t newpte = make_huge_pte(vma, &new_folio->page, !unshare);
5766 
5767 		/* Break COW or unshare */
5768 		huge_ptep_clear_flush(vma, haddr, ptep);
5769 		page_remove_rmap(&old_folio->page, vma, true);
5770 		hugepage_add_new_anon_rmap(new_folio, vma, haddr);
5771 		if (huge_pte_uffd_wp(pte))
5772 			newpte = huge_pte_mkuffd_wp(newpte);
5773 		set_huge_pte_at(mm, haddr, ptep, newpte, huge_page_size(h));
5774 		folio_set_hugetlb_migratable(new_folio);
5775 		/* Make the old page be freed below */
5776 		new_folio = old_folio;
5777 	}
5778 	spin_unlock(ptl);
5779 	mmu_notifier_invalidate_range_end(&range);
5780 out_release_all:
5781 	/*
5782 	 * No restore in case of successful pagetable update (Break COW or
5783 	 * unshare)
5784 	 */
5785 	if (new_folio != old_folio)
5786 		restore_reserve_on_error(h, vma, haddr, new_folio);
5787 	folio_put(new_folio);
5788 out_release_old:
5789 	folio_put(old_folio);
5790 
5791 	spin_lock(ptl); /* Caller expects lock to be held */
5792 
5793 	delayacct_wpcopy_end();
5794 	return ret;
5795 }
5796 
5797 /*
5798  * Return whether there is a pagecache page to back given address within VMA.
5799  */
5800 static bool hugetlbfs_pagecache_present(struct hstate *h,
5801 			struct vm_area_struct *vma, unsigned long address)
5802 {
5803 	struct address_space *mapping = vma->vm_file->f_mapping;
5804 	pgoff_t idx = linear_page_index(vma, address);
5805 	struct folio *folio;
5806 
5807 	folio = filemap_get_folio(mapping, idx);
5808 	if (IS_ERR(folio))
5809 		return false;
5810 	folio_put(folio);
5811 	return true;
5812 }
5813 
5814 int hugetlb_add_to_page_cache(struct folio *folio, struct address_space *mapping,
5815 			   pgoff_t idx)
5816 {
5817 	struct inode *inode = mapping->host;
5818 	struct hstate *h = hstate_inode(inode);
5819 	int err;
5820 
5821 	idx <<= huge_page_order(h);
5822 	__folio_set_locked(folio);
5823 	err = __filemap_add_folio(mapping, folio, idx, GFP_KERNEL, NULL);
5824 
5825 	if (unlikely(err)) {
5826 		__folio_clear_locked(folio);
5827 		return err;
5828 	}
5829 	folio_clear_hugetlb_restore_reserve(folio);
5830 
5831 	/*
5832 	 * mark folio dirty so that it will not be removed from cache/file
5833 	 * by non-hugetlbfs specific code paths.
5834 	 */
5835 	folio_mark_dirty(folio);
5836 
5837 	spin_lock(&inode->i_lock);
5838 	inode->i_blocks += blocks_per_huge_page(h);
5839 	spin_unlock(&inode->i_lock);
5840 	return 0;
5841 }
5842 
5843 static inline vm_fault_t hugetlb_handle_userfault(struct vm_area_struct *vma,
5844 						  struct address_space *mapping,
5845 						  pgoff_t idx,
5846 						  unsigned int flags,
5847 						  unsigned long haddr,
5848 						  unsigned long addr,
5849 						  unsigned long reason)
5850 {
5851 	u32 hash;
5852 	struct vm_fault vmf = {
5853 		.vma = vma,
5854 		.address = haddr,
5855 		.real_address = addr,
5856 		.flags = flags,
5857 
5858 		/*
5859 		 * Hard to debug if it ends up being
5860 		 * used by a callee that assumes
5861 		 * something about the other
5862 		 * uninitialized fields... same as in
5863 		 * memory.c
5864 		 */
5865 	};
5866 
5867 	/*
5868 	 * vma_lock and hugetlb_fault_mutex must be dropped before handling
5869 	 * userfault. Also mmap_lock could be dropped due to handling
5870 	 * userfault, any vma operation should be careful from here.
5871 	 */
5872 	hugetlb_vma_unlock_read(vma);
5873 	hash = hugetlb_fault_mutex_hash(mapping, idx);
5874 	mutex_unlock(&hugetlb_fault_mutex_table[hash]);
5875 	return handle_userfault(&vmf, reason);
5876 }
5877 
5878 /*
5879  * Recheck pte with pgtable lock.  Returns true if pte didn't change, or
5880  * false if pte changed or is changing.
5881  */
5882 static bool hugetlb_pte_stable(struct hstate *h, struct mm_struct *mm,
5883 			       pte_t *ptep, pte_t old_pte)
5884 {
5885 	spinlock_t *ptl;
5886 	bool same;
5887 
5888 	ptl = huge_pte_lock(h, mm, ptep);
5889 	same = pte_same(huge_ptep_get(ptep), old_pte);
5890 	spin_unlock(ptl);
5891 
5892 	return same;
5893 }
5894 
5895 static vm_fault_t hugetlb_no_page(struct mm_struct *mm,
5896 			struct vm_area_struct *vma,
5897 			struct address_space *mapping, pgoff_t idx,
5898 			unsigned long address, pte_t *ptep,
5899 			pte_t old_pte, unsigned int flags)
5900 {
5901 	struct hstate *h = hstate_vma(vma);
5902 	vm_fault_t ret = VM_FAULT_SIGBUS;
5903 	int anon_rmap = 0;
5904 	unsigned long size;
5905 	struct folio *folio;
5906 	pte_t new_pte;
5907 	spinlock_t *ptl;
5908 	unsigned long haddr = address & huge_page_mask(h);
5909 	bool new_folio, new_pagecache_folio = false;
5910 	u32 hash = hugetlb_fault_mutex_hash(mapping, idx);
5911 
5912 	/*
5913 	 * Currently, we are forced to kill the process in the event the
5914 	 * original mapper has unmapped pages from the child due to a failed
5915 	 * COW/unsharing. Warn that such a situation has occurred as it may not
5916 	 * be obvious.
5917 	 */
5918 	if (is_vma_resv_set(vma, HPAGE_RESV_UNMAPPED)) {
5919 		pr_warn_ratelimited("PID %d killed due to inadequate hugepage pool\n",
5920 			   current->pid);
5921 		goto out;
5922 	}
5923 
5924 	/*
5925 	 * Use page lock to guard against racing truncation
5926 	 * before we get page_table_lock.
5927 	 */
5928 	new_folio = false;
5929 	folio = filemap_lock_hugetlb_folio(h, mapping, idx);
5930 	if (IS_ERR(folio)) {
5931 		size = i_size_read(mapping->host) >> huge_page_shift(h);
5932 		if (idx >= size)
5933 			goto out;
5934 		/* Check for page in userfault range */
5935 		if (userfaultfd_missing(vma)) {
5936 			/*
5937 			 * Since hugetlb_no_page() was examining pte
5938 			 * without pgtable lock, we need to re-test under
5939 			 * lock because the pte may not be stable and could
5940 			 * have changed from under us.  Try to detect
5941 			 * either changed or during-changing ptes and retry
5942 			 * properly when needed.
5943 			 *
5944 			 * Note that userfaultfd is actually fine with
5945 			 * false positives (e.g. caused by pte changed),
5946 			 * but not wrong logical events (e.g. caused by
5947 			 * reading a pte during changing).  The latter can
5948 			 * confuse the userspace, so the strictness is very
5949 			 * much preferred.  E.g., MISSING event should
5950 			 * never happen on the page after UFFDIO_COPY has
5951 			 * correctly installed the page and returned.
5952 			 */
5953 			if (!hugetlb_pte_stable(h, mm, ptep, old_pte)) {
5954 				ret = 0;
5955 				goto out;
5956 			}
5957 
5958 			return hugetlb_handle_userfault(vma, mapping, idx, flags,
5959 							haddr, address,
5960 							VM_UFFD_MISSING);
5961 		}
5962 
5963 		folio = alloc_hugetlb_folio(vma, haddr, 0);
5964 		if (IS_ERR(folio)) {
5965 			/*
5966 			 * Returning error will result in faulting task being
5967 			 * sent SIGBUS.  The hugetlb fault mutex prevents two
5968 			 * tasks from racing to fault in the same page which
5969 			 * could result in false unable to allocate errors.
5970 			 * Page migration does not take the fault mutex, but
5971 			 * does a clear then write of pte's under page table
5972 			 * lock.  Page fault code could race with migration,
5973 			 * notice the clear pte and try to allocate a page
5974 			 * here.  Before returning error, get ptl and make
5975 			 * sure there really is no pte entry.
5976 			 */
5977 			if (hugetlb_pte_stable(h, mm, ptep, old_pte))
5978 				ret = vmf_error(PTR_ERR(folio));
5979 			else
5980 				ret = 0;
5981 			goto out;
5982 		}
5983 		clear_huge_page(&folio->page, address, pages_per_huge_page(h));
5984 		__folio_mark_uptodate(folio);
5985 		new_folio = true;
5986 
5987 		if (vma->vm_flags & VM_MAYSHARE) {
5988 			int err = hugetlb_add_to_page_cache(folio, mapping, idx);
5989 			if (err) {
5990 				/*
5991 				 * err can't be -EEXIST which implies someone
5992 				 * else consumed the reservation since hugetlb
5993 				 * fault mutex is held when add a hugetlb page
5994 				 * to the page cache. So it's safe to call
5995 				 * restore_reserve_on_error() here.
5996 				 */
5997 				restore_reserve_on_error(h, vma, haddr, folio);
5998 				folio_put(folio);
5999 				goto out;
6000 			}
6001 			new_pagecache_folio = true;
6002 		} else {
6003 			folio_lock(folio);
6004 			if (unlikely(anon_vma_prepare(vma))) {
6005 				ret = VM_FAULT_OOM;
6006 				goto backout_unlocked;
6007 			}
6008 			anon_rmap = 1;
6009 		}
6010 	} else {
6011 		/*
6012 		 * If memory error occurs between mmap() and fault, some process
6013 		 * don't have hwpoisoned swap entry for errored virtual address.
6014 		 * So we need to block hugepage fault by PG_hwpoison bit check.
6015 		 */
6016 		if (unlikely(folio_test_hwpoison(folio))) {
6017 			ret = VM_FAULT_HWPOISON_LARGE |
6018 				VM_FAULT_SET_HINDEX(hstate_index(h));
6019 			goto backout_unlocked;
6020 		}
6021 
6022 		/* Check for page in userfault range. */
6023 		if (userfaultfd_minor(vma)) {
6024 			folio_unlock(folio);
6025 			folio_put(folio);
6026 			/* See comment in userfaultfd_missing() block above */
6027 			if (!hugetlb_pte_stable(h, mm, ptep, old_pte)) {
6028 				ret = 0;
6029 				goto out;
6030 			}
6031 			return hugetlb_handle_userfault(vma, mapping, idx, flags,
6032 							haddr, address,
6033 							VM_UFFD_MINOR);
6034 		}
6035 	}
6036 
6037 	/*
6038 	 * If we are going to COW a private mapping later, we examine the
6039 	 * pending reservations for this page now. This will ensure that
6040 	 * any allocations necessary to record that reservation occur outside
6041 	 * the spinlock.
6042 	 */
6043 	if ((flags & FAULT_FLAG_WRITE) && !(vma->vm_flags & VM_SHARED)) {
6044 		if (vma_needs_reservation(h, vma, haddr) < 0) {
6045 			ret = VM_FAULT_OOM;
6046 			goto backout_unlocked;
6047 		}
6048 		/* Just decrements count, does not deallocate */
6049 		vma_end_reservation(h, vma, haddr);
6050 	}
6051 
6052 	ptl = huge_pte_lock(h, mm, ptep);
6053 	ret = 0;
6054 	/* If pte changed from under us, retry */
6055 	if (!pte_same(huge_ptep_get(ptep), old_pte))
6056 		goto backout;
6057 
6058 	if (anon_rmap)
6059 		hugepage_add_new_anon_rmap(folio, vma, haddr);
6060 	else
6061 		page_dup_file_rmap(&folio->page, true);
6062 	new_pte = make_huge_pte(vma, &folio->page, ((vma->vm_flags & VM_WRITE)
6063 				&& (vma->vm_flags & VM_SHARED)));
6064 	/*
6065 	 * If this pte was previously wr-protected, keep it wr-protected even
6066 	 * if populated.
6067 	 */
6068 	if (unlikely(pte_marker_uffd_wp(old_pte)))
6069 		new_pte = huge_pte_mkuffd_wp(new_pte);
6070 	set_huge_pte_at(mm, haddr, ptep, new_pte, huge_page_size(h));
6071 
6072 	hugetlb_count_add(pages_per_huge_page(h), mm);
6073 	if ((flags & FAULT_FLAG_WRITE) && !(vma->vm_flags & VM_SHARED)) {
6074 		/* Optimization, do the COW without a second fault */
6075 		ret = hugetlb_wp(mm, vma, address, ptep, flags, folio, ptl);
6076 	}
6077 
6078 	spin_unlock(ptl);
6079 
6080 	/*
6081 	 * Only set hugetlb_migratable in newly allocated pages.  Existing pages
6082 	 * found in the pagecache may not have hugetlb_migratable if they have
6083 	 * been isolated for migration.
6084 	 */
6085 	if (new_folio)
6086 		folio_set_hugetlb_migratable(folio);
6087 
6088 	folio_unlock(folio);
6089 out:
6090 	hugetlb_vma_unlock_read(vma);
6091 	mutex_unlock(&hugetlb_fault_mutex_table[hash]);
6092 	return ret;
6093 
6094 backout:
6095 	spin_unlock(ptl);
6096 backout_unlocked:
6097 	if (new_folio && !new_pagecache_folio)
6098 		restore_reserve_on_error(h, vma, haddr, folio);
6099 
6100 	folio_unlock(folio);
6101 	folio_put(folio);
6102 	goto out;
6103 }
6104 
6105 #ifdef CONFIG_SMP
6106 u32 hugetlb_fault_mutex_hash(struct address_space *mapping, pgoff_t idx)
6107 {
6108 	unsigned long key[2];
6109 	u32 hash;
6110 
6111 	key[0] = (unsigned long) mapping;
6112 	key[1] = idx;
6113 
6114 	hash = jhash2((u32 *)&key, sizeof(key)/(sizeof(u32)), 0);
6115 
6116 	return hash & (num_fault_mutexes - 1);
6117 }
6118 #else
6119 /*
6120  * For uniprocessor systems we always use a single mutex, so just
6121  * return 0 and avoid the hashing overhead.
6122  */
6123 u32 hugetlb_fault_mutex_hash(struct address_space *mapping, pgoff_t idx)
6124 {
6125 	return 0;
6126 }
6127 #endif
6128 
6129 vm_fault_t hugetlb_fault(struct mm_struct *mm, struct vm_area_struct *vma,
6130 			unsigned long address, unsigned int flags)
6131 {
6132 	pte_t *ptep, entry;
6133 	spinlock_t *ptl;
6134 	vm_fault_t ret;
6135 	u32 hash;
6136 	pgoff_t idx;
6137 	struct folio *folio = NULL;
6138 	struct folio *pagecache_folio = NULL;
6139 	struct hstate *h = hstate_vma(vma);
6140 	struct address_space *mapping;
6141 	int need_wait_lock = 0;
6142 	unsigned long haddr = address & huge_page_mask(h);
6143 
6144 	/* TODO: Handle faults under the VMA lock */
6145 	if (flags & FAULT_FLAG_VMA_LOCK) {
6146 		vma_end_read(vma);
6147 		return VM_FAULT_RETRY;
6148 	}
6149 
6150 	/*
6151 	 * Serialize hugepage allocation and instantiation, so that we don't
6152 	 * get spurious allocation failures if two CPUs race to instantiate
6153 	 * the same page in the page cache.
6154 	 */
6155 	mapping = vma->vm_file->f_mapping;
6156 	idx = vma_hugecache_offset(h, vma, haddr);
6157 	hash = hugetlb_fault_mutex_hash(mapping, idx);
6158 	mutex_lock(&hugetlb_fault_mutex_table[hash]);
6159 
6160 	/*
6161 	 * Acquire vma lock before calling huge_pte_alloc and hold
6162 	 * until finished with ptep.  This prevents huge_pmd_unshare from
6163 	 * being called elsewhere and making the ptep no longer valid.
6164 	 */
6165 	hugetlb_vma_lock_read(vma);
6166 	ptep = huge_pte_alloc(mm, vma, haddr, huge_page_size(h));
6167 	if (!ptep) {
6168 		hugetlb_vma_unlock_read(vma);
6169 		mutex_unlock(&hugetlb_fault_mutex_table[hash]);
6170 		return VM_FAULT_OOM;
6171 	}
6172 
6173 	entry = huge_ptep_get(ptep);
6174 	if (huge_pte_none_mostly(entry)) {
6175 		if (is_pte_marker(entry)) {
6176 			pte_marker marker =
6177 				pte_marker_get(pte_to_swp_entry(entry));
6178 
6179 			if (marker & PTE_MARKER_POISONED) {
6180 				ret = VM_FAULT_HWPOISON_LARGE;
6181 				goto out_mutex;
6182 			}
6183 		}
6184 
6185 		/*
6186 		 * Other PTE markers should be handled the same way as none PTE.
6187 		 *
6188 		 * hugetlb_no_page will drop vma lock and hugetlb fault
6189 		 * mutex internally, which make us return immediately.
6190 		 */
6191 		return hugetlb_no_page(mm, vma, mapping, idx, address, ptep,
6192 				      entry, flags);
6193 	}
6194 
6195 	ret = 0;
6196 
6197 	/*
6198 	 * entry could be a migration/hwpoison entry at this point, so this
6199 	 * check prevents the kernel from going below assuming that we have
6200 	 * an active hugepage in pagecache. This goto expects the 2nd page
6201 	 * fault, and is_hugetlb_entry_(migration|hwpoisoned) check will
6202 	 * properly handle it.
6203 	 */
6204 	if (!pte_present(entry)) {
6205 		if (unlikely(is_hugetlb_entry_migration(entry))) {
6206 			/*
6207 			 * Release the hugetlb fault lock now, but retain
6208 			 * the vma lock, because it is needed to guard the
6209 			 * huge_pte_lockptr() later in
6210 			 * migration_entry_wait_huge(). The vma lock will
6211 			 * be released there.
6212 			 */
6213 			mutex_unlock(&hugetlb_fault_mutex_table[hash]);
6214 			migration_entry_wait_huge(vma, ptep);
6215 			return 0;
6216 		} else if (unlikely(is_hugetlb_entry_hwpoisoned(entry)))
6217 			ret = VM_FAULT_HWPOISON_LARGE |
6218 			    VM_FAULT_SET_HINDEX(hstate_index(h));
6219 		goto out_mutex;
6220 	}
6221 
6222 	/*
6223 	 * If we are going to COW/unshare the mapping later, we examine the
6224 	 * pending reservations for this page now. This will ensure that any
6225 	 * allocations necessary to record that reservation occur outside the
6226 	 * spinlock. Also lookup the pagecache page now as it is used to
6227 	 * determine if a reservation has been consumed.
6228 	 */
6229 	if ((flags & (FAULT_FLAG_WRITE|FAULT_FLAG_UNSHARE)) &&
6230 	    !(vma->vm_flags & VM_MAYSHARE) && !huge_pte_write(entry)) {
6231 		if (vma_needs_reservation(h, vma, haddr) < 0) {
6232 			ret = VM_FAULT_OOM;
6233 			goto out_mutex;
6234 		}
6235 		/* Just decrements count, does not deallocate */
6236 		vma_end_reservation(h, vma, haddr);
6237 
6238 		pagecache_folio = filemap_lock_hugetlb_folio(h, mapping, idx);
6239 		if (IS_ERR(pagecache_folio))
6240 			pagecache_folio = NULL;
6241 	}
6242 
6243 	ptl = huge_pte_lock(h, mm, ptep);
6244 
6245 	/* Check for a racing update before calling hugetlb_wp() */
6246 	if (unlikely(!pte_same(entry, huge_ptep_get(ptep))))
6247 		goto out_ptl;
6248 
6249 	/* Handle userfault-wp first, before trying to lock more pages */
6250 	if (userfaultfd_wp(vma) && huge_pte_uffd_wp(huge_ptep_get(ptep)) &&
6251 	    (flags & FAULT_FLAG_WRITE) && !huge_pte_write(entry)) {
6252 		if (!userfaultfd_wp_async(vma)) {
6253 			struct vm_fault vmf = {
6254 				.vma = vma,
6255 				.address = haddr,
6256 				.real_address = address,
6257 				.flags = flags,
6258 			};
6259 
6260 			spin_unlock(ptl);
6261 			if (pagecache_folio) {
6262 				folio_unlock(pagecache_folio);
6263 				folio_put(pagecache_folio);
6264 			}
6265 			hugetlb_vma_unlock_read(vma);
6266 			mutex_unlock(&hugetlb_fault_mutex_table[hash]);
6267 			return handle_userfault(&vmf, VM_UFFD_WP);
6268 		}
6269 
6270 		entry = huge_pte_clear_uffd_wp(entry);
6271 		set_huge_pte_at(mm, haddr, ptep, entry,
6272 				huge_page_size(hstate_vma(vma)));
6273 		/* Fallthrough to CoW */
6274 	}
6275 
6276 	/*
6277 	 * hugetlb_wp() requires page locks of pte_page(entry) and
6278 	 * pagecache_folio, so here we need take the former one
6279 	 * when folio != pagecache_folio or !pagecache_folio.
6280 	 */
6281 	folio = page_folio(pte_page(entry));
6282 	if (folio != pagecache_folio)
6283 		if (!folio_trylock(folio)) {
6284 			need_wait_lock = 1;
6285 			goto out_ptl;
6286 		}
6287 
6288 	folio_get(folio);
6289 
6290 	if (flags & (FAULT_FLAG_WRITE|FAULT_FLAG_UNSHARE)) {
6291 		if (!huge_pte_write(entry)) {
6292 			ret = hugetlb_wp(mm, vma, address, ptep, flags,
6293 					 pagecache_folio, ptl);
6294 			goto out_put_page;
6295 		} else if (likely(flags & FAULT_FLAG_WRITE)) {
6296 			entry = huge_pte_mkdirty(entry);
6297 		}
6298 	}
6299 	entry = pte_mkyoung(entry);
6300 	if (huge_ptep_set_access_flags(vma, haddr, ptep, entry,
6301 						flags & FAULT_FLAG_WRITE))
6302 		update_mmu_cache(vma, haddr, ptep);
6303 out_put_page:
6304 	if (folio != pagecache_folio)
6305 		folio_unlock(folio);
6306 	folio_put(folio);
6307 out_ptl:
6308 	spin_unlock(ptl);
6309 
6310 	if (pagecache_folio) {
6311 		folio_unlock(pagecache_folio);
6312 		folio_put(pagecache_folio);
6313 	}
6314 out_mutex:
6315 	hugetlb_vma_unlock_read(vma);
6316 	mutex_unlock(&hugetlb_fault_mutex_table[hash]);
6317 	/*
6318 	 * Generally it's safe to hold refcount during waiting page lock. But
6319 	 * here we just wait to defer the next page fault to avoid busy loop and
6320 	 * the page is not used after unlocked before returning from the current
6321 	 * page fault. So we are safe from accessing freed page, even if we wait
6322 	 * here without taking refcount.
6323 	 */
6324 	if (need_wait_lock)
6325 		folio_wait_locked(folio);
6326 	return ret;
6327 }
6328 
6329 #ifdef CONFIG_USERFAULTFD
6330 /*
6331  * Used by userfaultfd UFFDIO_* ioctls. Based on userfaultfd's mfill_atomic_pte
6332  * with modifications for hugetlb pages.
6333  */
6334 int hugetlb_mfill_atomic_pte(pte_t *dst_pte,
6335 			     struct vm_area_struct *dst_vma,
6336 			     unsigned long dst_addr,
6337 			     unsigned long src_addr,
6338 			     uffd_flags_t flags,
6339 			     struct folio **foliop)
6340 {
6341 	struct mm_struct *dst_mm = dst_vma->vm_mm;
6342 	bool is_continue = uffd_flags_mode_is(flags, MFILL_ATOMIC_CONTINUE);
6343 	bool wp_enabled = (flags & MFILL_ATOMIC_WP);
6344 	struct hstate *h = hstate_vma(dst_vma);
6345 	struct address_space *mapping = dst_vma->vm_file->f_mapping;
6346 	pgoff_t idx = vma_hugecache_offset(h, dst_vma, dst_addr);
6347 	unsigned long size;
6348 	int vm_shared = dst_vma->vm_flags & VM_SHARED;
6349 	pte_t _dst_pte;
6350 	spinlock_t *ptl;
6351 	int ret = -ENOMEM;
6352 	struct folio *folio;
6353 	int writable;
6354 	bool folio_in_pagecache = false;
6355 
6356 	if (uffd_flags_mode_is(flags, MFILL_ATOMIC_POISON)) {
6357 		ptl = huge_pte_lock(h, dst_mm, dst_pte);
6358 
6359 		/* Don't overwrite any existing PTEs (even markers) */
6360 		if (!huge_pte_none(huge_ptep_get(dst_pte))) {
6361 			spin_unlock(ptl);
6362 			return -EEXIST;
6363 		}
6364 
6365 		_dst_pte = make_pte_marker(PTE_MARKER_POISONED);
6366 		set_huge_pte_at(dst_mm, dst_addr, dst_pte, _dst_pte,
6367 				huge_page_size(h));
6368 
6369 		/* No need to invalidate - it was non-present before */
6370 		update_mmu_cache(dst_vma, dst_addr, dst_pte);
6371 
6372 		spin_unlock(ptl);
6373 		return 0;
6374 	}
6375 
6376 	if (is_continue) {
6377 		ret = -EFAULT;
6378 		folio = filemap_lock_hugetlb_folio(h, mapping, idx);
6379 		if (IS_ERR(folio))
6380 			goto out;
6381 		folio_in_pagecache = true;
6382 	} else if (!*foliop) {
6383 		/* If a folio already exists, then it's UFFDIO_COPY for
6384 		 * a non-missing case. Return -EEXIST.
6385 		 */
6386 		if (vm_shared &&
6387 		    hugetlbfs_pagecache_present(h, dst_vma, dst_addr)) {
6388 			ret = -EEXIST;
6389 			goto out;
6390 		}
6391 
6392 		folio = alloc_hugetlb_folio(dst_vma, dst_addr, 0);
6393 		if (IS_ERR(folio)) {
6394 			ret = -ENOMEM;
6395 			goto out;
6396 		}
6397 
6398 		ret = copy_folio_from_user(folio, (const void __user *) src_addr,
6399 					   false);
6400 
6401 		/* fallback to copy_from_user outside mmap_lock */
6402 		if (unlikely(ret)) {
6403 			ret = -ENOENT;
6404 			/* Free the allocated folio which may have
6405 			 * consumed a reservation.
6406 			 */
6407 			restore_reserve_on_error(h, dst_vma, dst_addr, folio);
6408 			folio_put(folio);
6409 
6410 			/* Allocate a temporary folio to hold the copied
6411 			 * contents.
6412 			 */
6413 			folio = alloc_hugetlb_folio_vma(h, dst_vma, dst_addr);
6414 			if (!folio) {
6415 				ret = -ENOMEM;
6416 				goto out;
6417 			}
6418 			*foliop = folio;
6419 			/* Set the outparam foliop and return to the caller to
6420 			 * copy the contents outside the lock. Don't free the
6421 			 * folio.
6422 			 */
6423 			goto out;
6424 		}
6425 	} else {
6426 		if (vm_shared &&
6427 		    hugetlbfs_pagecache_present(h, dst_vma, dst_addr)) {
6428 			folio_put(*foliop);
6429 			ret = -EEXIST;
6430 			*foliop = NULL;
6431 			goto out;
6432 		}
6433 
6434 		folio = alloc_hugetlb_folio(dst_vma, dst_addr, 0);
6435 		if (IS_ERR(folio)) {
6436 			folio_put(*foliop);
6437 			ret = -ENOMEM;
6438 			*foliop = NULL;
6439 			goto out;
6440 		}
6441 		ret = copy_user_large_folio(folio, *foliop, dst_addr, dst_vma);
6442 		folio_put(*foliop);
6443 		*foliop = NULL;
6444 		if (ret) {
6445 			folio_put(folio);
6446 			goto out;
6447 		}
6448 	}
6449 
6450 	/*
6451 	 * The memory barrier inside __folio_mark_uptodate makes sure that
6452 	 * preceding stores to the page contents become visible before
6453 	 * the set_pte_at() write.
6454 	 */
6455 	__folio_mark_uptodate(folio);
6456 
6457 	/* Add shared, newly allocated pages to the page cache. */
6458 	if (vm_shared && !is_continue) {
6459 		size = i_size_read(mapping->host) >> huge_page_shift(h);
6460 		ret = -EFAULT;
6461 		if (idx >= size)
6462 			goto out_release_nounlock;
6463 
6464 		/*
6465 		 * Serialization between remove_inode_hugepages() and
6466 		 * hugetlb_add_to_page_cache() below happens through the
6467 		 * hugetlb_fault_mutex_table that here must be hold by
6468 		 * the caller.
6469 		 */
6470 		ret = hugetlb_add_to_page_cache(folio, mapping, idx);
6471 		if (ret)
6472 			goto out_release_nounlock;
6473 		folio_in_pagecache = true;
6474 	}
6475 
6476 	ptl = huge_pte_lock(h, dst_mm, dst_pte);
6477 
6478 	ret = -EIO;
6479 	if (folio_test_hwpoison(folio))
6480 		goto out_release_unlock;
6481 
6482 	/*
6483 	 * We allow to overwrite a pte marker: consider when both MISSING|WP
6484 	 * registered, we firstly wr-protect a none pte which has no page cache
6485 	 * page backing it, then access the page.
6486 	 */
6487 	ret = -EEXIST;
6488 	if (!huge_pte_none_mostly(huge_ptep_get(dst_pte)))
6489 		goto out_release_unlock;
6490 
6491 	if (folio_in_pagecache)
6492 		page_dup_file_rmap(&folio->page, true);
6493 	else
6494 		hugepage_add_new_anon_rmap(folio, dst_vma, dst_addr);
6495 
6496 	/*
6497 	 * For either: (1) CONTINUE on a non-shared VMA, or (2) UFFDIO_COPY
6498 	 * with wp flag set, don't set pte write bit.
6499 	 */
6500 	if (wp_enabled || (is_continue && !vm_shared))
6501 		writable = 0;
6502 	else
6503 		writable = dst_vma->vm_flags & VM_WRITE;
6504 
6505 	_dst_pte = make_huge_pte(dst_vma, &folio->page, writable);
6506 	/*
6507 	 * Always mark UFFDIO_COPY page dirty; note that this may not be
6508 	 * extremely important for hugetlbfs for now since swapping is not
6509 	 * supported, but we should still be clear in that this page cannot be
6510 	 * thrown away at will, even if write bit not set.
6511 	 */
6512 	_dst_pte = huge_pte_mkdirty(_dst_pte);
6513 	_dst_pte = pte_mkyoung(_dst_pte);
6514 
6515 	if (wp_enabled)
6516 		_dst_pte = huge_pte_mkuffd_wp(_dst_pte);
6517 
6518 	set_huge_pte_at(dst_mm, dst_addr, dst_pte, _dst_pte, huge_page_size(h));
6519 
6520 	hugetlb_count_add(pages_per_huge_page(h), dst_mm);
6521 
6522 	/* No need to invalidate - it was non-present before */
6523 	update_mmu_cache(dst_vma, dst_addr, dst_pte);
6524 
6525 	spin_unlock(ptl);
6526 	if (!is_continue)
6527 		folio_set_hugetlb_migratable(folio);
6528 	if (vm_shared || is_continue)
6529 		folio_unlock(folio);
6530 	ret = 0;
6531 out:
6532 	return ret;
6533 out_release_unlock:
6534 	spin_unlock(ptl);
6535 	if (vm_shared || is_continue)
6536 		folio_unlock(folio);
6537 out_release_nounlock:
6538 	if (!folio_in_pagecache)
6539 		restore_reserve_on_error(h, dst_vma, dst_addr, folio);
6540 	folio_put(folio);
6541 	goto out;
6542 }
6543 #endif /* CONFIG_USERFAULTFD */
6544 
6545 struct page *hugetlb_follow_page_mask(struct vm_area_struct *vma,
6546 				      unsigned long address, unsigned int flags,
6547 				      unsigned int *page_mask)
6548 {
6549 	struct hstate *h = hstate_vma(vma);
6550 	struct mm_struct *mm = vma->vm_mm;
6551 	unsigned long haddr = address & huge_page_mask(h);
6552 	struct page *page = NULL;
6553 	spinlock_t *ptl;
6554 	pte_t *pte, entry;
6555 	int ret;
6556 
6557 	hugetlb_vma_lock_read(vma);
6558 	pte = hugetlb_walk(vma, haddr, huge_page_size(h));
6559 	if (!pte)
6560 		goto out_unlock;
6561 
6562 	ptl = huge_pte_lock(h, mm, pte);
6563 	entry = huge_ptep_get(pte);
6564 	if (pte_present(entry)) {
6565 		page = pte_page(entry);
6566 
6567 		if (!huge_pte_write(entry)) {
6568 			if (flags & FOLL_WRITE) {
6569 				page = NULL;
6570 				goto out;
6571 			}
6572 
6573 			if (gup_must_unshare(vma, flags, page)) {
6574 				/* Tell the caller to do unsharing */
6575 				page = ERR_PTR(-EMLINK);
6576 				goto out;
6577 			}
6578 		}
6579 
6580 		page = nth_page(page, ((address & ~huge_page_mask(h)) >> PAGE_SHIFT));
6581 
6582 		/*
6583 		 * Note that page may be a sub-page, and with vmemmap
6584 		 * optimizations the page struct may be read only.
6585 		 * try_grab_page() will increase the ref count on the
6586 		 * head page, so this will be OK.
6587 		 *
6588 		 * try_grab_page() should always be able to get the page here,
6589 		 * because we hold the ptl lock and have verified pte_present().
6590 		 */
6591 		ret = try_grab_page(page, flags);
6592 
6593 		if (WARN_ON_ONCE(ret)) {
6594 			page = ERR_PTR(ret);
6595 			goto out;
6596 		}
6597 
6598 		*page_mask = (1U << huge_page_order(h)) - 1;
6599 	}
6600 out:
6601 	spin_unlock(ptl);
6602 out_unlock:
6603 	hugetlb_vma_unlock_read(vma);
6604 
6605 	/*
6606 	 * Fixup retval for dump requests: if pagecache doesn't exist,
6607 	 * don't try to allocate a new page but just skip it.
6608 	 */
6609 	if (!page && (flags & FOLL_DUMP) &&
6610 	    !hugetlbfs_pagecache_present(h, vma, address))
6611 		page = ERR_PTR(-EFAULT);
6612 
6613 	return page;
6614 }
6615 
6616 long hugetlb_change_protection(struct vm_area_struct *vma,
6617 		unsigned long address, unsigned long end,
6618 		pgprot_t newprot, unsigned long cp_flags)
6619 {
6620 	struct mm_struct *mm = vma->vm_mm;
6621 	unsigned long start = address;
6622 	pte_t *ptep;
6623 	pte_t pte;
6624 	struct hstate *h = hstate_vma(vma);
6625 	long pages = 0, psize = huge_page_size(h);
6626 	bool shared_pmd = false;
6627 	struct mmu_notifier_range range;
6628 	unsigned long last_addr_mask;
6629 	bool uffd_wp = cp_flags & MM_CP_UFFD_WP;
6630 	bool uffd_wp_resolve = cp_flags & MM_CP_UFFD_WP_RESOLVE;
6631 
6632 	/*
6633 	 * In the case of shared PMDs, the area to flush could be beyond
6634 	 * start/end.  Set range.start/range.end to cover the maximum possible
6635 	 * range if PMD sharing is possible.
6636 	 */
6637 	mmu_notifier_range_init(&range, MMU_NOTIFY_PROTECTION_VMA,
6638 				0, mm, start, end);
6639 	adjust_range_if_pmd_sharing_possible(vma, &range.start, &range.end);
6640 
6641 	BUG_ON(address >= end);
6642 	flush_cache_range(vma, range.start, range.end);
6643 
6644 	mmu_notifier_invalidate_range_start(&range);
6645 	hugetlb_vma_lock_write(vma);
6646 	i_mmap_lock_write(vma->vm_file->f_mapping);
6647 	last_addr_mask = hugetlb_mask_last_page(h);
6648 	for (; address < end; address += psize) {
6649 		spinlock_t *ptl;
6650 		ptep = hugetlb_walk(vma, address, psize);
6651 		if (!ptep) {
6652 			if (!uffd_wp) {
6653 				address |= last_addr_mask;
6654 				continue;
6655 			}
6656 			/*
6657 			 * Userfaultfd wr-protect requires pgtable
6658 			 * pre-allocations to install pte markers.
6659 			 */
6660 			ptep = huge_pte_alloc(mm, vma, address, psize);
6661 			if (!ptep) {
6662 				pages = -ENOMEM;
6663 				break;
6664 			}
6665 		}
6666 		ptl = huge_pte_lock(h, mm, ptep);
6667 		if (huge_pmd_unshare(mm, vma, address, ptep)) {
6668 			/*
6669 			 * When uffd-wp is enabled on the vma, unshare
6670 			 * shouldn't happen at all.  Warn about it if it
6671 			 * happened due to some reason.
6672 			 */
6673 			WARN_ON_ONCE(uffd_wp || uffd_wp_resolve);
6674 			pages++;
6675 			spin_unlock(ptl);
6676 			shared_pmd = true;
6677 			address |= last_addr_mask;
6678 			continue;
6679 		}
6680 		pte = huge_ptep_get(ptep);
6681 		if (unlikely(is_hugetlb_entry_hwpoisoned(pte))) {
6682 			/* Nothing to do. */
6683 		} else if (unlikely(is_hugetlb_entry_migration(pte))) {
6684 			swp_entry_t entry = pte_to_swp_entry(pte);
6685 			struct page *page = pfn_swap_entry_to_page(entry);
6686 			pte_t newpte = pte;
6687 
6688 			if (is_writable_migration_entry(entry)) {
6689 				if (PageAnon(page))
6690 					entry = make_readable_exclusive_migration_entry(
6691 								swp_offset(entry));
6692 				else
6693 					entry = make_readable_migration_entry(
6694 								swp_offset(entry));
6695 				newpte = swp_entry_to_pte(entry);
6696 				pages++;
6697 			}
6698 
6699 			if (uffd_wp)
6700 				newpte = pte_swp_mkuffd_wp(newpte);
6701 			else if (uffd_wp_resolve)
6702 				newpte = pte_swp_clear_uffd_wp(newpte);
6703 			if (!pte_same(pte, newpte))
6704 				set_huge_pte_at(mm, address, ptep, newpte, psize);
6705 		} else if (unlikely(is_pte_marker(pte))) {
6706 			/* No other markers apply for now. */
6707 			WARN_ON_ONCE(!pte_marker_uffd_wp(pte));
6708 			if (uffd_wp_resolve)
6709 				/* Safe to modify directly (non-present->none). */
6710 				huge_pte_clear(mm, address, ptep, psize);
6711 		} else if (!huge_pte_none(pte)) {
6712 			pte_t old_pte;
6713 			unsigned int shift = huge_page_shift(hstate_vma(vma));
6714 
6715 			old_pte = huge_ptep_modify_prot_start(vma, address, ptep);
6716 			pte = huge_pte_modify(old_pte, newprot);
6717 			pte = arch_make_huge_pte(pte, shift, vma->vm_flags);
6718 			if (uffd_wp)
6719 				pte = huge_pte_mkuffd_wp(pte);
6720 			else if (uffd_wp_resolve)
6721 				pte = huge_pte_clear_uffd_wp(pte);
6722 			huge_ptep_modify_prot_commit(vma, address, ptep, old_pte, pte);
6723 			pages++;
6724 		} else {
6725 			/* None pte */
6726 			if (unlikely(uffd_wp))
6727 				/* Safe to modify directly (none->non-present). */
6728 				set_huge_pte_at(mm, address, ptep,
6729 						make_pte_marker(PTE_MARKER_UFFD_WP),
6730 						psize);
6731 		}
6732 		spin_unlock(ptl);
6733 	}
6734 	/*
6735 	 * Must flush TLB before releasing i_mmap_rwsem: x86's huge_pmd_unshare
6736 	 * may have cleared our pud entry and done put_page on the page table:
6737 	 * once we release i_mmap_rwsem, another task can do the final put_page
6738 	 * and that page table be reused and filled with junk.  If we actually
6739 	 * did unshare a page of pmds, flush the range corresponding to the pud.
6740 	 */
6741 	if (shared_pmd)
6742 		flush_hugetlb_tlb_range(vma, range.start, range.end);
6743 	else
6744 		flush_hugetlb_tlb_range(vma, start, end);
6745 	/*
6746 	 * No need to call mmu_notifier_arch_invalidate_secondary_tlbs() we are
6747 	 * downgrading page table protection not changing it to point to a new
6748 	 * page.
6749 	 *
6750 	 * See Documentation/mm/mmu_notifier.rst
6751 	 */
6752 	i_mmap_unlock_write(vma->vm_file->f_mapping);
6753 	hugetlb_vma_unlock_write(vma);
6754 	mmu_notifier_invalidate_range_end(&range);
6755 
6756 	return pages > 0 ? (pages << h->order) : pages;
6757 }
6758 
6759 /* Return true if reservation was successful, false otherwise.  */
6760 bool hugetlb_reserve_pages(struct inode *inode,
6761 					long from, long to,
6762 					struct vm_area_struct *vma,
6763 					vm_flags_t vm_flags)
6764 {
6765 	long chg = -1, add = -1;
6766 	struct hstate *h = hstate_inode(inode);
6767 	struct hugepage_subpool *spool = subpool_inode(inode);
6768 	struct resv_map *resv_map;
6769 	struct hugetlb_cgroup *h_cg = NULL;
6770 	long gbl_reserve, regions_needed = 0;
6771 
6772 	/* This should never happen */
6773 	if (from > to) {
6774 		VM_WARN(1, "%s called with a negative range\n", __func__);
6775 		return false;
6776 	}
6777 
6778 	/*
6779 	 * vma specific semaphore used for pmd sharing and fault/truncation
6780 	 * synchronization
6781 	 */
6782 	hugetlb_vma_lock_alloc(vma);
6783 
6784 	/*
6785 	 * Only apply hugepage reservation if asked. At fault time, an
6786 	 * attempt will be made for VM_NORESERVE to allocate a page
6787 	 * without using reserves
6788 	 */
6789 	if (vm_flags & VM_NORESERVE)
6790 		return true;
6791 
6792 	/*
6793 	 * Shared mappings base their reservation on the number of pages that
6794 	 * are already allocated on behalf of the file. Private mappings need
6795 	 * to reserve the full area even if read-only as mprotect() may be
6796 	 * called to make the mapping read-write. Assume !vma is a shm mapping
6797 	 */
6798 	if (!vma || vma->vm_flags & VM_MAYSHARE) {
6799 		/*
6800 		 * resv_map can not be NULL as hugetlb_reserve_pages is only
6801 		 * called for inodes for which resv_maps were created (see
6802 		 * hugetlbfs_get_inode).
6803 		 */
6804 		resv_map = inode_resv_map(inode);
6805 
6806 		chg = region_chg(resv_map, from, to, &regions_needed);
6807 	} else {
6808 		/* Private mapping. */
6809 		resv_map = resv_map_alloc();
6810 		if (!resv_map)
6811 			goto out_err;
6812 
6813 		chg = to - from;
6814 
6815 		set_vma_resv_map(vma, resv_map);
6816 		set_vma_resv_flags(vma, HPAGE_RESV_OWNER);
6817 	}
6818 
6819 	if (chg < 0)
6820 		goto out_err;
6821 
6822 	if (hugetlb_cgroup_charge_cgroup_rsvd(hstate_index(h),
6823 				chg * pages_per_huge_page(h), &h_cg) < 0)
6824 		goto out_err;
6825 
6826 	if (vma && !(vma->vm_flags & VM_MAYSHARE) && h_cg) {
6827 		/* For private mappings, the hugetlb_cgroup uncharge info hangs
6828 		 * of the resv_map.
6829 		 */
6830 		resv_map_set_hugetlb_cgroup_uncharge_info(resv_map, h_cg, h);
6831 	}
6832 
6833 	/*
6834 	 * There must be enough pages in the subpool for the mapping. If
6835 	 * the subpool has a minimum size, there may be some global
6836 	 * reservations already in place (gbl_reserve).
6837 	 */
6838 	gbl_reserve = hugepage_subpool_get_pages(spool, chg);
6839 	if (gbl_reserve < 0)
6840 		goto out_uncharge_cgroup;
6841 
6842 	/*
6843 	 * Check enough hugepages are available for the reservation.
6844 	 * Hand the pages back to the subpool if there are not
6845 	 */
6846 	if (hugetlb_acct_memory(h, gbl_reserve) < 0)
6847 		goto out_put_pages;
6848 
6849 	/*
6850 	 * Account for the reservations made. Shared mappings record regions
6851 	 * that have reservations as they are shared by multiple VMAs.
6852 	 * When the last VMA disappears, the region map says how much
6853 	 * the reservation was and the page cache tells how much of
6854 	 * the reservation was consumed. Private mappings are per-VMA and
6855 	 * only the consumed reservations are tracked. When the VMA
6856 	 * disappears, the original reservation is the VMA size and the
6857 	 * consumed reservations are stored in the map. Hence, nothing
6858 	 * else has to be done for private mappings here
6859 	 */
6860 	if (!vma || vma->vm_flags & VM_MAYSHARE) {
6861 		add = region_add(resv_map, from, to, regions_needed, h, h_cg);
6862 
6863 		if (unlikely(add < 0)) {
6864 			hugetlb_acct_memory(h, -gbl_reserve);
6865 			goto out_put_pages;
6866 		} else if (unlikely(chg > add)) {
6867 			/*
6868 			 * pages in this range were added to the reserve
6869 			 * map between region_chg and region_add.  This
6870 			 * indicates a race with alloc_hugetlb_folio.  Adjust
6871 			 * the subpool and reserve counts modified above
6872 			 * based on the difference.
6873 			 */
6874 			long rsv_adjust;
6875 
6876 			/*
6877 			 * hugetlb_cgroup_uncharge_cgroup_rsvd() will put the
6878 			 * reference to h_cg->css. See comment below for detail.
6879 			 */
6880 			hugetlb_cgroup_uncharge_cgroup_rsvd(
6881 				hstate_index(h),
6882 				(chg - add) * pages_per_huge_page(h), h_cg);
6883 
6884 			rsv_adjust = hugepage_subpool_put_pages(spool,
6885 								chg - add);
6886 			hugetlb_acct_memory(h, -rsv_adjust);
6887 		} else if (h_cg) {
6888 			/*
6889 			 * The file_regions will hold their own reference to
6890 			 * h_cg->css. So we should release the reference held
6891 			 * via hugetlb_cgroup_charge_cgroup_rsvd() when we are
6892 			 * done.
6893 			 */
6894 			hugetlb_cgroup_put_rsvd_cgroup(h_cg);
6895 		}
6896 	}
6897 	return true;
6898 
6899 out_put_pages:
6900 	/* put back original number of pages, chg */
6901 	(void)hugepage_subpool_put_pages(spool, chg);
6902 out_uncharge_cgroup:
6903 	hugetlb_cgroup_uncharge_cgroup_rsvd(hstate_index(h),
6904 					    chg * pages_per_huge_page(h), h_cg);
6905 out_err:
6906 	hugetlb_vma_lock_free(vma);
6907 	if (!vma || vma->vm_flags & VM_MAYSHARE)
6908 		/* Only call region_abort if the region_chg succeeded but the
6909 		 * region_add failed or didn't run.
6910 		 */
6911 		if (chg >= 0 && add < 0)
6912 			region_abort(resv_map, from, to, regions_needed);
6913 	if (vma && is_vma_resv_set(vma, HPAGE_RESV_OWNER)) {
6914 		kref_put(&resv_map->refs, resv_map_release);
6915 		set_vma_resv_map(vma, NULL);
6916 	}
6917 	return false;
6918 }
6919 
6920 long hugetlb_unreserve_pages(struct inode *inode, long start, long end,
6921 								long freed)
6922 {
6923 	struct hstate *h = hstate_inode(inode);
6924 	struct resv_map *resv_map = inode_resv_map(inode);
6925 	long chg = 0;
6926 	struct hugepage_subpool *spool = subpool_inode(inode);
6927 	long gbl_reserve;
6928 
6929 	/*
6930 	 * Since this routine can be called in the evict inode path for all
6931 	 * hugetlbfs inodes, resv_map could be NULL.
6932 	 */
6933 	if (resv_map) {
6934 		chg = region_del(resv_map, start, end);
6935 		/*
6936 		 * region_del() can fail in the rare case where a region
6937 		 * must be split and another region descriptor can not be
6938 		 * allocated.  If end == LONG_MAX, it will not fail.
6939 		 */
6940 		if (chg < 0)
6941 			return chg;
6942 	}
6943 
6944 	spin_lock(&inode->i_lock);
6945 	inode->i_blocks -= (blocks_per_huge_page(h) * freed);
6946 	spin_unlock(&inode->i_lock);
6947 
6948 	/*
6949 	 * If the subpool has a minimum size, the number of global
6950 	 * reservations to be released may be adjusted.
6951 	 *
6952 	 * Note that !resv_map implies freed == 0. So (chg - freed)
6953 	 * won't go negative.
6954 	 */
6955 	gbl_reserve = hugepage_subpool_put_pages(spool, (chg - freed));
6956 	hugetlb_acct_memory(h, -gbl_reserve);
6957 
6958 	return 0;
6959 }
6960 
6961 #ifdef CONFIG_ARCH_WANT_HUGE_PMD_SHARE
6962 static unsigned long page_table_shareable(struct vm_area_struct *svma,
6963 				struct vm_area_struct *vma,
6964 				unsigned long addr, pgoff_t idx)
6965 {
6966 	unsigned long saddr = ((idx - svma->vm_pgoff) << PAGE_SHIFT) +
6967 				svma->vm_start;
6968 	unsigned long sbase = saddr & PUD_MASK;
6969 	unsigned long s_end = sbase + PUD_SIZE;
6970 
6971 	/* Allow segments to share if only one is marked locked */
6972 	unsigned long vm_flags = vma->vm_flags & ~VM_LOCKED_MASK;
6973 	unsigned long svm_flags = svma->vm_flags & ~VM_LOCKED_MASK;
6974 
6975 	/*
6976 	 * match the virtual addresses, permission and the alignment of the
6977 	 * page table page.
6978 	 *
6979 	 * Also, vma_lock (vm_private_data) is required for sharing.
6980 	 */
6981 	if (pmd_index(addr) != pmd_index(saddr) ||
6982 	    vm_flags != svm_flags ||
6983 	    !range_in_vma(svma, sbase, s_end) ||
6984 	    !svma->vm_private_data)
6985 		return 0;
6986 
6987 	return saddr;
6988 }
6989 
6990 bool want_pmd_share(struct vm_area_struct *vma, unsigned long addr)
6991 {
6992 	unsigned long start = addr & PUD_MASK;
6993 	unsigned long end = start + PUD_SIZE;
6994 
6995 #ifdef CONFIG_USERFAULTFD
6996 	if (uffd_disable_huge_pmd_share(vma))
6997 		return false;
6998 #endif
6999 	/*
7000 	 * check on proper vm_flags and page table alignment
7001 	 */
7002 	if (!(vma->vm_flags & VM_MAYSHARE))
7003 		return false;
7004 	if (!vma->vm_private_data)	/* vma lock required for sharing */
7005 		return false;
7006 	if (!range_in_vma(vma, start, end))
7007 		return false;
7008 	return true;
7009 }
7010 
7011 /*
7012  * Determine if start,end range within vma could be mapped by shared pmd.
7013  * If yes, adjust start and end to cover range associated with possible
7014  * shared pmd mappings.
7015  */
7016 void adjust_range_if_pmd_sharing_possible(struct vm_area_struct *vma,
7017 				unsigned long *start, unsigned long *end)
7018 {
7019 	unsigned long v_start = ALIGN(vma->vm_start, PUD_SIZE),
7020 		v_end = ALIGN_DOWN(vma->vm_end, PUD_SIZE);
7021 
7022 	/*
7023 	 * vma needs to span at least one aligned PUD size, and the range
7024 	 * must be at least partially within in.
7025 	 */
7026 	if (!(vma->vm_flags & VM_MAYSHARE) || !(v_end > v_start) ||
7027 		(*end <= v_start) || (*start >= v_end))
7028 		return;
7029 
7030 	/* Extend the range to be PUD aligned for a worst case scenario */
7031 	if (*start > v_start)
7032 		*start = ALIGN_DOWN(*start, PUD_SIZE);
7033 
7034 	if (*end < v_end)
7035 		*end = ALIGN(*end, PUD_SIZE);
7036 }
7037 
7038 /*
7039  * Search for a shareable pmd page for hugetlb. In any case calls pmd_alloc()
7040  * and returns the corresponding pte. While this is not necessary for the
7041  * !shared pmd case because we can allocate the pmd later as well, it makes the
7042  * code much cleaner. pmd allocation is essential for the shared case because
7043  * pud has to be populated inside the same i_mmap_rwsem section - otherwise
7044  * racing tasks could either miss the sharing (see huge_pte_offset) or select a
7045  * bad pmd for sharing.
7046  */
7047 pte_t *huge_pmd_share(struct mm_struct *mm, struct vm_area_struct *vma,
7048 		      unsigned long addr, pud_t *pud)
7049 {
7050 	struct address_space *mapping = vma->vm_file->f_mapping;
7051 	pgoff_t idx = ((addr - vma->vm_start) >> PAGE_SHIFT) +
7052 			vma->vm_pgoff;
7053 	struct vm_area_struct *svma;
7054 	unsigned long saddr;
7055 	pte_t *spte = NULL;
7056 	pte_t *pte;
7057 
7058 	i_mmap_lock_read(mapping);
7059 	vma_interval_tree_foreach(svma, &mapping->i_mmap, idx, idx) {
7060 		if (svma == vma)
7061 			continue;
7062 
7063 		saddr = page_table_shareable(svma, vma, addr, idx);
7064 		if (saddr) {
7065 			spte = hugetlb_walk(svma, saddr,
7066 					    vma_mmu_pagesize(svma));
7067 			if (spte) {
7068 				get_page(virt_to_page(spte));
7069 				break;
7070 			}
7071 		}
7072 	}
7073 
7074 	if (!spte)
7075 		goto out;
7076 
7077 	spin_lock(&mm->page_table_lock);
7078 	if (pud_none(*pud)) {
7079 		pud_populate(mm, pud,
7080 				(pmd_t *)((unsigned long)spte & PAGE_MASK));
7081 		mm_inc_nr_pmds(mm);
7082 	} else {
7083 		put_page(virt_to_page(spte));
7084 	}
7085 	spin_unlock(&mm->page_table_lock);
7086 out:
7087 	pte = (pte_t *)pmd_alloc(mm, pud, addr);
7088 	i_mmap_unlock_read(mapping);
7089 	return pte;
7090 }
7091 
7092 /*
7093  * unmap huge page backed by shared pte.
7094  *
7095  * Hugetlb pte page is ref counted at the time of mapping.  If pte is shared
7096  * indicated by page_count > 1, unmap is achieved by clearing pud and
7097  * decrementing the ref count. If count == 1, the pte page is not shared.
7098  *
7099  * Called with page table lock held.
7100  *
7101  * returns: 1 successfully unmapped a shared pte page
7102  *	    0 the underlying pte page is not shared, or it is the last user
7103  */
7104 int huge_pmd_unshare(struct mm_struct *mm, struct vm_area_struct *vma,
7105 					unsigned long addr, pte_t *ptep)
7106 {
7107 	pgd_t *pgd = pgd_offset(mm, addr);
7108 	p4d_t *p4d = p4d_offset(pgd, addr);
7109 	pud_t *pud = pud_offset(p4d, addr);
7110 
7111 	i_mmap_assert_write_locked(vma->vm_file->f_mapping);
7112 	hugetlb_vma_assert_locked(vma);
7113 	BUG_ON(page_count(virt_to_page(ptep)) == 0);
7114 	if (page_count(virt_to_page(ptep)) == 1)
7115 		return 0;
7116 
7117 	pud_clear(pud);
7118 	put_page(virt_to_page(ptep));
7119 	mm_dec_nr_pmds(mm);
7120 	return 1;
7121 }
7122 
7123 #else /* !CONFIG_ARCH_WANT_HUGE_PMD_SHARE */
7124 
7125 pte_t *huge_pmd_share(struct mm_struct *mm, struct vm_area_struct *vma,
7126 		      unsigned long addr, pud_t *pud)
7127 {
7128 	return NULL;
7129 }
7130 
7131 int huge_pmd_unshare(struct mm_struct *mm, struct vm_area_struct *vma,
7132 				unsigned long addr, pte_t *ptep)
7133 {
7134 	return 0;
7135 }
7136 
7137 void adjust_range_if_pmd_sharing_possible(struct vm_area_struct *vma,
7138 				unsigned long *start, unsigned long *end)
7139 {
7140 }
7141 
7142 bool want_pmd_share(struct vm_area_struct *vma, unsigned long addr)
7143 {
7144 	return false;
7145 }
7146 #endif /* CONFIG_ARCH_WANT_HUGE_PMD_SHARE */
7147 
7148 #ifdef CONFIG_ARCH_WANT_GENERAL_HUGETLB
7149 pte_t *huge_pte_alloc(struct mm_struct *mm, struct vm_area_struct *vma,
7150 			unsigned long addr, unsigned long sz)
7151 {
7152 	pgd_t *pgd;
7153 	p4d_t *p4d;
7154 	pud_t *pud;
7155 	pte_t *pte = NULL;
7156 
7157 	pgd = pgd_offset(mm, addr);
7158 	p4d = p4d_alloc(mm, pgd, addr);
7159 	if (!p4d)
7160 		return NULL;
7161 	pud = pud_alloc(mm, p4d, addr);
7162 	if (pud) {
7163 		if (sz == PUD_SIZE) {
7164 			pte = (pte_t *)pud;
7165 		} else {
7166 			BUG_ON(sz != PMD_SIZE);
7167 			if (want_pmd_share(vma, addr) && pud_none(*pud))
7168 				pte = huge_pmd_share(mm, vma, addr, pud);
7169 			else
7170 				pte = (pte_t *)pmd_alloc(mm, pud, addr);
7171 		}
7172 	}
7173 
7174 	if (pte) {
7175 		pte_t pteval = ptep_get_lockless(pte);
7176 
7177 		BUG_ON(pte_present(pteval) && !pte_huge(pteval));
7178 	}
7179 
7180 	return pte;
7181 }
7182 
7183 /*
7184  * huge_pte_offset() - Walk the page table to resolve the hugepage
7185  * entry at address @addr
7186  *
7187  * Return: Pointer to page table entry (PUD or PMD) for
7188  * address @addr, or NULL if a !p*d_present() entry is encountered and the
7189  * size @sz doesn't match the hugepage size at this level of the page
7190  * table.
7191  */
7192 pte_t *huge_pte_offset(struct mm_struct *mm,
7193 		       unsigned long addr, unsigned long sz)
7194 {
7195 	pgd_t *pgd;
7196 	p4d_t *p4d;
7197 	pud_t *pud;
7198 	pmd_t *pmd;
7199 
7200 	pgd = pgd_offset(mm, addr);
7201 	if (!pgd_present(*pgd))
7202 		return NULL;
7203 	p4d = p4d_offset(pgd, addr);
7204 	if (!p4d_present(*p4d))
7205 		return NULL;
7206 
7207 	pud = pud_offset(p4d, addr);
7208 	if (sz == PUD_SIZE)
7209 		/* must be pud huge, non-present or none */
7210 		return (pte_t *)pud;
7211 	if (!pud_present(*pud))
7212 		return NULL;
7213 	/* must have a valid entry and size to go further */
7214 
7215 	pmd = pmd_offset(pud, addr);
7216 	/* must be pmd huge, non-present or none */
7217 	return (pte_t *)pmd;
7218 }
7219 
7220 /*
7221  * Return a mask that can be used to update an address to the last huge
7222  * page in a page table page mapping size.  Used to skip non-present
7223  * page table entries when linearly scanning address ranges.  Architectures
7224  * with unique huge page to page table relationships can define their own
7225  * version of this routine.
7226  */
7227 unsigned long hugetlb_mask_last_page(struct hstate *h)
7228 {
7229 	unsigned long hp_size = huge_page_size(h);
7230 
7231 	if (hp_size == PUD_SIZE)
7232 		return P4D_SIZE - PUD_SIZE;
7233 	else if (hp_size == PMD_SIZE)
7234 		return PUD_SIZE - PMD_SIZE;
7235 	else
7236 		return 0UL;
7237 }
7238 
7239 #else
7240 
7241 /* See description above.  Architectures can provide their own version. */
7242 __weak unsigned long hugetlb_mask_last_page(struct hstate *h)
7243 {
7244 #ifdef CONFIG_ARCH_WANT_HUGE_PMD_SHARE
7245 	if (huge_page_size(h) == PMD_SIZE)
7246 		return PUD_SIZE - PMD_SIZE;
7247 #endif
7248 	return 0UL;
7249 }
7250 
7251 #endif /* CONFIG_ARCH_WANT_GENERAL_HUGETLB */
7252 
7253 /*
7254  * These functions are overwritable if your architecture needs its own
7255  * behavior.
7256  */
7257 bool isolate_hugetlb(struct folio *folio, struct list_head *list)
7258 {
7259 	bool ret = true;
7260 
7261 	spin_lock_irq(&hugetlb_lock);
7262 	if (!folio_test_hugetlb(folio) ||
7263 	    !folio_test_hugetlb_migratable(folio) ||
7264 	    !folio_try_get(folio)) {
7265 		ret = false;
7266 		goto unlock;
7267 	}
7268 	folio_clear_hugetlb_migratable(folio);
7269 	list_move_tail(&folio->lru, list);
7270 unlock:
7271 	spin_unlock_irq(&hugetlb_lock);
7272 	return ret;
7273 }
7274 
7275 int get_hwpoison_hugetlb_folio(struct folio *folio, bool *hugetlb, bool unpoison)
7276 {
7277 	int ret = 0;
7278 
7279 	*hugetlb = false;
7280 	spin_lock_irq(&hugetlb_lock);
7281 	if (folio_test_hugetlb(folio)) {
7282 		*hugetlb = true;
7283 		if (folio_test_hugetlb_freed(folio))
7284 			ret = 0;
7285 		else if (folio_test_hugetlb_migratable(folio) || unpoison)
7286 			ret = folio_try_get(folio);
7287 		else
7288 			ret = -EBUSY;
7289 	}
7290 	spin_unlock_irq(&hugetlb_lock);
7291 	return ret;
7292 }
7293 
7294 int get_huge_page_for_hwpoison(unsigned long pfn, int flags,
7295 				bool *migratable_cleared)
7296 {
7297 	int ret;
7298 
7299 	spin_lock_irq(&hugetlb_lock);
7300 	ret = __get_huge_page_for_hwpoison(pfn, flags, migratable_cleared);
7301 	spin_unlock_irq(&hugetlb_lock);
7302 	return ret;
7303 }
7304 
7305 void folio_putback_active_hugetlb(struct folio *folio)
7306 {
7307 	spin_lock_irq(&hugetlb_lock);
7308 	folio_set_hugetlb_migratable(folio);
7309 	list_move_tail(&folio->lru, &(folio_hstate(folio))->hugepage_activelist);
7310 	spin_unlock_irq(&hugetlb_lock);
7311 	folio_put(folio);
7312 }
7313 
7314 void move_hugetlb_state(struct folio *old_folio, struct folio *new_folio, int reason)
7315 {
7316 	struct hstate *h = folio_hstate(old_folio);
7317 
7318 	hugetlb_cgroup_migrate(old_folio, new_folio);
7319 	set_page_owner_migrate_reason(&new_folio->page, reason);
7320 
7321 	/*
7322 	 * transfer temporary state of the new hugetlb folio. This is
7323 	 * reverse to other transitions because the newpage is going to
7324 	 * be final while the old one will be freed so it takes over
7325 	 * the temporary status.
7326 	 *
7327 	 * Also note that we have to transfer the per-node surplus state
7328 	 * here as well otherwise the global surplus count will not match
7329 	 * the per-node's.
7330 	 */
7331 	if (folio_test_hugetlb_temporary(new_folio)) {
7332 		int old_nid = folio_nid(old_folio);
7333 		int new_nid = folio_nid(new_folio);
7334 
7335 		folio_set_hugetlb_temporary(old_folio);
7336 		folio_clear_hugetlb_temporary(new_folio);
7337 
7338 
7339 		/*
7340 		 * There is no need to transfer the per-node surplus state
7341 		 * when we do not cross the node.
7342 		 */
7343 		if (new_nid == old_nid)
7344 			return;
7345 		spin_lock_irq(&hugetlb_lock);
7346 		if (h->surplus_huge_pages_node[old_nid]) {
7347 			h->surplus_huge_pages_node[old_nid]--;
7348 			h->surplus_huge_pages_node[new_nid]++;
7349 		}
7350 		spin_unlock_irq(&hugetlb_lock);
7351 	}
7352 }
7353 
7354 static void hugetlb_unshare_pmds(struct vm_area_struct *vma,
7355 				   unsigned long start,
7356 				   unsigned long end)
7357 {
7358 	struct hstate *h = hstate_vma(vma);
7359 	unsigned long sz = huge_page_size(h);
7360 	struct mm_struct *mm = vma->vm_mm;
7361 	struct mmu_notifier_range range;
7362 	unsigned long address;
7363 	spinlock_t *ptl;
7364 	pte_t *ptep;
7365 
7366 	if (!(vma->vm_flags & VM_MAYSHARE))
7367 		return;
7368 
7369 	if (start >= end)
7370 		return;
7371 
7372 	flush_cache_range(vma, start, end);
7373 	/*
7374 	 * No need to call adjust_range_if_pmd_sharing_possible(), because
7375 	 * we have already done the PUD_SIZE alignment.
7376 	 */
7377 	mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, mm,
7378 				start, end);
7379 	mmu_notifier_invalidate_range_start(&range);
7380 	hugetlb_vma_lock_write(vma);
7381 	i_mmap_lock_write(vma->vm_file->f_mapping);
7382 	for (address = start; address < end; address += PUD_SIZE) {
7383 		ptep = hugetlb_walk(vma, address, sz);
7384 		if (!ptep)
7385 			continue;
7386 		ptl = huge_pte_lock(h, mm, ptep);
7387 		huge_pmd_unshare(mm, vma, address, ptep);
7388 		spin_unlock(ptl);
7389 	}
7390 	flush_hugetlb_tlb_range(vma, start, end);
7391 	i_mmap_unlock_write(vma->vm_file->f_mapping);
7392 	hugetlb_vma_unlock_write(vma);
7393 	/*
7394 	 * No need to call mmu_notifier_arch_invalidate_secondary_tlbs(), see
7395 	 * Documentation/mm/mmu_notifier.rst.
7396 	 */
7397 	mmu_notifier_invalidate_range_end(&range);
7398 }
7399 
7400 /*
7401  * This function will unconditionally remove all the shared pmd pgtable entries
7402  * within the specific vma for a hugetlbfs memory range.
7403  */
7404 void hugetlb_unshare_all_pmds(struct vm_area_struct *vma)
7405 {
7406 	hugetlb_unshare_pmds(vma, ALIGN(vma->vm_start, PUD_SIZE),
7407 			ALIGN_DOWN(vma->vm_end, PUD_SIZE));
7408 }
7409 
7410 #ifdef CONFIG_CMA
7411 static bool cma_reserve_called __initdata;
7412 
7413 static int __init cmdline_parse_hugetlb_cma(char *p)
7414 {
7415 	int nid, count = 0;
7416 	unsigned long tmp;
7417 	char *s = p;
7418 
7419 	while (*s) {
7420 		if (sscanf(s, "%lu%n", &tmp, &count) != 1)
7421 			break;
7422 
7423 		if (s[count] == ':') {
7424 			if (tmp >= MAX_NUMNODES)
7425 				break;
7426 			nid = array_index_nospec(tmp, MAX_NUMNODES);
7427 
7428 			s += count + 1;
7429 			tmp = memparse(s, &s);
7430 			hugetlb_cma_size_in_node[nid] = tmp;
7431 			hugetlb_cma_size += tmp;
7432 
7433 			/*
7434 			 * Skip the separator if have one, otherwise
7435 			 * break the parsing.
7436 			 */
7437 			if (*s == ',')
7438 				s++;
7439 			else
7440 				break;
7441 		} else {
7442 			hugetlb_cma_size = memparse(p, &p);
7443 			break;
7444 		}
7445 	}
7446 
7447 	return 0;
7448 }
7449 
7450 early_param("hugetlb_cma", cmdline_parse_hugetlb_cma);
7451 
7452 void __init hugetlb_cma_reserve(int order)
7453 {
7454 	unsigned long size, reserved, per_node;
7455 	bool node_specific_cma_alloc = false;
7456 	int nid;
7457 
7458 	cma_reserve_called = true;
7459 
7460 	if (!hugetlb_cma_size)
7461 		return;
7462 
7463 	for (nid = 0; nid < MAX_NUMNODES; nid++) {
7464 		if (hugetlb_cma_size_in_node[nid] == 0)
7465 			continue;
7466 
7467 		if (!node_online(nid)) {
7468 			pr_warn("hugetlb_cma: invalid node %d specified\n", nid);
7469 			hugetlb_cma_size -= hugetlb_cma_size_in_node[nid];
7470 			hugetlb_cma_size_in_node[nid] = 0;
7471 			continue;
7472 		}
7473 
7474 		if (hugetlb_cma_size_in_node[nid] < (PAGE_SIZE << order)) {
7475 			pr_warn("hugetlb_cma: cma area of node %d should be at least %lu MiB\n",
7476 				nid, (PAGE_SIZE << order) / SZ_1M);
7477 			hugetlb_cma_size -= hugetlb_cma_size_in_node[nid];
7478 			hugetlb_cma_size_in_node[nid] = 0;
7479 		} else {
7480 			node_specific_cma_alloc = true;
7481 		}
7482 	}
7483 
7484 	/* Validate the CMA size again in case some invalid nodes specified. */
7485 	if (!hugetlb_cma_size)
7486 		return;
7487 
7488 	if (hugetlb_cma_size < (PAGE_SIZE << order)) {
7489 		pr_warn("hugetlb_cma: cma area should be at least %lu MiB\n",
7490 			(PAGE_SIZE << order) / SZ_1M);
7491 		hugetlb_cma_size = 0;
7492 		return;
7493 	}
7494 
7495 	if (!node_specific_cma_alloc) {
7496 		/*
7497 		 * If 3 GB area is requested on a machine with 4 numa nodes,
7498 		 * let's allocate 1 GB on first three nodes and ignore the last one.
7499 		 */
7500 		per_node = DIV_ROUND_UP(hugetlb_cma_size, nr_online_nodes);
7501 		pr_info("hugetlb_cma: reserve %lu MiB, up to %lu MiB per node\n",
7502 			hugetlb_cma_size / SZ_1M, per_node / SZ_1M);
7503 	}
7504 
7505 	reserved = 0;
7506 	for_each_online_node(nid) {
7507 		int res;
7508 		char name[CMA_MAX_NAME];
7509 
7510 		if (node_specific_cma_alloc) {
7511 			if (hugetlb_cma_size_in_node[nid] == 0)
7512 				continue;
7513 
7514 			size = hugetlb_cma_size_in_node[nid];
7515 		} else {
7516 			size = min(per_node, hugetlb_cma_size - reserved);
7517 		}
7518 
7519 		size = round_up(size, PAGE_SIZE << order);
7520 
7521 		snprintf(name, sizeof(name), "hugetlb%d", nid);
7522 		/*
7523 		 * Note that 'order per bit' is based on smallest size that
7524 		 * may be returned to CMA allocator in the case of
7525 		 * huge page demotion.
7526 		 */
7527 		res = cma_declare_contiguous_nid(0, size, 0,
7528 						PAGE_SIZE << HUGETLB_PAGE_ORDER,
7529 						 0, false, name,
7530 						 &hugetlb_cma[nid], nid);
7531 		if (res) {
7532 			pr_warn("hugetlb_cma: reservation failed: err %d, node %d",
7533 				res, nid);
7534 			continue;
7535 		}
7536 
7537 		reserved += size;
7538 		pr_info("hugetlb_cma: reserved %lu MiB on node %d\n",
7539 			size / SZ_1M, nid);
7540 
7541 		if (reserved >= hugetlb_cma_size)
7542 			break;
7543 	}
7544 
7545 	if (!reserved)
7546 		/*
7547 		 * hugetlb_cma_size is used to determine if allocations from
7548 		 * cma are possible.  Set to zero if no cma regions are set up.
7549 		 */
7550 		hugetlb_cma_size = 0;
7551 }
7552 
7553 static void __init hugetlb_cma_check(void)
7554 {
7555 	if (!hugetlb_cma_size || cma_reserve_called)
7556 		return;
7557 
7558 	pr_warn("hugetlb_cma: the option isn't supported by current arch\n");
7559 }
7560 
7561 #endif /* CONFIG_CMA */
7562