blob: c00dd2d1e5f4e80ae51a7765900c9e8f4952af03 [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Generic hugetlb support.
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01004 * (C) Nadia Yvette Chambers, April 2004
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/list.h>
7#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/mm.h>
Alexey Dobriyane1759c22008-10-15 23:50:22 +04009#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/sysctl.h>
11#include <linux/highmem.h>
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070012#include <linux/mmu_notifier.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/nodemask.h>
David Gibson63551ae2005-06-21 17:14:44 -070014#include <linux/pagemap.h>
Christoph Lameter5da7ca82006-01-06 00:10:46 -080015#include <linux/mempolicy.h>
Gideon Israel Dsouza3b321232014-04-07 15:37:26 -070016#include <linux/compiler.h>
Christoph Lameteraea47ff2006-01-08 01:00:57 -080017#include <linux/cpuset.h>
David Gibson3935baa2006-03-22 00:08:53 -080018#include <linux/mutex.h>
Mike Rapoport97ad1082018-10-30 15:09:44 -070019#include <linux/memblock.h>
Nishanth Aravamudana3437872008-07-23 21:27:44 -070020#include <linux/sysfs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Joonsoo Kimbbe88752020-08-11 18:37:38 -070022#include <linux/sched/mm.h>
Mike Kravetz63489f82018-03-22 16:17:13 -070023#include <linux/mmdebug.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010024#include <linux/sched/signal.h>
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +090025#include <linux/rmap.h>
Matthew Wilcoxc6247f72017-07-10 15:48:56 -070026#include <linux/string_helpers.h>
Naoya Horiguchifd6a03e2010-05-28 09:29:21 +090027#include <linux/swap.h>
28#include <linux/swapops.h>
Davidlohr Bueso8382d912014-04-03 14:47:31 -070029#include <linux/jhash.h>
Anshuman Khandual98fa15f2019-03-05 15:42:58 -080030#include <linux/numa.h>
Waiman Longc77c0a82020-01-04 13:00:15 -080031#include <linux/llist.h>
Roman Gushchincf11e852020-04-10 14:32:45 -070032#include <linux/cma.h>
Mina Almasry8cc5fcb2021-06-30 18:48:19 -070033#include <linux/migrate.h>
Linus Torvaldsd6606682008-08-06 12:04:54 -070034
David Gibson63551ae2005-06-21 17:14:44 -070035#include <asm/page.h>
Mike Rapoportca15ca42020-08-06 23:22:28 -070036#include <asm/pgalloc.h>
Aneesh Kumar K.V24669e52012-07-31 16:42:03 -070037#include <asm/tlb.h>
David Gibson63551ae2005-06-21 17:14:44 -070038
Aneesh Kumar K.V24669e52012-07-31 16:42:03 -070039#include <linux/io.h>
David Gibson63551ae2005-06-21 17:14:44 -070040#include <linux/hugetlb.h>
Aneesh Kumar K.V9dd540e2012-07-31 16:42:15 -070041#include <linux/hugetlb_cgroup.h>
Lee Schermerhorn9a3052302009-12-14 17:58:25 -080042#include <linux/node.h>
Michal Hockoab5ac902018-01-31 16:20:48 -080043#include <linux/page_owner.h>
Nick Piggin7835e982006-03-22 00:08:40 -080044#include "internal.h"
Muchun Songf41f2ed2021-06-30 18:47:13 -070045#include "hugetlb_vmemmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Aneesh Kumar K.Vc3f38a32012-07-31 16:42:10 -070047int hugetlb_max_hstate __read_mostly;
Andi Kleene5ff2152008-07-23 21:27:42 -070048unsigned int default_hstate_idx;
49struct hstate hstates[HUGE_MAX_HSTATE];
Roman Gushchincf11e852020-04-10 14:32:45 -070050
Barry Songdbda8fe2020-07-23 21:15:30 -070051#ifdef CONFIG_CMA
Roman Gushchincf11e852020-04-10 14:32:45 -070052static struct cma *hugetlb_cma[MAX_NUMNODES];
Mike Kravetza01f4392021-11-05 13:41:27 -070053static bool hugetlb_cma_page(struct page *page, unsigned int order)
54{
55 return cma_pages_valid(hugetlb_cma[page_to_nid(page)], page,
56 1 << order);
57}
58#else
59static bool hugetlb_cma_page(struct page *page, unsigned int order)
60{
61 return false;
62}
Barry Songdbda8fe2020-07-23 21:15:30 -070063#endif
64static unsigned long hugetlb_cma_size __initdata;
Roman Gushchincf11e852020-04-10 14:32:45 -070065
Naoya Horiguchi641844f2015-06-24 16:56:59 -070066/*
67 * Minimum page order among possible hugepage sizes, set to a proper value
68 * at boot time.
69 */
70static unsigned int minimum_order __read_mostly = UINT_MAX;
Andi Kleene5ff2152008-07-23 21:27:42 -070071
Jon Tollefson53ba51d2008-07-23 21:27:52 -070072__initdata LIST_HEAD(huge_boot_pages);
73
Andi Kleene5ff2152008-07-23 21:27:42 -070074/* for command line parsing */
75static struct hstate * __initdata parsed_hstate;
76static unsigned long __initdata default_hstate_max_huge_pages;
Vaishali Thakkar9fee0212016-05-19 17:11:04 -070077static bool __initdata parsed_valid_hugepagesz = true;
Mike Kravetz282f4212020-06-03 16:00:46 -070078static bool __initdata parsed_default_hugepagesz;
Andi Kleene5ff2152008-07-23 21:27:42 -070079
David Gibson3935baa2006-03-22 00:08:53 -080080/*
Naoya Horiguchi31caf662013-09-11 14:21:59 -070081 * Protects updates to hugepage_freelists, hugepage_activelist, nr_huge_pages,
82 * free_huge_pages, and surplus_huge_pages.
David Gibson3935baa2006-03-22 00:08:53 -080083 */
Aneesh Kumar K.Vc3f38a32012-07-31 16:42:10 -070084DEFINE_SPINLOCK(hugetlb_lock);
Eric Paris0bd0f9f2005-11-21 21:32:28 -080085
Davidlohr Bueso8382d912014-04-03 14:47:31 -070086/*
87 * Serializes faults on the same logical page. This is used to
88 * prevent spurious OOMs when the hugepage pool is fully utilized.
89 */
90static int num_fault_mutexes;
Mike Kravetzc672c7f2015-09-08 15:01:35 -070091struct mutex *hugetlb_fault_mutex_table ____cacheline_aligned_in_smp;
Davidlohr Bueso8382d912014-04-03 14:47:31 -070092
Mike Kravetz7ca02d0a2015-04-15 16:13:42 -070093/* Forward declaration */
94static int hugetlb_acct_memory(struct hstate *h, long delta);
95
Miaohe Lin1d884332021-02-24 12:07:05 -080096static inline bool subpool_is_free(struct hugepage_subpool *spool)
97{
98 if (spool->count)
99 return false;
100 if (spool->max_hpages != -1)
101 return spool->used_hpages == 0;
102 if (spool->min_hpages != -1)
103 return spool->rsv_hpages == spool->min_hpages;
104
105 return true;
106}
107
Mike Kravetzdb71ef72021-05-04 18:35:07 -0700108static inline void unlock_or_release_subpool(struct hugepage_subpool *spool,
109 unsigned long irq_flags)
David Gibson90481622012-03-21 16:34:12 -0700110{
Mike Kravetzdb71ef72021-05-04 18:35:07 -0700111 spin_unlock_irqrestore(&spool->lock, irq_flags);
David Gibson90481622012-03-21 16:34:12 -0700112
113 /* If no pages are used, and no other handles to the subpool
Ethon Paul7c8de352020-06-04 16:49:07 -0700114 * remain, give up any reservations based on minimum size and
Mike Kravetz7ca02d0a2015-04-15 16:13:42 -0700115 * free the subpool */
Miaohe Lin1d884332021-02-24 12:07:05 -0800116 if (subpool_is_free(spool)) {
Mike Kravetz7ca02d0a2015-04-15 16:13:42 -0700117 if (spool->min_hpages != -1)
118 hugetlb_acct_memory(spool->hstate,
119 -spool->min_hpages);
David Gibson90481622012-03-21 16:34:12 -0700120 kfree(spool);
Mike Kravetz7ca02d0a2015-04-15 16:13:42 -0700121 }
David Gibson90481622012-03-21 16:34:12 -0700122}
123
Mike Kravetz7ca02d0a2015-04-15 16:13:42 -0700124struct hugepage_subpool *hugepage_new_subpool(struct hstate *h, long max_hpages,
125 long min_hpages)
David Gibson90481622012-03-21 16:34:12 -0700126{
127 struct hugepage_subpool *spool;
128
Mike Kravetzc6a91822015-04-15 16:13:36 -0700129 spool = kzalloc(sizeof(*spool), GFP_KERNEL);
David Gibson90481622012-03-21 16:34:12 -0700130 if (!spool)
131 return NULL;
132
133 spin_lock_init(&spool->lock);
134 spool->count = 1;
Mike Kravetz7ca02d0a2015-04-15 16:13:42 -0700135 spool->max_hpages = max_hpages;
136 spool->hstate = h;
137 spool->min_hpages = min_hpages;
138
139 if (min_hpages != -1 && hugetlb_acct_memory(h, min_hpages)) {
140 kfree(spool);
141 return NULL;
142 }
143 spool->rsv_hpages = min_hpages;
David Gibson90481622012-03-21 16:34:12 -0700144
145 return spool;
146}
147
148void hugepage_put_subpool(struct hugepage_subpool *spool)
149{
Mike Kravetzdb71ef72021-05-04 18:35:07 -0700150 unsigned long flags;
151
152 spin_lock_irqsave(&spool->lock, flags);
David Gibson90481622012-03-21 16:34:12 -0700153 BUG_ON(!spool->count);
154 spool->count--;
Mike Kravetzdb71ef72021-05-04 18:35:07 -0700155 unlock_or_release_subpool(spool, flags);
David Gibson90481622012-03-21 16:34:12 -0700156}
157
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700158/*
159 * Subpool accounting for allocating and reserving pages.
160 * Return -ENOMEM if there are not enough resources to satisfy the
Randy Dunlap9e7ee402020-08-11 18:32:59 -0700161 * request. Otherwise, return the number of pages by which the
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700162 * global pools must be adjusted (upward). The returned value may
163 * only be different than the passed value (delta) in the case where
Ethon Paul7c8de352020-06-04 16:49:07 -0700164 * a subpool minimum size must be maintained.
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700165 */
166static long hugepage_subpool_get_pages(struct hugepage_subpool *spool,
David Gibson90481622012-03-21 16:34:12 -0700167 long delta)
168{
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700169 long ret = delta;
David Gibson90481622012-03-21 16:34:12 -0700170
171 if (!spool)
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700172 return ret;
David Gibson90481622012-03-21 16:34:12 -0700173
Mike Kravetzdb71ef72021-05-04 18:35:07 -0700174 spin_lock_irq(&spool->lock);
David Gibson90481622012-03-21 16:34:12 -0700175
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700176 if (spool->max_hpages != -1) { /* maximum size accounting */
177 if ((spool->used_hpages + delta) <= spool->max_hpages)
178 spool->used_hpages += delta;
179 else {
180 ret = -ENOMEM;
181 goto unlock_ret;
182 }
183 }
184
Mike Kravetz09a95e22016-05-19 17:11:01 -0700185 /* minimum size accounting */
186 if (spool->min_hpages != -1 && spool->rsv_hpages) {
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700187 if (delta > spool->rsv_hpages) {
188 /*
189 * Asking for more reserves than those already taken on
190 * behalf of subpool. Return difference.
191 */
192 ret = delta - spool->rsv_hpages;
193 spool->rsv_hpages = 0;
194 } else {
195 ret = 0; /* reserves already accounted for */
196 spool->rsv_hpages -= delta;
197 }
198 }
199
200unlock_ret:
Mike Kravetzdb71ef72021-05-04 18:35:07 -0700201 spin_unlock_irq(&spool->lock);
David Gibson90481622012-03-21 16:34:12 -0700202 return ret;
203}
204
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700205/*
206 * Subpool accounting for freeing and unreserving pages.
207 * Return the number of global page reservations that must be dropped.
208 * The return value may only be different than the passed value (delta)
209 * in the case where a subpool minimum size must be maintained.
210 */
211static long hugepage_subpool_put_pages(struct hugepage_subpool *spool,
David Gibson90481622012-03-21 16:34:12 -0700212 long delta)
213{
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700214 long ret = delta;
Mike Kravetzdb71ef72021-05-04 18:35:07 -0700215 unsigned long flags;
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700216
David Gibson90481622012-03-21 16:34:12 -0700217 if (!spool)
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700218 return delta;
David Gibson90481622012-03-21 16:34:12 -0700219
Mike Kravetzdb71ef72021-05-04 18:35:07 -0700220 spin_lock_irqsave(&spool->lock, flags);
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700221
222 if (spool->max_hpages != -1) /* maximum size accounting */
223 spool->used_hpages -= delta;
224
Mike Kravetz09a95e22016-05-19 17:11:01 -0700225 /* minimum size accounting */
226 if (spool->min_hpages != -1 && spool->used_hpages < spool->min_hpages) {
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700227 if (spool->rsv_hpages + delta <= spool->min_hpages)
228 ret = 0;
229 else
230 ret = spool->rsv_hpages + delta - spool->min_hpages;
231
232 spool->rsv_hpages += delta;
233 if (spool->rsv_hpages > spool->min_hpages)
234 spool->rsv_hpages = spool->min_hpages;
235 }
236
237 /*
238 * If hugetlbfs_put_super couldn't free spool due to an outstanding
239 * quota reference, free it now.
240 */
Mike Kravetzdb71ef72021-05-04 18:35:07 -0700241 unlock_or_release_subpool(spool, flags);
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700242
243 return ret;
David Gibson90481622012-03-21 16:34:12 -0700244}
245
246static inline struct hugepage_subpool *subpool_inode(struct inode *inode)
247{
248 return HUGETLBFS_SB(inode->i_sb)->spool;
249}
250
251static inline struct hugepage_subpool *subpool_vma(struct vm_area_struct *vma)
252{
Al Viro496ad9a2013-01-23 17:07:38 -0500253 return subpool_inode(file_inode(vma->vm_file));
David Gibson90481622012-03-21 16:34:12 -0700254}
255
Mina Almasry0db9d742020-04-01 21:11:25 -0700256/* Helper that removes a struct file_region from the resv_map cache and returns
257 * it for use.
258 */
259static struct file_region *
260get_file_region_entry_from_cache(struct resv_map *resv, long from, long to)
261{
262 struct file_region *nrg = NULL;
263
264 VM_BUG_ON(resv->region_cache_count <= 0);
265
266 resv->region_cache_count--;
267 nrg = list_first_entry(&resv->region_cache, struct file_region, link);
Mina Almasry0db9d742020-04-01 21:11:25 -0700268 list_del(&nrg->link);
269
270 nrg->from = from;
271 nrg->to = to;
272
273 return nrg;
274}
275
Mina Almasry075a61d2020-04-01 21:11:28 -0700276static void copy_hugetlb_cgroup_uncharge_info(struct file_region *nrg,
277 struct file_region *rg)
278{
279#ifdef CONFIG_CGROUP_HUGETLB
280 nrg->reservation_counter = rg->reservation_counter;
281 nrg->css = rg->css;
282 if (rg->css)
283 css_get(rg->css);
284#endif
285}
286
287/* Helper that records hugetlb_cgroup uncharge info. */
288static void record_hugetlb_cgroup_uncharge_info(struct hugetlb_cgroup *h_cg,
289 struct hstate *h,
290 struct resv_map *resv,
291 struct file_region *nrg)
292{
293#ifdef CONFIG_CGROUP_HUGETLB
294 if (h_cg) {
295 nrg->reservation_counter =
296 &h_cg->rsvd_hugepage[hstate_index(h)];
297 nrg->css = &h_cg->css;
Miaohe Lind85aecf2021-03-24 21:37:17 -0700298 /*
299 * The caller will hold exactly one h_cg->css reference for the
300 * whole contiguous reservation region. But this area might be
301 * scattered when there are already some file_regions reside in
302 * it. As a result, many file_regions may share only one css
303 * reference. In order to ensure that one file_region must hold
304 * exactly one h_cg->css reference, we should do css_get for
305 * each file_region and leave the reference held by caller
306 * untouched.
307 */
308 css_get(&h_cg->css);
Mina Almasry075a61d2020-04-01 21:11:28 -0700309 if (!resv->pages_per_hpage)
310 resv->pages_per_hpage = pages_per_huge_page(h);
311 /* pages_per_hpage should be the same for all entries in
312 * a resv_map.
313 */
314 VM_BUG_ON(resv->pages_per_hpage != pages_per_huge_page(h));
315 } else {
316 nrg->reservation_counter = NULL;
317 nrg->css = NULL;
318 }
319#endif
320}
321
Miaohe Lind85aecf2021-03-24 21:37:17 -0700322static void put_uncharge_info(struct file_region *rg)
323{
324#ifdef CONFIG_CGROUP_HUGETLB
325 if (rg->css)
326 css_put(rg->css);
327#endif
328}
329
Mina Almasrya9b3f862020-04-01 21:11:35 -0700330static bool has_same_uncharge_info(struct file_region *rg,
331 struct file_region *org)
332{
333#ifdef CONFIG_CGROUP_HUGETLB
334 return rg && org &&
335 rg->reservation_counter == org->reservation_counter &&
336 rg->css == org->css;
337
338#else
339 return true;
340#endif
341}
342
343static void coalesce_file_region(struct resv_map *resv, struct file_region *rg)
344{
345 struct file_region *nrg = NULL, *prg = NULL;
346
347 prg = list_prev_entry(rg, link);
348 if (&prg->link != &resv->regions && prg->to == rg->from &&
349 has_same_uncharge_info(prg, rg)) {
350 prg->to = rg->to;
351
352 list_del(&rg->link);
Miaohe Lind85aecf2021-03-24 21:37:17 -0700353 put_uncharge_info(rg);
Mina Almasrya9b3f862020-04-01 21:11:35 -0700354 kfree(rg);
355
Wei Yang7db5e7b2020-10-13 16:56:20 -0700356 rg = prg;
Mina Almasrya9b3f862020-04-01 21:11:35 -0700357 }
358
359 nrg = list_next_entry(rg, link);
360 if (&nrg->link != &resv->regions && nrg->from == rg->to &&
361 has_same_uncharge_info(nrg, rg)) {
362 nrg->from = rg->from;
363
364 list_del(&rg->link);
Miaohe Lind85aecf2021-03-24 21:37:17 -0700365 put_uncharge_info(rg);
Mina Almasrya9b3f862020-04-01 21:11:35 -0700366 kfree(rg);
Mina Almasrya9b3f862020-04-01 21:11:35 -0700367 }
368}
369
Peter Xu2103cf92021-03-12 21:07:18 -0800370static inline long
371hugetlb_resv_map_add(struct resv_map *map, struct file_region *rg, long from,
372 long to, struct hstate *h, struct hugetlb_cgroup *cg,
373 long *regions_needed)
374{
375 struct file_region *nrg;
376
377 if (!regions_needed) {
378 nrg = get_file_region_entry_from_cache(map, from, to);
379 record_hugetlb_cgroup_uncharge_info(cg, h, map, nrg);
380 list_add(&nrg->link, rg->link.prev);
381 coalesce_file_region(map, nrg);
382 } else
383 *regions_needed += 1;
384
385 return to - from;
386}
387
Wei Yang972a3da32020-10-13 16:56:30 -0700388/*
389 * Must be called with resv->lock held.
390 *
391 * Calling this with regions_needed != NULL will count the number of pages
392 * to be added but will not modify the linked list. And regions_needed will
393 * indicate the number of file_regions needed in the cache to carry out to add
394 * the regions for this range.
Mina Almasryd75c6af2019-11-30 17:56:59 -0800395 */
396static long add_reservation_in_range(struct resv_map *resv, long f, long t,
Mina Almasry075a61d2020-04-01 21:11:28 -0700397 struct hugetlb_cgroup *h_cg,
Wei Yang972a3da32020-10-13 16:56:30 -0700398 struct hstate *h, long *regions_needed)
Mina Almasryd75c6af2019-11-30 17:56:59 -0800399{
Mina Almasry0db9d742020-04-01 21:11:25 -0700400 long add = 0;
Mina Almasryd75c6af2019-11-30 17:56:59 -0800401 struct list_head *head = &resv->regions;
Mina Almasry0db9d742020-04-01 21:11:25 -0700402 long last_accounted_offset = f;
Peter Xu2103cf92021-03-12 21:07:18 -0800403 struct file_region *rg = NULL, *trg = NULL;
Mina Almasryd75c6af2019-11-30 17:56:59 -0800404
Mina Almasry0db9d742020-04-01 21:11:25 -0700405 if (regions_needed)
406 *regions_needed = 0;
Mina Almasryd75c6af2019-11-30 17:56:59 -0800407
Mina Almasry0db9d742020-04-01 21:11:25 -0700408 /* In this loop, we essentially handle an entry for the range
409 * [last_accounted_offset, rg->from), at every iteration, with some
410 * bounds checking.
411 */
412 list_for_each_entry_safe(rg, trg, head, link) {
413 /* Skip irrelevant regions that start before our range. */
414 if (rg->from < f) {
415 /* If this region ends after the last accounted offset,
416 * then we need to update last_accounted_offset.
417 */
418 if (rg->to > last_accounted_offset)
419 last_accounted_offset = rg->to;
420 continue;
421 }
Mina Almasryd75c6af2019-11-30 17:56:59 -0800422
Mina Almasry0db9d742020-04-01 21:11:25 -0700423 /* When we find a region that starts beyond our range, we've
424 * finished.
425 */
Peter Xuca7e0452021-03-12 21:07:22 -0800426 if (rg->from >= t)
Mina Almasryd75c6af2019-11-30 17:56:59 -0800427 break;
428
Mina Almasry0db9d742020-04-01 21:11:25 -0700429 /* Add an entry for last_accounted_offset -> rg->from, and
430 * update last_accounted_offset.
Mina Almasryd75c6af2019-11-30 17:56:59 -0800431 */
Peter Xu2103cf92021-03-12 21:07:18 -0800432 if (rg->from > last_accounted_offset)
433 add += hugetlb_resv_map_add(resv, rg,
434 last_accounted_offset,
435 rg->from, h, h_cg,
436 regions_needed);
Mina Almasryd75c6af2019-11-30 17:56:59 -0800437
Mina Almasry0db9d742020-04-01 21:11:25 -0700438 last_accounted_offset = rg->to;
439 }
440
441 /* Handle the case where our range extends beyond
442 * last_accounted_offset.
443 */
Peter Xu2103cf92021-03-12 21:07:18 -0800444 if (last_accounted_offset < t)
445 add += hugetlb_resv_map_add(resv, rg, last_accounted_offset,
446 t, h, h_cg, regions_needed);
Mina Almasry0db9d742020-04-01 21:11:25 -0700447
448 VM_BUG_ON(add < 0);
449 return add;
450}
451
452/* Must be called with resv->lock acquired. Will drop lock to allocate entries.
453 */
454static int allocate_file_region_entries(struct resv_map *resv,
455 int regions_needed)
456 __must_hold(&resv->lock)
457{
458 struct list_head allocated_regions;
459 int to_allocate = 0, i = 0;
460 struct file_region *trg = NULL, *rg = NULL;
461
462 VM_BUG_ON(regions_needed < 0);
463
464 INIT_LIST_HEAD(&allocated_regions);
465
466 /*
467 * Check for sufficient descriptors in the cache to accommodate
468 * the number of in progress add operations plus regions_needed.
469 *
470 * This is a while loop because when we drop the lock, some other call
471 * to region_add or region_del may have consumed some region_entries,
472 * so we keep looping here until we finally have enough entries for
473 * (adds_in_progress + regions_needed).
474 */
475 while (resv->region_cache_count <
476 (resv->adds_in_progress + regions_needed)) {
477 to_allocate = resv->adds_in_progress + regions_needed -
478 resv->region_cache_count;
479
480 /* At this point, we should have enough entries in the cache
Ingo Molnarf0953a12021-05-06 18:06:47 -0700481 * for all the existing adds_in_progress. We should only be
Mina Almasry0db9d742020-04-01 21:11:25 -0700482 * needing to allocate for regions_needed.
483 */
484 VM_BUG_ON(resv->region_cache_count < resv->adds_in_progress);
485
486 spin_unlock(&resv->lock);
487 for (i = 0; i < to_allocate; i++) {
488 trg = kmalloc(sizeof(*trg), GFP_KERNEL);
489 if (!trg)
490 goto out_of_memory;
491 list_add(&trg->link, &allocated_regions);
492 }
493
494 spin_lock(&resv->lock);
495
Wei Yangd3ec7b62020-10-13 16:56:27 -0700496 list_splice(&allocated_regions, &resv->region_cache);
497 resv->region_cache_count += to_allocate;
Mina Almasryd75c6af2019-11-30 17:56:59 -0800498 }
499
Mina Almasry0db9d742020-04-01 21:11:25 -0700500 return 0;
Mina Almasryd75c6af2019-11-30 17:56:59 -0800501
Mina Almasry0db9d742020-04-01 21:11:25 -0700502out_of_memory:
503 list_for_each_entry_safe(rg, trg, &allocated_regions, link) {
504 list_del(&rg->link);
505 kfree(rg);
506 }
507 return -ENOMEM;
Mina Almasryd75c6af2019-11-30 17:56:59 -0800508}
509
Mike Kravetz1dd308a2015-06-24 16:57:52 -0700510/*
511 * Add the huge page range represented by [f, t) to the reserve
Mina Almasry0db9d742020-04-01 21:11:25 -0700512 * map. Regions will be taken from the cache to fill in this range.
513 * Sufficient regions should exist in the cache due to the previous
514 * call to region_chg with the same range, but in some cases the cache will not
515 * have sufficient entries due to races with other code doing region_add or
516 * region_del. The extra needed entries will be allocated.
Mike Kravetzcf3ad202015-06-24 16:57:55 -0700517 *
Mina Almasry0db9d742020-04-01 21:11:25 -0700518 * regions_needed is the out value provided by a previous call to region_chg.
519 *
520 * Return the number of new huge pages added to the map. This number is greater
521 * than or equal to zero. If file_region entries needed to be allocated for
Ethon Paul7c8de352020-06-04 16:49:07 -0700522 * this operation and we were not able to allocate, it returns -ENOMEM.
Mina Almasry0db9d742020-04-01 21:11:25 -0700523 * region_add of regions of length 1 never allocate file_regions and cannot
524 * fail; region_chg will always allocate at least 1 entry and a region_add for
525 * 1 page will only require at most 1 entry.
Mike Kravetz1dd308a2015-06-24 16:57:52 -0700526 */
Mina Almasry0db9d742020-04-01 21:11:25 -0700527static long region_add(struct resv_map *resv, long f, long t,
Mina Almasry075a61d2020-04-01 21:11:28 -0700528 long in_regions_needed, struct hstate *h,
529 struct hugetlb_cgroup *h_cg)
Andy Whitcroft96822902008-07-23 21:27:29 -0700530{
Mina Almasry0db9d742020-04-01 21:11:25 -0700531 long add = 0, actual_regions_needed = 0;
Andy Whitcroft96822902008-07-23 21:27:29 -0700532
Davidlohr Bueso7b24d862014-04-03 14:47:27 -0700533 spin_lock(&resv->lock);
Mina Almasry0db9d742020-04-01 21:11:25 -0700534retry:
535
536 /* Count how many regions are actually needed to execute this add. */
Wei Yang972a3da32020-10-13 16:56:30 -0700537 add_reservation_in_range(resv, f, t, NULL, NULL,
538 &actual_regions_needed);
Andy Whitcroft96822902008-07-23 21:27:29 -0700539
Mike Kravetz5e911372015-09-08 15:01:28 -0700540 /*
Mina Almasry0db9d742020-04-01 21:11:25 -0700541 * Check for sufficient descriptors in the cache to accommodate
542 * this add operation. Note that actual_regions_needed may be greater
543 * than in_regions_needed, as the resv_map may have been modified since
544 * the region_chg call. In this case, we need to make sure that we
545 * allocate extra entries, such that we have enough for all the
546 * existing adds_in_progress, plus the excess needed for this
547 * operation.
Mike Kravetz5e911372015-09-08 15:01:28 -0700548 */
Mina Almasry0db9d742020-04-01 21:11:25 -0700549 if (actual_regions_needed > in_regions_needed &&
550 resv->region_cache_count <
551 resv->adds_in_progress +
552 (actual_regions_needed - in_regions_needed)) {
553 /* region_add operation of range 1 should never need to
554 * allocate file_region entries.
555 */
556 VM_BUG_ON(t - f <= 1);
Mike Kravetz5e911372015-09-08 15:01:28 -0700557
Mina Almasry0db9d742020-04-01 21:11:25 -0700558 if (allocate_file_region_entries(
559 resv, actual_regions_needed - in_regions_needed)) {
560 return -ENOMEM;
561 }
Mike Kravetz5e911372015-09-08 15:01:28 -0700562
Mina Almasry0db9d742020-04-01 21:11:25 -0700563 goto retry;
Mike Kravetz5e911372015-09-08 15:01:28 -0700564 }
565
Wei Yang972a3da32020-10-13 16:56:30 -0700566 add = add_reservation_in_range(resv, f, t, h_cg, h, NULL);
Mike Kravetzcf3ad202015-06-24 16:57:55 -0700567
Mina Almasry0db9d742020-04-01 21:11:25 -0700568 resv->adds_in_progress -= in_regions_needed;
569
Davidlohr Bueso7b24d862014-04-03 14:47:27 -0700570 spin_unlock(&resv->lock);
Mike Kravetzcf3ad202015-06-24 16:57:55 -0700571 return add;
Andy Whitcroft96822902008-07-23 21:27:29 -0700572}
573
Mike Kravetz1dd308a2015-06-24 16:57:52 -0700574/*
575 * Examine the existing reserve map and determine how many
576 * huge pages in the specified range [f, t) are NOT currently
577 * represented. This routine is called before a subsequent
578 * call to region_add that will actually modify the reserve
579 * map to add the specified range [f, t). region_chg does
580 * not change the number of huge pages represented by the
Mina Almasry0db9d742020-04-01 21:11:25 -0700581 * map. A number of new file_region structures is added to the cache as a
582 * placeholder, for the subsequent region_add call to use. At least 1
583 * file_region structure is added.
584 *
585 * out_regions_needed is the number of regions added to the
586 * resv->adds_in_progress. This value needs to be provided to a follow up call
587 * to region_add or region_abort for proper accounting.
Mike Kravetz5e911372015-09-08 15:01:28 -0700588 *
589 * Returns the number of huge pages that need to be added to the existing
590 * reservation map for the range [f, t). This number is greater or equal to
591 * zero. -ENOMEM is returned if a new file_region structure or cache entry
592 * is needed and can not be allocated.
Mike Kravetz1dd308a2015-06-24 16:57:52 -0700593 */
Mina Almasry0db9d742020-04-01 21:11:25 -0700594static long region_chg(struct resv_map *resv, long f, long t,
595 long *out_regions_needed)
Andy Whitcroft96822902008-07-23 21:27:29 -0700596{
Andy Whitcroft96822902008-07-23 21:27:29 -0700597 long chg = 0;
598
Davidlohr Bueso7b24d862014-04-03 14:47:27 -0700599 spin_lock(&resv->lock);
Mike Kravetz5e911372015-09-08 15:01:28 -0700600
Wei Yang972a3da32020-10-13 16:56:30 -0700601 /* Count how many hugepages in this range are NOT represented. */
Mina Almasry075a61d2020-04-01 21:11:28 -0700602 chg = add_reservation_in_range(resv, f, t, NULL, NULL,
Wei Yang972a3da32020-10-13 16:56:30 -0700603 out_regions_needed);
Mike Kravetz5e911372015-09-08 15:01:28 -0700604
Mina Almasry0db9d742020-04-01 21:11:25 -0700605 if (*out_regions_needed == 0)
606 *out_regions_needed = 1;
Mike Kravetz5e911372015-09-08 15:01:28 -0700607
Mina Almasry0db9d742020-04-01 21:11:25 -0700608 if (allocate_file_region_entries(resv, *out_regions_needed))
609 return -ENOMEM;
Mike Kravetz5e911372015-09-08 15:01:28 -0700610
Mina Almasry0db9d742020-04-01 21:11:25 -0700611 resv->adds_in_progress += *out_regions_needed;
Andy Whitcroft96822902008-07-23 21:27:29 -0700612
Davidlohr Bueso7b24d862014-04-03 14:47:27 -0700613 spin_unlock(&resv->lock);
Andy Whitcroft96822902008-07-23 21:27:29 -0700614 return chg;
615}
616
Mike Kravetz1dd308a2015-06-24 16:57:52 -0700617/*
Mike Kravetz5e911372015-09-08 15:01:28 -0700618 * Abort the in progress add operation. The adds_in_progress field
619 * of the resv_map keeps track of the operations in progress between
620 * calls to region_chg and region_add. Operations are sometimes
621 * aborted after the call to region_chg. In such cases, region_abort
Mina Almasry0db9d742020-04-01 21:11:25 -0700622 * is called to decrement the adds_in_progress counter. regions_needed
623 * is the value returned by the region_chg call, it is used to decrement
624 * the adds_in_progress counter.
Mike Kravetz5e911372015-09-08 15:01:28 -0700625 *
626 * NOTE: The range arguments [f, t) are not needed or used in this
627 * routine. They are kept to make reading the calling code easier as
628 * arguments will match the associated region_chg call.
629 */
Mina Almasry0db9d742020-04-01 21:11:25 -0700630static void region_abort(struct resv_map *resv, long f, long t,
631 long regions_needed)
Mike Kravetz5e911372015-09-08 15:01:28 -0700632{
633 spin_lock(&resv->lock);
634 VM_BUG_ON(!resv->region_cache_count);
Mina Almasry0db9d742020-04-01 21:11:25 -0700635 resv->adds_in_progress -= regions_needed;
Mike Kravetz5e911372015-09-08 15:01:28 -0700636 spin_unlock(&resv->lock);
637}
638
639/*
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700640 * Delete the specified range [f, t) from the reserve map. If the
641 * t parameter is LONG_MAX, this indicates that ALL regions after f
642 * should be deleted. Locate the regions which intersect [f, t)
643 * and either trim, delete or split the existing regions.
644 *
645 * Returns the number of huge pages deleted from the reserve map.
646 * In the normal case, the return value is zero or more. In the
647 * case where a region must be split, a new region descriptor must
648 * be allocated. If the allocation fails, -ENOMEM will be returned.
649 * NOTE: If the parameter t == LONG_MAX, then we will never split
650 * a region and possibly return -ENOMEM. Callers specifying
651 * t == LONG_MAX do not need to check for -ENOMEM error.
Mike Kravetz1dd308a2015-06-24 16:57:52 -0700652 */
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700653static long region_del(struct resv_map *resv, long f, long t)
Andy Whitcroft96822902008-07-23 21:27:29 -0700654{
Joonsoo Kim1406ec92014-04-03 14:47:26 -0700655 struct list_head *head = &resv->regions;
Andy Whitcroft96822902008-07-23 21:27:29 -0700656 struct file_region *rg, *trg;
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700657 struct file_region *nrg = NULL;
658 long del = 0;
Andy Whitcroft96822902008-07-23 21:27:29 -0700659
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700660retry:
Davidlohr Bueso7b24d862014-04-03 14:47:27 -0700661 spin_lock(&resv->lock);
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700662 list_for_each_entry_safe(rg, trg, head, link) {
Mike Kravetzdbe409e2015-12-11 13:40:52 -0800663 /*
664 * Skip regions before the range to be deleted. file_region
665 * ranges are normally of the form [from, to). However, there
666 * may be a "placeholder" entry in the map which is of the form
667 * (from, to) with from == to. Check for placeholder entries
668 * at the beginning of the range to be deleted.
669 */
670 if (rg->to <= f && (rg->to != rg->from || rg->to != f))
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700671 continue;
Mike Kravetzdbe409e2015-12-11 13:40:52 -0800672
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700673 if (rg->from >= t)
Andy Whitcroft96822902008-07-23 21:27:29 -0700674 break;
Andy Whitcroft96822902008-07-23 21:27:29 -0700675
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700676 if (f > rg->from && t < rg->to) { /* Must split region */
677 /*
678 * Check for an entry in the cache before dropping
679 * lock and attempting allocation.
680 */
681 if (!nrg &&
682 resv->region_cache_count > resv->adds_in_progress) {
683 nrg = list_first_entry(&resv->region_cache,
684 struct file_region,
685 link);
686 list_del(&nrg->link);
687 resv->region_cache_count--;
688 }
689
690 if (!nrg) {
691 spin_unlock(&resv->lock);
692 nrg = kmalloc(sizeof(*nrg), GFP_KERNEL);
693 if (!nrg)
694 return -ENOMEM;
695 goto retry;
696 }
697
698 del += t - f;
Mike Kravetz79aa9252020-11-01 17:07:27 -0800699 hugetlb_cgroup_uncharge_file_region(
Miaohe Lind85aecf2021-03-24 21:37:17 -0700700 resv, rg, t - f, false);
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700701
702 /* New entry for end of split region */
703 nrg->from = t;
704 nrg->to = rg->to;
Mina Almasry075a61d2020-04-01 21:11:28 -0700705
706 copy_hugetlb_cgroup_uncharge_info(nrg, rg);
707
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700708 INIT_LIST_HEAD(&nrg->link);
709
710 /* Original entry is trimmed */
711 rg->to = f;
712
713 list_add(&nrg->link, &rg->link);
714 nrg = NULL;
715 break;
716 }
717
718 if (f <= rg->from && t >= rg->to) { /* Remove entire region */
719 del += rg->to - rg->from;
Mina Almasry075a61d2020-04-01 21:11:28 -0700720 hugetlb_cgroup_uncharge_file_region(resv, rg,
Miaohe Lind85aecf2021-03-24 21:37:17 -0700721 rg->to - rg->from, true);
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700722 list_del(&rg->link);
723 kfree(rg);
724 continue;
725 }
726
727 if (f <= rg->from) { /* Trim beginning of region */
Mina Almasry075a61d2020-04-01 21:11:28 -0700728 hugetlb_cgroup_uncharge_file_region(resv, rg,
Miaohe Lind85aecf2021-03-24 21:37:17 -0700729 t - rg->from, false);
Mina Almasry075a61d2020-04-01 21:11:28 -0700730
Mike Kravetz79aa9252020-11-01 17:07:27 -0800731 del += t - rg->from;
732 rg->from = t;
733 } else { /* Trim end of region */
Mina Almasry075a61d2020-04-01 21:11:28 -0700734 hugetlb_cgroup_uncharge_file_region(resv, rg,
Miaohe Lind85aecf2021-03-24 21:37:17 -0700735 rg->to - f, false);
Mike Kravetz79aa9252020-11-01 17:07:27 -0800736
737 del += rg->to - f;
738 rg->to = f;
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700739 }
Andy Whitcroft96822902008-07-23 21:27:29 -0700740 }
741
Davidlohr Bueso7b24d862014-04-03 14:47:27 -0700742 spin_unlock(&resv->lock);
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700743 kfree(nrg);
744 return del;
Andy Whitcroft96822902008-07-23 21:27:29 -0700745}
746
Mike Kravetz1dd308a2015-06-24 16:57:52 -0700747/*
Mike Kravetzb5cec282015-09-08 15:01:41 -0700748 * A rare out of memory error was encountered which prevented removal of
749 * the reserve map region for a page. The huge page itself was free'ed
750 * and removed from the page cache. This routine will adjust the subpool
751 * usage count, and the global reserve count if needed. By incrementing
752 * these counts, the reserve map entry which could not be deleted will
753 * appear as a "reserved" entry instead of simply dangling with incorrect
754 * counts.
755 */
zhong jiang72e29362016-10-07 17:02:01 -0700756void hugetlb_fix_reserve_counts(struct inode *inode)
Mike Kravetzb5cec282015-09-08 15:01:41 -0700757{
758 struct hugepage_subpool *spool = subpool_inode(inode);
759 long rsv_adjust;
Miaohe Linda563882021-05-04 18:34:38 -0700760 bool reserved = false;
Mike Kravetzb5cec282015-09-08 15:01:41 -0700761
762 rsv_adjust = hugepage_subpool_get_pages(spool, 1);
Miaohe Linda563882021-05-04 18:34:38 -0700763 if (rsv_adjust > 0) {
Mike Kravetzb5cec282015-09-08 15:01:41 -0700764 struct hstate *h = hstate_inode(inode);
765
Miaohe Linda563882021-05-04 18:34:38 -0700766 if (!hugetlb_acct_memory(h, 1))
767 reserved = true;
768 } else if (!rsv_adjust) {
769 reserved = true;
Mike Kravetzb5cec282015-09-08 15:01:41 -0700770 }
Miaohe Linda563882021-05-04 18:34:38 -0700771
772 if (!reserved)
773 pr_warn("hugetlb: Huge Page Reserved count may go negative.\n");
Mike Kravetzb5cec282015-09-08 15:01:41 -0700774}
775
776/*
Mike Kravetz1dd308a2015-06-24 16:57:52 -0700777 * Count and return the number of huge pages in the reserve map
778 * that intersect with the range [f, t).
779 */
Joonsoo Kim1406ec92014-04-03 14:47:26 -0700780static long region_count(struct resv_map *resv, long f, long t)
Andy Whitcroft84afd992008-07-23 21:27:32 -0700781{
Joonsoo Kim1406ec92014-04-03 14:47:26 -0700782 struct list_head *head = &resv->regions;
Andy Whitcroft84afd992008-07-23 21:27:32 -0700783 struct file_region *rg;
784 long chg = 0;
785
Davidlohr Bueso7b24d862014-04-03 14:47:27 -0700786 spin_lock(&resv->lock);
Andy Whitcroft84afd992008-07-23 21:27:32 -0700787 /* Locate each segment we overlap with, and count that overlap. */
788 list_for_each_entry(rg, head, link) {
Wang Sheng-Huif2135a42012-05-29 15:06:17 -0700789 long seg_from;
790 long seg_to;
Andy Whitcroft84afd992008-07-23 21:27:32 -0700791
792 if (rg->to <= f)
793 continue;
794 if (rg->from >= t)
795 break;
796
797 seg_from = max(rg->from, f);
798 seg_to = min(rg->to, t);
799
800 chg += seg_to - seg_from;
801 }
Davidlohr Bueso7b24d862014-04-03 14:47:27 -0700802 spin_unlock(&resv->lock);
Andy Whitcroft84afd992008-07-23 21:27:32 -0700803
804 return chg;
805}
806
Andy Whitcroft96822902008-07-23 21:27:29 -0700807/*
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700808 * Convert the address within this vma to the page offset within
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700809 * the mapping, in pagecache page units; huge pages here.
810 */
Andi Kleena5516432008-07-23 21:27:41 -0700811static pgoff_t vma_hugecache_offset(struct hstate *h,
812 struct vm_area_struct *vma, unsigned long address)
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700813{
Andi Kleena5516432008-07-23 21:27:41 -0700814 return ((address - vma->vm_start) >> huge_page_shift(h)) +
815 (vma->vm_pgoff >> huge_page_order(h));
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700816}
817
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +0900818pgoff_t linear_hugepage_index(struct vm_area_struct *vma,
819 unsigned long address)
820{
821 return vma_hugecache_offset(hstate_vma(vma), vma, address);
822}
Dan Williamsdee41072016-05-14 12:20:44 -0700823EXPORT_SYMBOL_GPL(linear_hugepage_index);
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +0900824
Andy Whitcroft84afd992008-07-23 21:27:32 -0700825/*
Mel Gorman08fba692009-01-06 14:38:53 -0800826 * Return the size of the pages allocated when backing a VMA. In the majority
827 * cases this will be same size as used by the page table entries.
828 */
829unsigned long vma_kernel_pagesize(struct vm_area_struct *vma)
830{
Dan Williams05ea8862018-04-05 16:24:25 -0700831 if (vma->vm_ops && vma->vm_ops->pagesize)
832 return vma->vm_ops->pagesize(vma);
833 return PAGE_SIZE;
Mel Gorman08fba692009-01-06 14:38:53 -0800834}
Joerg Roedelf340ca02009-06-19 15:16:22 +0200835EXPORT_SYMBOL_GPL(vma_kernel_pagesize);
Mel Gorman08fba692009-01-06 14:38:53 -0800836
837/*
Mel Gorman33402892009-01-06 14:38:54 -0800838 * Return the page size being used by the MMU to back a VMA. In the majority
839 * of cases, the page size used by the kernel matches the MMU size. On
Dan Williams09135cc2018-04-05 16:24:21 -0700840 * architectures where it differs, an architecture-specific 'strong'
841 * version of this symbol is required.
Mel Gorman33402892009-01-06 14:38:54 -0800842 */
Dan Williams09135cc2018-04-05 16:24:21 -0700843__weak unsigned long vma_mmu_pagesize(struct vm_area_struct *vma)
Mel Gorman33402892009-01-06 14:38:54 -0800844{
845 return vma_kernel_pagesize(vma);
846}
Mel Gorman33402892009-01-06 14:38:54 -0800847
848/*
Andy Whitcroft84afd992008-07-23 21:27:32 -0700849 * Flags for MAP_PRIVATE reservations. These are stored in the bottom
850 * bits of the reservation map pointer, which are always clear due to
851 * alignment.
852 */
853#define HPAGE_RESV_OWNER (1UL << 0)
854#define HPAGE_RESV_UNMAPPED (1UL << 1)
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700855#define HPAGE_RESV_MASK (HPAGE_RESV_OWNER | HPAGE_RESV_UNMAPPED)
Andy Whitcroft84afd992008-07-23 21:27:32 -0700856
Mel Gormana1e78772008-07-23 21:27:23 -0700857/*
858 * These helpers are used to track how many pages are reserved for
859 * faults in a MAP_PRIVATE mapping. Only the process that called mmap()
860 * is guaranteed to have their future faults succeed.
861 *
862 * With the exception of reset_vma_resv_huge_pages() which is called at fork(),
863 * the reserve counters are updated with the hugetlb_lock held. It is safe
864 * to reset the VMA at fork() time as it is not in use yet and there is no
865 * chance of the global counters getting corrupted as a result of the values.
Andy Whitcroft84afd992008-07-23 21:27:32 -0700866 *
867 * The private mapping reservation is represented in a subtly different
868 * manner to a shared mapping. A shared mapping has a region map associated
869 * with the underlying file, this region map represents the backing file
870 * pages which have ever had a reservation assigned which this persists even
871 * after the page is instantiated. A private mapping has a region map
872 * associated with the original mmap which is attached to all VMAs which
873 * reference it, this region map represents those offsets which have consumed
874 * reservation ie. where pages have been instantiated.
Mel Gormana1e78772008-07-23 21:27:23 -0700875 */
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700876static unsigned long get_vma_private_data(struct vm_area_struct *vma)
877{
878 return (unsigned long)vma->vm_private_data;
879}
880
881static void set_vma_private_data(struct vm_area_struct *vma,
882 unsigned long value)
883{
884 vma->vm_private_data = (void *)value;
885}
886
Mina Almasrye9fe92a2020-04-01 21:11:21 -0700887static void
888resv_map_set_hugetlb_cgroup_uncharge_info(struct resv_map *resv_map,
889 struct hugetlb_cgroup *h_cg,
890 struct hstate *h)
891{
892#ifdef CONFIG_CGROUP_HUGETLB
893 if (!h_cg || !h) {
894 resv_map->reservation_counter = NULL;
895 resv_map->pages_per_hpage = 0;
896 resv_map->css = NULL;
897 } else {
898 resv_map->reservation_counter =
899 &h_cg->rsvd_hugepage[hstate_index(h)];
900 resv_map->pages_per_hpage = pages_per_huge_page(h);
901 resv_map->css = &h_cg->css;
902 }
903#endif
904}
905
Joonsoo Kim9119a412014-04-03 14:47:25 -0700906struct resv_map *resv_map_alloc(void)
Andy Whitcroft84afd992008-07-23 21:27:32 -0700907{
908 struct resv_map *resv_map = kmalloc(sizeof(*resv_map), GFP_KERNEL);
Mike Kravetz5e911372015-09-08 15:01:28 -0700909 struct file_region *rg = kmalloc(sizeof(*rg), GFP_KERNEL);
910
911 if (!resv_map || !rg) {
912 kfree(resv_map);
913 kfree(rg);
Andy Whitcroft84afd992008-07-23 21:27:32 -0700914 return NULL;
Mike Kravetz5e911372015-09-08 15:01:28 -0700915 }
Andy Whitcroft84afd992008-07-23 21:27:32 -0700916
917 kref_init(&resv_map->refs);
Davidlohr Bueso7b24d862014-04-03 14:47:27 -0700918 spin_lock_init(&resv_map->lock);
Andy Whitcroft84afd992008-07-23 21:27:32 -0700919 INIT_LIST_HEAD(&resv_map->regions);
920
Mike Kravetz5e911372015-09-08 15:01:28 -0700921 resv_map->adds_in_progress = 0;
Mina Almasrye9fe92a2020-04-01 21:11:21 -0700922 /*
923 * Initialize these to 0. On shared mappings, 0's here indicate these
924 * fields don't do cgroup accounting. On private mappings, these will be
925 * re-initialized to the proper values, to indicate that hugetlb cgroup
926 * reservations are to be un-charged from here.
927 */
928 resv_map_set_hugetlb_cgroup_uncharge_info(resv_map, NULL, NULL);
Mike Kravetz5e911372015-09-08 15:01:28 -0700929
930 INIT_LIST_HEAD(&resv_map->region_cache);
931 list_add(&rg->link, &resv_map->region_cache);
932 resv_map->region_cache_count = 1;
933
Andy Whitcroft84afd992008-07-23 21:27:32 -0700934 return resv_map;
935}
936
Joonsoo Kim9119a412014-04-03 14:47:25 -0700937void resv_map_release(struct kref *ref)
Andy Whitcroft84afd992008-07-23 21:27:32 -0700938{
939 struct resv_map *resv_map = container_of(ref, struct resv_map, refs);
Mike Kravetz5e911372015-09-08 15:01:28 -0700940 struct list_head *head = &resv_map->region_cache;
941 struct file_region *rg, *trg;
Andy Whitcroft84afd992008-07-23 21:27:32 -0700942
943 /* Clear out any active regions before we release the map. */
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700944 region_del(resv_map, 0, LONG_MAX);
Mike Kravetz5e911372015-09-08 15:01:28 -0700945
946 /* ... and any entries left in the cache */
947 list_for_each_entry_safe(rg, trg, head, link) {
948 list_del(&rg->link);
949 kfree(rg);
950 }
951
952 VM_BUG_ON(resv_map->adds_in_progress);
953
Andy Whitcroft84afd992008-07-23 21:27:32 -0700954 kfree(resv_map);
955}
956
Joonsoo Kim4e35f482014-04-03 14:47:30 -0700957static inline struct resv_map *inode_resv_map(struct inode *inode)
958{
Mike Kravetzf27a5132019-05-13 17:22:55 -0700959 /*
960 * At inode evict time, i_mapping may not point to the original
961 * address space within the inode. This original address space
962 * contains the pointer to the resv_map. So, always use the
963 * address space embedded within the inode.
964 * The VERY common case is inode->mapping == &inode->i_data but,
965 * this may not be true for device special inodes.
966 */
967 return (struct resv_map *)(&inode->i_data)->private_data;
Joonsoo Kim4e35f482014-04-03 14:47:30 -0700968}
969
Andy Whitcroft84afd992008-07-23 21:27:32 -0700970static struct resv_map *vma_resv_map(struct vm_area_struct *vma)
Mel Gormana1e78772008-07-23 21:27:23 -0700971{
Sasha Levin81d1b092014-10-09 15:28:10 -0700972 VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
Joonsoo Kim4e35f482014-04-03 14:47:30 -0700973 if (vma->vm_flags & VM_MAYSHARE) {
974 struct address_space *mapping = vma->vm_file->f_mapping;
975 struct inode *inode = mapping->host;
976
977 return inode_resv_map(inode);
978
979 } else {
Andy Whitcroft84afd992008-07-23 21:27:32 -0700980 return (struct resv_map *)(get_vma_private_data(vma) &
981 ~HPAGE_RESV_MASK);
Joonsoo Kim4e35f482014-04-03 14:47:30 -0700982 }
Mel Gormana1e78772008-07-23 21:27:23 -0700983}
984
Andy Whitcroft84afd992008-07-23 21:27:32 -0700985static void set_vma_resv_map(struct vm_area_struct *vma, struct resv_map *map)
Mel Gormana1e78772008-07-23 21:27:23 -0700986{
Sasha Levin81d1b092014-10-09 15:28:10 -0700987 VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
988 VM_BUG_ON_VMA(vma->vm_flags & VM_MAYSHARE, vma);
Mel Gormana1e78772008-07-23 21:27:23 -0700989
Andy Whitcroft84afd992008-07-23 21:27:32 -0700990 set_vma_private_data(vma, (get_vma_private_data(vma) &
991 HPAGE_RESV_MASK) | (unsigned long)map);
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700992}
993
994static void set_vma_resv_flags(struct vm_area_struct *vma, unsigned long flags)
995{
Sasha Levin81d1b092014-10-09 15:28:10 -0700996 VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
997 VM_BUG_ON_VMA(vma->vm_flags & VM_MAYSHARE, vma);
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700998
999 set_vma_private_data(vma, get_vma_private_data(vma) | flags);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001000}
1001
1002static int is_vma_resv_set(struct vm_area_struct *vma, unsigned long flag)
1003{
Sasha Levin81d1b092014-10-09 15:28:10 -07001004 VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -07001005
1006 return (get_vma_private_data(vma) & flag) != 0;
Mel Gormana1e78772008-07-23 21:27:23 -07001007}
1008
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001009/* Reset counters to 0 and clear all HPAGE_RESV_* flags */
Mel Gormana1e78772008-07-23 21:27:23 -07001010void reset_vma_resv_huge_pages(struct vm_area_struct *vma)
1011{
Sasha Levin81d1b092014-10-09 15:28:10 -07001012 VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
Mel Gormanf83a2752009-05-28 14:34:40 -07001013 if (!(vma->vm_flags & VM_MAYSHARE))
Mel Gormana1e78772008-07-23 21:27:23 -07001014 vma->vm_private_data = (void *)0;
1015}
1016
1017/* Returns true if the VMA has associated reserve pages */
Nicholas Krause559ec2f2015-09-04 15:48:27 -07001018static bool vma_has_reserves(struct vm_area_struct *vma, long chg)
Mel Gormana1e78772008-07-23 21:27:23 -07001019{
Joonsoo Kimaf0ed732013-09-11 14:21:18 -07001020 if (vma->vm_flags & VM_NORESERVE) {
1021 /*
1022 * This address is already reserved by other process(chg == 0),
1023 * so, we should decrement reserved count. Without decrementing,
1024 * reserve count remains after releasing inode, because this
1025 * allocated page will go into page cache and is regarded as
1026 * coming from reserved pool in releasing step. Currently, we
1027 * don't have any other solution to deal with this situation
1028 * properly, so add work-around here.
1029 */
1030 if (vma->vm_flags & VM_MAYSHARE && chg == 0)
Nicholas Krause559ec2f2015-09-04 15:48:27 -07001031 return true;
Joonsoo Kimaf0ed732013-09-11 14:21:18 -07001032 else
Nicholas Krause559ec2f2015-09-04 15:48:27 -07001033 return false;
Joonsoo Kimaf0ed732013-09-11 14:21:18 -07001034 }
Joonsoo Kima63884e2013-09-11 14:21:07 -07001035
1036 /* Shared mappings always use reserves */
Mike Kravetz1fb1b0e2015-09-08 15:01:44 -07001037 if (vma->vm_flags & VM_MAYSHARE) {
1038 /*
1039 * We know VM_NORESERVE is not set. Therefore, there SHOULD
1040 * be a region map for all pages. The only situation where
1041 * there is no region map is if a hole was punched via
Ethon Paul7c8de352020-06-04 16:49:07 -07001042 * fallocate. In this case, there really are no reserves to
Mike Kravetz1fb1b0e2015-09-08 15:01:44 -07001043 * use. This situation is indicated if chg != 0.
1044 */
1045 if (chg)
1046 return false;
1047 else
1048 return true;
1049 }
Joonsoo Kima63884e2013-09-11 14:21:07 -07001050
1051 /*
1052 * Only the process that called mmap() has reserves for
1053 * private mappings.
1054 */
Mike Kravetz67961f92016-06-08 15:33:42 -07001055 if (is_vma_resv_set(vma, HPAGE_RESV_OWNER)) {
1056 /*
1057 * Like the shared case above, a hole punch or truncate
1058 * could have been performed on the private mapping.
1059 * Examine the value of chg to determine if reserves
1060 * actually exist or were previously consumed.
1061 * Very Subtle - The value of chg comes from a previous
1062 * call to vma_needs_reserves(). The reserve map for
1063 * private mappings has different (opposite) semantics
1064 * than that of shared mappings. vma_needs_reserves()
1065 * has already taken this difference in semantics into
1066 * account. Therefore, the meaning of chg is the same
1067 * as in the shared case above. Code could easily be
1068 * combined, but keeping it separate draws attention to
1069 * subtle differences.
1070 */
1071 if (chg)
1072 return false;
1073 else
1074 return true;
1075 }
Joonsoo Kima63884e2013-09-11 14:21:07 -07001076
Nicholas Krause559ec2f2015-09-04 15:48:27 -07001077 return false;
Mel Gormana1e78772008-07-23 21:27:23 -07001078}
1079
Andi Kleena5516432008-07-23 21:27:41 -07001080static void enqueue_huge_page(struct hstate *h, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081{
1082 int nid = page_to_nid(page);
Mike Kravetz9487ca62021-05-04 18:35:10 -07001083
1084 lockdep_assert_held(&hugetlb_lock);
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07001085 VM_BUG_ON_PAGE(page_count(page), page);
1086
Aneesh Kumar K.V0edaecf2012-07-31 16:42:07 -07001087 list_move(&page->lru, &h->hugepage_freelists[nid]);
Andi Kleena5516432008-07-23 21:27:41 -07001088 h->free_huge_pages++;
1089 h->free_huge_pages_node[nid]++;
Mike Kravetz6c037142021-02-24 12:09:04 -08001090 SetHPageFreed(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091}
1092
Anshuman Khandual94310cb2017-07-06 15:38:38 -07001093static struct page *dequeue_huge_page_node_exact(struct hstate *h, int nid)
Naoya Horiguchibf50bab2010-09-08 10:19:33 +09001094{
1095 struct page *page;
Pavel Tatashin1a08ae32021-05-04 18:38:53 -07001096 bool pin = !!(current->flags & PF_MEMALLOC_PIN);
Naoya Horiguchibf50bab2010-09-08 10:19:33 +09001097
Mike Kravetz9487ca62021-05-04 18:35:10 -07001098 lockdep_assert_held(&hugetlb_lock);
Joonsoo Kimbbe88752020-08-11 18:37:38 -07001099 list_for_each_entry(page, &h->hugepage_freelists[nid], lru) {
Pavel Tatashin8e3560d2021-05-04 18:39:00 -07001100 if (pin && !is_pinnable_page(page))
Joonsoo Kimbbe88752020-08-11 18:37:38 -07001101 continue;
1102
Wei Yang6664bfc2020-10-13 16:56:39 -07001103 if (PageHWPoison(page))
1104 continue;
1105
1106 list_move(&page->lru, &h->hugepage_activelist);
1107 set_page_refcounted(page);
Mike Kravetz6c037142021-02-24 12:09:04 -08001108 ClearHPageFreed(page);
Wei Yang6664bfc2020-10-13 16:56:39 -07001109 h->free_huge_pages--;
1110 h->free_huge_pages_node[nid]--;
1111 return page;
Joonsoo Kimbbe88752020-08-11 18:37:38 -07001112 }
1113
Wei Yang6664bfc2020-10-13 16:56:39 -07001114 return NULL;
Naoya Horiguchibf50bab2010-09-08 10:19:33 +09001115}
1116
Michal Hocko3e59fcb2017-07-10 15:49:11 -07001117static struct page *dequeue_huge_page_nodemask(struct hstate *h, gfp_t gfp_mask, int nid,
1118 nodemask_t *nmask)
Anshuman Khandual94310cb2017-07-06 15:38:38 -07001119{
Michal Hocko3e59fcb2017-07-10 15:49:11 -07001120 unsigned int cpuset_mems_cookie;
1121 struct zonelist *zonelist;
1122 struct zone *zone;
1123 struct zoneref *z;
Anshuman Khandual98fa15f2019-03-05 15:42:58 -08001124 int node = NUMA_NO_NODE;
Anshuman Khandual94310cb2017-07-06 15:38:38 -07001125
Michal Hocko3e59fcb2017-07-10 15:49:11 -07001126 zonelist = node_zonelist(nid, gfp_mask);
Anshuman Khandual94310cb2017-07-06 15:38:38 -07001127
Michal Hocko3e59fcb2017-07-10 15:49:11 -07001128retry_cpuset:
1129 cpuset_mems_cookie = read_mems_allowed_begin();
1130 for_each_zone_zonelist_nodemask(zone, z, zonelist, gfp_zone(gfp_mask), nmask) {
1131 struct page *page;
1132
1133 if (!cpuset_zone_allowed(zone, gfp_mask))
1134 continue;
1135 /*
1136 * no need to ask again on the same node. Pool is node rather than
1137 * zone aware
1138 */
1139 if (zone_to_nid(zone) == node)
1140 continue;
1141 node = zone_to_nid(zone);
1142
Anshuman Khandual94310cb2017-07-06 15:38:38 -07001143 page = dequeue_huge_page_node_exact(h, node);
1144 if (page)
1145 return page;
1146 }
Michal Hocko3e59fcb2017-07-10 15:49:11 -07001147 if (unlikely(read_mems_allowed_retry(cpuset_mems_cookie)))
1148 goto retry_cpuset;
1149
Anshuman Khandual94310cb2017-07-06 15:38:38 -07001150 return NULL;
1151}
1152
Andi Kleena5516432008-07-23 21:27:41 -07001153static struct page *dequeue_huge_page_vma(struct hstate *h,
1154 struct vm_area_struct *vma,
Joonsoo Kimaf0ed732013-09-11 14:21:18 -07001155 unsigned long address, int avoid_reserve,
1156 long chg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157{
Ben Widawskycfcaa662021-09-02 15:00:13 -07001158 struct page *page = NULL;
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001159 struct mempolicy *mpol;
Vlastimil Babka04ec6262017-07-06 15:40:03 -07001160 gfp_t gfp_mask;
Michal Hocko3e59fcb2017-07-10 15:49:11 -07001161 nodemask_t *nodemask;
Vlastimil Babka04ec6262017-07-06 15:40:03 -07001162 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
Mel Gormana1e78772008-07-23 21:27:23 -07001164 /*
1165 * A child process with MAP_PRIVATE mappings created by their parent
1166 * have no page reserves. This check ensures that reservations are
1167 * not "stolen". The child may still get SIGKILLed
1168 */
Joonsoo Kimaf0ed732013-09-11 14:21:18 -07001169 if (!vma_has_reserves(vma, chg) &&
Andi Kleena5516432008-07-23 21:27:41 -07001170 h->free_huge_pages - h->resv_huge_pages == 0)
Miao Xiec0ff7452010-05-24 14:32:08 -07001171 goto err;
Mel Gormana1e78772008-07-23 21:27:23 -07001172
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001173 /* If reserves cannot be used, ensure enough pages are in the pool */
Andi Kleena5516432008-07-23 21:27:41 -07001174 if (avoid_reserve && h->free_huge_pages - h->resv_huge_pages == 0)
Justin P. Mattock6eab04a2011-04-08 19:49:08 -07001175 goto err;
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001176
Vlastimil Babka04ec6262017-07-06 15:40:03 -07001177 gfp_mask = htlb_alloc_mask(h);
1178 nid = huge_node(vma, address, gfp_mask, &mpol, &nodemask);
Ben Widawskycfcaa662021-09-02 15:00:13 -07001179
1180 if (mpol_is_preferred_many(mpol)) {
1181 page = dequeue_huge_page_nodemask(h, gfp_mask, nid, nodemask);
1182
1183 /* Fallback to all nodes if page==NULL */
1184 nodemask = NULL;
1185 }
1186
1187 if (!page)
1188 page = dequeue_huge_page_nodemask(h, gfp_mask, nid, nodemask);
1189
Michal Hocko3e59fcb2017-07-10 15:49:11 -07001190 if (page && !avoid_reserve && vma_has_reserves(vma, chg)) {
Mike Kravetzd6995da2021-02-24 12:08:51 -08001191 SetHPageRestoreReserve(page);
Michal Hocko3e59fcb2017-07-10 15:49:11 -07001192 h->resv_huge_pages--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 }
Mel Gormancc9a6c82012-03-21 16:34:11 -07001194
1195 mpol_cond_put(mpol);
Mel Gormancc9a6c82012-03-21 16:34:11 -07001196 return page;
1197
Miao Xiec0ff7452010-05-24 14:32:08 -07001198err:
Mel Gormancc9a6c82012-03-21 16:34:11 -07001199 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200}
1201
Luiz Capitulino1cac6f22014-06-04 16:07:11 -07001202/*
1203 * common helper functions for hstate_next_node_to_{alloc|free}.
1204 * We may have allocated or freed a huge page based on a different
1205 * nodes_allowed previously, so h->next_node_to_{alloc|free} might
1206 * be outside of *nodes_allowed. Ensure that we use an allowed
1207 * node for alloc or free.
1208 */
1209static int next_node_allowed(int nid, nodemask_t *nodes_allowed)
1210{
Andrew Morton0edaf862016-05-19 17:10:58 -07001211 nid = next_node_in(nid, *nodes_allowed);
Luiz Capitulino1cac6f22014-06-04 16:07:11 -07001212 VM_BUG_ON(nid >= MAX_NUMNODES);
1213
1214 return nid;
1215}
1216
1217static int get_valid_node_allowed(int nid, nodemask_t *nodes_allowed)
1218{
1219 if (!node_isset(nid, *nodes_allowed))
1220 nid = next_node_allowed(nid, nodes_allowed);
1221 return nid;
1222}
1223
1224/*
1225 * returns the previously saved node ["this node"] from which to
1226 * allocate a persistent huge page for the pool and advance the
1227 * next node from which to allocate, handling wrap at end of node
1228 * mask.
1229 */
1230static int hstate_next_node_to_alloc(struct hstate *h,
1231 nodemask_t *nodes_allowed)
1232{
1233 int nid;
1234
1235 VM_BUG_ON(!nodes_allowed);
1236
1237 nid = get_valid_node_allowed(h->next_nid_to_alloc, nodes_allowed);
1238 h->next_nid_to_alloc = next_node_allowed(nid, nodes_allowed);
1239
1240 return nid;
1241}
1242
1243/*
Mike Kravetz10c6ec42021-05-04 18:35:03 -07001244 * helper for remove_pool_huge_page() - return the previously saved
Luiz Capitulino1cac6f22014-06-04 16:07:11 -07001245 * node ["this node"] from which to free a huge page. Advance the
1246 * next node id whether or not we find a free huge page to free so
1247 * that the next attempt to free addresses the next node.
1248 */
1249static int hstate_next_node_to_free(struct hstate *h, nodemask_t *nodes_allowed)
1250{
1251 int nid;
1252
1253 VM_BUG_ON(!nodes_allowed);
1254
1255 nid = get_valid_node_allowed(h->next_nid_to_free, nodes_allowed);
1256 h->next_nid_to_free = next_node_allowed(nid, nodes_allowed);
1257
1258 return nid;
1259}
1260
1261#define for_each_node_mask_to_alloc(hs, nr_nodes, node, mask) \
1262 for (nr_nodes = nodes_weight(*mask); \
1263 nr_nodes > 0 && \
1264 ((node = hstate_next_node_to_alloc(hs, mask)) || 1); \
1265 nr_nodes--)
1266
1267#define for_each_node_mask_to_free(hs, nr_nodes, node, mask) \
1268 for (nr_nodes = nodes_weight(*mask); \
1269 nr_nodes > 0 && \
1270 ((node = hstate_next_node_to_free(hs, mask)) || 1); \
1271 nr_nodes--)
1272
Aneesh Kumar K.Ve1073d12017-07-06 15:39:17 -07001273#ifdef CONFIG_ARCH_HAS_GIGANTIC_PAGE
Mike Kravetz34d9e352021-11-05 13:41:30 -07001274static void __destroy_compound_gigantic_page(struct page *page,
1275 unsigned int order, bool demote)
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001276{
1277 int i;
1278 int nr_pages = 1 << order;
1279 struct page *p = page + 1;
1280
Gerald Schaeferc8cc7082016-06-24 14:50:04 -07001281 atomic_set(compound_mapcount_ptr(page), 0);
Yanfei Xu5291c092021-02-24 12:07:22 -08001282 atomic_set(compound_pincount_ptr(page), 0);
John Hubbard47e29d32020-04-01 21:05:33 -07001283
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001284 for (i = 1; i < nr_pages; i++, p = mem_map_next(p, page, i)) {
Mike Kravetza01f4392021-11-05 13:41:27 -07001285 p->mapping = NULL;
Kirill A. Shutemov1d798ca2015-11-06 16:29:54 -08001286 clear_compound_head(p);
Mike Kravetz34d9e352021-11-05 13:41:30 -07001287 if (!demote)
1288 set_page_refcounted(p);
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001289 }
1290
1291 set_compound_order(page, 0);
Gerald Schaeferba9c1202020-12-11 13:36:53 -08001292 page[1].compound_nr = 0;
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001293 __ClearPageHead(page);
1294}
1295
Mike Kravetz34d9e352021-11-05 13:41:30 -07001296static void destroy_compound_gigantic_page(struct page *page,
1297 unsigned int order)
1298{
1299 __destroy_compound_gigantic_page(page, order, false);
1300}
1301
Kirill A. Shutemovd00181b2015-11-06 16:29:57 -08001302static void free_gigantic_page(struct page *page, unsigned int order)
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001303{
Roman Gushchincf11e852020-04-10 14:32:45 -07001304 /*
1305 * If the page isn't allocated using the cma allocator,
1306 * cma_release() returns false.
1307 */
Barry Songdbda8fe2020-07-23 21:15:30 -07001308#ifdef CONFIG_CMA
1309 if (cma_release(hugetlb_cma[page_to_nid(page)], page, 1 << order))
Roman Gushchincf11e852020-04-10 14:32:45 -07001310 return;
Barry Songdbda8fe2020-07-23 21:15:30 -07001311#endif
Roman Gushchincf11e852020-04-10 14:32:45 -07001312
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001313 free_contig_range(page_to_pfn(page), 1 << order);
1314}
1315
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07001316#ifdef CONFIG_CONTIG_ALLOC
Michal Hockod9cc948f2018-01-31 16:20:44 -08001317static struct page *alloc_gigantic_page(struct hstate *h, gfp_t gfp_mask,
1318 int nid, nodemask_t *nodemask)
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001319{
Miaohe Lin04adbc32021-05-04 18:33:22 -07001320 unsigned long nr_pages = pages_per_huge_page(h);
Li Xinhai953f0642020-09-04 16:36:10 -07001321 if (nid == NUMA_NO_NODE)
1322 nid = numa_mem_id();
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001323
Barry Songdbda8fe2020-07-23 21:15:30 -07001324#ifdef CONFIG_CMA
1325 {
Roman Gushchincf11e852020-04-10 14:32:45 -07001326 struct page *page;
1327 int node;
1328
Li Xinhai953f0642020-09-04 16:36:10 -07001329 if (hugetlb_cma[nid]) {
1330 page = cma_alloc(hugetlb_cma[nid], nr_pages,
1331 huge_page_order(h), true);
Roman Gushchincf11e852020-04-10 14:32:45 -07001332 if (page)
1333 return page;
1334 }
Li Xinhai953f0642020-09-04 16:36:10 -07001335
1336 if (!(gfp_mask & __GFP_THISNODE)) {
1337 for_each_node_mask(node, *nodemask) {
1338 if (node == nid || !hugetlb_cma[node])
1339 continue;
1340
1341 page = cma_alloc(hugetlb_cma[node], nr_pages,
1342 huge_page_order(h), true);
1343 if (page)
1344 return page;
1345 }
1346 }
Roman Gushchincf11e852020-04-10 14:32:45 -07001347 }
Barry Songdbda8fe2020-07-23 21:15:30 -07001348#endif
Roman Gushchincf11e852020-04-10 14:32:45 -07001349
Anshuman Khandual5e27a2d2019-11-30 17:55:06 -08001350 return alloc_contig_pages(nr_pages, gfp_mask, nid, nodemask);
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001351}
1352
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07001353#else /* !CONFIG_CONTIG_ALLOC */
1354static struct page *alloc_gigantic_page(struct hstate *h, gfp_t gfp_mask,
1355 int nid, nodemask_t *nodemask)
1356{
1357 return NULL;
1358}
1359#endif /* CONFIG_CONTIG_ALLOC */
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001360
Aneesh Kumar K.Ve1073d12017-07-06 15:39:17 -07001361#else /* !CONFIG_ARCH_HAS_GIGANTIC_PAGE */
Michal Hockod9cc948f2018-01-31 16:20:44 -08001362static struct page *alloc_gigantic_page(struct hstate *h, gfp_t gfp_mask,
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07001363 int nid, nodemask_t *nodemask)
1364{
1365 return NULL;
1366}
Kirill A. Shutemovd00181b2015-11-06 16:29:57 -08001367static inline void free_gigantic_page(struct page *page, unsigned int order) { }
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001368static inline void destroy_compound_gigantic_page(struct page *page,
Kirill A. Shutemovd00181b2015-11-06 16:29:57 -08001369 unsigned int order) { }
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001370#endif
1371
Mike Kravetz6eb4e882021-05-04 18:34:55 -07001372/*
1373 * Remove hugetlb page from lists, and update dtor so that page appears
Mike Kravetz34d9e352021-11-05 13:41:30 -07001374 * as just a compound page.
1375 *
1376 * A reference is held on the page, except in the case of demote.
Mike Kravetz6eb4e882021-05-04 18:34:55 -07001377 *
1378 * Must be called with hugetlb lock held.
1379 */
Mike Kravetz34d9e352021-11-05 13:41:30 -07001380static void __remove_hugetlb_page(struct hstate *h, struct page *page,
1381 bool adjust_surplus,
1382 bool demote)
Mike Kravetz6eb4e882021-05-04 18:34:55 -07001383{
1384 int nid = page_to_nid(page);
1385
1386 VM_BUG_ON_PAGE(hugetlb_cgroup_from_page(page), page);
1387 VM_BUG_ON_PAGE(hugetlb_cgroup_from_page_rsvd(page), page);
1388
Mike Kravetz9487ca62021-05-04 18:35:10 -07001389 lockdep_assert_held(&hugetlb_lock);
Mike Kravetz6eb4e882021-05-04 18:34:55 -07001390 if (hstate_is_gigantic(h) && !gigantic_page_runtime_supported())
1391 return;
1392
1393 list_del(&page->lru);
1394
1395 if (HPageFreed(page)) {
1396 h->free_huge_pages--;
1397 h->free_huge_pages_node[nid]--;
1398 }
1399 if (adjust_surplus) {
1400 h->surplus_huge_pages--;
1401 h->surplus_huge_pages_node[nid]--;
1402 }
1403
Mike Kravetze32d20c2021-09-02 14:58:50 -07001404 /*
1405 * Very subtle
1406 *
1407 * For non-gigantic pages set the destructor to the normal compound
1408 * page dtor. This is needed in case someone takes an additional
1409 * temporary ref to the page, and freeing is delayed until they drop
1410 * their reference.
1411 *
1412 * For gigantic pages set the destructor to the null dtor. This
1413 * destructor will never be called. Before freeing the gigantic
1414 * page destroy_compound_gigantic_page will turn the compound page
1415 * into a simple group of pages. After this the destructor does not
1416 * apply.
1417 *
1418 * This handles the case where more than one ref is held when and
1419 * after update_and_free_page is called.
Mike Kravetz34d9e352021-11-05 13:41:30 -07001420 *
1421 * In the case of demote we do not ref count the page as it will soon
1422 * be turned into a page of smaller size.
Mike Kravetze32d20c2021-09-02 14:58:50 -07001423 */
Mike Kravetz34d9e352021-11-05 13:41:30 -07001424 if (!demote)
1425 set_page_refcounted(page);
Mike Kravetze32d20c2021-09-02 14:58:50 -07001426 if (hstate_is_gigantic(h))
1427 set_compound_page_dtor(page, NULL_COMPOUND_DTOR);
1428 else
1429 set_compound_page_dtor(page, COMPOUND_PAGE_DTOR);
Mike Kravetz6eb4e882021-05-04 18:34:55 -07001430
1431 h->nr_huge_pages--;
1432 h->nr_huge_pages_node[nid]--;
1433}
1434
Mike Kravetz34d9e352021-11-05 13:41:30 -07001435static void remove_hugetlb_page(struct hstate *h, struct page *page,
1436 bool adjust_surplus)
1437{
1438 __remove_hugetlb_page(h, page, adjust_surplus, false);
1439}
1440
Muchun Songad2fa372021-06-30 18:47:21 -07001441static void add_hugetlb_page(struct hstate *h, struct page *page,
1442 bool adjust_surplus)
1443{
1444 int zeroed;
1445 int nid = page_to_nid(page);
1446
1447 VM_BUG_ON_PAGE(!HPageVmemmapOptimized(page), page);
1448
1449 lockdep_assert_held(&hugetlb_lock);
1450
1451 INIT_LIST_HEAD(&page->lru);
1452 h->nr_huge_pages++;
1453 h->nr_huge_pages_node[nid]++;
1454
1455 if (adjust_surplus) {
1456 h->surplus_huge_pages++;
1457 h->surplus_huge_pages_node[nid]++;
1458 }
1459
1460 set_compound_page_dtor(page, HUGETLB_PAGE_DTOR);
1461 set_page_private(page, 0);
1462 SetHPageVmemmapOptimized(page);
1463
1464 /*
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07001465 * This page is about to be managed by the hugetlb allocator and
1466 * should have no users. Drop our reference, and check for others
1467 * just in case.
Muchun Songad2fa372021-06-30 18:47:21 -07001468 */
1469 zeroed = put_page_testzero(page);
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07001470 if (!zeroed)
1471 /*
1472 * It is VERY unlikely soneone else has taken a ref on
1473 * the page. In this case, we simply return as the
1474 * hugetlb destructor (free_huge_page) will be called
1475 * when this other ref is dropped.
1476 */
1477 return;
1478
Muchun Songad2fa372021-06-30 18:47:21 -07001479 arch_clear_hugepage_flags(page);
1480 enqueue_huge_page(h, page);
1481}
1482
Muchun Songb65d4ad2021-06-30 18:47:17 -07001483static void __update_and_free_page(struct hstate *h, struct page *page)
Adam Litke6af2acb2007-10-16 01:26:16 -07001484{
1485 int i;
Mike Kravetzdbfee5a2021-02-24 12:07:50 -08001486 struct page *subpage = page;
Andi Kleena5516432008-07-23 21:27:41 -07001487
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07001488 if (hstate_is_gigantic(h) && !gigantic_page_runtime_supported())
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001489 return;
Andy Whitcroft18229df2008-11-06 12:53:27 -08001490
Muchun Songad2fa372021-06-30 18:47:21 -07001491 if (alloc_huge_page_vmemmap(h, page)) {
1492 spin_lock_irq(&hugetlb_lock);
1493 /*
1494 * If we cannot allocate vmemmap pages, just refuse to free the
1495 * page and put the page back on the hugetlb free list and treat
1496 * as a surplus page.
1497 */
1498 add_hugetlb_page(h, page, true);
1499 spin_unlock_irq(&hugetlb_lock);
1500 return;
1501 }
1502
Mike Kravetzdbfee5a2021-02-24 12:07:50 -08001503 for (i = 0; i < pages_per_huge_page(h);
1504 i++, subpage = mem_map_next(subpage, page, i)) {
1505 subpage->flags &= ~(1 << PG_locked | 1 << PG_error |
Chris Forbes32f84522011-07-25 17:12:14 -07001506 1 << PG_referenced | 1 << PG_dirty |
Luiz Capitulinoa7407a22014-06-04 16:07:09 -07001507 1 << PG_active | 1 << PG_private |
1508 1 << PG_writeback);
Adam Litke6af2acb2007-10-16 01:26:16 -07001509 }
Mike Kravetza01f4392021-11-05 13:41:27 -07001510
1511 /*
1512 * Non-gigantic pages demoted from CMA allocated gigantic pages
1513 * need to be given back to CMA in free_gigantic_page.
1514 */
1515 if (hstate_is_gigantic(h) ||
1516 hugetlb_cma_page(page, huge_page_order(h))) {
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001517 destroy_compound_gigantic_page(page, huge_page_order(h));
1518 free_gigantic_page(page, huge_page_order(h));
1519 } else {
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001520 __free_pages(page, huge_page_order(h));
1521 }
Adam Litke6af2acb2007-10-16 01:26:16 -07001522}
1523
Muchun Songb65d4ad2021-06-30 18:47:17 -07001524/*
1525 * As update_and_free_page() can be called under any context, so we cannot
1526 * use GFP_KERNEL to allocate vmemmap pages. However, we can defer the
1527 * actual freeing in a workqueue to prevent from using GFP_ATOMIC to allocate
1528 * the vmemmap pages.
1529 *
1530 * free_hpage_workfn() locklessly retrieves the linked list of pages to be
1531 * freed and frees them one-by-one. As the page->mapping pointer is going
1532 * to be cleared in free_hpage_workfn() anyway, it is reused as the llist_node
1533 * structure of a lockless linked list of huge pages to be freed.
1534 */
1535static LLIST_HEAD(hpage_freelist);
1536
1537static void free_hpage_workfn(struct work_struct *work)
1538{
1539 struct llist_node *node;
1540
1541 node = llist_del_all(&hpage_freelist);
1542
1543 while (node) {
1544 struct page *page;
1545 struct hstate *h;
1546
1547 page = container_of((struct address_space **)node,
1548 struct page, mapping);
1549 node = node->next;
1550 page->mapping = NULL;
1551 /*
1552 * The VM_BUG_ON_PAGE(!PageHuge(page), page) in page_hstate()
1553 * is going to trigger because a previous call to
1554 * remove_hugetlb_page() will set_compound_page_dtor(page,
1555 * NULL_COMPOUND_DTOR), so do not use page_hstate() directly.
1556 */
1557 h = size_to_hstate(page_size(page));
1558
1559 __update_and_free_page(h, page);
1560
1561 cond_resched();
1562 }
1563}
1564static DECLARE_WORK(free_hpage_work, free_hpage_workfn);
1565
1566static inline void flush_free_hpage_work(struct hstate *h)
1567{
1568 if (free_vmemmap_pages_per_hpage(h))
1569 flush_work(&free_hpage_work);
1570}
1571
1572static void update_and_free_page(struct hstate *h, struct page *page,
1573 bool atomic)
1574{
Muchun Songad2fa372021-06-30 18:47:21 -07001575 if (!HPageVmemmapOptimized(page) || !atomic) {
Muchun Songb65d4ad2021-06-30 18:47:17 -07001576 __update_and_free_page(h, page);
1577 return;
1578 }
1579
1580 /*
1581 * Defer freeing to avoid using GFP_ATOMIC to allocate vmemmap pages.
1582 *
1583 * Only call schedule_work() if hpage_freelist is previously
1584 * empty. Otherwise, schedule_work() had been called but the workfn
1585 * hasn't retrieved the list yet.
1586 */
1587 if (llist_add((struct llist_node *)&page->mapping, &hpage_freelist))
1588 schedule_work(&free_hpage_work);
1589}
1590
Mike Kravetz10c6ec42021-05-04 18:35:03 -07001591static void update_and_free_pages_bulk(struct hstate *h, struct list_head *list)
1592{
1593 struct page *page, *t_page;
1594
1595 list_for_each_entry_safe(page, t_page, list, lru) {
Muchun Songb65d4ad2021-06-30 18:47:17 -07001596 update_and_free_page(h, page, false);
Mike Kravetz10c6ec42021-05-04 18:35:03 -07001597 cond_resched();
1598 }
1599}
1600
Andi Kleene5ff2152008-07-23 21:27:42 -07001601struct hstate *size_to_hstate(unsigned long size)
1602{
1603 struct hstate *h;
1604
1605 for_each_hstate(h) {
1606 if (huge_page_size(h) == size)
1607 return h;
1608 }
1609 return NULL;
1610}
1611
Mike Kravetzdb71ef72021-05-04 18:35:07 -07001612void free_huge_page(struct page *page)
David Gibson27a85ef2006-03-22 00:08:56 -08001613{
Andi Kleena5516432008-07-23 21:27:41 -07001614 /*
1615 * Can't pass hstate in here because it is called from the
1616 * compound page destructor.
1617 */
Andi Kleene5ff2152008-07-23 21:27:42 -07001618 struct hstate *h = page_hstate(page);
Adam Litke7893d1d2007-10-16 01:26:18 -07001619 int nid = page_to_nid(page);
Mike Kravetzd6995da2021-02-24 12:08:51 -08001620 struct hugepage_subpool *spool = hugetlb_page_subpool(page);
Joonsoo Kim07443a82013-09-11 14:21:58 -07001621 bool restore_reserve;
Mike Kravetzdb71ef72021-05-04 18:35:07 -07001622 unsigned long flags;
David Gibson27a85ef2006-03-22 00:08:56 -08001623
Mike Kravetzb4330af2016-02-05 15:36:38 -08001624 VM_BUG_ON_PAGE(page_count(page), page);
1625 VM_BUG_ON_PAGE(page_mapcount(page), page);
Yongkai Wu8ace22b2018-12-14 14:17:10 -08001626
Mike Kravetzd6995da2021-02-24 12:08:51 -08001627 hugetlb_set_page_subpool(page, NULL);
Yongkai Wu8ace22b2018-12-14 14:17:10 -08001628 page->mapping = NULL;
Mike Kravetzd6995da2021-02-24 12:08:51 -08001629 restore_reserve = HPageRestoreReserve(page);
1630 ClearHPageRestoreReserve(page);
David Gibson27a85ef2006-03-22 00:08:56 -08001631
Mike Kravetz1c5ecae2015-04-15 16:13:39 -07001632 /*
Mike Kravetzd6995da2021-02-24 12:08:51 -08001633 * If HPageRestoreReserve was set on page, page allocation consumed a
Mike Kravetz0919e1b2019-05-13 17:19:38 -07001634 * reservation. If the page was associated with a subpool, there
1635 * would have been a page reserved in the subpool before allocation
1636 * via hugepage_subpool_get_pages(). Since we are 'restoring' the
Miaohe Lin6c26d312021-02-24 12:07:19 -08001637 * reservation, do not call hugepage_subpool_put_pages() as this will
Mike Kravetz0919e1b2019-05-13 17:19:38 -07001638 * remove the reserved page from the subpool.
Mike Kravetz1c5ecae2015-04-15 16:13:39 -07001639 */
Mike Kravetz0919e1b2019-05-13 17:19:38 -07001640 if (!restore_reserve) {
1641 /*
1642 * A return code of zero implies that the subpool will be
1643 * under its minimum size if the reservation is not restored
1644 * after page is free. Therefore, force restore_reserve
1645 * operation.
1646 */
1647 if (hugepage_subpool_put_pages(spool, 1) == 0)
1648 restore_reserve = true;
1649 }
Mike Kravetz1c5ecae2015-04-15 16:13:39 -07001650
Mike Kravetzdb71ef72021-05-04 18:35:07 -07001651 spin_lock_irqsave(&hugetlb_lock, flags);
Mike Kravetz8f251a32021-02-24 12:08:56 -08001652 ClearHPageMigratable(page);
Aneesh Kumar K.V6d76dcf2012-07-31 16:42:18 -07001653 hugetlb_cgroup_uncharge_page(hstate_index(h),
1654 pages_per_huge_page(h), page);
Mina Almasry08cf9fa2020-04-01 21:11:31 -07001655 hugetlb_cgroup_uncharge_page_rsvd(hstate_index(h),
1656 pages_per_huge_page(h), page);
Joonsoo Kim07443a82013-09-11 14:21:58 -07001657 if (restore_reserve)
1658 h->resv_huge_pages++;
1659
Mike Kravetz9157c3112021-02-24 12:09:00 -08001660 if (HPageTemporary(page)) {
Mike Kravetz6eb4e882021-05-04 18:34:55 -07001661 remove_hugetlb_page(h, page, false);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07001662 spin_unlock_irqrestore(&hugetlb_lock, flags);
Muchun Songb65d4ad2021-06-30 18:47:17 -07001663 update_and_free_page(h, page, true);
Michal Hockoab5ac902018-01-31 16:20:48 -08001664 } else if (h->surplus_huge_pages_node[nid]) {
Aneesh Kumar K.V0edaecf2012-07-31 16:42:07 -07001665 /* remove the page from active list */
Mike Kravetz6eb4e882021-05-04 18:34:55 -07001666 remove_hugetlb_page(h, page, true);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07001667 spin_unlock_irqrestore(&hugetlb_lock, flags);
Muchun Songb65d4ad2021-06-30 18:47:17 -07001668 update_and_free_page(h, page, true);
Adam Litke7893d1d2007-10-16 01:26:18 -07001669 } else {
Will Deacon5d3a5512012-10-08 16:29:32 -07001670 arch_clear_hugepage_flags(page);
Andi Kleena5516432008-07-23 21:27:41 -07001671 enqueue_huge_page(h, page);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07001672 spin_unlock_irqrestore(&hugetlb_lock, flags);
Adam Litke7893d1d2007-10-16 01:26:18 -07001673 }
David Gibson27a85ef2006-03-22 00:08:56 -08001674}
1675
Oscar Salvadord3d99fc2021-05-04 18:35:23 -07001676/*
1677 * Must be called with the hugetlb lock held
1678 */
1679static void __prep_account_new_huge_page(struct hstate *h, int nid)
1680{
1681 lockdep_assert_held(&hugetlb_lock);
1682 h->nr_huge_pages++;
1683 h->nr_huge_pages_node[nid]++;
1684}
1685
Muchun Songf41f2ed2021-06-30 18:47:13 -07001686static void __prep_new_huge_page(struct hstate *h, struct page *page)
Andi Kleenb7ba30c2008-07-23 21:27:40 -07001687{
Muchun Songf41f2ed2021-06-30 18:47:13 -07001688 free_huge_page_vmemmap(h, page);
Aneesh Kumar K.V0edaecf2012-07-31 16:42:07 -07001689 INIT_LIST_HEAD(&page->lru);
Kirill A. Shutemovf1e61552015-11-06 16:29:50 -08001690 set_compound_page_dtor(page, HUGETLB_PAGE_DTOR);
Mike Kravetzff546112021-02-24 12:09:11 -08001691 hugetlb_set_page_subpool(page, NULL);
Aneesh Kumar K.V9dd540e2012-07-31 16:42:15 -07001692 set_hugetlb_cgroup(page, NULL);
Mina Almasry1adc4d42020-04-01 21:11:15 -07001693 set_hugetlb_cgroup_rsvd(page, NULL);
Oscar Salvadord3d99fc2021-05-04 18:35:23 -07001694}
1695
1696static void prep_new_huge_page(struct hstate *h, struct page *page, int nid)
1697{
Muchun Songf41f2ed2021-06-30 18:47:13 -07001698 __prep_new_huge_page(h, page);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07001699 spin_lock_irq(&hugetlb_lock);
Oscar Salvadord3d99fc2021-05-04 18:35:23 -07001700 __prep_account_new_huge_page(h, nid);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07001701 spin_unlock_irq(&hugetlb_lock);
Andi Kleenb7ba30c2008-07-23 21:27:40 -07001702}
1703
Mike Kravetz34d9e352021-11-05 13:41:30 -07001704static bool __prep_compound_gigantic_page(struct page *page, unsigned int order,
1705 bool demote)
Wu Fengguang20a03072009-06-16 15:32:22 -07001706{
Mike Kravetz7118fc22021-06-30 18:48:34 -07001707 int i, j;
Wu Fengguang20a03072009-06-16 15:32:22 -07001708 int nr_pages = 1 << order;
1709 struct page *p = page + 1;
1710
1711 /* we rely on prep_new_huge_page to set the destructor */
1712 set_compound_order(page, order);
Andrea Arcangelief5a22b2013-10-16 13:46:56 -07001713 __ClearPageReserved(page);
Kirill A. Shutemovde09d312016-01-15 16:51:42 -08001714 __SetPageHead(page);
Wu Fengguang20a03072009-06-16 15:32:22 -07001715 for (i = 1; i < nr_pages; i++, p = mem_map_next(p, page, i)) {
Andrea Arcangelief5a22b2013-10-16 13:46:56 -07001716 /*
1717 * For gigantic hugepages allocated through bootmem at
1718 * boot, it's safer to be consistent with the not-gigantic
1719 * hugepages and clear the PG_reserved bit from all tail pages
Ethon Paul7c8de352020-06-04 16:49:07 -07001720 * too. Otherwise drivers using get_user_pages() to access tail
Andrea Arcangelief5a22b2013-10-16 13:46:56 -07001721 * pages may get the reference counting wrong if they see
1722 * PG_reserved set on a tail page (despite the head page not
1723 * having PG_reserved set). Enforcing this consistency between
1724 * head and tail pages allows drivers to optimize away a check
1725 * on the head page when they need know if put_page() is needed
1726 * after get_user_pages().
1727 */
1728 __ClearPageReserved(p);
Mike Kravetz7118fc22021-06-30 18:48:34 -07001729 /*
1730 * Subtle and very unlikely
1731 *
1732 * Gigantic 'page allocators' such as memblock or cma will
1733 * return a set of pages with each page ref counted. We need
1734 * to turn this set of pages into a compound page with tail
1735 * page ref counts set to zero. Code such as speculative page
1736 * cache adding could take a ref on a 'to be' tail page.
1737 * We need to respect any increased ref count, and only set
1738 * the ref count to zero if count is currently 1. If count
Mike Kravetz416d85e2021-09-02 14:58:43 -07001739 * is not 1, we return an error. An error return indicates
1740 * the set of pages can not be converted to a gigantic page.
1741 * The caller who allocated the pages should then discard the
1742 * pages using the appropriate free interface.
Mike Kravetz34d9e352021-11-05 13:41:30 -07001743 *
1744 * In the case of demote, the ref count will be zero.
Mike Kravetz7118fc22021-06-30 18:48:34 -07001745 */
Mike Kravetz34d9e352021-11-05 13:41:30 -07001746 if (!demote) {
1747 if (!page_ref_freeze(p, 1)) {
1748 pr_warn("HugeTLB page can not be used due to unexpected inflated ref count\n");
1749 goto out_error;
1750 }
1751 } else {
1752 VM_BUG_ON_PAGE(page_count(p), p);
Mike Kravetz7118fc22021-06-30 18:48:34 -07001753 }
Youquan Song58a84aa2011-12-08 14:34:18 -08001754 set_page_count(p, 0);
Kirill A. Shutemov1d798ca2015-11-06 16:29:54 -08001755 set_compound_head(p, page);
Wu Fengguang20a03072009-06-16 15:32:22 -07001756 }
Mike Kravetzb4330af2016-02-05 15:36:38 -08001757 atomic_set(compound_mapcount_ptr(page), -1);
Yanfei Xu5291c092021-02-24 12:07:22 -08001758 atomic_set(compound_pincount_ptr(page), 0);
Mike Kravetz7118fc22021-06-30 18:48:34 -07001759 return true;
1760
1761out_error:
1762 /* undo tail page modifications made above */
1763 p = page + 1;
1764 for (j = 1; j < i; j++, p = mem_map_next(p, page, j)) {
1765 clear_compound_head(p);
1766 set_page_refcounted(p);
1767 }
1768 /* need to clear PG_reserved on remaining tail pages */
1769 for (; j < nr_pages; j++, p = mem_map_next(p, page, j))
1770 __ClearPageReserved(p);
1771 set_compound_order(page, 0);
1772 page[1].compound_nr = 0;
1773 __ClearPageHead(page);
1774 return false;
Wu Fengguang20a03072009-06-16 15:32:22 -07001775}
1776
Mike Kravetz34d9e352021-11-05 13:41:30 -07001777static bool prep_compound_gigantic_page(struct page *page, unsigned int order)
1778{
1779 return __prep_compound_gigantic_page(page, order, false);
1780}
1781
Andrew Morton77959122012-10-08 16:34:11 -07001782/*
1783 * PageHuge() only returns true for hugetlbfs pages, but not for normal or
1784 * transparent huge pages. See the PageTransHuge() documentation for more
1785 * details.
1786 */
Wu Fengguang20a03072009-06-16 15:32:22 -07001787int PageHuge(struct page *page)
1788{
Wu Fengguang20a03072009-06-16 15:32:22 -07001789 if (!PageCompound(page))
1790 return 0;
1791
1792 page = compound_head(page);
Kirill A. Shutemovf1e61552015-11-06 16:29:50 -08001793 return page[1].compound_dtor == HUGETLB_PAGE_DTOR;
Wu Fengguang20a03072009-06-16 15:32:22 -07001794}
Naoya Horiguchi43131e12010-05-28 09:29:22 +09001795EXPORT_SYMBOL_GPL(PageHuge);
1796
Andrea Arcangeli27c73ae2013-11-21 14:32:02 -08001797/*
1798 * PageHeadHuge() only returns true for hugetlbfs head page, but not for
1799 * normal or transparent huge pages.
1800 */
1801int PageHeadHuge(struct page *page_head)
1802{
Andrea Arcangeli27c73ae2013-11-21 14:32:02 -08001803 if (!PageHead(page_head))
1804 return 0;
1805
Vlastimil Babkad4af73e2020-04-01 21:11:48 -07001806 return page_head[1].compound_dtor == HUGETLB_PAGE_DTOR;
Andrea Arcangeli27c73ae2013-11-21 14:32:02 -08001807}
Andrea Arcangeli27c73ae2013-11-21 14:32:02 -08001808
Mike Kravetzc0d03812020-04-01 21:11:05 -07001809/*
Mike Kravetzc0d03812020-04-01 21:11:05 -07001810 * Find and lock address space (mapping) in write mode.
1811 *
Mike Kravetz336bf302020-11-13 22:52:16 -08001812 * Upon entry, the page is locked which means that page_mapping() is
1813 * stable. Due to locking order, we can only trylock_write. If we can
1814 * not get the lock, simply return NULL to caller.
Mike Kravetzc0d03812020-04-01 21:11:05 -07001815 */
1816struct address_space *hugetlb_page_mapping_lock_write(struct page *hpage)
1817{
Mike Kravetz336bf302020-11-13 22:52:16 -08001818 struct address_space *mapping = page_mapping(hpage);
Mike Kravetzc0d03812020-04-01 21:11:05 -07001819
Mike Kravetzc0d03812020-04-01 21:11:05 -07001820 if (!mapping)
1821 return mapping;
1822
Mike Kravetzc0d03812020-04-01 21:11:05 -07001823 if (i_mmap_trylock_write(mapping))
1824 return mapping;
1825
Mike Kravetz336bf302020-11-13 22:52:16 -08001826 return NULL;
Mike Kravetzc0d03812020-04-01 21:11:05 -07001827}
1828
Hugh Dickinsfe19bd32021-06-24 18:39:52 -07001829pgoff_t hugetlb_basepage_index(struct page *page)
Zhang Yi13d60f42013-06-25 21:19:31 +08001830{
1831 struct page *page_head = compound_head(page);
1832 pgoff_t index = page_index(page_head);
1833 unsigned long compound_idx;
1834
Zhang Yi13d60f42013-06-25 21:19:31 +08001835 if (compound_order(page_head) >= MAX_ORDER)
1836 compound_idx = page_to_pfn(page) - page_to_pfn(page_head);
1837 else
1838 compound_idx = page - page_head;
1839
1840 return (index << compound_order(page_head)) + compound_idx;
1841}
1842
Michal Hocko0c397da2018-01-31 16:20:56 -08001843static struct page *alloc_buddy_huge_page(struct hstate *h,
Mike Kravetzf60858f2019-09-23 15:37:35 -07001844 gfp_t gfp_mask, int nid, nodemask_t *nmask,
1845 nodemask_t *node_alloc_noretry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846{
Michal Hockoaf0fb9d2018-01-31 16:20:41 -08001847 int order = huge_page_order(h);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 struct page *page;
Mike Kravetzf60858f2019-09-23 15:37:35 -07001849 bool alloc_try_hard = true;
Joe Jinf96efd52007-07-15 23:38:12 -07001850
Mike Kravetzf60858f2019-09-23 15:37:35 -07001851 /*
1852 * By default we always try hard to allocate the page with
1853 * __GFP_RETRY_MAYFAIL flag. However, if we are allocating pages in
1854 * a loop (to adjust global huge page counts) and previous allocation
1855 * failed, do not continue to try hard on the same node. Use the
1856 * node_alloc_noretry bitmap to manage this state information.
1857 */
1858 if (node_alloc_noretry && node_isset(nid, *node_alloc_noretry))
1859 alloc_try_hard = false;
1860 gfp_mask |= __GFP_COMP|__GFP_NOWARN;
1861 if (alloc_try_hard)
1862 gfp_mask |= __GFP_RETRY_MAYFAIL;
Michal Hockoaf0fb9d2018-01-31 16:20:41 -08001863 if (nid == NUMA_NO_NODE)
1864 nid = numa_mem_id();
Matthew Wilcox (Oracle)84172f42021-04-29 23:01:15 -07001865 page = __alloc_pages(gfp_mask, order, nid, nmask);
Michal Hockoaf0fb9d2018-01-31 16:20:41 -08001866 if (page)
1867 __count_vm_event(HTLB_BUDDY_PGALLOC);
1868 else
1869 __count_vm_event(HTLB_BUDDY_PGALLOC_FAIL);
Nishanth Aravamudan63b46132007-10-16 01:26:24 -07001870
Mike Kravetzf60858f2019-09-23 15:37:35 -07001871 /*
1872 * If we did not specify __GFP_RETRY_MAYFAIL, but still got a page this
1873 * indicates an overall state change. Clear bit so that we resume
1874 * normal 'try hard' allocations.
1875 */
1876 if (node_alloc_noretry && page && !alloc_try_hard)
1877 node_clear(nid, *node_alloc_noretry);
1878
1879 /*
1880 * If we tried hard to get a page but failed, set bit so that
1881 * subsequent attempts will not try as hard until there is an
1882 * overall state change.
1883 */
1884 if (node_alloc_noretry && !page && alloc_try_hard)
1885 node_set(nid, *node_alloc_noretry);
1886
Nishanth Aravamudan63b46132007-10-16 01:26:24 -07001887 return page;
1888}
1889
Michal Hockoaf0fb9d2018-01-31 16:20:41 -08001890/*
Michal Hocko0c397da2018-01-31 16:20:56 -08001891 * Common helper to allocate a fresh hugetlb page. All specific allocators
1892 * should use this function to get new hugetlb pages
1893 */
1894static struct page *alloc_fresh_huge_page(struct hstate *h,
Mike Kravetzf60858f2019-09-23 15:37:35 -07001895 gfp_t gfp_mask, int nid, nodemask_t *nmask,
1896 nodemask_t *node_alloc_noretry)
Michal Hocko0c397da2018-01-31 16:20:56 -08001897{
1898 struct page *page;
Mike Kravetz7118fc22021-06-30 18:48:34 -07001899 bool retry = false;
Michal Hocko0c397da2018-01-31 16:20:56 -08001900
Mike Kravetz7118fc22021-06-30 18:48:34 -07001901retry:
Michal Hocko0c397da2018-01-31 16:20:56 -08001902 if (hstate_is_gigantic(h))
1903 page = alloc_gigantic_page(h, gfp_mask, nid, nmask);
1904 else
1905 page = alloc_buddy_huge_page(h, gfp_mask,
Mike Kravetzf60858f2019-09-23 15:37:35 -07001906 nid, nmask, node_alloc_noretry);
Michal Hocko0c397da2018-01-31 16:20:56 -08001907 if (!page)
1908 return NULL;
1909
Mike Kravetz7118fc22021-06-30 18:48:34 -07001910 if (hstate_is_gigantic(h)) {
1911 if (!prep_compound_gigantic_page(page, huge_page_order(h))) {
1912 /*
1913 * Rare failure to convert pages to compound page.
1914 * Free pages and try again - ONCE!
1915 */
1916 free_gigantic_page(page, huge_page_order(h));
1917 if (!retry) {
1918 retry = true;
1919 goto retry;
1920 }
Mike Kravetz7118fc22021-06-30 18:48:34 -07001921 return NULL;
1922 }
1923 }
Michal Hocko0c397da2018-01-31 16:20:56 -08001924 prep_new_huge_page(h, page, page_to_nid(page));
1925
1926 return page;
1927}
1928
1929/*
Michal Hockoaf0fb9d2018-01-31 16:20:41 -08001930 * Allocates a fresh page to the hugetlb allocator pool in the node interleaved
1931 * manner.
1932 */
Mike Kravetzf60858f2019-09-23 15:37:35 -07001933static int alloc_pool_huge_page(struct hstate *h, nodemask_t *nodes_allowed,
1934 nodemask_t *node_alloc_noretry)
Joonsoo Kimb2261022013-09-11 14:21:00 -07001935{
1936 struct page *page;
1937 int nr_nodes, node;
Michal Hockoaf0fb9d2018-01-31 16:20:41 -08001938 gfp_t gfp_mask = htlb_alloc_mask(h) | __GFP_THISNODE;
Joonsoo Kimb2261022013-09-11 14:21:00 -07001939
1940 for_each_node_mask_to_alloc(h, nr_nodes, node, nodes_allowed) {
Mike Kravetzf60858f2019-09-23 15:37:35 -07001941 page = alloc_fresh_huge_page(h, gfp_mask, node, nodes_allowed,
1942 node_alloc_noretry);
Michal Hockoaf0fb9d2018-01-31 16:20:41 -08001943 if (page)
Joonsoo Kimb2261022013-09-11 14:21:00 -07001944 break;
Joonsoo Kimb2261022013-09-11 14:21:00 -07001945 }
1946
Michal Hockoaf0fb9d2018-01-31 16:20:41 -08001947 if (!page)
1948 return 0;
Joonsoo Kimb2261022013-09-11 14:21:00 -07001949
Michal Hockoaf0fb9d2018-01-31 16:20:41 -08001950 put_page(page); /* free it into the hugepage allocator */
1951
1952 return 1;
Joonsoo Kimb2261022013-09-11 14:21:00 -07001953}
1954
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07001955/*
Mike Kravetz10c6ec42021-05-04 18:35:03 -07001956 * Remove huge page from pool from next node to free. Attempt to keep
1957 * persistent huge pages more or less balanced over allowed nodes.
1958 * This routine only 'removes' the hugetlb page. The caller must make
1959 * an additional call to free the page to low level allocators.
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07001960 * Called with hugetlb_lock locked.
1961 */
Mike Kravetz10c6ec42021-05-04 18:35:03 -07001962static struct page *remove_pool_huge_page(struct hstate *h,
1963 nodemask_t *nodes_allowed,
1964 bool acct_surplus)
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07001965{
Joonsoo Kimb2261022013-09-11 14:21:00 -07001966 int nr_nodes, node;
Mike Kravetz10c6ec42021-05-04 18:35:03 -07001967 struct page *page = NULL;
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07001968
Mike Kravetz9487ca62021-05-04 18:35:10 -07001969 lockdep_assert_held(&hugetlb_lock);
Joonsoo Kimb2261022013-09-11 14:21:00 -07001970 for_each_node_mask_to_free(h, nr_nodes, node, nodes_allowed) {
Lee Schermerhorn685f3452009-09-21 17:01:23 -07001971 /*
1972 * If we're returning unused surplus pages, only examine
1973 * nodes with surplus pages.
1974 */
Joonsoo Kimb2261022013-09-11 14:21:00 -07001975 if ((!acct_surplus || h->surplus_huge_pages_node[node]) &&
1976 !list_empty(&h->hugepage_freelists[node])) {
Mike Kravetz10c6ec42021-05-04 18:35:03 -07001977 page = list_entry(h->hugepage_freelists[node].next,
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07001978 struct page, lru);
Mike Kravetz6eb4e882021-05-04 18:34:55 -07001979 remove_hugetlb_page(h, page, acct_surplus);
Lee Schermerhorn9a76db02009-12-14 17:58:15 -08001980 break;
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07001981 }
Joonsoo Kimb2261022013-09-11 14:21:00 -07001982 }
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07001983
Mike Kravetz10c6ec42021-05-04 18:35:03 -07001984 return page;
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07001985}
1986
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001987/*
1988 * Dissolve a given free hugepage into free buddy pages. This function does
Naoya Horiguchifaf53de2019-06-28 12:06:56 -07001989 * nothing for in-use hugepages and non-hugepages.
1990 * This function returns values like below:
1991 *
Muchun Songad2fa372021-06-30 18:47:21 -07001992 * -ENOMEM: failed to allocate vmemmap pages to free the freed hugepages
1993 * when the system is under memory pressure and the feature of
1994 * freeing unused vmemmap pages associated with each hugetlb page
1995 * is enabled.
1996 * -EBUSY: failed to dissolved free hugepages or the hugepage is in-use
1997 * (allocated or reserved.)
1998 * 0: successfully dissolved free hugepages or the page is not a
1999 * hugepage (considered as already dissolved)
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07002000 */
Anshuman Khandualc3114a82017-07-10 15:47:41 -07002001int dissolve_free_huge_page(struct page *page)
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07002002{
Naoya Horiguchi6bc9b562018-08-23 17:00:38 -07002003 int rc = -EBUSY;
Gerald Schaefer082d5b62016-10-07 17:01:10 -07002004
Muchun Song7ffddd42021-02-04 18:32:06 -08002005retry:
Naoya Horiguchifaf53de2019-06-28 12:06:56 -07002006 /* Not to disrupt normal path by vainly holding hugetlb_lock */
2007 if (!PageHuge(page))
2008 return 0;
2009
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002010 spin_lock_irq(&hugetlb_lock);
Naoya Horiguchifaf53de2019-06-28 12:06:56 -07002011 if (!PageHuge(page)) {
2012 rc = 0;
2013 goto out;
2014 }
2015
2016 if (!page_count(page)) {
Gerald Schaefer2247bb32016-10-07 17:01:07 -07002017 struct page *head = compound_head(page);
2018 struct hstate *h = page_hstate(head);
Naoya Horiguchi6bc9b562018-08-23 17:00:38 -07002019 if (h->free_huge_pages - h->resv_huge_pages == 0)
Gerald Schaefer082d5b62016-10-07 17:01:10 -07002020 goto out;
Muchun Song7ffddd42021-02-04 18:32:06 -08002021
2022 /*
2023 * We should make sure that the page is already on the free list
2024 * when it is dissolved.
2025 */
Mike Kravetz6c037142021-02-24 12:09:04 -08002026 if (unlikely(!HPageFreed(head))) {
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002027 spin_unlock_irq(&hugetlb_lock);
Muchun Song7ffddd42021-02-04 18:32:06 -08002028 cond_resched();
2029
2030 /*
2031 * Theoretically, we should return -EBUSY when we
2032 * encounter this race. In fact, we have a chance
2033 * to successfully dissolve the page if we do a
2034 * retry. Because the race window is quite small.
2035 * If we seize this opportunity, it is an optimization
2036 * for increasing the success rate of dissolving page.
2037 */
2038 goto retry;
2039 }
2040
Naoya Horiguchi0c5da352021-06-04 20:01:27 -07002041 remove_hugetlb_page(h, head, false);
zhong jiangc1470b32016-08-11 15:32:55 -07002042 h->max_huge_pages--;
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002043 spin_unlock_irq(&hugetlb_lock);
Muchun Songad2fa372021-06-30 18:47:21 -07002044
2045 /*
2046 * Normally update_and_free_page will allocate required vmemmmap
2047 * before freeing the page. update_and_free_page will fail to
2048 * free the page if it can not allocate required vmemmap. We
2049 * need to adjust max_huge_pages if the page is not freed.
2050 * Attempt to allocate vmemmmap here so that we can take
2051 * appropriate action on failure.
2052 */
2053 rc = alloc_huge_page_vmemmap(h, head);
2054 if (!rc) {
2055 /*
2056 * Move PageHWPoison flag from head page to the raw
2057 * error page, which makes any subpages rather than
2058 * the error page reusable.
2059 */
2060 if (PageHWPoison(head) && page != head) {
2061 SetPageHWPoison(page);
2062 ClearPageHWPoison(head);
2063 }
2064 update_and_free_page(h, head, false);
2065 } else {
2066 spin_lock_irq(&hugetlb_lock);
2067 add_hugetlb_page(h, head, false);
2068 h->max_huge_pages++;
2069 spin_unlock_irq(&hugetlb_lock);
2070 }
2071
2072 return rc;
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07002073 }
Gerald Schaefer082d5b62016-10-07 17:01:10 -07002074out:
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002075 spin_unlock_irq(&hugetlb_lock);
Gerald Schaefer082d5b62016-10-07 17:01:10 -07002076 return rc;
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07002077}
2078
2079/*
2080 * Dissolve free hugepages in a given pfn range. Used by memory hotplug to
2081 * make specified memory blocks removable from the system.
Gerald Schaefer2247bb32016-10-07 17:01:07 -07002082 * Note that this will dissolve a free gigantic hugepage completely, if any
2083 * part of it lies within the given range.
Gerald Schaefer082d5b62016-10-07 17:01:10 -07002084 * Also note that if dissolve_free_huge_page() returns with an error, all
2085 * free hugepages that were dissolved before that error are lost.
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07002086 */
Gerald Schaefer082d5b62016-10-07 17:01:10 -07002087int dissolve_free_huge_pages(unsigned long start_pfn, unsigned long end_pfn)
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07002088{
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07002089 unsigned long pfn;
Gerald Schaefereb03aa02016-10-07 17:01:13 -07002090 struct page *page;
Gerald Schaefer082d5b62016-10-07 17:01:10 -07002091 int rc = 0;
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07002092
Li Zhongd0177632014-08-06 16:07:56 -07002093 if (!hugepages_supported())
Gerald Schaefer082d5b62016-10-07 17:01:10 -07002094 return rc;
Li Zhongd0177632014-08-06 16:07:56 -07002095
Gerald Schaefereb03aa02016-10-07 17:01:13 -07002096 for (pfn = start_pfn; pfn < end_pfn; pfn += 1 << minimum_order) {
2097 page = pfn_to_page(pfn);
Naoya Horiguchifaf53de2019-06-28 12:06:56 -07002098 rc = dissolve_free_huge_page(page);
2099 if (rc)
2100 break;
Gerald Schaefereb03aa02016-10-07 17:01:13 -07002101 }
Gerald Schaefer082d5b62016-10-07 17:01:10 -07002102
2103 return rc;
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07002104}
2105
Michal Hockoab5ac902018-01-31 16:20:48 -08002106/*
2107 * Allocates a fresh surplus page from the page allocator.
2108 */
Michal Hocko0c397da2018-01-31 16:20:56 -08002109static struct page *alloc_surplus_huge_page(struct hstate *h, gfp_t gfp_mask,
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002110 int nid, nodemask_t *nmask, bool zero_ref)
Adam Litke7893d1d2007-10-16 01:26:18 -07002111{
Michal Hocko9980d742018-01-31 16:20:52 -08002112 struct page *page = NULL;
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002113 bool retry = false;
Adam Litke7893d1d2007-10-16 01:26:18 -07002114
Luiz Capitulinobae7f4a2014-06-04 16:07:08 -07002115 if (hstate_is_gigantic(h))
Andi Kleenaa888a72008-07-23 21:27:47 -07002116 return NULL;
2117
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002118 spin_lock_irq(&hugetlb_lock);
Michal Hocko9980d742018-01-31 16:20:52 -08002119 if (h->surplus_huge_pages >= h->nr_overcommit_huge_pages)
2120 goto out_unlock;
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002121 spin_unlock_irq(&hugetlb_lock);
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08002122
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002123retry:
Mike Kravetzf60858f2019-09-23 15:37:35 -07002124 page = alloc_fresh_huge_page(h, gfp_mask, nid, nmask, NULL);
Michal Hocko9980d742018-01-31 16:20:52 -08002125 if (!page)
Michal Hocko0c397da2018-01-31 16:20:56 -08002126 return NULL;
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08002127
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002128 spin_lock_irq(&hugetlb_lock);
Michal Hocko9980d742018-01-31 16:20:52 -08002129 /*
2130 * We could have raced with the pool size change.
2131 * Double check that and simply deallocate the new page
2132 * if we would end up overcommiting the surpluses. Abuse
2133 * temporary page to workaround the nasty free_huge_page
2134 * codeflow
2135 */
2136 if (h->surplus_huge_pages >= h->nr_overcommit_huge_pages) {
Mike Kravetz9157c3112021-02-24 12:09:00 -08002137 SetHPageTemporary(page);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002138 spin_unlock_irq(&hugetlb_lock);
Michal Hocko9980d742018-01-31 16:20:52 -08002139 put_page(page);
Kai Shen2bf753e2019-05-13 17:15:37 -07002140 return NULL;
Adam Litke7893d1d2007-10-16 01:26:18 -07002141 }
Michal Hocko9980d742018-01-31 16:20:52 -08002142
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002143 if (zero_ref) {
2144 /*
2145 * Caller requires a page with zero ref count.
2146 * We will drop ref count here. If someone else is holding
2147 * a ref, the page will be freed when they drop it. Abuse
2148 * temporary page flag to accomplish this.
2149 */
2150 SetHPageTemporary(page);
2151 if (!put_page_testzero(page)) {
2152 /*
2153 * Unexpected inflated ref count on freshly allocated
2154 * huge. Retry once.
2155 */
2156 pr_info("HugeTLB unexpected inflated ref count on freshly allocated page\n");
2157 spin_unlock_irq(&hugetlb_lock);
2158 if (retry)
2159 return NULL;
2160
2161 retry = true;
2162 goto retry;
2163 }
2164 ClearHPageTemporary(page);
2165 }
2166
2167 h->surplus_huge_pages++;
2168 h->surplus_huge_pages_node[page_to_nid(page)]++;
2169
Michal Hocko9980d742018-01-31 16:20:52 -08002170out_unlock:
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002171 spin_unlock_irq(&hugetlb_lock);
Adam Litke7893d1d2007-10-16 01:26:18 -07002172
2173 return page;
2174}
2175
Joonsoo Kimbbe88752020-08-11 18:37:38 -07002176static struct page *alloc_migrate_huge_page(struct hstate *h, gfp_t gfp_mask,
Aneesh Kumar K.V9a4e9f32019-03-05 15:47:44 -08002177 int nid, nodemask_t *nmask)
Michal Hockoab5ac902018-01-31 16:20:48 -08002178{
2179 struct page *page;
2180
2181 if (hstate_is_gigantic(h))
2182 return NULL;
2183
Mike Kravetzf60858f2019-09-23 15:37:35 -07002184 page = alloc_fresh_huge_page(h, gfp_mask, nid, nmask, NULL);
Michal Hockoab5ac902018-01-31 16:20:48 -08002185 if (!page)
2186 return NULL;
2187
2188 /*
2189 * We do not account these pages as surplus because they are only
2190 * temporary and will be released properly on the last reference
2191 */
Mike Kravetz9157c3112021-02-24 12:09:00 -08002192 SetHPageTemporary(page);
Michal Hockoab5ac902018-01-31 16:20:48 -08002193
2194 return page;
2195}
2196
Adam Litkee4e574b2007-10-16 01:26:19 -07002197/*
Dave Hansen099730d2015-11-05 18:50:17 -08002198 * Use the VMA's mpolicy to allocate a huge page from the buddy.
2199 */
Dave Hansene0ec90e2015-11-05 18:50:20 -08002200static
Michal Hocko0c397da2018-01-31 16:20:56 -08002201struct page *alloc_buddy_huge_page_with_mpol(struct hstate *h,
Dave Hansen099730d2015-11-05 18:50:17 -08002202 struct vm_area_struct *vma, unsigned long addr)
2203{
Ben Widawskycfcaa662021-09-02 15:00:13 -07002204 struct page *page = NULL;
Michal Hockoaaf14e42017-07-10 15:49:08 -07002205 struct mempolicy *mpol;
2206 gfp_t gfp_mask = htlb_alloc_mask(h);
2207 int nid;
2208 nodemask_t *nodemask;
2209
2210 nid = huge_node(vma, addr, gfp_mask, &mpol, &nodemask);
Ben Widawskycfcaa662021-09-02 15:00:13 -07002211 if (mpol_is_preferred_many(mpol)) {
2212 gfp_t gfp = gfp_mask | __GFP_NOWARN;
Michal Hockoaaf14e42017-07-10 15:49:08 -07002213
Ben Widawskycfcaa662021-09-02 15:00:13 -07002214 gfp &= ~(__GFP_DIRECT_RECLAIM | __GFP_NOFAIL);
2215 page = alloc_surplus_huge_page(h, gfp, nid, nodemask, false);
2216
2217 /* Fallback to all nodes if page==NULL */
2218 nodemask = NULL;
2219 }
2220
2221 if (!page)
2222 page = alloc_surplus_huge_page(h, gfp_mask, nid, nodemask, false);
2223 mpol_cond_put(mpol);
Michal Hockoaaf14e42017-07-10 15:49:08 -07002224 return page;
Dave Hansen099730d2015-11-05 18:50:17 -08002225}
2226
Michal Hockoab5ac902018-01-31 16:20:48 -08002227/* page migration callback function */
Michal Hocko3e59fcb2017-07-10 15:49:11 -07002228struct page *alloc_huge_page_nodemask(struct hstate *h, int preferred_nid,
Joonsoo Kimd92bbc22020-08-11 18:37:17 -07002229 nodemask_t *nmask, gfp_t gfp_mask)
Michal Hocko4db9b2e2017-07-10 15:48:44 -07002230{
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002231 spin_lock_irq(&hugetlb_lock);
Michal Hocko4db9b2e2017-07-10 15:48:44 -07002232 if (h->free_huge_pages - h->resv_huge_pages > 0) {
Michal Hocko3e59fcb2017-07-10 15:49:11 -07002233 struct page *page;
2234
2235 page = dequeue_huge_page_nodemask(h, gfp_mask, preferred_nid, nmask);
2236 if (page) {
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002237 spin_unlock_irq(&hugetlb_lock);
Michal Hocko3e59fcb2017-07-10 15:49:11 -07002238 return page;
Michal Hocko4db9b2e2017-07-10 15:48:44 -07002239 }
2240 }
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002241 spin_unlock_irq(&hugetlb_lock);
Michal Hocko4db9b2e2017-07-10 15:48:44 -07002242
Michal Hocko0c397da2018-01-31 16:20:56 -08002243 return alloc_migrate_huge_page(h, gfp_mask, preferred_nid, nmask);
Michal Hocko4db9b2e2017-07-10 15:48:44 -07002244}
2245
Michal Hockoebd63722018-01-31 16:21:00 -08002246/* mempolicy aware migration callback */
Michal Hocko389c8172018-01-31 16:21:03 -08002247struct page *alloc_huge_page_vma(struct hstate *h, struct vm_area_struct *vma,
2248 unsigned long address)
Michal Hockoebd63722018-01-31 16:21:00 -08002249{
2250 struct mempolicy *mpol;
2251 nodemask_t *nodemask;
2252 struct page *page;
Michal Hockoebd63722018-01-31 16:21:00 -08002253 gfp_t gfp_mask;
2254 int node;
2255
Michal Hockoebd63722018-01-31 16:21:00 -08002256 gfp_mask = htlb_alloc_mask(h);
2257 node = huge_node(vma, address, gfp_mask, &mpol, &nodemask);
Joonsoo Kimd92bbc22020-08-11 18:37:17 -07002258 page = alloc_huge_page_nodemask(h, node, nodemask, gfp_mask);
Michal Hockoebd63722018-01-31 16:21:00 -08002259 mpol_cond_put(mpol);
2260
2261 return page;
2262}
2263
Naoya Horiguchibf50bab2010-09-08 10:19:33 +09002264/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002265 * Increase the hugetlb pool such that it can accommodate a reservation
Adam Litkee4e574b2007-10-16 01:26:19 -07002266 * of size 'delta'.
2267 */
Liu Xiang0a4f3d12020-12-14 19:12:05 -08002268static int gather_surplus_pages(struct hstate *h, long delta)
Jules Irenge1b2a1e72020-04-06 20:08:09 -07002269 __must_hold(&hugetlb_lock)
Adam Litkee4e574b2007-10-16 01:26:19 -07002270{
2271 struct list_head surplus_list;
2272 struct page *page, *tmp;
Liu Xiang0a4f3d12020-12-14 19:12:05 -08002273 int ret;
2274 long i;
2275 long needed, allocated;
Hillf Danton28073b02012-03-21 16:34:00 -07002276 bool alloc_ok = true;
Adam Litkee4e574b2007-10-16 01:26:19 -07002277
Mike Kravetz9487ca62021-05-04 18:35:10 -07002278 lockdep_assert_held(&hugetlb_lock);
Andi Kleena5516432008-07-23 21:27:41 -07002279 needed = (h->resv_huge_pages + delta) - h->free_huge_pages;
Adam Litkeac09b3a2008-03-04 14:29:38 -08002280 if (needed <= 0) {
Andi Kleena5516432008-07-23 21:27:41 -07002281 h->resv_huge_pages += delta;
Adam Litkee4e574b2007-10-16 01:26:19 -07002282 return 0;
Adam Litkeac09b3a2008-03-04 14:29:38 -08002283 }
Adam Litkee4e574b2007-10-16 01:26:19 -07002284
2285 allocated = 0;
2286 INIT_LIST_HEAD(&surplus_list);
2287
2288 ret = -ENOMEM;
2289retry:
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002290 spin_unlock_irq(&hugetlb_lock);
Adam Litkee4e574b2007-10-16 01:26:19 -07002291 for (i = 0; i < needed; i++) {
Michal Hocko0c397da2018-01-31 16:20:56 -08002292 page = alloc_surplus_huge_page(h, htlb_alloc_mask(h),
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002293 NUMA_NO_NODE, NULL, true);
Hillf Danton28073b02012-03-21 16:34:00 -07002294 if (!page) {
2295 alloc_ok = false;
2296 break;
2297 }
Adam Litkee4e574b2007-10-16 01:26:19 -07002298 list_add(&page->lru, &surplus_list);
David Rientjes69ed7792017-07-10 15:48:50 -07002299 cond_resched();
Adam Litkee4e574b2007-10-16 01:26:19 -07002300 }
Hillf Danton28073b02012-03-21 16:34:00 -07002301 allocated += i;
Adam Litkee4e574b2007-10-16 01:26:19 -07002302
2303 /*
2304 * After retaking hugetlb_lock, we need to recalculate 'needed'
2305 * because either resv_huge_pages or free_huge_pages may have changed.
2306 */
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002307 spin_lock_irq(&hugetlb_lock);
Andi Kleena5516432008-07-23 21:27:41 -07002308 needed = (h->resv_huge_pages + delta) -
2309 (h->free_huge_pages + allocated);
Hillf Danton28073b02012-03-21 16:34:00 -07002310 if (needed > 0) {
2311 if (alloc_ok)
2312 goto retry;
2313 /*
2314 * We were not able to allocate enough pages to
2315 * satisfy the entire reservation so we free what
2316 * we've allocated so far.
2317 */
2318 goto free;
2319 }
Adam Litkee4e574b2007-10-16 01:26:19 -07002320 /*
2321 * The surplus_list now contains _at_least_ the number of extra pages
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002322 * needed to accommodate the reservation. Add the appropriate number
Adam Litkee4e574b2007-10-16 01:26:19 -07002323 * of pages to the hugetlb pool and free the extras back to the buddy
Adam Litkeac09b3a2008-03-04 14:29:38 -08002324 * allocator. Commit the entire reservation here to prevent another
2325 * process from stealing the pages as they are added to the pool but
2326 * before they are reserved.
Adam Litkee4e574b2007-10-16 01:26:19 -07002327 */
2328 needed += allocated;
Andi Kleena5516432008-07-23 21:27:41 -07002329 h->resv_huge_pages += delta;
Adam Litkee4e574b2007-10-16 01:26:19 -07002330 ret = 0;
Naoya Horiguchia9869b82010-09-08 10:19:37 +09002331
Adam Litke19fc3f02008-04-28 02:12:20 -07002332 /* Free the needed pages to the hugetlb pool */
Adam Litkee4e574b2007-10-16 01:26:19 -07002333 list_for_each_entry_safe(page, tmp, &surplus_list, lru) {
Adam Litke19fc3f02008-04-28 02:12:20 -07002334 if ((--needed) < 0)
2335 break;
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002336 /* Add the page to the hugetlb allocator */
Andi Kleena5516432008-07-23 21:27:41 -07002337 enqueue_huge_page(h, page);
Adam Litke19fc3f02008-04-28 02:12:20 -07002338 }
Hillf Danton28073b02012-03-21 16:34:00 -07002339free:
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002340 spin_unlock_irq(&hugetlb_lock);
Adam Litke19fc3f02008-04-28 02:12:20 -07002341
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002342 /*
2343 * Free unnecessary surplus pages to the buddy allocator.
2344 * Pages have no ref count, call free_huge_page directly.
2345 */
Joonsoo Kimc0d934b2013-09-11 14:21:02 -07002346 list_for_each_entry_safe(page, tmp, &surplus_list, lru)
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002347 free_huge_page(page);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002348 spin_lock_irq(&hugetlb_lock);
Adam Litkee4e574b2007-10-16 01:26:19 -07002349
2350 return ret;
2351}
2352
2353/*
Mike Kravetze5bbc8a2017-01-10 16:58:27 -08002354 * This routine has two main purposes:
2355 * 1) Decrement the reservation count (resv_huge_pages) by the value passed
2356 * in unused_resv_pages. This corresponds to the prior adjustments made
2357 * to the associated reservation map.
2358 * 2) Free any unused surplus pages that may have been allocated to satisfy
2359 * the reservation. As many as unused_resv_pages may be freed.
Adam Litkee4e574b2007-10-16 01:26:19 -07002360 */
Andi Kleena5516432008-07-23 21:27:41 -07002361static void return_unused_surplus_pages(struct hstate *h,
2362 unsigned long unused_resv_pages)
Adam Litkee4e574b2007-10-16 01:26:19 -07002363{
Adam Litkee4e574b2007-10-16 01:26:19 -07002364 unsigned long nr_pages;
Mike Kravetz10c6ec42021-05-04 18:35:03 -07002365 struct page *page;
2366 LIST_HEAD(page_list);
2367
Mike Kravetz9487ca62021-05-04 18:35:10 -07002368 lockdep_assert_held(&hugetlb_lock);
Mike Kravetz10c6ec42021-05-04 18:35:03 -07002369 /* Uncommit the reservation */
2370 h->resv_huge_pages -= unused_resv_pages;
Adam Litkee4e574b2007-10-16 01:26:19 -07002371
Andi Kleenaa888a72008-07-23 21:27:47 -07002372 /* Cannot return gigantic pages currently */
Luiz Capitulinobae7f4a2014-06-04 16:07:08 -07002373 if (hstate_is_gigantic(h))
Mike Kravetze5bbc8a2017-01-10 16:58:27 -08002374 goto out;
Andi Kleenaa888a72008-07-23 21:27:47 -07002375
Mike Kravetze5bbc8a2017-01-10 16:58:27 -08002376 /*
2377 * Part (or even all) of the reservation could have been backed
2378 * by pre-allocated pages. Only free surplus pages.
2379 */
Andi Kleena5516432008-07-23 21:27:41 -07002380 nr_pages = min(unused_resv_pages, h->surplus_huge_pages);
Adam Litkee4e574b2007-10-16 01:26:19 -07002381
Lee Schermerhorn685f3452009-09-21 17:01:23 -07002382 /*
2383 * We want to release as many surplus pages as possible, spread
Lee Schermerhorn9b5e5d02009-12-14 17:58:32 -08002384 * evenly across all nodes with memory. Iterate across these nodes
2385 * until we can no longer free unreserved surplus pages. This occurs
2386 * when the nodes with surplus pages have no free pages.
Mike Kravetz10c6ec42021-05-04 18:35:03 -07002387 * remove_pool_huge_page() will balance the freed pages across the
Lee Schermerhorn9b5e5d02009-12-14 17:58:32 -08002388 * on-line nodes with memory and will handle the hstate accounting.
Lee Schermerhorn685f3452009-09-21 17:01:23 -07002389 */
2390 while (nr_pages--) {
Mike Kravetz10c6ec42021-05-04 18:35:03 -07002391 page = remove_pool_huge_page(h, &node_states[N_MEMORY], 1);
2392 if (!page)
Mike Kravetze5bbc8a2017-01-10 16:58:27 -08002393 goto out;
Mike Kravetz10c6ec42021-05-04 18:35:03 -07002394
2395 list_add(&page->lru, &page_list);
Adam Litkee4e574b2007-10-16 01:26:19 -07002396 }
Mike Kravetze5bbc8a2017-01-10 16:58:27 -08002397
2398out:
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002399 spin_unlock_irq(&hugetlb_lock);
Mike Kravetz10c6ec42021-05-04 18:35:03 -07002400 update_and_free_pages_bulk(h, &page_list);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002401 spin_lock_irq(&hugetlb_lock);
Adam Litkee4e574b2007-10-16 01:26:19 -07002402}
2403
Mike Kravetz5e911372015-09-08 15:01:28 -07002404
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07002405/*
Mike Kravetzfeba16e2015-09-08 15:01:31 -07002406 * vma_needs_reservation, vma_commit_reservation and vma_end_reservation
Mike Kravetz5e911372015-09-08 15:01:28 -07002407 * are used by the huge page allocation routines to manage reservations.
Mike Kravetzcf3ad202015-06-24 16:57:55 -07002408 *
2409 * vma_needs_reservation is called to determine if the huge page at addr
2410 * within the vma has an associated reservation. If a reservation is
2411 * needed, the value 1 is returned. The caller is then responsible for
2412 * managing the global reservation and subpool usage counts. After
2413 * the huge page has been allocated, vma_commit_reservation is called
Mike Kravetzfeba16e2015-09-08 15:01:31 -07002414 * to add the page to the reservation map. If the page allocation fails,
2415 * the reservation must be ended instead of committed. vma_end_reservation
2416 * is called in such cases.
Mike Kravetzcf3ad202015-06-24 16:57:55 -07002417 *
2418 * In the normal case, vma_commit_reservation returns the same value
2419 * as the preceding vma_needs_reservation call. The only time this
2420 * is not the case is if a reserve map was changed between calls. It
2421 * is the responsibility of the caller to notice the difference and
2422 * take appropriate action.
Mike Kravetz96b96a92016-11-10 10:46:32 -08002423 *
2424 * vma_add_reservation is used in error paths where a reservation must
2425 * be restored when a newly allocated huge page must be freed. It is
2426 * to be called after calling vma_needs_reservation to determine if a
2427 * reservation exists.
Mike Kravetz846be082021-06-15 18:23:29 -07002428 *
2429 * vma_del_reservation is used in error paths where an entry in the reserve
2430 * map was created during huge page allocation and must be removed. It is to
2431 * be called after calling vma_needs_reservation to determine if a reservation
2432 * exists.
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07002433 */
Mike Kravetz5e911372015-09-08 15:01:28 -07002434enum vma_resv_mode {
2435 VMA_NEEDS_RESV,
2436 VMA_COMMIT_RESV,
Mike Kravetzfeba16e2015-09-08 15:01:31 -07002437 VMA_END_RESV,
Mike Kravetz96b96a92016-11-10 10:46:32 -08002438 VMA_ADD_RESV,
Mike Kravetz846be082021-06-15 18:23:29 -07002439 VMA_DEL_RESV,
Mike Kravetz5e911372015-09-08 15:01:28 -07002440};
Mike Kravetzcf3ad202015-06-24 16:57:55 -07002441static long __vma_reservation_common(struct hstate *h,
2442 struct vm_area_struct *vma, unsigned long addr,
Mike Kravetz5e911372015-09-08 15:01:28 -07002443 enum vma_resv_mode mode)
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07002444{
Joonsoo Kim4e35f482014-04-03 14:47:30 -07002445 struct resv_map *resv;
2446 pgoff_t idx;
Mike Kravetzcf3ad202015-06-24 16:57:55 -07002447 long ret;
Mina Almasry0db9d742020-04-01 21:11:25 -07002448 long dummy_out_regions_needed;
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07002449
Joonsoo Kim4e35f482014-04-03 14:47:30 -07002450 resv = vma_resv_map(vma);
2451 if (!resv)
Andy Whitcroft84afd992008-07-23 21:27:32 -07002452 return 1;
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07002453
Joonsoo Kim4e35f482014-04-03 14:47:30 -07002454 idx = vma_hugecache_offset(h, vma, addr);
Mike Kravetz5e911372015-09-08 15:01:28 -07002455 switch (mode) {
2456 case VMA_NEEDS_RESV:
Mina Almasry0db9d742020-04-01 21:11:25 -07002457 ret = region_chg(resv, idx, idx + 1, &dummy_out_regions_needed);
2458 /* We assume that vma_reservation_* routines always operate on
2459 * 1 page, and that adding to resv map a 1 page entry can only
2460 * ever require 1 region.
2461 */
2462 VM_BUG_ON(dummy_out_regions_needed != 1);
Mike Kravetz5e911372015-09-08 15:01:28 -07002463 break;
2464 case VMA_COMMIT_RESV:
Mina Almasry075a61d2020-04-01 21:11:28 -07002465 ret = region_add(resv, idx, idx + 1, 1, NULL, NULL);
Mina Almasry0db9d742020-04-01 21:11:25 -07002466 /* region_add calls of range 1 should never fail. */
2467 VM_BUG_ON(ret < 0);
Mike Kravetz5e911372015-09-08 15:01:28 -07002468 break;
Mike Kravetzfeba16e2015-09-08 15:01:31 -07002469 case VMA_END_RESV:
Mina Almasry0db9d742020-04-01 21:11:25 -07002470 region_abort(resv, idx, idx + 1, 1);
Mike Kravetz5e911372015-09-08 15:01:28 -07002471 ret = 0;
2472 break;
Mike Kravetz96b96a92016-11-10 10:46:32 -08002473 case VMA_ADD_RESV:
Mina Almasry0db9d742020-04-01 21:11:25 -07002474 if (vma->vm_flags & VM_MAYSHARE) {
Mina Almasry075a61d2020-04-01 21:11:28 -07002475 ret = region_add(resv, idx, idx + 1, 1, NULL, NULL);
Mina Almasry0db9d742020-04-01 21:11:25 -07002476 /* region_add calls of range 1 should never fail. */
2477 VM_BUG_ON(ret < 0);
2478 } else {
2479 region_abort(resv, idx, idx + 1, 1);
Mike Kravetz96b96a92016-11-10 10:46:32 -08002480 ret = region_del(resv, idx, idx + 1);
2481 }
2482 break;
Mike Kravetz846be082021-06-15 18:23:29 -07002483 case VMA_DEL_RESV:
2484 if (vma->vm_flags & VM_MAYSHARE) {
2485 region_abort(resv, idx, idx + 1, 1);
2486 ret = region_del(resv, idx, idx + 1);
2487 } else {
2488 ret = region_add(resv, idx, idx + 1, 1, NULL, NULL);
2489 /* region_add calls of range 1 should never fail. */
2490 VM_BUG_ON(ret < 0);
2491 }
2492 break;
Mike Kravetz5e911372015-09-08 15:01:28 -07002493 default:
2494 BUG();
2495 }
Andy Whitcroft84afd992008-07-23 21:27:32 -07002496
Mike Kravetz846be082021-06-15 18:23:29 -07002497 if (vma->vm_flags & VM_MAYSHARE || mode == VMA_DEL_RESV)
Mike Kravetzcf3ad202015-06-24 16:57:55 -07002498 return ret;
Miaohe Linbf3d12b2021-05-04 18:34:32 -07002499 /*
2500 * We know private mapping must have HPAGE_RESV_OWNER set.
2501 *
2502 * In most cases, reserves always exist for private mappings.
2503 * However, a file associated with mapping could have been
2504 * hole punched or truncated after reserves were consumed.
2505 * As subsequent fault on such a range will not use reserves.
2506 * Subtle - The reserve map for private mappings has the
2507 * opposite meaning than that of shared mappings. If NO
2508 * entry is in the reserve map, it means a reservation exists.
2509 * If an entry exists in the reserve map, it means the
2510 * reservation has already been consumed. As a result, the
2511 * return value of this routine is the opposite of the
2512 * value returned from reserve map manipulation routines above.
2513 */
2514 if (ret > 0)
2515 return 0;
2516 if (ret == 0)
2517 return 1;
2518 return ret;
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07002519}
Mike Kravetzcf3ad202015-06-24 16:57:55 -07002520
2521static long vma_needs_reservation(struct hstate *h,
Andi Kleena5516432008-07-23 21:27:41 -07002522 struct vm_area_struct *vma, unsigned long addr)
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07002523{
Mike Kravetz5e911372015-09-08 15:01:28 -07002524 return __vma_reservation_common(h, vma, addr, VMA_NEEDS_RESV);
Mike Kravetzcf3ad202015-06-24 16:57:55 -07002525}
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07002526
Mike Kravetzcf3ad202015-06-24 16:57:55 -07002527static long vma_commit_reservation(struct hstate *h,
2528 struct vm_area_struct *vma, unsigned long addr)
2529{
Mike Kravetz5e911372015-09-08 15:01:28 -07002530 return __vma_reservation_common(h, vma, addr, VMA_COMMIT_RESV);
2531}
2532
Mike Kravetzfeba16e2015-09-08 15:01:31 -07002533static void vma_end_reservation(struct hstate *h,
Mike Kravetz5e911372015-09-08 15:01:28 -07002534 struct vm_area_struct *vma, unsigned long addr)
2535{
Mike Kravetzfeba16e2015-09-08 15:01:31 -07002536 (void)__vma_reservation_common(h, vma, addr, VMA_END_RESV);
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07002537}
2538
Mike Kravetz96b96a92016-11-10 10:46:32 -08002539static long vma_add_reservation(struct hstate *h,
2540 struct vm_area_struct *vma, unsigned long addr)
2541{
2542 return __vma_reservation_common(h, vma, addr, VMA_ADD_RESV);
2543}
2544
Mike Kravetz846be082021-06-15 18:23:29 -07002545static long vma_del_reservation(struct hstate *h,
2546 struct vm_area_struct *vma, unsigned long addr)
Mike Kravetz96b96a92016-11-10 10:46:32 -08002547{
Mike Kravetz846be082021-06-15 18:23:29 -07002548 return __vma_reservation_common(h, vma, addr, VMA_DEL_RESV);
2549}
Mike Kravetz96b96a92016-11-10 10:46:32 -08002550
Mike Kravetz846be082021-06-15 18:23:29 -07002551/*
2552 * This routine is called to restore reservation information on error paths.
2553 * It should ONLY be called for pages allocated via alloc_huge_page(), and
2554 * the hugetlb mutex should remain held when calling this routine.
2555 *
2556 * It handles two specific cases:
2557 * 1) A reservation was in place and the page consumed the reservation.
2558 * HPageRestoreReserve is set in the page.
2559 * 2) No reservation was in place for the page, so HPageRestoreReserve is
2560 * not set. However, alloc_huge_page always updates the reserve map.
2561 *
2562 * In case 1, free_huge_page later in the error path will increment the
2563 * global reserve count. But, free_huge_page does not have enough context
2564 * to adjust the reservation map. This case deals primarily with private
2565 * mappings. Adjust the reserve map here to be consistent with global
2566 * reserve count adjustments to be made by free_huge_page. Make sure the
2567 * reserve map indicates there is a reservation present.
2568 *
2569 * In case 2, simply undo reserve map modifications done by alloc_huge_page.
2570 */
2571void restore_reserve_on_error(struct hstate *h, struct vm_area_struct *vma,
2572 unsigned long address, struct page *page)
2573{
2574 long rc = vma_needs_reservation(h, vma, address);
2575
2576 if (HPageRestoreReserve(page)) {
2577 if (unlikely(rc < 0))
Mike Kravetz96b96a92016-11-10 10:46:32 -08002578 /*
2579 * Rare out of memory condition in reserve map
Mike Kravetzd6995da2021-02-24 12:08:51 -08002580 * manipulation. Clear HPageRestoreReserve so that
Mike Kravetz96b96a92016-11-10 10:46:32 -08002581 * global reserve count will not be incremented
2582 * by free_huge_page. This will make it appear
2583 * as though the reservation for this page was
2584 * consumed. This may prevent the task from
2585 * faulting in the page at a later time. This
2586 * is better than inconsistent global huge page
2587 * accounting of reserve counts.
2588 */
Mike Kravetzd6995da2021-02-24 12:08:51 -08002589 ClearHPageRestoreReserve(page);
Mike Kravetz846be082021-06-15 18:23:29 -07002590 else if (rc)
2591 (void)vma_add_reservation(h, vma, address);
2592 else
Mike Kravetz96b96a92016-11-10 10:46:32 -08002593 vma_end_reservation(h, vma, address);
Mike Kravetz846be082021-06-15 18:23:29 -07002594 } else {
2595 if (!rc) {
2596 /*
2597 * This indicates there is an entry in the reserve map
Mike Kravetzc7b18502021-08-19 19:04:33 -07002598 * not added by alloc_huge_page. We know it was added
Mike Kravetz846be082021-06-15 18:23:29 -07002599 * before the alloc_huge_page call, otherwise
2600 * HPageRestoreReserve would be set on the page.
2601 * Remove the entry so that a subsequent allocation
2602 * does not consume a reservation.
2603 */
2604 rc = vma_del_reservation(h, vma, address);
2605 if (rc < 0)
2606 /*
2607 * VERY rare out of memory condition. Since
2608 * we can not delete the entry, set
2609 * HPageRestoreReserve so that the reserve
2610 * count will be incremented when the page
2611 * is freed. This reserve will be consumed
2612 * on a subsequent allocation.
2613 */
2614 SetHPageRestoreReserve(page);
2615 } else if (rc < 0) {
2616 /*
2617 * Rare out of memory condition from
2618 * vma_needs_reservation call. Memory allocation is
2619 * only attempted if a new entry is needed. Therefore,
2620 * this implies there is not an entry in the
2621 * reserve map.
2622 *
2623 * For shared mappings, no entry in the map indicates
2624 * no reservation. We are done.
2625 */
2626 if (!(vma->vm_flags & VM_MAYSHARE))
2627 /*
2628 * For private mappings, no entry indicates
2629 * a reservation is present. Since we can
2630 * not add an entry, set SetHPageRestoreReserve
2631 * on the page so reserve count will be
2632 * incremented when freed. This reserve will
2633 * be consumed on a subsequent allocation.
2634 */
2635 SetHPageRestoreReserve(page);
2636 } else
2637 /*
2638 * No reservation present, do nothing
2639 */
2640 vma_end_reservation(h, vma, address);
Mike Kravetz96b96a92016-11-10 10:46:32 -08002641 }
2642}
2643
Oscar Salvador369fa222021-05-04 18:35:26 -07002644/*
2645 * alloc_and_dissolve_huge_page - Allocate a new page and dissolve the old one
2646 * @h: struct hstate old page belongs to
2647 * @old_page: Old page to dissolve
Oscar Salvadorae37c7f2021-05-04 18:35:29 -07002648 * @list: List to isolate the page in case we need to
Oscar Salvador369fa222021-05-04 18:35:26 -07002649 * Returns 0 on success, otherwise negated error.
2650 */
Oscar Salvadorae37c7f2021-05-04 18:35:29 -07002651static int alloc_and_dissolve_huge_page(struct hstate *h, struct page *old_page,
2652 struct list_head *list)
Oscar Salvador369fa222021-05-04 18:35:26 -07002653{
2654 gfp_t gfp_mask = htlb_alloc_mask(h) | __GFP_THISNODE;
2655 int nid = page_to_nid(old_page);
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002656 bool alloc_retry = false;
Oscar Salvador369fa222021-05-04 18:35:26 -07002657 struct page *new_page;
2658 int ret = 0;
2659
2660 /*
2661 * Before dissolving the page, we need to allocate a new one for the
Muchun Songf41f2ed2021-06-30 18:47:13 -07002662 * pool to remain stable. Here, we allocate the page and 'prep' it
2663 * by doing everything but actually updating counters and adding to
2664 * the pool. This simplifies and let us do most of the processing
2665 * under the lock.
Oscar Salvador369fa222021-05-04 18:35:26 -07002666 */
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002667alloc_retry:
Oscar Salvador369fa222021-05-04 18:35:26 -07002668 new_page = alloc_buddy_huge_page(h, gfp_mask, nid, NULL, NULL);
2669 if (!new_page)
2670 return -ENOMEM;
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002671 /*
2672 * If all goes well, this page will be directly added to the free
2673 * list in the pool. For this the ref count needs to be zero.
2674 * Attempt to drop now, and retry once if needed. It is VERY
2675 * unlikely there is another ref on the page.
2676 *
2677 * If someone else has a reference to the page, it will be freed
2678 * when they drop their ref. Abuse temporary page flag to accomplish
2679 * this. Retry once if there is an inflated ref count.
2680 */
2681 SetHPageTemporary(new_page);
2682 if (!put_page_testzero(new_page)) {
2683 if (alloc_retry)
2684 return -EBUSY;
2685
2686 alloc_retry = true;
2687 goto alloc_retry;
2688 }
2689 ClearHPageTemporary(new_page);
2690
Muchun Songf41f2ed2021-06-30 18:47:13 -07002691 __prep_new_huge_page(h, new_page);
Oscar Salvador369fa222021-05-04 18:35:26 -07002692
2693retry:
2694 spin_lock_irq(&hugetlb_lock);
2695 if (!PageHuge(old_page)) {
2696 /*
2697 * Freed from under us. Drop new_page too.
2698 */
2699 goto free_new;
2700 } else if (page_count(old_page)) {
2701 /*
Oscar Salvadorae37c7f2021-05-04 18:35:29 -07002702 * Someone has grabbed the page, try to isolate it here.
2703 * Fail with -EBUSY if not possible.
Oscar Salvador369fa222021-05-04 18:35:26 -07002704 */
Oscar Salvadorae37c7f2021-05-04 18:35:29 -07002705 spin_unlock_irq(&hugetlb_lock);
2706 if (!isolate_huge_page(old_page, list))
2707 ret = -EBUSY;
2708 spin_lock_irq(&hugetlb_lock);
Oscar Salvador369fa222021-05-04 18:35:26 -07002709 goto free_new;
2710 } else if (!HPageFreed(old_page)) {
2711 /*
2712 * Page's refcount is 0 but it has not been enqueued in the
2713 * freelist yet. Race window is small, so we can succeed here if
2714 * we retry.
2715 */
2716 spin_unlock_irq(&hugetlb_lock);
2717 cond_resched();
2718 goto retry;
2719 } else {
2720 /*
2721 * Ok, old_page is still a genuine free hugepage. Remove it from
2722 * the freelist and decrease the counters. These will be
2723 * incremented again when calling __prep_account_new_huge_page()
2724 * and enqueue_huge_page() for new_page. The counters will remain
2725 * stable since this happens under the lock.
2726 */
2727 remove_hugetlb_page(h, old_page, false);
2728
2729 /*
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002730 * Ref count on new page is already zero as it was dropped
2731 * earlier. It can be directly added to the pool free list.
Oscar Salvador369fa222021-05-04 18:35:26 -07002732 */
Oscar Salvador369fa222021-05-04 18:35:26 -07002733 __prep_account_new_huge_page(h, nid);
Oscar Salvador369fa222021-05-04 18:35:26 -07002734 enqueue_huge_page(h, new_page);
2735
2736 /*
2737 * Pages have been replaced, we can safely free the old one.
2738 */
2739 spin_unlock_irq(&hugetlb_lock);
Muchun Songb65d4ad2021-06-30 18:47:17 -07002740 update_and_free_page(h, old_page, false);
Oscar Salvador369fa222021-05-04 18:35:26 -07002741 }
2742
2743 return ret;
2744
2745free_new:
2746 spin_unlock_irq(&hugetlb_lock);
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002747 /* Page has a zero ref count, but needs a ref to be freed */
2748 set_page_refcounted(new_page);
Muchun Songb65d4ad2021-06-30 18:47:17 -07002749 update_and_free_page(h, new_page, false);
Oscar Salvador369fa222021-05-04 18:35:26 -07002750
2751 return ret;
2752}
2753
Oscar Salvadorae37c7f2021-05-04 18:35:29 -07002754int isolate_or_dissolve_huge_page(struct page *page, struct list_head *list)
Oscar Salvador369fa222021-05-04 18:35:26 -07002755{
2756 struct hstate *h;
2757 struct page *head;
Oscar Salvadorae37c7f2021-05-04 18:35:29 -07002758 int ret = -EBUSY;
Oscar Salvador369fa222021-05-04 18:35:26 -07002759
2760 /*
2761 * The page might have been dissolved from under our feet, so make sure
2762 * to carefully check the state under the lock.
2763 * Return success when racing as if we dissolved the page ourselves.
2764 */
2765 spin_lock_irq(&hugetlb_lock);
2766 if (PageHuge(page)) {
2767 head = compound_head(page);
2768 h = page_hstate(head);
2769 } else {
2770 spin_unlock_irq(&hugetlb_lock);
2771 return 0;
2772 }
2773 spin_unlock_irq(&hugetlb_lock);
2774
2775 /*
2776 * Fence off gigantic pages as there is a cyclic dependency between
2777 * alloc_contig_range and them. Return -ENOMEM as this has the effect
2778 * of bailing out right away without further retrying.
2779 */
2780 if (hstate_is_gigantic(h))
2781 return -ENOMEM;
2782
Oscar Salvadorae37c7f2021-05-04 18:35:29 -07002783 if (page_count(head) && isolate_huge_page(head, list))
2784 ret = 0;
2785 else if (!page_count(head))
2786 ret = alloc_and_dissolve_huge_page(h, head, list);
2787
2788 return ret;
Oscar Salvador369fa222021-05-04 18:35:26 -07002789}
2790
Mike Kravetz70c35472015-09-08 15:01:54 -07002791struct page *alloc_huge_page(struct vm_area_struct *vma,
Mel Gorman04f2cbe2008-07-23 21:27:25 -07002792 unsigned long addr, int avoid_reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793{
David Gibson90481622012-03-21 16:34:12 -07002794 struct hugepage_subpool *spool = subpool_vma(vma);
Andi Kleena5516432008-07-23 21:27:41 -07002795 struct hstate *h = hstate_vma(vma);
Adam Litke348ea202007-11-14 16:59:37 -08002796 struct page *page;
Mike Kravetzd85f69b2015-09-08 15:01:47 -07002797 long map_chg, map_commit;
2798 long gbl_chg;
Aneesh Kumar K.V6d76dcf2012-07-31 16:42:18 -07002799 int ret, idx;
2800 struct hugetlb_cgroup *h_cg;
Mina Almasry08cf9fa2020-04-01 21:11:31 -07002801 bool deferred_reserve;
Adam Litke2fc39ce2007-11-14 16:59:39 -08002802
Aneesh Kumar K.V6d76dcf2012-07-31 16:42:18 -07002803 idx = hstate_index(h);
Mel Gormana1e78772008-07-23 21:27:23 -07002804 /*
Mike Kravetzd85f69b2015-09-08 15:01:47 -07002805 * Examine the region/reserve map to determine if the process
2806 * has a reservation for the page to be allocated. A return
2807 * code of zero indicates a reservation exists (no change).
Mel Gormana1e78772008-07-23 21:27:23 -07002808 */
Mike Kravetzd85f69b2015-09-08 15:01:47 -07002809 map_chg = gbl_chg = vma_needs_reservation(h, vma, addr);
2810 if (map_chg < 0)
Aneesh Kumar K.V76dcee72012-07-31 16:41:57 -07002811 return ERR_PTR(-ENOMEM);
Mike Kravetzd85f69b2015-09-08 15:01:47 -07002812
2813 /*
2814 * Processes that did not create the mapping will have no
2815 * reserves as indicated by the region/reserve map. Check
2816 * that the allocation will not exceed the subpool limit.
2817 * Allocations for MAP_NORESERVE mappings also need to be
2818 * checked against any subpool limit.
2819 */
2820 if (map_chg || avoid_reserve) {
2821 gbl_chg = hugepage_subpool_get_pages(spool, 1);
2822 if (gbl_chg < 0) {
Mike Kravetzfeba16e2015-09-08 15:01:31 -07002823 vma_end_reservation(h, vma, addr);
Aneesh Kumar K.V76dcee72012-07-31 16:41:57 -07002824 return ERR_PTR(-ENOSPC);
Mike Kravetz5e911372015-09-08 15:01:28 -07002825 }
Mel Gormana1e78772008-07-23 21:27:23 -07002826
Mike Kravetzd85f69b2015-09-08 15:01:47 -07002827 /*
2828 * Even though there was no reservation in the region/reserve
2829 * map, there could be reservations associated with the
2830 * subpool that can be used. This would be indicated if the
2831 * return value of hugepage_subpool_get_pages() is zero.
2832 * However, if avoid_reserve is specified we still avoid even
2833 * the subpool reservations.
2834 */
2835 if (avoid_reserve)
2836 gbl_chg = 1;
2837 }
2838
Mina Almasry08cf9fa2020-04-01 21:11:31 -07002839 /* If this allocation is not consuming a reservation, charge it now.
2840 */
Miaohe Lin6501fe52021-05-04 18:33:16 -07002841 deferred_reserve = map_chg || avoid_reserve;
Mina Almasry08cf9fa2020-04-01 21:11:31 -07002842 if (deferred_reserve) {
2843 ret = hugetlb_cgroup_charge_cgroup_rsvd(
2844 idx, pages_per_huge_page(h), &h_cg);
2845 if (ret)
2846 goto out_subpool_put;
2847 }
2848
Aneesh Kumar K.V6d76dcf2012-07-31 16:42:18 -07002849 ret = hugetlb_cgroup_charge_cgroup(idx, pages_per_huge_page(h), &h_cg);
Jianyu Zhan8f34af62014-06-04 16:10:36 -07002850 if (ret)
Mina Almasry08cf9fa2020-04-01 21:11:31 -07002851 goto out_uncharge_cgroup_reservation;
Jianyu Zhan8f34af62014-06-04 16:10:36 -07002852
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002853 spin_lock_irq(&hugetlb_lock);
Mike Kravetzd85f69b2015-09-08 15:01:47 -07002854 /*
2855 * glb_chg is passed to indicate whether or not a page must be taken
2856 * from the global free pool (global change). gbl_chg == 0 indicates
2857 * a reservation exists for the allocation.
2858 */
2859 page = dequeue_huge_page_vma(h, vma, addr, avoid_reserve, gbl_chg);
Joonsoo Kim81a6fca2013-09-11 14:20:58 -07002860 if (!page) {
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002861 spin_unlock_irq(&hugetlb_lock);
Michal Hocko0c397da2018-01-31 16:20:56 -08002862 page = alloc_buddy_huge_page_with_mpol(h, vma, addr);
Jianyu Zhan8f34af62014-06-04 16:10:36 -07002863 if (!page)
2864 goto out_uncharge_cgroup;
Naoya Horiguchia88c7692015-12-11 13:40:24 -08002865 if (!avoid_reserve && vma_has_reserves(vma, gbl_chg)) {
Mike Kravetzd6995da2021-02-24 12:08:51 -08002866 SetHPageRestoreReserve(page);
Naoya Horiguchia88c7692015-12-11 13:40:24 -08002867 h->resv_huge_pages--;
2868 }
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002869 spin_lock_irq(&hugetlb_lock);
Wei Yang15a8d682020-10-13 16:56:33 -07002870 list_add(&page->lru, &h->hugepage_activelist);
Joonsoo Kim81a6fca2013-09-11 14:20:58 -07002871 /* Fall through */
Mel Gormana1e78772008-07-23 21:27:23 -07002872 }
Joonsoo Kim81a6fca2013-09-11 14:20:58 -07002873 hugetlb_cgroup_commit_charge(idx, pages_per_huge_page(h), h_cg, page);
Mina Almasry08cf9fa2020-04-01 21:11:31 -07002874 /* If allocation is not consuming a reservation, also store the
2875 * hugetlb_cgroup pointer on the page.
2876 */
2877 if (deferred_reserve) {
2878 hugetlb_cgroup_commit_charge_rsvd(idx, pages_per_huge_page(h),
2879 h_cg, page);
2880 }
2881
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002882 spin_unlock_irq(&hugetlb_lock);
Mel Gormana1e78772008-07-23 21:27:23 -07002883
Mike Kravetzd6995da2021-02-24 12:08:51 -08002884 hugetlb_set_page_subpool(page, spool);
Mel Gormana1e78772008-07-23 21:27:23 -07002885
Mike Kravetzd85f69b2015-09-08 15:01:47 -07002886 map_commit = vma_commit_reservation(h, vma, addr);
2887 if (unlikely(map_chg > map_commit)) {
Mike Kravetz33039672015-06-24 16:57:58 -07002888 /*
2889 * The page was added to the reservation map between
2890 * vma_needs_reservation and vma_commit_reservation.
2891 * This indicates a race with hugetlb_reserve_pages.
2892 * Adjust for the subpool count incremented above AND
2893 * in hugetlb_reserve_pages for the same page. Also,
2894 * the reservation count added in hugetlb_reserve_pages
2895 * no longer applies.
2896 */
2897 long rsv_adjust;
2898
2899 rsv_adjust = hugepage_subpool_put_pages(spool, 1);
2900 hugetlb_acct_memory(h, -rsv_adjust);
Mike Kravetz79aa9252020-11-01 17:07:27 -08002901 if (deferred_reserve)
2902 hugetlb_cgroup_uncharge_page_rsvd(hstate_index(h),
2903 pages_per_huge_page(h), page);
Mike Kravetz33039672015-06-24 16:57:58 -07002904 }
Adam Litke90d8b7e2007-11-14 16:59:42 -08002905 return page;
Jianyu Zhan8f34af62014-06-04 16:10:36 -07002906
2907out_uncharge_cgroup:
2908 hugetlb_cgroup_uncharge_cgroup(idx, pages_per_huge_page(h), h_cg);
Mina Almasry08cf9fa2020-04-01 21:11:31 -07002909out_uncharge_cgroup_reservation:
2910 if (deferred_reserve)
2911 hugetlb_cgroup_uncharge_cgroup_rsvd(idx, pages_per_huge_page(h),
2912 h_cg);
Jianyu Zhan8f34af62014-06-04 16:10:36 -07002913out_subpool_put:
Mike Kravetzd85f69b2015-09-08 15:01:47 -07002914 if (map_chg || avoid_reserve)
Jianyu Zhan8f34af62014-06-04 16:10:36 -07002915 hugepage_subpool_put_pages(spool, 1);
Mike Kravetzfeba16e2015-09-08 15:01:31 -07002916 vma_end_reservation(h, vma, addr);
Jianyu Zhan8f34af62014-06-04 16:10:36 -07002917 return ERR_PTR(-ENOSPC);
David Gibsonb45b5bd2006-03-22 00:08:55 -08002918}
2919
Aneesh Kumar K.Ve24a1302017-07-28 10:31:25 +05302920int alloc_bootmem_huge_page(struct hstate *h)
2921 __attribute__ ((weak, alias("__alloc_bootmem_huge_page")));
2922int __alloc_bootmem_huge_page(struct hstate *h)
Andi Kleenaa888a72008-07-23 21:27:47 -07002923{
2924 struct huge_bootmem_page *m;
Joonsoo Kimb2261022013-09-11 14:21:00 -07002925 int nr_nodes, node;
Andi Kleenaa888a72008-07-23 21:27:47 -07002926
Joonsoo Kimb2261022013-09-11 14:21:00 -07002927 for_each_node_mask_to_alloc(h, nr_nodes, node, &node_states[N_MEMORY]) {
Andi Kleenaa888a72008-07-23 21:27:47 -07002928 void *addr;
2929
Mike Rapoporteb31d552018-10-30 15:08:04 -07002930 addr = memblock_alloc_try_nid_raw(
Grygorii Strashko8b89a112014-01-21 15:50:36 -08002931 huge_page_size(h), huge_page_size(h),
Mike Rapoport97ad1082018-10-30 15:09:44 -07002932 0, MEMBLOCK_ALLOC_ACCESSIBLE, node);
Andi Kleenaa888a72008-07-23 21:27:47 -07002933 if (addr) {
2934 /*
2935 * Use the beginning of the huge page to store the
2936 * huge_bootmem_page struct (until gather_bootmem
2937 * puts them into the mem_map).
2938 */
2939 m = addr;
Cyrill Gorcunov91f47662009-01-06 14:40:33 -08002940 goto found;
Andi Kleenaa888a72008-07-23 21:27:47 -07002941 }
Andi Kleenaa888a72008-07-23 21:27:47 -07002942 }
2943 return 0;
2944
2945found:
Luiz Capitulinodf994ea2014-12-12 16:55:21 -08002946 BUG_ON(!IS_ALIGNED(virt_to_phys(m), huge_page_size(h)));
Andi Kleenaa888a72008-07-23 21:27:47 -07002947 /* Put them into a private list first because mem_map is not up yet */
Cannon Matthews330d6e42018-08-17 15:49:17 -07002948 INIT_LIST_HEAD(&m->list);
Andi Kleenaa888a72008-07-23 21:27:47 -07002949 list_add(&m->list, &huge_boot_pages);
2950 m->hstate = h;
2951 return 1;
2952}
2953
Mike Kravetz48b8d742021-06-30 18:48:31 -07002954/*
2955 * Put bootmem huge pages into the standard lists after mem_map is up.
2956 * Note: This only applies to gigantic (order > MAX_ORDER) pages.
2957 */
Andi Kleenaa888a72008-07-23 21:27:47 -07002958static void __init gather_bootmem_prealloc(void)
2959{
2960 struct huge_bootmem_page *m;
2961
2962 list_for_each_entry(m, &huge_boot_pages, list) {
Mike Kravetz40d18eb2018-08-17 15:49:07 -07002963 struct page *page = virt_to_page(m);
Andi Kleenaa888a72008-07-23 21:27:47 -07002964 struct hstate *h = m->hstate;
Becky Bruceee8f2482011-07-25 17:11:50 -07002965
Mike Kravetz48b8d742021-06-30 18:48:31 -07002966 VM_BUG_ON(!hstate_is_gigantic(h));
Andi Kleenaa888a72008-07-23 21:27:47 -07002967 WARN_ON(page_count(page) != 1);
Mike Kravetz7118fc22021-06-30 18:48:34 -07002968 if (prep_compound_gigantic_page(page, huge_page_order(h))) {
2969 WARN_ON(PageReserved(page));
2970 prep_new_huge_page(h, page, page_to_nid(page));
2971 put_page(page); /* add to the hugepage allocator */
2972 } else {
Mike Kravetz416d85e2021-09-02 14:58:43 -07002973 /* VERY unlikely inflated ref count on a tail page */
Mike Kravetz7118fc22021-06-30 18:48:34 -07002974 free_gigantic_page(page, huge_page_order(h));
Mike Kravetz7118fc22021-06-30 18:48:34 -07002975 }
Michal Hockoaf0fb9d2018-01-31 16:20:41 -08002976
Rafael Aquinib0320c72011-06-15 15:08:39 -07002977 /*
Mike Kravetz48b8d742021-06-30 18:48:31 -07002978 * We need to restore the 'stolen' pages to totalram_pages
2979 * in order to fix confusing memory reports from free(1) and
2980 * other side-effects, like CommitLimit going negative.
Rafael Aquinib0320c72011-06-15 15:08:39 -07002981 */
Mike Kravetz48b8d742021-06-30 18:48:31 -07002982 adjust_managed_page_count(page, pages_per_huge_page(h));
Cannon Matthews520495f2018-07-03 17:02:43 -07002983 cond_resched();
Andi Kleenaa888a72008-07-23 21:27:47 -07002984 }
2985}
2986
Andi Kleen8faa8b02008-07-23 21:27:48 -07002987static void __init hugetlb_hstate_alloc_pages(struct hstate *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988{
2989 unsigned long i;
Mike Kravetzf60858f2019-09-23 15:37:35 -07002990 nodemask_t *node_alloc_noretry;
2991
2992 if (!hstate_is_gigantic(h)) {
2993 /*
2994 * Bit mask controlling how hard we retry per-node allocations.
2995 * Ignore errors as lower level routines can deal with
2996 * node_alloc_noretry == NULL. If this kmalloc fails at boot
2997 * time, we are likely in bigger trouble.
2998 */
2999 node_alloc_noretry = kmalloc(sizeof(*node_alloc_noretry),
3000 GFP_KERNEL);
3001 } else {
3002 /* allocations done at boot time */
3003 node_alloc_noretry = NULL;
3004 }
3005
3006 /* bit mask controlling how hard we retry per-node allocations */
3007 if (node_alloc_noretry)
3008 nodes_clear(*node_alloc_noretry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009
Andi Kleene5ff2152008-07-23 21:27:42 -07003010 for (i = 0; i < h->max_huge_pages; ++i) {
Luiz Capitulinobae7f4a2014-06-04 16:07:08 -07003011 if (hstate_is_gigantic(h)) {
Barry Songdbda8fe2020-07-23 21:15:30 -07003012 if (hugetlb_cma_size) {
Roman Gushchincf11e852020-04-10 14:32:45 -07003013 pr_warn_once("HugeTLB: hugetlb_cma is enabled, skip boot time allocation\n");
Chen Wandun7ecc9562021-02-24 12:07:58 -08003014 goto free;
Roman Gushchincf11e852020-04-10 14:32:45 -07003015 }
Andi Kleenaa888a72008-07-23 21:27:47 -07003016 if (!alloc_bootmem_huge_page(h))
3017 break;
Michal Hocko0c397da2018-01-31 16:20:56 -08003018 } else if (!alloc_pool_huge_page(h,
Mike Kravetzf60858f2019-09-23 15:37:35 -07003019 &node_states[N_MEMORY],
3020 node_alloc_noretry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 break;
David Rientjes69ed7792017-07-10 15:48:50 -07003022 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 }
Liam R. Howlettd715cf82017-07-10 15:48:15 -07003024 if (i < h->max_huge_pages) {
3025 char buf[32];
3026
Matthew Wilcoxc6247f72017-07-10 15:48:56 -07003027 string_get_size(huge_page_size(h), 1, STRING_UNITS_2, buf, 32);
Liam R. Howlettd715cf82017-07-10 15:48:15 -07003028 pr_warn("HugeTLB: allocating %lu of page size %s failed. Only allocated %lu hugepages.\n",
3029 h->max_huge_pages, buf, i);
3030 h->max_huge_pages = i;
3031 }
Chen Wandun7ecc9562021-02-24 12:07:58 -08003032free:
Mike Kravetzf60858f2019-09-23 15:37:35 -07003033 kfree(node_alloc_noretry);
Andi Kleene5ff2152008-07-23 21:27:42 -07003034}
3035
3036static void __init hugetlb_init_hstates(void)
3037{
Mike Kravetz79dfc692021-11-05 13:41:20 -07003038 struct hstate *h, *h2;
Andi Kleene5ff2152008-07-23 21:27:42 -07003039
3040 for_each_hstate(h) {
Naoya Horiguchi641844f2015-06-24 16:56:59 -07003041 if (minimum_order > huge_page_order(h))
3042 minimum_order = huge_page_order(h);
3043
Andi Kleen8faa8b02008-07-23 21:27:48 -07003044 /* oversize hugepages were init'ed in early boot */
Luiz Capitulinobae7f4a2014-06-04 16:07:08 -07003045 if (!hstate_is_gigantic(h))
Andi Kleen8faa8b02008-07-23 21:27:48 -07003046 hugetlb_hstate_alloc_pages(h);
Mike Kravetz79dfc692021-11-05 13:41:20 -07003047
3048 /*
3049 * Set demote order for each hstate. Note that
3050 * h->demote_order is initially 0.
3051 * - We can not demote gigantic pages if runtime freeing
3052 * is not supported, so skip this.
Mike Kravetza01f4392021-11-05 13:41:27 -07003053 * - If CMA allocation is possible, we can not demote
3054 * HUGETLB_PAGE_ORDER or smaller size pages.
Mike Kravetz79dfc692021-11-05 13:41:20 -07003055 */
3056 if (hstate_is_gigantic(h) && !gigantic_page_runtime_supported())
3057 continue;
Mike Kravetza01f4392021-11-05 13:41:27 -07003058 if (hugetlb_cma_size && h->order <= HUGETLB_PAGE_ORDER)
3059 continue;
Mike Kravetz79dfc692021-11-05 13:41:20 -07003060 for_each_hstate(h2) {
3061 if (h2 == h)
3062 continue;
3063 if (h2->order < h->order &&
3064 h2->order > h->demote_order)
3065 h->demote_order = h2->order;
3066 }
Andi Kleene5ff2152008-07-23 21:27:42 -07003067 }
Naoya Horiguchi641844f2015-06-24 16:56:59 -07003068 VM_BUG_ON(minimum_order == UINT_MAX);
Andi Kleene5ff2152008-07-23 21:27:42 -07003069}
3070
3071static void __init report_hugepages(void)
3072{
3073 struct hstate *h;
3074
3075 for_each_hstate(h) {
Andi Kleen4abd32d2008-07-23 21:27:49 -07003076 char buf[32];
Matthew Wilcoxc6247f72017-07-10 15:48:56 -07003077
3078 string_get_size(huge_page_size(h), 1, STRING_UNITS_2, buf, 32);
Andrew Mortonffb22af2013-02-22 16:32:08 -08003079 pr_info("HugeTLB registered %s page size, pre-allocated %ld pages\n",
Matthew Wilcoxc6247f72017-07-10 15:48:56 -07003080 buf, h->free_huge_pages);
Andi Kleene5ff2152008-07-23 21:27:42 -07003081 }
3082}
3083
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084#ifdef CONFIG_HIGHMEM
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08003085static void try_to_free_low(struct hstate *h, unsigned long count,
3086 nodemask_t *nodes_allowed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087{
Christoph Lameter4415cc82006-09-25 23:31:55 -07003088 int i;
Mike Kravetz11218282021-05-04 18:34:59 -07003089 LIST_HEAD(page_list);
Christoph Lameter4415cc82006-09-25 23:31:55 -07003090
Mike Kravetz9487ca62021-05-04 18:35:10 -07003091 lockdep_assert_held(&hugetlb_lock);
Luiz Capitulinobae7f4a2014-06-04 16:07:08 -07003092 if (hstate_is_gigantic(h))
Andi Kleenaa888a72008-07-23 21:27:47 -07003093 return;
3094
Mike Kravetz11218282021-05-04 18:34:59 -07003095 /*
3096 * Collect pages to be freed on a list, and free after dropping lock
3097 */
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08003098 for_each_node_mask(i, *nodes_allowed) {
Mike Kravetz10c6ec42021-05-04 18:35:03 -07003099 struct page *page, *next;
Andi Kleena5516432008-07-23 21:27:41 -07003100 struct list_head *freel = &h->hugepage_freelists[i];
3101 list_for_each_entry_safe(page, next, freel, lru) {
3102 if (count >= h->nr_huge_pages)
Mike Kravetz11218282021-05-04 18:34:59 -07003103 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 if (PageHighMem(page))
3105 continue;
Mike Kravetz6eb4e882021-05-04 18:34:55 -07003106 remove_hugetlb_page(h, page, false);
Mike Kravetz11218282021-05-04 18:34:59 -07003107 list_add(&page->lru, &page_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 }
3109 }
Mike Kravetz11218282021-05-04 18:34:59 -07003110
3111out:
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003112 spin_unlock_irq(&hugetlb_lock);
Mike Kravetz10c6ec42021-05-04 18:35:03 -07003113 update_and_free_pages_bulk(h, &page_list);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003114 spin_lock_irq(&hugetlb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115}
3116#else
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08003117static inline void try_to_free_low(struct hstate *h, unsigned long count,
3118 nodemask_t *nodes_allowed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119{
3120}
3121#endif
3122
Wu Fengguang20a03072009-06-16 15:32:22 -07003123/*
3124 * Increment or decrement surplus_huge_pages. Keep node-specific counters
3125 * balanced by operating on them in a round-robin fashion.
3126 * Returns 1 if an adjustment was made.
3127 */
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08003128static int adjust_pool_surplus(struct hstate *h, nodemask_t *nodes_allowed,
3129 int delta)
Wu Fengguang20a03072009-06-16 15:32:22 -07003130{
Joonsoo Kimb2261022013-09-11 14:21:00 -07003131 int nr_nodes, node;
Wu Fengguang20a03072009-06-16 15:32:22 -07003132
Mike Kravetz9487ca62021-05-04 18:35:10 -07003133 lockdep_assert_held(&hugetlb_lock);
Wu Fengguang20a03072009-06-16 15:32:22 -07003134 VM_BUG_ON(delta != -1 && delta != 1);
Wu Fengguang20a03072009-06-16 15:32:22 -07003135
Joonsoo Kimb2261022013-09-11 14:21:00 -07003136 if (delta < 0) {
3137 for_each_node_mask_to_alloc(h, nr_nodes, node, nodes_allowed) {
3138 if (h->surplus_huge_pages_node[node])
3139 goto found;
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07003140 }
Joonsoo Kimb2261022013-09-11 14:21:00 -07003141 } else {
3142 for_each_node_mask_to_free(h, nr_nodes, node, nodes_allowed) {
3143 if (h->surplus_huge_pages_node[node] <
3144 h->nr_huge_pages_node[node])
3145 goto found;
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07003146 }
Joonsoo Kimb2261022013-09-11 14:21:00 -07003147 }
3148 return 0;
Wu Fengguang20a03072009-06-16 15:32:22 -07003149
Joonsoo Kimb2261022013-09-11 14:21:00 -07003150found:
3151 h->surplus_huge_pages += delta;
3152 h->surplus_huge_pages_node[node] += delta;
3153 return 1;
Wu Fengguang20a03072009-06-16 15:32:22 -07003154}
3155
Andi Kleena5516432008-07-23 21:27:41 -07003156#define persistent_huge_pages(h) (h->nr_huge_pages - h->surplus_huge_pages)
Mike Kravetzfd875dc2019-05-13 17:19:20 -07003157static int set_max_huge_pages(struct hstate *h, unsigned long count, int nid,
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07003158 nodemask_t *nodes_allowed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159{
Adam Litke7893d1d2007-10-16 01:26:18 -07003160 unsigned long min_count, ret;
Mike Kravetz10c6ec42021-05-04 18:35:03 -07003161 struct page *page;
3162 LIST_HEAD(page_list);
Mike Kravetzf60858f2019-09-23 15:37:35 -07003163 NODEMASK_ALLOC(nodemask_t, node_alloc_noretry, GFP_KERNEL);
3164
3165 /*
3166 * Bit mask controlling how hard we retry per-node allocations.
3167 * If we can not allocate the bit mask, do not attempt to allocate
3168 * the requested huge pages.
3169 */
3170 if (node_alloc_noretry)
3171 nodes_clear(*node_alloc_noretry);
3172 else
3173 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174
Mike Kravetz29383962021-05-04 18:34:52 -07003175 /*
3176 * resize_lock mutex prevents concurrent adjustments to number of
3177 * pages in hstate via the proc/sysfs interfaces.
3178 */
3179 mutex_lock(&h->resize_lock);
Muchun Songb65d4ad2021-06-30 18:47:17 -07003180 flush_free_hpage_work(h);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003181 spin_lock_irq(&hugetlb_lock);
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07003182
3183 /*
Mike Kravetzfd875dc2019-05-13 17:19:20 -07003184 * Check for a node specific request.
3185 * Changing node specific huge page count may require a corresponding
3186 * change to the global count. In any case, the passed node mask
3187 * (nodes_allowed) will restrict alloc/free to the specified node.
3188 */
3189 if (nid != NUMA_NO_NODE) {
3190 unsigned long old_count = count;
3191
3192 count += h->nr_huge_pages - h->nr_huge_pages_node[nid];
3193 /*
3194 * User may have specified a large count value which caused the
3195 * above calculation to overflow. In this case, they wanted
3196 * to allocate as many huge pages as possible. Set count to
3197 * largest possible value to align with their intention.
3198 */
3199 if (count < old_count)
3200 count = ULONG_MAX;
3201 }
3202
3203 /*
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07003204 * Gigantic pages runtime allocation depend on the capability for large
3205 * page range allocation.
3206 * If the system does not provide this feature, return an error when
3207 * the user tries to allocate gigantic pages but let the user free the
3208 * boottime allocated gigantic pages.
3209 */
3210 if (hstate_is_gigantic(h) && !IS_ENABLED(CONFIG_CONTIG_ALLOC)) {
3211 if (count > persistent_huge_pages(h)) {
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003212 spin_unlock_irq(&hugetlb_lock);
Mike Kravetz29383962021-05-04 18:34:52 -07003213 mutex_unlock(&h->resize_lock);
Mike Kravetzf60858f2019-09-23 15:37:35 -07003214 NODEMASK_FREE(node_alloc_noretry);
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07003215 return -EINVAL;
3216 }
3217 /* Fall through to decrease pool */
3218 }
Andi Kleenaa888a72008-07-23 21:27:47 -07003219
Adam Litke7893d1d2007-10-16 01:26:18 -07003220 /*
3221 * Increase the pool size
3222 * First take pages out of surplus state. Then make up the
3223 * remaining difference by allocating fresh huge pages.
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08003224 *
Michal Hocko0c397da2018-01-31 16:20:56 -08003225 * We might race with alloc_surplus_huge_page() here and be unable
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08003226 * to convert a surplus huge page to a normal huge page. That is
3227 * not critical, though, it just means the overall size of the
3228 * pool might be one hugepage larger than it needs to be, but
3229 * within all the constraints specified by the sysctls.
Adam Litke7893d1d2007-10-16 01:26:18 -07003230 */
Andi Kleena5516432008-07-23 21:27:41 -07003231 while (h->surplus_huge_pages && count > persistent_huge_pages(h)) {
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08003232 if (!adjust_pool_surplus(h, nodes_allowed, -1))
Adam Litke7893d1d2007-10-16 01:26:18 -07003233 break;
3234 }
3235
Andi Kleena5516432008-07-23 21:27:41 -07003236 while (count > persistent_huge_pages(h)) {
Adam Litke7893d1d2007-10-16 01:26:18 -07003237 /*
3238 * If this allocation races such that we no longer need the
3239 * page, free_huge_page will handle it by freeing the page
3240 * and reducing the surplus.
3241 */
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003242 spin_unlock_irq(&hugetlb_lock);
Jia He649920c2016-08-02 14:02:31 -07003243
3244 /* yield cpu to avoid soft lockup */
3245 cond_resched();
3246
Mike Kravetzf60858f2019-09-23 15:37:35 -07003247 ret = alloc_pool_huge_page(h, nodes_allowed,
3248 node_alloc_noretry);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003249 spin_lock_irq(&hugetlb_lock);
Adam Litke7893d1d2007-10-16 01:26:18 -07003250 if (!ret)
3251 goto out;
3252
Mel Gorman536240f22009-12-14 17:59:56 -08003253 /* Bail for signals. Probably ctrl-c from user */
3254 if (signal_pending(current))
3255 goto out;
Adam Litke7893d1d2007-10-16 01:26:18 -07003256 }
Adam Litke7893d1d2007-10-16 01:26:18 -07003257
3258 /*
3259 * Decrease the pool size
3260 * First return free pages to the buddy allocator (being careful
3261 * to keep enough around to satisfy reservations). Then place
3262 * pages into surplus state as needed so the pool will shrink
3263 * to the desired size as pages become free.
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08003264 *
3265 * By placing pages into the surplus state independent of the
3266 * overcommit value, we are allowing the surplus pool size to
3267 * exceed overcommit. There are few sane options here. Since
Michal Hocko0c397da2018-01-31 16:20:56 -08003268 * alloc_surplus_huge_page() is checking the global counter,
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08003269 * though, we'll note that we're not allowed to exceed surplus
3270 * and won't grow the pool anywhere else. Not until one of the
3271 * sysctls are changed, or the surplus pages go out of use.
Adam Litke7893d1d2007-10-16 01:26:18 -07003272 */
Andi Kleena5516432008-07-23 21:27:41 -07003273 min_count = h->resv_huge_pages + h->nr_huge_pages - h->free_huge_pages;
Adam Litke6b0c8802007-10-16 01:26:23 -07003274 min_count = max(count, min_count);
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08003275 try_to_free_low(h, min_count, nodes_allowed);
Mike Kravetz10c6ec42021-05-04 18:35:03 -07003276
3277 /*
3278 * Collect pages to be removed on list without dropping lock
3279 */
Andi Kleena5516432008-07-23 21:27:41 -07003280 while (min_count < persistent_huge_pages(h)) {
Mike Kravetz10c6ec42021-05-04 18:35:03 -07003281 page = remove_pool_huge_page(h, nodes_allowed, 0);
3282 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283 break;
Mike Kravetz10c6ec42021-05-04 18:35:03 -07003284
3285 list_add(&page->lru, &page_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286 }
Mike Kravetz10c6ec42021-05-04 18:35:03 -07003287 /* free the pages after dropping lock */
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003288 spin_unlock_irq(&hugetlb_lock);
Mike Kravetz10c6ec42021-05-04 18:35:03 -07003289 update_and_free_pages_bulk(h, &page_list);
Muchun Songb65d4ad2021-06-30 18:47:17 -07003290 flush_free_hpage_work(h);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003291 spin_lock_irq(&hugetlb_lock);
Mike Kravetz10c6ec42021-05-04 18:35:03 -07003292
Andi Kleena5516432008-07-23 21:27:41 -07003293 while (count < persistent_huge_pages(h)) {
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08003294 if (!adjust_pool_surplus(h, nodes_allowed, 1))
Adam Litke7893d1d2007-10-16 01:26:18 -07003295 break;
3296 }
3297out:
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07003298 h->max_huge_pages = persistent_huge_pages(h);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003299 spin_unlock_irq(&hugetlb_lock);
Mike Kravetz29383962021-05-04 18:34:52 -07003300 mutex_unlock(&h->resize_lock);
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07003301
Mike Kravetzf60858f2019-09-23 15:37:35 -07003302 NODEMASK_FREE(node_alloc_noretry);
3303
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07003304 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305}
3306
Mike Kravetz79dfc692021-11-05 13:41:20 -07003307static int demote_pool_huge_page(struct hstate *h, nodemask_t *nodes_allowed)
3308 __must_hold(&hugetlb_lock)
3309{
3310 int rc = 0;
3311
3312 lockdep_assert_held(&hugetlb_lock);
3313
3314 /* We should never get here if no demote order */
3315 if (!h->demote_order) {
3316 pr_warn("HugeTLB: NULL demote order passed to demote_pool_huge_page.\n");
3317 return -EINVAL; /* internal error */
3318 }
3319
3320 /*
3321 * TODO - demote fucntionality will be added in subsequent patch
3322 */
3323 return rc;
3324}
3325
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003326#define HSTATE_ATTR_RO(_name) \
3327 static struct kobj_attribute _name##_attr = __ATTR_RO(_name)
3328
Mike Kravetz79dfc692021-11-05 13:41:20 -07003329#define HSTATE_ATTR_WO(_name) \
3330 static struct kobj_attribute _name##_attr = __ATTR_WO(_name)
3331
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003332#define HSTATE_ATTR(_name) \
3333 static struct kobj_attribute _name##_attr = \
3334 __ATTR(_name, 0644, _name##_show, _name##_store)
3335
3336static struct kobject *hugepages_kobj;
3337static struct kobject *hstate_kobjs[HUGE_MAX_HSTATE];
3338
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003339static struct hstate *kobj_to_node_hstate(struct kobject *kobj, int *nidp);
3340
3341static struct hstate *kobj_to_hstate(struct kobject *kobj, int *nidp)
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003342{
3343 int i;
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003344
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003345 for (i = 0; i < HUGE_MAX_HSTATE; i++)
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003346 if (hstate_kobjs[i] == kobj) {
3347 if (nidp)
3348 *nidp = NUMA_NO_NODE;
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003349 return &hstates[i];
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003350 }
3351
3352 return kobj_to_node_hstate(kobj, nidp);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003353}
3354
Lee Schermerhorn06808b02009-12-14 17:58:21 -08003355static ssize_t nr_hugepages_show_common(struct kobject *kobj,
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003356 struct kobj_attribute *attr, char *buf)
3357{
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003358 struct hstate *h;
3359 unsigned long nr_huge_pages;
3360 int nid;
3361
3362 h = kobj_to_hstate(kobj, &nid);
3363 if (nid == NUMA_NO_NODE)
3364 nr_huge_pages = h->nr_huge_pages;
3365 else
3366 nr_huge_pages = h->nr_huge_pages_node[nid];
3367
Joe Perchesae7a9272020-12-14 19:14:42 -08003368 return sysfs_emit(buf, "%lu\n", nr_huge_pages);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003369}
Eric B Munsonadbe8722011-01-13 15:47:27 -08003370
David Rientjes238d3c12014-08-06 16:06:51 -07003371static ssize_t __nr_hugepages_store_common(bool obey_mempolicy,
3372 struct hstate *h, int nid,
3373 unsigned long count, size_t len)
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003374{
3375 int err;
Oscar Salvador2d0adf72019-05-13 17:19:23 -07003376 nodemask_t nodes_allowed, *n_mask;
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003377
Oscar Salvador2d0adf72019-05-13 17:19:23 -07003378 if (hstate_is_gigantic(h) && !gigantic_page_runtime_supported())
3379 return -EINVAL;
Eric B Munsonadbe8722011-01-13 15:47:27 -08003380
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003381 if (nid == NUMA_NO_NODE) {
3382 /*
3383 * global hstate attribute
3384 */
3385 if (!(obey_mempolicy &&
Oscar Salvador2d0adf72019-05-13 17:19:23 -07003386 init_nodemask_of_mempolicy(&nodes_allowed)))
3387 n_mask = &node_states[N_MEMORY];
3388 else
3389 n_mask = &nodes_allowed;
3390 } else {
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003391 /*
Mike Kravetzfd875dc2019-05-13 17:19:20 -07003392 * Node specific request. count adjustment happens in
3393 * set_max_huge_pages() after acquiring hugetlb_lock.
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003394 */
Oscar Salvador2d0adf72019-05-13 17:19:23 -07003395 init_nodemask_of_node(&nodes_allowed, nid);
3396 n_mask = &nodes_allowed;
Mike Kravetzfd875dc2019-05-13 17:19:20 -07003397 }
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003398
Oscar Salvador2d0adf72019-05-13 17:19:23 -07003399 err = set_max_huge_pages(h, count, nid, n_mask);
Lee Schermerhorn06808b02009-12-14 17:58:21 -08003400
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07003401 return err ? err : len;
Lee Schermerhorn06808b02009-12-14 17:58:21 -08003402}
3403
David Rientjes238d3c12014-08-06 16:06:51 -07003404static ssize_t nr_hugepages_store_common(bool obey_mempolicy,
3405 struct kobject *kobj, const char *buf,
3406 size_t len)
3407{
3408 struct hstate *h;
3409 unsigned long count;
3410 int nid;
3411 int err;
3412
3413 err = kstrtoul(buf, 10, &count);
3414 if (err)
3415 return err;
3416
3417 h = kobj_to_hstate(kobj, &nid);
3418 return __nr_hugepages_store_common(obey_mempolicy, h, nid, count, len);
3419}
3420
Lee Schermerhorn06808b02009-12-14 17:58:21 -08003421static ssize_t nr_hugepages_show(struct kobject *kobj,
3422 struct kobj_attribute *attr, char *buf)
3423{
3424 return nr_hugepages_show_common(kobj, attr, buf);
3425}
3426
3427static ssize_t nr_hugepages_store(struct kobject *kobj,
3428 struct kobj_attribute *attr, const char *buf, size_t len)
3429{
David Rientjes238d3c12014-08-06 16:06:51 -07003430 return nr_hugepages_store_common(false, kobj, buf, len);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003431}
3432HSTATE_ATTR(nr_hugepages);
3433
Lee Schermerhorn06808b02009-12-14 17:58:21 -08003434#ifdef CONFIG_NUMA
3435
3436/*
3437 * hstate attribute for optionally mempolicy-based constraint on persistent
3438 * huge page alloc/free.
3439 */
3440static ssize_t nr_hugepages_mempolicy_show(struct kobject *kobj,
Joe Perchesae7a9272020-12-14 19:14:42 -08003441 struct kobj_attribute *attr,
3442 char *buf)
Lee Schermerhorn06808b02009-12-14 17:58:21 -08003443{
3444 return nr_hugepages_show_common(kobj, attr, buf);
3445}
3446
3447static ssize_t nr_hugepages_mempolicy_store(struct kobject *kobj,
3448 struct kobj_attribute *attr, const char *buf, size_t len)
3449{
David Rientjes238d3c12014-08-06 16:06:51 -07003450 return nr_hugepages_store_common(true, kobj, buf, len);
Lee Schermerhorn06808b02009-12-14 17:58:21 -08003451}
3452HSTATE_ATTR(nr_hugepages_mempolicy);
3453#endif
3454
3455
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003456static ssize_t nr_overcommit_hugepages_show(struct kobject *kobj,
3457 struct kobj_attribute *attr, char *buf)
3458{
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003459 struct hstate *h = kobj_to_hstate(kobj, NULL);
Joe Perchesae7a9272020-12-14 19:14:42 -08003460 return sysfs_emit(buf, "%lu\n", h->nr_overcommit_huge_pages);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003461}
Eric B Munsonadbe8722011-01-13 15:47:27 -08003462
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003463static ssize_t nr_overcommit_hugepages_store(struct kobject *kobj,
3464 struct kobj_attribute *attr, const char *buf, size_t count)
3465{
3466 int err;
3467 unsigned long input;
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003468 struct hstate *h = kobj_to_hstate(kobj, NULL);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003469
Luiz Capitulinobae7f4a2014-06-04 16:07:08 -07003470 if (hstate_is_gigantic(h))
Eric B Munsonadbe8722011-01-13 15:47:27 -08003471 return -EINVAL;
3472
Jingoo Han3dbb95f2013-09-11 14:20:25 -07003473 err = kstrtoul(buf, 10, &input);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003474 if (err)
Eric B Munson73ae31e2011-01-13 15:47:28 -08003475 return err;
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003476
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003477 spin_lock_irq(&hugetlb_lock);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003478 h->nr_overcommit_huge_pages = input;
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003479 spin_unlock_irq(&hugetlb_lock);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003480
3481 return count;
3482}
3483HSTATE_ATTR(nr_overcommit_hugepages);
3484
3485static ssize_t free_hugepages_show(struct kobject *kobj,
3486 struct kobj_attribute *attr, char *buf)
3487{
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003488 struct hstate *h;
3489 unsigned long free_huge_pages;
3490 int nid;
3491
3492 h = kobj_to_hstate(kobj, &nid);
3493 if (nid == NUMA_NO_NODE)
3494 free_huge_pages = h->free_huge_pages;
3495 else
3496 free_huge_pages = h->free_huge_pages_node[nid];
3497
Joe Perchesae7a9272020-12-14 19:14:42 -08003498 return sysfs_emit(buf, "%lu\n", free_huge_pages);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003499}
3500HSTATE_ATTR_RO(free_hugepages);
3501
3502static ssize_t resv_hugepages_show(struct kobject *kobj,
3503 struct kobj_attribute *attr, char *buf)
3504{
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003505 struct hstate *h = kobj_to_hstate(kobj, NULL);
Joe Perchesae7a9272020-12-14 19:14:42 -08003506 return sysfs_emit(buf, "%lu\n", h->resv_huge_pages);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003507}
3508HSTATE_ATTR_RO(resv_hugepages);
3509
3510static ssize_t surplus_hugepages_show(struct kobject *kobj,
3511 struct kobj_attribute *attr, char *buf)
3512{
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003513 struct hstate *h;
3514 unsigned long surplus_huge_pages;
3515 int nid;
3516
3517 h = kobj_to_hstate(kobj, &nid);
3518 if (nid == NUMA_NO_NODE)
3519 surplus_huge_pages = h->surplus_huge_pages;
3520 else
3521 surplus_huge_pages = h->surplus_huge_pages_node[nid];
3522
Joe Perchesae7a9272020-12-14 19:14:42 -08003523 return sysfs_emit(buf, "%lu\n", surplus_huge_pages);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003524}
3525HSTATE_ATTR_RO(surplus_hugepages);
3526
Mike Kravetz79dfc692021-11-05 13:41:20 -07003527static ssize_t demote_store(struct kobject *kobj,
3528 struct kobj_attribute *attr, const char *buf, size_t len)
3529{
3530 unsigned long nr_demote;
3531 unsigned long nr_available;
3532 nodemask_t nodes_allowed, *n_mask;
3533 struct hstate *h;
3534 int err = 0;
3535 int nid;
3536
3537 err = kstrtoul(buf, 10, &nr_demote);
3538 if (err)
3539 return err;
3540 h = kobj_to_hstate(kobj, &nid);
3541
3542 if (nid != NUMA_NO_NODE) {
3543 init_nodemask_of_node(&nodes_allowed, nid);
3544 n_mask = &nodes_allowed;
3545 } else {
3546 n_mask = &node_states[N_MEMORY];
3547 }
3548
3549 /* Synchronize with other sysfs operations modifying huge pages */
3550 mutex_lock(&h->resize_lock);
3551 spin_lock_irq(&hugetlb_lock);
3552
3553 while (nr_demote) {
3554 /*
3555 * Check for available pages to demote each time thorough the
3556 * loop as demote_pool_huge_page will drop hugetlb_lock.
3557 *
3558 * NOTE: demote_pool_huge_page does not yet drop hugetlb_lock
3559 * but will when full demote functionality is added in a later
3560 * patch.
3561 */
3562 if (nid != NUMA_NO_NODE)
3563 nr_available = h->free_huge_pages_node[nid];
3564 else
3565 nr_available = h->free_huge_pages;
3566 nr_available -= h->resv_huge_pages;
3567 if (!nr_available)
3568 break;
3569
3570 err = demote_pool_huge_page(h, n_mask);
3571 if (err)
3572 break;
3573
3574 nr_demote--;
3575 }
3576
3577 spin_unlock_irq(&hugetlb_lock);
3578 mutex_unlock(&h->resize_lock);
3579
3580 if (err)
3581 return err;
3582 return len;
3583}
3584HSTATE_ATTR_WO(demote);
3585
3586static ssize_t demote_size_show(struct kobject *kobj,
3587 struct kobj_attribute *attr, char *buf)
3588{
3589 int nid;
3590 struct hstate *h = kobj_to_hstate(kobj, &nid);
3591 unsigned long demote_size = (PAGE_SIZE << h->demote_order) / SZ_1K;
3592
3593 return sysfs_emit(buf, "%lukB\n", demote_size);
3594}
3595
3596static ssize_t demote_size_store(struct kobject *kobj,
3597 struct kobj_attribute *attr,
3598 const char *buf, size_t count)
3599{
3600 struct hstate *h, *demote_hstate;
3601 unsigned long demote_size;
3602 unsigned int demote_order;
3603 int nid;
3604
3605 demote_size = (unsigned long)memparse(buf, NULL);
3606
3607 demote_hstate = size_to_hstate(demote_size);
3608 if (!demote_hstate)
3609 return -EINVAL;
3610 demote_order = demote_hstate->order;
Mike Kravetza01f4392021-11-05 13:41:27 -07003611 if (demote_order < HUGETLB_PAGE_ORDER)
3612 return -EINVAL;
Mike Kravetz79dfc692021-11-05 13:41:20 -07003613
3614 /* demote order must be smaller than hstate order */
3615 h = kobj_to_hstate(kobj, &nid);
3616 if (demote_order >= h->order)
3617 return -EINVAL;
3618
3619 /* resize_lock synchronizes access to demote size and writes */
3620 mutex_lock(&h->resize_lock);
3621 h->demote_order = demote_order;
3622 mutex_unlock(&h->resize_lock);
3623
3624 return count;
3625}
3626HSTATE_ATTR(demote_size);
3627
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003628static struct attribute *hstate_attrs[] = {
3629 &nr_hugepages_attr.attr,
3630 &nr_overcommit_hugepages_attr.attr,
3631 &free_hugepages_attr.attr,
3632 &resv_hugepages_attr.attr,
3633 &surplus_hugepages_attr.attr,
Lee Schermerhorn06808b02009-12-14 17:58:21 -08003634#ifdef CONFIG_NUMA
3635 &nr_hugepages_mempolicy_attr.attr,
3636#endif
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003637 NULL,
3638};
3639
Arvind Yadav67e5ed92017-09-06 16:22:06 -07003640static const struct attribute_group hstate_attr_group = {
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003641 .attrs = hstate_attrs,
3642};
3643
Mike Kravetz79dfc692021-11-05 13:41:20 -07003644static struct attribute *hstate_demote_attrs[] = {
3645 &demote_size_attr.attr,
3646 &demote_attr.attr,
3647 NULL,
3648};
3649
3650static const struct attribute_group hstate_demote_attr_group = {
3651 .attrs = hstate_demote_attrs,
3652};
3653
Jeff Mahoney094e9532010-02-02 13:44:14 -08003654static int hugetlb_sysfs_add_hstate(struct hstate *h, struct kobject *parent,
3655 struct kobject **hstate_kobjs,
Arvind Yadav67e5ed92017-09-06 16:22:06 -07003656 const struct attribute_group *hstate_attr_group)
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003657{
3658 int retval;
Aneesh Kumar K.V972dc4d2012-07-31 16:42:00 -07003659 int hi = hstate_index(h);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003660
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003661 hstate_kobjs[hi] = kobject_create_and_add(h->name, parent);
3662 if (!hstate_kobjs[hi])
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003663 return -ENOMEM;
3664
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003665 retval = sysfs_create_group(hstate_kobjs[hi], hstate_attr_group);
Miaohe Lincc2205a2021-02-24 12:06:50 -08003666 if (retval) {
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003667 kobject_put(hstate_kobjs[hi]);
Miaohe Lincc2205a2021-02-24 12:06:50 -08003668 hstate_kobjs[hi] = NULL;
3669 }
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003670
Mike Kravetz79dfc692021-11-05 13:41:20 -07003671 if (h->demote_order) {
3672 if (sysfs_create_group(hstate_kobjs[hi],
3673 &hstate_demote_attr_group))
3674 pr_warn("HugeTLB unable to create demote interfaces for %s\n", h->name);
3675 }
3676
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003677 return retval;
3678}
3679
3680static void __init hugetlb_sysfs_init(void)
3681{
3682 struct hstate *h;
3683 int err;
3684
3685 hugepages_kobj = kobject_create_and_add("hugepages", mm_kobj);
3686 if (!hugepages_kobj)
3687 return;
3688
3689 for_each_hstate(h) {
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003690 err = hugetlb_sysfs_add_hstate(h, hugepages_kobj,
3691 hstate_kobjs, &hstate_attr_group);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003692 if (err)
Mike Kravetz282f4212020-06-03 16:00:46 -07003693 pr_err("HugeTLB: Unable to add hstate %s", h->name);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003694 }
3695}
3696
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003697#ifdef CONFIG_NUMA
3698
3699/*
3700 * node_hstate/s - associate per node hstate attributes, via their kobjects,
Kay Sievers10fbcf42011-12-21 14:48:43 -08003701 * with node devices in node_devices[] using a parallel array. The array
3702 * index of a node device or _hstate == node id.
3703 * This is here to avoid any static dependency of the node device driver, in
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003704 * the base kernel, on the hugetlb module.
3705 */
3706struct node_hstate {
3707 struct kobject *hugepages_kobj;
3708 struct kobject *hstate_kobjs[HUGE_MAX_HSTATE];
3709};
Alexander Kuleshovb4e289a2015-11-05 18:50:14 -08003710static struct node_hstate node_hstates[MAX_NUMNODES];
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003711
3712/*
Kay Sievers10fbcf42011-12-21 14:48:43 -08003713 * A subset of global hstate attributes for node devices
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003714 */
3715static struct attribute *per_node_hstate_attrs[] = {
3716 &nr_hugepages_attr.attr,
3717 &free_hugepages_attr.attr,
3718 &surplus_hugepages_attr.attr,
3719 NULL,
3720};
3721
Arvind Yadav67e5ed92017-09-06 16:22:06 -07003722static const struct attribute_group per_node_hstate_attr_group = {
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003723 .attrs = per_node_hstate_attrs,
3724};
3725
3726/*
Kay Sievers10fbcf42011-12-21 14:48:43 -08003727 * kobj_to_node_hstate - lookup global hstate for node device hstate attr kobj.
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003728 * Returns node id via non-NULL nidp.
3729 */
3730static struct hstate *kobj_to_node_hstate(struct kobject *kobj, int *nidp)
3731{
3732 int nid;
3733
3734 for (nid = 0; nid < nr_node_ids; nid++) {
3735 struct node_hstate *nhs = &node_hstates[nid];
3736 int i;
3737 for (i = 0; i < HUGE_MAX_HSTATE; i++)
3738 if (nhs->hstate_kobjs[i] == kobj) {
3739 if (nidp)
3740 *nidp = nid;
3741 return &hstates[i];
3742 }
3743 }
3744
3745 BUG();
3746 return NULL;
3747}
3748
3749/*
Kay Sievers10fbcf42011-12-21 14:48:43 -08003750 * Unregister hstate attributes from a single node device.
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003751 * No-op if no hstate attributes attached.
3752 */
Claudiu Ghioc3cd8b442013-03-04 12:46:15 +02003753static void hugetlb_unregister_node(struct node *node)
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003754{
3755 struct hstate *h;
Kay Sievers10fbcf42011-12-21 14:48:43 -08003756 struct node_hstate *nhs = &node_hstates[node->dev.id];
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003757
3758 if (!nhs->hugepages_kobj)
Lee Schermerhorn9b5e5d02009-12-14 17:58:32 -08003759 return; /* no hstate attributes */
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003760
Aneesh Kumar K.V972dc4d2012-07-31 16:42:00 -07003761 for_each_hstate(h) {
3762 int idx = hstate_index(h);
3763 if (nhs->hstate_kobjs[idx]) {
3764 kobject_put(nhs->hstate_kobjs[idx]);
3765 nhs->hstate_kobjs[idx] = NULL;
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003766 }
Aneesh Kumar K.V972dc4d2012-07-31 16:42:00 -07003767 }
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003768
3769 kobject_put(nhs->hugepages_kobj);
3770 nhs->hugepages_kobj = NULL;
3771}
3772
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003773
3774/*
Kay Sievers10fbcf42011-12-21 14:48:43 -08003775 * Register hstate attributes for a single node device.
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003776 * No-op if attributes already registered.
3777 */
Claudiu Ghioc3cd8b442013-03-04 12:46:15 +02003778static void hugetlb_register_node(struct node *node)
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003779{
3780 struct hstate *h;
Kay Sievers10fbcf42011-12-21 14:48:43 -08003781 struct node_hstate *nhs = &node_hstates[node->dev.id];
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003782 int err;
3783
3784 if (nhs->hugepages_kobj)
3785 return; /* already allocated */
3786
3787 nhs->hugepages_kobj = kobject_create_and_add("hugepages",
Kay Sievers10fbcf42011-12-21 14:48:43 -08003788 &node->dev.kobj);
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003789 if (!nhs->hugepages_kobj)
3790 return;
3791
3792 for_each_hstate(h) {
3793 err = hugetlb_sysfs_add_hstate(h, nhs->hugepages_kobj,
3794 nhs->hstate_kobjs,
3795 &per_node_hstate_attr_group);
3796 if (err) {
Mike Kravetz282f4212020-06-03 16:00:46 -07003797 pr_err("HugeTLB: Unable to add hstate %s for node %d\n",
Andrew Mortonffb22af2013-02-22 16:32:08 -08003798 h->name, node->dev.id);
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003799 hugetlb_unregister_node(node);
3800 break;
3801 }
3802 }
3803}
3804
3805/*
Lee Schermerhorn9b5e5d02009-12-14 17:58:32 -08003806 * hugetlb init time: register hstate attributes for all registered node
Kay Sievers10fbcf42011-12-21 14:48:43 -08003807 * devices of nodes that have memory. All on-line nodes should have
3808 * registered their associated device by this time.
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003809 */
Luiz Capitulino7d9ca002014-12-12 16:55:24 -08003810static void __init hugetlb_register_all_nodes(void)
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003811{
3812 int nid;
3813
Lai Jiangshan8cebfcd2012-12-12 13:51:36 -08003814 for_each_node_state(nid, N_MEMORY) {
Wen Congyang87327942012-12-11 16:00:56 -08003815 struct node *node = node_devices[nid];
Kay Sievers10fbcf42011-12-21 14:48:43 -08003816 if (node->dev.id == nid)
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003817 hugetlb_register_node(node);
3818 }
3819
3820 /*
Kay Sievers10fbcf42011-12-21 14:48:43 -08003821 * Let the node device driver know we're here so it can
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003822 * [un]register hstate attributes on node hotplug.
3823 */
3824 register_hugetlbfs_with_node(hugetlb_register_node,
3825 hugetlb_unregister_node);
3826}
3827#else /* !CONFIG_NUMA */
3828
3829static struct hstate *kobj_to_node_hstate(struct kobject *kobj, int *nidp)
3830{
3831 BUG();
3832 if (nidp)
3833 *nidp = -1;
3834 return NULL;
3835}
3836
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003837static void hugetlb_register_all_nodes(void) { }
3838
3839#endif
3840
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003841static int __init hugetlb_init(void)
3842{
Davidlohr Bueso8382d912014-04-03 14:47:31 -07003843 int i;
3844
Mike Kravetzd6995da2021-02-24 12:08:51 -08003845 BUILD_BUG_ON(sizeof_field(struct page, private) * BITS_PER_BYTE <
3846 __NR_HPAGEFLAGS);
3847
Mike Kravetzc2833a52020-06-03 16:00:50 -07003848 if (!hugepages_supported()) {
3849 if (hugetlb_max_hstate || default_hstate_max_huge_pages)
3850 pr_warn("HugeTLB: huge pages not supported, ignoring associated command-line parameters\n");
Benjamin Herrenschmidt0ef89d22008-07-31 00:07:30 -07003851 return 0;
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003852 }
Vaishali Thakkarf8b74812016-02-17 13:11:26 -08003853
Mike Kravetz282f4212020-06-03 16:00:46 -07003854 /*
3855 * Make sure HPAGE_SIZE (HUGETLB_PAGE_ORDER) hstate exists. Some
3856 * architectures depend on setup being done here.
3857 */
3858 hugetlb_add_hstate(HUGETLB_PAGE_ORDER);
3859 if (!parsed_default_hugepagesz) {
3860 /*
3861 * If we did not parse a default huge page size, set
3862 * default_hstate_idx to HPAGE_SIZE hstate. And, if the
3863 * number of huge pages for this default size was implicitly
3864 * specified, set that here as well.
3865 * Note that the implicit setting will overwrite an explicit
3866 * setting. A warning will be printed in this case.
3867 */
3868 default_hstate_idx = hstate_index(size_to_hstate(HPAGE_SIZE));
3869 if (default_hstate_max_huge_pages) {
3870 if (default_hstate.max_huge_pages) {
3871 char buf[32];
Andi Kleenaa888a72008-07-23 21:27:47 -07003872
Mike Kravetz282f4212020-06-03 16:00:46 -07003873 string_get_size(huge_page_size(&default_hstate),
3874 1, STRING_UNITS_2, buf, 32);
3875 pr_warn("HugeTLB: Ignoring hugepages=%lu associated with %s page size\n",
3876 default_hstate.max_huge_pages, buf);
3877 pr_warn("HugeTLB: Using hugepages=%lu for number of default huge pages\n",
3878 default_hstate_max_huge_pages);
3879 }
3880 default_hstate.max_huge_pages =
3881 default_hstate_max_huge_pages;
3882 }
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003883 }
Andi Kleenaa888a72008-07-23 21:27:47 -07003884
Roman Gushchincf11e852020-04-10 14:32:45 -07003885 hugetlb_cma_check();
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003886 hugetlb_init_hstates();
Andi Kleenaa888a72008-07-23 21:27:47 -07003887 gather_bootmem_prealloc();
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003888 report_hugepages();
3889
3890 hugetlb_sysfs_init();
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003891 hugetlb_register_all_nodes();
Jianguo Wu7179e7b2012-12-18 14:23:19 -08003892 hugetlb_cgroup_file_init();
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003893
Davidlohr Bueso8382d912014-04-03 14:47:31 -07003894#ifdef CONFIG_SMP
3895 num_fault_mutexes = roundup_pow_of_two(8 * num_possible_cpus());
3896#else
3897 num_fault_mutexes = 1;
3898#endif
Mike Kravetzc672c7f2015-09-08 15:01:35 -07003899 hugetlb_fault_mutex_table =
Kees Cook6da2ec52018-06-12 13:55:00 -07003900 kmalloc_array(num_fault_mutexes, sizeof(struct mutex),
3901 GFP_KERNEL);
Mike Kravetzc672c7f2015-09-08 15:01:35 -07003902 BUG_ON(!hugetlb_fault_mutex_table);
Davidlohr Bueso8382d912014-04-03 14:47:31 -07003903
3904 for (i = 0; i < num_fault_mutexes; i++)
Mike Kravetzc672c7f2015-09-08 15:01:35 -07003905 mutex_init(&hugetlb_fault_mutex_table[i]);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003906 return 0;
3907}
Paul Gortmaker3e89e1c2016-01-14 15:21:52 -08003908subsys_initcall(hugetlb_init);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003909
Mike Kravetzae94da82020-06-03 16:00:34 -07003910/* Overwritten by architectures with more huge page sizes */
3911bool __init __attribute((weak)) arch_hugetlb_valid_size(unsigned long size)
Vaishali Thakkar9fee0212016-05-19 17:11:04 -07003912{
Mike Kravetzae94da82020-06-03 16:00:34 -07003913 return size == HPAGE_SIZE;
Vaishali Thakkar9fee0212016-05-19 17:11:04 -07003914}
3915
Kirill A. Shutemovd00181b2015-11-06 16:29:57 -08003916void __init hugetlb_add_hstate(unsigned int order)
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003917{
3918 struct hstate *h;
Andi Kleen8faa8b02008-07-23 21:27:48 -07003919 unsigned long i;
3920
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003921 if (size_to_hstate(PAGE_SIZE << order)) {
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003922 return;
3923 }
Aneesh Kumar K.V47d38342012-07-31 16:41:54 -07003924 BUG_ON(hugetlb_max_hstate >= HUGE_MAX_HSTATE);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003925 BUG_ON(order == 0);
Aneesh Kumar K.V47d38342012-07-31 16:41:54 -07003926 h = &hstates[hugetlb_max_hstate++];
Mike Kravetz29383962021-05-04 18:34:52 -07003927 mutex_init(&h->resize_lock);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003928 h->order = order;
Miaohe Linaca78302021-02-24 12:07:46 -08003929 h->mask = ~(huge_page_size(h) - 1);
Andi Kleen8faa8b02008-07-23 21:27:48 -07003930 for (i = 0; i < MAX_NUMNODES; ++i)
3931 INIT_LIST_HEAD(&h->hugepage_freelists[i]);
Aneesh Kumar K.V0edaecf2012-07-31 16:42:07 -07003932 INIT_LIST_HEAD(&h->hugepage_activelist);
Andrew Morton54f18d32016-05-19 17:11:40 -07003933 h->next_nid_to_alloc = first_memory_node;
3934 h->next_nid_to_free = first_memory_node;
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003935 snprintf(h->name, HSTATE_NAME_LEN, "hugepages-%lukB",
3936 huge_page_size(h)/1024);
Muchun Song77490582021-06-30 18:47:33 -07003937 hugetlb_vmemmap_init(h);
Andi Kleen8faa8b02008-07-23 21:27:48 -07003938
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003939 parsed_hstate = h;
3940}
3941
Mike Kravetz282f4212020-06-03 16:00:46 -07003942/*
3943 * hugepages command line processing
3944 * hugepages normally follows a valid hugepagsz or default_hugepagsz
3945 * specification. If not, ignore the hugepages value. hugepages can also
3946 * be the first huge page command line option in which case it implicitly
3947 * specifies the number of huge pages for the default size.
3948 */
3949static int __init hugepages_setup(char *s)
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003950{
3951 unsigned long *mhp;
Andi Kleen8faa8b02008-07-23 21:27:48 -07003952 static unsigned long *last_mhp;
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003953
Vaishali Thakkar9fee0212016-05-19 17:11:04 -07003954 if (!parsed_valid_hugepagesz) {
Mike Kravetz282f4212020-06-03 16:00:46 -07003955 pr_warn("HugeTLB: hugepages=%s does not follow a valid hugepagesz, ignoring\n", s);
Vaishali Thakkar9fee0212016-05-19 17:11:04 -07003956 parsed_valid_hugepagesz = true;
Mike Kravetz282f4212020-06-03 16:00:46 -07003957 return 0;
Vaishali Thakkar9fee0212016-05-19 17:11:04 -07003958 }
Mike Kravetz282f4212020-06-03 16:00:46 -07003959
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003960 /*
Mike Kravetz282f4212020-06-03 16:00:46 -07003961 * !hugetlb_max_hstate means we haven't parsed a hugepagesz= parameter
3962 * yet, so this hugepages= parameter goes to the "default hstate".
3963 * Otherwise, it goes with the previously parsed hugepagesz or
3964 * default_hugepagesz.
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003965 */
Vaishali Thakkar9fee0212016-05-19 17:11:04 -07003966 else if (!hugetlb_max_hstate)
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003967 mhp = &default_hstate_max_huge_pages;
3968 else
3969 mhp = &parsed_hstate->max_huge_pages;
3970
Andi Kleen8faa8b02008-07-23 21:27:48 -07003971 if (mhp == last_mhp) {
Mike Kravetz282f4212020-06-03 16:00:46 -07003972 pr_warn("HugeTLB: hugepages= specified twice without interleaving hugepagesz=, ignoring hugepages=%s\n", s);
3973 return 0;
Andi Kleen8faa8b02008-07-23 21:27:48 -07003974 }
3975
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003976 if (sscanf(s, "%lu", mhp) <= 0)
3977 *mhp = 0;
3978
Andi Kleen8faa8b02008-07-23 21:27:48 -07003979 /*
3980 * Global state is always initialized later in hugetlb_init.
Miaohe Lin04adbc32021-05-04 18:33:22 -07003981 * But we need to allocate gigantic hstates here early to still
Andi Kleen8faa8b02008-07-23 21:27:48 -07003982 * use the bootmem allocator.
3983 */
Miaohe Lin04adbc32021-05-04 18:33:22 -07003984 if (hugetlb_max_hstate && hstate_is_gigantic(parsed_hstate))
Andi Kleen8faa8b02008-07-23 21:27:48 -07003985 hugetlb_hstate_alloc_pages(parsed_hstate);
3986
3987 last_mhp = mhp;
3988
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003989 return 1;
3990}
Mike Kravetz282f4212020-06-03 16:00:46 -07003991__setup("hugepages=", hugepages_setup);
Nick Piggine11bfbf2008-07-23 21:27:52 -07003992
Mike Kravetz282f4212020-06-03 16:00:46 -07003993/*
3994 * hugepagesz command line processing
3995 * A specific huge page size can only be specified once with hugepagesz.
3996 * hugepagesz is followed by hugepages on the command line. The global
3997 * variable 'parsed_valid_hugepagesz' is used to determine if prior
3998 * hugepagesz argument was valid.
3999 */
Mike Kravetz359f2542020-06-03 16:00:38 -07004000static int __init hugepagesz_setup(char *s)
Nick Piggine11bfbf2008-07-23 21:27:52 -07004001{
Mike Kravetz359f2542020-06-03 16:00:38 -07004002 unsigned long size;
Mike Kravetz282f4212020-06-03 16:00:46 -07004003 struct hstate *h;
4004
4005 parsed_valid_hugepagesz = false;
Mike Kravetz359f2542020-06-03 16:00:38 -07004006 size = (unsigned long)memparse(s, NULL);
4007
4008 if (!arch_hugetlb_valid_size(size)) {
Mike Kravetz282f4212020-06-03 16:00:46 -07004009 pr_err("HugeTLB: unsupported hugepagesz=%s\n", s);
Mike Kravetz359f2542020-06-03 16:00:38 -07004010 return 0;
4011 }
4012
Mike Kravetz282f4212020-06-03 16:00:46 -07004013 h = size_to_hstate(size);
4014 if (h) {
4015 /*
4016 * hstate for this size already exists. This is normally
4017 * an error, but is allowed if the existing hstate is the
4018 * default hstate. More specifically, it is only allowed if
4019 * the number of huge pages for the default hstate was not
4020 * previously specified.
4021 */
4022 if (!parsed_default_hugepagesz || h != &default_hstate ||
4023 default_hstate.max_huge_pages) {
4024 pr_warn("HugeTLB: hugepagesz=%s specified twice, ignoring\n", s);
4025 return 0;
4026 }
4027
4028 /*
4029 * No need to call hugetlb_add_hstate() as hstate already
4030 * exists. But, do set parsed_hstate so that a following
4031 * hugepages= parameter will be applied to this hstate.
4032 */
4033 parsed_hstate = h;
4034 parsed_valid_hugepagesz = true;
4035 return 1;
Mike Kravetz38237832020-06-03 16:00:42 -07004036 }
4037
Mike Kravetz359f2542020-06-03 16:00:38 -07004038 hugetlb_add_hstate(ilog2(size) - PAGE_SHIFT);
Mike Kravetz282f4212020-06-03 16:00:46 -07004039 parsed_valid_hugepagesz = true;
Nick Piggine11bfbf2008-07-23 21:27:52 -07004040 return 1;
4041}
Mike Kravetz359f2542020-06-03 16:00:38 -07004042__setup("hugepagesz=", hugepagesz_setup);
4043
Mike Kravetz282f4212020-06-03 16:00:46 -07004044/*
4045 * default_hugepagesz command line input
4046 * Only one instance of default_hugepagesz allowed on command line.
4047 */
Mike Kravetzae94da82020-06-03 16:00:34 -07004048static int __init default_hugepagesz_setup(char *s)
Nick Piggine11bfbf2008-07-23 21:27:52 -07004049{
Mike Kravetzae94da82020-06-03 16:00:34 -07004050 unsigned long size;
4051
Mike Kravetz282f4212020-06-03 16:00:46 -07004052 parsed_valid_hugepagesz = false;
Mike Kravetz282f4212020-06-03 16:00:46 -07004053 if (parsed_default_hugepagesz) {
4054 pr_err("HugeTLB: default_hugepagesz previously specified, ignoring %s\n", s);
4055 return 0;
4056 }
4057
4058 size = (unsigned long)memparse(s, NULL);
4059
4060 if (!arch_hugetlb_valid_size(size)) {
4061 pr_err("HugeTLB: unsupported default_hugepagesz=%s\n", s);
4062 return 0;
4063 }
4064
4065 hugetlb_add_hstate(ilog2(size) - PAGE_SHIFT);
4066 parsed_valid_hugepagesz = true;
4067 parsed_default_hugepagesz = true;
4068 default_hstate_idx = hstate_index(size_to_hstate(size));
4069
4070 /*
4071 * The number of default huge pages (for this size) could have been
4072 * specified as the first hugetlb parameter: hugepages=X. If so,
4073 * then default_hstate_max_huge_pages is set. If the default huge
4074 * page size is gigantic (>= MAX_ORDER), then the pages must be
4075 * allocated here from bootmem allocator.
4076 */
4077 if (default_hstate_max_huge_pages) {
4078 default_hstate.max_huge_pages = default_hstate_max_huge_pages;
4079 if (hstate_is_gigantic(&default_hstate))
4080 hugetlb_hstate_alloc_pages(&default_hstate);
4081 default_hstate_max_huge_pages = 0;
4082 }
4083
Nick Piggine11bfbf2008-07-23 21:27:52 -07004084 return 1;
4085}
Mike Kravetzae94da82020-06-03 16:00:34 -07004086__setup("default_hugepagesz=", default_hugepagesz_setup);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004087
Muchun Song8ca39e62020-08-11 18:30:32 -07004088static unsigned int allowed_mems_nr(struct hstate *h)
Nishanth Aravamudan8a213462008-07-25 19:44:37 -07004089{
4090 int node;
4091 unsigned int nr = 0;
Muchun Song8ca39e62020-08-11 18:30:32 -07004092 nodemask_t *mpol_allowed;
4093 unsigned int *array = h->free_huge_pages_node;
4094 gfp_t gfp_mask = htlb_alloc_mask(h);
Nishanth Aravamudan8a213462008-07-25 19:44:37 -07004095
Muchun Song8ca39e62020-08-11 18:30:32 -07004096 mpol_allowed = policy_nodemask_current(gfp_mask);
4097
4098 for_each_node_mask(node, cpuset_current_mems_allowed) {
Jiapeng Zhongc93b0a92021-02-24 12:07:09 -08004099 if (!mpol_allowed || node_isset(node, *mpol_allowed))
Muchun Song8ca39e62020-08-11 18:30:32 -07004100 nr += array[node];
4101 }
Nishanth Aravamudan8a213462008-07-25 19:44:37 -07004102
4103 return nr;
4104}
4105
4106#ifdef CONFIG_SYSCTL
Muchun Song17743792020-09-04 16:36:13 -07004107static int proc_hugetlb_doulongvec_minmax(struct ctl_table *table, int write,
4108 void *buffer, size_t *length,
4109 loff_t *ppos, unsigned long *out)
4110{
4111 struct ctl_table dup_table;
4112
4113 /*
4114 * In order to avoid races with __do_proc_doulongvec_minmax(), we
4115 * can duplicate the @table and alter the duplicate of it.
4116 */
4117 dup_table = *table;
4118 dup_table.data = out;
4119
4120 return proc_doulongvec_minmax(&dup_table, write, buffer, length, ppos);
4121}
4122
Lee Schermerhorn06808b02009-12-14 17:58:21 -08004123static int hugetlb_sysctl_handler_common(bool obey_mempolicy,
4124 struct ctl_table *table, int write,
Christoph Hellwig32927392020-04-24 08:43:38 +02004125 void *buffer, size_t *length, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126{
Andi Kleene5ff2152008-07-23 21:27:42 -07004127 struct hstate *h = &default_hstate;
David Rientjes238d3c12014-08-06 16:06:51 -07004128 unsigned long tmp = h->max_huge_pages;
Michal Hocko08d4a242011-01-13 15:47:26 -08004129 int ret;
Andi Kleene5ff2152008-07-23 21:27:42 -07004130
Nishanth Aravamudan457c1b22014-05-06 12:50:00 -07004131 if (!hugepages_supported())
Jan Stancek86613622016-03-09 14:08:35 -08004132 return -EOPNOTSUPP;
Nishanth Aravamudan457c1b22014-05-06 12:50:00 -07004133
Muchun Song17743792020-09-04 16:36:13 -07004134 ret = proc_hugetlb_doulongvec_minmax(table, write, buffer, length, ppos,
4135 &tmp);
Michal Hocko08d4a242011-01-13 15:47:26 -08004136 if (ret)
4137 goto out;
Andi Kleene5ff2152008-07-23 21:27:42 -07004138
David Rientjes238d3c12014-08-06 16:06:51 -07004139 if (write)
4140 ret = __nr_hugepages_store_common(obey_mempolicy, h,
4141 NUMA_NO_NODE, tmp, *length);
Michal Hocko08d4a242011-01-13 15:47:26 -08004142out:
4143 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144}
Mel Gorman396faf02007-07-17 04:03:13 -07004145
Lee Schermerhorn06808b02009-12-14 17:58:21 -08004146int hugetlb_sysctl_handler(struct ctl_table *table, int write,
Christoph Hellwig32927392020-04-24 08:43:38 +02004147 void *buffer, size_t *length, loff_t *ppos)
Lee Schermerhorn06808b02009-12-14 17:58:21 -08004148{
4149
4150 return hugetlb_sysctl_handler_common(false, table, write,
4151 buffer, length, ppos);
4152}
4153
4154#ifdef CONFIG_NUMA
4155int hugetlb_mempolicy_sysctl_handler(struct ctl_table *table, int write,
Christoph Hellwig32927392020-04-24 08:43:38 +02004156 void *buffer, size_t *length, loff_t *ppos)
Lee Schermerhorn06808b02009-12-14 17:58:21 -08004157{
4158 return hugetlb_sysctl_handler_common(true, table, write,
4159 buffer, length, ppos);
4160}
4161#endif /* CONFIG_NUMA */
4162
Nishanth Aravamudana3d0c6a2008-02-08 04:18:18 -08004163int hugetlb_overcommit_handler(struct ctl_table *table, int write,
Christoph Hellwig32927392020-04-24 08:43:38 +02004164 void *buffer, size_t *length, loff_t *ppos)
Nishanth Aravamudana3d0c6a2008-02-08 04:18:18 -08004165{
Andi Kleena5516432008-07-23 21:27:41 -07004166 struct hstate *h = &default_hstate;
Andi Kleene5ff2152008-07-23 21:27:42 -07004167 unsigned long tmp;
Michal Hocko08d4a242011-01-13 15:47:26 -08004168 int ret;
Andi Kleene5ff2152008-07-23 21:27:42 -07004169
Nishanth Aravamudan457c1b22014-05-06 12:50:00 -07004170 if (!hugepages_supported())
Jan Stancek86613622016-03-09 14:08:35 -08004171 return -EOPNOTSUPP;
Nishanth Aravamudan457c1b22014-05-06 12:50:00 -07004172
Petr Holasekc033a932011-03-22 16:33:05 -07004173 tmp = h->nr_overcommit_huge_pages;
Andi Kleene5ff2152008-07-23 21:27:42 -07004174
Luiz Capitulinobae7f4a2014-06-04 16:07:08 -07004175 if (write && hstate_is_gigantic(h))
Eric B Munsonadbe8722011-01-13 15:47:27 -08004176 return -EINVAL;
4177
Muchun Song17743792020-09-04 16:36:13 -07004178 ret = proc_hugetlb_doulongvec_minmax(table, write, buffer, length, ppos,
4179 &tmp);
Michal Hocko08d4a242011-01-13 15:47:26 -08004180 if (ret)
4181 goto out;
Andi Kleene5ff2152008-07-23 21:27:42 -07004182
4183 if (write) {
Mike Kravetzdb71ef72021-05-04 18:35:07 -07004184 spin_lock_irq(&hugetlb_lock);
Andi Kleene5ff2152008-07-23 21:27:42 -07004185 h->nr_overcommit_huge_pages = tmp;
Mike Kravetzdb71ef72021-05-04 18:35:07 -07004186 spin_unlock_irq(&hugetlb_lock);
Andi Kleene5ff2152008-07-23 21:27:42 -07004187 }
Michal Hocko08d4a242011-01-13 15:47:26 -08004188out:
4189 return ret;
Nishanth Aravamudana3d0c6a2008-02-08 04:18:18 -08004190}
4191
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192#endif /* CONFIG_SYSCTL */
4193
Alexey Dobriyane1759c22008-10-15 23:50:22 +04004194void hugetlb_report_meminfo(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195{
Roman Gushchinfcb2b0c2018-01-31 16:16:22 -08004196 struct hstate *h;
4197 unsigned long total = 0;
4198
Nishanth Aravamudan457c1b22014-05-06 12:50:00 -07004199 if (!hugepages_supported())
4200 return;
Roman Gushchinfcb2b0c2018-01-31 16:16:22 -08004201
4202 for_each_hstate(h) {
4203 unsigned long count = h->nr_huge_pages;
4204
Miaohe Linaca78302021-02-24 12:07:46 -08004205 total += huge_page_size(h) * count;
Roman Gushchinfcb2b0c2018-01-31 16:16:22 -08004206
4207 if (h == &default_hstate)
4208 seq_printf(m,
4209 "HugePages_Total: %5lu\n"
4210 "HugePages_Free: %5lu\n"
4211 "HugePages_Rsvd: %5lu\n"
4212 "HugePages_Surp: %5lu\n"
4213 "Hugepagesize: %8lu kB\n",
4214 count,
4215 h->free_huge_pages,
4216 h->resv_huge_pages,
4217 h->surplus_huge_pages,
Miaohe Linaca78302021-02-24 12:07:46 -08004218 huge_page_size(h) / SZ_1K);
Roman Gushchinfcb2b0c2018-01-31 16:16:22 -08004219 }
4220
Miaohe Linaca78302021-02-24 12:07:46 -08004221 seq_printf(m, "Hugetlb: %8lu kB\n", total / SZ_1K);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222}
4223
Joe Perches79815932020-09-16 13:40:43 -07004224int hugetlb_report_node_meminfo(char *buf, int len, int nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225{
Andi Kleena5516432008-07-23 21:27:41 -07004226 struct hstate *h = &default_hstate;
Joe Perches79815932020-09-16 13:40:43 -07004227
Nishanth Aravamudan457c1b22014-05-06 12:50:00 -07004228 if (!hugepages_supported())
4229 return 0;
Joe Perches79815932020-09-16 13:40:43 -07004230
4231 return sysfs_emit_at(buf, len,
4232 "Node %d HugePages_Total: %5u\n"
4233 "Node %d HugePages_Free: %5u\n"
4234 "Node %d HugePages_Surp: %5u\n",
4235 nid, h->nr_huge_pages_node[nid],
4236 nid, h->free_huge_pages_node[nid],
4237 nid, h->surplus_huge_pages_node[nid]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004238}
4239
David Rientjes949f7ec2013-04-29 15:07:48 -07004240void hugetlb_show_meminfo(void)
4241{
4242 struct hstate *h;
4243 int nid;
4244
Nishanth Aravamudan457c1b22014-05-06 12:50:00 -07004245 if (!hugepages_supported())
4246 return;
4247
David Rientjes949f7ec2013-04-29 15:07:48 -07004248 for_each_node_state(nid, N_MEMORY)
4249 for_each_hstate(h)
4250 pr_info("Node %d hugepages_total=%u hugepages_free=%u hugepages_surp=%u hugepages_size=%lukB\n",
4251 nid,
4252 h->nr_huge_pages_node[nid],
4253 h->free_huge_pages_node[nid],
4254 h->surplus_huge_pages_node[nid],
Miaohe Linaca78302021-02-24 12:07:46 -08004255 huge_page_size(h) / SZ_1K);
David Rientjes949f7ec2013-04-29 15:07:48 -07004256}
4257
Naoya Horiguchi5d317b22015-11-05 18:47:14 -08004258void hugetlb_report_usage(struct seq_file *m, struct mm_struct *mm)
4259{
4260 seq_printf(m, "HugetlbPages:\t%8lu kB\n",
4261 atomic_long_read(&mm->hugetlb_usage) << (PAGE_SHIFT - 10));
4262}
4263
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264/* Return the number pages of memory we physically have, in PAGE_SIZE units. */
4265unsigned long hugetlb_total_pages(void)
4266{
Wanpeng Lid0028582013-03-22 15:04:40 -07004267 struct hstate *h;
4268 unsigned long nr_total_pages = 0;
4269
4270 for_each_hstate(h)
4271 nr_total_pages += h->nr_huge_pages * pages_per_huge_page(h);
4272 return nr_total_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274
Andi Kleena5516432008-07-23 21:27:41 -07004275static int hugetlb_acct_memory(struct hstate *h, long delta)
Mel Gormanfc1b8a72008-07-23 21:27:22 -07004276{
4277 int ret = -ENOMEM;
4278
Miaohe Lin0aa7f352021-02-24 12:06:57 -08004279 if (!delta)
4280 return 0;
4281
Mike Kravetzdb71ef72021-05-04 18:35:07 -07004282 spin_lock_irq(&hugetlb_lock);
Mel Gormanfc1b8a72008-07-23 21:27:22 -07004283 /*
4284 * When cpuset is configured, it breaks the strict hugetlb page
4285 * reservation as the accounting is done on a global variable. Such
4286 * reservation is completely rubbish in the presence of cpuset because
4287 * the reservation is not checked against page availability for the
4288 * current cpuset. Application can still potentially OOM'ed by kernel
4289 * with lack of free htlb page in cpuset that the task is in.
4290 * Attempt to enforce strict accounting with cpuset is almost
4291 * impossible (or too ugly) because cpuset is too fluid that
4292 * task or memory node can be dynamically moved between cpusets.
4293 *
4294 * The change of semantics for shared hugetlb mapping with cpuset is
4295 * undesirable. However, in order to preserve some of the semantics,
4296 * we fall back to check against current free page availability as
4297 * a best attempt and hopefully to minimize the impact of changing
4298 * semantics that cpuset has.
Muchun Song8ca39e62020-08-11 18:30:32 -07004299 *
4300 * Apart from cpuset, we also have memory policy mechanism that
4301 * also determines from which node the kernel will allocate memory
4302 * in a NUMA system. So similar to cpuset, we also should consider
4303 * the memory policy of the current task. Similar to the description
4304 * above.
Mel Gormanfc1b8a72008-07-23 21:27:22 -07004305 */
4306 if (delta > 0) {
Andi Kleena5516432008-07-23 21:27:41 -07004307 if (gather_surplus_pages(h, delta) < 0)
Mel Gormanfc1b8a72008-07-23 21:27:22 -07004308 goto out;
4309
Muchun Song8ca39e62020-08-11 18:30:32 -07004310 if (delta > allowed_mems_nr(h)) {
Andi Kleena5516432008-07-23 21:27:41 -07004311 return_unused_surplus_pages(h, delta);
Mel Gormanfc1b8a72008-07-23 21:27:22 -07004312 goto out;
4313 }
4314 }
4315
4316 ret = 0;
4317 if (delta < 0)
Andi Kleena5516432008-07-23 21:27:41 -07004318 return_unused_surplus_pages(h, (unsigned long) -delta);
Mel Gormanfc1b8a72008-07-23 21:27:22 -07004319
4320out:
Mike Kravetzdb71ef72021-05-04 18:35:07 -07004321 spin_unlock_irq(&hugetlb_lock);
Mel Gormanfc1b8a72008-07-23 21:27:22 -07004322 return ret;
4323}
4324
Andy Whitcroft84afd992008-07-23 21:27:32 -07004325static void hugetlb_vm_op_open(struct vm_area_struct *vma)
4326{
Joonsoo Kimf522c3a2013-09-11 14:21:53 -07004327 struct resv_map *resv = vma_resv_map(vma);
Andy Whitcroft84afd992008-07-23 21:27:32 -07004328
4329 /*
4330 * This new VMA should share its siblings reservation map if present.
4331 * The VMA will only ever have a valid reservation map pointer where
4332 * it is being copied for another still existing VMA. As that VMA
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004333 * has a reference to the reservation map it cannot disappear until
Andy Whitcroft84afd992008-07-23 21:27:32 -07004334 * after this open call completes. It is therefore safe to take a
4335 * new reference here without additional locking.
4336 */
Mike Kravetz09a26e82021-09-02 14:58:53 -07004337 if (resv && is_vma_resv_set(vma, HPAGE_RESV_OWNER)) {
4338 resv_map_dup_hugetlb_cgroup_uncharge_info(resv);
Joonsoo Kimf522c3a2013-09-11 14:21:53 -07004339 kref_get(&resv->refs);
Mike Kravetz09a26e82021-09-02 14:58:53 -07004340 }
Andy Whitcroft84afd992008-07-23 21:27:32 -07004341}
4342
Mel Gormana1e78772008-07-23 21:27:23 -07004343static void hugetlb_vm_op_close(struct vm_area_struct *vma)
4344{
Andi Kleena5516432008-07-23 21:27:41 -07004345 struct hstate *h = hstate_vma(vma);
Joonsoo Kimf522c3a2013-09-11 14:21:53 -07004346 struct resv_map *resv = vma_resv_map(vma);
David Gibson90481622012-03-21 16:34:12 -07004347 struct hugepage_subpool *spool = subpool_vma(vma);
Joonsoo Kim4e35f482014-04-03 14:47:30 -07004348 unsigned long reserve, start, end;
Mike Kravetz1c5ecae2015-04-15 16:13:39 -07004349 long gbl_reserve;
Andy Whitcroft84afd992008-07-23 21:27:32 -07004350
Joonsoo Kim4e35f482014-04-03 14:47:30 -07004351 if (!resv || !is_vma_resv_set(vma, HPAGE_RESV_OWNER))
4352 return;
Andy Whitcroft84afd992008-07-23 21:27:32 -07004353
Joonsoo Kim4e35f482014-04-03 14:47:30 -07004354 start = vma_hugecache_offset(h, vma, vma->vm_start);
4355 end = vma_hugecache_offset(h, vma, vma->vm_end);
Andy Whitcroft84afd992008-07-23 21:27:32 -07004356
Joonsoo Kim4e35f482014-04-03 14:47:30 -07004357 reserve = (end - start) - region_count(resv, start, end);
Mina Almasrye9fe92a2020-04-01 21:11:21 -07004358 hugetlb_cgroup_uncharge_counter(resv, start, end);
Joonsoo Kim4e35f482014-04-03 14:47:30 -07004359 if (reserve) {
Mike Kravetz1c5ecae2015-04-15 16:13:39 -07004360 /*
4361 * Decrement reserve counts. The global reserve count may be
4362 * adjusted if the subpool has a minimum size.
4363 */
4364 gbl_reserve = hugepage_subpool_put_pages(spool, reserve);
4365 hugetlb_acct_memory(h, -gbl_reserve);
Andy Whitcroft84afd992008-07-23 21:27:32 -07004366 }
Mina Almasrye9fe92a2020-04-01 21:11:21 -07004367
4368 kref_put(&resv->refs, resv_map_release);
Mel Gormana1e78772008-07-23 21:27:23 -07004369}
4370
Dan Williams31383c62017-11-29 16:10:28 -08004371static int hugetlb_vm_op_split(struct vm_area_struct *vma, unsigned long addr)
4372{
4373 if (addr & ~(huge_page_mask(hstate_vma(vma))))
4374 return -EINVAL;
4375 return 0;
4376}
4377
Dan Williams05ea8862018-04-05 16:24:25 -07004378static unsigned long hugetlb_vm_op_pagesize(struct vm_area_struct *vma)
4379{
Miaohe Linaca78302021-02-24 12:07:46 -08004380 return huge_page_size(hstate_vma(vma));
Dan Williams05ea8862018-04-05 16:24:25 -07004381}
4382
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383/*
4384 * We cannot handle pagefaults against hugetlb pages at all. They cause
4385 * handle_mm_fault() to try to instantiate regular-sized pages in the
Miaohe Lin6c26d312021-02-24 12:07:19 -08004386 * hugepage VMA. do_page_fault() is supposed to trap this, so BUG is we get
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387 * this far.
4388 */
Souptick Joarderb3ec9f32018-06-07 17:08:04 -07004389static vm_fault_t hugetlb_vm_op_fault(struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390{
4391 BUG();
Nick Piggind0217ac2007-07-19 01:47:03 -07004392 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393}
4394
Jane Chueec36362018-08-02 15:36:05 -07004395/*
4396 * When a new function is introduced to vm_operations_struct and added
4397 * to hugetlb_vm_ops, please consider adding the function to shm_vm_ops.
4398 * This is because under System V memory model, mappings created via
4399 * shmget/shmat with "huge page" specified are backed by hugetlbfs files,
4400 * their original vm_ops are overwritten with shm_vm_ops.
4401 */
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04004402const struct vm_operations_struct hugetlb_vm_ops = {
Nick Piggind0217ac2007-07-19 01:47:03 -07004403 .fault = hugetlb_vm_op_fault,
Andy Whitcroft84afd992008-07-23 21:27:32 -07004404 .open = hugetlb_vm_op_open,
Mel Gormana1e78772008-07-23 21:27:23 -07004405 .close = hugetlb_vm_op_close,
Dmitry Safonovdd3b6142020-12-14 19:08:17 -08004406 .may_split = hugetlb_vm_op_split,
Dan Williams05ea8862018-04-05 16:24:25 -07004407 .pagesize = hugetlb_vm_op_pagesize,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004408};
4409
David Gibson1e8f8892006-01-06 00:10:44 -08004410static pte_t make_huge_pte(struct vm_area_struct *vma, struct page *page,
4411 int writable)
David Gibson63551ae2005-06-21 17:14:44 -07004412{
4413 pte_t entry;
Christophe Leroy79c1c592021-06-30 18:48:00 -07004414 unsigned int shift = huge_page_shift(hstate_vma(vma));
David Gibson63551ae2005-06-21 17:14:44 -07004415
David Gibson1e8f8892006-01-06 00:10:44 -08004416 if (writable) {
Gerald Schaefer106c9922013-04-29 15:07:23 -07004417 entry = huge_pte_mkwrite(huge_pte_mkdirty(mk_huge_pte(page,
4418 vma->vm_page_prot)));
David Gibson63551ae2005-06-21 17:14:44 -07004419 } else {
Gerald Schaefer106c9922013-04-29 15:07:23 -07004420 entry = huge_pte_wrprotect(mk_huge_pte(page,
4421 vma->vm_page_prot));
David Gibson63551ae2005-06-21 17:14:44 -07004422 }
4423 entry = pte_mkyoung(entry);
4424 entry = pte_mkhuge(entry);
Christophe Leroy79c1c592021-06-30 18:48:00 -07004425 entry = arch_make_huge_pte(entry, shift, vma->vm_flags);
David Gibson63551ae2005-06-21 17:14:44 -07004426
4427 return entry;
4428}
4429
David Gibson1e8f8892006-01-06 00:10:44 -08004430static void set_huge_ptep_writable(struct vm_area_struct *vma,
4431 unsigned long address, pte_t *ptep)
4432{
4433 pte_t entry;
4434
Gerald Schaefer106c9922013-04-29 15:07:23 -07004435 entry = huge_pte_mkwrite(huge_pte_mkdirty(huge_ptep_get(ptep)));
Chris Forbes32f84522011-07-25 17:12:14 -07004436 if (huge_ptep_set_access_flags(vma, address, ptep, entry, 1))
Russell King4b3073e2009-12-18 16:40:18 +00004437 update_mmu_cache(vma, address, ptep);
David Gibson1e8f8892006-01-06 00:10:44 -08004438}
4439
Aneesh Kumar K.Vd5ed7442017-07-06 15:38:47 -07004440bool is_hugetlb_entry_migration(pte_t pte)
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004441{
4442 swp_entry_t swp;
4443
4444 if (huge_pte_none(pte) || pte_present(pte))
Aneesh Kumar K.Vd5ed7442017-07-06 15:38:47 -07004445 return false;
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004446 swp = pte_to_swp_entry(pte);
Baoquan Hed79d1762020-10-13 16:56:14 -07004447 if (is_migration_entry(swp))
Aneesh Kumar K.Vd5ed7442017-07-06 15:38:47 -07004448 return true;
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004449 else
Aneesh Kumar K.Vd5ed7442017-07-06 15:38:47 -07004450 return false;
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004451}
4452
Baoquan He3e5c3602020-10-13 16:56:10 -07004453static bool is_hugetlb_entry_hwpoisoned(pte_t pte)
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004454{
4455 swp_entry_t swp;
4456
4457 if (huge_pte_none(pte) || pte_present(pte))
Baoquan He3e5c3602020-10-13 16:56:10 -07004458 return false;
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004459 swp = pte_to_swp_entry(pte);
Baoquan Hed79d1762020-10-13 16:56:14 -07004460 if (is_hwpoison_entry(swp))
Baoquan He3e5c3602020-10-13 16:56:10 -07004461 return true;
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004462 else
Baoquan He3e5c3602020-10-13 16:56:10 -07004463 return false;
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004464}
David Gibson1e8f8892006-01-06 00:10:44 -08004465
Peter Xu4eae4ef2021-03-12 21:07:33 -08004466static void
4467hugetlb_install_page(struct vm_area_struct *vma, pte_t *ptep, unsigned long addr,
4468 struct page *new_page)
4469{
4470 __SetPageUptodate(new_page);
4471 set_huge_pte_at(vma->vm_mm, addr, ptep, make_huge_pte(vma, new_page, 1));
4472 hugepage_add_new_anon_rmap(new_page, vma, addr);
4473 hugetlb_count_add(pages_per_huge_page(hstate_vma(vma)), vma->vm_mm);
4474 ClearHPageRestoreReserve(new_page);
4475 SetHPageMigratable(new_page);
4476}
4477
David Gibson63551ae2005-06-21 17:14:44 -07004478int copy_hugetlb_page_range(struct mm_struct *dst, struct mm_struct *src,
4479 struct vm_area_struct *vma)
4480{
Mike Kravetz5e415402018-11-16 15:08:04 -08004481 pte_t *src_pte, *dst_pte, entry, dst_entry;
David Gibson63551ae2005-06-21 17:14:44 -07004482 struct page *ptepage;
Hugh Dickins1c598272005-10-19 21:23:43 -07004483 unsigned long addr;
Peter Xuca6eb142021-03-12 21:07:30 -08004484 bool cow = is_cow_mapping(vma->vm_flags);
Andi Kleena5516432008-07-23 21:27:41 -07004485 struct hstate *h = hstate_vma(vma);
4486 unsigned long sz = huge_page_size(h);
Peter Xu4eae4ef2021-03-12 21:07:33 -08004487 unsigned long npages = pages_per_huge_page(h);
Mike Kravetzc0d03812020-04-01 21:11:05 -07004488 struct address_space *mapping = vma->vm_file->f_mapping;
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08004489 struct mmu_notifier_range range;
Andreas Sandberge8569dd2014-01-21 15:49:09 -08004490 int ret = 0;
David Gibson1e8f8892006-01-06 00:10:44 -08004491
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08004492 if (cow) {
Jérôme Glisse7269f992019-05-13 17:20:53 -07004493 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma, src,
Jérôme Glisse6f4f13e2019-05-13 17:20:49 -07004494 vma->vm_start,
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08004495 vma->vm_end);
4496 mmu_notifier_invalidate_range_start(&range);
Mike Kravetzc0d03812020-04-01 21:11:05 -07004497 } else {
4498 /*
4499 * For shared mappings i_mmap_rwsem must be held to call
4500 * huge_pte_alloc, otherwise the returned ptep could go
4501 * away if part of a shared pmd and another thread calls
4502 * huge_pmd_unshare.
4503 */
4504 i_mmap_lock_read(mapping);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08004505 }
Andreas Sandberge8569dd2014-01-21 15:49:09 -08004506
Andi Kleena5516432008-07-23 21:27:41 -07004507 for (addr = vma->vm_start; addr < vma->vm_end; addr += sz) {
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08004508 spinlock_t *src_ptl, *dst_ptl;
Punit Agrawal7868a202017-07-06 15:39:42 -07004509 src_pte = huge_pte_offset(src, addr, sz);
Hugh Dickinsc74df322005-10-29 18:16:23 -07004510 if (!src_pte)
4511 continue;
Peter Xuaec44e02021-05-04 18:33:00 -07004512 dst_pte = huge_pte_alloc(dst, vma, addr, sz);
Andreas Sandberge8569dd2014-01-21 15:49:09 -08004513 if (!dst_pte) {
4514 ret = -ENOMEM;
4515 break;
4516 }
Larry Woodmanc5c99422008-01-24 05:49:25 -08004517
Mike Kravetz5e415402018-11-16 15:08:04 -08004518 /*
4519 * If the pagetables are shared don't copy or take references.
4520 * dst_pte == src_pte is the common case of src/dest sharing.
4521 *
4522 * However, src could have 'unshared' and dst shares with
4523 * another vma. If dst_pte !none, this implies sharing.
4524 * Check here before taking page table lock, and once again
4525 * after taking the lock below.
4526 */
4527 dst_entry = huge_ptep_get(dst_pte);
4528 if ((dst_pte == src_pte) || !huge_pte_none(dst_entry))
Larry Woodmanc5c99422008-01-24 05:49:25 -08004529 continue;
4530
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08004531 dst_ptl = huge_pte_lock(h, dst, dst_pte);
4532 src_ptl = huge_pte_lockptr(h, src, src_pte);
4533 spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004534 entry = huge_ptep_get(src_pte);
Mike Kravetz5e415402018-11-16 15:08:04 -08004535 dst_entry = huge_ptep_get(dst_pte);
Peter Xu4eae4ef2021-03-12 21:07:33 -08004536again:
Mike Kravetz5e415402018-11-16 15:08:04 -08004537 if (huge_pte_none(entry) || !huge_pte_none(dst_entry)) {
4538 /*
4539 * Skip if src entry none. Also, skip in the
4540 * unlikely case dst entry !none as this implies
4541 * sharing with another vma.
4542 */
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004543 ;
4544 } else if (unlikely(is_hugetlb_entry_migration(entry) ||
4545 is_hugetlb_entry_hwpoisoned(entry))) {
4546 swp_entry_t swp_entry = pte_to_swp_entry(entry);
4547
Alistair Popple4dd845b2021-06-30 18:54:09 -07004548 if (is_writable_migration_entry(swp_entry) && cow) {
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004549 /*
4550 * COW mappings require pages in both
4551 * parent and child to be set to read.
4552 */
Alistair Popple4dd845b2021-06-30 18:54:09 -07004553 swp_entry = make_readable_migration_entry(
4554 swp_offset(swp_entry));
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004555 entry = swp_entry_to_pte(swp_entry);
Punit Agrawale5251fd2017-07-06 15:39:50 -07004556 set_huge_swap_pte_at(src, addr, src_pte,
4557 entry, sz);
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004558 }
Punit Agrawale5251fd2017-07-06 15:39:50 -07004559 set_huge_swap_pte_at(dst, addr, dst_pte, entry, sz);
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004560 } else {
Peter Xu4eae4ef2021-03-12 21:07:33 -08004561 entry = huge_ptep_get(src_pte);
4562 ptepage = pte_page(entry);
4563 get_page(ptepage);
4564
4565 /*
4566 * This is a rare case where we see pinned hugetlb
4567 * pages while they're prone to COW. We need to do the
4568 * COW earlier during fork.
4569 *
4570 * When pre-allocating the page or copying data, we
4571 * need to be without the pgtable locks since we could
4572 * sleep during the process.
4573 */
4574 if (unlikely(page_needs_cow_for_dma(vma, ptepage))) {
4575 pte_t src_pte_old = entry;
4576 struct page *new;
4577
4578 spin_unlock(src_ptl);
4579 spin_unlock(dst_ptl);
4580 /* Do not use reserve as it's private owned */
4581 new = alloc_huge_page(vma, addr, 1);
4582 if (IS_ERR(new)) {
4583 put_page(ptepage);
4584 ret = PTR_ERR(new);
4585 break;
4586 }
4587 copy_user_huge_page(new, ptepage, addr, vma,
4588 npages);
4589 put_page(ptepage);
4590
4591 /* Install the new huge page if src pte stable */
4592 dst_ptl = huge_pte_lock(h, dst, dst_pte);
4593 src_ptl = huge_pte_lockptr(h, src, src_pte);
4594 spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
4595 entry = huge_ptep_get(src_pte);
4596 if (!pte_same(src_pte_old, entry)) {
Mike Kravetz846be082021-06-15 18:23:29 -07004597 restore_reserve_on_error(h, vma, addr,
4598 new);
Peter Xu4eae4ef2021-03-12 21:07:33 -08004599 put_page(new);
4600 /* dst_entry won't change as in child */
4601 goto again;
4602 }
4603 hugetlb_install_page(vma, dst_pte, addr, new);
4604 spin_unlock(src_ptl);
4605 spin_unlock(dst_ptl);
4606 continue;
4607 }
4608
Joerg Roedel34ee6452014-11-13 13:46:09 +11004609 if (cow) {
Jérôme Glisse0f108512017-11-15 17:34:07 -08004610 /*
4611 * No need to notify as we are downgrading page
4612 * table protection not changing it to point
4613 * to a new page.
4614 *
Mike Rapoportad56b732018-03-21 21:22:47 +02004615 * See Documentation/vm/mmu_notifier.rst
Jérôme Glisse0f108512017-11-15 17:34:07 -08004616 */
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07004617 huge_ptep_set_wrprotect(src, addr, src_pte);
Peter Xu84894e12021-05-14 17:27:07 -07004618 entry = huge_pte_wrprotect(entry);
Joerg Roedel34ee6452014-11-13 13:46:09 +11004619 }
Peter Xu4eae4ef2021-03-12 21:07:33 -08004620
Kirill A. Shutemov53f92632016-01-15 16:53:42 -08004621 page_dup_rmap(ptepage, true);
Hugh Dickins1c598272005-10-19 21:23:43 -07004622 set_huge_pte_at(dst, addr, dst_pte, entry);
Peter Xu4eae4ef2021-03-12 21:07:33 -08004623 hugetlb_count_add(npages, dst);
Hugh Dickins1c598272005-10-19 21:23:43 -07004624 }
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08004625 spin_unlock(src_ptl);
4626 spin_unlock(dst_ptl);
David Gibson63551ae2005-06-21 17:14:44 -07004627 }
David Gibson63551ae2005-06-21 17:14:44 -07004628
Andreas Sandberge8569dd2014-01-21 15:49:09 -08004629 if (cow)
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08004630 mmu_notifier_invalidate_range_end(&range);
Mike Kravetzc0d03812020-04-01 21:11:05 -07004631 else
4632 i_mmap_unlock_read(mapping);
Andreas Sandberge8569dd2014-01-21 15:49:09 -08004633
4634 return ret;
David Gibson63551ae2005-06-21 17:14:44 -07004635}
4636
Peter Xu73c54762021-11-05 13:41:17 -07004637static void __unmap_hugepage_range(struct mmu_gather *tlb, struct vm_area_struct *vma,
4638 unsigned long start, unsigned long end,
4639 struct page *ref_page)
David Gibson63551ae2005-06-21 17:14:44 -07004640{
4641 struct mm_struct *mm = vma->vm_mm;
4642 unsigned long address;
David Gibsonc7546f82005-08-05 11:59:35 -07004643 pte_t *ptep;
David Gibson63551ae2005-06-21 17:14:44 -07004644 pte_t pte;
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08004645 spinlock_t *ptl;
David Gibson63551ae2005-06-21 17:14:44 -07004646 struct page *page;
Andi Kleena5516432008-07-23 21:27:41 -07004647 struct hstate *h = hstate_vma(vma);
4648 unsigned long sz = huge_page_size(h);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08004649 struct mmu_notifier_range range;
Andi Kleena5516432008-07-23 21:27:41 -07004650
David Gibson63551ae2005-06-21 17:14:44 -07004651 WARN_ON(!is_vm_hugetlb_page(vma));
Andi Kleena5516432008-07-23 21:27:41 -07004652 BUG_ON(start & ~huge_page_mask(h));
4653 BUG_ON(end & ~huge_page_mask(h));
David Gibson63551ae2005-06-21 17:14:44 -07004654
Aneesh Kumar K.V07e32662016-12-12 16:42:40 -08004655 /*
4656 * This is a hugetlb vma, all the pte entries should point
4657 * to huge page.
4658 */
Peter Zijlstraed6a7932018-08-31 14:46:08 +02004659 tlb_change_page_size(tlb, sz);
Aneesh Kumar K.V24669e52012-07-31 16:42:03 -07004660 tlb_start_vma(tlb, vma);
Mike Kravetzdff11ab2018-10-05 15:51:33 -07004661
4662 /*
4663 * If sharing possible, alert mmu notifiers of worst case.
4664 */
Jérôme Glisse6f4f13e2019-05-13 17:20:49 -07004665 mmu_notifier_range_init(&range, MMU_NOTIFY_UNMAP, 0, vma, mm, start,
4666 end);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08004667 adjust_range_if_pmd_sharing_possible(vma, &range.start, &range.end);
4668 mmu_notifier_invalidate_range_start(&range);
Hillf Danton569f48b82014-12-10 15:44:41 -08004669 address = start;
Hillf Danton569f48b82014-12-10 15:44:41 -08004670 for (; address < end; address += sz) {
Punit Agrawal7868a202017-07-06 15:39:42 -07004671 ptep = huge_pte_offset(mm, address, sz);
Adam Litke4c887262005-10-29 18:16:46 -07004672 if (!ptep)
David Gibsonc7546f82005-08-05 11:59:35 -07004673 continue;
4674
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08004675 ptl = huge_pte_lock(h, mm, ptep);
Mike Kravetz34ae2042020-08-11 18:31:38 -07004676 if (huge_pmd_unshare(mm, vma, &address, ptep)) {
Aneesh Kumar K.V31d49da2016-07-26 15:24:06 -07004677 spin_unlock(ptl);
Mike Kravetzdff11ab2018-10-05 15:51:33 -07004678 /*
4679 * We just unmapped a page of PMDs by clearing a PUD.
4680 * The caller's TLB flush range should cover this area.
4681 */
Aneesh Kumar K.V31d49da2016-07-26 15:24:06 -07004682 continue;
4683 }
Chen, Kenneth W39dde652006-12-06 20:32:03 -08004684
Hillf Danton66293262012-03-23 15:01:48 -07004685 pte = huge_ptep_get(ptep);
Aneesh Kumar K.V31d49da2016-07-26 15:24:06 -07004686 if (huge_pte_none(pte)) {
4687 spin_unlock(ptl);
4688 continue;
4689 }
Hillf Danton66293262012-03-23 15:01:48 -07004690
4691 /*
Naoya Horiguchi9fbc1f62015-02-11 15:25:32 -08004692 * Migrating hugepage or HWPoisoned hugepage is already
4693 * unmapped and its refcount is dropped, so just clear pte here.
Hillf Danton66293262012-03-23 15:01:48 -07004694 */
Naoya Horiguchi9fbc1f62015-02-11 15:25:32 -08004695 if (unlikely(!pte_present(pte))) {
Punit Agrawal9386fac2017-07-06 15:39:46 -07004696 huge_pte_clear(mm, address, ptep, sz);
Aneesh Kumar K.V31d49da2016-07-26 15:24:06 -07004697 spin_unlock(ptl);
4698 continue;
Naoya Horiguchi8c4894c2012-12-12 13:52:28 -08004699 }
Hillf Danton66293262012-03-23 15:01:48 -07004700
4701 page = pte_page(pte);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004702 /*
4703 * If a reference page is supplied, it is because a specific
4704 * page is being unmapped, not a range. Ensure the page we
4705 * are about to unmap is the actual page of interest.
4706 */
4707 if (ref_page) {
Aneesh Kumar K.V31d49da2016-07-26 15:24:06 -07004708 if (page != ref_page) {
4709 spin_unlock(ptl);
4710 continue;
4711 }
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004712 /*
4713 * Mark the VMA as having unmapped its page so that
4714 * future faults in this VMA will fail rather than
4715 * looking like data was lost
4716 */
4717 set_vma_resv_flags(vma, HPAGE_RESV_UNMAPPED);
4718 }
4719
David Gibsonc7546f82005-08-05 11:59:35 -07004720 pte = huge_ptep_get_and_clear(mm, address, ptep);
Aneesh Kumar K.Vb528e4b2016-12-12 16:42:37 -08004721 tlb_remove_huge_tlb_entry(h, tlb, ptep, address);
Gerald Schaefer106c9922013-04-29 15:07:23 -07004722 if (huge_pte_dirty(pte))
Ken Chen6649a382007-02-08 14:20:27 -08004723 set_page_dirty(page);
Hillf Danton9e811302012-03-21 16:34:03 -07004724
Naoya Horiguchi5d317b22015-11-05 18:47:14 -08004725 hugetlb_count_sub(pages_per_huge_page(h), mm);
Kirill A. Shutemovd281ee62016-01-15 16:52:16 -08004726 page_remove_rmap(page, true);
Aneesh Kumar K.V31d49da2016-07-26 15:24:06 -07004727
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08004728 spin_unlock(ptl);
Aneesh Kumar K.Ve77b0852016-07-26 15:24:12 -07004729 tlb_remove_page_size(tlb, page, huge_page_size(h));
Aneesh Kumar K.V31d49da2016-07-26 15:24:06 -07004730 /*
4731 * Bail out after unmapping reference page if supplied
4732 */
4733 if (ref_page)
4734 break;
Chen, Kenneth Wfe1668a2006-10-04 02:15:24 -07004735 }
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08004736 mmu_notifier_invalidate_range_end(&range);
Aneesh Kumar K.V24669e52012-07-31 16:42:03 -07004737 tlb_end_vma(tlb, vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738}
David Gibson63551ae2005-06-21 17:14:44 -07004739
Mel Gormand8333522012-07-31 16:46:20 -07004740void __unmap_hugepage_range_final(struct mmu_gather *tlb,
4741 struct vm_area_struct *vma, unsigned long start,
4742 unsigned long end, struct page *ref_page)
4743{
4744 __unmap_hugepage_range(tlb, vma, start, end, ref_page);
4745
4746 /*
4747 * Clear this flag so that x86's huge_pmd_share page_table_shareable
4748 * test will fail on a vma being torn down, and not grab a page table
4749 * on its way out. We're lucky that the flag has such an appropriate
4750 * name, and can in fact be safely cleared here. We could clear it
4751 * before the __unmap_hugepage_range above, but all that's necessary
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -08004752 * is to clear it before releasing the i_mmap_rwsem. This works
Mel Gormand8333522012-07-31 16:46:20 -07004753 * because in the context this is called, the VMA is about to be
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -08004754 * destroyed and the i_mmap_rwsem is held.
Mel Gormand8333522012-07-31 16:46:20 -07004755 */
4756 vma->vm_flags &= ~VM_MAYSHARE;
4757}
4758
Chen, Kenneth W502717f2006-10-11 01:20:46 -07004759void unmap_hugepage_range(struct vm_area_struct *vma, unsigned long start,
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004760 unsigned long end, struct page *ref_page)
Chen, Kenneth W502717f2006-10-11 01:20:46 -07004761{
Aneesh Kumar K.V24669e52012-07-31 16:42:03 -07004762 struct mmu_gather tlb;
Mike Kravetzdff11ab2018-10-05 15:51:33 -07004763
Will Deacona72afd82021-01-27 23:53:45 +00004764 tlb_gather_mmu(&tlb, vma->vm_mm);
Aneesh Kumar K.V24669e52012-07-31 16:42:03 -07004765 __unmap_hugepage_range(&tlb, vma, start, end, ref_page);
Will Deaconae8eba82021-01-27 23:53:43 +00004766 tlb_finish_mmu(&tlb);
Chen, Kenneth W502717f2006-10-11 01:20:46 -07004767}
4768
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004769/*
4770 * This is called when the original mapper is failing to COW a MAP_PRIVATE
Zhiyuan Dai578b7722021-02-24 12:07:26 -08004771 * mapping it owns the reserve page for. The intention is to unmap the page
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004772 * from other VMAs and let the children be SIGKILLed if they are faulting the
4773 * same region.
4774 */
Davidlohr Bueso2f4612a2014-08-06 16:06:45 -07004775static void unmap_ref_private(struct mm_struct *mm, struct vm_area_struct *vma,
4776 struct page *page, unsigned long address)
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004777{
Adam Litke75266742008-11-12 13:24:56 -08004778 struct hstate *h = hstate_vma(vma);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004779 struct vm_area_struct *iter_vma;
4780 struct address_space *mapping;
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004781 pgoff_t pgoff;
4782
4783 /*
4784 * vm_pgoff is in PAGE_SIZE units, hence the different calculation
4785 * from page cache lookup which is in HPAGE_SIZE units.
4786 */
Adam Litke75266742008-11-12 13:24:56 -08004787 address = address & huge_page_mask(h);
Michal Hocko36e4f202012-10-08 16:33:31 -07004788 pgoff = ((address - vma->vm_start) >> PAGE_SHIFT) +
4789 vma->vm_pgoff;
Al Viro93c76a32015-12-04 23:45:44 -05004790 mapping = vma->vm_file->f_mapping;
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004791
Mel Gorman4eb2b1d2009-12-14 17:59:53 -08004792 /*
4793 * Take the mapping lock for the duration of the table walk. As
4794 * this mapping should be shared between all the VMAs,
4795 * __unmap_hugepage_range() is called as the lock is already held
4796 */
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -08004797 i_mmap_lock_write(mapping);
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -07004798 vma_interval_tree_foreach(iter_vma, &mapping->i_mmap, pgoff, pgoff) {
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004799 /* Do not unmap the current VMA */
4800 if (iter_vma == vma)
4801 continue;
4802
4803 /*
Mel Gorman2f84a892015-10-01 15:36:57 -07004804 * Shared VMAs have their own reserves and do not affect
4805 * MAP_PRIVATE accounting but it is possible that a shared
4806 * VMA is using the same page so check and skip such VMAs.
4807 */
4808 if (iter_vma->vm_flags & VM_MAYSHARE)
4809 continue;
4810
4811 /*
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004812 * Unmap the page from other VMAs without their own reserves.
4813 * They get marked to be SIGKILLed if they fault in these
4814 * areas. This is because a future no-page fault on this VMA
4815 * could insert a zeroed page instead of the data existing
4816 * from the time of fork. This would look like data corruption
4817 */
4818 if (!is_vma_resv_set(iter_vma, HPAGE_RESV_OWNER))
Aneesh Kumar K.V24669e52012-07-31 16:42:03 -07004819 unmap_hugepage_range(iter_vma, address,
4820 address + huge_page_size(h), page);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004821 }
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -08004822 i_mmap_unlock_write(mapping);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004823}
4824
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +09004825/*
4826 * Hugetlb_cow() should be called with page lock of the original hugepage held.
Michal Hockoef009b22012-01-10 15:07:21 -08004827 * Called with hugetlb_instantiation_mutex held and pte_page locked so we
4828 * cannot race with other handlers or page migration.
4829 * Keep the pte_same checks anyway to make transition from the mutex easier.
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +09004830 */
Souptick Joarder2b740302018-08-23 17:01:36 -07004831static vm_fault_t hugetlb_cow(struct mm_struct *mm, struct vm_area_struct *vma,
Huang Ying974e6d62018-08-17 15:45:57 -07004832 unsigned long address, pte_t *ptep,
Aneesh Kumar K.V3999f522016-12-12 16:41:56 -08004833 struct page *pagecache_page, spinlock_t *ptl)
David Gibson1e8f8892006-01-06 00:10:44 -08004834{
Aneesh Kumar K.V3999f522016-12-12 16:41:56 -08004835 pte_t pte;
Andi Kleena5516432008-07-23 21:27:41 -07004836 struct hstate *h = hstate_vma(vma);
David Gibson1e8f8892006-01-06 00:10:44 -08004837 struct page *old_page, *new_page;
Souptick Joarder2b740302018-08-23 17:01:36 -07004838 int outside_reserve = 0;
4839 vm_fault_t ret = 0;
Huang Ying974e6d62018-08-17 15:45:57 -07004840 unsigned long haddr = address & huge_page_mask(h);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08004841 struct mmu_notifier_range range;
David Gibson1e8f8892006-01-06 00:10:44 -08004842
Aneesh Kumar K.V3999f522016-12-12 16:41:56 -08004843 pte = huge_ptep_get(ptep);
David Gibson1e8f8892006-01-06 00:10:44 -08004844 old_page = pte_page(pte);
4845
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004846retry_avoidcopy:
David Gibson1e8f8892006-01-06 00:10:44 -08004847 /* If no-one else is actually using this page, avoid the copy
4848 * and just make the page writable */
Joonsoo Kim37a21402013-09-11 14:21:04 -07004849 if (page_mapcount(old_page) == 1 && PageAnon(old_page)) {
Hugh Dickins5a499732016-07-14 12:07:38 -07004850 page_move_anon_rmap(old_page, vma);
Huang Ying5b7a1d42018-08-17 15:45:53 -07004851 set_huge_ptep_writable(vma, haddr, ptep);
Nick Piggin83c54072007-07-19 01:47:05 -07004852 return 0;
David Gibson1e8f8892006-01-06 00:10:44 -08004853 }
4854
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004855 /*
4856 * If the process that created a MAP_PRIVATE mapping is about to
4857 * perform a COW due to a shared page count, attempt to satisfy
4858 * the allocation without using the existing reserves. The pagecache
4859 * page is used to determine if the reserve at this address was
4860 * consumed or not. If reserves were used, a partial faulted mapping
4861 * at the time of fork() could consume its reserves on COW instead
4862 * of the full address range.
4863 */
Joonsoo Kim5944d012013-09-11 14:21:55 -07004864 if (is_vma_resv_set(vma, HPAGE_RESV_OWNER) &&
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004865 old_page != pagecache_page)
4866 outside_reserve = 1;
4867
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004868 get_page(old_page);
Larry Woodmanb76c8cf2009-12-14 17:59:37 -08004869
Davidlohr Buesoad4404a2014-08-06 16:06:47 -07004870 /*
4871 * Drop page table lock as buddy allocator may be called. It will
4872 * be acquired again before returning to the caller, as expected.
4873 */
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08004874 spin_unlock(ptl);
Huang Ying5b7a1d42018-08-17 15:45:53 -07004875 new_page = alloc_huge_page(vma, haddr, outside_reserve);
David Gibson1e8f8892006-01-06 00:10:44 -08004876
Adam Litke2fc39ce2007-11-14 16:59:39 -08004877 if (IS_ERR(new_page)) {
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004878 /*
4879 * If a process owning a MAP_PRIVATE mapping fails to COW,
4880 * it is due to references held by a child and an insufficient
4881 * huge page pool. To guarantee the original mappers
4882 * reliability, unmap the page from child processes. The child
4883 * may get SIGKILLed if it later faults.
4884 */
4885 if (outside_reserve) {
Mike Kravetze7dd91c2020-12-29 15:14:25 -08004886 struct address_space *mapping = vma->vm_file->f_mapping;
4887 pgoff_t idx;
4888 u32 hash;
4889
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004890 put_page(old_page);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004891 BUG_ON(huge_pte_none(pte));
Mike Kravetze7dd91c2020-12-29 15:14:25 -08004892 /*
4893 * Drop hugetlb_fault_mutex and i_mmap_rwsem before
4894 * unmapping. unmapping needs to hold i_mmap_rwsem
4895 * in write mode. Dropping i_mmap_rwsem in read mode
4896 * here is OK as COW mappings do not interact with
4897 * PMD sharing.
4898 *
4899 * Reacquire both after unmap operation.
4900 */
4901 idx = vma_hugecache_offset(h, vma, haddr);
4902 hash = hugetlb_fault_mutex_hash(mapping, idx);
4903 mutex_unlock(&hugetlb_fault_mutex_table[hash]);
4904 i_mmap_unlock_read(mapping);
4905
Huang Ying5b7a1d42018-08-17 15:45:53 -07004906 unmap_ref_private(mm, vma, old_page, haddr);
Mike Kravetze7dd91c2020-12-29 15:14:25 -08004907
4908 i_mmap_lock_read(mapping);
4909 mutex_lock(&hugetlb_fault_mutex_table[hash]);
Davidlohr Bueso2f4612a2014-08-06 16:06:45 -07004910 spin_lock(ptl);
Huang Ying5b7a1d42018-08-17 15:45:53 -07004911 ptep = huge_pte_offset(mm, haddr, huge_page_size(h));
Davidlohr Bueso2f4612a2014-08-06 16:06:45 -07004912 if (likely(ptep &&
4913 pte_same(huge_ptep_get(ptep), pte)))
4914 goto retry_avoidcopy;
4915 /*
4916 * race occurs while re-acquiring page table
4917 * lock, and our job is done.
4918 */
4919 return 0;
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004920 }
4921
Souptick Joarder2b740302018-08-23 17:01:36 -07004922 ret = vmf_error(PTR_ERR(new_page));
Davidlohr Buesoad4404a2014-08-06 16:06:47 -07004923 goto out_release_old;
David Gibson1e8f8892006-01-06 00:10:44 -08004924 }
4925
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +09004926 /*
4927 * When the original hugepage is shared one, it does not have
4928 * anon_vma prepared.
4929 */
Dean Nelson44e2aa92010-10-26 14:22:08 -07004930 if (unlikely(anon_vma_prepare(vma))) {
Davidlohr Buesoad4404a2014-08-06 16:06:47 -07004931 ret = VM_FAULT_OOM;
4932 goto out_release_all;
Dean Nelson44e2aa92010-10-26 14:22:08 -07004933 }
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +09004934
Huang Ying974e6d62018-08-17 15:45:57 -07004935 copy_user_huge_page(new_page, old_page, address, vma,
Andrea Arcangeli47ad8472011-01-13 15:46:47 -08004936 pages_per_huge_page(h));
Nick Piggin0ed361d2008-02-04 22:29:34 -08004937 __SetPageUptodate(new_page);
David Gibson1e8f8892006-01-06 00:10:44 -08004938
Jérôme Glisse7269f992019-05-13 17:20:53 -07004939 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma, mm, haddr,
Jérôme Glisse6f4f13e2019-05-13 17:20:49 -07004940 haddr + huge_page_size(h));
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08004941 mmu_notifier_invalidate_range_start(&range);
Davidlohr Buesoad4404a2014-08-06 16:06:47 -07004942
Larry Woodmanb76c8cf2009-12-14 17:59:37 -08004943 /*
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08004944 * Retake the page table lock to check for racing updates
Larry Woodmanb76c8cf2009-12-14 17:59:37 -08004945 * before the page tables are altered
4946 */
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08004947 spin_lock(ptl);
Huang Ying5b7a1d42018-08-17 15:45:53 -07004948 ptep = huge_pte_offset(mm, haddr, huge_page_size(h));
Naoya Horiguchia9af0c52014-04-07 15:36:54 -07004949 if (likely(ptep && pte_same(huge_ptep_get(ptep), pte))) {
Mike Kravetzd6995da2021-02-24 12:08:51 -08004950 ClearHPageRestoreReserve(new_page);
Joonsoo Kim07443a82013-09-11 14:21:58 -07004951
David Gibson1e8f8892006-01-06 00:10:44 -08004952 /* Break COW */
Huang Ying5b7a1d42018-08-17 15:45:53 -07004953 huge_ptep_clear_flush(vma, haddr, ptep);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08004954 mmu_notifier_invalidate_range(mm, range.start, range.end);
Huang Ying5b7a1d42018-08-17 15:45:53 -07004955 set_huge_pte_at(mm, haddr, ptep,
David Gibson1e8f8892006-01-06 00:10:44 -08004956 make_huge_pte(vma, new_page, 1));
Kirill A. Shutemovd281ee62016-01-15 16:52:16 -08004957 page_remove_rmap(old_page, true);
Huang Ying5b7a1d42018-08-17 15:45:53 -07004958 hugepage_add_new_anon_rmap(new_page, vma, haddr);
Mike Kravetz8f251a32021-02-24 12:08:56 -08004959 SetHPageMigratable(new_page);
David Gibson1e8f8892006-01-06 00:10:44 -08004960 /* Make the old page be freed below */
4961 new_page = old_page;
4962 }
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08004963 spin_unlock(ptl);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08004964 mmu_notifier_invalidate_range_end(&range);
Davidlohr Buesoad4404a2014-08-06 16:06:47 -07004965out_release_all:
Mike Kravetzc7b18502021-08-19 19:04:33 -07004966 /* No restore in case of successful pagetable update (Break COW) */
4967 if (new_page != old_page)
4968 restore_reserve_on_error(h, vma, haddr, new_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004969 put_page(new_page);
Davidlohr Buesoad4404a2014-08-06 16:06:47 -07004970out_release_old:
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004971 put_page(old_page);
Joonsoo Kim83120342013-09-11 14:21:57 -07004972
Davidlohr Buesoad4404a2014-08-06 16:06:47 -07004973 spin_lock(ptl); /* Caller expects lock to be held */
4974 return ret;
David Gibson1e8f8892006-01-06 00:10:44 -08004975}
4976
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004977/* Return the pagecache page at a given address within a VMA */
Andi Kleena5516432008-07-23 21:27:41 -07004978static struct page *hugetlbfs_pagecache_page(struct hstate *h,
4979 struct vm_area_struct *vma, unsigned long address)
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004980{
4981 struct address_space *mapping;
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -07004982 pgoff_t idx;
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004983
4984 mapping = vma->vm_file->f_mapping;
Andi Kleena5516432008-07-23 21:27:41 -07004985 idx = vma_hugecache_offset(h, vma, address);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004986
4987 return find_lock_page(mapping, idx);
4988}
4989
Hugh Dickins3ae77f42009-09-21 17:03:33 -07004990/*
4991 * Return whether there is a pagecache page to back given address within VMA.
4992 * Caller follow_hugetlb_page() holds page_table_lock so we cannot lock_page.
4993 */
4994static bool hugetlbfs_pagecache_present(struct hstate *h,
Hugh Dickins2a15efc2009-09-21 17:03:27 -07004995 struct vm_area_struct *vma, unsigned long address)
4996{
4997 struct address_space *mapping;
4998 pgoff_t idx;
4999 struct page *page;
5000
5001 mapping = vma->vm_file->f_mapping;
5002 idx = vma_hugecache_offset(h, vma, address);
5003
5004 page = find_get_page(mapping, idx);
5005 if (page)
5006 put_page(page);
5007 return page != NULL;
5008}
5009
Mike Kravetzab76ad52015-09-08 15:01:50 -07005010int huge_add_to_page_cache(struct page *page, struct address_space *mapping,
5011 pgoff_t idx)
5012{
5013 struct inode *inode = mapping->host;
5014 struct hstate *h = hstate_inode(inode);
5015 int err = add_to_page_cache(page, mapping, idx, GFP_KERNEL);
5016
5017 if (err)
5018 return err;
Mike Kravetzd6995da2021-02-24 12:08:51 -08005019 ClearHPageRestoreReserve(page);
Mike Kravetzab76ad52015-09-08 15:01:50 -07005020
Mike Kravetz22146c32018-10-26 15:10:58 -07005021 /*
5022 * set page dirty so that it will not be removed from cache/file
5023 * by non-hugetlbfs specific code paths.
5024 */
5025 set_page_dirty(page);
5026
Mike Kravetzab76ad52015-09-08 15:01:50 -07005027 spin_lock(&inode->i_lock);
5028 inode->i_blocks += blocks_per_huge_page(h);
5029 spin_unlock(&inode->i_lock);
5030 return 0;
5031}
5032
Axel Rasmussen7677f7f2021-05-04 18:35:36 -07005033static inline vm_fault_t hugetlb_handle_userfault(struct vm_area_struct *vma,
5034 struct address_space *mapping,
5035 pgoff_t idx,
5036 unsigned int flags,
5037 unsigned long haddr,
5038 unsigned long reason)
5039{
5040 vm_fault_t ret;
5041 u32 hash;
5042 struct vm_fault vmf = {
5043 .vma = vma,
5044 .address = haddr,
5045 .flags = flags,
5046
5047 /*
5048 * Hard to debug if it ends up being
5049 * used by a callee that assumes
5050 * something about the other
5051 * uninitialized fields... same as in
5052 * memory.c
5053 */
5054 };
5055
5056 /*
5057 * hugetlb_fault_mutex and i_mmap_rwsem must be
5058 * dropped before handling userfault. Reacquire
5059 * after handling fault to make calling code simpler.
5060 */
5061 hash = hugetlb_fault_mutex_hash(mapping, idx);
5062 mutex_unlock(&hugetlb_fault_mutex_table[hash]);
5063 i_mmap_unlock_read(mapping);
5064 ret = handle_userfault(&vmf, reason);
5065 i_mmap_lock_read(mapping);
5066 mutex_lock(&hugetlb_fault_mutex_table[hash]);
5067
5068 return ret;
5069}
5070
Souptick Joarder2b740302018-08-23 17:01:36 -07005071static vm_fault_t hugetlb_no_page(struct mm_struct *mm,
5072 struct vm_area_struct *vma,
5073 struct address_space *mapping, pgoff_t idx,
5074 unsigned long address, pte_t *ptep, unsigned int flags)
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01005075{
Andi Kleena5516432008-07-23 21:27:41 -07005076 struct hstate *h = hstate_vma(vma);
Souptick Joarder2b740302018-08-23 17:01:36 -07005077 vm_fault_t ret = VM_FAULT_SIGBUS;
Hillf Danton409eb8c2012-01-20 14:34:13 -08005078 int anon_rmap = 0;
Adam Litke4c887262005-10-29 18:16:46 -07005079 unsigned long size;
Adam Litke4c887262005-10-29 18:16:46 -07005080 struct page *page;
David Gibson1e8f8892006-01-06 00:10:44 -08005081 pte_t new_pte;
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005082 spinlock_t *ptl;
Huang Ying285b8dc2018-06-07 17:08:08 -07005083 unsigned long haddr = address & huge_page_mask(h);
Mike Kravetzc7b18502021-08-19 19:04:33 -07005084 bool new_page, new_pagecache_page = false;
Adam Litke4c887262005-10-29 18:16:46 -07005085
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005086 /*
5087 * Currently, we are forced to kill the process in the event the
5088 * original mapper has unmapped pages from the child due to a failed
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005089 * COW. Warn that such a situation has occurred as it may not be obvious
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005090 */
5091 if (is_vma_resv_set(vma, HPAGE_RESV_UNMAPPED)) {
Geoffrey Thomas910154d2016-03-09 14:08:04 -08005092 pr_warn_ratelimited("PID %d killed due to inadequate hugepage pool\n",
Andrew Mortonffb22af2013-02-22 16:32:08 -08005093 current->pid);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005094 return ret;
5095 }
5096
Adam Litke4c887262005-10-29 18:16:46 -07005097 /*
Mike Kravetz87bf91d2020-04-01 21:11:08 -07005098 * We can not race with truncation due to holding i_mmap_rwsem.
5099 * i_size is modified when holding i_mmap_rwsem, so check here
5100 * once for faults beyond end of file.
Adam Litke4c887262005-10-29 18:16:46 -07005101 */
Mike Kravetz87bf91d2020-04-01 21:11:08 -07005102 size = i_size_read(mapping->host) >> huge_page_shift(h);
5103 if (idx >= size)
5104 goto out;
5105
Christoph Lameter6bda6662006-01-06 00:10:49 -08005106retry:
Mike Kravetzc7b18502021-08-19 19:04:33 -07005107 new_page = false;
Christoph Lameter6bda6662006-01-06 00:10:49 -08005108 page = find_lock_page(mapping, idx);
5109 if (!page) {
Axel Rasmussen7677f7f2021-05-04 18:35:36 -07005110 /* Check for page in userfault range */
Mike Kravetz1a1aad82017-02-22 15:43:01 -08005111 if (userfaultfd_missing(vma)) {
Axel Rasmussen7677f7f2021-05-04 18:35:36 -07005112 ret = hugetlb_handle_userfault(vma, mapping, idx,
5113 flags, haddr,
5114 VM_UFFD_MISSING);
Mike Kravetz1a1aad82017-02-22 15:43:01 -08005115 goto out;
5116 }
5117
Huang Ying285b8dc2018-06-07 17:08:08 -07005118 page = alloc_huge_page(vma, haddr, 0);
Adam Litke2fc39ce2007-11-14 16:59:39 -08005119 if (IS_ERR(page)) {
Mike Kravetz4643d672019-08-13 15:38:00 -07005120 /*
5121 * Returning error will result in faulting task being
5122 * sent SIGBUS. The hugetlb fault mutex prevents two
5123 * tasks from racing to fault in the same page which
5124 * could result in false unable to allocate errors.
5125 * Page migration does not take the fault mutex, but
5126 * does a clear then write of pte's under page table
5127 * lock. Page fault code could race with migration,
5128 * notice the clear pte and try to allocate a page
5129 * here. Before returning error, get ptl and make
5130 * sure there really is no pte entry.
5131 */
5132 ptl = huge_pte_lock(h, mm, ptep);
Miaohe Lind83e6c8a2021-05-04 18:33:31 -07005133 ret = 0;
5134 if (huge_pte_none(huge_ptep_get(ptep)))
5135 ret = vmf_error(PTR_ERR(page));
Mike Kravetz4643d672019-08-13 15:38:00 -07005136 spin_unlock(ptl);
Christoph Lameter6bda6662006-01-06 00:10:49 -08005137 goto out;
5138 }
Andrea Arcangeli47ad8472011-01-13 15:46:47 -08005139 clear_huge_page(page, address, pages_per_huge_page(h));
Nick Piggin0ed361d2008-02-04 22:29:34 -08005140 __SetPageUptodate(page);
Mike Kravetzcb6acd02019-02-28 16:22:02 -08005141 new_page = true;
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01005142
Mel Gormanf83a2752009-05-28 14:34:40 -07005143 if (vma->vm_flags & VM_MAYSHARE) {
Mike Kravetzab76ad52015-09-08 15:01:50 -07005144 int err = huge_add_to_page_cache(page, mapping, idx);
Christoph Lameter6bda6662006-01-06 00:10:49 -08005145 if (err) {
5146 put_page(page);
Christoph Lameter6bda6662006-01-06 00:10:49 -08005147 if (err == -EEXIST)
5148 goto retry;
5149 goto out;
5150 }
Mike Kravetzc7b18502021-08-19 19:04:33 -07005151 new_pagecache_page = true;
Mel Gorman23be7462010-04-23 13:17:56 -04005152 } else {
Christoph Lameter6bda6662006-01-06 00:10:49 -08005153 lock_page(page);
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +09005154 if (unlikely(anon_vma_prepare(vma))) {
5155 ret = VM_FAULT_OOM;
5156 goto backout_unlocked;
5157 }
Hillf Danton409eb8c2012-01-20 14:34:13 -08005158 anon_rmap = 1;
Mel Gorman23be7462010-04-23 13:17:56 -04005159 }
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +09005160 } else {
Naoya Horiguchi998b4382010-09-08 10:19:32 +09005161 /*
5162 * If memory error occurs between mmap() and fault, some process
5163 * don't have hwpoisoned swap entry for errored virtual address.
5164 * So we need to block hugepage fault by PG_hwpoison bit check.
5165 */
5166 if (unlikely(PageHWPoison(page))) {
Miaohe Lin0eb98f12021-01-12 15:49:24 -08005167 ret = VM_FAULT_HWPOISON_LARGE |
Aneesh Kumar K.V972dc4d2012-07-31 16:42:00 -07005168 VM_FAULT_SET_HINDEX(hstate_index(h));
Naoya Horiguchi998b4382010-09-08 10:19:32 +09005169 goto backout_unlocked;
5170 }
Axel Rasmussen7677f7f2021-05-04 18:35:36 -07005171
5172 /* Check for page in userfault range. */
5173 if (userfaultfd_minor(vma)) {
5174 unlock_page(page);
5175 put_page(page);
5176 ret = hugetlb_handle_userfault(vma, mapping, idx,
5177 flags, haddr,
5178 VM_UFFD_MINOR);
5179 goto out;
5180 }
Christoph Lameter6bda6662006-01-06 00:10:49 -08005181 }
David Gibson1e8f8892006-01-06 00:10:44 -08005182
Andy Whitcroft57303d82008-08-12 15:08:47 -07005183 /*
5184 * If we are going to COW a private mapping later, we examine the
5185 * pending reservations for this page now. This will ensure that
5186 * any allocations necessary to record that reservation occur outside
5187 * the spinlock.
5188 */
Mike Kravetz5e911372015-09-08 15:01:28 -07005189 if ((flags & FAULT_FLAG_WRITE) && !(vma->vm_flags & VM_SHARED)) {
Huang Ying285b8dc2018-06-07 17:08:08 -07005190 if (vma_needs_reservation(h, vma, haddr) < 0) {
Andy Whitcroft2b267362008-08-12 15:08:49 -07005191 ret = VM_FAULT_OOM;
5192 goto backout_unlocked;
5193 }
Mike Kravetz5e911372015-09-08 15:01:28 -07005194 /* Just decrements count, does not deallocate */
Huang Ying285b8dc2018-06-07 17:08:08 -07005195 vma_end_reservation(h, vma, haddr);
Mike Kravetz5e911372015-09-08 15:01:28 -07005196 }
Andy Whitcroft57303d82008-08-12 15:08:47 -07005197
Aneesh Kumar K.V8bea8052016-12-12 16:41:59 -08005198 ptl = huge_pte_lock(h, mm, ptep);
Nick Piggin83c54072007-07-19 01:47:05 -07005199 ret = 0;
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07005200 if (!huge_pte_none(huge_ptep_get(ptep)))
Adam Litke4c887262005-10-29 18:16:46 -07005201 goto backout;
5202
Joonsoo Kim07443a82013-09-11 14:21:58 -07005203 if (anon_rmap) {
Mike Kravetzd6995da2021-02-24 12:08:51 -08005204 ClearHPageRestoreReserve(page);
Huang Ying285b8dc2018-06-07 17:08:08 -07005205 hugepage_add_new_anon_rmap(page, vma, haddr);
Choi Gi-yongac714902014-04-07 15:37:36 -07005206 } else
Kirill A. Shutemov53f92632016-01-15 16:53:42 -08005207 page_dup_rmap(page, true);
David Gibson1e8f8892006-01-06 00:10:44 -08005208 new_pte = make_huge_pte(vma, page, ((vma->vm_flags & VM_WRITE)
5209 && (vma->vm_flags & VM_SHARED)));
Huang Ying285b8dc2018-06-07 17:08:08 -07005210 set_huge_pte_at(mm, haddr, ptep, new_pte);
David Gibson1e8f8892006-01-06 00:10:44 -08005211
Naoya Horiguchi5d317b22015-11-05 18:47:14 -08005212 hugetlb_count_add(pages_per_huge_page(h), mm);
Hugh Dickins788c7df2009-06-23 13:49:05 +01005213 if ((flags & FAULT_FLAG_WRITE) && !(vma->vm_flags & VM_SHARED)) {
David Gibson1e8f8892006-01-06 00:10:44 -08005214 /* Optimization, do the COW without a second fault */
Huang Ying974e6d62018-08-17 15:45:57 -07005215 ret = hugetlb_cow(mm, vma, address, ptep, page, ptl);
David Gibson1e8f8892006-01-06 00:10:44 -08005216 }
5217
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005218 spin_unlock(ptl);
Mike Kravetzcb6acd02019-02-28 16:22:02 -08005219
5220 /*
Mike Kravetz8f251a32021-02-24 12:08:56 -08005221 * Only set HPageMigratable in newly allocated pages. Existing pages
5222 * found in the pagecache may not have HPageMigratableset if they have
5223 * been isolated for migration.
Mike Kravetzcb6acd02019-02-28 16:22:02 -08005224 */
5225 if (new_page)
Mike Kravetz8f251a32021-02-24 12:08:56 -08005226 SetHPageMigratable(page);
Mike Kravetzcb6acd02019-02-28 16:22:02 -08005227
Adam Litke4c887262005-10-29 18:16:46 -07005228 unlock_page(page);
5229out:
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01005230 return ret;
Adam Litke4c887262005-10-29 18:16:46 -07005231
5232backout:
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005233 spin_unlock(ptl);
Andy Whitcroft2b267362008-08-12 15:08:49 -07005234backout_unlocked:
Adam Litke4c887262005-10-29 18:16:46 -07005235 unlock_page(page);
Mike Kravetzc7b18502021-08-19 19:04:33 -07005236 /* restore reserve for newly allocated pages not in page cache */
5237 if (new_page && !new_pagecache_page)
5238 restore_reserve_on_error(h, vma, haddr, page);
Adam Litke4c887262005-10-29 18:16:46 -07005239 put_page(page);
5240 goto out;
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01005241}
5242
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005243#ifdef CONFIG_SMP
Wei Yang188b04a2019-11-30 17:57:02 -08005244u32 hugetlb_fault_mutex_hash(struct address_space *mapping, pgoff_t idx)
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005245{
5246 unsigned long key[2];
5247 u32 hash;
5248
Mike Kravetz1b426ba2019-05-13 17:19:41 -07005249 key[0] = (unsigned long) mapping;
5250 key[1] = idx;
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005251
Mike Kravetz55254632019-11-30 17:56:30 -08005252 hash = jhash2((u32 *)&key, sizeof(key)/(sizeof(u32)), 0);
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005253
5254 return hash & (num_fault_mutexes - 1);
5255}
5256#else
5257/*
Miaohe Lin6c26d312021-02-24 12:07:19 -08005258 * For uniprocessor systems we always use a single mutex, so just
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005259 * return 0 and avoid the hashing overhead.
5260 */
Wei Yang188b04a2019-11-30 17:57:02 -08005261u32 hugetlb_fault_mutex_hash(struct address_space *mapping, pgoff_t idx)
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005262{
5263 return 0;
5264}
5265#endif
5266
Souptick Joarder2b740302018-08-23 17:01:36 -07005267vm_fault_t hugetlb_fault(struct mm_struct *mm, struct vm_area_struct *vma,
Hugh Dickins788c7df2009-06-23 13:49:05 +01005268 unsigned long address, unsigned int flags)
Adam Litke86e52162006-01-06 00:10:43 -08005269{
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005270 pte_t *ptep, entry;
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005271 spinlock_t *ptl;
Souptick Joarder2b740302018-08-23 17:01:36 -07005272 vm_fault_t ret;
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005273 u32 hash;
5274 pgoff_t idx;
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +09005275 struct page *page = NULL;
Andy Whitcroft57303d82008-08-12 15:08:47 -07005276 struct page *pagecache_page = NULL;
Andi Kleena5516432008-07-23 21:27:41 -07005277 struct hstate *h = hstate_vma(vma);
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005278 struct address_space *mapping;
Naoya Horiguchi0f792cf2015-02-11 15:25:25 -08005279 int need_wait_lock = 0;
Huang Ying285b8dc2018-06-07 17:08:08 -07005280 unsigned long haddr = address & huge_page_mask(h);
Adam Litke86e52162006-01-06 00:10:43 -08005281
Huang Ying285b8dc2018-06-07 17:08:08 -07005282 ptep = huge_pte_offset(mm, haddr, huge_page_size(h));
Naoya Horiguchifd6a03e2010-05-28 09:29:21 +09005283 if (ptep) {
Mike Kravetzc0d03812020-04-01 21:11:05 -07005284 /*
5285 * Since we hold no locks, ptep could be stale. That is
5286 * OK as we are only making decisions based on content and
5287 * not actually modifying content here.
5288 */
Naoya Horiguchifd6a03e2010-05-28 09:29:21 +09005289 entry = huge_ptep_get(ptep);
Naoya Horiguchi290408d2010-09-08 10:19:35 +09005290 if (unlikely(is_hugetlb_entry_migration(entry))) {
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005291 migration_entry_wait_huge(vma, mm, ptep);
Naoya Horiguchi290408d2010-09-08 10:19:35 +09005292 return 0;
5293 } else if (unlikely(is_hugetlb_entry_hwpoisoned(entry)))
Chris Forbes32f84522011-07-25 17:12:14 -07005294 return VM_FAULT_HWPOISON_LARGE |
Aneesh Kumar K.V972dc4d2012-07-31 16:42:00 -07005295 VM_FAULT_SET_HINDEX(hstate_index(h));
Naoya Horiguchifd6a03e2010-05-28 09:29:21 +09005296 }
5297
Mike Kravetzc0d03812020-04-01 21:11:05 -07005298 /*
5299 * Acquire i_mmap_rwsem before calling huge_pte_alloc and hold
Mike Kravetz87bf91d2020-04-01 21:11:08 -07005300 * until finished with ptep. This serves two purposes:
5301 * 1) It prevents huge_pmd_unshare from being called elsewhere
5302 * and making the ptep no longer valid.
5303 * 2) It synchronizes us with i_size modifications during truncation.
Mike Kravetzc0d03812020-04-01 21:11:05 -07005304 *
5305 * ptep could have already be assigned via huge_pte_offset. That
5306 * is OK, as huge_pte_alloc will return the same value unless
5307 * something has changed.
5308 */
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005309 mapping = vma->vm_file->f_mapping;
Mike Kravetzc0d03812020-04-01 21:11:05 -07005310 i_mmap_lock_read(mapping);
Peter Xuaec44e02021-05-04 18:33:00 -07005311 ptep = huge_pte_alloc(mm, vma, haddr, huge_page_size(h));
Mike Kravetzc0d03812020-04-01 21:11:05 -07005312 if (!ptep) {
5313 i_mmap_unlock_read(mapping);
5314 return VM_FAULT_OOM;
5315 }
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005316
David Gibson3935baa2006-03-22 00:08:53 -08005317 /*
5318 * Serialize hugepage allocation and instantiation, so that we don't
5319 * get spurious allocation failures if two CPUs race to instantiate
5320 * the same page in the page cache.
5321 */
Mike Kravetzc0d03812020-04-01 21:11:05 -07005322 idx = vma_hugecache_offset(h, vma, haddr);
Wei Yang188b04a2019-11-30 17:57:02 -08005323 hash = hugetlb_fault_mutex_hash(mapping, idx);
Mike Kravetzc672c7f2015-09-08 15:01:35 -07005324 mutex_lock(&hugetlb_fault_mutex_table[hash]);
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005325
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07005326 entry = huge_ptep_get(ptep);
5327 if (huge_pte_none(entry)) {
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005328 ret = hugetlb_no_page(mm, vma, mapping, idx, address, ptep, flags);
David Gibsonb4d1d992008-10-15 22:01:11 -07005329 goto out_mutex;
David Gibson3935baa2006-03-22 00:08:53 -08005330 }
Adam Litke86e52162006-01-06 00:10:43 -08005331
Nick Piggin83c54072007-07-19 01:47:05 -07005332 ret = 0;
David Gibson1e8f8892006-01-06 00:10:44 -08005333
Andy Whitcroft57303d82008-08-12 15:08:47 -07005334 /*
Naoya Horiguchi0f792cf2015-02-11 15:25:25 -08005335 * entry could be a migration/hwpoison entry at this point, so this
5336 * check prevents the kernel from going below assuming that we have
Ethon Paul7c8de352020-06-04 16:49:07 -07005337 * an active hugepage in pagecache. This goto expects the 2nd page
5338 * fault, and is_hugetlb_entry_(migration|hwpoisoned) check will
5339 * properly handle it.
Naoya Horiguchi0f792cf2015-02-11 15:25:25 -08005340 */
5341 if (!pte_present(entry))
5342 goto out_mutex;
5343
5344 /*
Andy Whitcroft57303d82008-08-12 15:08:47 -07005345 * If we are going to COW the mapping later, we examine the pending
5346 * reservations for this page now. This will ensure that any
5347 * allocations necessary to record that reservation occur outside the
5348 * spinlock. For private mappings, we also lookup the pagecache
5349 * page now as it is used to determine if a reservation has been
5350 * consumed.
5351 */
Gerald Schaefer106c9922013-04-29 15:07:23 -07005352 if ((flags & FAULT_FLAG_WRITE) && !huge_pte_write(entry)) {
Huang Ying285b8dc2018-06-07 17:08:08 -07005353 if (vma_needs_reservation(h, vma, haddr) < 0) {
Andy Whitcroft2b267362008-08-12 15:08:49 -07005354 ret = VM_FAULT_OOM;
David Gibsonb4d1d992008-10-15 22:01:11 -07005355 goto out_mutex;
Andy Whitcroft2b267362008-08-12 15:08:49 -07005356 }
Mike Kravetz5e911372015-09-08 15:01:28 -07005357 /* Just decrements count, does not deallocate */
Huang Ying285b8dc2018-06-07 17:08:08 -07005358 vma_end_reservation(h, vma, haddr);
Andy Whitcroft57303d82008-08-12 15:08:47 -07005359
Mel Gormanf83a2752009-05-28 14:34:40 -07005360 if (!(vma->vm_flags & VM_MAYSHARE))
Andy Whitcroft57303d82008-08-12 15:08:47 -07005361 pagecache_page = hugetlbfs_pagecache_page(h,
Huang Ying285b8dc2018-06-07 17:08:08 -07005362 vma, haddr);
Andy Whitcroft57303d82008-08-12 15:08:47 -07005363 }
5364
Naoya Horiguchi0f792cf2015-02-11 15:25:25 -08005365 ptl = huge_pte_lock(h, mm, ptep);
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +09005366
David Gibson1e8f8892006-01-06 00:10:44 -08005367 /* Check for a racing update before calling hugetlb_cow */
David Gibsonb4d1d992008-10-15 22:01:11 -07005368 if (unlikely(!pte_same(entry, huge_ptep_get(ptep))))
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005369 goto out_ptl;
David Gibsonb4d1d992008-10-15 22:01:11 -07005370
Naoya Horiguchi0f792cf2015-02-11 15:25:25 -08005371 /*
5372 * hugetlb_cow() requires page locks of pte_page(entry) and
5373 * pagecache_page, so here we need take the former one
5374 * when page != pagecache_page or !pagecache_page.
5375 */
5376 page = pte_page(entry);
5377 if (page != pagecache_page)
5378 if (!trylock_page(page)) {
5379 need_wait_lock = 1;
5380 goto out_ptl;
5381 }
5382
5383 get_page(page);
David Gibsonb4d1d992008-10-15 22:01:11 -07005384
Hugh Dickins788c7df2009-06-23 13:49:05 +01005385 if (flags & FAULT_FLAG_WRITE) {
Gerald Schaefer106c9922013-04-29 15:07:23 -07005386 if (!huge_pte_write(entry)) {
Huang Ying974e6d62018-08-17 15:45:57 -07005387 ret = hugetlb_cow(mm, vma, address, ptep,
Aneesh Kumar K.V3999f522016-12-12 16:41:56 -08005388 pagecache_page, ptl);
Naoya Horiguchi0f792cf2015-02-11 15:25:25 -08005389 goto out_put_page;
David Gibsonb4d1d992008-10-15 22:01:11 -07005390 }
Gerald Schaefer106c9922013-04-29 15:07:23 -07005391 entry = huge_pte_mkdirty(entry);
David Gibsonb4d1d992008-10-15 22:01:11 -07005392 }
5393 entry = pte_mkyoung(entry);
Huang Ying285b8dc2018-06-07 17:08:08 -07005394 if (huge_ptep_set_access_flags(vma, haddr, ptep, entry,
Hugh Dickins788c7df2009-06-23 13:49:05 +01005395 flags & FAULT_FLAG_WRITE))
Huang Ying285b8dc2018-06-07 17:08:08 -07005396 update_mmu_cache(vma, haddr, ptep);
Naoya Horiguchi0f792cf2015-02-11 15:25:25 -08005397out_put_page:
5398 if (page != pagecache_page)
5399 unlock_page(page);
5400 put_page(page);
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005401out_ptl:
5402 spin_unlock(ptl);
Andy Whitcroft57303d82008-08-12 15:08:47 -07005403
5404 if (pagecache_page) {
5405 unlock_page(pagecache_page);
5406 put_page(pagecache_page);
5407 }
David Gibsonb4d1d992008-10-15 22:01:11 -07005408out_mutex:
Mike Kravetzc672c7f2015-09-08 15:01:35 -07005409 mutex_unlock(&hugetlb_fault_mutex_table[hash]);
Mike Kravetzc0d03812020-04-01 21:11:05 -07005410 i_mmap_unlock_read(mapping);
Naoya Horiguchi0f792cf2015-02-11 15:25:25 -08005411 /*
5412 * Generally it's safe to hold refcount during waiting page lock. But
5413 * here we just wait to defer the next page fault to avoid busy loop and
5414 * the page is not used after unlocked before returning from the current
5415 * page fault. So we are safe from accessing freed page, even if we wait
5416 * here without taking refcount.
5417 */
5418 if (need_wait_lock)
5419 wait_on_page_locked(page);
David Gibson1e8f8892006-01-06 00:10:44 -08005420 return ret;
Adam Litke86e52162006-01-06 00:10:43 -08005421}
5422
Axel Rasmussen714c1892021-05-04 18:35:45 -07005423#ifdef CONFIG_USERFAULTFD
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005424/*
5425 * Used by userfaultfd UFFDIO_COPY. Based on mcopy_atomic_pte with
5426 * modifications for huge pages.
5427 */
5428int hugetlb_mcopy_atomic_pte(struct mm_struct *dst_mm,
5429 pte_t *dst_pte,
5430 struct vm_area_struct *dst_vma,
5431 unsigned long dst_addr,
5432 unsigned long src_addr,
Axel Rasmussenf6191472021-05-04 18:35:49 -07005433 enum mcopy_atomic_mode mode,
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005434 struct page **pagep)
5435{
Axel Rasmussenf6191472021-05-04 18:35:49 -07005436 bool is_continue = (mode == MCOPY_ATOMIC_CONTINUE);
Mina Almasry8cc5fcb2021-06-30 18:48:19 -07005437 struct hstate *h = hstate_vma(dst_vma);
5438 struct address_space *mapping = dst_vma->vm_file->f_mapping;
5439 pgoff_t idx = vma_hugecache_offset(h, dst_vma, dst_addr);
Andrea Arcangeli1e3921472017-11-02 15:59:29 -07005440 unsigned long size;
Mike Kravetz1c9e8de2017-02-22 15:43:43 -08005441 int vm_shared = dst_vma->vm_flags & VM_SHARED;
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005442 pte_t _dst_pte;
5443 spinlock_t *ptl;
Mina Almasry8cc5fcb2021-06-30 18:48:19 -07005444 int ret = -ENOMEM;
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005445 struct page *page;
Axel Rasmussenf6191472021-05-04 18:35:49 -07005446 int writable;
Mike Kravetzc7b18502021-08-19 19:04:33 -07005447 bool new_pagecache_page = false;
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005448
Axel Rasmussenf6191472021-05-04 18:35:49 -07005449 if (is_continue) {
5450 ret = -EFAULT;
5451 page = find_lock_page(mapping, idx);
5452 if (!page)
5453 goto out;
5454 } else if (!*pagep) {
Mina Almasryd84cf062021-06-04 20:01:36 -07005455 /* If a page already exists, then it's UFFDIO_COPY for
5456 * a non-missing case. Return -EEXIST.
5457 */
5458 if (vm_shared &&
5459 hugetlbfs_pagecache_present(h, dst_vma, dst_addr)) {
5460 ret = -EEXIST;
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005461 goto out;
Mina Almasryd84cf062021-06-04 20:01:36 -07005462 }
5463
5464 page = alloc_huge_page(dst_vma, dst_addr, 0);
5465 if (IS_ERR(page)) {
5466 ret = -ENOMEM;
5467 goto out;
5468 }
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005469
5470 ret = copy_huge_page_from_user(page,
5471 (const void __user *) src_addr,
Mike Kravetz810a56b2017-02-22 15:42:58 -08005472 pages_per_huge_page(h), false);
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005473
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07005474 /* fallback to copy_from_user outside mmap_lock */
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005475 if (unlikely(ret)) {
Andrea Arcangeli9e368252018-11-30 14:09:25 -08005476 ret = -ENOENT;
Mina Almasry8cc5fcb2021-06-30 18:48:19 -07005477 /* Free the allocated page which may have
5478 * consumed a reservation.
5479 */
5480 restore_reserve_on_error(h, dst_vma, dst_addr, page);
5481 put_page(page);
5482
5483 /* Allocate a temporary page to hold the copied
5484 * contents.
5485 */
5486 page = alloc_huge_page_vma(h, dst_vma, dst_addr);
5487 if (!page) {
5488 ret = -ENOMEM;
5489 goto out;
5490 }
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005491 *pagep = page;
Mina Almasry8cc5fcb2021-06-30 18:48:19 -07005492 /* Set the outparam pagep and return to the caller to
5493 * copy the contents outside the lock. Don't free the
5494 * page.
5495 */
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005496 goto out;
5497 }
5498 } else {
Mina Almasry8cc5fcb2021-06-30 18:48:19 -07005499 if (vm_shared &&
5500 hugetlbfs_pagecache_present(h, dst_vma, dst_addr)) {
5501 put_page(*pagep);
5502 ret = -EEXIST;
5503 *pagep = NULL;
5504 goto out;
5505 }
5506
5507 page = alloc_huge_page(dst_vma, dst_addr, 0);
5508 if (IS_ERR(page)) {
5509 ret = -ENOMEM;
5510 *pagep = NULL;
5511 goto out;
5512 }
5513 copy_huge_page(page, *pagep);
5514 put_page(*pagep);
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005515 *pagep = NULL;
5516 }
5517
5518 /*
5519 * The memory barrier inside __SetPageUptodate makes sure that
5520 * preceding stores to the page contents become visible before
5521 * the set_pte_at() write.
5522 */
5523 __SetPageUptodate(page);
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005524
Axel Rasmussenf6191472021-05-04 18:35:49 -07005525 /* Add shared, newly allocated pages to the page cache. */
5526 if (vm_shared && !is_continue) {
Andrea Arcangeli1e3921472017-11-02 15:59:29 -07005527 size = i_size_read(mapping->host) >> huge_page_shift(h);
5528 ret = -EFAULT;
5529 if (idx >= size)
5530 goto out_release_nounlock;
Mike Kravetz1c9e8de2017-02-22 15:43:43 -08005531
Andrea Arcangeli1e3921472017-11-02 15:59:29 -07005532 /*
5533 * Serialization between remove_inode_hugepages() and
5534 * huge_add_to_page_cache() below happens through the
5535 * hugetlb_fault_mutex_table that here must be hold by
5536 * the caller.
5537 */
Mike Kravetz1c9e8de2017-02-22 15:43:43 -08005538 ret = huge_add_to_page_cache(page, mapping, idx);
5539 if (ret)
5540 goto out_release_nounlock;
Mike Kravetzc7b18502021-08-19 19:04:33 -07005541 new_pagecache_page = true;
Mike Kravetz1c9e8de2017-02-22 15:43:43 -08005542 }
5543
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005544 ptl = huge_pte_lockptr(h, dst_mm, dst_pte);
5545 spin_lock(ptl);
5546
Andrea Arcangeli1e3921472017-11-02 15:59:29 -07005547 /*
5548 * Recheck the i_size after holding PT lock to make sure not
5549 * to leave any page mapped (as page_mapped()) beyond the end
5550 * of the i_size (remove_inode_hugepages() is strict about
5551 * enforcing that). If we bail out here, we'll also leave a
5552 * page in the radix tree in the vm_shared case beyond the end
5553 * of the i_size, but remove_inode_hugepages() will take care
5554 * of it as soon as we drop the hugetlb_fault_mutex_table.
5555 */
5556 size = i_size_read(mapping->host) >> huge_page_shift(h);
5557 ret = -EFAULT;
5558 if (idx >= size)
5559 goto out_release_unlock;
5560
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005561 ret = -EEXIST;
5562 if (!huge_pte_none(huge_ptep_get(dst_pte)))
5563 goto out_release_unlock;
5564
Mike Kravetz1c9e8de2017-02-22 15:43:43 -08005565 if (vm_shared) {
5566 page_dup_rmap(page, true);
5567 } else {
Mike Kravetzd6995da2021-02-24 12:08:51 -08005568 ClearHPageRestoreReserve(page);
Mike Kravetz1c9e8de2017-02-22 15:43:43 -08005569 hugepage_add_new_anon_rmap(page, dst_vma, dst_addr);
5570 }
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005571
Axel Rasmussenf6191472021-05-04 18:35:49 -07005572 /* For CONTINUE on a non-shared VMA, don't set VM_WRITE for CoW. */
5573 if (is_continue && !vm_shared)
5574 writable = 0;
5575 else
5576 writable = dst_vma->vm_flags & VM_WRITE;
5577
5578 _dst_pte = make_huge_pte(dst_vma, page, writable);
5579 if (writable)
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005580 _dst_pte = huge_pte_mkdirty(_dst_pte);
5581 _dst_pte = pte_mkyoung(_dst_pte);
5582
5583 set_huge_pte_at(dst_mm, dst_addr, dst_pte, _dst_pte);
5584
5585 (void)huge_ptep_set_access_flags(dst_vma, dst_addr, dst_pte, _dst_pte,
5586 dst_vma->vm_flags & VM_WRITE);
5587 hugetlb_count_add(pages_per_huge_page(h), dst_mm);
5588
5589 /* No need to invalidate - it was non-present before */
5590 update_mmu_cache(dst_vma, dst_addr, dst_pte);
5591
5592 spin_unlock(ptl);
Axel Rasmussenf6191472021-05-04 18:35:49 -07005593 if (!is_continue)
5594 SetHPageMigratable(page);
5595 if (vm_shared || is_continue)
Mike Kravetz1c9e8de2017-02-22 15:43:43 -08005596 unlock_page(page);
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005597 ret = 0;
5598out:
5599 return ret;
5600out_release_unlock:
5601 spin_unlock(ptl);
Axel Rasmussenf6191472021-05-04 18:35:49 -07005602 if (vm_shared || is_continue)
Mike Kravetz1c9e8de2017-02-22 15:43:43 -08005603 unlock_page(page);
Andrea Arcangeli5af10df2017-08-10 15:23:38 -07005604out_release_nounlock:
Mike Kravetzc7b18502021-08-19 19:04:33 -07005605 if (!new_pagecache_page)
5606 restore_reserve_on_error(h, dst_vma, dst_addr, page);
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005607 put_page(page);
5608 goto out;
5609}
Axel Rasmussen714c1892021-05-04 18:35:45 -07005610#endif /* CONFIG_USERFAULTFD */
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005611
Joao Martins82e5d372021-02-24 12:07:16 -08005612static void record_subpages_vmas(struct page *page, struct vm_area_struct *vma,
5613 int refs, struct page **pages,
5614 struct vm_area_struct **vmas)
5615{
5616 int nr;
5617
5618 for (nr = 0; nr < refs; nr++) {
5619 if (likely(pages))
5620 pages[nr] = mem_map_offset(page, nr);
5621 if (vmas)
5622 vmas[nr] = vma;
5623 }
5624}
5625
Michel Lespinasse28a35712013-02-22 16:35:55 -08005626long follow_hugetlb_page(struct mm_struct *mm, struct vm_area_struct *vma,
5627 struct page **pages, struct vm_area_struct **vmas,
5628 unsigned long *position, unsigned long *nr_pages,
Peter Xu4f6da932020-04-01 21:07:58 -07005629 long i, unsigned int flags, int *locked)
David Gibson63551ae2005-06-21 17:14:44 -07005630{
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08005631 unsigned long pfn_offset;
5632 unsigned long vaddr = *position;
Michel Lespinasse28a35712013-02-22 16:35:55 -08005633 unsigned long remainder = *nr_pages;
Andi Kleena5516432008-07-23 21:27:41 -07005634 struct hstate *h = hstate_vma(vma);
Joao Martins0fa5bc42021-02-24 12:07:12 -08005635 int err = -EFAULT, refs;
David Gibson63551ae2005-06-21 17:14:44 -07005636
David Gibson63551ae2005-06-21 17:14:44 -07005637 while (vaddr < vma->vm_end && remainder) {
Adam Litke4c887262005-10-29 18:16:46 -07005638 pte_t *pte;
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005639 spinlock_t *ptl = NULL;
Hugh Dickins2a15efc2009-09-21 17:03:27 -07005640 int absent;
Adam Litke4c887262005-10-29 18:16:46 -07005641 struct page *page;
5642
5643 /*
David Rientjes02057962015-04-14 15:48:24 -07005644 * If we have a pending SIGKILL, don't keep faulting pages and
5645 * potentially allocating memory.
5646 */
Davidlohr Buesofa45f112019-01-03 15:28:55 -08005647 if (fatal_signal_pending(current)) {
David Rientjes02057962015-04-14 15:48:24 -07005648 remainder = 0;
5649 break;
5650 }
5651
5652 /*
Adam Litke4c887262005-10-29 18:16:46 -07005653 * Some archs (sparc64, sh*) have multiple pte_ts to
Hugh Dickins2a15efc2009-09-21 17:03:27 -07005654 * each hugepage. We have to make sure we get the
Adam Litke4c887262005-10-29 18:16:46 -07005655 * first, for the page indexing below to work.
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005656 *
5657 * Note that page table lock is not held when pte is null.
Adam Litke4c887262005-10-29 18:16:46 -07005658 */
Punit Agrawal7868a202017-07-06 15:39:42 -07005659 pte = huge_pte_offset(mm, vaddr & huge_page_mask(h),
5660 huge_page_size(h));
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005661 if (pte)
5662 ptl = huge_pte_lock(h, mm, pte);
Hugh Dickins2a15efc2009-09-21 17:03:27 -07005663 absent = !pte || huge_pte_none(huge_ptep_get(pte));
Adam Litke4c887262005-10-29 18:16:46 -07005664
Hugh Dickins2a15efc2009-09-21 17:03:27 -07005665 /*
5666 * When coredumping, it suits get_dump_page if we just return
Hugh Dickins3ae77f42009-09-21 17:03:33 -07005667 * an error where there's an empty slot with no huge pagecache
5668 * to back it. This way, we avoid allocating a hugepage, and
5669 * the sparse dumpfile avoids allocating disk blocks, but its
5670 * huge holes still show up with zeroes where they need to be.
Hugh Dickins2a15efc2009-09-21 17:03:27 -07005671 */
Hugh Dickins3ae77f42009-09-21 17:03:33 -07005672 if (absent && (flags & FOLL_DUMP) &&
5673 !hugetlbfs_pagecache_present(h, vma, vaddr)) {
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005674 if (pte)
5675 spin_unlock(ptl);
Hugh Dickins2a15efc2009-09-21 17:03:27 -07005676 remainder = 0;
5677 break;
5678 }
5679
Naoya Horiguchi9cc3a5b2013-04-17 15:58:30 -07005680 /*
5681 * We need call hugetlb_fault for both hugepages under migration
5682 * (in which case hugetlb_fault waits for the migration,) and
5683 * hwpoisoned hugepages (in which case we need to prevent the
5684 * caller from accessing to them.) In order to do this, we use
5685 * here is_swap_pte instead of is_hugetlb_entry_migration and
5686 * is_hugetlb_entry_hwpoisoned. This is because it simply covers
5687 * both cases, and because we can't follow correct pages
5688 * directly from any kind of swap entries.
5689 */
5690 if (absent || is_swap_pte(huge_ptep_get(pte)) ||
Gerald Schaefer106c9922013-04-29 15:07:23 -07005691 ((flags & FOLL_WRITE) &&
5692 !huge_pte_write(huge_ptep_get(pte)))) {
Souptick Joarder2b740302018-08-23 17:01:36 -07005693 vm_fault_t ret;
Andrea Arcangeli87ffc112017-02-22 15:43:13 -08005694 unsigned int fault_flags = 0;
Adam Litke4c887262005-10-29 18:16:46 -07005695
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005696 if (pte)
5697 spin_unlock(ptl);
Andrea Arcangeli87ffc112017-02-22 15:43:13 -08005698 if (flags & FOLL_WRITE)
5699 fault_flags |= FAULT_FLAG_WRITE;
Peter Xu4f6da932020-04-01 21:07:58 -07005700 if (locked)
Peter Xu71335f32020-04-01 21:08:53 -07005701 fault_flags |= FAULT_FLAG_ALLOW_RETRY |
5702 FAULT_FLAG_KILLABLE;
Andrea Arcangeli87ffc112017-02-22 15:43:13 -08005703 if (flags & FOLL_NOWAIT)
5704 fault_flags |= FAULT_FLAG_ALLOW_RETRY |
5705 FAULT_FLAG_RETRY_NOWAIT;
5706 if (flags & FOLL_TRIED) {
Peter Xu4426e942020-04-01 21:08:49 -07005707 /*
5708 * Note: FAULT_FLAG_ALLOW_RETRY and
5709 * FAULT_FLAG_TRIED can co-exist
5710 */
Andrea Arcangeli87ffc112017-02-22 15:43:13 -08005711 fault_flags |= FAULT_FLAG_TRIED;
5712 }
5713 ret = hugetlb_fault(mm, vma, vaddr, fault_flags);
5714 if (ret & VM_FAULT_ERROR) {
Daniel Jordan2be7cfe2017-08-02 13:31:47 -07005715 err = vm_fault_to_errno(ret, flags);
Andrea Arcangeli87ffc112017-02-22 15:43:13 -08005716 remainder = 0;
5717 break;
5718 }
5719 if (ret & VM_FAULT_RETRY) {
Peter Xu4f6da932020-04-01 21:07:58 -07005720 if (locked &&
Andrea Arcangeli1ac25012019-02-01 14:20:16 -08005721 !(fault_flags & FAULT_FLAG_RETRY_NOWAIT))
Peter Xu4f6da932020-04-01 21:07:58 -07005722 *locked = 0;
Andrea Arcangeli87ffc112017-02-22 15:43:13 -08005723 *nr_pages = 0;
5724 /*
5725 * VM_FAULT_RETRY must not return an
5726 * error, it will return zero
5727 * instead.
5728 *
5729 * No need to update "position" as the
5730 * caller will not check it after
5731 * *nr_pages is set to 0.
5732 */
5733 return i;
5734 }
5735 continue;
Adam Litke4c887262005-10-29 18:16:46 -07005736 }
David Gibson63551ae2005-06-21 17:14:44 -07005737
Andi Kleena5516432008-07-23 21:27:41 -07005738 pfn_offset = (vaddr & ~huge_page_mask(h)) >> PAGE_SHIFT;
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07005739 page = pte_page(huge_ptep_get(pte));
Linus Torvalds8fde12c2019-04-11 10:49:19 -07005740
5741 /*
Zhigang Luacbfb082019-11-30 17:57:06 -08005742 * If subpage information not requested, update counters
5743 * and skip the same_page loop below.
5744 */
5745 if (!pages && !vmas && !pfn_offset &&
5746 (vaddr + huge_page_size(h) < vma->vm_end) &&
5747 (remainder >= pages_per_huge_page(h))) {
5748 vaddr += huge_page_size(h);
5749 remainder -= pages_per_huge_page(h);
5750 i += pages_per_huge_page(h);
5751 spin_unlock(ptl);
5752 continue;
5753 }
5754
Joao Martinsd08af0a2021-07-14 21:27:11 -07005755 /* vaddr may not be aligned to PAGE_SIZE */
5756 refs = min3(pages_per_huge_page(h) - pfn_offset, remainder,
5757 (vma->vm_end - ALIGN_DOWN(vaddr, PAGE_SIZE)) >> PAGE_SHIFT);
Joao Martins0fa5bc42021-02-24 12:07:12 -08005758
Joao Martins82e5d372021-02-24 12:07:16 -08005759 if (pages || vmas)
5760 record_subpages_vmas(mem_map_offset(page, pfn_offset),
5761 vma, refs,
5762 likely(pages) ? pages + i : NULL,
5763 vmas ? vmas + i : NULL);
David Gibson63551ae2005-06-21 17:14:44 -07005764
Joao Martins82e5d372021-02-24 12:07:16 -08005765 if (pages) {
Joao Martins0fa5bc42021-02-24 12:07:12 -08005766 /*
5767 * try_grab_compound_head() should always succeed here,
5768 * because: a) we hold the ptl lock, and b) we've just
5769 * checked that the huge page is present in the page
5770 * tables. If the huge page is present, then the tail
5771 * pages must also be present. The ptl prevents the
5772 * head page and tail pages from being rearranged in
5773 * any way. So this page must be available at this
5774 * point, unless the page refcount overflowed:
5775 */
Joao Martins82e5d372021-02-24 12:07:16 -08005776 if (WARN_ON_ONCE(!try_grab_compound_head(pages[i],
Joao Martins0fa5bc42021-02-24 12:07:12 -08005777 refs,
5778 flags))) {
5779 spin_unlock(ptl);
5780 remainder = 0;
5781 err = -ENOMEM;
5782 break;
5783 }
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08005784 }
Joao Martins82e5d372021-02-24 12:07:16 -08005785
5786 vaddr += (refs << PAGE_SHIFT);
5787 remainder -= refs;
5788 i += refs;
5789
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005790 spin_unlock(ptl);
David Gibson63551ae2005-06-21 17:14:44 -07005791 }
Michel Lespinasse28a35712013-02-22 16:35:55 -08005792 *nr_pages = remainder;
Andrea Arcangeli87ffc112017-02-22 15:43:13 -08005793 /*
5794 * setting position is actually required only if remainder is
5795 * not zero but it's faster not to add a "if (remainder)"
5796 * branch.
5797 */
David Gibson63551ae2005-06-21 17:14:44 -07005798 *position = vaddr;
5799
Daniel Jordan2be7cfe2017-08-02 13:31:47 -07005800 return i ? i : err;
David Gibson63551ae2005-06-21 17:14:44 -07005801}
Zhang, Yanmin8f860592006-03-22 00:08:50 -08005802
Peter Zijlstra7da4d642012-11-19 03:14:23 +01005803unsigned long hugetlb_change_protection(struct vm_area_struct *vma,
Zhang, Yanmin8f860592006-03-22 00:08:50 -08005804 unsigned long address, unsigned long end, pgprot_t newprot)
5805{
5806 struct mm_struct *mm = vma->vm_mm;
5807 unsigned long start = address;
5808 pte_t *ptep;
5809 pte_t pte;
Andi Kleena5516432008-07-23 21:27:41 -07005810 struct hstate *h = hstate_vma(vma);
Peter Zijlstra7da4d642012-11-19 03:14:23 +01005811 unsigned long pages = 0;
Mike Kravetzdff11ab2018-10-05 15:51:33 -07005812 bool shared_pmd = false;
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08005813 struct mmu_notifier_range range;
Mike Kravetzdff11ab2018-10-05 15:51:33 -07005814
5815 /*
5816 * In the case of shared PMDs, the area to flush could be beyond
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08005817 * start/end. Set range.start/range.end to cover the maximum possible
Mike Kravetzdff11ab2018-10-05 15:51:33 -07005818 * range if PMD sharing is possible.
5819 */
Jérôme Glisse7269f992019-05-13 17:20:53 -07005820 mmu_notifier_range_init(&range, MMU_NOTIFY_PROTECTION_VMA,
5821 0, vma, mm, start, end);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08005822 adjust_range_if_pmd_sharing_possible(vma, &range.start, &range.end);
Zhang, Yanmin8f860592006-03-22 00:08:50 -08005823
5824 BUG_ON(address >= end);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08005825 flush_cache_range(vma, range.start, range.end);
Zhang, Yanmin8f860592006-03-22 00:08:50 -08005826
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08005827 mmu_notifier_invalidate_range_start(&range);
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -08005828 i_mmap_lock_write(vma->vm_file->f_mapping);
Andi Kleena5516432008-07-23 21:27:41 -07005829 for (; address < end; address += huge_page_size(h)) {
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005830 spinlock_t *ptl;
Punit Agrawal7868a202017-07-06 15:39:42 -07005831 ptep = huge_pte_offset(mm, address, huge_page_size(h));
Zhang, Yanmin8f860592006-03-22 00:08:50 -08005832 if (!ptep)
5833 continue;
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005834 ptl = huge_pte_lock(h, mm, ptep);
Mike Kravetz34ae2042020-08-11 18:31:38 -07005835 if (huge_pmd_unshare(mm, vma, &address, ptep)) {
Peter Zijlstra7da4d642012-11-19 03:14:23 +01005836 pages++;
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005837 spin_unlock(ptl);
Mike Kravetzdff11ab2018-10-05 15:51:33 -07005838 shared_pmd = true;
Chen, Kenneth W39dde652006-12-06 20:32:03 -08005839 continue;
Peter Zijlstra7da4d642012-11-19 03:14:23 +01005840 }
Naoya Horiguchia8bda282015-02-11 15:25:28 -08005841 pte = huge_ptep_get(ptep);
5842 if (unlikely(is_hugetlb_entry_hwpoisoned(pte))) {
5843 spin_unlock(ptl);
5844 continue;
5845 }
5846 if (unlikely(is_hugetlb_entry_migration(pte))) {
5847 swp_entry_t entry = pte_to_swp_entry(pte);
5848
Alistair Popple4dd845b2021-06-30 18:54:09 -07005849 if (is_writable_migration_entry(entry)) {
Naoya Horiguchia8bda282015-02-11 15:25:28 -08005850 pte_t newpte;
5851
Alistair Popple4dd845b2021-06-30 18:54:09 -07005852 entry = make_readable_migration_entry(
5853 swp_offset(entry));
Naoya Horiguchia8bda282015-02-11 15:25:28 -08005854 newpte = swp_entry_to_pte(entry);
Punit Agrawale5251fd2017-07-06 15:39:50 -07005855 set_huge_swap_pte_at(mm, address, ptep,
5856 newpte, huge_page_size(h));
Naoya Horiguchia8bda282015-02-11 15:25:28 -08005857 pages++;
5858 }
5859 spin_unlock(ptl);
5860 continue;
5861 }
5862 if (!huge_pte_none(pte)) {
Aneesh Kumar K.V023bdd02019-03-05 15:46:37 -08005863 pte_t old_pte;
Christophe Leroy79c1c592021-06-30 18:48:00 -07005864 unsigned int shift = huge_page_shift(hstate_vma(vma));
Aneesh Kumar K.V023bdd02019-03-05 15:46:37 -08005865
5866 old_pte = huge_ptep_modify_prot_start(vma, address, ptep);
5867 pte = pte_mkhuge(huge_pte_modify(old_pte, newprot));
Christophe Leroy79c1c592021-06-30 18:48:00 -07005868 pte = arch_make_huge_pte(pte, shift, vma->vm_flags);
Aneesh Kumar K.V023bdd02019-03-05 15:46:37 -08005869 huge_ptep_modify_prot_commit(vma, address, ptep, old_pte, pte);
Peter Zijlstra7da4d642012-11-19 03:14:23 +01005870 pages++;
Zhang, Yanmin8f860592006-03-22 00:08:50 -08005871 }
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005872 spin_unlock(ptl);
Zhang, Yanmin8f860592006-03-22 00:08:50 -08005873 }
Mel Gormand8333522012-07-31 16:46:20 -07005874 /*
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -08005875 * Must flush TLB before releasing i_mmap_rwsem: x86's huge_pmd_unshare
Mel Gormand8333522012-07-31 16:46:20 -07005876 * may have cleared our pud entry and done put_page on the page table:
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -08005877 * once we release i_mmap_rwsem, another task can do the final put_page
Mike Kravetzdff11ab2018-10-05 15:51:33 -07005878 * and that page table be reused and filled with junk. If we actually
5879 * did unshare a page of pmds, flush the range corresponding to the pud.
Mel Gormand8333522012-07-31 16:46:20 -07005880 */
Mike Kravetzdff11ab2018-10-05 15:51:33 -07005881 if (shared_pmd)
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08005882 flush_hugetlb_tlb_range(vma, range.start, range.end);
Mike Kravetzdff11ab2018-10-05 15:51:33 -07005883 else
5884 flush_hugetlb_tlb_range(vma, start, end);
Jérôme Glisse0f108512017-11-15 17:34:07 -08005885 /*
5886 * No need to call mmu_notifier_invalidate_range() we are downgrading
5887 * page table protection not changing it to point to a new page.
5888 *
Mike Rapoportad56b732018-03-21 21:22:47 +02005889 * See Documentation/vm/mmu_notifier.rst
Jérôme Glisse0f108512017-11-15 17:34:07 -08005890 */
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -08005891 i_mmap_unlock_write(vma->vm_file->f_mapping);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08005892 mmu_notifier_invalidate_range_end(&range);
Peter Zijlstra7da4d642012-11-19 03:14:23 +01005893
5894 return pages << h->order;
Zhang, Yanmin8f860592006-03-22 00:08:50 -08005895}
5896
Mike Kravetz33b8f842021-02-24 12:09:54 -08005897/* Return true if reservation was successful, false otherwise. */
5898bool hugetlb_reserve_pages(struct inode *inode,
Mel Gormana1e78772008-07-23 21:27:23 -07005899 long from, long to,
Mel Gorman5a6fe122009-02-10 14:02:27 +00005900 struct vm_area_struct *vma,
KOSAKI Motohiroca16d142011-05-26 19:16:19 +09005901 vm_flags_t vm_flags)
Adam Litkee4e574b2007-10-16 01:26:19 -07005902{
Mike Kravetz33b8f842021-02-24 12:09:54 -08005903 long chg, add = -1;
Andi Kleena5516432008-07-23 21:27:41 -07005904 struct hstate *h = hstate_inode(inode);
David Gibson90481622012-03-21 16:34:12 -07005905 struct hugepage_subpool *spool = subpool_inode(inode);
Joonsoo Kim9119a412014-04-03 14:47:25 -07005906 struct resv_map *resv_map;
Mina Almasry075a61d2020-04-01 21:11:28 -07005907 struct hugetlb_cgroup *h_cg = NULL;
Mina Almasry0db9d742020-04-01 21:11:25 -07005908 long gbl_reserve, regions_needed = 0;
Adam Litkee4e574b2007-10-16 01:26:19 -07005909
Mike Kravetz63489f82018-03-22 16:17:13 -07005910 /* This should never happen */
5911 if (from > to) {
5912 VM_WARN(1, "%s called with a negative range\n", __func__);
Mike Kravetz33b8f842021-02-24 12:09:54 -08005913 return false;
Mike Kravetz63489f82018-03-22 16:17:13 -07005914 }
5915
Mel Gormana1e78772008-07-23 21:27:23 -07005916 /*
Mel Gorman17c9d122009-02-11 16:34:16 +00005917 * Only apply hugepage reservation if asked. At fault time, an
5918 * attempt will be made for VM_NORESERVE to allocate a page
David Gibson90481622012-03-21 16:34:12 -07005919 * without using reserves
Mel Gorman17c9d122009-02-11 16:34:16 +00005920 */
KOSAKI Motohiroca16d142011-05-26 19:16:19 +09005921 if (vm_flags & VM_NORESERVE)
Mike Kravetz33b8f842021-02-24 12:09:54 -08005922 return true;
Mel Gorman17c9d122009-02-11 16:34:16 +00005923
5924 /*
Mel Gormana1e78772008-07-23 21:27:23 -07005925 * Shared mappings base their reservation on the number of pages that
5926 * are already allocated on behalf of the file. Private mappings need
5927 * to reserve the full area even if read-only as mprotect() may be
5928 * called to make the mapping read-write. Assume !vma is a shm mapping
5929 */
Joonsoo Kim9119a412014-04-03 14:47:25 -07005930 if (!vma || vma->vm_flags & VM_MAYSHARE) {
Mike Kravetzf27a5132019-05-13 17:22:55 -07005931 /*
5932 * resv_map can not be NULL as hugetlb_reserve_pages is only
5933 * called for inodes for which resv_maps were created (see
5934 * hugetlbfs_get_inode).
5935 */
Joonsoo Kim4e35f482014-04-03 14:47:30 -07005936 resv_map = inode_resv_map(inode);
Joonsoo Kim9119a412014-04-03 14:47:25 -07005937
Mina Almasry0db9d742020-04-01 21:11:25 -07005938 chg = region_chg(resv_map, from, to, &regions_needed);
Joonsoo Kim9119a412014-04-03 14:47:25 -07005939
5940 } else {
Mina Almasrye9fe92a2020-04-01 21:11:21 -07005941 /* Private mapping. */
Joonsoo Kim9119a412014-04-03 14:47:25 -07005942 resv_map = resv_map_alloc();
Mel Gorman5a6fe122009-02-10 14:02:27 +00005943 if (!resv_map)
Mike Kravetz33b8f842021-02-24 12:09:54 -08005944 return false;
Mel Gorman5a6fe122009-02-10 14:02:27 +00005945
Mel Gorman17c9d122009-02-11 16:34:16 +00005946 chg = to - from;
5947
Mel Gorman5a6fe122009-02-10 14:02:27 +00005948 set_vma_resv_map(vma, resv_map);
5949 set_vma_resv_flags(vma, HPAGE_RESV_OWNER);
5950 }
5951
Mike Kravetz33b8f842021-02-24 12:09:54 -08005952 if (chg < 0)
Dave Hansenc50ac052012-05-29 15:06:46 -07005953 goto out_err;
Mel Gorman17c9d122009-02-11 16:34:16 +00005954
Mike Kravetz33b8f842021-02-24 12:09:54 -08005955 if (hugetlb_cgroup_charge_cgroup_rsvd(hstate_index(h),
5956 chg * pages_per_huge_page(h), &h_cg) < 0)
Mina Almasry075a61d2020-04-01 21:11:28 -07005957 goto out_err;
Mina Almasry075a61d2020-04-01 21:11:28 -07005958
5959 if (vma && !(vma->vm_flags & VM_MAYSHARE) && h_cg) {
5960 /* For private mappings, the hugetlb_cgroup uncharge info hangs
5961 * of the resv_map.
5962 */
5963 resv_map_set_hugetlb_cgroup_uncharge_info(resv_map, h_cg, h);
5964 }
5965
Mike Kravetz1c5ecae2015-04-15 16:13:39 -07005966 /*
5967 * There must be enough pages in the subpool for the mapping. If
5968 * the subpool has a minimum size, there may be some global
5969 * reservations already in place (gbl_reserve).
5970 */
5971 gbl_reserve = hugepage_subpool_get_pages(spool, chg);
Mike Kravetz33b8f842021-02-24 12:09:54 -08005972 if (gbl_reserve < 0)
Mina Almasry075a61d2020-04-01 21:11:28 -07005973 goto out_uncharge_cgroup;
Mel Gorman17c9d122009-02-11 16:34:16 +00005974
5975 /*
5976 * Check enough hugepages are available for the reservation.
David Gibson90481622012-03-21 16:34:12 -07005977 * Hand the pages back to the subpool if there are not
Mel Gorman17c9d122009-02-11 16:34:16 +00005978 */
Mike Kravetz33b8f842021-02-24 12:09:54 -08005979 if (hugetlb_acct_memory(h, gbl_reserve) < 0)
Mina Almasry075a61d2020-04-01 21:11:28 -07005980 goto out_put_pages;
Mel Gorman17c9d122009-02-11 16:34:16 +00005981
5982 /*
5983 * Account for the reservations made. Shared mappings record regions
5984 * that have reservations as they are shared by multiple VMAs.
5985 * When the last VMA disappears, the region map says how much
5986 * the reservation was and the page cache tells how much of
5987 * the reservation was consumed. Private mappings are per-VMA and
5988 * only the consumed reservations are tracked. When the VMA
5989 * disappears, the original reservation is the VMA size and the
5990 * consumed reservations are stored in the map. Hence, nothing
5991 * else has to be done for private mappings here
5992 */
Mike Kravetz33039672015-06-24 16:57:58 -07005993 if (!vma || vma->vm_flags & VM_MAYSHARE) {
Mina Almasry075a61d2020-04-01 21:11:28 -07005994 add = region_add(resv_map, from, to, regions_needed, h, h_cg);
Mike Kravetz33039672015-06-24 16:57:58 -07005995
Mina Almasry0db9d742020-04-01 21:11:25 -07005996 if (unlikely(add < 0)) {
5997 hugetlb_acct_memory(h, -gbl_reserve);
Mina Almasry075a61d2020-04-01 21:11:28 -07005998 goto out_put_pages;
Mina Almasry0db9d742020-04-01 21:11:25 -07005999 } else if (unlikely(chg > add)) {
Mike Kravetz33039672015-06-24 16:57:58 -07006000 /*
6001 * pages in this range were added to the reserve
6002 * map between region_chg and region_add. This
6003 * indicates a race with alloc_huge_page. Adjust
6004 * the subpool and reserve counts modified above
6005 * based on the difference.
6006 */
6007 long rsv_adjust;
6008
Miaohe Lind85aecf2021-03-24 21:37:17 -07006009 /*
6010 * hugetlb_cgroup_uncharge_cgroup_rsvd() will put the
6011 * reference to h_cg->css. See comment below for detail.
6012 */
Mina Almasry075a61d2020-04-01 21:11:28 -07006013 hugetlb_cgroup_uncharge_cgroup_rsvd(
6014 hstate_index(h),
6015 (chg - add) * pages_per_huge_page(h), h_cg);
6016
Mike Kravetz33039672015-06-24 16:57:58 -07006017 rsv_adjust = hugepage_subpool_put_pages(spool,
6018 chg - add);
6019 hugetlb_acct_memory(h, -rsv_adjust);
Miaohe Lind85aecf2021-03-24 21:37:17 -07006020 } else if (h_cg) {
6021 /*
6022 * The file_regions will hold their own reference to
6023 * h_cg->css. So we should release the reference held
6024 * via hugetlb_cgroup_charge_cgroup_rsvd() when we are
6025 * done.
6026 */
6027 hugetlb_cgroup_put_rsvd_cgroup(h_cg);
Mike Kravetz33039672015-06-24 16:57:58 -07006028 }
6029 }
Mike Kravetz33b8f842021-02-24 12:09:54 -08006030 return true;
6031
Mina Almasry075a61d2020-04-01 21:11:28 -07006032out_put_pages:
6033 /* put back original number of pages, chg */
6034 (void)hugepage_subpool_put_pages(spool, chg);
6035out_uncharge_cgroup:
6036 hugetlb_cgroup_uncharge_cgroup_rsvd(hstate_index(h),
6037 chg * pages_per_huge_page(h), h_cg);
Dave Hansenc50ac052012-05-29 15:06:46 -07006038out_err:
Mike Kravetz5e911372015-09-08 15:01:28 -07006039 if (!vma || vma->vm_flags & VM_MAYSHARE)
Mina Almasry0db9d742020-04-01 21:11:25 -07006040 /* Only call region_abort if the region_chg succeeded but the
6041 * region_add failed or didn't run.
6042 */
6043 if (chg >= 0 && add < 0)
6044 region_abort(resv_map, from, to, regions_needed);
Joonsoo Kimf031dd22014-04-03 14:47:28 -07006045 if (vma && is_vma_resv_set(vma, HPAGE_RESV_OWNER))
6046 kref_put(&resv_map->refs, resv_map_release);
Mike Kravetz33b8f842021-02-24 12:09:54 -08006047 return false;
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07006048}
6049
Mike Kravetzb5cec282015-09-08 15:01:41 -07006050long hugetlb_unreserve_pages(struct inode *inode, long start, long end,
6051 long freed)
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07006052{
Andi Kleena5516432008-07-23 21:27:41 -07006053 struct hstate *h = hstate_inode(inode);
Joonsoo Kim4e35f482014-04-03 14:47:30 -07006054 struct resv_map *resv_map = inode_resv_map(inode);
Joonsoo Kim9119a412014-04-03 14:47:25 -07006055 long chg = 0;
David Gibson90481622012-03-21 16:34:12 -07006056 struct hugepage_subpool *spool = subpool_inode(inode);
Mike Kravetz1c5ecae2015-04-15 16:13:39 -07006057 long gbl_reserve;
Ken Chen45c682a2007-11-14 16:59:44 -08006058
Mike Kravetzf27a5132019-05-13 17:22:55 -07006059 /*
6060 * Since this routine can be called in the evict inode path for all
6061 * hugetlbfs inodes, resv_map could be NULL.
6062 */
Mike Kravetzb5cec282015-09-08 15:01:41 -07006063 if (resv_map) {
6064 chg = region_del(resv_map, start, end);
6065 /*
6066 * region_del() can fail in the rare case where a region
6067 * must be split and another region descriptor can not be
6068 * allocated. If end == LONG_MAX, it will not fail.
6069 */
6070 if (chg < 0)
6071 return chg;
6072 }
6073
Ken Chen45c682a2007-11-14 16:59:44 -08006074 spin_lock(&inode->i_lock);
Eric Sandeene4c6f8b2009-07-29 15:02:16 -07006075 inode->i_blocks -= (blocks_per_huge_page(h) * freed);
Ken Chen45c682a2007-11-14 16:59:44 -08006076 spin_unlock(&inode->i_lock);
6077
Mike Kravetz1c5ecae2015-04-15 16:13:39 -07006078 /*
6079 * If the subpool has a minimum size, the number of global
6080 * reservations to be released may be adjusted.
Miaohe Lindddf31a2021-05-04 18:34:35 -07006081 *
6082 * Note that !resv_map implies freed == 0. So (chg - freed)
6083 * won't go negative.
Mike Kravetz1c5ecae2015-04-15 16:13:39 -07006084 */
6085 gbl_reserve = hugepage_subpool_put_pages(spool, (chg - freed));
6086 hugetlb_acct_memory(h, -gbl_reserve);
Mike Kravetzb5cec282015-09-08 15:01:41 -07006087
6088 return 0;
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07006089}
Naoya Horiguchi93f70f92010-05-28 09:29:20 +09006090
Steve Capper3212b532013-04-23 12:35:02 +01006091#ifdef CONFIG_ARCH_WANT_HUGE_PMD_SHARE
6092static unsigned long page_table_shareable(struct vm_area_struct *svma,
6093 struct vm_area_struct *vma,
6094 unsigned long addr, pgoff_t idx)
6095{
6096 unsigned long saddr = ((idx - svma->vm_pgoff) << PAGE_SHIFT) +
6097 svma->vm_start;
6098 unsigned long sbase = saddr & PUD_MASK;
6099 unsigned long s_end = sbase + PUD_SIZE;
6100
6101 /* Allow segments to share if only one is marked locked */
Eric B Munsonde60f5f2015-11-05 18:51:36 -08006102 unsigned long vm_flags = vma->vm_flags & VM_LOCKED_CLEAR_MASK;
6103 unsigned long svm_flags = svma->vm_flags & VM_LOCKED_CLEAR_MASK;
Steve Capper3212b532013-04-23 12:35:02 +01006104
6105 /*
6106 * match the virtual addresses, permission and the alignment of the
6107 * page table page.
6108 */
6109 if (pmd_index(addr) != pmd_index(saddr) ||
6110 vm_flags != svm_flags ||
Miaohe Lin07e51ed2021-02-24 12:07:39 -08006111 !range_in_vma(svma, sbase, s_end))
Steve Capper3212b532013-04-23 12:35:02 +01006112 return 0;
6113
6114 return saddr;
6115}
6116
Nicholas Krause31aafb42015-09-04 15:47:58 -07006117static bool vma_shareable(struct vm_area_struct *vma, unsigned long addr)
Steve Capper3212b532013-04-23 12:35:02 +01006118{
6119 unsigned long base = addr & PUD_MASK;
6120 unsigned long end = base + PUD_SIZE;
6121
6122 /*
6123 * check on proper vm_flags and page table alignment
6124 */
Mike Kravetz017b1662018-10-05 15:51:29 -07006125 if (vma->vm_flags & VM_MAYSHARE && range_in_vma(vma, base, end))
Nicholas Krause31aafb42015-09-04 15:47:58 -07006126 return true;
6127 return false;
Steve Capper3212b532013-04-23 12:35:02 +01006128}
6129
Peter Xuc1991e02021-05-04 18:33:04 -07006130bool want_pmd_share(struct vm_area_struct *vma, unsigned long addr)
6131{
6132#ifdef CONFIG_USERFAULTFD
6133 if (uffd_disable_huge_pmd_share(vma))
6134 return false;
6135#endif
6136 return vma_shareable(vma, addr);
6137}
6138
Steve Capper3212b532013-04-23 12:35:02 +01006139/*
Mike Kravetz017b1662018-10-05 15:51:29 -07006140 * Determine if start,end range within vma could be mapped by shared pmd.
6141 * If yes, adjust start and end to cover range associated with possible
6142 * shared pmd mappings.
6143 */
6144void adjust_range_if_pmd_sharing_possible(struct vm_area_struct *vma,
6145 unsigned long *start, unsigned long *end)
6146{
Li Xinhaia1ba9da2021-02-24 12:06:54 -08006147 unsigned long v_start = ALIGN(vma->vm_start, PUD_SIZE),
6148 v_end = ALIGN_DOWN(vma->vm_end, PUD_SIZE);
Mike Kravetz017b1662018-10-05 15:51:29 -07006149
Li Xinhaia1ba9da2021-02-24 12:06:54 -08006150 /*
Ingo Molnarf0953a12021-05-06 18:06:47 -07006151 * vma needs to span at least one aligned PUD size, and the range
6152 * must be at least partially within in.
Li Xinhaia1ba9da2021-02-24 12:06:54 -08006153 */
6154 if (!(vma->vm_flags & VM_MAYSHARE) || !(v_end > v_start) ||
6155 (*end <= v_start) || (*start >= v_end))
Mike Kravetz017b1662018-10-05 15:51:29 -07006156 return;
6157
Peter Xu75802ca62020-08-06 23:26:11 -07006158 /* Extend the range to be PUD aligned for a worst case scenario */
Li Xinhaia1ba9da2021-02-24 12:06:54 -08006159 if (*start > v_start)
6160 *start = ALIGN_DOWN(*start, PUD_SIZE);
Mike Kravetz017b1662018-10-05 15:51:29 -07006161
Li Xinhaia1ba9da2021-02-24 12:06:54 -08006162 if (*end < v_end)
6163 *end = ALIGN(*end, PUD_SIZE);
Mike Kravetz017b1662018-10-05 15:51:29 -07006164}
6165
6166/*
Steve Capper3212b532013-04-23 12:35:02 +01006167 * Search for a shareable pmd page for hugetlb. In any case calls pmd_alloc()
6168 * and returns the corresponding pte. While this is not necessary for the
6169 * !shared pmd case because we can allocate the pmd later as well, it makes the
Mike Kravetzc0d03812020-04-01 21:11:05 -07006170 * code much cleaner.
6171 *
Mike Kravetz0bf7b642020-10-13 16:56:42 -07006172 * This routine must be called with i_mmap_rwsem held in at least read mode if
6173 * sharing is possible. For hugetlbfs, this prevents removal of any page
6174 * table entries associated with the address space. This is important as we
6175 * are setting up sharing based on existing page table entries (mappings).
6176 *
6177 * NOTE: This routine is only called from huge_pte_alloc. Some callers of
6178 * huge_pte_alloc know that sharing is not possible and do not take
6179 * i_mmap_rwsem as a performance optimization. This is handled by the
6180 * if !vma_shareable check at the beginning of the routine. i_mmap_rwsem is
6181 * only required for subsequent processing.
Steve Capper3212b532013-04-23 12:35:02 +01006182 */
Peter Xuaec44e02021-05-04 18:33:00 -07006183pte_t *huge_pmd_share(struct mm_struct *mm, struct vm_area_struct *vma,
6184 unsigned long addr, pud_t *pud)
Steve Capper3212b532013-04-23 12:35:02 +01006185{
Steve Capper3212b532013-04-23 12:35:02 +01006186 struct address_space *mapping = vma->vm_file->f_mapping;
6187 pgoff_t idx = ((addr - vma->vm_start) >> PAGE_SHIFT) +
6188 vma->vm_pgoff;
6189 struct vm_area_struct *svma;
6190 unsigned long saddr;
6191 pte_t *spte = NULL;
6192 pte_t *pte;
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08006193 spinlock_t *ptl;
Steve Capper3212b532013-04-23 12:35:02 +01006194
Mike Kravetz0bf7b642020-10-13 16:56:42 -07006195 i_mmap_assert_locked(mapping);
Steve Capper3212b532013-04-23 12:35:02 +01006196 vma_interval_tree_foreach(svma, &mapping->i_mmap, idx, idx) {
6197 if (svma == vma)
6198 continue;
6199
6200 saddr = page_table_shareable(svma, vma, addr, idx);
6201 if (saddr) {
Punit Agrawal7868a202017-07-06 15:39:42 -07006202 spte = huge_pte_offset(svma->vm_mm, saddr,
6203 vma_mmu_pagesize(svma));
Steve Capper3212b532013-04-23 12:35:02 +01006204 if (spte) {
6205 get_page(virt_to_page(spte));
6206 break;
6207 }
6208 }
6209 }
6210
6211 if (!spte)
6212 goto out;
6213
Aneesh Kumar K.V8bea8052016-12-12 16:41:59 -08006214 ptl = huge_pte_lock(hstate_vma(vma), mm, spte);
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -08006215 if (pud_none(*pud)) {
Steve Capper3212b532013-04-23 12:35:02 +01006216 pud_populate(mm, pud,
6217 (pmd_t *)((unsigned long)spte & PAGE_MASK));
Kirill A. Shutemovc17b1f42016-06-24 14:49:51 -07006218 mm_inc_nr_pmds(mm);
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -08006219 } else {
Steve Capper3212b532013-04-23 12:35:02 +01006220 put_page(virt_to_page(spte));
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -08006221 }
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08006222 spin_unlock(ptl);
Steve Capper3212b532013-04-23 12:35:02 +01006223out:
6224 pte = (pte_t *)pmd_alloc(mm, pud, addr);
Steve Capper3212b532013-04-23 12:35:02 +01006225 return pte;
6226}
6227
6228/*
6229 * unmap huge page backed by shared pte.
6230 *
6231 * Hugetlb pte page is ref counted at the time of mapping. If pte is shared
6232 * indicated by page_count > 1, unmap is achieved by clearing pud and
6233 * decrementing the ref count. If count == 1, the pte page is not shared.
6234 *
Mike Kravetzc0d03812020-04-01 21:11:05 -07006235 * Called with page table lock held and i_mmap_rwsem held in write mode.
Steve Capper3212b532013-04-23 12:35:02 +01006236 *
6237 * returns: 1 successfully unmapped a shared pte page
6238 * 0 the underlying pte page is not shared, or it is the last user
6239 */
Mike Kravetz34ae2042020-08-11 18:31:38 -07006240int huge_pmd_unshare(struct mm_struct *mm, struct vm_area_struct *vma,
6241 unsigned long *addr, pte_t *ptep)
Steve Capper3212b532013-04-23 12:35:02 +01006242{
6243 pgd_t *pgd = pgd_offset(mm, *addr);
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03006244 p4d_t *p4d = p4d_offset(pgd, *addr);
6245 pud_t *pud = pud_offset(p4d, *addr);
Steve Capper3212b532013-04-23 12:35:02 +01006246
Mike Kravetz34ae2042020-08-11 18:31:38 -07006247 i_mmap_assert_write_locked(vma->vm_file->f_mapping);
Steve Capper3212b532013-04-23 12:35:02 +01006248 BUG_ON(page_count(virt_to_page(ptep)) == 0);
6249 if (page_count(virt_to_page(ptep)) == 1)
6250 return 0;
6251
6252 pud_clear(pud);
6253 put_page(virt_to_page(ptep));
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -08006254 mm_dec_nr_pmds(mm);
Steve Capper3212b532013-04-23 12:35:02 +01006255 *addr = ALIGN(*addr, HPAGE_SIZE * PTRS_PER_PTE) - HPAGE_SIZE;
6256 return 1;
6257}
Peter Xuc1991e02021-05-04 18:33:04 -07006258
Steve Capper9e5fc742013-04-30 08:02:03 +01006259#else /* !CONFIG_ARCH_WANT_HUGE_PMD_SHARE */
Peter Xuaec44e02021-05-04 18:33:00 -07006260pte_t *huge_pmd_share(struct mm_struct *mm, struct vm_area_struct *vma,
6261 unsigned long addr, pud_t *pud)
Steve Capper9e5fc742013-04-30 08:02:03 +01006262{
6263 return NULL;
6264}
Zhang Zhene81f2d22015-06-24 16:56:13 -07006265
Mike Kravetz34ae2042020-08-11 18:31:38 -07006266int huge_pmd_unshare(struct mm_struct *mm, struct vm_area_struct *vma,
6267 unsigned long *addr, pte_t *ptep)
Zhang Zhene81f2d22015-06-24 16:56:13 -07006268{
6269 return 0;
6270}
Mike Kravetz017b1662018-10-05 15:51:29 -07006271
6272void adjust_range_if_pmd_sharing_possible(struct vm_area_struct *vma,
6273 unsigned long *start, unsigned long *end)
6274{
6275}
Peter Xuc1991e02021-05-04 18:33:04 -07006276
6277bool want_pmd_share(struct vm_area_struct *vma, unsigned long addr)
6278{
6279 return false;
6280}
Steve Capper3212b532013-04-23 12:35:02 +01006281#endif /* CONFIG_ARCH_WANT_HUGE_PMD_SHARE */
6282
Steve Capper9e5fc742013-04-30 08:02:03 +01006283#ifdef CONFIG_ARCH_WANT_GENERAL_HUGETLB
Peter Xuaec44e02021-05-04 18:33:00 -07006284pte_t *huge_pte_alloc(struct mm_struct *mm, struct vm_area_struct *vma,
Steve Capper9e5fc742013-04-30 08:02:03 +01006285 unsigned long addr, unsigned long sz)
6286{
6287 pgd_t *pgd;
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03006288 p4d_t *p4d;
Steve Capper9e5fc742013-04-30 08:02:03 +01006289 pud_t *pud;
6290 pte_t *pte = NULL;
6291
6292 pgd = pgd_offset(mm, addr);
Kirill A. Shutemovf4f0a3d2017-11-29 16:11:30 -08006293 p4d = p4d_alloc(mm, pgd, addr);
6294 if (!p4d)
6295 return NULL;
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03006296 pud = pud_alloc(mm, p4d, addr);
Steve Capper9e5fc742013-04-30 08:02:03 +01006297 if (pud) {
6298 if (sz == PUD_SIZE) {
6299 pte = (pte_t *)pud;
6300 } else {
6301 BUG_ON(sz != PMD_SIZE);
Peter Xuc1991e02021-05-04 18:33:04 -07006302 if (want_pmd_share(vma, addr) && pud_none(*pud))
Peter Xuaec44e02021-05-04 18:33:00 -07006303 pte = huge_pmd_share(mm, vma, addr, pud);
Steve Capper9e5fc742013-04-30 08:02:03 +01006304 else
6305 pte = (pte_t *)pmd_alloc(mm, pud, addr);
6306 }
6307 }
Michal Hocko4e666312016-08-02 14:02:34 -07006308 BUG_ON(pte && pte_present(*pte) && !pte_huge(*pte));
Steve Capper9e5fc742013-04-30 08:02:03 +01006309
6310 return pte;
6311}
6312
Punit Agrawal9b19df22017-09-06 16:21:01 -07006313/*
6314 * huge_pte_offset() - Walk the page table to resolve the hugepage
6315 * entry at address @addr
6316 *
Li Xinhai8ac0b812020-06-03 16:00:53 -07006317 * Return: Pointer to page table entry (PUD or PMD) for
6318 * address @addr, or NULL if a !p*d_present() entry is encountered and the
Punit Agrawal9b19df22017-09-06 16:21:01 -07006319 * size @sz doesn't match the hugepage size at this level of the page
6320 * table.
6321 */
Punit Agrawal7868a202017-07-06 15:39:42 -07006322pte_t *huge_pte_offset(struct mm_struct *mm,
6323 unsigned long addr, unsigned long sz)
Steve Capper9e5fc742013-04-30 08:02:03 +01006324{
6325 pgd_t *pgd;
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03006326 p4d_t *p4d;
Li Xinhai8ac0b812020-06-03 16:00:53 -07006327 pud_t *pud;
6328 pmd_t *pmd;
Steve Capper9e5fc742013-04-30 08:02:03 +01006329
6330 pgd = pgd_offset(mm, addr);
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03006331 if (!pgd_present(*pgd))
6332 return NULL;
6333 p4d = p4d_offset(pgd, addr);
6334 if (!p4d_present(*p4d))
6335 return NULL;
Punit Agrawal9b19df22017-09-06 16:21:01 -07006336
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03006337 pud = pud_offset(p4d, addr);
Li Xinhai8ac0b812020-06-03 16:00:53 -07006338 if (sz == PUD_SIZE)
6339 /* must be pud huge, non-present or none */
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03006340 return (pte_t *)pud;
Li Xinhai8ac0b812020-06-03 16:00:53 -07006341 if (!pud_present(*pud))
6342 return NULL;
6343 /* must have a valid entry and size to go further */
Punit Agrawal9b19df22017-09-06 16:21:01 -07006344
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03006345 pmd = pmd_offset(pud, addr);
Li Xinhai8ac0b812020-06-03 16:00:53 -07006346 /* must be pmd huge, non-present or none */
6347 return (pte_t *)pmd;
Steve Capper9e5fc742013-04-30 08:02:03 +01006348}
6349
Naoya Horiguchi61f77ed2015-02-11 15:25:15 -08006350#endif /* CONFIG_ARCH_WANT_GENERAL_HUGETLB */
6351
6352/*
6353 * These functions are overwritable if your architecture needs its own
6354 * behavior.
6355 */
6356struct page * __weak
6357follow_huge_addr(struct mm_struct *mm, unsigned long address,
6358 int write)
6359{
6360 return ERR_PTR(-EINVAL);
6361}
6362
6363struct page * __weak
Aneesh Kumar K.V4dc71452017-07-06 15:38:56 -07006364follow_huge_pd(struct vm_area_struct *vma,
6365 unsigned long address, hugepd_t hpd, int flags, int pdshift)
6366{
6367 WARN(1, "hugepd follow called with no support for hugepage directory format\n");
6368 return NULL;
6369}
6370
6371struct page * __weak
Steve Capper9e5fc742013-04-30 08:02:03 +01006372follow_huge_pmd(struct mm_struct *mm, unsigned long address,
Naoya Horiguchie66f17f2015-02-11 15:25:22 -08006373 pmd_t *pmd, int flags)
Steve Capper9e5fc742013-04-30 08:02:03 +01006374{
Naoya Horiguchie66f17f2015-02-11 15:25:22 -08006375 struct page *page = NULL;
6376 spinlock_t *ptl;
Naoya Horiguchic9d398f2017-03-31 15:11:55 -07006377 pte_t pte;
John Hubbard3faa52c2020-04-01 21:05:29 -07006378
6379 /* FOLL_GET and FOLL_PIN are mutually exclusive. */
6380 if (WARN_ON_ONCE((flags & (FOLL_PIN | FOLL_GET)) ==
6381 (FOLL_PIN | FOLL_GET)))
6382 return NULL;
6383
Naoya Horiguchie66f17f2015-02-11 15:25:22 -08006384retry:
6385 ptl = pmd_lockptr(mm, pmd);
6386 spin_lock(ptl);
6387 /*
6388 * make sure that the address range covered by this pmd is not
6389 * unmapped from other threads.
6390 */
6391 if (!pmd_huge(*pmd))
6392 goto out;
Naoya Horiguchic9d398f2017-03-31 15:11:55 -07006393 pte = huge_ptep_get((pte_t *)pmd);
6394 if (pte_present(pte)) {
Gerald Schaefer97534122015-04-14 15:42:30 -07006395 page = pmd_page(*pmd) + ((address & ~PMD_MASK) >> PAGE_SHIFT);
John Hubbard3faa52c2020-04-01 21:05:29 -07006396 /*
6397 * try_grab_page() should always succeed here, because: a) we
6398 * hold the pmd (ptl) lock, and b) we've just checked that the
6399 * huge pmd (head) page is present in the page tables. The ptl
6400 * prevents the head page and tail pages from being rearranged
6401 * in any way. So this page must be available at this point,
6402 * unless the page refcount overflowed:
6403 */
6404 if (WARN_ON_ONCE(!try_grab_page(page, flags))) {
6405 page = NULL;
6406 goto out;
6407 }
Naoya Horiguchie66f17f2015-02-11 15:25:22 -08006408 } else {
Naoya Horiguchic9d398f2017-03-31 15:11:55 -07006409 if (is_hugetlb_entry_migration(pte)) {
Naoya Horiguchie66f17f2015-02-11 15:25:22 -08006410 spin_unlock(ptl);
6411 __migration_entry_wait(mm, (pte_t *)pmd, ptl);
6412 goto retry;
6413 }
6414 /*
6415 * hwpoisoned entry is treated as no_page_table in
6416 * follow_page_mask().
6417 */
6418 }
6419out:
6420 spin_unlock(ptl);
Steve Capper9e5fc742013-04-30 08:02:03 +01006421 return page;
6422}
6423
Naoya Horiguchi61f77ed2015-02-11 15:25:15 -08006424struct page * __weak
Steve Capper9e5fc742013-04-30 08:02:03 +01006425follow_huge_pud(struct mm_struct *mm, unsigned long address,
Naoya Horiguchie66f17f2015-02-11 15:25:22 -08006426 pud_t *pud, int flags)
Steve Capper9e5fc742013-04-30 08:02:03 +01006427{
John Hubbard3faa52c2020-04-01 21:05:29 -07006428 if (flags & (FOLL_GET | FOLL_PIN))
Naoya Horiguchie66f17f2015-02-11 15:25:22 -08006429 return NULL;
Steve Capper9e5fc742013-04-30 08:02:03 +01006430
Naoya Horiguchie66f17f2015-02-11 15:25:22 -08006431 return pte_page(*(pte_t *)pud) + ((address & ~PUD_MASK) >> PAGE_SHIFT);
Steve Capper9e5fc742013-04-30 08:02:03 +01006432}
6433
Anshuman Khandualfaaa5b62017-07-06 15:38:50 -07006434struct page * __weak
6435follow_huge_pgd(struct mm_struct *mm, unsigned long address, pgd_t *pgd, int flags)
6436{
John Hubbard3faa52c2020-04-01 21:05:29 -07006437 if (flags & (FOLL_GET | FOLL_PIN))
Anshuman Khandualfaaa5b62017-07-06 15:38:50 -07006438 return NULL;
6439
6440 return pte_page(*(pte_t *)pgd) + ((address & ~PGDIR_MASK) >> PAGE_SHIFT);
6441}
6442
Naoya Horiguchi31caf662013-09-11 14:21:59 -07006443bool isolate_huge_page(struct page *page, struct list_head *list)
6444{
Naoya Horiguchibcc54222015-04-15 16:14:38 -07006445 bool ret = true;
6446
Mike Kravetzdb71ef72021-05-04 18:35:07 -07006447 spin_lock_irq(&hugetlb_lock);
Mike Kravetz8f251a32021-02-24 12:08:56 -08006448 if (!PageHeadHuge(page) ||
6449 !HPageMigratable(page) ||
Muchun Song0eb2df22021-02-04 18:32:10 -08006450 !get_page_unless_zero(page)) {
Naoya Horiguchibcc54222015-04-15 16:14:38 -07006451 ret = false;
6452 goto unlock;
6453 }
Mike Kravetz8f251a32021-02-24 12:08:56 -08006454 ClearHPageMigratable(page);
Naoya Horiguchi31caf662013-09-11 14:21:59 -07006455 list_move_tail(&page->lru, list);
Naoya Horiguchibcc54222015-04-15 16:14:38 -07006456unlock:
Mike Kravetzdb71ef72021-05-04 18:35:07 -07006457 spin_unlock_irq(&hugetlb_lock);
Naoya Horiguchibcc54222015-04-15 16:14:38 -07006458 return ret;
Naoya Horiguchi31caf662013-09-11 14:21:59 -07006459}
6460
Naoya Horiguchi25182f02021-06-15 18:23:13 -07006461int get_hwpoison_huge_page(struct page *page, bool *hugetlb)
6462{
6463 int ret = 0;
6464
6465 *hugetlb = false;
6466 spin_lock_irq(&hugetlb_lock);
6467 if (PageHeadHuge(page)) {
6468 *hugetlb = true;
6469 if (HPageFreed(page) || HPageMigratable(page))
6470 ret = get_page_unless_zero(page);
Naoya Horiguchi0ed950d2021-06-28 19:43:17 -07006471 else
6472 ret = -EBUSY;
Naoya Horiguchi25182f02021-06-15 18:23:13 -07006473 }
6474 spin_unlock_irq(&hugetlb_lock);
6475 return ret;
6476}
6477
Naoya Horiguchi31caf662013-09-11 14:21:59 -07006478void putback_active_hugepage(struct page *page)
6479{
Mike Kravetzdb71ef72021-05-04 18:35:07 -07006480 spin_lock_irq(&hugetlb_lock);
Mike Kravetz8f251a32021-02-24 12:08:56 -08006481 SetHPageMigratable(page);
Naoya Horiguchi31caf662013-09-11 14:21:59 -07006482 list_move_tail(&page->lru, &(page_hstate(page))->hugepage_activelist);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07006483 spin_unlock_irq(&hugetlb_lock);
Naoya Horiguchi31caf662013-09-11 14:21:59 -07006484 put_page(page);
6485}
Michal Hockoab5ac902018-01-31 16:20:48 -08006486
6487void move_hugetlb_state(struct page *oldpage, struct page *newpage, int reason)
6488{
6489 struct hstate *h = page_hstate(oldpage);
6490
6491 hugetlb_cgroup_migrate(oldpage, newpage);
6492 set_page_owner_migrate_reason(newpage, reason);
6493
6494 /*
6495 * transfer temporary state of the new huge page. This is
6496 * reverse to other transitions because the newpage is going to
6497 * be final while the old one will be freed so it takes over
6498 * the temporary status.
6499 *
6500 * Also note that we have to transfer the per-node surplus state
6501 * here as well otherwise the global surplus count will not match
6502 * the per-node's.
6503 */
Mike Kravetz9157c3112021-02-24 12:09:00 -08006504 if (HPageTemporary(newpage)) {
Michal Hockoab5ac902018-01-31 16:20:48 -08006505 int old_nid = page_to_nid(oldpage);
6506 int new_nid = page_to_nid(newpage);
6507
Mike Kravetz9157c3112021-02-24 12:09:00 -08006508 SetHPageTemporary(oldpage);
6509 ClearHPageTemporary(newpage);
Michal Hockoab5ac902018-01-31 16:20:48 -08006510
Miaohe Lin5af1ab12021-05-04 18:33:25 -07006511 /*
6512 * There is no need to transfer the per-node surplus state
6513 * when we do not cross the node.
6514 */
6515 if (new_nid == old_nid)
6516 return;
Mike Kravetzdb71ef72021-05-04 18:35:07 -07006517 spin_lock_irq(&hugetlb_lock);
Michal Hockoab5ac902018-01-31 16:20:48 -08006518 if (h->surplus_huge_pages_node[old_nid]) {
6519 h->surplus_huge_pages_node[old_nid]--;
6520 h->surplus_huge_pages_node[new_nid]++;
6521 }
Mike Kravetzdb71ef72021-05-04 18:35:07 -07006522 spin_unlock_irq(&hugetlb_lock);
Michal Hockoab5ac902018-01-31 16:20:48 -08006523 }
6524}
Roman Gushchincf11e852020-04-10 14:32:45 -07006525
Peter Xu6dfeaff2021-05-04 18:33:13 -07006526/*
6527 * This function will unconditionally remove all the shared pmd pgtable entries
6528 * within the specific vma for a hugetlbfs memory range.
6529 */
6530void hugetlb_unshare_all_pmds(struct vm_area_struct *vma)
6531{
6532 struct hstate *h = hstate_vma(vma);
6533 unsigned long sz = huge_page_size(h);
6534 struct mm_struct *mm = vma->vm_mm;
6535 struct mmu_notifier_range range;
6536 unsigned long address, start, end;
6537 spinlock_t *ptl;
6538 pte_t *ptep;
6539
6540 if (!(vma->vm_flags & VM_MAYSHARE))
6541 return;
6542
6543 start = ALIGN(vma->vm_start, PUD_SIZE);
6544 end = ALIGN_DOWN(vma->vm_end, PUD_SIZE);
6545
6546 if (start >= end)
6547 return;
6548
6549 /*
6550 * No need to call adjust_range_if_pmd_sharing_possible(), because
6551 * we have already done the PUD_SIZE alignment.
6552 */
6553 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma, mm,
6554 start, end);
6555 mmu_notifier_invalidate_range_start(&range);
6556 i_mmap_lock_write(vma->vm_file->f_mapping);
6557 for (address = start; address < end; address += PUD_SIZE) {
6558 unsigned long tmp = address;
6559
6560 ptep = huge_pte_offset(mm, address, sz);
6561 if (!ptep)
6562 continue;
6563 ptl = huge_pte_lock(h, mm, ptep);
6564 /* We don't want 'address' to be changed */
6565 huge_pmd_unshare(mm, vma, &tmp, ptep);
6566 spin_unlock(ptl);
6567 }
6568 flush_hugetlb_tlb_range(vma, start, end);
6569 i_mmap_unlock_write(vma->vm_file->f_mapping);
6570 /*
6571 * No need to call mmu_notifier_invalidate_range(), see
6572 * Documentation/vm/mmu_notifier.rst.
6573 */
6574 mmu_notifier_invalidate_range_end(&range);
6575}
6576
Roman Gushchincf11e852020-04-10 14:32:45 -07006577#ifdef CONFIG_CMA
Roman Gushchincf11e852020-04-10 14:32:45 -07006578static bool cma_reserve_called __initdata;
6579
6580static int __init cmdline_parse_hugetlb_cma(char *p)
6581{
6582 hugetlb_cma_size = memparse(p, &p);
6583 return 0;
6584}
6585
6586early_param("hugetlb_cma", cmdline_parse_hugetlb_cma);
6587
6588void __init hugetlb_cma_reserve(int order)
6589{
6590 unsigned long size, reserved, per_node;
6591 int nid;
6592
6593 cma_reserve_called = true;
6594
6595 if (!hugetlb_cma_size)
6596 return;
6597
6598 if (hugetlb_cma_size < (PAGE_SIZE << order)) {
6599 pr_warn("hugetlb_cma: cma area should be at least %lu MiB\n",
6600 (PAGE_SIZE << order) / SZ_1M);
Mike Kravetza01f4392021-11-05 13:41:27 -07006601 hugetlb_cma_size = 0;
Roman Gushchincf11e852020-04-10 14:32:45 -07006602 return;
6603 }
6604
6605 /*
6606 * If 3 GB area is requested on a machine with 4 numa nodes,
6607 * let's allocate 1 GB on first three nodes and ignore the last one.
6608 */
6609 per_node = DIV_ROUND_UP(hugetlb_cma_size, nr_online_nodes);
6610 pr_info("hugetlb_cma: reserve %lu MiB, up to %lu MiB per node\n",
6611 hugetlb_cma_size / SZ_1M, per_node / SZ_1M);
6612
6613 reserved = 0;
6614 for_each_node_state(nid, N_ONLINE) {
6615 int res;
Barry Song2281f792020-08-24 11:03:09 +12006616 char name[CMA_MAX_NAME];
Roman Gushchincf11e852020-04-10 14:32:45 -07006617
6618 size = min(per_node, hugetlb_cma_size - reserved);
6619 size = round_up(size, PAGE_SIZE << order);
6620
Barry Song2281f792020-08-24 11:03:09 +12006621 snprintf(name, sizeof(name), "hugetlb%d", nid);
Mike Kravetza01f4392021-11-05 13:41:27 -07006622 /*
6623 * Note that 'order per bit' is based on smallest size that
6624 * may be returned to CMA allocator in the case of
6625 * huge page demotion.
6626 */
6627 res = cma_declare_contiguous_nid(0, size, 0,
6628 PAGE_SIZE << HUGETLB_PAGE_ORDER,
Barry Song29d0f412020-08-11 18:32:00 -07006629 0, false, name,
Roman Gushchincf11e852020-04-10 14:32:45 -07006630 &hugetlb_cma[nid], nid);
6631 if (res) {
6632 pr_warn("hugetlb_cma: reservation failed: err %d, node %d",
6633 res, nid);
6634 continue;
6635 }
6636
6637 reserved += size;
6638 pr_info("hugetlb_cma: reserved %lu MiB on node %d\n",
6639 size / SZ_1M, nid);
6640
6641 if (reserved >= hugetlb_cma_size)
6642 break;
6643 }
Mike Kravetza01f4392021-11-05 13:41:27 -07006644
6645 if (!reserved)
6646 /*
6647 * hugetlb_cma_size is used to determine if allocations from
6648 * cma are possible. Set to zero if no cma regions are set up.
6649 */
6650 hugetlb_cma_size = 0;
Roman Gushchincf11e852020-04-10 14:32:45 -07006651}
6652
6653void __init hugetlb_cma_check(void)
6654{
6655 if (!hugetlb_cma_size || cma_reserve_called)
6656 return;
6657
6658 pr_warn("hugetlb_cma: the option isn't supported by current arch\n");
6659}
6660
6661#endif /* CONFIG_CMA */