blob: 612a3790cfd4db49785b0ad7ab317219145f367b [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/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Copyright (C) 1993 Linus Torvalds
4 * Support of BIGMEM added by Gerhard Wichert, Siemens AG, July 1999
5 * SMP-safe vmalloc/vfree/ioremap, Tigran Aivazian <tigran@veritas.com>, May 2000
6 * Major rework to support vmap/vunmap, Christoph Hellwig, SGI, August 2002
Christoph Lameter930fc452005-10-29 18:15:41 -07007 * Numa awareness, Christoph Lameter, SGI, June 2005
Uladzislau Rezki (Sony)d758ffe2020-08-06 23:24:18 -07008 * Improving global KVA allocator, Uladzislau Rezki, Sony, May 2019
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
Nick Piggindb64fe02008-10-18 20:27:03 -070011#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/mm.h>
13#include <linux/module.h>
14#include <linux/highmem.h>
Ingo Molnarc3edc402017-02-02 08:35:14 +010015#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/slab.h>
17#include <linux/spinlock.h>
18#include <linux/interrupt.h>
Alexey Dobriyan5f6a6a92008-10-06 03:50:47 +040019#include <linux/proc_fs.h>
Christoph Lametera10aa572008-04-28 02:12:40 -070020#include <linux/seq_file.h>
Rick Edgecombe868b1042019-04-25 17:11:36 -070021#include <linux/set_memory.h>
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070022#include <linux/debugobjects.h>
Christoph Lameter23016962008-04-28 02:12:42 -070023#include <linux/kallsyms.h>
Nick Piggindb64fe02008-10-18 20:27:03 -070024#include <linux/list.h>
Chris Wilson4da56b92016-04-04 14:46:42 +010025#include <linux/notifier.h>
Nick Piggindb64fe02008-10-18 20:27:03 -070026#include <linux/rbtree.h>
Matthew Wilcox (Oracle)0f145992020-08-06 23:24:05 -070027#include <linux/xarray.h>
Nick Piggindb64fe02008-10-18 20:27:03 -070028#include <linux/rcupdate.h>
Tejun Heof0aa6612009-02-20 16:29:08 +090029#include <linux/pfn.h>
Catalin Marinas89219d32009-06-11 13:23:19 +010030#include <linux/kmemleak.h>
Arun Sharma600634972011-07-26 16:09:06 -070031#include <linux/atomic.h>
Gideon Israel Dsouza3b321232014-04-07 15:37:26 -070032#include <linux/compiler.h>
Al Viro32fcfd42013-03-10 20:14:08 -040033#include <linux/llist.h>
Toshi Kani0f616be2015-04-14 15:47:17 -070034#include <linux/bitops.h>
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -070035#include <linux/rbtree_augmented.h>
Jann Hornbdebd6a22020-04-20 18:14:11 -070036#include <linux/overflow.h>
Nicholas Pigginc0eb3152021-04-29 22:58:13 -070037#include <linux/pgtable.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080038#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <asm/tlbflush.h>
David Miller2dca6992009-09-21 12:22:34 -070040#include <asm/shmparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Mel Gormandd56b042015-11-06 16:28:43 -080042#include "internal.h"
Joerg Roedel2a681cf2020-08-06 23:22:55 -070043#include "pgalloc-track.h"
Mel Gormandd56b042015-11-06 16:28:43 -080044
Nicholas Piggin121e6f32021-04-29 22:58:49 -070045#ifdef CONFIG_HAVE_ARCH_HUGE_VMALLOC
46static bool __ro_after_init vmap_allow_huge = true;
47
48static int __init set_nohugevmalloc(char *str)
49{
50 vmap_allow_huge = false;
51 return 0;
52}
53early_param("nohugevmalloc", set_nohugevmalloc);
54#else /* CONFIG_HAVE_ARCH_HUGE_VMALLOC */
55static const bool vmap_allow_huge = false;
56#endif /* CONFIG_HAVE_ARCH_HUGE_VMALLOC */
57
Ingo Molnar186525b2019-11-29 08:17:25 +010058bool is_vmalloc_addr(const void *x)
59{
60 unsigned long addr = (unsigned long)x;
61
62 return addr >= VMALLOC_START && addr < VMALLOC_END;
63}
64EXPORT_SYMBOL(is_vmalloc_addr);
65
Al Viro32fcfd42013-03-10 20:14:08 -040066struct vfree_deferred {
67 struct llist_head list;
68 struct work_struct wq;
69};
70static DEFINE_PER_CPU(struct vfree_deferred, vfree_deferred);
71
72static void __vunmap(const void *, int);
73
74static void free_work(struct work_struct *w)
75{
76 struct vfree_deferred *p = container_of(w, struct vfree_deferred, wq);
Byungchul Park894e58c2017-09-06 16:24:26 -070077 struct llist_node *t, *llnode;
78
79 llist_for_each_safe(llnode, t, llist_del_all(&p->list))
80 __vunmap((void *)llnode, 1);
Al Viro32fcfd42013-03-10 20:14:08 -040081}
82
Nick Piggindb64fe02008-10-18 20:27:03 -070083/*** Page table manipulation functions ***/
Nicholas Piggin5e9e3d72021-04-29 22:58:43 -070084static int vmap_pte_range(pmd_t *pmd, unsigned long addr, unsigned long end,
85 phys_addr_t phys_addr, pgprot_t prot,
86 pgtbl_mod_mask *mask)
87{
88 pte_t *pte;
89 u64 pfn;
90
91 pfn = phys_addr >> PAGE_SHIFT;
92 pte = pte_alloc_kernel_track(pmd, addr, mask);
93 if (!pte)
94 return -ENOMEM;
95 do {
96 BUG_ON(!pte_none(*pte));
97 set_pte_at(&init_mm, addr, pte, pfn_pte(pfn, prot));
98 pfn++;
99 } while (pte++, addr += PAGE_SIZE, addr != end);
100 *mask |= PGTBL_PTE_MODIFIED;
101 return 0;
102}
103
104static int vmap_try_huge_pmd(pmd_t *pmd, unsigned long addr, unsigned long end,
105 phys_addr_t phys_addr, pgprot_t prot,
106 unsigned int max_page_shift)
107{
108 if (max_page_shift < PMD_SHIFT)
109 return 0;
110
111 if (!arch_vmap_pmd_supported(prot))
112 return 0;
113
114 if ((end - addr) != PMD_SIZE)
115 return 0;
116
117 if (!IS_ALIGNED(addr, PMD_SIZE))
118 return 0;
119
120 if (!IS_ALIGNED(phys_addr, PMD_SIZE))
121 return 0;
122
123 if (pmd_present(*pmd) && !pmd_free_pte_page(pmd, addr))
124 return 0;
125
126 return pmd_set_huge(pmd, phys_addr, prot);
127}
128
129static int vmap_pmd_range(pud_t *pud, unsigned long addr, unsigned long end,
130 phys_addr_t phys_addr, pgprot_t prot,
131 unsigned int max_page_shift, pgtbl_mod_mask *mask)
132{
133 pmd_t *pmd;
134 unsigned long next;
135
136 pmd = pmd_alloc_track(&init_mm, pud, addr, mask);
137 if (!pmd)
138 return -ENOMEM;
139 do {
140 next = pmd_addr_end(addr, end);
141
142 if (vmap_try_huge_pmd(pmd, addr, next, phys_addr, prot,
143 max_page_shift)) {
144 *mask |= PGTBL_PMD_MODIFIED;
145 continue;
146 }
147
148 if (vmap_pte_range(pmd, addr, next, phys_addr, prot, mask))
149 return -ENOMEM;
150 } while (pmd++, phys_addr += (next - addr), addr = next, addr != end);
151 return 0;
152}
153
154static int vmap_try_huge_pud(pud_t *pud, unsigned long addr, unsigned long end,
155 phys_addr_t phys_addr, pgprot_t prot,
156 unsigned int max_page_shift)
157{
158 if (max_page_shift < PUD_SHIFT)
159 return 0;
160
161 if (!arch_vmap_pud_supported(prot))
162 return 0;
163
164 if ((end - addr) != PUD_SIZE)
165 return 0;
166
167 if (!IS_ALIGNED(addr, PUD_SIZE))
168 return 0;
169
170 if (!IS_ALIGNED(phys_addr, PUD_SIZE))
171 return 0;
172
173 if (pud_present(*pud) && !pud_free_pmd_page(pud, addr))
174 return 0;
175
176 return pud_set_huge(pud, phys_addr, prot);
177}
178
179static int vmap_pud_range(p4d_t *p4d, unsigned long addr, unsigned long end,
180 phys_addr_t phys_addr, pgprot_t prot,
181 unsigned int max_page_shift, pgtbl_mod_mask *mask)
182{
183 pud_t *pud;
184 unsigned long next;
185
186 pud = pud_alloc_track(&init_mm, p4d, addr, mask);
187 if (!pud)
188 return -ENOMEM;
189 do {
190 next = pud_addr_end(addr, end);
191
192 if (vmap_try_huge_pud(pud, addr, next, phys_addr, prot,
193 max_page_shift)) {
194 *mask |= PGTBL_PUD_MODIFIED;
195 continue;
196 }
197
198 if (vmap_pmd_range(pud, addr, next, phys_addr, prot,
199 max_page_shift, mask))
200 return -ENOMEM;
201 } while (pud++, phys_addr += (next - addr), addr = next, addr != end);
202 return 0;
203}
204
205static int vmap_try_huge_p4d(p4d_t *p4d, unsigned long addr, unsigned long end,
206 phys_addr_t phys_addr, pgprot_t prot,
207 unsigned int max_page_shift)
208{
209 if (max_page_shift < P4D_SHIFT)
210 return 0;
211
212 if (!arch_vmap_p4d_supported(prot))
213 return 0;
214
215 if ((end - addr) != P4D_SIZE)
216 return 0;
217
218 if (!IS_ALIGNED(addr, P4D_SIZE))
219 return 0;
220
221 if (!IS_ALIGNED(phys_addr, P4D_SIZE))
222 return 0;
223
224 if (p4d_present(*p4d) && !p4d_free_pud_page(p4d, addr))
225 return 0;
226
227 return p4d_set_huge(p4d, phys_addr, prot);
228}
229
230static int vmap_p4d_range(pgd_t *pgd, unsigned long addr, unsigned long end,
231 phys_addr_t phys_addr, pgprot_t prot,
232 unsigned int max_page_shift, pgtbl_mod_mask *mask)
233{
234 p4d_t *p4d;
235 unsigned long next;
236
237 p4d = p4d_alloc_track(&init_mm, pgd, addr, mask);
238 if (!p4d)
239 return -ENOMEM;
240 do {
241 next = p4d_addr_end(addr, end);
242
243 if (vmap_try_huge_p4d(p4d, addr, next, phys_addr, prot,
244 max_page_shift)) {
245 *mask |= PGTBL_P4D_MODIFIED;
246 continue;
247 }
248
249 if (vmap_pud_range(p4d, addr, next, phys_addr, prot,
250 max_page_shift, mask))
251 return -ENOMEM;
252 } while (p4d++, phys_addr += (next - addr), addr = next, addr != end);
253 return 0;
254}
255
Nicholas Piggin5d875102021-04-29 22:58:46 -0700256static int vmap_range_noflush(unsigned long addr, unsigned long end,
Nicholas Piggin5e9e3d72021-04-29 22:58:43 -0700257 phys_addr_t phys_addr, pgprot_t prot,
258 unsigned int max_page_shift)
259{
260 pgd_t *pgd;
261 unsigned long start;
262 unsigned long next;
263 int err;
264 pgtbl_mod_mask mask = 0;
265
266 might_sleep();
267 BUG_ON(addr >= end);
268
269 start = addr;
270 pgd = pgd_offset_k(addr);
271 do {
272 next = pgd_addr_end(addr, end);
273 err = vmap_p4d_range(pgd, addr, next, phys_addr, prot,
274 max_page_shift, &mask);
275 if (err)
276 break;
277 } while (pgd++, phys_addr += (next - addr), addr = next, addr != end);
278
Nicholas Piggin5e9e3d72021-04-29 22:58:43 -0700279 if (mask & ARCH_PAGE_TABLE_SYNC_MASK)
280 arch_sync_kernel_mappings(start, end);
281
282 return err;
283}
Adrian Bunkb2213852006-09-25 23:31:02 -0700284
Nicholas Piggin5d875102021-04-29 22:58:46 -0700285int vmap_range(unsigned long addr, unsigned long end,
286 phys_addr_t phys_addr, pgprot_t prot,
287 unsigned int max_page_shift)
288{
289 int err;
290
291 err = vmap_range_noflush(addr, end, phys_addr, prot, max_page_shift);
292 flush_cache_vmap(addr, end);
293
294 return err;
295}
296
Joerg Roedel2ba3e692020-06-01 21:52:22 -0700297static void vunmap_pte_range(pmd_t *pmd, unsigned long addr, unsigned long end,
298 pgtbl_mod_mask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
300 pte_t *pte;
301
302 pte = pte_offset_kernel(pmd, addr);
303 do {
304 pte_t ptent = ptep_get_and_clear(&init_mm, addr, pte);
305 WARN_ON(!pte_none(ptent) && !pte_present(ptent));
306 } while (pte++, addr += PAGE_SIZE, addr != end);
Joerg Roedel2ba3e692020-06-01 21:52:22 -0700307 *mask |= PGTBL_PTE_MODIFIED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308}
309
Joerg Roedel2ba3e692020-06-01 21:52:22 -0700310static void vunmap_pmd_range(pud_t *pud, unsigned long addr, unsigned long end,
311 pgtbl_mod_mask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
313 pmd_t *pmd;
314 unsigned long next;
Joerg Roedel2ba3e692020-06-01 21:52:22 -0700315 int cleared;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317 pmd = pmd_offset(pud, addr);
318 do {
319 next = pmd_addr_end(addr, end);
Joerg Roedel2ba3e692020-06-01 21:52:22 -0700320
321 cleared = pmd_clear_huge(pmd);
322 if (cleared || pmd_bad(*pmd))
323 *mask |= PGTBL_PMD_MODIFIED;
324
325 if (cleared)
Toshi Kanib9820d82015-04-14 15:47:26 -0700326 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 if (pmd_none_or_clear_bad(pmd))
328 continue;
Joerg Roedel2ba3e692020-06-01 21:52:22 -0700329 vunmap_pte_range(pmd, addr, next, mask);
Aneesh Kumar K.Ve47110e2020-08-20 17:42:05 -0700330
331 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 } while (pmd++, addr = next, addr != end);
333}
334
Joerg Roedel2ba3e692020-06-01 21:52:22 -0700335static void vunmap_pud_range(p4d_t *p4d, unsigned long addr, unsigned long end,
336 pgtbl_mod_mask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
338 pud_t *pud;
339 unsigned long next;
Joerg Roedel2ba3e692020-06-01 21:52:22 -0700340 int cleared;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300342 pud = pud_offset(p4d, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 do {
344 next = pud_addr_end(addr, end);
Joerg Roedel2ba3e692020-06-01 21:52:22 -0700345
346 cleared = pud_clear_huge(pud);
347 if (cleared || pud_bad(*pud))
348 *mask |= PGTBL_PUD_MODIFIED;
349
350 if (cleared)
Toshi Kanib9820d82015-04-14 15:47:26 -0700351 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 if (pud_none_or_clear_bad(pud))
353 continue;
Joerg Roedel2ba3e692020-06-01 21:52:22 -0700354 vunmap_pmd_range(pud, addr, next, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 } while (pud++, addr = next, addr != end);
356}
357
Joerg Roedel2ba3e692020-06-01 21:52:22 -0700358static void vunmap_p4d_range(pgd_t *pgd, unsigned long addr, unsigned long end,
359 pgtbl_mod_mask *mask)
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300360{
361 p4d_t *p4d;
362 unsigned long next;
Joerg Roedel2ba3e692020-06-01 21:52:22 -0700363 int cleared;
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300364
365 p4d = p4d_offset(pgd, addr);
366 do {
367 next = p4d_addr_end(addr, end);
Joerg Roedel2ba3e692020-06-01 21:52:22 -0700368
369 cleared = p4d_clear_huge(p4d);
370 if (cleared || p4d_bad(*p4d))
371 *mask |= PGTBL_P4D_MODIFIED;
372
373 if (cleared)
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300374 continue;
375 if (p4d_none_or_clear_bad(p4d))
376 continue;
Joerg Roedel2ba3e692020-06-01 21:52:22 -0700377 vunmap_pud_range(p4d, addr, next, mask);
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300378 } while (p4d++, addr = next, addr != end);
379}
380
Nicholas Piggin4ad0ae82021-04-29 22:59:01 -0700381/*
382 * vunmap_range_noflush is similar to vunmap_range, but does not
383 * flush caches or TLBs.
Christoph Hellwigb521c432020-06-01 21:51:07 -0700384 *
Nicholas Piggin4ad0ae82021-04-29 22:59:01 -0700385 * The caller is responsible for calling flush_cache_vmap() before calling
386 * this function, and flush_tlb_kernel_range after it has returned
387 * successfully (and before the addresses are expected to cause a page fault
388 * or be re-mapped for something else, if TLB flushes are being delayed or
389 * coalesced).
Christoph Hellwigb521c432020-06-01 21:51:07 -0700390 *
Nicholas Piggin4ad0ae82021-04-29 22:59:01 -0700391 * This is an internal function only. Do not use outside mm/.
Christoph Hellwigb521c432020-06-01 21:51:07 -0700392 */
Nicholas Piggin4ad0ae82021-04-29 22:59:01 -0700393void vunmap_range_noflush(unsigned long start, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 unsigned long next;
Christoph Hellwigb521c432020-06-01 21:51:07 -0700396 pgd_t *pgd;
Joerg Roedel2ba3e692020-06-01 21:52:22 -0700397 unsigned long addr = start;
398 pgtbl_mod_mask mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400 BUG_ON(addr >= end);
401 pgd = pgd_offset_k(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 do {
403 next = pgd_addr_end(addr, end);
Joerg Roedel2ba3e692020-06-01 21:52:22 -0700404 if (pgd_bad(*pgd))
405 mask |= PGTBL_PGD_MODIFIED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 if (pgd_none_or_clear_bad(pgd))
407 continue;
Joerg Roedel2ba3e692020-06-01 21:52:22 -0700408 vunmap_p4d_range(pgd, addr, next, &mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 } while (pgd++, addr = next, addr != end);
Joerg Roedel2ba3e692020-06-01 21:52:22 -0700410
411 if (mask & ARCH_PAGE_TABLE_SYNC_MASK)
412 arch_sync_kernel_mappings(start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}
414
Nicholas Piggin4ad0ae82021-04-29 22:59:01 -0700415/**
416 * vunmap_range - unmap kernel virtual addresses
417 * @addr: start of the VM area to unmap
418 * @end: end of the VM area to unmap (non-inclusive)
419 *
420 * Clears any present PTEs in the virtual address range, flushes TLBs and
421 * caches. Any subsequent access to the address before it has been re-mapped
422 * is a kernel bug.
423 */
424void vunmap_range(unsigned long addr, unsigned long end)
425{
426 flush_cache_vunmap(addr, end);
427 vunmap_range_noflush(addr, end);
428 flush_tlb_kernel_range(addr, end);
429}
430
Nicholas Piggin0a264882021-04-29 22:58:19 -0700431static int vmap_pages_pte_range(pmd_t *pmd, unsigned long addr,
Joerg Roedel2ba3e692020-06-01 21:52:22 -0700432 unsigned long end, pgprot_t prot, struct page **pages, int *nr,
433 pgtbl_mod_mask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
435 pte_t *pte;
436
Nick Piggindb64fe02008-10-18 20:27:03 -0700437 /*
438 * nr is a running index into the array which helps higher level
439 * callers keep track of where we're up to.
440 */
441
Joerg Roedel2ba3e692020-06-01 21:52:22 -0700442 pte = pte_alloc_kernel_track(pmd, addr, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 if (!pte)
444 return -ENOMEM;
445 do {
Nick Piggindb64fe02008-10-18 20:27:03 -0700446 struct page *page = pages[*nr];
447
448 if (WARN_ON(!pte_none(*pte)))
449 return -EBUSY;
450 if (WARN_ON(!page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 return -ENOMEM;
452 set_pte_at(&init_mm, addr, pte, mk_pte(page, prot));
Nick Piggindb64fe02008-10-18 20:27:03 -0700453 (*nr)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 } while (pte++, addr += PAGE_SIZE, addr != end);
Joerg Roedel2ba3e692020-06-01 21:52:22 -0700455 *mask |= PGTBL_PTE_MODIFIED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 return 0;
457}
458
Nicholas Piggin0a264882021-04-29 22:58:19 -0700459static int vmap_pages_pmd_range(pud_t *pud, unsigned long addr,
Joerg Roedel2ba3e692020-06-01 21:52:22 -0700460 unsigned long end, pgprot_t prot, struct page **pages, int *nr,
461 pgtbl_mod_mask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
463 pmd_t *pmd;
464 unsigned long next;
465
Joerg Roedel2ba3e692020-06-01 21:52:22 -0700466 pmd = pmd_alloc_track(&init_mm, pud, addr, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 if (!pmd)
468 return -ENOMEM;
469 do {
470 next = pmd_addr_end(addr, end);
Nicholas Piggin0a264882021-04-29 22:58:19 -0700471 if (vmap_pages_pte_range(pmd, addr, next, prot, pages, nr, mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 return -ENOMEM;
473 } while (pmd++, addr = next, addr != end);
474 return 0;
475}
476
Nicholas Piggin0a264882021-04-29 22:58:19 -0700477static int vmap_pages_pud_range(p4d_t *p4d, unsigned long addr,
Joerg Roedel2ba3e692020-06-01 21:52:22 -0700478 unsigned long end, pgprot_t prot, struct page **pages, int *nr,
479 pgtbl_mod_mask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
481 pud_t *pud;
482 unsigned long next;
483
Joerg Roedel2ba3e692020-06-01 21:52:22 -0700484 pud = pud_alloc_track(&init_mm, p4d, addr, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 if (!pud)
486 return -ENOMEM;
487 do {
488 next = pud_addr_end(addr, end);
Nicholas Piggin0a264882021-04-29 22:58:19 -0700489 if (vmap_pages_pmd_range(pud, addr, next, prot, pages, nr, mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 return -ENOMEM;
491 } while (pud++, addr = next, addr != end);
492 return 0;
493}
494
Nicholas Piggin0a264882021-04-29 22:58:19 -0700495static int vmap_pages_p4d_range(pgd_t *pgd, unsigned long addr,
Joerg Roedel2ba3e692020-06-01 21:52:22 -0700496 unsigned long end, pgprot_t prot, struct page **pages, int *nr,
497 pgtbl_mod_mask *mask)
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300498{
499 p4d_t *p4d;
500 unsigned long next;
501
Joerg Roedel2ba3e692020-06-01 21:52:22 -0700502 p4d = p4d_alloc_track(&init_mm, pgd, addr, mask);
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300503 if (!p4d)
504 return -ENOMEM;
505 do {
506 next = p4d_addr_end(addr, end);
Nicholas Piggin0a264882021-04-29 22:58:19 -0700507 if (vmap_pages_pud_range(p4d, addr, next, prot, pages, nr, mask))
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300508 return -ENOMEM;
509 } while (p4d++, addr = next, addr != end);
510 return 0;
511}
512
Nicholas Piggin121e6f32021-04-29 22:58:49 -0700513static int vmap_small_pages_range_noflush(unsigned long addr, unsigned long end,
514 pgprot_t prot, struct page **pages)
515{
516 unsigned long start = addr;
517 pgd_t *pgd;
518 unsigned long next;
519 int err = 0;
520 int nr = 0;
521 pgtbl_mod_mask mask = 0;
522
523 BUG_ON(addr >= end);
524 pgd = pgd_offset_k(addr);
525 do {
526 next = pgd_addr_end(addr, end);
527 if (pgd_bad(*pgd))
528 mask |= PGTBL_PGD_MODIFIED;
529 err = vmap_pages_p4d_range(pgd, addr, next, prot, pages, &nr, &mask);
530 if (err)
531 return err;
532 } while (pgd++, addr = next, addr != end);
533
534 if (mask & ARCH_PAGE_TABLE_SYNC_MASK)
535 arch_sync_kernel_mappings(start, end);
536
537 return 0;
538}
539
Nicholas Pigginb67177e2021-04-29 22:58:53 -0700540/*
541 * vmap_pages_range_noflush is similar to vmap_pages_range, but does not
542 * flush caches.
543 *
544 * The caller is responsible for calling flush_cache_vmap() after this
545 * function returns successfully and before the addresses are accessed.
546 *
547 * This is an internal function only. Do not use outside mm/.
548 */
549int vmap_pages_range_noflush(unsigned long addr, unsigned long end,
Nicholas Piggin121e6f32021-04-29 22:58:49 -0700550 pgprot_t prot, struct page **pages, unsigned int page_shift)
551{
552 unsigned int i, nr = (end - addr) >> PAGE_SHIFT;
553
554 WARN_ON(page_shift < PAGE_SHIFT);
555
556 if (!IS_ENABLED(CONFIG_HAVE_ARCH_HUGE_VMALLOC) ||
557 page_shift == PAGE_SHIFT)
558 return vmap_small_pages_range_noflush(addr, end, prot, pages);
559
560 for (i = 0; i < nr; i += 1U << (page_shift - PAGE_SHIFT)) {
561 int err;
562
563 err = vmap_range_noflush(addr, addr + (1UL << page_shift),
564 __pa(page_address(pages[i])), prot,
565 page_shift);
566 if (err)
567 return err;
568
569 addr += 1UL << page_shift;
570 }
571
572 return 0;
573}
574
Nicholas Pigginb67177e2021-04-29 22:58:53 -0700575/**
576 * vmap_pages_range - map pages to a kernel virtual address
577 * @addr: start of the VM area to map
578 * @end: end of the VM area to map (non-inclusive)
579 * @prot: page protection flags to use
580 * @pages: pages to map (always PAGE_SIZE pages)
581 * @page_shift: maximum shift that the pages may be mapped with, @pages must
582 * be aligned and contiguous up to at least this shift.
583 *
584 * RETURNS:
585 * 0 on success, -errno on failure.
586 */
Nicholas Piggin121e6f32021-04-29 22:58:49 -0700587static int vmap_pages_range(unsigned long addr, unsigned long end,
588 pgprot_t prot, struct page **pages, unsigned int page_shift)
589{
590 int err;
591
592 err = vmap_pages_range_noflush(addr, end, prot, pages, page_shift);
593 flush_cache_vmap(addr, end);
594 return err;
595}
596
KAMEZAWA Hiroyuki81ac3ad2009-09-22 16:45:49 -0700597int is_vmalloc_or_module_addr(const void *x)
Linus Torvalds73bdf0a2008-10-15 08:35:12 -0700598{
599 /*
Russell Kingab4f2ee2008-11-06 17:11:07 +0000600 * ARM, x86-64 and sparc64 put modules in a special place,
Linus Torvalds73bdf0a2008-10-15 08:35:12 -0700601 * and fall back on vmalloc() if that fails. Others
602 * just put it in the vmalloc space.
603 */
604#if defined(CONFIG_MODULES) && defined(MODULES_VADDR)
605 unsigned long addr = (unsigned long)x;
606 if (addr >= MODULES_VADDR && addr < MODULES_END)
607 return 1;
608#endif
609 return is_vmalloc_addr(x);
610}
611
Christoph Lameter48667e72008-02-04 22:28:31 -0800612/*
Nicholas Pigginc0eb3152021-04-29 22:58:13 -0700613 * Walk a vmap address to the struct page it maps. Huge vmap mappings will
614 * return the tail page that corresponds to the base page address, which
615 * matches small vmap mappings.
Christoph Lameter48667e72008-02-04 22:28:31 -0800616 */
malcadd688f2014-01-27 17:06:53 -0800617struct page *vmalloc_to_page(const void *vmalloc_addr)
Christoph Lameter48667e72008-02-04 22:28:31 -0800618{
619 unsigned long addr = (unsigned long) vmalloc_addr;
malcadd688f2014-01-27 17:06:53 -0800620 struct page *page = NULL;
Christoph Lameter48667e72008-02-04 22:28:31 -0800621 pgd_t *pgd = pgd_offset_k(addr);
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300622 p4d_t *p4d;
623 pud_t *pud;
624 pmd_t *pmd;
625 pte_t *ptep, pte;
Christoph Lameter48667e72008-02-04 22:28:31 -0800626
Ingo Molnar7aa413d2008-06-19 13:28:11 +0200627 /*
628 * XXX we might need to change this if we add VIRTUAL_BUG_ON for
629 * architectures that do not vmalloc module space
630 */
Linus Torvalds73bdf0a2008-10-15 08:35:12 -0700631 VIRTUAL_BUG_ON(!is_vmalloc_or_module_addr(vmalloc_addr));
Jiri Slaby59ea7462008-06-12 13:56:40 +0200632
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300633 if (pgd_none(*pgd))
634 return NULL;
Nicholas Pigginc0eb3152021-04-29 22:58:13 -0700635 if (WARN_ON_ONCE(pgd_leaf(*pgd)))
636 return NULL; /* XXX: no allowance for huge pgd */
637 if (WARN_ON_ONCE(pgd_bad(*pgd)))
638 return NULL;
639
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300640 p4d = p4d_offset(pgd, addr);
641 if (p4d_none(*p4d))
642 return NULL;
Nicholas Pigginc0eb3152021-04-29 22:58:13 -0700643 if (p4d_leaf(*p4d))
644 return p4d_page(*p4d) + ((addr & ~P4D_MASK) >> PAGE_SHIFT);
645 if (WARN_ON_ONCE(p4d_bad(*p4d)))
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300646 return NULL;
Nicholas Pigginc0eb3152021-04-29 22:58:13 -0700647
648 pud = pud_offset(p4d, addr);
649 if (pud_none(*pud))
650 return NULL;
651 if (pud_leaf(*pud))
652 return pud_page(*pud) + ((addr & ~PUD_MASK) >> PAGE_SHIFT);
653 if (WARN_ON_ONCE(pud_bad(*pud)))
654 return NULL;
655
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300656 pmd = pmd_offset(pud, addr);
Nicholas Pigginc0eb3152021-04-29 22:58:13 -0700657 if (pmd_none(*pmd))
658 return NULL;
659 if (pmd_leaf(*pmd))
660 return pmd_page(*pmd) + ((addr & ~PMD_MASK) >> PAGE_SHIFT);
661 if (WARN_ON_ONCE(pmd_bad(*pmd)))
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300662 return NULL;
Nick Piggindb64fe02008-10-18 20:27:03 -0700663
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300664 ptep = pte_offset_map(pmd, addr);
665 pte = *ptep;
666 if (pte_present(pte))
667 page = pte_page(pte);
668 pte_unmap(ptep);
Nicholas Pigginc0eb3152021-04-29 22:58:13 -0700669
malcadd688f2014-01-27 17:06:53 -0800670 return page;
Jianyu Zhanece86e222014-01-21 15:49:12 -0800671}
672EXPORT_SYMBOL(vmalloc_to_page);
673
malcadd688f2014-01-27 17:06:53 -0800674/*
675 * Map a vmalloc()-space virtual address to the physical page frame number.
676 */
677unsigned long vmalloc_to_pfn(const void *vmalloc_addr)
678{
679 return page_to_pfn(vmalloc_to_page(vmalloc_addr));
680}
681EXPORT_SYMBOL(vmalloc_to_pfn);
682
Nick Piggindb64fe02008-10-18 20:27:03 -0700683
684/*** Global kva allocator ***/
685
Uladzislau Rezki (Sony)bb850f42019-05-17 14:31:34 -0700686#define DEBUG_AUGMENT_PROPAGATE_CHECK 0
Uladzislau Rezki (Sony)a6cf4e02019-05-17 14:31:37 -0700687#define DEBUG_AUGMENT_LOWEST_MATCH_CHECK 0
Uladzislau Rezki (Sony)bb850f42019-05-17 14:31:34 -0700688
Nick Piggindb64fe02008-10-18 20:27:03 -0700689
Nick Piggindb64fe02008-10-18 20:27:03 -0700690static DEFINE_SPINLOCK(vmap_area_lock);
Uladzislau Rezki (Sony)e36176b2019-11-30 17:54:47 -0800691static DEFINE_SPINLOCK(free_vmap_area_lock);
Joonsoo Kimf1c40692013-04-29 15:07:37 -0700692/* Export for kexec only */
693LIST_HEAD(vmap_area_list);
Nick Piggin89699602011-03-22 16:30:36 -0700694static struct rb_root vmap_area_root = RB_ROOT;
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -0700695static bool vmap_initialized __read_mostly;
Nick Piggin89699602011-03-22 16:30:36 -0700696
Uladzislau Rezki (Sony)96e2db42020-12-14 19:08:49 -0800697static struct rb_root purge_vmap_area_root = RB_ROOT;
698static LIST_HEAD(purge_vmap_area_list);
699static DEFINE_SPINLOCK(purge_vmap_area_lock);
700
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -0700701/*
702 * This kmem_cache is used for vmap_area objects. Instead of
703 * allocating from slab we reuse an object from this cache to
704 * make things faster. Especially in "no edge" splitting of
705 * free block.
706 */
707static struct kmem_cache *vmap_area_cachep;
Nick Piggin89699602011-03-22 16:30:36 -0700708
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -0700709/*
710 * This linked list is used in pair with free_vmap_area_root.
711 * It gives O(1) access to prev/next to perform fast coalescing.
712 */
713static LIST_HEAD(free_vmap_area_list);
714
715/*
716 * This augment red-black tree represents the free vmap space.
717 * All vmap_area objects in this tree are sorted by va->va_start
718 * address. It is used for allocation and merging when a vmap
719 * object is released.
720 *
721 * Each vmap_area node contains a maximum available free block
722 * of its sub-tree, right or left. Therefore it is possible to
723 * find a lowest match of free area.
724 */
725static struct rb_root free_vmap_area_root = RB_ROOT;
726
Uladzislau Rezki (Sony)82dd23e2019-07-11 20:58:57 -0700727/*
728 * Preload a CPU with one object for "no edge" split case. The
729 * aim is to get rid of allocations from the atomic context, thus
730 * to use more permissive allocation masks.
731 */
732static DEFINE_PER_CPU(struct vmap_area *, ne_fit_preload_node);
733
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -0700734static __always_inline unsigned long
735va_size(struct vmap_area *va)
736{
737 return (va->va_end - va->va_start);
738}
739
740static __always_inline unsigned long
741get_subtree_max_size(struct rb_node *node)
742{
743 struct vmap_area *va;
744
745 va = rb_entry_safe(node, struct vmap_area, rb_node);
746 return va ? va->subtree_max_size : 0;
747}
748
749/*
750 * Gets called when remove the node and rotate.
751 */
752static __always_inline unsigned long
753compute_subtree_max_size(struct vmap_area *va)
754{
755 return max3(va_size(va),
756 get_subtree_max_size(va->rb_node.rb_left),
757 get_subtree_max_size(va->rb_node.rb_right));
758}
759
Michel Lespinasse315cc062019-09-25 16:46:07 -0700760RB_DECLARE_CALLBACKS_MAX(static, free_vmap_area_rb_augment_cb,
761 struct vmap_area, rb_node, unsigned long, subtree_max_size, va_size)
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -0700762
763static void purge_vmap_area_lazy(void);
764static BLOCKING_NOTIFIER_HEAD(vmap_notify_list);
765static unsigned long lazy_max_pages(void);
Nick Piggindb64fe02008-10-18 20:27:03 -0700766
Roman Gushchin97105f02019-07-11 21:00:13 -0700767static atomic_long_t nr_vmalloc_pages;
768
769unsigned long vmalloc_nr_pages(void)
770{
771 return atomic_long_read(&nr_vmalloc_pages);
772}
773
Nick Piggindb64fe02008-10-18 20:27:03 -0700774static struct vmap_area *__find_vmap_area(unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
Nick Piggindb64fe02008-10-18 20:27:03 -0700776 struct rb_node *n = vmap_area_root.rb_node;
777
778 while (n) {
779 struct vmap_area *va;
780
781 va = rb_entry(n, struct vmap_area, rb_node);
782 if (addr < va->va_start)
783 n = n->rb_left;
HATAYAMA Daisukecef2ac32013-07-03 15:02:17 -0700784 else if (addr >= va->va_end)
Nick Piggindb64fe02008-10-18 20:27:03 -0700785 n = n->rb_right;
786 else
787 return va;
788 }
789
790 return NULL;
791}
792
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -0700793/*
794 * This function returns back addresses of parent node
795 * and its left or right link for further processing.
Uladzislau Rezki (Sony)9c801f62020-08-06 23:24:24 -0700796 *
797 * Otherwise NULL is returned. In that case all further
798 * steps regarding inserting of conflicting overlap range
799 * have to be declined and actually considered as a bug.
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -0700800 */
801static __always_inline struct rb_node **
802find_va_links(struct vmap_area *va,
803 struct rb_root *root, struct rb_node *from,
804 struct rb_node **parent)
Nick Piggindb64fe02008-10-18 20:27:03 -0700805{
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -0700806 struct vmap_area *tmp_va;
807 struct rb_node **link;
Nick Piggindb64fe02008-10-18 20:27:03 -0700808
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -0700809 if (root) {
810 link = &root->rb_node;
811 if (unlikely(!*link)) {
812 *parent = NULL;
813 return link;
814 }
815 } else {
816 link = &from;
Nick Piggindb64fe02008-10-18 20:27:03 -0700817 }
818
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -0700819 /*
820 * Go to the bottom of the tree. When we hit the last point
821 * we end up with parent rb_node and correct direction, i name
822 * it link, where the new va->rb_node will be attached to.
823 */
824 do {
825 tmp_va = rb_entry(*link, struct vmap_area, rb_node);
Nick Piggindb64fe02008-10-18 20:27:03 -0700826
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -0700827 /*
828 * During the traversal we also do some sanity check.
829 * Trigger the BUG() if there are sides(left/right)
830 * or full overlaps.
831 */
832 if (va->va_start < tmp_va->va_end &&
833 va->va_end <= tmp_va->va_start)
834 link = &(*link)->rb_left;
835 else if (va->va_end > tmp_va->va_start &&
836 va->va_start >= tmp_va->va_end)
837 link = &(*link)->rb_right;
Uladzislau Rezki (Sony)9c801f62020-08-06 23:24:24 -0700838 else {
839 WARN(1, "vmalloc bug: 0x%lx-0x%lx overlaps with 0x%lx-0x%lx\n",
840 va->va_start, va->va_end, tmp_va->va_start, tmp_va->va_end);
841
842 return NULL;
843 }
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -0700844 } while (*link);
845
846 *parent = &tmp_va->rb_node;
847 return link;
Nick Piggindb64fe02008-10-18 20:27:03 -0700848}
849
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -0700850static __always_inline struct list_head *
851get_va_next_sibling(struct rb_node *parent, struct rb_node **link)
852{
853 struct list_head *list;
Nick Piggindb64fe02008-10-18 20:27:03 -0700854
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -0700855 if (unlikely(!parent))
856 /*
857 * The red-black tree where we try to find VA neighbors
858 * before merging or inserting is empty, i.e. it means
859 * there is no free vmap space. Normally it does not
860 * happen but we handle this case anyway.
861 */
862 return NULL;
863
864 list = &rb_entry(parent, struct vmap_area, rb_node)->list;
865 return (&parent->rb_right == link ? list->next : list);
866}
867
868static __always_inline void
869link_va(struct vmap_area *va, struct rb_root *root,
870 struct rb_node *parent, struct rb_node **link, struct list_head *head)
871{
872 /*
873 * VA is still not in the list, but we can
874 * identify its future previous list_head node.
875 */
876 if (likely(parent)) {
877 head = &rb_entry(parent, struct vmap_area, rb_node)->list;
878 if (&parent->rb_right != link)
879 head = head->prev;
880 }
881
882 /* Insert to the rb-tree */
883 rb_link_node(&va->rb_node, parent, link);
884 if (root == &free_vmap_area_root) {
885 /*
886 * Some explanation here. Just perform simple insertion
887 * to the tree. We do not set va->subtree_max_size to
888 * its current size before calling rb_insert_augmented().
889 * It is because of we populate the tree from the bottom
890 * to parent levels when the node _is_ in the tree.
891 *
892 * Therefore we set subtree_max_size to zero after insertion,
893 * to let __augment_tree_propagate_from() puts everything to
894 * the correct order later on.
895 */
896 rb_insert_augmented(&va->rb_node,
897 root, &free_vmap_area_rb_augment_cb);
898 va->subtree_max_size = 0;
899 } else {
900 rb_insert_color(&va->rb_node, root);
901 }
902
903 /* Address-sort this list */
904 list_add(&va->list, head);
905}
906
907static __always_inline void
908unlink_va(struct vmap_area *va, struct rb_root *root)
909{
Uladzislau Rezki (Sony)460e42d2019-07-11 20:59:03 -0700910 if (WARN_ON(RB_EMPTY_NODE(&va->rb_node)))
911 return;
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -0700912
Uladzislau Rezki (Sony)460e42d2019-07-11 20:59:03 -0700913 if (root == &free_vmap_area_root)
914 rb_erase_augmented(&va->rb_node,
915 root, &free_vmap_area_rb_augment_cb);
916 else
917 rb_erase(&va->rb_node, root);
918
919 list_del(&va->list);
920 RB_CLEAR_NODE(&va->rb_node);
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -0700921}
922
Uladzislau Rezki (Sony)bb850f42019-05-17 14:31:34 -0700923#if DEBUG_AUGMENT_PROPAGATE_CHECK
924static void
Uladzislau Rezki (Sony)da27c9e2020-08-06 23:24:12 -0700925augment_tree_propagate_check(void)
Uladzislau Rezki (Sony)bb850f42019-05-17 14:31:34 -0700926{
927 struct vmap_area *va;
Uladzislau Rezki (Sony)da27c9e2020-08-06 23:24:12 -0700928 unsigned long computed_size;
Uladzislau Rezki (Sony)bb850f42019-05-17 14:31:34 -0700929
Uladzislau Rezki (Sony)da27c9e2020-08-06 23:24:12 -0700930 list_for_each_entry(va, &free_vmap_area_list, list) {
931 computed_size = compute_subtree_max_size(va);
932 if (computed_size != va->subtree_max_size)
933 pr_emerg("tree is corrupted: %lu, %lu\n",
934 va_size(va), va->subtree_max_size);
Uladzislau Rezki (Sony)bb850f42019-05-17 14:31:34 -0700935 }
Uladzislau Rezki (Sony)bb850f42019-05-17 14:31:34 -0700936}
937#endif
938
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -0700939/*
940 * This function populates subtree_max_size from bottom to upper
941 * levels starting from VA point. The propagation must be done
942 * when VA size is modified by changing its va_start/va_end. Or
943 * in case of newly inserting of VA to the tree.
944 *
945 * It means that __augment_tree_propagate_from() must be called:
946 * - After VA has been inserted to the tree(free path);
947 * - After VA has been shrunk(allocation path);
948 * - After VA has been increased(merging path).
949 *
950 * Please note that, it does not mean that upper parent nodes
951 * and their subtree_max_size are recalculated all the time up
952 * to the root node.
953 *
954 * 4--8
955 * /\
956 * / \
957 * / \
958 * 2--2 8--8
959 *
960 * For example if we modify the node 4, shrinking it to 2, then
961 * no any modification is required. If we shrink the node 2 to 1
962 * its subtree_max_size is updated only, and set to 1. If we shrink
963 * the node 8 to 6, then its subtree_max_size is set to 6 and parent
964 * node becomes 4--6.
965 */
966static __always_inline void
967augment_tree_propagate_from(struct vmap_area *va)
968{
Uladzislau Rezki (Sony)15ae1442020-08-06 23:24:15 -0700969 /*
970 * Populate the tree from bottom towards the root until
971 * the calculated maximum available size of checked node
972 * is equal to its current one.
973 */
974 free_vmap_area_rb_augment_cb_propagate(&va->rb_node, NULL);
Uladzislau Rezki (Sony)bb850f42019-05-17 14:31:34 -0700975
976#if DEBUG_AUGMENT_PROPAGATE_CHECK
Uladzislau Rezki (Sony)da27c9e2020-08-06 23:24:12 -0700977 augment_tree_propagate_check();
Uladzislau Rezki (Sony)bb850f42019-05-17 14:31:34 -0700978#endif
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -0700979}
980
981static void
982insert_vmap_area(struct vmap_area *va,
983 struct rb_root *root, struct list_head *head)
984{
985 struct rb_node **link;
986 struct rb_node *parent;
987
988 link = find_va_links(va, root, NULL, &parent);
Uladzislau Rezki (Sony)9c801f62020-08-06 23:24:24 -0700989 if (link)
990 link_va(va, root, parent, link, head);
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -0700991}
992
993static void
994insert_vmap_area_augment(struct vmap_area *va,
995 struct rb_node *from, struct rb_root *root,
996 struct list_head *head)
997{
998 struct rb_node **link;
999 struct rb_node *parent;
1000
1001 if (from)
1002 link = find_va_links(va, NULL, from, &parent);
1003 else
1004 link = find_va_links(va, root, NULL, &parent);
1005
Uladzislau Rezki (Sony)9c801f62020-08-06 23:24:24 -07001006 if (link) {
1007 link_va(va, root, parent, link, head);
1008 augment_tree_propagate_from(va);
1009 }
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07001010}
1011
1012/*
1013 * Merge de-allocated chunk of VA memory with previous
1014 * and next free blocks. If coalesce is not done a new
1015 * free area is inserted. If VA has been merged, it is
1016 * freed.
Uladzislau Rezki (Sony)9c801f62020-08-06 23:24:24 -07001017 *
1018 * Please note, it can return NULL in case of overlap
1019 * ranges, followed by WARN() report. Despite it is a
1020 * buggy behaviour, a system can be alive and keep
1021 * ongoing.
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07001022 */
Daniel Axtens3c5c3cf2019-11-30 17:54:50 -08001023static __always_inline struct vmap_area *
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07001024merge_or_add_vmap_area(struct vmap_area *va,
1025 struct rb_root *root, struct list_head *head)
1026{
1027 struct vmap_area *sibling;
1028 struct list_head *next;
1029 struct rb_node **link;
1030 struct rb_node *parent;
1031 bool merged = false;
1032
1033 /*
1034 * Find a place in the tree where VA potentially will be
1035 * inserted, unless it is merged with its sibling/siblings.
1036 */
1037 link = find_va_links(va, root, NULL, &parent);
Uladzislau Rezki (Sony)9c801f62020-08-06 23:24:24 -07001038 if (!link)
1039 return NULL;
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07001040
1041 /*
1042 * Get next node of VA to check if merging can be done.
1043 */
1044 next = get_va_next_sibling(parent, link);
1045 if (unlikely(next == NULL))
1046 goto insert;
1047
1048 /*
1049 * start end
1050 * | |
1051 * |<------VA------>|<-----Next----->|
1052 * | |
1053 * start end
1054 */
1055 if (next != head) {
1056 sibling = list_entry(next, struct vmap_area, list);
1057 if (sibling->va_start == va->va_end) {
1058 sibling->va_start = va->va_start;
1059
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07001060 /* Free vmap_area object. */
1061 kmem_cache_free(vmap_area_cachep, va);
1062
1063 /* Point to the new merged area. */
1064 va = sibling;
1065 merged = true;
1066 }
1067 }
1068
1069 /*
1070 * start end
1071 * | |
1072 * |<-----Prev----->|<------VA------>|
1073 * | |
1074 * start end
1075 */
1076 if (next->prev != head) {
1077 sibling = list_entry(next->prev, struct vmap_area, list);
1078 if (sibling->va_end == va->va_start) {
Uladzislau Rezki (Sony)5dd78642020-08-06 23:24:09 -07001079 /*
1080 * If both neighbors are coalesced, it is important
1081 * to unlink the "next" node first, followed by merging
1082 * with "previous" one. Otherwise the tree might not be
1083 * fully populated if a sibling's augmented value is
1084 * "normalized" because of rotation operations.
1085 */
Uladzislau Rezki (Sony)54f63d92019-07-11 20:59:00 -07001086 if (merged)
1087 unlink_va(va, root);
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07001088
Uladzislau Rezki (Sony)5dd78642020-08-06 23:24:09 -07001089 sibling->va_end = va->va_end;
1090
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07001091 /* Free vmap_area object. */
1092 kmem_cache_free(vmap_area_cachep, va);
Daniel Axtens3c5c3cf2019-11-30 17:54:50 -08001093
1094 /* Point to the new merged area. */
1095 va = sibling;
1096 merged = true;
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07001097 }
1098 }
1099
1100insert:
Uladzislau Rezki (Sony)5dd78642020-08-06 23:24:09 -07001101 if (!merged)
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07001102 link_va(va, root, parent, link, head);
Daniel Axtens3c5c3cf2019-11-30 17:54:50 -08001103
Uladzislau Rezki (Sony)96e2db42020-12-14 19:08:49 -08001104 return va;
1105}
1106
1107static __always_inline struct vmap_area *
1108merge_or_add_vmap_area_augment(struct vmap_area *va,
1109 struct rb_root *root, struct list_head *head)
1110{
1111 va = merge_or_add_vmap_area(va, root, head);
1112 if (va)
1113 augment_tree_propagate_from(va);
1114
Daniel Axtens3c5c3cf2019-11-30 17:54:50 -08001115 return va;
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07001116}
1117
1118static __always_inline bool
1119is_within_this_va(struct vmap_area *va, unsigned long size,
1120 unsigned long align, unsigned long vstart)
1121{
1122 unsigned long nva_start_addr;
1123
1124 if (va->va_start > vstart)
1125 nva_start_addr = ALIGN(va->va_start, align);
1126 else
1127 nva_start_addr = ALIGN(vstart, align);
1128
1129 /* Can be overflowed due to big size or alignment. */
1130 if (nva_start_addr + size < nva_start_addr ||
1131 nva_start_addr < vstart)
1132 return false;
1133
1134 return (nva_start_addr + size <= va->va_end);
1135}
1136
1137/*
1138 * Find the first free block(lowest start address) in the tree,
1139 * that will accomplish the request corresponding to passing
1140 * parameters.
1141 */
1142static __always_inline struct vmap_area *
1143find_vmap_lowest_match(unsigned long size,
1144 unsigned long align, unsigned long vstart)
1145{
1146 struct vmap_area *va;
1147 struct rb_node *node;
1148 unsigned long length;
1149
1150 /* Start from the root. */
1151 node = free_vmap_area_root.rb_node;
1152
1153 /* Adjust the search size for alignment overhead. */
1154 length = size + align - 1;
1155
1156 while (node) {
1157 va = rb_entry(node, struct vmap_area, rb_node);
1158
1159 if (get_subtree_max_size(node->rb_left) >= length &&
1160 vstart < va->va_start) {
1161 node = node->rb_left;
1162 } else {
1163 if (is_within_this_va(va, size, align, vstart))
1164 return va;
1165
1166 /*
1167 * Does not make sense to go deeper towards the right
1168 * sub-tree if it does not have a free block that is
1169 * equal or bigger to the requested search length.
1170 */
1171 if (get_subtree_max_size(node->rb_right) >= length) {
1172 node = node->rb_right;
1173 continue;
1174 }
1175
1176 /*
Andrew Morton3806b042019-05-31 22:30:03 -07001177 * OK. We roll back and find the first right sub-tree,
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07001178 * that will satisfy the search criteria. It can happen
1179 * only once due to "vstart" restriction.
1180 */
1181 while ((node = rb_parent(node))) {
1182 va = rb_entry(node, struct vmap_area, rb_node);
1183 if (is_within_this_va(va, size, align, vstart))
1184 return va;
1185
1186 if (get_subtree_max_size(node->rb_right) >= length &&
1187 vstart <= va->va_start) {
1188 node = node->rb_right;
1189 break;
1190 }
1191 }
1192 }
1193 }
1194
1195 return NULL;
1196}
1197
Uladzislau Rezki (Sony)a6cf4e02019-05-17 14:31:37 -07001198#if DEBUG_AUGMENT_LOWEST_MATCH_CHECK
1199#include <linux/random.h>
1200
1201static struct vmap_area *
1202find_vmap_lowest_linear_match(unsigned long size,
1203 unsigned long align, unsigned long vstart)
1204{
1205 struct vmap_area *va;
1206
1207 list_for_each_entry(va, &free_vmap_area_list, list) {
1208 if (!is_within_this_va(va, size, align, vstart))
1209 continue;
1210
1211 return va;
1212 }
1213
1214 return NULL;
1215}
1216
1217static void
1218find_vmap_lowest_match_check(unsigned long size)
1219{
1220 struct vmap_area *va_1, *va_2;
1221 unsigned long vstart;
1222 unsigned int rnd;
1223
1224 get_random_bytes(&rnd, sizeof(rnd));
1225 vstart = VMALLOC_START + rnd;
1226
1227 va_1 = find_vmap_lowest_match(size, 1, vstart);
1228 va_2 = find_vmap_lowest_linear_match(size, 1, vstart);
1229
1230 if (va_1 != va_2)
1231 pr_emerg("not lowest: t: 0x%p, l: 0x%p, v: 0x%lx\n",
1232 va_1, va_2, vstart);
1233}
1234#endif
1235
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07001236enum fit_type {
1237 NOTHING_FIT = 0,
1238 FL_FIT_TYPE = 1, /* full fit */
1239 LE_FIT_TYPE = 2, /* left edge fit */
1240 RE_FIT_TYPE = 3, /* right edge fit */
1241 NE_FIT_TYPE = 4 /* no edge fit */
1242};
1243
1244static __always_inline enum fit_type
1245classify_va_fit_type(struct vmap_area *va,
1246 unsigned long nva_start_addr, unsigned long size)
1247{
1248 enum fit_type type;
1249
1250 /* Check if it is within VA. */
1251 if (nva_start_addr < va->va_start ||
1252 nva_start_addr + size > va->va_end)
1253 return NOTHING_FIT;
1254
1255 /* Now classify. */
1256 if (va->va_start == nva_start_addr) {
1257 if (va->va_end == nva_start_addr + size)
1258 type = FL_FIT_TYPE;
1259 else
1260 type = LE_FIT_TYPE;
1261 } else if (va->va_end == nva_start_addr + size) {
1262 type = RE_FIT_TYPE;
1263 } else {
1264 type = NE_FIT_TYPE;
1265 }
1266
1267 return type;
1268}
1269
1270static __always_inline int
1271adjust_va_to_fit_type(struct vmap_area *va,
1272 unsigned long nva_start_addr, unsigned long size,
1273 enum fit_type type)
1274{
Arnd Bergmann2c929232019-06-28 12:07:09 -07001275 struct vmap_area *lva = NULL;
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07001276
1277 if (type == FL_FIT_TYPE) {
1278 /*
1279 * No need to split VA, it fully fits.
1280 *
1281 * | |
1282 * V NVA V
1283 * |---------------|
1284 */
1285 unlink_va(va, &free_vmap_area_root);
1286 kmem_cache_free(vmap_area_cachep, va);
1287 } else if (type == LE_FIT_TYPE) {
1288 /*
1289 * Split left edge of fit VA.
1290 *
1291 * | |
1292 * V NVA V R
1293 * |-------|-------|
1294 */
1295 va->va_start += size;
1296 } else if (type == RE_FIT_TYPE) {
1297 /*
1298 * Split right edge of fit VA.
1299 *
1300 * | |
1301 * L V NVA V
1302 * |-------|-------|
1303 */
1304 va->va_end = nva_start_addr;
1305 } else if (type == NE_FIT_TYPE) {
1306 /*
1307 * Split no edge of fit VA.
1308 *
1309 * | |
1310 * L V NVA V R
1311 * |---|-------|---|
1312 */
Uladzislau Rezki (Sony)82dd23e2019-07-11 20:58:57 -07001313 lva = __this_cpu_xchg(ne_fit_preload_node, NULL);
1314 if (unlikely(!lva)) {
1315 /*
1316 * For percpu allocator we do not do any pre-allocation
1317 * and leave it as it is. The reason is it most likely
1318 * never ends up with NE_FIT_TYPE splitting. In case of
1319 * percpu allocations offsets and sizes are aligned to
1320 * fixed align request, i.e. RE_FIT_TYPE and FL_FIT_TYPE
1321 * are its main fitting cases.
1322 *
1323 * There are a few exceptions though, as an example it is
1324 * a first allocation (early boot up) when we have "one"
1325 * big free space that has to be split.
Uladzislau Rezki (Sony)060650a2019-11-30 17:54:40 -08001326 *
1327 * Also we can hit this path in case of regular "vmap"
1328 * allocations, if "this" current CPU was not preloaded.
1329 * See the comment in alloc_vmap_area() why. If so, then
1330 * GFP_NOWAIT is used instead to get an extra object for
1331 * split purpose. That is rare and most time does not
1332 * occur.
1333 *
1334 * What happens if an allocation gets failed. Basically,
1335 * an "overflow" path is triggered to purge lazily freed
1336 * areas to free some memory, then, the "retry" path is
1337 * triggered to repeat one more time. See more details
1338 * in alloc_vmap_area() function.
Uladzislau Rezki (Sony)82dd23e2019-07-11 20:58:57 -07001339 */
1340 lva = kmem_cache_alloc(vmap_area_cachep, GFP_NOWAIT);
1341 if (!lva)
1342 return -1;
1343 }
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07001344
1345 /*
1346 * Build the remainder.
1347 */
1348 lva->va_start = va->va_start;
1349 lva->va_end = nva_start_addr;
1350
1351 /*
1352 * Shrink this VA to remaining size.
1353 */
1354 va->va_start = nva_start_addr + size;
1355 } else {
1356 return -1;
1357 }
1358
1359 if (type != FL_FIT_TYPE) {
1360 augment_tree_propagate_from(va);
1361
Arnd Bergmann2c929232019-06-28 12:07:09 -07001362 if (lva) /* type == NE_FIT_TYPE */
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07001363 insert_vmap_area_augment(lva, &va->rb_node,
1364 &free_vmap_area_root, &free_vmap_area_list);
1365 }
1366
1367 return 0;
1368}
1369
1370/*
1371 * Returns a start address of the newly allocated area, if success.
1372 * Otherwise a vend is returned that indicates failure.
1373 */
1374static __always_inline unsigned long
1375__alloc_vmap_area(unsigned long size, unsigned long align,
Uladzislau Rezki (Sony)cacca6b2019-07-11 20:58:53 -07001376 unsigned long vstart, unsigned long vend)
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07001377{
1378 unsigned long nva_start_addr;
1379 struct vmap_area *va;
1380 enum fit_type type;
1381 int ret;
1382
1383 va = find_vmap_lowest_match(size, align, vstart);
1384 if (unlikely(!va))
1385 return vend;
1386
1387 if (va->va_start > vstart)
1388 nva_start_addr = ALIGN(va->va_start, align);
1389 else
1390 nva_start_addr = ALIGN(vstart, align);
1391
1392 /* Check the "vend" restriction. */
1393 if (nva_start_addr + size > vend)
1394 return vend;
1395
1396 /* Classify what we have found. */
1397 type = classify_va_fit_type(va, nva_start_addr, size);
1398 if (WARN_ON_ONCE(type == NOTHING_FIT))
1399 return vend;
1400
1401 /* Update the free vmap_area. */
1402 ret = adjust_va_to_fit_type(va, nva_start_addr, size, type);
1403 if (ret)
1404 return vend;
1405
Uladzislau Rezki (Sony)a6cf4e02019-05-17 14:31:37 -07001406#if DEBUG_AUGMENT_LOWEST_MATCH_CHECK
1407 find_vmap_lowest_match_check(size);
1408#endif
1409
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07001410 return nva_start_addr;
1411}
Chris Wilson4da56b92016-04-04 14:46:42 +01001412
Nick Piggindb64fe02008-10-18 20:27:03 -07001413/*
Andrey Ryabinind98c9e82019-12-17 20:51:38 -08001414 * Free a region of KVA allocated by alloc_vmap_area
1415 */
1416static void free_vmap_area(struct vmap_area *va)
1417{
1418 /*
1419 * Remove from the busy tree/list.
1420 */
1421 spin_lock(&vmap_area_lock);
1422 unlink_va(va, &vmap_area_root);
1423 spin_unlock(&vmap_area_lock);
1424
1425 /*
1426 * Insert/Merge it back to the free tree/list.
1427 */
1428 spin_lock(&free_vmap_area_lock);
Uladzislau Rezki (Sony)96e2db42020-12-14 19:08:49 -08001429 merge_or_add_vmap_area_augment(va, &free_vmap_area_root, &free_vmap_area_list);
Andrey Ryabinind98c9e82019-12-17 20:51:38 -08001430 spin_unlock(&free_vmap_area_lock);
1431}
1432
1433/*
Nick Piggindb64fe02008-10-18 20:27:03 -07001434 * Allocate a region of KVA of the specified size and alignment, within the
1435 * vstart and vend.
1436 */
1437static struct vmap_area *alloc_vmap_area(unsigned long size,
1438 unsigned long align,
1439 unsigned long vstart, unsigned long vend,
1440 int node, gfp_t gfp_mask)
1441{
Uladzislau Rezki (Sony)82dd23e2019-07-11 20:58:57 -07001442 struct vmap_area *va, *pva;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 unsigned long addr;
Nick Piggindb64fe02008-10-18 20:27:03 -07001444 int purged = 0;
Andrey Ryabinind98c9e82019-12-17 20:51:38 -08001445 int ret;
Nick Piggindb64fe02008-10-18 20:27:03 -07001446
Nick Piggin77669702009-02-27 14:03:03 -08001447 BUG_ON(!size);
Alexander Kuleshov891c49a2015-11-05 18:46:51 -08001448 BUG_ON(offset_in_page(size));
Nick Piggin89699602011-03-22 16:30:36 -07001449 BUG_ON(!is_power_of_2(align));
Nick Piggindb64fe02008-10-18 20:27:03 -07001450
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07001451 if (unlikely(!vmap_initialized))
1452 return ERR_PTR(-EBUSY);
1453
Christoph Hellwig5803ed22016-12-12 16:44:20 -08001454 might_sleep();
Uladzislau Rezki (Sony)f07116d2019-11-30 17:54:37 -08001455 gfp_mask = gfp_mask & GFP_RECLAIM_MASK;
Chris Wilson4da56b92016-04-04 14:46:42 +01001456
Uladzislau Rezki (Sony)f07116d2019-11-30 17:54:37 -08001457 va = kmem_cache_alloc_node(vmap_area_cachep, gfp_mask, node);
Nick Piggindb64fe02008-10-18 20:27:03 -07001458 if (unlikely(!va))
1459 return ERR_PTR(-ENOMEM);
1460
Catalin Marinas7f88f882013-11-12 15:07:45 -08001461 /*
1462 * Only scan the relevant parts containing pointers to other objects
1463 * to avoid false negatives.
1464 */
Uladzislau Rezki (Sony)f07116d2019-11-30 17:54:37 -08001465 kmemleak_scan_area(&va->rb_node, SIZE_MAX, gfp_mask);
Catalin Marinas7f88f882013-11-12 15:07:45 -08001466
Nick Piggindb64fe02008-10-18 20:27:03 -07001467retry:
Uladzislau Rezki (Sony)82dd23e2019-07-11 20:58:57 -07001468 /*
Uladzislau Rezki (Sony)81f1ba52019-11-30 17:54:33 -08001469 * Preload this CPU with one extra vmap_area object. It is used
1470 * when fit type of free area is NE_FIT_TYPE. Please note, it
1471 * does not guarantee that an allocation occurs on a CPU that
1472 * is preloaded, instead we minimize the case when it is not.
1473 * It can happen because of cpu migration, because there is a
1474 * race until the below spinlock is taken.
Uladzislau Rezki (Sony)82dd23e2019-07-11 20:58:57 -07001475 *
1476 * The preload is done in non-atomic context, thus it allows us
1477 * to use more permissive allocation masks to be more stable under
Uladzislau Rezki (Sony)81f1ba52019-11-30 17:54:33 -08001478 * low memory condition and high memory pressure. In rare case,
1479 * if not preloaded, GFP_NOWAIT is used.
Uladzislau Rezki (Sony)82dd23e2019-07-11 20:58:57 -07001480 *
Uladzislau Rezki (Sony)81f1ba52019-11-30 17:54:33 -08001481 * Set "pva" to NULL here, because of "retry" path.
Uladzislau Rezki (Sony)82dd23e2019-07-11 20:58:57 -07001482 */
Uladzislau Rezki (Sony)81f1ba52019-11-30 17:54:33 -08001483 pva = NULL;
Uladzislau Rezki (Sony)82dd23e2019-07-11 20:58:57 -07001484
Uladzislau Rezki (Sony)81f1ba52019-11-30 17:54:33 -08001485 if (!this_cpu_read(ne_fit_preload_node))
1486 /*
1487 * Even if it fails we do not really care about that.
1488 * Just proceed as it is. If needed "overflow" path
1489 * will refill the cache we allocate from.
1490 */
Uladzislau Rezki (Sony)f07116d2019-11-30 17:54:37 -08001491 pva = kmem_cache_alloc_node(vmap_area_cachep, gfp_mask, node);
Uladzislau Rezki (Sony)82dd23e2019-07-11 20:58:57 -07001492
Uladzislau Rezki (Sony)e36176b2019-11-30 17:54:47 -08001493 spin_lock(&free_vmap_area_lock);
Uladzislau Rezki (Sony)81f1ba52019-11-30 17:54:33 -08001494
1495 if (pva && __this_cpu_cmpxchg(ne_fit_preload_node, NULL, pva))
1496 kmem_cache_free(vmap_area_cachep, pva);
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07001497
Nick Piggin89699602011-03-22 16:30:36 -07001498 /*
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07001499 * If an allocation fails, the "vend" address is
1500 * returned. Therefore trigger the overflow path.
Nick Piggin89699602011-03-22 16:30:36 -07001501 */
Uladzislau Rezki (Sony)cacca6b2019-07-11 20:58:53 -07001502 addr = __alloc_vmap_area(size, align, vstart, vend);
Uladzislau Rezki (Sony)e36176b2019-11-30 17:54:47 -08001503 spin_unlock(&free_vmap_area_lock);
1504
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07001505 if (unlikely(addr == vend))
Nick Piggin89699602011-03-22 16:30:36 -07001506 goto overflow;
Nick Piggindb64fe02008-10-18 20:27:03 -07001507
1508 va->va_start = addr;
1509 va->va_end = addr + size;
Pengfei Li688fcbf2019-09-23 15:36:39 -07001510 va->vm = NULL;
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07001511
Andrey Ryabinind98c9e82019-12-17 20:51:38 -08001512
Uladzislau Rezki (Sony)e36176b2019-11-30 17:54:47 -08001513 spin_lock(&vmap_area_lock);
1514 insert_vmap_area(va, &vmap_area_root, &vmap_area_list);
Nick Piggindb64fe02008-10-18 20:27:03 -07001515 spin_unlock(&vmap_area_lock);
1516
Wang Xiaoqiang61e16552016-01-15 16:57:19 -08001517 BUG_ON(!IS_ALIGNED(va->va_start, align));
Nick Piggin89699602011-03-22 16:30:36 -07001518 BUG_ON(va->va_start < vstart);
1519 BUG_ON(va->va_end > vend);
1520
Andrey Ryabinind98c9e82019-12-17 20:51:38 -08001521 ret = kasan_populate_vmalloc(addr, size);
1522 if (ret) {
1523 free_vmap_area(va);
1524 return ERR_PTR(ret);
1525 }
1526
Nick Piggindb64fe02008-10-18 20:27:03 -07001527 return va;
Nick Piggin89699602011-03-22 16:30:36 -07001528
1529overflow:
Nick Piggin89699602011-03-22 16:30:36 -07001530 if (!purged) {
1531 purge_vmap_area_lazy();
1532 purged = 1;
1533 goto retry;
1534 }
Chris Wilson4da56b92016-04-04 14:46:42 +01001535
1536 if (gfpflags_allow_blocking(gfp_mask)) {
1537 unsigned long freed = 0;
1538 blocking_notifier_call_chain(&vmap_notify_list, 0, &freed);
1539 if (freed > 0) {
1540 purged = 0;
1541 goto retry;
1542 }
1543 }
1544
Florian Fainelli03497d72017-04-27 11:19:00 -07001545 if (!(gfp_mask & __GFP_NOWARN) && printk_ratelimit())
Joe Perches756a0252016-03-17 14:19:47 -07001546 pr_warn("vmap allocation for size %lu failed: use vmalloc=<size> to increase size\n",
1547 size);
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07001548
1549 kmem_cache_free(vmap_area_cachep, va);
Nick Piggin89699602011-03-22 16:30:36 -07001550 return ERR_PTR(-EBUSY);
Nick Piggindb64fe02008-10-18 20:27:03 -07001551}
1552
Chris Wilson4da56b92016-04-04 14:46:42 +01001553int register_vmap_purge_notifier(struct notifier_block *nb)
1554{
1555 return blocking_notifier_chain_register(&vmap_notify_list, nb);
1556}
1557EXPORT_SYMBOL_GPL(register_vmap_purge_notifier);
1558
1559int unregister_vmap_purge_notifier(struct notifier_block *nb)
1560{
1561 return blocking_notifier_chain_unregister(&vmap_notify_list, nb);
1562}
1563EXPORT_SYMBOL_GPL(unregister_vmap_purge_notifier);
1564
Nick Piggindb64fe02008-10-18 20:27:03 -07001565/*
Nick Piggindb64fe02008-10-18 20:27:03 -07001566 * lazy_max_pages is the maximum amount of virtual address space we gather up
1567 * before attempting to purge with a TLB flush.
1568 *
1569 * There is a tradeoff here: a larger number will cover more kernel page tables
1570 * and take slightly longer to purge, but it will linearly reduce the number of
1571 * global TLB flushes that must be performed. It would seem natural to scale
1572 * this number up linearly with the number of CPUs (because vmapping activity
1573 * could also scale linearly with the number of CPUs), however it is likely
1574 * that in practice, workloads might be constrained in other ways that mean
1575 * vmap activity will not scale linearly with CPUs. Also, I want to be
1576 * conservative and not introduce a big latency on huge systems, so go with
1577 * a less aggressive log scale. It will still be an improvement over the old
1578 * code, and it will be simple to change the scale factor if we find that it
1579 * becomes a problem on bigger systems.
1580 */
1581static unsigned long lazy_max_pages(void)
1582{
1583 unsigned int log;
1584
1585 log = fls(num_online_cpus());
1586
1587 return log * (32UL * 1024 * 1024 / PAGE_SIZE);
1588}
1589
Uladzislau Rezki (Sony)4d36e6f2019-05-14 15:41:25 -07001590static atomic_long_t vmap_lazy_nr = ATOMIC_LONG_INIT(0);
Nick Piggindb64fe02008-10-18 20:27:03 -07001591
Christoph Hellwig0574ecd2016-12-12 16:44:07 -08001592/*
1593 * Serialize vmap purging. There is no actual criticial section protected
1594 * by this look, but we want to avoid concurrent calls for performance
1595 * reasons and to make the pcpu_get_vm_areas more deterministic.
1596 */
Christoph Hellwigf9e09972016-12-12 16:44:23 -08001597static DEFINE_MUTEX(vmap_purge_lock);
Christoph Hellwig0574ecd2016-12-12 16:44:07 -08001598
Nick Piggin02b709d2010-02-01 22:25:57 +11001599/* for per-CPU blocks */
1600static void purge_fragmented_blocks_allcpus(void);
1601
Nick Piggindb64fe02008-10-18 20:27:03 -07001602/*
Cliff Wickman3ee48b62010-09-16 11:44:02 -05001603 * called before a call to iounmap() if the caller wants vm_area_struct's
1604 * immediately freed.
1605 */
1606void set_iounmap_nonlazy(void)
1607{
Uladzislau Rezki (Sony)4d36e6f2019-05-14 15:41:25 -07001608 atomic_long_set(&vmap_lazy_nr, lazy_max_pages()+1);
Cliff Wickman3ee48b62010-09-16 11:44:02 -05001609}
1610
1611/*
Nick Piggindb64fe02008-10-18 20:27:03 -07001612 * Purges all lazily-freed vmap areas.
Nick Piggindb64fe02008-10-18 20:27:03 -07001613 */
Christoph Hellwig0574ecd2016-12-12 16:44:07 -08001614static bool __purge_vmap_area_lazy(unsigned long start, unsigned long end)
Nick Piggindb64fe02008-10-18 20:27:03 -07001615{
Uladzislau Rezki (Sony)4d36e6f2019-05-14 15:41:25 -07001616 unsigned long resched_threshold;
Uladzislau Rezki (Sony)96e2db42020-12-14 19:08:49 -08001617 struct list_head local_pure_list;
1618 struct vmap_area *va, *n_va;
Nick Piggindb64fe02008-10-18 20:27:03 -07001619
Christoph Hellwig0574ecd2016-12-12 16:44:07 -08001620 lockdep_assert_held(&vmap_purge_lock);
Nick Piggin02b709d2010-02-01 22:25:57 +11001621
Uladzislau Rezki (Sony)96e2db42020-12-14 19:08:49 -08001622 spin_lock(&purge_vmap_area_lock);
1623 purge_vmap_area_root = RB_ROOT;
1624 list_replace_init(&purge_vmap_area_list, &local_pure_list);
1625 spin_unlock(&purge_vmap_area_lock);
1626
1627 if (unlikely(list_empty(&local_pure_list)))
Uladzislau Rezki (Sony)68571be92019-05-14 15:41:22 -07001628 return false;
1629
Uladzislau Rezki (Sony)96e2db42020-12-14 19:08:49 -08001630 start = min(start,
1631 list_first_entry(&local_pure_list,
1632 struct vmap_area, list)->va_start);
1633
1634 end = max(end,
1635 list_last_entry(&local_pure_list,
1636 struct vmap_area, list)->va_end);
Nick Piggindb64fe02008-10-18 20:27:03 -07001637
Christoph Hellwig0574ecd2016-12-12 16:44:07 -08001638 flush_tlb_kernel_range(start, end);
Uladzislau Rezki (Sony)4d36e6f2019-05-14 15:41:25 -07001639 resched_threshold = lazy_max_pages() << 1;
Nick Piggindb64fe02008-10-18 20:27:03 -07001640
Uladzislau Rezki (Sony)e36176b2019-11-30 17:54:47 -08001641 spin_lock(&free_vmap_area_lock);
Uladzislau Rezki (Sony)96e2db42020-12-14 19:08:49 -08001642 list_for_each_entry_safe(va, n_va, &local_pure_list, list) {
Uladzislau Rezki (Sony)4d36e6f2019-05-14 15:41:25 -07001643 unsigned long nr = (va->va_end - va->va_start) >> PAGE_SHIFT;
Daniel Axtens3c5c3cf2019-11-30 17:54:50 -08001644 unsigned long orig_start = va->va_start;
1645 unsigned long orig_end = va->va_end;
Joel Fernandes763b2182016-12-12 16:44:26 -08001646
Uladzislau Rezki (Sony)dd3b8352019-09-23 15:36:36 -07001647 /*
1648 * Finally insert or merge lazily-freed area. It is
1649 * detached and there is no need to "unlink" it from
1650 * anything.
1651 */
Uladzislau Rezki (Sony)96e2db42020-12-14 19:08:49 -08001652 va = merge_or_add_vmap_area_augment(va, &free_vmap_area_root,
1653 &free_vmap_area_list);
Daniel Axtens3c5c3cf2019-11-30 17:54:50 -08001654
Uladzislau Rezki (Sony)9c801f62020-08-06 23:24:24 -07001655 if (!va)
1656 continue;
1657
Daniel Axtens3c5c3cf2019-11-30 17:54:50 -08001658 if (is_vmalloc_or_module_addr((void *)orig_start))
1659 kasan_release_vmalloc(orig_start, orig_end,
1660 va->va_start, va->va_end);
Uladzislau Rezki (Sony)dd3b8352019-09-23 15:36:36 -07001661
Uladzislau Rezki (Sony)4d36e6f2019-05-14 15:41:25 -07001662 atomic_long_sub(nr, &vmap_lazy_nr);
Uladzislau Rezki (Sony)68571be92019-05-14 15:41:22 -07001663
Uladzislau Rezki (Sony)4d36e6f2019-05-14 15:41:25 -07001664 if (atomic_long_read(&vmap_lazy_nr) < resched_threshold)
Uladzislau Rezki (Sony)e36176b2019-11-30 17:54:47 -08001665 cond_resched_lock(&free_vmap_area_lock);
Joel Fernandes763b2182016-12-12 16:44:26 -08001666 }
Uladzislau Rezki (Sony)e36176b2019-11-30 17:54:47 -08001667 spin_unlock(&free_vmap_area_lock);
Christoph Hellwig0574ecd2016-12-12 16:44:07 -08001668 return true;
Nick Piggindb64fe02008-10-18 20:27:03 -07001669}
1670
1671/*
Nick Piggin496850e2008-11-19 15:36:33 -08001672 * Kick off a purge of the outstanding lazy areas. Don't bother if somebody
1673 * is already purging.
1674 */
1675static void try_purge_vmap_area_lazy(void)
1676{
Christoph Hellwigf9e09972016-12-12 16:44:23 -08001677 if (mutex_trylock(&vmap_purge_lock)) {
Christoph Hellwig0574ecd2016-12-12 16:44:07 -08001678 __purge_vmap_area_lazy(ULONG_MAX, 0);
Christoph Hellwigf9e09972016-12-12 16:44:23 -08001679 mutex_unlock(&vmap_purge_lock);
Christoph Hellwig0574ecd2016-12-12 16:44:07 -08001680 }
Nick Piggin496850e2008-11-19 15:36:33 -08001681}
1682
1683/*
Nick Piggindb64fe02008-10-18 20:27:03 -07001684 * Kick off a purge of the outstanding lazy areas.
1685 */
1686static void purge_vmap_area_lazy(void)
1687{
Christoph Hellwigf9e09972016-12-12 16:44:23 -08001688 mutex_lock(&vmap_purge_lock);
Christoph Hellwig0574ecd2016-12-12 16:44:07 -08001689 purge_fragmented_blocks_allcpus();
1690 __purge_vmap_area_lazy(ULONG_MAX, 0);
Christoph Hellwigf9e09972016-12-12 16:44:23 -08001691 mutex_unlock(&vmap_purge_lock);
Nick Piggindb64fe02008-10-18 20:27:03 -07001692}
1693
1694/*
Jeremy Fitzhardinge64141da2010-12-02 14:31:18 -08001695 * Free a vmap area, caller ensuring that the area has been unmapped
1696 * and flush_cache_vunmap had been called for the correct range
1697 * previously.
Nick Piggindb64fe02008-10-18 20:27:03 -07001698 */
Jeremy Fitzhardinge64141da2010-12-02 14:31:18 -08001699static void free_vmap_area_noflush(struct vmap_area *va)
Nick Piggindb64fe02008-10-18 20:27:03 -07001700{
Uladzislau Rezki (Sony)4d36e6f2019-05-14 15:41:25 -07001701 unsigned long nr_lazy;
Chris Wilson80c4bd72016-05-20 16:57:38 -07001702
Uladzislau Rezki (Sony)dd3b8352019-09-23 15:36:36 -07001703 spin_lock(&vmap_area_lock);
1704 unlink_va(va, &vmap_area_root);
1705 spin_unlock(&vmap_area_lock);
1706
Uladzislau Rezki (Sony)4d36e6f2019-05-14 15:41:25 -07001707 nr_lazy = atomic_long_add_return((va->va_end - va->va_start) >>
1708 PAGE_SHIFT, &vmap_lazy_nr);
Chris Wilson80c4bd72016-05-20 16:57:38 -07001709
Uladzislau Rezki (Sony)96e2db42020-12-14 19:08:49 -08001710 /*
1711 * Merge or place it to the purge tree/list.
1712 */
1713 spin_lock(&purge_vmap_area_lock);
1714 merge_or_add_vmap_area(va,
1715 &purge_vmap_area_root, &purge_vmap_area_list);
1716 spin_unlock(&purge_vmap_area_lock);
Chris Wilson80c4bd72016-05-20 16:57:38 -07001717
Uladzislau Rezki (Sony)96e2db42020-12-14 19:08:49 -08001718 /* After this point, we may free va at any time */
Chris Wilson80c4bd72016-05-20 16:57:38 -07001719 if (unlikely(nr_lazy > lazy_max_pages()))
Nick Piggin496850e2008-11-19 15:36:33 -08001720 try_purge_vmap_area_lazy();
Nick Piggindb64fe02008-10-18 20:27:03 -07001721}
1722
Nick Pigginb29acbd2008-12-01 13:13:47 -08001723/*
1724 * Free and unmap a vmap area
1725 */
1726static void free_unmap_vmap_area(struct vmap_area *va)
1727{
1728 flush_cache_vunmap(va->va_start, va->va_end);
Nicholas Piggin4ad0ae82021-04-29 22:59:01 -07001729 vunmap_range_noflush(va->va_start, va->va_end);
Vlastimil Babka8e57f8a2020-01-13 16:29:20 -08001730 if (debug_pagealloc_enabled_static())
Chintan Pandya82a2e922018-06-07 17:06:46 -07001731 flush_tlb_kernel_range(va->va_start, va->va_end);
1732
Christoph Hellwigc8eef012016-12-12 16:44:01 -08001733 free_vmap_area_noflush(va);
Nick Pigginb29acbd2008-12-01 13:13:47 -08001734}
1735
Nick Piggindb64fe02008-10-18 20:27:03 -07001736static struct vmap_area *find_vmap_area(unsigned long addr)
1737{
1738 struct vmap_area *va;
1739
1740 spin_lock(&vmap_area_lock);
1741 va = __find_vmap_area(addr);
1742 spin_unlock(&vmap_area_lock);
1743
1744 return va;
1745}
1746
Nick Piggindb64fe02008-10-18 20:27:03 -07001747/*** Per cpu kva allocator ***/
1748
1749/*
1750 * vmap space is limited especially on 32 bit architectures. Ensure there is
1751 * room for at least 16 percpu vmap blocks per CPU.
1752 */
1753/*
1754 * If we had a constant VMALLOC_START and VMALLOC_END, we'd like to be able
1755 * to #define VMALLOC_SPACE (VMALLOC_END-VMALLOC_START). Guess
1756 * instead (we just need a rough idea)
1757 */
1758#if BITS_PER_LONG == 32
1759#define VMALLOC_SPACE (128UL*1024*1024)
1760#else
1761#define VMALLOC_SPACE (128UL*1024*1024*1024)
1762#endif
1763
1764#define VMALLOC_PAGES (VMALLOC_SPACE / PAGE_SIZE)
1765#define VMAP_MAX_ALLOC BITS_PER_LONG /* 256K with 4K pages */
1766#define VMAP_BBMAP_BITS_MAX 1024 /* 4MB with 4K pages */
1767#define VMAP_BBMAP_BITS_MIN (VMAP_MAX_ALLOC*2)
1768#define VMAP_MIN(x, y) ((x) < (y) ? (x) : (y)) /* can't use min() */
1769#define VMAP_MAX(x, y) ((x) > (y) ? (x) : (y)) /* can't use max() */
Clemens Ladischf982f9152011-06-21 22:09:50 +02001770#define VMAP_BBMAP_BITS \
1771 VMAP_MIN(VMAP_BBMAP_BITS_MAX, \
1772 VMAP_MAX(VMAP_BBMAP_BITS_MIN, \
1773 VMALLOC_PAGES / roundup_pow_of_two(NR_CPUS) / 16))
Nick Piggindb64fe02008-10-18 20:27:03 -07001774
1775#define VMAP_BLOCK_SIZE (VMAP_BBMAP_BITS * PAGE_SIZE)
1776
1777struct vmap_block_queue {
1778 spinlock_t lock;
1779 struct list_head free;
Nick Piggindb64fe02008-10-18 20:27:03 -07001780};
1781
1782struct vmap_block {
1783 spinlock_t lock;
1784 struct vmap_area *va;
Nick Piggindb64fe02008-10-18 20:27:03 -07001785 unsigned long free, dirty;
Roman Pen7d61bfe2015-04-15 16:13:55 -07001786 unsigned long dirty_min, dirty_max; /*< dirty range */
Nick Pigginde560422010-02-01 22:24:18 +11001787 struct list_head free_list;
1788 struct rcu_head rcu_head;
Nick Piggin02b709d2010-02-01 22:25:57 +11001789 struct list_head purge;
Nick Piggindb64fe02008-10-18 20:27:03 -07001790};
1791
1792/* Queue of free and dirty vmap blocks, for allocation and flushing purposes */
1793static DEFINE_PER_CPU(struct vmap_block_queue, vmap_block_queue);
1794
1795/*
Matthew Wilcox (Oracle)0f145992020-08-06 23:24:05 -07001796 * XArray of vmap blocks, indexed by address, to quickly find a vmap block
Nick Piggindb64fe02008-10-18 20:27:03 -07001797 * in the free path. Could get rid of this if we change the API to return a
1798 * "cookie" from alloc, to be passed to free. But no big deal yet.
1799 */
Matthew Wilcox (Oracle)0f145992020-08-06 23:24:05 -07001800static DEFINE_XARRAY(vmap_blocks);
Nick Piggindb64fe02008-10-18 20:27:03 -07001801
1802/*
1803 * We should probably have a fallback mechanism to allocate virtual memory
1804 * out of partially filled vmap blocks. However vmap block sizing should be
1805 * fairly reasonable according to the vmalloc size, so it shouldn't be a
1806 * big problem.
1807 */
1808
1809static unsigned long addr_to_vb_idx(unsigned long addr)
1810{
1811 addr -= VMALLOC_START & ~(VMAP_BLOCK_SIZE-1);
1812 addr /= VMAP_BLOCK_SIZE;
1813 return addr;
1814}
1815
Roman Pencf725ce2015-04-15 16:13:52 -07001816static void *vmap_block_vaddr(unsigned long va_start, unsigned long pages_off)
1817{
1818 unsigned long addr;
1819
1820 addr = va_start + (pages_off << PAGE_SHIFT);
1821 BUG_ON(addr_to_vb_idx(addr) != addr_to_vb_idx(va_start));
1822 return (void *)addr;
1823}
1824
1825/**
1826 * new_vmap_block - allocates new vmap_block and occupies 2^order pages in this
1827 * block. Of course pages number can't exceed VMAP_BBMAP_BITS
1828 * @order: how many 2^order pages should be occupied in newly allocated block
1829 * @gfp_mask: flags for the page level allocator
1830 *
Mike Rapoporta862f682019-03-05 15:48:42 -08001831 * Return: virtual address in a newly allocated block or ERR_PTR(-errno)
Roman Pencf725ce2015-04-15 16:13:52 -07001832 */
1833static void *new_vmap_block(unsigned int order, gfp_t gfp_mask)
Nick Piggindb64fe02008-10-18 20:27:03 -07001834{
1835 struct vmap_block_queue *vbq;
1836 struct vmap_block *vb;
1837 struct vmap_area *va;
1838 unsigned long vb_idx;
1839 int node, err;
Roman Pencf725ce2015-04-15 16:13:52 -07001840 void *vaddr;
Nick Piggindb64fe02008-10-18 20:27:03 -07001841
1842 node = numa_node_id();
1843
1844 vb = kmalloc_node(sizeof(struct vmap_block),
1845 gfp_mask & GFP_RECLAIM_MASK, node);
1846 if (unlikely(!vb))
1847 return ERR_PTR(-ENOMEM);
1848
1849 va = alloc_vmap_area(VMAP_BLOCK_SIZE, VMAP_BLOCK_SIZE,
1850 VMALLOC_START, VMALLOC_END,
1851 node, gfp_mask);
Tobias Klauserddf9c6d42011-01-13 15:46:15 -08001852 if (IS_ERR(va)) {
Nick Piggindb64fe02008-10-18 20:27:03 -07001853 kfree(vb);
Julia Lawalle7d86342010-08-09 17:18:28 -07001854 return ERR_CAST(va);
Nick Piggindb64fe02008-10-18 20:27:03 -07001855 }
1856
Roman Pencf725ce2015-04-15 16:13:52 -07001857 vaddr = vmap_block_vaddr(va->va_start, 0);
Nick Piggindb64fe02008-10-18 20:27:03 -07001858 spin_lock_init(&vb->lock);
1859 vb->va = va;
Roman Pencf725ce2015-04-15 16:13:52 -07001860 /* At least something should be left free */
1861 BUG_ON(VMAP_BBMAP_BITS <= (1UL << order));
1862 vb->free = VMAP_BBMAP_BITS - (1UL << order);
Nick Piggindb64fe02008-10-18 20:27:03 -07001863 vb->dirty = 0;
Roman Pen7d61bfe2015-04-15 16:13:55 -07001864 vb->dirty_min = VMAP_BBMAP_BITS;
1865 vb->dirty_max = 0;
Nick Piggindb64fe02008-10-18 20:27:03 -07001866 INIT_LIST_HEAD(&vb->free_list);
Nick Piggindb64fe02008-10-18 20:27:03 -07001867
1868 vb_idx = addr_to_vb_idx(va->va_start);
Matthew Wilcox (Oracle)0f145992020-08-06 23:24:05 -07001869 err = xa_insert(&vmap_blocks, vb_idx, vb, gfp_mask);
1870 if (err) {
1871 kfree(vb);
1872 free_vmap_area(va);
1873 return ERR_PTR(err);
1874 }
Nick Piggindb64fe02008-10-18 20:27:03 -07001875
1876 vbq = &get_cpu_var(vmap_block_queue);
Nick Piggindb64fe02008-10-18 20:27:03 -07001877 spin_lock(&vbq->lock);
Roman Pen68ac5462015-04-15 16:13:48 -07001878 list_add_tail_rcu(&vb->free_list, &vbq->free);
Nick Piggindb64fe02008-10-18 20:27:03 -07001879 spin_unlock(&vbq->lock);
Tejun Heo3f04ba82009-10-29 22:34:12 +09001880 put_cpu_var(vmap_block_queue);
Nick Piggindb64fe02008-10-18 20:27:03 -07001881
Roman Pencf725ce2015-04-15 16:13:52 -07001882 return vaddr;
Nick Piggindb64fe02008-10-18 20:27:03 -07001883}
1884
Nick Piggindb64fe02008-10-18 20:27:03 -07001885static void free_vmap_block(struct vmap_block *vb)
1886{
1887 struct vmap_block *tmp;
Nick Piggindb64fe02008-10-18 20:27:03 -07001888
Matthew Wilcox (Oracle)0f145992020-08-06 23:24:05 -07001889 tmp = xa_erase(&vmap_blocks, addr_to_vb_idx(vb->va->va_start));
Nick Piggindb64fe02008-10-18 20:27:03 -07001890 BUG_ON(tmp != vb);
1891
Jeremy Fitzhardinge64141da2010-12-02 14:31:18 -08001892 free_vmap_area_noflush(vb->va);
Lai Jiangshan22a3c7d2011-03-18 12:13:08 +08001893 kfree_rcu(vb, rcu_head);
Nick Piggindb64fe02008-10-18 20:27:03 -07001894}
1895
Nick Piggin02b709d2010-02-01 22:25:57 +11001896static void purge_fragmented_blocks(int cpu)
1897{
1898 LIST_HEAD(purge);
1899 struct vmap_block *vb;
1900 struct vmap_block *n_vb;
1901 struct vmap_block_queue *vbq = &per_cpu(vmap_block_queue, cpu);
1902
1903 rcu_read_lock();
1904 list_for_each_entry_rcu(vb, &vbq->free, free_list) {
1905
1906 if (!(vb->free + vb->dirty == VMAP_BBMAP_BITS && vb->dirty != VMAP_BBMAP_BITS))
1907 continue;
1908
1909 spin_lock(&vb->lock);
1910 if (vb->free + vb->dirty == VMAP_BBMAP_BITS && vb->dirty != VMAP_BBMAP_BITS) {
1911 vb->free = 0; /* prevent further allocs after releasing lock */
1912 vb->dirty = VMAP_BBMAP_BITS; /* prevent purging it again */
Roman Pen7d61bfe2015-04-15 16:13:55 -07001913 vb->dirty_min = 0;
1914 vb->dirty_max = VMAP_BBMAP_BITS;
Nick Piggin02b709d2010-02-01 22:25:57 +11001915 spin_lock(&vbq->lock);
1916 list_del_rcu(&vb->free_list);
1917 spin_unlock(&vbq->lock);
1918 spin_unlock(&vb->lock);
1919 list_add_tail(&vb->purge, &purge);
1920 } else
1921 spin_unlock(&vb->lock);
1922 }
1923 rcu_read_unlock();
1924
1925 list_for_each_entry_safe(vb, n_vb, &purge, purge) {
1926 list_del(&vb->purge);
1927 free_vmap_block(vb);
1928 }
1929}
1930
Nick Piggin02b709d2010-02-01 22:25:57 +11001931static void purge_fragmented_blocks_allcpus(void)
1932{
1933 int cpu;
1934
1935 for_each_possible_cpu(cpu)
1936 purge_fragmented_blocks(cpu);
1937}
1938
Nick Piggindb64fe02008-10-18 20:27:03 -07001939static void *vb_alloc(unsigned long size, gfp_t gfp_mask)
1940{
1941 struct vmap_block_queue *vbq;
1942 struct vmap_block *vb;
Roman Pencf725ce2015-04-15 16:13:52 -07001943 void *vaddr = NULL;
Nick Piggindb64fe02008-10-18 20:27:03 -07001944 unsigned int order;
1945
Alexander Kuleshov891c49a2015-11-05 18:46:51 -08001946 BUG_ON(offset_in_page(size));
Nick Piggindb64fe02008-10-18 20:27:03 -07001947 BUG_ON(size > PAGE_SIZE*VMAP_MAX_ALLOC);
Jan Karaaa91c4d2012-07-31 16:41:37 -07001948 if (WARN_ON(size == 0)) {
1949 /*
1950 * Allocating 0 bytes isn't what caller wants since
1951 * get_order(0) returns funny result. Just warn and terminate
1952 * early.
1953 */
1954 return NULL;
1955 }
Nick Piggindb64fe02008-10-18 20:27:03 -07001956 order = get_order(size);
1957
Nick Piggindb64fe02008-10-18 20:27:03 -07001958 rcu_read_lock();
1959 vbq = &get_cpu_var(vmap_block_queue);
1960 list_for_each_entry_rcu(vb, &vbq->free, free_list) {
Roman Pencf725ce2015-04-15 16:13:52 -07001961 unsigned long pages_off;
Nick Piggindb64fe02008-10-18 20:27:03 -07001962
1963 spin_lock(&vb->lock);
Roman Pencf725ce2015-04-15 16:13:52 -07001964 if (vb->free < (1UL << order)) {
1965 spin_unlock(&vb->lock);
1966 continue;
1967 }
Nick Piggin02b709d2010-02-01 22:25:57 +11001968
Roman Pencf725ce2015-04-15 16:13:52 -07001969 pages_off = VMAP_BBMAP_BITS - vb->free;
1970 vaddr = vmap_block_vaddr(vb->va->va_start, pages_off);
Nick Piggin02b709d2010-02-01 22:25:57 +11001971 vb->free -= 1UL << order;
1972 if (vb->free == 0) {
1973 spin_lock(&vbq->lock);
1974 list_del_rcu(&vb->free_list);
1975 spin_unlock(&vbq->lock);
Nick Piggindb64fe02008-10-18 20:27:03 -07001976 }
Roman Pencf725ce2015-04-15 16:13:52 -07001977
Nick Piggindb64fe02008-10-18 20:27:03 -07001978 spin_unlock(&vb->lock);
Nick Piggin02b709d2010-02-01 22:25:57 +11001979 break;
Nick Piggindb64fe02008-10-18 20:27:03 -07001980 }
Nick Piggin02b709d2010-02-01 22:25:57 +11001981
Tejun Heo3f04ba82009-10-29 22:34:12 +09001982 put_cpu_var(vmap_block_queue);
Nick Piggindb64fe02008-10-18 20:27:03 -07001983 rcu_read_unlock();
1984
Roman Pencf725ce2015-04-15 16:13:52 -07001985 /* Allocate new block if nothing was found */
1986 if (!vaddr)
1987 vaddr = new_vmap_block(order, gfp_mask);
Nick Piggindb64fe02008-10-18 20:27:03 -07001988
Roman Pencf725ce2015-04-15 16:13:52 -07001989 return vaddr;
Nick Piggindb64fe02008-10-18 20:27:03 -07001990}
1991
Christoph Hellwig78a0e8c2020-06-01 21:51:02 -07001992static void vb_free(unsigned long addr, unsigned long size)
Nick Piggindb64fe02008-10-18 20:27:03 -07001993{
1994 unsigned long offset;
Nick Piggindb64fe02008-10-18 20:27:03 -07001995 unsigned int order;
1996 struct vmap_block *vb;
1997
Alexander Kuleshov891c49a2015-11-05 18:46:51 -08001998 BUG_ON(offset_in_page(size));
Nick Piggindb64fe02008-10-18 20:27:03 -07001999 BUG_ON(size > PAGE_SIZE*VMAP_MAX_ALLOC);
Nick Pigginb29acbd2008-12-01 13:13:47 -08002000
Christoph Hellwig78a0e8c2020-06-01 21:51:02 -07002001 flush_cache_vunmap(addr, addr + size);
Nick Pigginb29acbd2008-12-01 13:13:47 -08002002
Nick Piggindb64fe02008-10-18 20:27:03 -07002003 order = get_order(size);
Christoph Hellwig78a0e8c2020-06-01 21:51:02 -07002004 offset = (addr & (VMAP_BLOCK_SIZE - 1)) >> PAGE_SHIFT;
Matthew Wilcox (Oracle)0f145992020-08-06 23:24:05 -07002005 vb = xa_load(&vmap_blocks, addr_to_vb_idx(addr));
Nick Piggindb64fe02008-10-18 20:27:03 -07002006
Nicholas Piggin4ad0ae82021-04-29 22:59:01 -07002007 vunmap_range_noflush(addr, addr + size);
Jeremy Fitzhardinge64141da2010-12-02 14:31:18 -08002008
Vlastimil Babka8e57f8a2020-01-13 16:29:20 -08002009 if (debug_pagealloc_enabled_static())
Christoph Hellwig78a0e8c2020-06-01 21:51:02 -07002010 flush_tlb_kernel_range(addr, addr + size);
Chintan Pandya82a2e922018-06-07 17:06:46 -07002011
Nick Piggindb64fe02008-10-18 20:27:03 -07002012 spin_lock(&vb->lock);
Roman Pen7d61bfe2015-04-15 16:13:55 -07002013
2014 /* Expand dirty range */
2015 vb->dirty_min = min(vb->dirty_min, offset);
2016 vb->dirty_max = max(vb->dirty_max, offset + (1UL << order));
MinChan Kimd0868172009-03-31 15:19:26 -07002017
Nick Piggindb64fe02008-10-18 20:27:03 -07002018 vb->dirty += 1UL << order;
2019 if (vb->dirty == VMAP_BBMAP_BITS) {
Nick Pigginde560422010-02-01 22:24:18 +11002020 BUG_ON(vb->free);
Nick Piggindb64fe02008-10-18 20:27:03 -07002021 spin_unlock(&vb->lock);
2022 free_vmap_block(vb);
2023 } else
2024 spin_unlock(&vb->lock);
2025}
2026
Rick Edgecombe868b1042019-04-25 17:11:36 -07002027static void _vm_unmap_aliases(unsigned long start, unsigned long end, int flush)
Nick Piggindb64fe02008-10-18 20:27:03 -07002028{
Nick Piggindb64fe02008-10-18 20:27:03 -07002029 int cpu;
Nick Piggindb64fe02008-10-18 20:27:03 -07002030
Jeremy Fitzhardinge9b463332008-10-28 19:22:34 +11002031 if (unlikely(!vmap_initialized))
2032 return;
2033
Christoph Hellwig5803ed22016-12-12 16:44:20 -08002034 might_sleep();
2035
Nick Piggindb64fe02008-10-18 20:27:03 -07002036 for_each_possible_cpu(cpu) {
2037 struct vmap_block_queue *vbq = &per_cpu(vmap_block_queue, cpu);
2038 struct vmap_block *vb;
2039
2040 rcu_read_lock();
2041 list_for_each_entry_rcu(vb, &vbq->free, free_list) {
Nick Piggindb64fe02008-10-18 20:27:03 -07002042 spin_lock(&vb->lock);
Roman Pen7d61bfe2015-04-15 16:13:55 -07002043 if (vb->dirty) {
2044 unsigned long va_start = vb->va->va_start;
Nick Piggindb64fe02008-10-18 20:27:03 -07002045 unsigned long s, e;
Joonsoo Kimb136be5e2013-09-11 14:21:40 -07002046
Roman Pen7d61bfe2015-04-15 16:13:55 -07002047 s = va_start + (vb->dirty_min << PAGE_SHIFT);
2048 e = va_start + (vb->dirty_max << PAGE_SHIFT);
Nick Piggindb64fe02008-10-18 20:27:03 -07002049
Roman Pen7d61bfe2015-04-15 16:13:55 -07002050 start = min(s, start);
2051 end = max(e, end);
2052
Nick Piggindb64fe02008-10-18 20:27:03 -07002053 flush = 1;
Nick Piggindb64fe02008-10-18 20:27:03 -07002054 }
2055 spin_unlock(&vb->lock);
2056 }
2057 rcu_read_unlock();
2058 }
2059
Christoph Hellwigf9e09972016-12-12 16:44:23 -08002060 mutex_lock(&vmap_purge_lock);
Christoph Hellwig0574ecd2016-12-12 16:44:07 -08002061 purge_fragmented_blocks_allcpus();
2062 if (!__purge_vmap_area_lazy(start, end) && flush)
2063 flush_tlb_kernel_range(start, end);
Christoph Hellwigf9e09972016-12-12 16:44:23 -08002064 mutex_unlock(&vmap_purge_lock);
Nick Piggindb64fe02008-10-18 20:27:03 -07002065}
Rick Edgecombe868b1042019-04-25 17:11:36 -07002066
2067/**
2068 * vm_unmap_aliases - unmap outstanding lazy aliases in the vmap layer
2069 *
2070 * The vmap/vmalloc layer lazily flushes kernel virtual mappings primarily
2071 * to amortize TLB flushing overheads. What this means is that any page you
2072 * have now, may, in a former life, have been mapped into kernel virtual
2073 * address by the vmap layer and so there might be some CPUs with TLB entries
2074 * still referencing that page (additional to the regular 1:1 kernel mapping).
2075 *
2076 * vm_unmap_aliases flushes all such lazy mappings. After it returns, we can
2077 * be sure that none of the pages we have control over will have any aliases
2078 * from the vmap layer.
2079 */
2080void vm_unmap_aliases(void)
2081{
2082 unsigned long start = ULONG_MAX, end = 0;
2083 int flush = 0;
2084
2085 _vm_unmap_aliases(start, end, flush);
2086}
Nick Piggindb64fe02008-10-18 20:27:03 -07002087EXPORT_SYMBOL_GPL(vm_unmap_aliases);
2088
2089/**
2090 * vm_unmap_ram - unmap linear kernel address space set up by vm_map_ram
2091 * @mem: the pointer returned by vm_map_ram
2092 * @count: the count passed to that vm_map_ram call (cannot unmap partial)
2093 */
2094void vm_unmap_ram(const void *mem, unsigned int count)
2095{
Guillermo Julián Moreno65ee03c2016-06-03 14:55:33 -07002096 unsigned long size = (unsigned long)count << PAGE_SHIFT;
Nick Piggindb64fe02008-10-18 20:27:03 -07002097 unsigned long addr = (unsigned long)mem;
Christoph Hellwig9c3acf62016-12-12 16:44:04 -08002098 struct vmap_area *va;
Nick Piggindb64fe02008-10-18 20:27:03 -07002099
Christoph Hellwig5803ed22016-12-12 16:44:20 -08002100 might_sleep();
Nick Piggindb64fe02008-10-18 20:27:03 -07002101 BUG_ON(!addr);
2102 BUG_ON(addr < VMALLOC_START);
2103 BUG_ON(addr > VMALLOC_END);
Shawn Lina1c0b1a2016-03-17 14:20:37 -07002104 BUG_ON(!PAGE_ALIGNED(addr));
Nick Piggindb64fe02008-10-18 20:27:03 -07002105
Andrey Ryabinind98c9e82019-12-17 20:51:38 -08002106 kasan_poison_vmalloc(mem, size);
2107
Christoph Hellwig9c3acf62016-12-12 16:44:04 -08002108 if (likely(count <= VMAP_MAX_ALLOC)) {
Chintan Pandya05e3ff92018-06-07 17:06:53 -07002109 debug_check_no_locks_freed(mem, size);
Christoph Hellwig78a0e8c2020-06-01 21:51:02 -07002110 vb_free(addr, size);
Christoph Hellwig9c3acf62016-12-12 16:44:04 -08002111 return;
2112 }
2113
2114 va = find_vmap_area(addr);
2115 BUG_ON(!va);
Chintan Pandya05e3ff92018-06-07 17:06:53 -07002116 debug_check_no_locks_freed((void *)va->va_start,
2117 (va->va_end - va->va_start));
Christoph Hellwig9c3acf62016-12-12 16:44:04 -08002118 free_unmap_vmap_area(va);
Nick Piggindb64fe02008-10-18 20:27:03 -07002119}
2120EXPORT_SYMBOL(vm_unmap_ram);
2121
2122/**
2123 * vm_map_ram - map pages linearly into kernel virtual address (vmalloc space)
2124 * @pages: an array of pointers to the pages to be mapped
2125 * @count: number of pages
2126 * @node: prefer to allocate data structures on this node
Randy Dunlape99c97a2008-10-29 14:01:09 -07002127 *
Gioh Kim36437632014-04-07 15:37:37 -07002128 * If you use this function for less than VMAP_MAX_ALLOC pages, it could be
2129 * faster than vmap so it's good. But if you mix long-life and short-life
2130 * objects with vm_map_ram(), it could consume lots of address space through
2131 * fragmentation (especially on a 32bit machine). You could see failures in
2132 * the end. Please use this function for short-lived objects.
2133 *
Randy Dunlape99c97a2008-10-29 14:01:09 -07002134 * Returns: a pointer to the address that has been mapped, or %NULL on failure
Nick Piggindb64fe02008-10-18 20:27:03 -07002135 */
Christoph Hellwigd4efd792020-06-01 21:51:27 -07002136void *vm_map_ram(struct page **pages, unsigned int count, int node)
Nick Piggindb64fe02008-10-18 20:27:03 -07002137{
Guillermo Julián Moreno65ee03c2016-06-03 14:55:33 -07002138 unsigned long size = (unsigned long)count << PAGE_SHIFT;
Nick Piggindb64fe02008-10-18 20:27:03 -07002139 unsigned long addr;
2140 void *mem;
2141
2142 if (likely(count <= VMAP_MAX_ALLOC)) {
2143 mem = vb_alloc(size, GFP_KERNEL);
2144 if (IS_ERR(mem))
2145 return NULL;
2146 addr = (unsigned long)mem;
2147 } else {
2148 struct vmap_area *va;
2149 va = alloc_vmap_area(size, PAGE_SIZE,
2150 VMALLOC_START, VMALLOC_END, node, GFP_KERNEL);
2151 if (IS_ERR(va))
2152 return NULL;
2153
2154 addr = va->va_start;
2155 mem = (void *)addr;
2156 }
Andrey Ryabinind98c9e82019-12-17 20:51:38 -08002157
2158 kasan_unpoison_vmalloc(mem, size);
2159
Nicholas Pigginb67177e2021-04-29 22:58:53 -07002160 if (vmap_pages_range(addr, addr + size, PAGE_KERNEL,
2161 pages, PAGE_SHIFT) < 0) {
Nick Piggindb64fe02008-10-18 20:27:03 -07002162 vm_unmap_ram(mem, count);
2163 return NULL;
2164 }
Nicholas Pigginb67177e2021-04-29 22:58:53 -07002165
Nick Piggindb64fe02008-10-18 20:27:03 -07002166 return mem;
2167}
2168EXPORT_SYMBOL(vm_map_ram);
2169
Joonsoo Kim4341fa42013-04-29 15:07:39 -07002170static struct vm_struct *vmlist __initdata;
Mike Rapoport92eac162019-03-05 15:48:36 -08002171
Nicholas Piggin121e6f32021-04-29 22:58:49 -07002172static inline unsigned int vm_area_page_order(struct vm_struct *vm)
2173{
2174#ifdef CONFIG_HAVE_ARCH_HUGE_VMALLOC
2175 return vm->page_order;
2176#else
2177 return 0;
2178#endif
2179}
2180
2181static inline void set_vm_area_page_order(struct vm_struct *vm, unsigned int order)
2182{
2183#ifdef CONFIG_HAVE_ARCH_HUGE_VMALLOC
2184 vm->page_order = order;
2185#else
2186 BUG_ON(order != 0);
2187#endif
2188}
2189
Tejun Heof0aa6612009-02-20 16:29:08 +09002190/**
Nicolas Pitrebe9b7332011-08-25 00:24:21 -04002191 * vm_area_add_early - add vmap area early during boot
2192 * @vm: vm_struct to add
2193 *
2194 * This function is used to add fixed kernel vm area to vmlist before
2195 * vmalloc_init() is called. @vm->addr, @vm->size, and @vm->flags
2196 * should contain proper values and the other fields should be zero.
2197 *
2198 * DO NOT USE THIS FUNCTION UNLESS YOU KNOW WHAT YOU'RE DOING.
2199 */
2200void __init vm_area_add_early(struct vm_struct *vm)
2201{
2202 struct vm_struct *tmp, **p;
2203
2204 BUG_ON(vmap_initialized);
2205 for (p = &vmlist; (tmp = *p) != NULL; p = &tmp->next) {
2206 if (tmp->addr >= vm->addr) {
2207 BUG_ON(tmp->addr < vm->addr + vm->size);
2208 break;
2209 } else
2210 BUG_ON(tmp->addr + tmp->size > vm->addr);
2211 }
2212 vm->next = *p;
2213 *p = vm;
2214}
2215
2216/**
Tejun Heof0aa6612009-02-20 16:29:08 +09002217 * vm_area_register_early - register vmap area early during boot
2218 * @vm: vm_struct to register
Tejun Heoc0c0a292009-02-24 11:57:21 +09002219 * @align: requested alignment
Tejun Heof0aa6612009-02-20 16:29:08 +09002220 *
2221 * This function is used to register kernel vm area before
2222 * vmalloc_init() is called. @vm->size and @vm->flags should contain
2223 * proper values on entry and other fields should be zero. On return,
2224 * vm->addr contains the allocated address.
2225 *
2226 * DO NOT USE THIS FUNCTION UNLESS YOU KNOW WHAT YOU'RE DOING.
2227 */
Tejun Heoc0c0a292009-02-24 11:57:21 +09002228void __init vm_area_register_early(struct vm_struct *vm, size_t align)
Tejun Heof0aa6612009-02-20 16:29:08 +09002229{
2230 static size_t vm_init_off __initdata;
Tejun Heoc0c0a292009-02-24 11:57:21 +09002231 unsigned long addr;
Tejun Heof0aa6612009-02-20 16:29:08 +09002232
Tejun Heoc0c0a292009-02-24 11:57:21 +09002233 addr = ALIGN(VMALLOC_START + vm_init_off, align);
2234 vm_init_off = PFN_ALIGN(addr + vm->size) - VMALLOC_START;
2235
2236 vm->addr = (void *)addr;
Tejun Heof0aa6612009-02-20 16:29:08 +09002237
Nicolas Pitrebe9b7332011-08-25 00:24:21 -04002238 vm_area_add_early(vm);
Tejun Heof0aa6612009-02-20 16:29:08 +09002239}
2240
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07002241static void vmap_init_free_space(void)
2242{
2243 unsigned long vmap_start = 1;
2244 const unsigned long vmap_end = ULONG_MAX;
2245 struct vmap_area *busy, *free;
2246
2247 /*
2248 * B F B B B F
2249 * -|-----|.....|-----|-----|-----|.....|-
2250 * | The KVA space |
2251 * |<--------------------------------->|
2252 */
2253 list_for_each_entry(busy, &vmap_area_list, list) {
2254 if (busy->va_start - vmap_start > 0) {
2255 free = kmem_cache_zalloc(vmap_area_cachep, GFP_NOWAIT);
2256 if (!WARN_ON_ONCE(!free)) {
2257 free->va_start = vmap_start;
2258 free->va_end = busy->va_start;
2259
2260 insert_vmap_area_augment(free, NULL,
2261 &free_vmap_area_root,
2262 &free_vmap_area_list);
2263 }
2264 }
2265
2266 vmap_start = busy->va_end;
2267 }
2268
2269 if (vmap_end - vmap_start > 0) {
2270 free = kmem_cache_zalloc(vmap_area_cachep, GFP_NOWAIT);
2271 if (!WARN_ON_ONCE(!free)) {
2272 free->va_start = vmap_start;
2273 free->va_end = vmap_end;
2274
2275 insert_vmap_area_augment(free, NULL,
2276 &free_vmap_area_root,
2277 &free_vmap_area_list);
2278 }
2279 }
2280}
2281
Nick Piggindb64fe02008-10-18 20:27:03 -07002282void __init vmalloc_init(void)
2283{
Ivan Kokshaysky822c18f2009-01-15 13:50:48 -08002284 struct vmap_area *va;
2285 struct vm_struct *tmp;
Nick Piggindb64fe02008-10-18 20:27:03 -07002286 int i;
2287
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07002288 /*
2289 * Create the cache for vmap_area objects.
2290 */
2291 vmap_area_cachep = KMEM_CACHE(vmap_area, SLAB_PANIC);
2292
Nick Piggindb64fe02008-10-18 20:27:03 -07002293 for_each_possible_cpu(i) {
2294 struct vmap_block_queue *vbq;
Al Viro32fcfd42013-03-10 20:14:08 -04002295 struct vfree_deferred *p;
Nick Piggindb64fe02008-10-18 20:27:03 -07002296
2297 vbq = &per_cpu(vmap_block_queue, i);
2298 spin_lock_init(&vbq->lock);
2299 INIT_LIST_HEAD(&vbq->free);
Al Viro32fcfd42013-03-10 20:14:08 -04002300 p = &per_cpu(vfree_deferred, i);
2301 init_llist_head(&p->list);
2302 INIT_WORK(&p->wq, free_work);
Nick Piggindb64fe02008-10-18 20:27:03 -07002303 }
Jeremy Fitzhardinge9b463332008-10-28 19:22:34 +11002304
Ivan Kokshaysky822c18f2009-01-15 13:50:48 -08002305 /* Import existing vmlist entries. */
2306 for (tmp = vmlist; tmp; tmp = tmp->next) {
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07002307 va = kmem_cache_zalloc(vmap_area_cachep, GFP_NOWAIT);
2308 if (WARN_ON_ONCE(!va))
2309 continue;
2310
Ivan Kokshaysky822c18f2009-01-15 13:50:48 -08002311 va->va_start = (unsigned long)tmp->addr;
2312 va->va_end = va->va_start + tmp->size;
KyongHodbda5912012-05-29 15:06:49 -07002313 va->vm = tmp;
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07002314 insert_vmap_area(va, &vmap_area_root, &vmap_area_list);
Ivan Kokshaysky822c18f2009-01-15 13:50:48 -08002315 }
Tejun Heoca23e402009-08-14 15:00:52 +09002316
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07002317 /*
2318 * Now we can initialize a free vmap space.
2319 */
2320 vmap_init_free_space();
Jeremy Fitzhardinge9b463332008-10-28 19:22:34 +11002321 vmap_initialized = true;
Nick Piggindb64fe02008-10-18 20:27:03 -07002322}
2323
Uladzislau Rezki (Sony)e36176b2019-11-30 17:54:47 -08002324static inline void setup_vmalloc_vm_locked(struct vm_struct *vm,
2325 struct vmap_area *va, unsigned long flags, const void *caller)
Tejun Heocf88c792009-08-14 15:00:52 +09002326{
Tejun Heocf88c792009-08-14 15:00:52 +09002327 vm->flags = flags;
2328 vm->addr = (void *)va->va_start;
2329 vm->size = va->va_end - va->va_start;
2330 vm->caller = caller;
Minchan Kimdb1aeca2012-01-10 15:08:39 -08002331 va->vm = vm;
Uladzislau Rezki (Sony)e36176b2019-11-30 17:54:47 -08002332}
2333
2334static void setup_vmalloc_vm(struct vm_struct *vm, struct vmap_area *va,
2335 unsigned long flags, const void *caller)
2336{
2337 spin_lock(&vmap_area_lock);
2338 setup_vmalloc_vm_locked(vm, va, flags, caller);
Joonsoo Kimc69480a2013-04-29 15:07:30 -07002339 spin_unlock(&vmap_area_lock);
Mitsuo Hayasakaf5252e02011-10-31 17:08:13 -07002340}
Tejun Heocf88c792009-08-14 15:00:52 +09002341
Zhang Yanfei20fc02b2013-07-08 15:59:58 -07002342static void clear_vm_uninitialized_flag(struct vm_struct *vm)
Mitsuo Hayasakaf5252e02011-10-31 17:08:13 -07002343{
Joonsoo Kimd4033af2013-04-29 15:07:35 -07002344 /*
Zhang Yanfei20fc02b2013-07-08 15:59:58 -07002345 * Before removing VM_UNINITIALIZED,
Joonsoo Kimd4033af2013-04-29 15:07:35 -07002346 * we should make sure that vm has proper values.
2347 * Pair with smp_rmb() in show_numa_info().
2348 */
2349 smp_wmb();
Zhang Yanfei20fc02b2013-07-08 15:59:58 -07002350 vm->flags &= ~VM_UNINITIALIZED;
Tejun Heocf88c792009-08-14 15:00:52 +09002351}
2352
Nick Piggindb64fe02008-10-18 20:27:03 -07002353static struct vm_struct *__get_vm_area_node(unsigned long size,
David Miller2dca6992009-09-21 12:22:34 -07002354 unsigned long align, unsigned long flags, unsigned long start,
Marek Szyprowski5e6cafc2012-04-13 12:32:09 +02002355 unsigned long end, int node, gfp_t gfp_mask, const void *caller)
Nick Piggindb64fe02008-10-18 20:27:03 -07002356{
Kautuk Consul00065262011-12-19 17:12:04 -08002357 struct vmap_area *va;
Nick Piggindb64fe02008-10-18 20:27:03 -07002358 struct vm_struct *area;
Andrey Ryabinind98c9e82019-12-17 20:51:38 -08002359 unsigned long requested_size = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
Giridhar Pemmasani52fd24c2006-10-28 10:38:34 -07002361 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 size = PAGE_ALIGN(size);
OGAWA Hirofumi31be8302006-11-16 01:19:29 -08002363 if (unlikely(!size))
2364 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365
zijun_hu252e5c62016-10-07 16:57:26 -07002366 if (flags & VM_IOREMAP)
2367 align = 1ul << clamp_t(int, get_count_order_long(size),
2368 PAGE_SHIFT, IOREMAP_MAX_ORDER);
2369
Tejun Heocf88c792009-08-14 15:00:52 +09002370 area = kzalloc_node(sizeof(*area), gfp_mask & GFP_RECLAIM_MASK, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 if (unlikely(!area))
2372 return NULL;
2373
Andrey Ryabinin71394fe2015-02-13 14:40:03 -08002374 if (!(flags & VM_NO_GUARD))
2375 size += PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
Nick Piggindb64fe02008-10-18 20:27:03 -07002377 va = alloc_vmap_area(size, align, start, end, node, gfp_mask);
2378 if (IS_ERR(va)) {
2379 kfree(area);
2380 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382
Andrey Ryabinind98c9e82019-12-17 20:51:38 -08002383 kasan_unpoison_vmalloc((void *)va->va_start, requested_size);
Mitsuo Hayasakaf5252e02011-10-31 17:08:13 -07002384
Andrey Ryabinind98c9e82019-12-17 20:51:38 -08002385 setup_vmalloc_vm(area, va, flags, caller);
Daniel Axtens3c5c3cf2019-11-30 17:54:50 -08002386
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 return area;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388}
2389
Benjamin Herrenschmidtc2968612009-02-18 14:48:12 -08002390struct vm_struct *__get_vm_area_caller(unsigned long size, unsigned long flags,
2391 unsigned long start, unsigned long end,
Marek Szyprowski5e6cafc2012-04-13 12:32:09 +02002392 const void *caller)
Benjamin Herrenschmidtc2968612009-02-18 14:48:12 -08002393{
David Rientjes00ef2d22013-02-22 16:35:36 -08002394 return __get_vm_area_node(size, 1, flags, start, end, NUMA_NO_NODE,
2395 GFP_KERNEL, caller);
Benjamin Herrenschmidtc2968612009-02-18 14:48:12 -08002396}
2397
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398/**
Mike Rapoport92eac162019-03-05 15:48:36 -08002399 * get_vm_area - reserve a contiguous kernel virtual area
2400 * @size: size of the area
2401 * @flags: %VM_IOREMAP for I/O mappings or VM_ALLOC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 *
Mike Rapoport92eac162019-03-05 15:48:36 -08002403 * Search an area of @size in the kernel virtual mapping area,
2404 * and reserved it for out purposes. Returns the area descriptor
2405 * on success or %NULL on failure.
Mike Rapoporta862f682019-03-05 15:48:42 -08002406 *
2407 * Return: the area descriptor on success or %NULL on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 */
2409struct vm_struct *get_vm_area(unsigned long size, unsigned long flags)
2410{
David Miller2dca6992009-09-21 12:22:34 -07002411 return __get_vm_area_node(size, 1, flags, VMALLOC_START, VMALLOC_END,
David Rientjes00ef2d22013-02-22 16:35:36 -08002412 NUMA_NO_NODE, GFP_KERNEL,
2413 __builtin_return_address(0));
Christoph Lameter23016962008-04-28 02:12:42 -07002414}
2415
2416struct vm_struct *get_vm_area_caller(unsigned long size, unsigned long flags,
Marek Szyprowski5e6cafc2012-04-13 12:32:09 +02002417 const void *caller)
Christoph Lameter23016962008-04-28 02:12:42 -07002418{
David Miller2dca6992009-09-21 12:22:34 -07002419 return __get_vm_area_node(size, 1, flags, VMALLOC_START, VMALLOC_END,
David Rientjes00ef2d22013-02-22 16:35:36 -08002420 NUMA_NO_NODE, GFP_KERNEL, caller);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421}
2422
Marek Szyprowskie9da6e92012-07-30 09:11:33 +02002423/**
Mike Rapoport92eac162019-03-05 15:48:36 -08002424 * find_vm_area - find a continuous kernel virtual area
2425 * @addr: base address
Marek Szyprowskie9da6e92012-07-30 09:11:33 +02002426 *
Mike Rapoport92eac162019-03-05 15:48:36 -08002427 * Search for the kernel VM area starting at @addr, and return it.
2428 * It is up to the caller to do all required locking to keep the returned
2429 * pointer valid.
Mike Rapoporta862f682019-03-05 15:48:42 -08002430 *
Hui Su74640612020-10-13 16:54:51 -07002431 * Return: the area descriptor on success or %NULL on failure.
Marek Szyprowskie9da6e92012-07-30 09:11:33 +02002432 */
2433struct vm_struct *find_vm_area(const void *addr)
Nick Piggin83342312006-06-23 02:03:20 -07002434{
Nick Piggindb64fe02008-10-18 20:27:03 -07002435 struct vmap_area *va;
Nick Piggin83342312006-06-23 02:03:20 -07002436
Nick Piggindb64fe02008-10-18 20:27:03 -07002437 va = find_vmap_area((unsigned long)addr);
Pengfei Li688fcbf2019-09-23 15:36:39 -07002438 if (!va)
2439 return NULL;
Nick Piggin83342312006-06-23 02:03:20 -07002440
Pengfei Li688fcbf2019-09-23 15:36:39 -07002441 return va->vm;
Andi Kleen7856dfe2005-05-20 14:27:57 -07002442}
2443
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444/**
Mike Rapoport92eac162019-03-05 15:48:36 -08002445 * remove_vm_area - find and remove a continuous kernel virtual area
2446 * @addr: base address
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 *
Mike Rapoport92eac162019-03-05 15:48:36 -08002448 * Search for the kernel VM area starting at @addr, and remove it.
2449 * This function returns the found VM area, but using it is NOT safe
2450 * on SMP machines, except for its size or flags.
Mike Rapoporta862f682019-03-05 15:48:42 -08002451 *
Hui Su74640612020-10-13 16:54:51 -07002452 * Return: the area descriptor on success or %NULL on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 */
Christoph Lameterb3bdda02008-02-04 22:28:32 -08002454struct vm_struct *remove_vm_area(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455{
Nick Piggindb64fe02008-10-18 20:27:03 -07002456 struct vmap_area *va;
2457
Christoph Hellwig5803ed22016-12-12 16:44:20 -08002458 might_sleep();
2459
Uladzislau Rezki (Sony)dd3b8352019-09-23 15:36:36 -07002460 spin_lock(&vmap_area_lock);
2461 va = __find_vmap_area((unsigned long)addr);
Pengfei Li688fcbf2019-09-23 15:36:39 -07002462 if (va && va->vm) {
Minchan Kimdb1aeca2012-01-10 15:08:39 -08002463 struct vm_struct *vm = va->vm;
Mitsuo Hayasakaf5252e02011-10-31 17:08:13 -07002464
Joonsoo Kimc69480a2013-04-29 15:07:30 -07002465 va->vm = NULL;
Joonsoo Kimc69480a2013-04-29 15:07:30 -07002466 spin_unlock(&vmap_area_lock);
2467
Andrey Ryabinina5af5aa2015-03-12 16:26:11 -07002468 kasan_free_shadow(vm);
KAMEZAWA Hiroyukidd32c272009-09-21 17:02:32 -07002469 free_unmap_vmap_area(va);
KAMEZAWA Hiroyukidd32c272009-09-21 17:02:32 -07002470
Nick Piggindb64fe02008-10-18 20:27:03 -07002471 return vm;
2472 }
Uladzislau Rezki (Sony)dd3b8352019-09-23 15:36:36 -07002473
2474 spin_unlock(&vmap_area_lock);
Nick Piggindb64fe02008-10-18 20:27:03 -07002475 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476}
2477
Rick Edgecombe868b1042019-04-25 17:11:36 -07002478static inline void set_area_direct_map(const struct vm_struct *area,
2479 int (*set_direct_map)(struct page *page))
2480{
2481 int i;
2482
Nicholas Piggin121e6f32021-04-29 22:58:49 -07002483 /* HUGE_VMALLOC passes small pages to set_direct_map */
Rick Edgecombe868b1042019-04-25 17:11:36 -07002484 for (i = 0; i < area->nr_pages; i++)
2485 if (page_address(area->pages[i]))
2486 set_direct_map(area->pages[i]);
2487}
2488
2489/* Handle removing and resetting vm mappings related to the vm_struct. */
2490static void vm_remove_mappings(struct vm_struct *area, int deallocate_pages)
2491{
Rick Edgecombe868b1042019-04-25 17:11:36 -07002492 unsigned long start = ULONG_MAX, end = 0;
Nicholas Piggin121e6f32021-04-29 22:58:49 -07002493 unsigned int page_order = vm_area_page_order(area);
Rick Edgecombe868b1042019-04-25 17:11:36 -07002494 int flush_reset = area->flags & VM_FLUSH_RESET_PERMS;
Rick Edgecombe31e67342019-05-27 14:10:58 -07002495 int flush_dmap = 0;
Rick Edgecombe868b1042019-04-25 17:11:36 -07002496 int i;
2497
Rick Edgecombe868b1042019-04-25 17:11:36 -07002498 remove_vm_area(area->addr);
2499
2500 /* If this is not VM_FLUSH_RESET_PERMS memory, no need for the below. */
2501 if (!flush_reset)
2502 return;
2503
2504 /*
2505 * If not deallocating pages, just do the flush of the VM area and
2506 * return.
2507 */
2508 if (!deallocate_pages) {
2509 vm_unmap_aliases();
2510 return;
2511 }
2512
2513 /*
2514 * If execution gets here, flush the vm mapping and reset the direct
2515 * map. Find the start and end range of the direct mappings to make sure
2516 * the vm_unmap_aliases() flush includes the direct map.
2517 */
Nicholas Piggin121e6f32021-04-29 22:58:49 -07002518 for (i = 0; i < area->nr_pages; i += 1U << page_order) {
Rick Edgecombe8e41f872019-05-27 14:10:57 -07002519 unsigned long addr = (unsigned long)page_address(area->pages[i]);
2520 if (addr) {
Nicholas Piggin121e6f32021-04-29 22:58:49 -07002521 unsigned long page_size;
2522
2523 page_size = PAGE_SIZE << page_order;
Rick Edgecombe868b1042019-04-25 17:11:36 -07002524 start = min(addr, start);
Nicholas Piggin121e6f32021-04-29 22:58:49 -07002525 end = max(addr + page_size, end);
Rick Edgecombe31e67342019-05-27 14:10:58 -07002526 flush_dmap = 1;
Rick Edgecombe868b1042019-04-25 17:11:36 -07002527 }
2528 }
2529
2530 /*
2531 * Set direct map to something invalid so that it won't be cached if
2532 * there are any accesses after the TLB flush, then flush the TLB and
2533 * reset the direct map permissions to the default.
2534 */
2535 set_area_direct_map(area, set_direct_map_invalid_noflush);
Rick Edgecombe31e67342019-05-27 14:10:58 -07002536 _vm_unmap_aliases(start, end, flush_dmap);
Rick Edgecombe868b1042019-04-25 17:11:36 -07002537 set_area_direct_map(area, set_direct_map_default_noflush);
2538}
2539
Christoph Lameterb3bdda02008-02-04 22:28:32 -08002540static void __vunmap(const void *addr, int deallocate_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541{
2542 struct vm_struct *area;
2543
2544 if (!addr)
2545 return;
2546
HATAYAMA Daisukee69e9d4a2013-07-03 15:02:18 -07002547 if (WARN(!PAGE_ALIGNED(addr), "Trying to vfree() bad address (%p)\n",
Dan Carpenterab15d9b2013-07-08 15:59:53 -07002548 addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550
Liviu Dudau6ade2032019-03-05 15:42:54 -08002551 area = find_vm_area(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 if (unlikely(!area)) {
Arjan van de Ven4c8573e2008-07-25 19:45:37 -07002553 WARN(1, KERN_ERR "Trying to vfree() nonexistent vm area (%p)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 return;
2556 }
2557
Chintan Pandya05e3ff92018-06-07 17:06:53 -07002558 debug_check_no_locks_freed(area->addr, get_vm_area_size(area));
2559 debug_check_no_obj_freed(area->addr, get_vm_area_size(area));
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07002560
Vincenzo Frascinoc0410982020-12-14 19:09:06 -08002561 kasan_poison_vmalloc(area->addr, get_vm_area_size(area));
Daniel Axtens3c5c3cf2019-11-30 17:54:50 -08002562
Rick Edgecombe868b1042019-04-25 17:11:36 -07002563 vm_remove_mappings(area, deallocate_pages);
2564
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 if (deallocate_pages) {
Nicholas Piggin121e6f32021-04-29 22:58:49 -07002566 unsigned int page_order = vm_area_page_order(area);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 int i;
2568
Nicholas Piggin121e6f32021-04-29 22:58:49 -07002569 for (i = 0; i < area->nr_pages; i += 1U << page_order) {
Christoph Lameterbf53d6f2008-02-04 22:28:34 -08002570 struct page *page = area->pages[i];
2571
2572 BUG_ON(!page);
Nicholas Piggin121e6f32021-04-29 22:58:49 -07002573 __free_pages(page, page_order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 }
Roman Gushchin97105f02019-07-11 21:00:13 -07002575 atomic_long_sub(area->nr_pages, &nr_vmalloc_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576
David Rientjes244d63e2016-01-14 15:19:35 -08002577 kvfree(area->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 }
2579
2580 kfree(area);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581}
Andrey Ryabininbf22e372016-12-12 16:44:10 -08002582
2583static inline void __vfree_deferred(const void *addr)
2584{
2585 /*
2586 * Use raw_cpu_ptr() because this can be called from preemptible
2587 * context. Preemption is absolutely fine here, because the llist_add()
2588 * implementation is lockless, so it works even if we are adding to
Jeongtae Park73221d82020-06-04 16:47:19 -07002589 * another cpu's list. schedule_work() should be fine with this too.
Andrey Ryabininbf22e372016-12-12 16:44:10 -08002590 */
2591 struct vfree_deferred *p = raw_cpu_ptr(&vfree_deferred);
2592
2593 if (llist_add((struct llist_node *)addr, &p->list))
2594 schedule_work(&p->wq);
2595}
2596
2597/**
Mike Rapoport92eac162019-03-05 15:48:36 -08002598 * vfree_atomic - release memory allocated by vmalloc()
2599 * @addr: memory base address
Andrey Ryabininbf22e372016-12-12 16:44:10 -08002600 *
Mike Rapoport92eac162019-03-05 15:48:36 -08002601 * This one is just like vfree() but can be called in any atomic context
2602 * except NMIs.
Andrey Ryabininbf22e372016-12-12 16:44:10 -08002603 */
2604void vfree_atomic(const void *addr)
2605{
2606 BUG_ON(in_nmi());
2607
2608 kmemleak_free(addr);
2609
2610 if (!addr)
2611 return;
2612 __vfree_deferred(addr);
2613}
2614
Roman Penyaevc67dc622019-03-05 15:43:24 -08002615static void __vfree(const void *addr)
2616{
2617 if (unlikely(in_interrupt()))
2618 __vfree_deferred(addr);
2619 else
2620 __vunmap(addr, 1);
2621}
2622
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623/**
Matthew Wilcox (Oracle)fa307472020-10-17 16:15:03 -07002624 * vfree - Release memory allocated by vmalloc()
2625 * @addr: Memory base address
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 *
Matthew Wilcox (Oracle)fa307472020-10-17 16:15:03 -07002627 * Free the virtually continuous memory area starting at @addr, as obtained
2628 * from one of the vmalloc() family of APIs. This will usually also free the
2629 * physical memory underlying the virtual allocation, but that memory is
2630 * reference counted, so it will not be freed until the last user goes away.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 *
Matthew Wilcox (Oracle)fa307472020-10-17 16:15:03 -07002632 * If @addr is NULL, no operation is performed.
Andrew Mortonc9fcee52013-05-07 16:18:18 -07002633 *
Matthew Wilcox (Oracle)fa307472020-10-17 16:15:03 -07002634 * Context:
Mike Rapoport92eac162019-03-05 15:48:36 -08002635 * May sleep if called *not* from interrupt context.
Matthew Wilcox (Oracle)fa307472020-10-17 16:15:03 -07002636 * Must not be called in NMI context (strictly speaking, it could be
2637 * if we have CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG, but making the calling
2638 * conventions for vfree() arch-depenedent would be a really bad idea).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 */
Christoph Lameterb3bdda02008-02-04 22:28:32 -08002640void vfree(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641{
Al Viro32fcfd42013-03-10 20:14:08 -04002642 BUG_ON(in_nmi());
Catalin Marinas89219d32009-06-11 13:23:19 +01002643
2644 kmemleak_free(addr);
2645
Andrey Ryabinina8dda162018-10-26 15:07:07 -07002646 might_sleep_if(!in_interrupt());
2647
Al Viro32fcfd42013-03-10 20:14:08 -04002648 if (!addr)
2649 return;
Roman Penyaevc67dc622019-03-05 15:43:24 -08002650
2651 __vfree(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653EXPORT_SYMBOL(vfree);
2654
2655/**
Mike Rapoport92eac162019-03-05 15:48:36 -08002656 * vunmap - release virtual mapping obtained by vmap()
2657 * @addr: memory base address
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 *
Mike Rapoport92eac162019-03-05 15:48:36 -08002659 * Free the virtually contiguous memory area starting at @addr,
2660 * which was created from the page array passed to vmap().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 *
Mike Rapoport92eac162019-03-05 15:48:36 -08002662 * Must not be called in interrupt context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 */
Christoph Lameterb3bdda02008-02-04 22:28:32 -08002664void vunmap(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665{
2666 BUG_ON(in_interrupt());
Peter Zijlstra34754b62009-02-25 16:04:03 +01002667 might_sleep();
Al Viro32fcfd42013-03-10 20:14:08 -04002668 if (addr)
2669 __vunmap(addr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671EXPORT_SYMBOL(vunmap);
2672
2673/**
Mike Rapoport92eac162019-03-05 15:48:36 -08002674 * vmap - map an array of pages into virtually contiguous space
2675 * @pages: array of page pointers
2676 * @count: number of pages to map
2677 * @flags: vm_area->flags
2678 * @prot: page protection for the mapping
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679 *
Christoph Hellwigb944afc2020-10-17 16:15:06 -07002680 * Maps @count pages from @pages into contiguous kernel virtual space.
2681 * If @flags contains %VM_MAP_PUT_PAGES the ownership of the pages array itself
2682 * (which must be kmalloc or vmalloc memory) and one reference per pages in it
2683 * are transferred from the caller to vmap(), and will be freed / dropped when
2684 * vfree() is called on the return value.
Mike Rapoporta862f682019-03-05 15:48:42 -08002685 *
2686 * Return: the address of the area or %NULL on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 */
2688void *vmap(struct page **pages, unsigned int count,
Mike Rapoport92eac162019-03-05 15:48:36 -08002689 unsigned long flags, pgprot_t prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690{
2691 struct vm_struct *area;
Nicholas Pigginb67177e2021-04-29 22:58:53 -07002692 unsigned long addr;
Guillermo Julián Moreno65ee03c2016-06-03 14:55:33 -07002693 unsigned long size; /* In bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694
Peter Zijlstra34754b62009-02-25 16:04:03 +01002695 might_sleep();
2696
Arun KSca79b0c2018-12-28 00:34:29 -08002697 if (count > totalram_pages())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 return NULL;
2699
Guillermo Julián Moreno65ee03c2016-06-03 14:55:33 -07002700 size = (unsigned long)count << PAGE_SHIFT;
2701 area = get_vm_area_caller(size, flags, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 if (!area)
2703 return NULL;
Christoph Lameter23016962008-04-28 02:12:42 -07002704
Nicholas Pigginb67177e2021-04-29 22:58:53 -07002705 addr = (unsigned long)area->addr;
2706 if (vmap_pages_range(addr, addr + size, pgprot_nx(prot),
2707 pages, PAGE_SHIFT) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 vunmap(area->addr);
2709 return NULL;
2710 }
2711
Miaohe Linc22ee522021-01-12 15:49:18 -08002712 if (flags & VM_MAP_PUT_PAGES) {
Christoph Hellwigb944afc2020-10-17 16:15:06 -07002713 area->pages = pages;
Miaohe Linc22ee522021-01-12 15:49:18 -08002714 area->nr_pages = count;
2715 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 return area->addr;
2717}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718EXPORT_SYMBOL(vmap);
2719
Christoph Hellwig3e9a9e22020-10-17 16:15:10 -07002720#ifdef CONFIG_VMAP_PFN
2721struct vmap_pfn_data {
2722 unsigned long *pfns;
2723 pgprot_t prot;
2724 unsigned int idx;
2725};
2726
2727static int vmap_pfn_apply(pte_t *pte, unsigned long addr, void *private)
2728{
2729 struct vmap_pfn_data *data = private;
2730
2731 if (WARN_ON_ONCE(pfn_valid(data->pfns[data->idx])))
2732 return -EINVAL;
2733 *pte = pte_mkspecial(pfn_pte(data->pfns[data->idx++], data->prot));
2734 return 0;
2735}
2736
2737/**
2738 * vmap_pfn - map an array of PFNs into virtually contiguous space
2739 * @pfns: array of PFNs
2740 * @count: number of pages to map
2741 * @prot: page protection for the mapping
2742 *
2743 * Maps @count PFNs from @pfns into contiguous kernel virtual space and returns
2744 * the start address of the mapping.
2745 */
2746void *vmap_pfn(unsigned long *pfns, unsigned int count, pgprot_t prot)
2747{
2748 struct vmap_pfn_data data = { .pfns = pfns, .prot = pgprot_nx(prot) };
2749 struct vm_struct *area;
2750
2751 area = get_vm_area_caller(count * PAGE_SIZE, VM_IOREMAP,
2752 __builtin_return_address(0));
2753 if (!area)
2754 return NULL;
2755 if (apply_to_page_range(&init_mm, (unsigned long)area->addr,
2756 count * PAGE_SIZE, vmap_pfn_apply, &data)) {
2757 free_vm_area(area);
2758 return NULL;
2759 }
2760 return area->addr;
2761}
2762EXPORT_SYMBOL_GPL(vmap_pfn);
2763#endif /* CONFIG_VMAP_PFN */
2764
Adrian Bunke31d9eb2008-02-04 22:29:09 -08002765static void *__vmalloc_area_node(struct vm_struct *area, gfp_t gfp_mask,
Nicholas Piggin121e6f32021-04-29 22:58:49 -07002766 pgprot_t prot, unsigned int page_shift,
2767 int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768{
David Rientjes930f0362014-08-06 16:06:28 -07002769 const gfp_t nested_gfp = (gfp_mask & GFP_RECLAIM_MASK) | __GFP_ZERO;
Nicholas Piggin121e6f32021-04-29 22:58:49 -07002770 unsigned long addr = (unsigned long)area->addr;
2771 unsigned long size = get_vm_area_size(area);
Andrew Morton34fe6532020-12-14 19:08:43 -08002772 unsigned long array_size;
Nicholas Piggin121e6f32021-04-29 22:58:49 -07002773 unsigned int nr_small_pages = size >> PAGE_SHIFT;
2774 unsigned int page_order;
Christoph Hellwigf2559352020-10-17 16:15:43 -07002775 struct page **pages;
Nicholas Piggin121e6f32021-04-29 22:58:49 -07002776 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777
Nicholas Piggin121e6f32021-04-29 22:58:49 -07002778 array_size = (unsigned long)nr_small_pages * sizeof(struct page *);
Christoph Hellwigf2559352020-10-17 16:15:43 -07002779 gfp_mask |= __GFP_NOWARN;
2780 if (!(gfp_mask & (GFP_DMA | GFP_DMA32)))
2781 gfp_mask |= __GFP_HIGHMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 /* Please note that the recursion is strictly bounded. */
Jan Kiszka8757d5f2006-07-14 00:23:56 -07002784 if (array_size > PAGE_SIZE) {
Christoph Hellwigf2559352020-10-17 16:15:43 -07002785 pages = __vmalloc_node(array_size, 1, nested_gfp, node,
2786 area->caller);
Andrew Morton286e1ea2006-10-17 00:09:57 -07002787 } else {
Jan Beulich976d6df2009-12-14 17:58:39 -08002788 pages = kmalloc_node(array_size, nested_gfp, node);
Andrew Morton286e1ea2006-10-17 00:09:57 -07002789 }
Austin Kim7ea362422019-09-23 15:36:42 -07002790
2791 if (!pages) {
Uladzislau Rezki (Sony)8945a722020-12-14 19:08:46 -08002792 free_vm_area(area);
Nicholas Piggind70bec82021-04-29 22:59:04 -07002793 warn_alloc(gfp_mask, NULL,
2794 "vmalloc size %lu allocation failure: "
2795 "page array size %lu allocation failed",
2796 nr_small_pages * PAGE_SIZE, array_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 return NULL;
2798 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799
Austin Kim7ea362422019-09-23 15:36:42 -07002800 area->pages = pages;
Nicholas Piggin121e6f32021-04-29 22:58:49 -07002801 area->nr_pages = nr_small_pages;
2802 set_vm_area_page_order(area, page_shift - PAGE_SHIFT);
Austin Kim7ea362422019-09-23 15:36:42 -07002803
Nicholas Piggin121e6f32021-04-29 22:58:49 -07002804 page_order = vm_area_page_order(area);
2805
2806 /*
2807 * Careful, we allocate and map page_order pages, but tracking is done
2808 * per PAGE_SIZE page so as to keep the vm_struct APIs independent of
2809 * the physical/mapped size.
2810 */
2811 for (i = 0; i < area->nr_pages; i += 1U << page_order) {
Christoph Lameterbf53d6f2008-02-04 22:28:34 -08002812 struct page *page;
Nicholas Piggin121e6f32021-04-29 22:58:49 -07002813 int p;
Christoph Lameterbf53d6f2008-02-04 22:28:34 -08002814
Nicholas Piggin121e6f32021-04-29 22:58:49 -07002815 /* Compound pages required for remap_vmalloc_page */
2816 page = alloc_pages_node(node, gfp_mask | __GFP_COMP, page_order);
Christoph Lameterbf53d6f2008-02-04 22:28:34 -08002817 if (unlikely(!page)) {
Hui Su82afbc32020-10-13 16:54:48 -07002818 /* Successfully allocated i pages, free them in __vfree() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 area->nr_pages = i;
Roman Gushchin97105f02019-07-11 21:00:13 -07002820 atomic_long_add(area->nr_pages, &nr_vmalloc_pages);
Nicholas Piggind70bec82021-04-29 22:59:04 -07002821 warn_alloc(gfp_mask, NULL,
2822 "vmalloc size %lu allocation failure: "
2823 "page order %u allocation failed",
2824 area->nr_pages * PAGE_SIZE, page_order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 goto fail;
2826 }
Nicholas Piggin121e6f32021-04-29 22:58:49 -07002827
2828 for (p = 0; p < (1U << page_order); p++)
2829 area->pages[i + p] = page + p;
2830
Liu Xiangdcf61ff2019-11-30 17:54:30 -08002831 if (gfpflags_allow_blocking(gfp_mask))
Eric Dumazet660654f2014-08-06 16:06:25 -07002832 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 }
Roman Gushchin97105f02019-07-11 21:00:13 -07002834 atomic_long_add(area->nr_pages, &nr_vmalloc_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835
Nicholas Piggind70bec82021-04-29 22:59:04 -07002836 if (vmap_pages_range(addr, addr + size, prot, pages, page_shift) < 0) {
2837 warn_alloc(gfp_mask, NULL,
2838 "vmalloc size %lu allocation failure: "
2839 "failed to map pages",
2840 area->nr_pages * PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 goto fail;
Nicholas Piggind70bec82021-04-29 22:59:04 -07002842 }
Christoph Hellwiged1f3242020-06-01 21:51:19 -07002843
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 return area->addr;
2845
2846fail:
Roman Penyaevc67dc622019-03-05 15:43:24 -08002847 __vfree(area->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 return NULL;
2849}
2850
David Rientjesd0a21262011-01-13 15:46:02 -08002851/**
Mike Rapoport92eac162019-03-05 15:48:36 -08002852 * __vmalloc_node_range - allocate virtually contiguous memory
2853 * @size: allocation size
2854 * @align: desired alignment
2855 * @start: vm area range start
2856 * @end: vm area range end
2857 * @gfp_mask: flags for the page level allocator
2858 * @prot: protection mask for the allocated pages
2859 * @vm_flags: additional vm area flags (e.g. %VM_NO_GUARD)
2860 * @node: node to use for allocation or NUMA_NO_NODE
2861 * @caller: caller's return address
David Rientjesd0a21262011-01-13 15:46:02 -08002862 *
Mike Rapoport92eac162019-03-05 15:48:36 -08002863 * Allocate enough pages to cover @size from the page level
2864 * allocator with @gfp_mask flags. Map them into contiguous
2865 * kernel virtual space, using a pagetable protection of @prot.
Mike Rapoporta862f682019-03-05 15:48:42 -08002866 *
2867 * Return: the address of the area or %NULL on failure
David Rientjesd0a21262011-01-13 15:46:02 -08002868 */
2869void *__vmalloc_node_range(unsigned long size, unsigned long align,
2870 unsigned long start, unsigned long end, gfp_t gfp_mask,
Andrey Ryabinincb9e3c22015-02-13 14:40:07 -08002871 pgprot_t prot, unsigned long vm_flags, int node,
2872 const void *caller)
Christoph Lameter930fc452005-10-29 18:15:41 -07002873{
David Rientjesd0a21262011-01-13 15:46:02 -08002874 struct vm_struct *area;
2875 void *addr;
2876 unsigned long real_size = size;
Nicholas Piggin121e6f32021-04-29 22:58:49 -07002877 unsigned long real_align = align;
2878 unsigned int shift = PAGE_SHIFT;
David Rientjesd0a21262011-01-13 15:46:02 -08002879
Nicholas Piggind70bec82021-04-29 22:59:04 -07002880 if (WARN_ON_ONCE(!size))
2881 return NULL;
2882
2883 if ((size >> PAGE_SHIFT) > totalram_pages()) {
2884 warn_alloc(gfp_mask, NULL,
2885 "vmalloc size %lu allocation failure: "
2886 "exceeds total pages", real_size);
2887 return NULL;
Nicholas Piggin121e6f32021-04-29 22:58:49 -07002888 }
David Rientjesd0a21262011-01-13 15:46:02 -08002889
Nicholas Piggin121e6f32021-04-29 22:58:49 -07002890 if (vmap_allow_huge && !(vm_flags & VM_NO_HUGE_VMAP) &&
2891 arch_vmap_pmd_supported(prot)) {
2892 unsigned long size_per_node;
2893
2894 /*
2895 * Try huge pages. Only try for PAGE_KERNEL allocations,
2896 * others like modules don't yet expect huge pages in
2897 * their allocations due to apply_to_page_range not
2898 * supporting them.
2899 */
2900
2901 size_per_node = size;
2902 if (node == NUMA_NO_NODE)
2903 size_per_node /= num_online_nodes();
2904 if (size_per_node >= PMD_SIZE) {
2905 shift = PMD_SHIFT;
2906 align = max(real_align, 1UL << shift);
2907 size = ALIGN(real_size, 1UL << shift);
2908 }
2909 }
2910
2911again:
2912 size = PAGE_ALIGN(size);
2913 area = __get_vm_area_node(size, align, VM_ALLOC | VM_UNINITIALIZED |
Andrey Ryabinincb9e3c22015-02-13 14:40:07 -08002914 vm_flags, start, end, node, gfp_mask, caller);
Nicholas Piggind70bec82021-04-29 22:59:04 -07002915 if (!area) {
2916 warn_alloc(gfp_mask, NULL,
2917 "vmalloc size %lu allocation failure: "
2918 "vm_struct allocation failed", real_size);
Joe Perchesde7d2b52011-10-31 17:08:48 -07002919 goto fail;
Nicholas Piggind70bec82021-04-29 22:59:04 -07002920 }
David Rientjesd0a21262011-01-13 15:46:02 -08002921
Nicholas Piggin121e6f32021-04-29 22:58:49 -07002922 addr = __vmalloc_area_node(area, gfp_mask, prot, shift, node);
Mel Gorman1368edf2011-12-08 14:34:30 -08002923 if (!addr)
Nicholas Piggin121e6f32021-04-29 22:58:49 -07002924 goto fail;
Catalin Marinas89219d32009-06-11 13:23:19 +01002925
2926 /*
Zhang Yanfei20fc02b2013-07-08 15:59:58 -07002927 * In this function, newly allocated vm_struct has VM_UNINITIALIZED
2928 * flag. It means that vm_struct is not fully initialized.
Joonsoo Kim4341fa42013-04-29 15:07:39 -07002929 * Now, it is fully initialized, so remove this flag here.
Mitsuo Hayasakaf5252e02011-10-31 17:08:13 -07002930 */
Zhang Yanfei20fc02b2013-07-08 15:59:58 -07002931 clear_vm_uninitialized_flag(area);
Mitsuo Hayasakaf5252e02011-10-31 17:08:13 -07002932
Catalin Marinas94f4a162017-07-06 15:40:22 -07002933 kmemleak_vmalloc(area, size, gfp_mask);
Catalin Marinas89219d32009-06-11 13:23:19 +01002934
2935 return addr;
Joe Perchesde7d2b52011-10-31 17:08:48 -07002936
2937fail:
Nicholas Piggin121e6f32021-04-29 22:58:49 -07002938 if (shift > PAGE_SHIFT) {
2939 shift = PAGE_SHIFT;
2940 align = real_align;
2941 size = real_size;
2942 goto again;
2943 }
2944
Joe Perchesde7d2b52011-10-31 17:08:48 -07002945 return NULL;
Christoph Lameter930fc452005-10-29 18:15:41 -07002946}
2947
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948/**
Mike Rapoport92eac162019-03-05 15:48:36 -08002949 * __vmalloc_node - allocate virtually contiguous memory
2950 * @size: allocation size
2951 * @align: desired alignment
2952 * @gfp_mask: flags for the page level allocator
Mike Rapoport92eac162019-03-05 15:48:36 -08002953 * @node: node to use for allocation or NUMA_NO_NODE
2954 * @caller: caller's return address
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 *
Christoph Hellwigf38fcb92020-06-01 21:51:45 -07002956 * Allocate enough pages to cover @size from the page level allocator with
2957 * @gfp_mask flags. Map them into contiguous kernel virtual space.
Michal Hockoa7c3e902017-05-08 15:57:09 -07002958 *
Mike Rapoport92eac162019-03-05 15:48:36 -08002959 * Reclaim modifiers in @gfp_mask - __GFP_NORETRY, __GFP_RETRY_MAYFAIL
2960 * and __GFP_NOFAIL are not supported
Michal Hockoa7c3e902017-05-08 15:57:09 -07002961 *
Mike Rapoport92eac162019-03-05 15:48:36 -08002962 * Any use of gfp flags outside of GFP_KERNEL should be consulted
2963 * with mm people.
Mike Rapoporta862f682019-03-05 15:48:42 -08002964 *
2965 * Return: pointer to the allocated memory or %NULL on error
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 */
Christoph Hellwig2b905942020-06-01 21:51:53 -07002967void *__vmalloc_node(unsigned long size, unsigned long align,
Christoph Hellwigf38fcb92020-06-01 21:51:45 -07002968 gfp_t gfp_mask, int node, const void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969{
David Rientjesd0a21262011-01-13 15:46:02 -08002970 return __vmalloc_node_range(size, align, VMALLOC_START, VMALLOC_END,
Christoph Hellwigf38fcb92020-06-01 21:51:45 -07002971 gfp_mask, PAGE_KERNEL, 0, node, caller);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972}
Christoph Hellwigc3f896d2020-06-01 21:51:57 -07002973/*
2974 * This is only for performance analysis of vmalloc and stress purpose.
2975 * It is required by vmalloc test module, therefore do not use it other
2976 * than that.
2977 */
2978#ifdef CONFIG_TEST_VMALLOC_MODULE
2979EXPORT_SYMBOL_GPL(__vmalloc_node);
2980#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981
Christoph Hellwig88dca4c2020-06-01 21:51:40 -07002982void *__vmalloc(unsigned long size, gfp_t gfp_mask)
Christoph Lameter930fc452005-10-29 18:15:41 -07002983{
Christoph Hellwigf38fcb92020-06-01 21:51:45 -07002984 return __vmalloc_node(size, 1, gfp_mask, NUMA_NO_NODE,
Christoph Lameter23016962008-04-28 02:12:42 -07002985 __builtin_return_address(0));
Christoph Lameter930fc452005-10-29 18:15:41 -07002986}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987EXPORT_SYMBOL(__vmalloc);
2988
2989/**
Mike Rapoport92eac162019-03-05 15:48:36 -08002990 * vmalloc - allocate virtually contiguous memory
2991 * @size: allocation size
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 *
Mike Rapoport92eac162019-03-05 15:48:36 -08002993 * Allocate enough pages to cover @size from the page level
2994 * allocator and map them into contiguous kernel virtual space.
2995 *
2996 * For tight control over page level allocator and protection flags
2997 * use __vmalloc() instead.
Mike Rapoporta862f682019-03-05 15:48:42 -08002998 *
2999 * Return: pointer to the allocated memory or %NULL on error
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 */
3001void *vmalloc(unsigned long size)
3002{
Christoph Hellwig4d39d722020-06-01 21:51:49 -07003003 return __vmalloc_node(size, 1, GFP_KERNEL, NUMA_NO_NODE,
3004 __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006EXPORT_SYMBOL(vmalloc);
3007
Christoph Lameter930fc452005-10-29 18:15:41 -07003008/**
Mike Rapoport92eac162019-03-05 15:48:36 -08003009 * vzalloc - allocate virtually contiguous memory with zero fill
3010 * @size: allocation size
Dave Younge1ca7782010-10-26 14:22:06 -07003011 *
Mike Rapoport92eac162019-03-05 15:48:36 -08003012 * Allocate enough pages to cover @size from the page level
3013 * allocator and map them into contiguous kernel virtual space.
3014 * The memory allocated is set to zero.
3015 *
3016 * For tight control over page level allocator and protection flags
3017 * use __vmalloc() instead.
Mike Rapoporta862f682019-03-05 15:48:42 -08003018 *
3019 * Return: pointer to the allocated memory or %NULL on error
Dave Younge1ca7782010-10-26 14:22:06 -07003020 */
3021void *vzalloc(unsigned long size)
3022{
Christoph Hellwig4d39d722020-06-01 21:51:49 -07003023 return __vmalloc_node(size, 1, GFP_KERNEL | __GFP_ZERO, NUMA_NO_NODE,
3024 __builtin_return_address(0));
Dave Younge1ca7782010-10-26 14:22:06 -07003025}
3026EXPORT_SYMBOL(vzalloc);
3027
3028/**
Rolf Eike Beeread04082006-09-27 01:50:13 -07003029 * vmalloc_user - allocate zeroed virtually contiguous memory for userspace
3030 * @size: allocation size
Nick Piggin83342312006-06-23 02:03:20 -07003031 *
Rolf Eike Beeread04082006-09-27 01:50:13 -07003032 * The resulting memory area is zeroed so it can be mapped to userspace
3033 * without leaking data.
Mike Rapoporta862f682019-03-05 15:48:42 -08003034 *
3035 * Return: pointer to the allocated memory or %NULL on error
Nick Piggin83342312006-06-23 02:03:20 -07003036 */
3037void *vmalloc_user(unsigned long size)
3038{
Roman Penyaevbc84c532019-03-05 15:43:27 -08003039 return __vmalloc_node_range(size, SHMLBA, VMALLOC_START, VMALLOC_END,
3040 GFP_KERNEL | __GFP_ZERO, PAGE_KERNEL,
3041 VM_USERMAP, NUMA_NO_NODE,
3042 __builtin_return_address(0));
Nick Piggin83342312006-06-23 02:03:20 -07003043}
3044EXPORT_SYMBOL(vmalloc_user);
3045
3046/**
Mike Rapoport92eac162019-03-05 15:48:36 -08003047 * vmalloc_node - allocate memory on a specific node
3048 * @size: allocation size
3049 * @node: numa node
Christoph Lameter930fc452005-10-29 18:15:41 -07003050 *
Mike Rapoport92eac162019-03-05 15:48:36 -08003051 * Allocate enough pages to cover @size from the page level
3052 * allocator and map them into contiguous kernel virtual space.
Christoph Lameter930fc452005-10-29 18:15:41 -07003053 *
Mike Rapoport92eac162019-03-05 15:48:36 -08003054 * For tight control over page level allocator and protection flags
3055 * use __vmalloc() instead.
Mike Rapoporta862f682019-03-05 15:48:42 -08003056 *
3057 * Return: pointer to the allocated memory or %NULL on error
Christoph Lameter930fc452005-10-29 18:15:41 -07003058 */
3059void *vmalloc_node(unsigned long size, int node)
3060{
Christoph Hellwigf38fcb92020-06-01 21:51:45 -07003061 return __vmalloc_node(size, 1, GFP_KERNEL, node,
3062 __builtin_return_address(0));
Christoph Lameter930fc452005-10-29 18:15:41 -07003063}
3064EXPORT_SYMBOL(vmalloc_node);
3065
Dave Younge1ca7782010-10-26 14:22:06 -07003066/**
3067 * vzalloc_node - allocate memory on a specific node with zero fill
3068 * @size: allocation size
3069 * @node: numa node
3070 *
3071 * Allocate enough pages to cover @size from the page level
3072 * allocator and map them into contiguous kernel virtual space.
3073 * The memory allocated is set to zero.
3074 *
Mike Rapoporta862f682019-03-05 15:48:42 -08003075 * Return: pointer to the allocated memory or %NULL on error
Dave Younge1ca7782010-10-26 14:22:06 -07003076 */
3077void *vzalloc_node(unsigned long size, int node)
3078{
Christoph Hellwig4d39d722020-06-01 21:51:49 -07003079 return __vmalloc_node(size, 1, GFP_KERNEL | __GFP_ZERO, node,
3080 __builtin_return_address(0));
Dave Younge1ca7782010-10-26 14:22:06 -07003081}
3082EXPORT_SYMBOL(vzalloc_node);
3083
Andi Kleen0d08e0d2007-05-02 19:27:12 +02003084#if defined(CONFIG_64BIT) && defined(CONFIG_ZONE_DMA32)
Michal Hocko698d0832018-02-21 14:46:01 -08003085#define GFP_VMALLOC32 (GFP_DMA32 | GFP_KERNEL)
Andi Kleen0d08e0d2007-05-02 19:27:12 +02003086#elif defined(CONFIG_64BIT) && defined(CONFIG_ZONE_DMA)
Michal Hocko698d0832018-02-21 14:46:01 -08003087#define GFP_VMALLOC32 (GFP_DMA | GFP_KERNEL)
Andi Kleen0d08e0d2007-05-02 19:27:12 +02003088#else
Michal Hocko698d0832018-02-21 14:46:01 -08003089/*
3090 * 64b systems should always have either DMA or DMA32 zones. For others
3091 * GFP_DMA32 should do the right thing and use the normal zone.
3092 */
3093#define GFP_VMALLOC32 GFP_DMA32 | GFP_KERNEL
Andi Kleen0d08e0d2007-05-02 19:27:12 +02003094#endif
3095
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096/**
Mike Rapoport92eac162019-03-05 15:48:36 -08003097 * vmalloc_32 - allocate virtually contiguous memory (32bit addressable)
3098 * @size: allocation size
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 *
Mike Rapoport92eac162019-03-05 15:48:36 -08003100 * Allocate enough 32bit PA addressable pages to cover @size from the
3101 * page level allocator and map them into contiguous kernel virtual space.
Mike Rapoporta862f682019-03-05 15:48:42 -08003102 *
3103 * Return: pointer to the allocated memory or %NULL on error
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 */
3105void *vmalloc_32(unsigned long size)
3106{
Christoph Hellwigf38fcb92020-06-01 21:51:45 -07003107 return __vmalloc_node(size, 1, GFP_VMALLOC32, NUMA_NO_NODE,
3108 __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110EXPORT_SYMBOL(vmalloc_32);
3111
Nick Piggin83342312006-06-23 02:03:20 -07003112/**
Rolf Eike Beeread04082006-09-27 01:50:13 -07003113 * vmalloc_32_user - allocate zeroed virtually contiguous 32bit memory
Mike Rapoport92eac162019-03-05 15:48:36 -08003114 * @size: allocation size
Rolf Eike Beeread04082006-09-27 01:50:13 -07003115 *
3116 * The resulting memory area is 32bit addressable and zeroed so it can be
3117 * mapped to userspace without leaking data.
Mike Rapoporta862f682019-03-05 15:48:42 -08003118 *
3119 * Return: pointer to the allocated memory or %NULL on error
Nick Piggin83342312006-06-23 02:03:20 -07003120 */
3121void *vmalloc_32_user(unsigned long size)
3122{
Roman Penyaevbc84c532019-03-05 15:43:27 -08003123 return __vmalloc_node_range(size, SHMLBA, VMALLOC_START, VMALLOC_END,
3124 GFP_VMALLOC32 | __GFP_ZERO, PAGE_KERNEL,
3125 VM_USERMAP, NUMA_NO_NODE,
3126 __builtin_return_address(0));
Nick Piggin83342312006-06-23 02:03:20 -07003127}
3128EXPORT_SYMBOL(vmalloc_32_user);
3129
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07003130/*
3131 * small helper routine , copy contents to buf from addr.
3132 * If the page is not present, fill zero.
3133 */
3134
3135static int aligned_vread(char *buf, char *addr, unsigned long count)
3136{
3137 struct page *p;
3138 int copied = 0;
3139
3140 while (count) {
3141 unsigned long offset, length;
3142
Alexander Kuleshov891c49a2015-11-05 18:46:51 -08003143 offset = offset_in_page(addr);
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07003144 length = PAGE_SIZE - offset;
3145 if (length > count)
3146 length = count;
3147 p = vmalloc_to_page(addr);
3148 /*
3149 * To do safe access to this _mapped_ area, we need
3150 * lock. But adding lock here means that we need to add
3151 * overhead of vmalloc()/vfree() calles for this _debug_
3152 * interface, rarely used. Instead of that, we'll use
3153 * kmap() and get small overhead in this access function.
3154 */
3155 if (p) {
3156 /*
3157 * we can expect USER0 is not used (see vread/vwrite's
3158 * function description)
3159 */
Cong Wang9b04c5f2011-11-25 23:14:39 +08003160 void *map = kmap_atomic(p);
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07003161 memcpy(buf, map + offset, length);
Cong Wang9b04c5f2011-11-25 23:14:39 +08003162 kunmap_atomic(map);
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07003163 } else
3164 memset(buf, 0, length);
3165
3166 addr += length;
3167 buf += length;
3168 copied += length;
3169 count -= length;
3170 }
3171 return copied;
3172}
3173
3174static int aligned_vwrite(char *buf, char *addr, unsigned long count)
3175{
3176 struct page *p;
3177 int copied = 0;
3178
3179 while (count) {
3180 unsigned long offset, length;
3181
Alexander Kuleshov891c49a2015-11-05 18:46:51 -08003182 offset = offset_in_page(addr);
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07003183 length = PAGE_SIZE - offset;
3184 if (length > count)
3185 length = count;
3186 p = vmalloc_to_page(addr);
3187 /*
3188 * To do safe access to this _mapped_ area, we need
3189 * lock. But adding lock here means that we need to add
3190 * overhead of vmalloc()/vfree() calles for this _debug_
3191 * interface, rarely used. Instead of that, we'll use
3192 * kmap() and get small overhead in this access function.
3193 */
3194 if (p) {
3195 /*
3196 * we can expect USER0 is not used (see vread/vwrite's
3197 * function description)
3198 */
Cong Wang9b04c5f2011-11-25 23:14:39 +08003199 void *map = kmap_atomic(p);
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07003200 memcpy(map + offset, buf, length);
Cong Wang9b04c5f2011-11-25 23:14:39 +08003201 kunmap_atomic(map);
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07003202 }
3203 addr += length;
3204 buf += length;
3205 copied += length;
3206 count -= length;
3207 }
3208 return copied;
3209}
3210
3211/**
Mike Rapoport92eac162019-03-05 15:48:36 -08003212 * vread() - read vmalloc area in a safe way.
3213 * @buf: buffer for reading data
3214 * @addr: vm address.
3215 * @count: number of bytes to be read.
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07003216 *
Mike Rapoport92eac162019-03-05 15:48:36 -08003217 * This function checks that addr is a valid vmalloc'ed area, and
3218 * copy data from that area to a given buffer. If the given memory range
3219 * of [addr...addr+count) includes some valid address, data is copied to
3220 * proper area of @buf. If there are memory holes, they'll be zero-filled.
3221 * IOREMAP area is treated as memory hole and no copy is done.
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07003222 *
Mike Rapoport92eac162019-03-05 15:48:36 -08003223 * If [addr...addr+count) doesn't includes any intersects with alive
3224 * vm_struct area, returns 0. @buf should be kernel's buffer.
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07003225 *
Mike Rapoport92eac162019-03-05 15:48:36 -08003226 * Note: In usual ops, vread() is never necessary because the caller
3227 * should know vmalloc() area is valid and can use memcpy().
3228 * This is for routines which have to access vmalloc area without
Geert Uytterhoevend9009d62019-07-11 20:59:06 -07003229 * any information, as /dev/kmem.
Mike Rapoporta862f682019-03-05 15:48:42 -08003230 *
3231 * Return: number of bytes for which addr and buf should be increased
3232 * (same number as @count) or %0 if [addr...addr+count) doesn't
3233 * include any intersection with valid vmalloc area
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07003234 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235long vread(char *buf, char *addr, unsigned long count)
3236{
Joonsoo Kime81ce852013-04-29 15:07:32 -07003237 struct vmap_area *va;
3238 struct vm_struct *vm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 char *vaddr, *buf_start = buf;
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07003240 unsigned long buflen = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241 unsigned long n;
3242
3243 /* Don't allow overflow */
3244 if ((unsigned long) addr + count < count)
3245 count = -(unsigned long) addr;
3246
Joonsoo Kime81ce852013-04-29 15:07:32 -07003247 spin_lock(&vmap_area_lock);
Serapheim Dimitropoulosf6087882021-04-29 22:58:07 -07003248 va = __find_vmap_area((unsigned long)addr);
3249 if (!va)
3250 goto finished;
3251 list_for_each_entry_from(va, &vmap_area_list, list) {
Joonsoo Kime81ce852013-04-29 15:07:32 -07003252 if (!count)
3253 break;
3254
Pengfei Li688fcbf2019-09-23 15:36:39 -07003255 if (!va->vm)
Joonsoo Kime81ce852013-04-29 15:07:32 -07003256 continue;
3257
3258 vm = va->vm;
3259 vaddr = (char *) vm->addr;
Wanpeng Li762216a2013-09-11 14:22:42 -07003260 if (addr >= vaddr + get_vm_area_size(vm))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 continue;
3262 while (addr < vaddr) {
3263 if (count == 0)
3264 goto finished;
3265 *buf = '\0';
3266 buf++;
3267 addr++;
3268 count--;
3269 }
Wanpeng Li762216a2013-09-11 14:22:42 -07003270 n = vaddr + get_vm_area_size(vm) - addr;
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07003271 if (n > count)
3272 n = count;
Joonsoo Kime81ce852013-04-29 15:07:32 -07003273 if (!(vm->flags & VM_IOREMAP))
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07003274 aligned_vread(buf, addr, n);
3275 else /* IOREMAP area is treated as memory hole */
3276 memset(buf, 0, n);
3277 buf += n;
3278 addr += n;
3279 count -= n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 }
3281finished:
Joonsoo Kime81ce852013-04-29 15:07:32 -07003282 spin_unlock(&vmap_area_lock);
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07003283
3284 if (buf == buf_start)
3285 return 0;
3286 /* zero-fill memory holes */
3287 if (buf != buf_start + buflen)
3288 memset(buf, 0, buflen - (buf - buf_start));
3289
3290 return buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291}
3292
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07003293/**
Mike Rapoport92eac162019-03-05 15:48:36 -08003294 * vwrite() - write vmalloc area in a safe way.
3295 * @buf: buffer for source data
3296 * @addr: vm address.
3297 * @count: number of bytes to be read.
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07003298 *
Mike Rapoport92eac162019-03-05 15:48:36 -08003299 * This function checks that addr is a valid vmalloc'ed area, and
3300 * copy data from a buffer to the given addr. If specified range of
3301 * [addr...addr+count) includes some valid address, data is copied from
3302 * proper area of @buf. If there are memory holes, no copy to hole.
3303 * IOREMAP area is treated as memory hole and no copy is done.
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07003304 *
Mike Rapoport92eac162019-03-05 15:48:36 -08003305 * If [addr...addr+count) doesn't includes any intersects with alive
3306 * vm_struct area, returns 0. @buf should be kernel's buffer.
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07003307 *
Mike Rapoport92eac162019-03-05 15:48:36 -08003308 * Note: In usual ops, vwrite() is never necessary because the caller
3309 * should know vmalloc() area is valid and can use memcpy().
3310 * This is for routines which have to access vmalloc area without
Geert Uytterhoevend9009d62019-07-11 20:59:06 -07003311 * any information, as /dev/kmem.
Mike Rapoporta862f682019-03-05 15:48:42 -08003312 *
3313 * Return: number of bytes for which addr and buf should be
3314 * increased (same number as @count) or %0 if [addr...addr+count)
3315 * doesn't include any intersection with valid vmalloc area
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07003316 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317long vwrite(char *buf, char *addr, unsigned long count)
3318{
Joonsoo Kime81ce852013-04-29 15:07:32 -07003319 struct vmap_area *va;
3320 struct vm_struct *vm;
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07003321 char *vaddr;
3322 unsigned long n, buflen;
3323 int copied = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324
3325 /* Don't allow overflow */
3326 if ((unsigned long) addr + count < count)
3327 count = -(unsigned long) addr;
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07003328 buflen = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329
Joonsoo Kime81ce852013-04-29 15:07:32 -07003330 spin_lock(&vmap_area_lock);
3331 list_for_each_entry(va, &vmap_area_list, list) {
3332 if (!count)
3333 break;
3334
Pengfei Li688fcbf2019-09-23 15:36:39 -07003335 if (!va->vm)
Joonsoo Kime81ce852013-04-29 15:07:32 -07003336 continue;
3337
3338 vm = va->vm;
3339 vaddr = (char *) vm->addr;
Wanpeng Li762216a2013-09-11 14:22:42 -07003340 if (addr >= vaddr + get_vm_area_size(vm))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341 continue;
3342 while (addr < vaddr) {
3343 if (count == 0)
3344 goto finished;
3345 buf++;
3346 addr++;
3347 count--;
3348 }
Wanpeng Li762216a2013-09-11 14:22:42 -07003349 n = vaddr + get_vm_area_size(vm) - addr;
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07003350 if (n > count)
3351 n = count;
Joonsoo Kime81ce852013-04-29 15:07:32 -07003352 if (!(vm->flags & VM_IOREMAP)) {
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07003353 aligned_vwrite(buf, addr, n);
3354 copied++;
3355 }
3356 buf += n;
3357 addr += n;
3358 count -= n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359 }
3360finished:
Joonsoo Kime81ce852013-04-29 15:07:32 -07003361 spin_unlock(&vmap_area_lock);
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07003362 if (!copied)
3363 return 0;
3364 return buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365}
Nick Piggin83342312006-06-23 02:03:20 -07003366
3367/**
Mike Rapoport92eac162019-03-05 15:48:36 -08003368 * remap_vmalloc_range_partial - map vmalloc pages to userspace
3369 * @vma: vma to cover
3370 * @uaddr: target user address to start at
3371 * @kaddr: virtual address of vmalloc kernel memory
Jann Hornbdebd6a22020-04-20 18:14:11 -07003372 * @pgoff: offset from @kaddr to start at
Mike Rapoport92eac162019-03-05 15:48:36 -08003373 * @size: size of map area
HATAYAMA Daisukee69e9d4a2013-07-03 15:02:18 -07003374 *
Mike Rapoport92eac162019-03-05 15:48:36 -08003375 * Returns: 0 for success, -Exxx on failure
HATAYAMA Daisukee69e9d4a2013-07-03 15:02:18 -07003376 *
Mike Rapoport92eac162019-03-05 15:48:36 -08003377 * This function checks that @kaddr is a valid vmalloc'ed area,
3378 * and that it is big enough to cover the range starting at
3379 * @uaddr in @vma. Will return failure if that criteria isn't
3380 * met.
HATAYAMA Daisukee69e9d4a2013-07-03 15:02:18 -07003381 *
Mike Rapoport92eac162019-03-05 15:48:36 -08003382 * Similar to remap_pfn_range() (see mm/memory.c)
HATAYAMA Daisukee69e9d4a2013-07-03 15:02:18 -07003383 */
3384int remap_vmalloc_range_partial(struct vm_area_struct *vma, unsigned long uaddr,
Jann Hornbdebd6a22020-04-20 18:14:11 -07003385 void *kaddr, unsigned long pgoff,
3386 unsigned long size)
HATAYAMA Daisukee69e9d4a2013-07-03 15:02:18 -07003387{
3388 struct vm_struct *area;
Jann Hornbdebd6a22020-04-20 18:14:11 -07003389 unsigned long off;
3390 unsigned long end_index;
3391
3392 if (check_shl_overflow(pgoff, PAGE_SHIFT, &off))
3393 return -EINVAL;
HATAYAMA Daisukee69e9d4a2013-07-03 15:02:18 -07003394
3395 size = PAGE_ALIGN(size);
3396
3397 if (!PAGE_ALIGNED(uaddr) || !PAGE_ALIGNED(kaddr))
3398 return -EINVAL;
3399
3400 area = find_vm_area(kaddr);
3401 if (!area)
3402 return -EINVAL;
3403
Christoph Hellwigfe9041c2019-06-03 08:55:13 +02003404 if (!(area->flags & (VM_USERMAP | VM_DMA_COHERENT)))
HATAYAMA Daisukee69e9d4a2013-07-03 15:02:18 -07003405 return -EINVAL;
3406
Jann Hornbdebd6a22020-04-20 18:14:11 -07003407 if (check_add_overflow(size, off, &end_index) ||
3408 end_index > get_vm_area_size(area))
HATAYAMA Daisukee69e9d4a2013-07-03 15:02:18 -07003409 return -EINVAL;
Jann Hornbdebd6a22020-04-20 18:14:11 -07003410 kaddr += off;
HATAYAMA Daisukee69e9d4a2013-07-03 15:02:18 -07003411
3412 do {
3413 struct page *page = vmalloc_to_page(kaddr);
3414 int ret;
3415
3416 ret = vm_insert_page(vma, uaddr, page);
3417 if (ret)
3418 return ret;
3419
3420 uaddr += PAGE_SIZE;
3421 kaddr += PAGE_SIZE;
3422 size -= PAGE_SIZE;
3423 } while (size > 0);
3424
3425 vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
3426
3427 return 0;
3428}
HATAYAMA Daisukee69e9d4a2013-07-03 15:02:18 -07003429
3430/**
Mike Rapoport92eac162019-03-05 15:48:36 -08003431 * remap_vmalloc_range - map vmalloc pages to userspace
3432 * @vma: vma to cover (map full range of vma)
3433 * @addr: vmalloc memory
3434 * @pgoff: number of pages into addr before first page to map
Randy Dunlap76824862008-03-19 17:00:40 -07003435 *
Mike Rapoport92eac162019-03-05 15:48:36 -08003436 * Returns: 0 for success, -Exxx on failure
Nick Piggin83342312006-06-23 02:03:20 -07003437 *
Mike Rapoport92eac162019-03-05 15:48:36 -08003438 * This function checks that addr is a valid vmalloc'ed area, and
3439 * that it is big enough to cover the vma. Will return failure if
3440 * that criteria isn't met.
Nick Piggin83342312006-06-23 02:03:20 -07003441 *
Mike Rapoport92eac162019-03-05 15:48:36 -08003442 * Similar to remap_pfn_range() (see mm/memory.c)
Nick Piggin83342312006-06-23 02:03:20 -07003443 */
3444int remap_vmalloc_range(struct vm_area_struct *vma, void *addr,
3445 unsigned long pgoff)
3446{
HATAYAMA Daisukee69e9d4a2013-07-03 15:02:18 -07003447 return remap_vmalloc_range_partial(vma, vma->vm_start,
Jann Hornbdebd6a22020-04-20 18:14:11 -07003448 addr, pgoff,
HATAYAMA Daisukee69e9d4a2013-07-03 15:02:18 -07003449 vma->vm_end - vma->vm_start);
Nick Piggin83342312006-06-23 02:03:20 -07003450}
3451EXPORT_SYMBOL(remap_vmalloc_range);
3452
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07003453void free_vm_area(struct vm_struct *area)
3454{
3455 struct vm_struct *ret;
3456 ret = remove_vm_area(area->addr);
3457 BUG_ON(ret != area);
3458 kfree(area);
3459}
3460EXPORT_SYMBOL_GPL(free_vm_area);
Christoph Lametera10aa572008-04-28 02:12:40 -07003461
Tejun Heo4f8b02b2010-09-03 18:22:47 +02003462#ifdef CONFIG_SMP
Tejun Heoca23e402009-08-14 15:00:52 +09003463static struct vmap_area *node_to_va(struct rb_node *n)
3464{
Geliang Tang4583e772017-02-22 15:41:54 -08003465 return rb_entry_safe(n, struct vmap_area, rb_node);
Tejun Heoca23e402009-08-14 15:00:52 +09003466}
3467
3468/**
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003469 * pvm_find_va_enclose_addr - find the vmap_area @addr belongs to
3470 * @addr: target address
Tejun Heoca23e402009-08-14 15:00:52 +09003471 *
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003472 * Returns: vmap_area if it is found. If there is no such area
3473 * the first highest(reverse order) vmap_area is returned
3474 * i.e. va->va_start < addr && va->va_end < addr or NULL
3475 * if there are no any areas before @addr.
Tejun Heoca23e402009-08-14 15:00:52 +09003476 */
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003477static struct vmap_area *
3478pvm_find_va_enclose_addr(unsigned long addr)
Tejun Heoca23e402009-08-14 15:00:52 +09003479{
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003480 struct vmap_area *va, *tmp;
3481 struct rb_node *n;
3482
3483 n = free_vmap_area_root.rb_node;
3484 va = NULL;
Tejun Heoca23e402009-08-14 15:00:52 +09003485
3486 while (n) {
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003487 tmp = rb_entry(n, struct vmap_area, rb_node);
3488 if (tmp->va_start <= addr) {
3489 va = tmp;
3490 if (tmp->va_end >= addr)
3491 break;
3492
Tejun Heoca23e402009-08-14 15:00:52 +09003493 n = n->rb_right;
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003494 } else {
3495 n = n->rb_left;
3496 }
Tejun Heoca23e402009-08-14 15:00:52 +09003497 }
3498
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003499 return va;
Tejun Heoca23e402009-08-14 15:00:52 +09003500}
3501
3502/**
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003503 * pvm_determine_end_from_reverse - find the highest aligned address
3504 * of free block below VMALLOC_END
3505 * @va:
3506 * in - the VA we start the search(reverse order);
3507 * out - the VA with the highest aligned end address.
Alex Shi799fa852020-12-14 19:08:53 -08003508 * @align: alignment for required highest address
Tejun Heoca23e402009-08-14 15:00:52 +09003509 *
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003510 * Returns: determined end address within vmap_area
Tejun Heoca23e402009-08-14 15:00:52 +09003511 */
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003512static unsigned long
3513pvm_determine_end_from_reverse(struct vmap_area **va, unsigned long align)
Tejun Heoca23e402009-08-14 15:00:52 +09003514{
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003515 unsigned long vmalloc_end = VMALLOC_END & ~(align - 1);
Tejun Heoca23e402009-08-14 15:00:52 +09003516 unsigned long addr;
3517
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003518 if (likely(*va)) {
3519 list_for_each_entry_from_reverse((*va),
3520 &free_vmap_area_list, list) {
3521 addr = min((*va)->va_end & ~(align - 1), vmalloc_end);
3522 if ((*va)->va_start < addr)
3523 return addr;
3524 }
Tejun Heoca23e402009-08-14 15:00:52 +09003525 }
3526
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003527 return 0;
Tejun Heoca23e402009-08-14 15:00:52 +09003528}
3529
3530/**
3531 * pcpu_get_vm_areas - allocate vmalloc areas for percpu allocator
3532 * @offsets: array containing offset of each area
3533 * @sizes: array containing size of each area
3534 * @nr_vms: the number of areas to allocate
3535 * @align: alignment, all entries in @offsets and @sizes must be aligned to this
Tejun Heoca23e402009-08-14 15:00:52 +09003536 *
3537 * Returns: kmalloc'd vm_struct pointer array pointing to allocated
3538 * vm_structs on success, %NULL on failure
3539 *
3540 * Percpu allocator wants to use congruent vm areas so that it can
3541 * maintain the offsets among percpu areas. This function allocates
David Rientjesec3f64f2011-01-13 15:46:01 -08003542 * congruent vmalloc areas for it with GFP_KERNEL. These areas tend to
3543 * be scattered pretty far, distance between two areas easily going up
3544 * to gigabytes. To avoid interacting with regular vmallocs, these
3545 * areas are allocated from top.
Tejun Heoca23e402009-08-14 15:00:52 +09003546 *
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003547 * Despite its complicated look, this allocator is rather simple. It
3548 * does everything top-down and scans free blocks from the end looking
3549 * for matching base. While scanning, if any of the areas do not fit the
3550 * base address is pulled down to fit the area. Scanning is repeated till
3551 * all the areas fit and then all necessary data structures are inserted
3552 * and the result is returned.
Tejun Heoca23e402009-08-14 15:00:52 +09003553 */
3554struct vm_struct **pcpu_get_vm_areas(const unsigned long *offsets,
3555 const size_t *sizes, int nr_vms,
David Rientjesec3f64f2011-01-13 15:46:01 -08003556 size_t align)
Tejun Heoca23e402009-08-14 15:00:52 +09003557{
3558 const unsigned long vmalloc_start = ALIGN(VMALLOC_START, align);
3559 const unsigned long vmalloc_end = VMALLOC_END & ~(align - 1);
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003560 struct vmap_area **vas, *va;
Tejun Heoca23e402009-08-14 15:00:52 +09003561 struct vm_struct **vms;
3562 int area, area2, last_area, term_area;
Daniel Axtens253a4962019-12-17 20:51:49 -08003563 unsigned long base, start, size, end, last_end, orig_start, orig_end;
Tejun Heoca23e402009-08-14 15:00:52 +09003564 bool purged = false;
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003565 enum fit_type type;
Tejun Heoca23e402009-08-14 15:00:52 +09003566
Tejun Heoca23e402009-08-14 15:00:52 +09003567 /* verify parameters and allocate data structures */
Alexander Kuleshov891c49a2015-11-05 18:46:51 -08003568 BUG_ON(offset_in_page(align) || !is_power_of_2(align));
Tejun Heoca23e402009-08-14 15:00:52 +09003569 for (last_area = 0, area = 0; area < nr_vms; area++) {
3570 start = offsets[area];
3571 end = start + sizes[area];
3572
3573 /* is everything aligned properly? */
3574 BUG_ON(!IS_ALIGNED(offsets[area], align));
3575 BUG_ON(!IS_ALIGNED(sizes[area], align));
3576
3577 /* detect the area with the highest address */
3578 if (start > offsets[last_area])
3579 last_area = area;
3580
Wei Yangc568da22017-09-06 16:24:09 -07003581 for (area2 = area + 1; area2 < nr_vms; area2++) {
Tejun Heoca23e402009-08-14 15:00:52 +09003582 unsigned long start2 = offsets[area2];
3583 unsigned long end2 = start2 + sizes[area2];
3584
Wei Yangc568da22017-09-06 16:24:09 -07003585 BUG_ON(start2 < end && start < end2);
Tejun Heoca23e402009-08-14 15:00:52 +09003586 }
3587 }
3588 last_end = offsets[last_area] + sizes[last_area];
3589
3590 if (vmalloc_end - vmalloc_start < last_end) {
3591 WARN_ON(true);
3592 return NULL;
3593 }
3594
Thomas Meyer4d67d862012-05-29 15:06:21 -07003595 vms = kcalloc(nr_vms, sizeof(vms[0]), GFP_KERNEL);
3596 vas = kcalloc(nr_vms, sizeof(vas[0]), GFP_KERNEL);
Tejun Heoca23e402009-08-14 15:00:52 +09003597 if (!vas || !vms)
Kautuk Consulf1db7af2012-01-12 17:20:08 -08003598 goto err_free2;
Tejun Heoca23e402009-08-14 15:00:52 +09003599
3600 for (area = 0; area < nr_vms; area++) {
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003601 vas[area] = kmem_cache_zalloc(vmap_area_cachep, GFP_KERNEL);
David Rientjesec3f64f2011-01-13 15:46:01 -08003602 vms[area] = kzalloc(sizeof(struct vm_struct), GFP_KERNEL);
Tejun Heoca23e402009-08-14 15:00:52 +09003603 if (!vas[area] || !vms[area])
3604 goto err_free;
3605 }
3606retry:
Uladzislau Rezki (Sony)e36176b2019-11-30 17:54:47 -08003607 spin_lock(&free_vmap_area_lock);
Tejun Heoca23e402009-08-14 15:00:52 +09003608
3609 /* start scanning - we scan from the top, begin with the last area */
3610 area = term_area = last_area;
3611 start = offsets[area];
3612 end = start + sizes[area];
3613
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003614 va = pvm_find_va_enclose_addr(vmalloc_end);
3615 base = pvm_determine_end_from_reverse(&va, align) - end;
Tejun Heoca23e402009-08-14 15:00:52 +09003616
3617 while (true) {
Tejun Heoca23e402009-08-14 15:00:52 +09003618 /*
3619 * base might have underflowed, add last_end before
3620 * comparing.
3621 */
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003622 if (base + last_end < vmalloc_start + last_end)
3623 goto overflow;
Tejun Heoca23e402009-08-14 15:00:52 +09003624
3625 /*
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003626 * Fitting base has not been found.
Tejun Heoca23e402009-08-14 15:00:52 +09003627 */
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003628 if (va == NULL)
3629 goto overflow;
Tejun Heoca23e402009-08-14 15:00:52 +09003630
3631 /*
Qiujun Huangd8cc3232020-04-06 20:04:02 -07003632 * If required width exceeds current VA block, move
Kuppuswamy Sathyanarayanan5336e522019-08-13 15:37:31 -07003633 * base downwards and then recheck.
3634 */
3635 if (base + end > va->va_end) {
3636 base = pvm_determine_end_from_reverse(&va, align) - end;
3637 term_area = area;
3638 continue;
3639 }
3640
3641 /*
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003642 * If this VA does not fit, move base downwards and recheck.
Tejun Heoca23e402009-08-14 15:00:52 +09003643 */
Kuppuswamy Sathyanarayanan5336e522019-08-13 15:37:31 -07003644 if (base + start < va->va_start) {
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003645 va = node_to_va(rb_prev(&va->rb_node));
3646 base = pvm_determine_end_from_reverse(&va, align) - end;
Tejun Heoca23e402009-08-14 15:00:52 +09003647 term_area = area;
3648 continue;
3649 }
3650
3651 /*
3652 * This area fits, move on to the previous one. If
3653 * the previous one is the terminal one, we're done.
3654 */
3655 area = (area + nr_vms - 1) % nr_vms;
3656 if (area == term_area)
3657 break;
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003658
Tejun Heoca23e402009-08-14 15:00:52 +09003659 start = offsets[area];
3660 end = start + sizes[area];
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003661 va = pvm_find_va_enclose_addr(base + end);
Tejun Heoca23e402009-08-14 15:00:52 +09003662 }
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003663
Tejun Heoca23e402009-08-14 15:00:52 +09003664 /* we've found a fitting base, insert all va's */
3665 for (area = 0; area < nr_vms; area++) {
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003666 int ret;
Tejun Heoca23e402009-08-14 15:00:52 +09003667
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003668 start = base + offsets[area];
3669 size = sizes[area];
3670
3671 va = pvm_find_va_enclose_addr(start);
3672 if (WARN_ON_ONCE(va == NULL))
3673 /* It is a BUG(), but trigger recovery instead. */
3674 goto recovery;
3675
3676 type = classify_va_fit_type(va, start, size);
3677 if (WARN_ON_ONCE(type == NOTHING_FIT))
3678 /* It is a BUG(), but trigger recovery instead. */
3679 goto recovery;
3680
3681 ret = adjust_va_to_fit_type(va, start, size, type);
3682 if (unlikely(ret))
3683 goto recovery;
3684
3685 /* Allocated area. */
3686 va = vas[area];
3687 va->va_start = start;
3688 va->va_end = start + size;
Tejun Heoca23e402009-08-14 15:00:52 +09003689 }
3690
Uladzislau Rezki (Sony)e36176b2019-11-30 17:54:47 -08003691 spin_unlock(&free_vmap_area_lock);
Tejun Heoca23e402009-08-14 15:00:52 +09003692
Daniel Axtens253a4962019-12-17 20:51:49 -08003693 /* populate the kasan shadow space */
3694 for (area = 0; area < nr_vms; area++) {
3695 if (kasan_populate_vmalloc(vas[area]->va_start, sizes[area]))
3696 goto err_free_shadow;
3697
3698 kasan_unpoison_vmalloc((void *)vas[area]->va_start,
3699 sizes[area]);
3700 }
3701
Tejun Heoca23e402009-08-14 15:00:52 +09003702 /* insert all vm's */
Uladzislau Rezki (Sony)e36176b2019-11-30 17:54:47 -08003703 spin_lock(&vmap_area_lock);
3704 for (area = 0; area < nr_vms; area++) {
3705 insert_vmap_area(vas[area], &vmap_area_root, &vmap_area_list);
3706
3707 setup_vmalloc_vm_locked(vms[area], vas[area], VM_ALLOC,
Zhang Yanfei3645cb42013-07-03 15:04:48 -07003708 pcpu_get_vm_areas);
Uladzislau Rezki (Sony)e36176b2019-11-30 17:54:47 -08003709 }
3710 spin_unlock(&vmap_area_lock);
Tejun Heoca23e402009-08-14 15:00:52 +09003711
3712 kfree(vas);
3713 return vms;
3714
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003715recovery:
Uladzislau Rezki (Sony)e36176b2019-11-30 17:54:47 -08003716 /*
3717 * Remove previously allocated areas. There is no
3718 * need in removing these areas from the busy tree,
3719 * because they are inserted only on the final step
3720 * and when pcpu_get_vm_areas() is success.
3721 */
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003722 while (area--) {
Daniel Axtens253a4962019-12-17 20:51:49 -08003723 orig_start = vas[area]->va_start;
3724 orig_end = vas[area]->va_end;
Uladzislau Rezki (Sony)96e2db42020-12-14 19:08:49 -08003725 va = merge_or_add_vmap_area_augment(vas[area], &free_vmap_area_root,
3726 &free_vmap_area_list);
Uladzislau Rezki (Sony)9c801f62020-08-06 23:24:24 -07003727 if (va)
3728 kasan_release_vmalloc(orig_start, orig_end,
3729 va->va_start, va->va_end);
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003730 vas[area] = NULL;
3731 }
3732
3733overflow:
Uladzislau Rezki (Sony)e36176b2019-11-30 17:54:47 -08003734 spin_unlock(&free_vmap_area_lock);
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003735 if (!purged) {
3736 purge_vmap_area_lazy();
3737 purged = true;
3738
3739 /* Before "retry", check if we recover. */
3740 for (area = 0; area < nr_vms; area++) {
3741 if (vas[area])
3742 continue;
3743
3744 vas[area] = kmem_cache_zalloc(
3745 vmap_area_cachep, GFP_KERNEL);
3746 if (!vas[area])
3747 goto err_free;
3748 }
3749
3750 goto retry;
3751 }
3752
Tejun Heoca23e402009-08-14 15:00:52 +09003753err_free:
3754 for (area = 0; area < nr_vms; area++) {
Uladzislau Rezki (Sony)68ad4a32019-05-17 14:31:31 -07003755 if (vas[area])
3756 kmem_cache_free(vmap_area_cachep, vas[area]);
3757
Kautuk Consulf1db7af2012-01-12 17:20:08 -08003758 kfree(vms[area]);
Tejun Heoca23e402009-08-14 15:00:52 +09003759 }
Kautuk Consulf1db7af2012-01-12 17:20:08 -08003760err_free2:
Tejun Heoca23e402009-08-14 15:00:52 +09003761 kfree(vas);
3762 kfree(vms);
3763 return NULL;
Daniel Axtens253a4962019-12-17 20:51:49 -08003764
3765err_free_shadow:
3766 spin_lock(&free_vmap_area_lock);
3767 /*
3768 * We release all the vmalloc shadows, even the ones for regions that
3769 * hadn't been successfully added. This relies on kasan_release_vmalloc
3770 * being able to tolerate this case.
3771 */
3772 for (area = 0; area < nr_vms; area++) {
3773 orig_start = vas[area]->va_start;
3774 orig_end = vas[area]->va_end;
Uladzislau Rezki (Sony)96e2db42020-12-14 19:08:49 -08003775 va = merge_or_add_vmap_area_augment(vas[area], &free_vmap_area_root,
3776 &free_vmap_area_list);
Uladzislau Rezki (Sony)9c801f62020-08-06 23:24:24 -07003777 if (va)
3778 kasan_release_vmalloc(orig_start, orig_end,
3779 va->va_start, va->va_end);
Daniel Axtens253a4962019-12-17 20:51:49 -08003780 vas[area] = NULL;
3781 kfree(vms[area]);
3782 }
3783 spin_unlock(&free_vmap_area_lock);
3784 kfree(vas);
3785 kfree(vms);
3786 return NULL;
Tejun Heoca23e402009-08-14 15:00:52 +09003787}
3788
3789/**
3790 * pcpu_free_vm_areas - free vmalloc areas for percpu allocator
3791 * @vms: vm_struct pointer array returned by pcpu_get_vm_areas()
3792 * @nr_vms: the number of allocated areas
3793 *
3794 * Free vm_structs and the array allocated by pcpu_get_vm_areas().
3795 */
3796void pcpu_free_vm_areas(struct vm_struct **vms, int nr_vms)
3797{
3798 int i;
3799
3800 for (i = 0; i < nr_vms; i++)
3801 free_vm_area(vms[i]);
3802 kfree(vms);
3803}
Tejun Heo4f8b02b2010-09-03 18:22:47 +02003804#endif /* CONFIG_SMP */
Christoph Lametera10aa572008-04-28 02:12:40 -07003805
Paul E. McKenney5bb1bb32021-01-07 13:46:11 -08003806#ifdef CONFIG_PRINTK
Paul E. McKenney98f18082020-12-08 16:13:57 -08003807bool vmalloc_dump_obj(void *object)
3808{
3809 struct vm_struct *vm;
3810 void *objp = (void *)PAGE_ALIGN((unsigned long)object);
3811
3812 vm = find_vm_area(objp);
3813 if (!vm)
3814 return false;
Paul E. McKenneybd34dcd2020-12-09 15:15:27 -08003815 pr_cont(" %u-page vmalloc region starting at %#lx allocated at %pS\n",
3816 vm->nr_pages, (unsigned long)vm->addr, vm->caller);
Paul E. McKenney98f18082020-12-08 16:13:57 -08003817 return true;
3818}
Paul E. McKenney5bb1bb32021-01-07 13:46:11 -08003819#endif
Paul E. McKenney98f18082020-12-08 16:13:57 -08003820
Christoph Lametera10aa572008-04-28 02:12:40 -07003821#ifdef CONFIG_PROC_FS
3822static void *s_start(struct seq_file *m, loff_t *pos)
Uladzislau Rezki (Sony)e36176b2019-11-30 17:54:47 -08003823 __acquires(&vmap_purge_lock)
Joonsoo Kimd4033af2013-04-29 15:07:35 -07003824 __acquires(&vmap_area_lock)
Christoph Lametera10aa572008-04-28 02:12:40 -07003825{
Uladzislau Rezki (Sony)e36176b2019-11-30 17:54:47 -08003826 mutex_lock(&vmap_purge_lock);
Joonsoo Kimd4033af2013-04-29 15:07:35 -07003827 spin_lock(&vmap_area_lock);
Uladzislau Rezki (Sony)e36176b2019-11-30 17:54:47 -08003828
zijun_hu3f500062016-12-12 16:42:17 -08003829 return seq_list_start(&vmap_area_list, *pos);
Christoph Lametera10aa572008-04-28 02:12:40 -07003830}
3831
3832static void *s_next(struct seq_file *m, void *p, loff_t *pos)
3833{
zijun_hu3f500062016-12-12 16:42:17 -08003834 return seq_list_next(p, &vmap_area_list, pos);
Christoph Lametera10aa572008-04-28 02:12:40 -07003835}
3836
3837static void s_stop(struct seq_file *m, void *p)
Joonsoo Kimd4033af2013-04-29 15:07:35 -07003838 __releases(&vmap_area_lock)
Waiman Long0a7dd4e2020-12-14 19:08:59 -08003839 __releases(&vmap_purge_lock)
Christoph Lametera10aa572008-04-28 02:12:40 -07003840{
Joonsoo Kimd4033af2013-04-29 15:07:35 -07003841 spin_unlock(&vmap_area_lock);
Waiman Long0a7dd4e2020-12-14 19:08:59 -08003842 mutex_unlock(&vmap_purge_lock);
Christoph Lametera10aa572008-04-28 02:12:40 -07003843}
3844
Eric Dumazeta47a1262008-07-23 21:27:38 -07003845static void show_numa_info(struct seq_file *m, struct vm_struct *v)
3846{
Kirill A. Shutemove5adfff2012-12-11 16:00:29 -08003847 if (IS_ENABLED(CONFIG_NUMA)) {
Eric Dumazeta47a1262008-07-23 21:27:38 -07003848 unsigned int nr, *counters = m->private;
3849
3850 if (!counters)
3851 return;
3852
Wanpeng Liaf123462013-11-12 15:07:32 -08003853 if (v->flags & VM_UNINITIALIZED)
3854 return;
Dmitry Vyukov7e5b5282014-12-12 16:56:30 -08003855 /* Pair with smp_wmb() in clear_vm_uninitialized_flag() */
3856 smp_rmb();
Wanpeng Liaf123462013-11-12 15:07:32 -08003857
Eric Dumazeta47a1262008-07-23 21:27:38 -07003858 memset(counters, 0, nr_node_ids * sizeof(unsigned int));
3859
3860 for (nr = 0; nr < v->nr_pages; nr++)
3861 counters[page_to_nid(v->pages[nr])]++;
3862
3863 for_each_node_state(nr, N_HIGH_MEMORY)
3864 if (counters[nr])
3865 seq_printf(m, " N%u=%u", nr, counters[nr]);
3866 }
3867}
3868
Uladzislau Rezki (Sony)dd3b8352019-09-23 15:36:36 -07003869static void show_purge_info(struct seq_file *m)
3870{
Uladzislau Rezki (Sony)dd3b8352019-09-23 15:36:36 -07003871 struct vmap_area *va;
3872
Uladzislau Rezki (Sony)96e2db42020-12-14 19:08:49 -08003873 spin_lock(&purge_vmap_area_lock);
3874 list_for_each_entry(va, &purge_vmap_area_list, list) {
Uladzislau Rezki (Sony)dd3b8352019-09-23 15:36:36 -07003875 seq_printf(m, "0x%pK-0x%pK %7ld unpurged vm_area\n",
3876 (void *)va->va_start, (void *)va->va_end,
3877 va->va_end - va->va_start);
3878 }
Uladzislau Rezki (Sony)96e2db42020-12-14 19:08:49 -08003879 spin_unlock(&purge_vmap_area_lock);
Uladzislau Rezki (Sony)dd3b8352019-09-23 15:36:36 -07003880}
3881
Christoph Lametera10aa572008-04-28 02:12:40 -07003882static int s_show(struct seq_file *m, void *p)
3883{
zijun_hu3f500062016-12-12 16:42:17 -08003884 struct vmap_area *va;
Joonsoo Kimd4033af2013-04-29 15:07:35 -07003885 struct vm_struct *v;
3886
zijun_hu3f500062016-12-12 16:42:17 -08003887 va = list_entry(p, struct vmap_area, list);
3888
Wanpeng Lic2ce8c12013-11-12 15:07:31 -08003889 /*
Pengfei Li688fcbf2019-09-23 15:36:39 -07003890 * s_show can encounter race with remove_vm_area, !vm on behalf
3891 * of vmap area is being tear down or vm_map_ram allocation.
Wanpeng Lic2ce8c12013-11-12 15:07:31 -08003892 */
Pengfei Li688fcbf2019-09-23 15:36:39 -07003893 if (!va->vm) {
Uladzislau Rezki (Sony)dd3b8352019-09-23 15:36:36 -07003894 seq_printf(m, "0x%pK-0x%pK %7ld vm_map_ram\n",
Yisheng Xie78c72742017-07-10 15:48:09 -07003895 (void *)va->va_start, (void *)va->va_end,
Uladzislau Rezki (Sony)dd3b8352019-09-23 15:36:36 -07003896 va->va_end - va->va_start);
Yisheng Xie78c72742017-07-10 15:48:09 -07003897
Joonsoo Kimd4033af2013-04-29 15:07:35 -07003898 return 0;
Yisheng Xie78c72742017-07-10 15:48:09 -07003899 }
Joonsoo Kimd4033af2013-04-29 15:07:35 -07003900
Joonsoo Kimd4033af2013-04-29 15:07:35 -07003901 v = va->vm;
Christoph Lametera10aa572008-04-28 02:12:40 -07003902
Kees Cook45ec1692012-10-08 16:34:09 -07003903 seq_printf(m, "0x%pK-0x%pK %7ld",
Christoph Lametera10aa572008-04-28 02:12:40 -07003904 v->addr, v->addr + v->size, v->size);
3905
Joe Perches62c70bc2011-01-13 15:45:52 -08003906 if (v->caller)
3907 seq_printf(m, " %pS", v->caller);
Christoph Lameter23016962008-04-28 02:12:42 -07003908
Christoph Lametera10aa572008-04-28 02:12:40 -07003909 if (v->nr_pages)
3910 seq_printf(m, " pages=%d", v->nr_pages);
3911
3912 if (v->phys_addr)
Miles Chen199eaa02017-02-24 14:59:51 -08003913 seq_printf(m, " phys=%pa", &v->phys_addr);
Christoph Lametera10aa572008-04-28 02:12:40 -07003914
3915 if (v->flags & VM_IOREMAP)
Fabian Frederickf4527c92014-06-04 16:08:09 -07003916 seq_puts(m, " ioremap");
Christoph Lametera10aa572008-04-28 02:12:40 -07003917
3918 if (v->flags & VM_ALLOC)
Fabian Frederickf4527c92014-06-04 16:08:09 -07003919 seq_puts(m, " vmalloc");
Christoph Lametera10aa572008-04-28 02:12:40 -07003920
3921 if (v->flags & VM_MAP)
Fabian Frederickf4527c92014-06-04 16:08:09 -07003922 seq_puts(m, " vmap");
Christoph Lametera10aa572008-04-28 02:12:40 -07003923
3924 if (v->flags & VM_USERMAP)
Fabian Frederickf4527c92014-06-04 16:08:09 -07003925 seq_puts(m, " user");
Christoph Lametera10aa572008-04-28 02:12:40 -07003926
Christoph Hellwigfe9041c2019-06-03 08:55:13 +02003927 if (v->flags & VM_DMA_COHERENT)
3928 seq_puts(m, " dma-coherent");
3929
David Rientjes244d63e2016-01-14 15:19:35 -08003930 if (is_vmalloc_addr(v->pages))
Fabian Frederickf4527c92014-06-04 16:08:09 -07003931 seq_puts(m, " vpages");
Christoph Lametera10aa572008-04-28 02:12:40 -07003932
Eric Dumazeta47a1262008-07-23 21:27:38 -07003933 show_numa_info(m, v);
Christoph Lametera10aa572008-04-28 02:12:40 -07003934 seq_putc(m, '\n');
Uladzislau Rezki (Sony)dd3b8352019-09-23 15:36:36 -07003935
3936 /*
Uladzislau Rezki (Sony)96e2db42020-12-14 19:08:49 -08003937 * As a final step, dump "unpurged" areas.
Uladzislau Rezki (Sony)dd3b8352019-09-23 15:36:36 -07003938 */
3939 if (list_is_last(&va->list, &vmap_area_list))
3940 show_purge_info(m);
3941
Christoph Lametera10aa572008-04-28 02:12:40 -07003942 return 0;
3943}
3944
Alexey Dobriyan5f6a6a92008-10-06 03:50:47 +04003945static const struct seq_operations vmalloc_op = {
Christoph Lametera10aa572008-04-28 02:12:40 -07003946 .start = s_start,
3947 .next = s_next,
3948 .stop = s_stop,
3949 .show = s_show,
3950};
Alexey Dobriyan5f6a6a92008-10-06 03:50:47 +04003951
Alexey Dobriyan5f6a6a92008-10-06 03:50:47 +04003952static int __init proc_vmalloc_init(void)
3953{
Christoph Hellwigfddda2b2018-04-13 19:44:18 +02003954 if (IS_ENABLED(CONFIG_NUMA))
Joe Perches0825a6f2018-06-14 15:27:58 -07003955 proc_create_seq_private("vmallocinfo", 0400, NULL,
Christoph Hellwig44414d82018-04-24 17:05:17 +02003956 &vmalloc_op,
3957 nr_node_ids * sizeof(unsigned int), NULL);
Christoph Hellwigfddda2b2018-04-13 19:44:18 +02003958 else
Joe Perches0825a6f2018-06-14 15:27:58 -07003959 proc_create_seq("vmallocinfo", 0400, NULL, &vmalloc_op);
Alexey Dobriyan5f6a6a92008-10-06 03:50:47 +04003960 return 0;
3961}
3962module_init(proc_vmalloc_init);
Joonsoo Kimdb3808c2013-04-29 15:07:28 -07003963
Christoph Lametera10aa572008-04-28 02:12:40 -07003964#endif