blob: 1817871b02395ceccecdfa918dce4a97d5203786 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/mm/vmalloc.c
3 *
4 * Copyright (C) 1993 Linus Torvalds
5 * Support of BIGMEM added by Gerhard Wichert, Siemens AG, July 1999
6 * SMP-safe vmalloc/vfree/ioremap, Tigran Aivazian <tigran@veritas.com>, May 2000
7 * Major rework to support vmap/vunmap, Christoph Hellwig, SGI, August 2002
Christoph Lameter930fc452005-10-29 18:15:41 -07008 * Numa awareness, Christoph Lameter, SGI, June 2005
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>
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070021#include <linux/debugobjects.h>
Christoph Lameter23016962008-04-28 02:12:42 -070022#include <linux/kallsyms.h>
Nick Piggindb64fe02008-10-18 20:27:03 -070023#include <linux/list.h>
Chris Wilson4da56b92016-04-04 14:46:42 +010024#include <linux/notifier.h>
Nick Piggindb64fe02008-10-18 20:27:03 -070025#include <linux/rbtree.h>
26#include <linux/radix-tree.h>
27#include <linux/rcupdate.h>
Tejun Heof0aa6612009-02-20 16:29:08 +090028#include <linux/pfn.h>
Catalin Marinas89219d32009-06-11 13:23:19 +010029#include <linux/kmemleak.h>
Arun Sharma600634972011-07-26 16:09:06 -070030#include <linux/atomic.h>
Gideon Israel Dsouza3b321232014-04-07 15:37:26 -070031#include <linux/compiler.h>
Al Viro32fcfd42013-03-10 20:14:08 -040032#include <linux/llist.h>
Toshi Kani0f616be2015-04-14 15:47:17 -070033#include <linux/bitops.h>
Jann Hornd8da38e2020-04-20 18:14:11 -070034#include <linux/overflow.h>
Gideon Israel Dsouza3b321232014-04-07 15:37:26 -070035
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080036#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/tlbflush.h>
David Miller2dca6992009-09-21 12:22:34 -070038#include <asm/shmparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Mel Gormandd56b042015-11-06 16:28:43 -080040#include "internal.h"
41
Al Viro32fcfd42013-03-10 20:14:08 -040042struct vfree_deferred {
43 struct llist_head list;
44 struct work_struct wq;
45};
46static DEFINE_PER_CPU(struct vfree_deferred, vfree_deferred);
47
48static void __vunmap(const void *, int);
49
50static void free_work(struct work_struct *w)
51{
52 struct vfree_deferred *p = container_of(w, struct vfree_deferred, wq);
Byungchul Park894e58c2017-09-06 16:24:26 -070053 struct llist_node *t, *llnode;
54
55 llist_for_each_safe(llnode, t, llist_del_all(&p->list))
56 __vunmap((void *)llnode, 1);
Al Viro32fcfd42013-03-10 20:14:08 -040057}
58
Nick Piggindb64fe02008-10-18 20:27:03 -070059/*** Page table manipulation functions ***/
Adrian Bunkb2213852006-09-25 23:31:02 -070060
Linus Torvalds1da177e2005-04-16 15:20:36 -070061static void vunmap_pte_range(pmd_t *pmd, unsigned long addr, unsigned long end)
62{
63 pte_t *pte;
64
65 pte = pte_offset_kernel(pmd, addr);
66 do {
67 pte_t ptent = ptep_get_and_clear(&init_mm, addr, pte);
68 WARN_ON(!pte_none(ptent) && !pte_present(ptent));
69 } while (pte++, addr += PAGE_SIZE, addr != end);
70}
71
Nick Piggindb64fe02008-10-18 20:27:03 -070072static void vunmap_pmd_range(pud_t *pud, unsigned long addr, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
74 pmd_t *pmd;
75 unsigned long next;
76
77 pmd = pmd_offset(pud, addr);
78 do {
79 next = pmd_addr_end(addr, end);
Toshi Kanib9820d82015-04-14 15:47:26 -070080 if (pmd_clear_huge(pmd))
81 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 if (pmd_none_or_clear_bad(pmd))
83 continue;
84 vunmap_pte_range(pmd, addr, next);
85 } while (pmd++, addr = next, addr != end);
86}
87
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +030088static void vunmap_pud_range(p4d_t *p4d, unsigned long addr, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
90 pud_t *pud;
91 unsigned long next;
92
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +030093 pud = pud_offset(p4d, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 do {
95 next = pud_addr_end(addr, end);
Toshi Kanib9820d82015-04-14 15:47:26 -070096 if (pud_clear_huge(pud))
97 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 if (pud_none_or_clear_bad(pud))
99 continue;
100 vunmap_pmd_range(pud, addr, next);
101 } while (pud++, addr = next, addr != end);
102}
103
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300104static void vunmap_p4d_range(pgd_t *pgd, unsigned long addr, unsigned long end)
105{
106 p4d_t *p4d;
107 unsigned long next;
108
109 p4d = p4d_offset(pgd, addr);
110 do {
111 next = p4d_addr_end(addr, end);
112 if (p4d_clear_huge(p4d))
113 continue;
114 if (p4d_none_or_clear_bad(p4d))
115 continue;
116 vunmap_pud_range(p4d, addr, next);
117 } while (p4d++, addr = next, addr != end);
118}
119
Nick Piggindb64fe02008-10-18 20:27:03 -0700120static void vunmap_page_range(unsigned long addr, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
122 pgd_t *pgd;
123 unsigned long next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 BUG_ON(addr >= end);
126 pgd = pgd_offset_k(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 do {
128 next = pgd_addr_end(addr, end);
129 if (pgd_none_or_clear_bad(pgd))
130 continue;
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300131 vunmap_p4d_range(pgd, addr, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 } while (pgd++, addr = next, addr != end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133}
134
135static int vmap_pte_range(pmd_t *pmd, unsigned long addr,
Nick Piggindb64fe02008-10-18 20:27:03 -0700136 unsigned long end, pgprot_t prot, struct page **pages, int *nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
138 pte_t *pte;
139
Nick Piggindb64fe02008-10-18 20:27:03 -0700140 /*
141 * nr is a running index into the array which helps higher level
142 * callers keep track of where we're up to.
143 */
144
Hugh Dickins872fec12005-10-29 18:16:21 -0700145 pte = pte_alloc_kernel(pmd, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 if (!pte)
147 return -ENOMEM;
148 do {
Nick Piggindb64fe02008-10-18 20:27:03 -0700149 struct page *page = pages[*nr];
150
151 if (WARN_ON(!pte_none(*pte)))
152 return -EBUSY;
153 if (WARN_ON(!page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 return -ENOMEM;
155 set_pte_at(&init_mm, addr, pte, mk_pte(page, prot));
Nick Piggindb64fe02008-10-18 20:27:03 -0700156 (*nr)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 } while (pte++, addr += PAGE_SIZE, addr != end);
158 return 0;
159}
160
Nick Piggindb64fe02008-10-18 20:27:03 -0700161static int vmap_pmd_range(pud_t *pud, unsigned long addr,
162 unsigned long end, pgprot_t prot, struct page **pages, int *nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
164 pmd_t *pmd;
165 unsigned long next;
166
167 pmd = pmd_alloc(&init_mm, pud, addr);
168 if (!pmd)
169 return -ENOMEM;
170 do {
171 next = pmd_addr_end(addr, end);
Nick Piggindb64fe02008-10-18 20:27:03 -0700172 if (vmap_pte_range(pmd, addr, next, prot, pages, nr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 return -ENOMEM;
174 } while (pmd++, addr = next, addr != end);
175 return 0;
176}
177
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300178static int vmap_pud_range(p4d_t *p4d, unsigned long addr,
Nick Piggindb64fe02008-10-18 20:27:03 -0700179 unsigned long end, pgprot_t prot, struct page **pages, int *nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
181 pud_t *pud;
182 unsigned long next;
183
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300184 pud = pud_alloc(&init_mm, p4d, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 if (!pud)
186 return -ENOMEM;
187 do {
188 next = pud_addr_end(addr, end);
Nick Piggindb64fe02008-10-18 20:27:03 -0700189 if (vmap_pmd_range(pud, addr, next, prot, pages, nr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 return -ENOMEM;
191 } while (pud++, addr = next, addr != end);
192 return 0;
193}
194
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300195static int vmap_p4d_range(pgd_t *pgd, unsigned long addr,
196 unsigned long end, pgprot_t prot, struct page **pages, int *nr)
197{
198 p4d_t *p4d;
199 unsigned long next;
200
201 p4d = p4d_alloc(&init_mm, pgd, addr);
202 if (!p4d)
203 return -ENOMEM;
204 do {
205 next = p4d_addr_end(addr, end);
206 if (vmap_pud_range(p4d, addr, next, prot, pages, nr))
207 return -ENOMEM;
208 } while (p4d++, addr = next, addr != end);
209 return 0;
210}
211
Nick Piggindb64fe02008-10-18 20:27:03 -0700212/*
213 * Set up page tables in kva (addr, end). The ptes shall have prot "prot", and
214 * will have pfns corresponding to the "pages" array.
215 *
216 * Ie. pte at addr+N*PAGE_SIZE shall point to pfn corresponding to pages[N]
217 */
Tejun Heo8fc48982009-02-20 16:29:08 +0900218static int vmap_page_range_noflush(unsigned long start, unsigned long end,
219 pgprot_t prot, struct page **pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
221 pgd_t *pgd;
222 unsigned long next;
Adam Lackorzynski2e4e27c2009-01-04 12:00:46 -0800223 unsigned long addr = start;
Nick Piggindb64fe02008-10-18 20:27:03 -0700224 int err = 0;
225 int nr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 BUG_ON(addr >= end);
228 pgd = pgd_offset_k(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 do {
230 next = pgd_addr_end(addr, end);
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300231 err = vmap_p4d_range(pgd, addr, next, prot, pages, &nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 if (err)
Figo.zhangbf88c8c2009-09-21 17:01:47 -0700233 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 } while (pgd++, addr = next, addr != end);
Nick Piggindb64fe02008-10-18 20:27:03 -0700235
Nick Piggindb64fe02008-10-18 20:27:03 -0700236 return nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237}
238
Tejun Heo8fc48982009-02-20 16:29:08 +0900239static int vmap_page_range(unsigned long start, unsigned long end,
240 pgprot_t prot, struct page **pages)
241{
242 int ret;
243
244 ret = vmap_page_range_noflush(start, end, prot, pages);
245 flush_cache_vmap(start, end);
246 return ret;
247}
248
KAMEZAWA Hiroyuki81ac3ad2009-09-22 16:45:49 -0700249int is_vmalloc_or_module_addr(const void *x)
Linus Torvalds73bdf0a2008-10-15 08:35:12 -0700250{
251 /*
Russell Kingab4f2ee2008-11-06 17:11:07 +0000252 * ARM, x86-64 and sparc64 put modules in a special place,
Linus Torvalds73bdf0a2008-10-15 08:35:12 -0700253 * and fall back on vmalloc() if that fails. Others
254 * just put it in the vmalloc space.
255 */
256#if defined(CONFIG_MODULES) && defined(MODULES_VADDR)
257 unsigned long addr = (unsigned long)x;
258 if (addr >= MODULES_VADDR && addr < MODULES_END)
259 return 1;
260#endif
261 return is_vmalloc_addr(x);
262}
263
Christoph Lameter48667e72008-02-04 22:28:31 -0800264/*
malcadd688f2014-01-27 17:06:53 -0800265 * Walk a vmap address to the struct page it maps.
Christoph Lameter48667e72008-02-04 22:28:31 -0800266 */
malcadd688f2014-01-27 17:06:53 -0800267struct page *vmalloc_to_page(const void *vmalloc_addr)
Christoph Lameter48667e72008-02-04 22:28:31 -0800268{
269 unsigned long addr = (unsigned long) vmalloc_addr;
malcadd688f2014-01-27 17:06:53 -0800270 struct page *page = NULL;
Christoph Lameter48667e72008-02-04 22:28:31 -0800271 pgd_t *pgd = pgd_offset_k(addr);
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300272 p4d_t *p4d;
273 pud_t *pud;
274 pmd_t *pmd;
275 pte_t *ptep, pte;
Christoph Lameter48667e72008-02-04 22:28:31 -0800276
Ingo Molnar7aa413d2008-06-19 13:28:11 +0200277 /*
278 * XXX we might need to change this if we add VIRTUAL_BUG_ON for
279 * architectures that do not vmalloc module space
280 */
Linus Torvalds73bdf0a2008-10-15 08:35:12 -0700281 VIRTUAL_BUG_ON(!is_vmalloc_or_module_addr(vmalloc_addr));
Jiri Slaby59ea7462008-06-12 13:56:40 +0200282
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300283 if (pgd_none(*pgd))
284 return NULL;
285 p4d = p4d_offset(pgd, addr);
286 if (p4d_none(*p4d))
287 return NULL;
288 pud = pud_offset(p4d, addr);
Ard Biesheuvel029c54b2017-06-23 15:08:41 -0700289
290 /*
291 * Don't dereference bad PUD or PMD (below) entries. This will also
292 * identify huge mappings, which we may encounter on architectures
293 * that define CONFIG_HAVE_ARCH_HUGE_VMAP=y. Such regions will be
294 * identified as vmalloc addresses by is_vmalloc_addr(), but are
295 * not [unambiguously] associated with a struct page, so there is
296 * no correct value to return for them.
297 */
298 WARN_ON_ONCE(pud_bad(*pud));
299 if (pud_none(*pud) || pud_bad(*pud))
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300300 return NULL;
301 pmd = pmd_offset(pud, addr);
Ard Biesheuvel029c54b2017-06-23 15:08:41 -0700302 WARN_ON_ONCE(pmd_bad(*pmd));
303 if (pmd_none(*pmd) || pmd_bad(*pmd))
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300304 return NULL;
Nick Piggindb64fe02008-10-18 20:27:03 -0700305
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300306 ptep = pte_offset_map(pmd, addr);
307 pte = *ptep;
308 if (pte_present(pte))
309 page = pte_page(pte);
310 pte_unmap(ptep);
malcadd688f2014-01-27 17:06:53 -0800311 return page;
Jianyu Zhanece86e222014-01-21 15:49:12 -0800312}
313EXPORT_SYMBOL(vmalloc_to_page);
314
malcadd688f2014-01-27 17:06:53 -0800315/*
316 * Map a vmalloc()-space virtual address to the physical page frame number.
317 */
318unsigned long vmalloc_to_pfn(const void *vmalloc_addr)
319{
320 return page_to_pfn(vmalloc_to_page(vmalloc_addr));
321}
322EXPORT_SYMBOL(vmalloc_to_pfn);
323
Nick Piggindb64fe02008-10-18 20:27:03 -0700324
325/*** Global kva allocator ***/
326
Yisheng Xie78c72742017-07-10 15:48:09 -0700327#define VM_LAZY_FREE 0x02
Nick Piggindb64fe02008-10-18 20:27:03 -0700328#define VM_VM_AREA 0x04
329
Nick Piggindb64fe02008-10-18 20:27:03 -0700330static DEFINE_SPINLOCK(vmap_area_lock);
Joonsoo Kimf1c40692013-04-29 15:07:37 -0700331/* Export for kexec only */
332LIST_HEAD(vmap_area_list);
Chris Wilson80c4bd72016-05-20 16:57:38 -0700333static LLIST_HEAD(vmap_purge_list);
Nick Piggin89699602011-03-22 16:30:36 -0700334static struct rb_root vmap_area_root = RB_ROOT;
335
336/* The vmap cache globals are protected by vmap_area_lock */
337static struct rb_node *free_vmap_cache;
338static unsigned long cached_hole_size;
339static unsigned long cached_vstart;
340static unsigned long cached_align;
341
Tejun Heoca23e402009-08-14 15:00:52 +0900342static unsigned long vmap_area_pcpu_hole;
Nick Piggindb64fe02008-10-18 20:27:03 -0700343
344static struct vmap_area *__find_vmap_area(unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Nick Piggindb64fe02008-10-18 20:27:03 -0700346 struct rb_node *n = vmap_area_root.rb_node;
347
348 while (n) {
349 struct vmap_area *va;
350
351 va = rb_entry(n, struct vmap_area, rb_node);
352 if (addr < va->va_start)
353 n = n->rb_left;
HATAYAMA Daisukecef2ac32013-07-03 15:02:17 -0700354 else if (addr >= va->va_end)
Nick Piggindb64fe02008-10-18 20:27:03 -0700355 n = n->rb_right;
356 else
357 return va;
358 }
359
360 return NULL;
361}
362
363static void __insert_vmap_area(struct vmap_area *va)
364{
365 struct rb_node **p = &vmap_area_root.rb_node;
366 struct rb_node *parent = NULL;
367 struct rb_node *tmp;
368
369 while (*p) {
Namhyung Kim170168d2010-10-26 14:22:02 -0700370 struct vmap_area *tmp_va;
Nick Piggindb64fe02008-10-18 20:27:03 -0700371
372 parent = *p;
Namhyung Kim170168d2010-10-26 14:22:02 -0700373 tmp_va = rb_entry(parent, struct vmap_area, rb_node);
374 if (va->va_start < tmp_va->va_end)
Nick Piggindb64fe02008-10-18 20:27:03 -0700375 p = &(*p)->rb_left;
Namhyung Kim170168d2010-10-26 14:22:02 -0700376 else if (va->va_end > tmp_va->va_start)
Nick Piggindb64fe02008-10-18 20:27:03 -0700377 p = &(*p)->rb_right;
378 else
379 BUG();
380 }
381
382 rb_link_node(&va->rb_node, parent, p);
383 rb_insert_color(&va->rb_node, &vmap_area_root);
384
Joonsoo Kim4341fa42013-04-29 15:07:39 -0700385 /* address-sort this list */
Nick Piggindb64fe02008-10-18 20:27:03 -0700386 tmp = rb_prev(&va->rb_node);
387 if (tmp) {
388 struct vmap_area *prev;
389 prev = rb_entry(tmp, struct vmap_area, rb_node);
390 list_add_rcu(&va->list, &prev->list);
391 } else
392 list_add_rcu(&va->list, &vmap_area_list);
393}
394
395static void purge_vmap_area_lazy(void);
396
Chris Wilson4da56b92016-04-04 14:46:42 +0100397static BLOCKING_NOTIFIER_HEAD(vmap_notify_list);
398
Nick Piggindb64fe02008-10-18 20:27:03 -0700399/*
400 * Allocate a region of KVA of the specified size and alignment, within the
401 * vstart and vend.
402 */
403static struct vmap_area *alloc_vmap_area(unsigned long size,
404 unsigned long align,
405 unsigned long vstart, unsigned long vend,
406 int node, gfp_t gfp_mask)
407{
408 struct vmap_area *va;
409 struct rb_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 unsigned long addr;
Nick Piggindb64fe02008-10-18 20:27:03 -0700411 int purged = 0;
Nick Piggin89699602011-03-22 16:30:36 -0700412 struct vmap_area *first;
Nick Piggindb64fe02008-10-18 20:27:03 -0700413
Nick Piggin77669702009-02-27 14:03:03 -0800414 BUG_ON(!size);
Alexander Kuleshov891c49a2015-11-05 18:46:51 -0800415 BUG_ON(offset_in_page(size));
Nick Piggin89699602011-03-22 16:30:36 -0700416 BUG_ON(!is_power_of_2(align));
Nick Piggindb64fe02008-10-18 20:27:03 -0700417
Christoph Hellwig5803ed22016-12-12 16:44:20 -0800418 might_sleep();
Chris Wilson4da56b92016-04-04 14:46:42 +0100419
Nick Piggindb64fe02008-10-18 20:27:03 -0700420 va = kmalloc_node(sizeof(struct vmap_area),
421 gfp_mask & GFP_RECLAIM_MASK, node);
422 if (unlikely(!va))
423 return ERR_PTR(-ENOMEM);
424
Catalin Marinas7f88f882013-11-12 15:07:45 -0800425 /*
426 * Only scan the relevant parts containing pointers to other objects
427 * to avoid false negatives.
428 */
429 kmemleak_scan_area(&va->rb_node, SIZE_MAX, gfp_mask & GFP_RECLAIM_MASK);
430
Nick Piggindb64fe02008-10-18 20:27:03 -0700431retry:
432 spin_lock(&vmap_area_lock);
Nick Piggin89699602011-03-22 16:30:36 -0700433 /*
434 * Invalidate cache if we have more permissive parameters.
435 * cached_hole_size notes the largest hole noticed _below_
436 * the vmap_area cached in free_vmap_cache: if size fits
437 * into that hole, we want to scan from vstart to reuse
438 * the hole instead of allocating above free_vmap_cache.
439 * Note that __free_vmap_area may update free_vmap_cache
440 * without updating cached_hole_size or cached_align.
441 */
442 if (!free_vmap_cache ||
443 size < cached_hole_size ||
444 vstart < cached_vstart ||
445 align < cached_align) {
446nocache:
447 cached_hole_size = 0;
448 free_vmap_cache = NULL;
449 }
450 /* record if we encounter less permissive parameters */
451 cached_vstart = vstart;
452 cached_align = align;
Nick Piggin77669702009-02-27 14:03:03 -0800453
Nick Piggin89699602011-03-22 16:30:36 -0700454 /* find starting point for our search */
455 if (free_vmap_cache) {
456 first = rb_entry(free_vmap_cache, struct vmap_area, rb_node);
Johannes Weiner248ac0e2011-05-24 17:11:43 -0700457 addr = ALIGN(first->va_end, align);
Nick Piggin89699602011-03-22 16:30:36 -0700458 if (addr < vstart)
459 goto nocache;
Zhang Yanfeibcb615a2013-07-08 16:00:19 -0700460 if (addr + size < addr)
Nick Piggin89699602011-03-22 16:30:36 -0700461 goto overflow;
Nick Piggindb64fe02008-10-18 20:27:03 -0700462
Nick Piggin89699602011-03-22 16:30:36 -0700463 } else {
464 addr = ALIGN(vstart, align);
Zhang Yanfeibcb615a2013-07-08 16:00:19 -0700465 if (addr + size < addr)
Nick Piggin89699602011-03-22 16:30:36 -0700466 goto overflow;
467
468 n = vmap_area_root.rb_node;
469 first = NULL;
470
471 while (n) {
Nick Piggindb64fe02008-10-18 20:27:03 -0700472 struct vmap_area *tmp;
473 tmp = rb_entry(n, struct vmap_area, rb_node);
474 if (tmp->va_end >= addr) {
Nick Piggindb64fe02008-10-18 20:27:03 -0700475 first = tmp;
Nick Piggin89699602011-03-22 16:30:36 -0700476 if (tmp->va_start <= addr)
477 break;
478 n = n->rb_left;
479 } else
Nick Piggindb64fe02008-10-18 20:27:03 -0700480 n = n->rb_right;
Nick Piggin89699602011-03-22 16:30:36 -0700481 }
Nick Piggindb64fe02008-10-18 20:27:03 -0700482
483 if (!first)
484 goto found;
Nick Piggindb64fe02008-10-18 20:27:03 -0700485 }
Nick Piggin89699602011-03-22 16:30:36 -0700486
487 /* from the starting point, walk areas until a suitable hole is found */
Johannes Weiner248ac0e2011-05-24 17:11:43 -0700488 while (addr + size > first->va_start && addr + size <= vend) {
Nick Piggin89699602011-03-22 16:30:36 -0700489 if (addr + cached_hole_size < first->va_start)
490 cached_hole_size = first->va_start - addr;
Johannes Weiner248ac0e2011-05-24 17:11:43 -0700491 addr = ALIGN(first->va_end, align);
Zhang Yanfeibcb615a2013-07-08 16:00:19 -0700492 if (addr + size < addr)
Nick Piggin89699602011-03-22 16:30:36 -0700493 goto overflow;
494
Hong zhi guo92ca9222012-07-31 16:41:35 -0700495 if (list_is_last(&first->list, &vmap_area_list))
Nick Piggin89699602011-03-22 16:30:36 -0700496 goto found;
Hong zhi guo92ca9222012-07-31 16:41:35 -0700497
Geliang Tang6219c2a2016-01-14 15:19:08 -0800498 first = list_next_entry(first, list);
Nick Piggin89699602011-03-22 16:30:36 -0700499 }
500
Nick Piggindb64fe02008-10-18 20:27:03 -0700501found:
Uladzislau Rezki (Sony)8a0fc622019-03-05 15:45:59 -0800502 /*
503 * Check also calculated address against the vstart,
504 * because it can be 0 because of big align request.
505 */
506 if (addr + size > vend || addr < vstart)
Nick Piggin89699602011-03-22 16:30:36 -0700507 goto overflow;
Nick Piggindb64fe02008-10-18 20:27:03 -0700508
509 va->va_start = addr;
510 va->va_end = addr + size;
511 va->flags = 0;
512 __insert_vmap_area(va);
Nick Piggin89699602011-03-22 16:30:36 -0700513 free_vmap_cache = &va->rb_node;
Nick Piggindb64fe02008-10-18 20:27:03 -0700514 spin_unlock(&vmap_area_lock);
515
Wang Xiaoqiang61e16552016-01-15 16:57:19 -0800516 BUG_ON(!IS_ALIGNED(va->va_start, align));
Nick Piggin89699602011-03-22 16:30:36 -0700517 BUG_ON(va->va_start < vstart);
518 BUG_ON(va->va_end > vend);
519
Nick Piggindb64fe02008-10-18 20:27:03 -0700520 return va;
Nick Piggin89699602011-03-22 16:30:36 -0700521
522overflow:
523 spin_unlock(&vmap_area_lock);
524 if (!purged) {
525 purge_vmap_area_lazy();
526 purged = 1;
527 goto retry;
528 }
Chris Wilson4da56b92016-04-04 14:46:42 +0100529
530 if (gfpflags_allow_blocking(gfp_mask)) {
531 unsigned long freed = 0;
532 blocking_notifier_call_chain(&vmap_notify_list, 0, &freed);
533 if (freed > 0) {
534 purged = 0;
535 goto retry;
536 }
537 }
538
Florian Fainelli03497d72017-04-27 11:19:00 -0700539 if (!(gfp_mask & __GFP_NOWARN) && printk_ratelimit())
Joe Perches756a0252016-03-17 14:19:47 -0700540 pr_warn("vmap allocation for size %lu failed: use vmalloc=<size> to increase size\n",
541 size);
Nick Piggin89699602011-03-22 16:30:36 -0700542 kfree(va);
543 return ERR_PTR(-EBUSY);
Nick Piggindb64fe02008-10-18 20:27:03 -0700544}
545
Chris Wilson4da56b92016-04-04 14:46:42 +0100546int register_vmap_purge_notifier(struct notifier_block *nb)
547{
548 return blocking_notifier_chain_register(&vmap_notify_list, nb);
549}
550EXPORT_SYMBOL_GPL(register_vmap_purge_notifier);
551
552int unregister_vmap_purge_notifier(struct notifier_block *nb)
553{
554 return blocking_notifier_chain_unregister(&vmap_notify_list, nb);
555}
556EXPORT_SYMBOL_GPL(unregister_vmap_purge_notifier);
557
Nick Piggindb64fe02008-10-18 20:27:03 -0700558static void __free_vmap_area(struct vmap_area *va)
559{
560 BUG_ON(RB_EMPTY_NODE(&va->rb_node));
Nick Piggin89699602011-03-22 16:30:36 -0700561
562 if (free_vmap_cache) {
563 if (va->va_end < cached_vstart) {
564 free_vmap_cache = NULL;
565 } else {
566 struct vmap_area *cache;
567 cache = rb_entry(free_vmap_cache, struct vmap_area, rb_node);
568 if (va->va_start <= cache->va_start) {
569 free_vmap_cache = rb_prev(&va->rb_node);
570 /*
571 * We don't try to update cached_hole_size or
572 * cached_align, but it won't go very wrong.
573 */
574 }
575 }
576 }
Nick Piggindb64fe02008-10-18 20:27:03 -0700577 rb_erase(&va->rb_node, &vmap_area_root);
578 RB_CLEAR_NODE(&va->rb_node);
579 list_del_rcu(&va->list);
580
Tejun Heoca23e402009-08-14 15:00:52 +0900581 /*
582 * Track the highest possible candidate for pcpu area
583 * allocation. Areas outside of vmalloc area can be returned
584 * here too, consider only end addresses which fall inside
585 * vmalloc area proper.
586 */
587 if (va->va_end > VMALLOC_START && va->va_end <= VMALLOC_END)
588 vmap_area_pcpu_hole = max(vmap_area_pcpu_hole, va->va_end);
589
Lai Jiangshan14769de2011-03-18 12:12:19 +0800590 kfree_rcu(va, rcu_head);
Nick Piggindb64fe02008-10-18 20:27:03 -0700591}
592
593/*
594 * Free a region of KVA allocated by alloc_vmap_area
595 */
596static void free_vmap_area(struct vmap_area *va)
597{
598 spin_lock(&vmap_area_lock);
599 __free_vmap_area(va);
600 spin_unlock(&vmap_area_lock);
601}
602
603/*
604 * Clear the pagetable entries of a given vmap_area
605 */
606static void unmap_vmap_area(struct vmap_area *va)
607{
608 vunmap_page_range(va->va_start, va->va_end);
609}
610
611/*
612 * lazy_max_pages is the maximum amount of virtual address space we gather up
613 * before attempting to purge with a TLB flush.
614 *
615 * There is a tradeoff here: a larger number will cover more kernel page tables
616 * and take slightly longer to purge, but it will linearly reduce the number of
617 * global TLB flushes that must be performed. It would seem natural to scale
618 * this number up linearly with the number of CPUs (because vmapping activity
619 * could also scale linearly with the number of CPUs), however it is likely
620 * that in practice, workloads might be constrained in other ways that mean
621 * vmap activity will not scale linearly with CPUs. Also, I want to be
622 * conservative and not introduce a big latency on huge systems, so go with
623 * a less aggressive log scale. It will still be an improvement over the old
624 * code, and it will be simple to change the scale factor if we find that it
625 * becomes a problem on bigger systems.
626 */
627static unsigned long lazy_max_pages(void)
628{
629 unsigned int log;
630
631 log = fls(num_online_cpus());
632
633 return log * (32UL * 1024 * 1024 / PAGE_SIZE);
634}
635
636static atomic_t vmap_lazy_nr = ATOMIC_INIT(0);
637
Christoph Hellwig0574ecd2016-12-12 16:44:07 -0800638/*
639 * Serialize vmap purging. There is no actual criticial section protected
640 * by this look, but we want to avoid concurrent calls for performance
641 * reasons and to make the pcpu_get_vm_areas more deterministic.
642 */
Christoph Hellwigf9e09972016-12-12 16:44:23 -0800643static DEFINE_MUTEX(vmap_purge_lock);
Christoph Hellwig0574ecd2016-12-12 16:44:07 -0800644
Nick Piggin02b709d2010-02-01 22:25:57 +1100645/* for per-CPU blocks */
646static void purge_fragmented_blocks_allcpus(void);
647
Nick Piggindb64fe02008-10-18 20:27:03 -0700648/*
Cliff Wickman3ee48b62010-09-16 11:44:02 -0500649 * called before a call to iounmap() if the caller wants vm_area_struct's
650 * immediately freed.
651 */
652void set_iounmap_nonlazy(void)
653{
654 atomic_set(&vmap_lazy_nr, lazy_max_pages()+1);
655}
656
657/*
Nick Piggindb64fe02008-10-18 20:27:03 -0700658 * Purges all lazily-freed vmap areas.
Nick Piggindb64fe02008-10-18 20:27:03 -0700659 */
Christoph Hellwig0574ecd2016-12-12 16:44:07 -0800660static bool __purge_vmap_area_lazy(unsigned long start, unsigned long end)
Nick Piggindb64fe02008-10-18 20:27:03 -0700661{
Chris Wilson80c4bd72016-05-20 16:57:38 -0700662 struct llist_node *valist;
Nick Piggindb64fe02008-10-18 20:27:03 -0700663 struct vmap_area *va;
Vegard Nossumcbb76672009-02-27 14:03:04 -0800664 struct vmap_area *n_va;
Joel Fernandes763b2182016-12-12 16:44:26 -0800665 bool do_free = false;
Nick Piggindb64fe02008-10-18 20:27:03 -0700666
Christoph Hellwig0574ecd2016-12-12 16:44:07 -0800667 lockdep_assert_held(&vmap_purge_lock);
Nick Piggin02b709d2010-02-01 22:25:57 +1100668
Chris Wilson80c4bd72016-05-20 16:57:38 -0700669 valist = llist_del_all(&vmap_purge_list);
670 llist_for_each_entry(va, valist, purge_list) {
Christoph Hellwig0574ecd2016-12-12 16:44:07 -0800671 if (va->va_start < start)
672 start = va->va_start;
673 if (va->va_end > end)
674 end = va->va_end;
Joel Fernandes763b2182016-12-12 16:44:26 -0800675 do_free = true;
Nick Piggindb64fe02008-10-18 20:27:03 -0700676 }
Nick Piggindb64fe02008-10-18 20:27:03 -0700677
Joel Fernandes763b2182016-12-12 16:44:26 -0800678 if (!do_free)
Christoph Hellwig0574ecd2016-12-12 16:44:07 -0800679 return false;
Nick Piggindb64fe02008-10-18 20:27:03 -0700680
Christoph Hellwig0574ecd2016-12-12 16:44:07 -0800681 flush_tlb_kernel_range(start, end);
Nick Piggindb64fe02008-10-18 20:27:03 -0700682
Christoph Hellwig0574ecd2016-12-12 16:44:07 -0800683 spin_lock(&vmap_area_lock);
Joel Fernandes763b2182016-12-12 16:44:26 -0800684 llist_for_each_entry_safe(va, n_va, valist, purge_list) {
685 int nr = (va->va_end - va->va_start) >> PAGE_SHIFT;
686
Christoph Hellwig0574ecd2016-12-12 16:44:07 -0800687 __free_vmap_area(va);
Joel Fernandes763b2182016-12-12 16:44:26 -0800688 atomic_sub(nr, &vmap_lazy_nr);
689 cond_resched_lock(&vmap_area_lock);
690 }
Christoph Hellwig0574ecd2016-12-12 16:44:07 -0800691 spin_unlock(&vmap_area_lock);
692 return true;
Nick Piggindb64fe02008-10-18 20:27:03 -0700693}
694
695/*
Nick Piggin496850e2008-11-19 15:36:33 -0800696 * Kick off a purge of the outstanding lazy areas. Don't bother if somebody
697 * is already purging.
698 */
699static void try_purge_vmap_area_lazy(void)
700{
Christoph Hellwigf9e09972016-12-12 16:44:23 -0800701 if (mutex_trylock(&vmap_purge_lock)) {
Christoph Hellwig0574ecd2016-12-12 16:44:07 -0800702 __purge_vmap_area_lazy(ULONG_MAX, 0);
Christoph Hellwigf9e09972016-12-12 16:44:23 -0800703 mutex_unlock(&vmap_purge_lock);
Christoph Hellwig0574ecd2016-12-12 16:44:07 -0800704 }
Nick Piggin496850e2008-11-19 15:36:33 -0800705}
706
707/*
Nick Piggindb64fe02008-10-18 20:27:03 -0700708 * Kick off a purge of the outstanding lazy areas.
709 */
710static void purge_vmap_area_lazy(void)
711{
Christoph Hellwigf9e09972016-12-12 16:44:23 -0800712 mutex_lock(&vmap_purge_lock);
Christoph Hellwig0574ecd2016-12-12 16:44:07 -0800713 purge_fragmented_blocks_allcpus();
714 __purge_vmap_area_lazy(ULONG_MAX, 0);
Christoph Hellwigf9e09972016-12-12 16:44:23 -0800715 mutex_unlock(&vmap_purge_lock);
Nick Piggindb64fe02008-10-18 20:27:03 -0700716}
717
718/*
Jeremy Fitzhardinge64141da2010-12-02 14:31:18 -0800719 * Free a vmap area, caller ensuring that the area has been unmapped
720 * and flush_cache_vunmap had been called for the correct range
721 * previously.
Nick Piggindb64fe02008-10-18 20:27:03 -0700722 */
Jeremy Fitzhardinge64141da2010-12-02 14:31:18 -0800723static void free_vmap_area_noflush(struct vmap_area *va)
Nick Piggindb64fe02008-10-18 20:27:03 -0700724{
Chris Wilson80c4bd72016-05-20 16:57:38 -0700725 int nr_lazy;
726
727 nr_lazy = atomic_add_return((va->va_end - va->va_start) >> PAGE_SHIFT,
728 &vmap_lazy_nr);
729
730 /* After this point, we may free va at any time */
731 llist_add(&va->purge_list, &vmap_purge_list);
732
733 if (unlikely(nr_lazy > lazy_max_pages()))
Nick Piggin496850e2008-11-19 15:36:33 -0800734 try_purge_vmap_area_lazy();
Nick Piggindb64fe02008-10-18 20:27:03 -0700735}
736
Nick Pigginb29acbd2008-12-01 13:13:47 -0800737/*
738 * Free and unmap a vmap area
739 */
740static void free_unmap_vmap_area(struct vmap_area *va)
741{
742 flush_cache_vunmap(va->va_start, va->va_end);
Christoph Hellwigc8eef012016-12-12 16:44:01 -0800743 unmap_vmap_area(va);
Chintan Pandya82a2e922018-06-07 17:06:46 -0700744 if (debug_pagealloc_enabled())
745 flush_tlb_kernel_range(va->va_start, va->va_end);
746
Christoph Hellwigc8eef012016-12-12 16:44:01 -0800747 free_vmap_area_noflush(va);
Nick Pigginb29acbd2008-12-01 13:13:47 -0800748}
749
Nick Piggindb64fe02008-10-18 20:27:03 -0700750static struct vmap_area *find_vmap_area(unsigned long addr)
751{
752 struct vmap_area *va;
753
754 spin_lock(&vmap_area_lock);
755 va = __find_vmap_area(addr);
756 spin_unlock(&vmap_area_lock);
757
758 return va;
759}
760
Nick Piggindb64fe02008-10-18 20:27:03 -0700761/*** Per cpu kva allocator ***/
762
763/*
764 * vmap space is limited especially on 32 bit architectures. Ensure there is
765 * room for at least 16 percpu vmap blocks per CPU.
766 */
767/*
768 * If we had a constant VMALLOC_START and VMALLOC_END, we'd like to be able
769 * to #define VMALLOC_SPACE (VMALLOC_END-VMALLOC_START). Guess
770 * instead (we just need a rough idea)
771 */
772#if BITS_PER_LONG == 32
773#define VMALLOC_SPACE (128UL*1024*1024)
774#else
775#define VMALLOC_SPACE (128UL*1024*1024*1024)
776#endif
777
778#define VMALLOC_PAGES (VMALLOC_SPACE / PAGE_SIZE)
779#define VMAP_MAX_ALLOC BITS_PER_LONG /* 256K with 4K pages */
780#define VMAP_BBMAP_BITS_MAX 1024 /* 4MB with 4K pages */
781#define VMAP_BBMAP_BITS_MIN (VMAP_MAX_ALLOC*2)
782#define VMAP_MIN(x, y) ((x) < (y) ? (x) : (y)) /* can't use min() */
783#define VMAP_MAX(x, y) ((x) > (y) ? (x) : (y)) /* can't use max() */
Clemens Ladischf982f912011-06-21 22:09:50 +0200784#define VMAP_BBMAP_BITS \
785 VMAP_MIN(VMAP_BBMAP_BITS_MAX, \
786 VMAP_MAX(VMAP_BBMAP_BITS_MIN, \
787 VMALLOC_PAGES / roundup_pow_of_two(NR_CPUS) / 16))
Nick Piggindb64fe02008-10-18 20:27:03 -0700788
789#define VMAP_BLOCK_SIZE (VMAP_BBMAP_BITS * PAGE_SIZE)
790
Jeremy Fitzhardinge9b463332008-10-28 19:22:34 +1100791static bool vmap_initialized __read_mostly = false;
792
Nick Piggindb64fe02008-10-18 20:27:03 -0700793struct vmap_block_queue {
794 spinlock_t lock;
795 struct list_head free;
Nick Piggindb64fe02008-10-18 20:27:03 -0700796};
797
798struct vmap_block {
799 spinlock_t lock;
800 struct vmap_area *va;
Nick Piggindb64fe02008-10-18 20:27:03 -0700801 unsigned long free, dirty;
Roman Pen7d61bfe2015-04-15 16:13:55 -0700802 unsigned long dirty_min, dirty_max; /*< dirty range */
Nick Pigginde560422010-02-01 22:24:18 +1100803 struct list_head free_list;
804 struct rcu_head rcu_head;
Nick Piggin02b709d2010-02-01 22:25:57 +1100805 struct list_head purge;
Nick Piggindb64fe02008-10-18 20:27:03 -0700806};
807
808/* Queue of free and dirty vmap blocks, for allocation and flushing purposes */
809static DEFINE_PER_CPU(struct vmap_block_queue, vmap_block_queue);
810
811/*
812 * Radix tree of vmap blocks, indexed by address, to quickly find a vmap block
813 * in the free path. Could get rid of this if we change the API to return a
814 * "cookie" from alloc, to be passed to free. But no big deal yet.
815 */
816static DEFINE_SPINLOCK(vmap_block_tree_lock);
817static RADIX_TREE(vmap_block_tree, GFP_ATOMIC);
818
819/*
820 * We should probably have a fallback mechanism to allocate virtual memory
821 * out of partially filled vmap blocks. However vmap block sizing should be
822 * fairly reasonable according to the vmalloc size, so it shouldn't be a
823 * big problem.
824 */
825
826static unsigned long addr_to_vb_idx(unsigned long addr)
827{
828 addr -= VMALLOC_START & ~(VMAP_BLOCK_SIZE-1);
829 addr /= VMAP_BLOCK_SIZE;
830 return addr;
831}
832
Roman Pencf725ce2015-04-15 16:13:52 -0700833static void *vmap_block_vaddr(unsigned long va_start, unsigned long pages_off)
834{
835 unsigned long addr;
836
837 addr = va_start + (pages_off << PAGE_SHIFT);
838 BUG_ON(addr_to_vb_idx(addr) != addr_to_vb_idx(va_start));
839 return (void *)addr;
840}
841
842/**
843 * new_vmap_block - allocates new vmap_block and occupies 2^order pages in this
844 * block. Of course pages number can't exceed VMAP_BBMAP_BITS
845 * @order: how many 2^order pages should be occupied in newly allocated block
846 * @gfp_mask: flags for the page level allocator
847 *
848 * Returns: virtual address in a newly allocated block or ERR_PTR(-errno)
849 */
850static void *new_vmap_block(unsigned int order, gfp_t gfp_mask)
Nick Piggindb64fe02008-10-18 20:27:03 -0700851{
852 struct vmap_block_queue *vbq;
853 struct vmap_block *vb;
854 struct vmap_area *va;
855 unsigned long vb_idx;
856 int node, err;
Roman Pencf725ce2015-04-15 16:13:52 -0700857 void *vaddr;
Nick Piggindb64fe02008-10-18 20:27:03 -0700858
859 node = numa_node_id();
860
861 vb = kmalloc_node(sizeof(struct vmap_block),
862 gfp_mask & GFP_RECLAIM_MASK, node);
863 if (unlikely(!vb))
864 return ERR_PTR(-ENOMEM);
865
866 va = alloc_vmap_area(VMAP_BLOCK_SIZE, VMAP_BLOCK_SIZE,
867 VMALLOC_START, VMALLOC_END,
868 node, gfp_mask);
Tobias Klauserddf9c6d42011-01-13 15:46:15 -0800869 if (IS_ERR(va)) {
Nick Piggindb64fe02008-10-18 20:27:03 -0700870 kfree(vb);
Julia Lawalle7d86342010-08-09 17:18:28 -0700871 return ERR_CAST(va);
Nick Piggindb64fe02008-10-18 20:27:03 -0700872 }
873
874 err = radix_tree_preload(gfp_mask);
875 if (unlikely(err)) {
876 kfree(vb);
877 free_vmap_area(va);
878 return ERR_PTR(err);
879 }
880
Roman Pencf725ce2015-04-15 16:13:52 -0700881 vaddr = vmap_block_vaddr(va->va_start, 0);
Nick Piggindb64fe02008-10-18 20:27:03 -0700882 spin_lock_init(&vb->lock);
883 vb->va = va;
Roman Pencf725ce2015-04-15 16:13:52 -0700884 /* At least something should be left free */
885 BUG_ON(VMAP_BBMAP_BITS <= (1UL << order));
886 vb->free = VMAP_BBMAP_BITS - (1UL << order);
Nick Piggindb64fe02008-10-18 20:27:03 -0700887 vb->dirty = 0;
Roman Pen7d61bfe2015-04-15 16:13:55 -0700888 vb->dirty_min = VMAP_BBMAP_BITS;
889 vb->dirty_max = 0;
Nick Piggindb64fe02008-10-18 20:27:03 -0700890 INIT_LIST_HEAD(&vb->free_list);
Nick Piggindb64fe02008-10-18 20:27:03 -0700891
892 vb_idx = addr_to_vb_idx(va->va_start);
893 spin_lock(&vmap_block_tree_lock);
894 err = radix_tree_insert(&vmap_block_tree, vb_idx, vb);
895 spin_unlock(&vmap_block_tree_lock);
896 BUG_ON(err);
897 radix_tree_preload_end();
898
899 vbq = &get_cpu_var(vmap_block_queue);
Nick Piggindb64fe02008-10-18 20:27:03 -0700900 spin_lock(&vbq->lock);
Roman Pen68ac5462015-04-15 16:13:48 -0700901 list_add_tail_rcu(&vb->free_list, &vbq->free);
Nick Piggindb64fe02008-10-18 20:27:03 -0700902 spin_unlock(&vbq->lock);
Tejun Heo3f04ba82009-10-29 22:34:12 +0900903 put_cpu_var(vmap_block_queue);
Nick Piggindb64fe02008-10-18 20:27:03 -0700904
Roman Pencf725ce2015-04-15 16:13:52 -0700905 return vaddr;
Nick Piggindb64fe02008-10-18 20:27:03 -0700906}
907
Nick Piggindb64fe02008-10-18 20:27:03 -0700908static void free_vmap_block(struct vmap_block *vb)
909{
910 struct vmap_block *tmp;
911 unsigned long vb_idx;
912
Nick Piggindb64fe02008-10-18 20:27:03 -0700913 vb_idx = addr_to_vb_idx(vb->va->va_start);
914 spin_lock(&vmap_block_tree_lock);
915 tmp = radix_tree_delete(&vmap_block_tree, vb_idx);
916 spin_unlock(&vmap_block_tree_lock);
917 BUG_ON(tmp != vb);
918
Jeremy Fitzhardinge64141da2010-12-02 14:31:18 -0800919 free_vmap_area_noflush(vb->va);
Lai Jiangshan22a3c7d2011-03-18 12:13:08 +0800920 kfree_rcu(vb, rcu_head);
Nick Piggindb64fe02008-10-18 20:27:03 -0700921}
922
Nick Piggin02b709d2010-02-01 22:25:57 +1100923static void purge_fragmented_blocks(int cpu)
924{
925 LIST_HEAD(purge);
926 struct vmap_block *vb;
927 struct vmap_block *n_vb;
928 struct vmap_block_queue *vbq = &per_cpu(vmap_block_queue, cpu);
929
930 rcu_read_lock();
931 list_for_each_entry_rcu(vb, &vbq->free, free_list) {
932
933 if (!(vb->free + vb->dirty == VMAP_BBMAP_BITS && vb->dirty != VMAP_BBMAP_BITS))
934 continue;
935
936 spin_lock(&vb->lock);
937 if (vb->free + vb->dirty == VMAP_BBMAP_BITS && vb->dirty != VMAP_BBMAP_BITS) {
938 vb->free = 0; /* prevent further allocs after releasing lock */
939 vb->dirty = VMAP_BBMAP_BITS; /* prevent purging it again */
Roman Pen7d61bfe2015-04-15 16:13:55 -0700940 vb->dirty_min = 0;
941 vb->dirty_max = VMAP_BBMAP_BITS;
Nick Piggin02b709d2010-02-01 22:25:57 +1100942 spin_lock(&vbq->lock);
943 list_del_rcu(&vb->free_list);
944 spin_unlock(&vbq->lock);
945 spin_unlock(&vb->lock);
946 list_add_tail(&vb->purge, &purge);
947 } else
948 spin_unlock(&vb->lock);
949 }
950 rcu_read_unlock();
951
952 list_for_each_entry_safe(vb, n_vb, &purge, purge) {
953 list_del(&vb->purge);
954 free_vmap_block(vb);
955 }
956}
957
Nick Piggin02b709d2010-02-01 22:25:57 +1100958static void purge_fragmented_blocks_allcpus(void)
959{
960 int cpu;
961
962 for_each_possible_cpu(cpu)
963 purge_fragmented_blocks(cpu);
964}
965
Nick Piggindb64fe02008-10-18 20:27:03 -0700966static void *vb_alloc(unsigned long size, gfp_t gfp_mask)
967{
968 struct vmap_block_queue *vbq;
969 struct vmap_block *vb;
Roman Pencf725ce2015-04-15 16:13:52 -0700970 void *vaddr = NULL;
Nick Piggindb64fe02008-10-18 20:27:03 -0700971 unsigned int order;
972
Alexander Kuleshov891c49a2015-11-05 18:46:51 -0800973 BUG_ON(offset_in_page(size));
Nick Piggindb64fe02008-10-18 20:27:03 -0700974 BUG_ON(size > PAGE_SIZE*VMAP_MAX_ALLOC);
Jan Karaaa91c4d2012-07-31 16:41:37 -0700975 if (WARN_ON(size == 0)) {
976 /*
977 * Allocating 0 bytes isn't what caller wants since
978 * get_order(0) returns funny result. Just warn and terminate
979 * early.
980 */
981 return NULL;
982 }
Nick Piggindb64fe02008-10-18 20:27:03 -0700983 order = get_order(size);
984
Nick Piggindb64fe02008-10-18 20:27:03 -0700985 rcu_read_lock();
986 vbq = &get_cpu_var(vmap_block_queue);
987 list_for_each_entry_rcu(vb, &vbq->free, free_list) {
Roman Pencf725ce2015-04-15 16:13:52 -0700988 unsigned long pages_off;
Nick Piggindb64fe02008-10-18 20:27:03 -0700989
990 spin_lock(&vb->lock);
Roman Pencf725ce2015-04-15 16:13:52 -0700991 if (vb->free < (1UL << order)) {
992 spin_unlock(&vb->lock);
993 continue;
994 }
Nick Piggin02b709d2010-02-01 22:25:57 +1100995
Roman Pencf725ce2015-04-15 16:13:52 -0700996 pages_off = VMAP_BBMAP_BITS - vb->free;
997 vaddr = vmap_block_vaddr(vb->va->va_start, pages_off);
Nick Piggin02b709d2010-02-01 22:25:57 +1100998 vb->free -= 1UL << order;
999 if (vb->free == 0) {
1000 spin_lock(&vbq->lock);
1001 list_del_rcu(&vb->free_list);
1002 spin_unlock(&vbq->lock);
Nick Piggindb64fe02008-10-18 20:27:03 -07001003 }
Roman Pencf725ce2015-04-15 16:13:52 -07001004
Nick Piggindb64fe02008-10-18 20:27:03 -07001005 spin_unlock(&vb->lock);
Nick Piggin02b709d2010-02-01 22:25:57 +11001006 break;
Nick Piggindb64fe02008-10-18 20:27:03 -07001007 }
Nick Piggin02b709d2010-02-01 22:25:57 +11001008
Tejun Heo3f04ba82009-10-29 22:34:12 +09001009 put_cpu_var(vmap_block_queue);
Nick Piggindb64fe02008-10-18 20:27:03 -07001010 rcu_read_unlock();
1011
Roman Pencf725ce2015-04-15 16:13:52 -07001012 /* Allocate new block if nothing was found */
1013 if (!vaddr)
1014 vaddr = new_vmap_block(order, gfp_mask);
Nick Piggindb64fe02008-10-18 20:27:03 -07001015
Roman Pencf725ce2015-04-15 16:13:52 -07001016 return vaddr;
Nick Piggindb64fe02008-10-18 20:27:03 -07001017}
1018
1019static void vb_free(const void *addr, unsigned long size)
1020{
1021 unsigned long offset;
1022 unsigned long vb_idx;
1023 unsigned int order;
1024 struct vmap_block *vb;
1025
Alexander Kuleshov891c49a2015-11-05 18:46:51 -08001026 BUG_ON(offset_in_page(size));
Nick Piggindb64fe02008-10-18 20:27:03 -07001027 BUG_ON(size > PAGE_SIZE*VMAP_MAX_ALLOC);
Nick Pigginb29acbd2008-12-01 13:13:47 -08001028
1029 flush_cache_vunmap((unsigned long)addr, (unsigned long)addr + size);
1030
Nick Piggindb64fe02008-10-18 20:27:03 -07001031 order = get_order(size);
1032
1033 offset = (unsigned long)addr & (VMAP_BLOCK_SIZE - 1);
Roman Pen7d61bfe2015-04-15 16:13:55 -07001034 offset >>= PAGE_SHIFT;
Nick Piggindb64fe02008-10-18 20:27:03 -07001035
1036 vb_idx = addr_to_vb_idx((unsigned long)addr);
1037 rcu_read_lock();
1038 vb = radix_tree_lookup(&vmap_block_tree, vb_idx);
1039 rcu_read_unlock();
1040 BUG_ON(!vb);
1041
Jeremy Fitzhardinge64141da2010-12-02 14:31:18 -08001042 vunmap_page_range((unsigned long)addr, (unsigned long)addr + size);
1043
Chintan Pandya82a2e922018-06-07 17:06:46 -07001044 if (debug_pagealloc_enabled())
1045 flush_tlb_kernel_range((unsigned long)addr,
1046 (unsigned long)addr + size);
1047
Nick Piggindb64fe02008-10-18 20:27:03 -07001048 spin_lock(&vb->lock);
Roman Pen7d61bfe2015-04-15 16:13:55 -07001049
1050 /* Expand dirty range */
1051 vb->dirty_min = min(vb->dirty_min, offset);
1052 vb->dirty_max = max(vb->dirty_max, offset + (1UL << order));
MinChan Kimd0868172009-03-31 15:19:26 -07001053
Nick Piggindb64fe02008-10-18 20:27:03 -07001054 vb->dirty += 1UL << order;
1055 if (vb->dirty == VMAP_BBMAP_BITS) {
Nick Pigginde560422010-02-01 22:24:18 +11001056 BUG_ON(vb->free);
Nick Piggindb64fe02008-10-18 20:27:03 -07001057 spin_unlock(&vb->lock);
1058 free_vmap_block(vb);
1059 } else
1060 spin_unlock(&vb->lock);
1061}
1062
1063/**
1064 * vm_unmap_aliases - unmap outstanding lazy aliases in the vmap layer
1065 *
1066 * The vmap/vmalloc layer lazily flushes kernel virtual mappings primarily
1067 * to amortize TLB flushing overheads. What this means is that any page you
1068 * have now, may, in a former life, have been mapped into kernel virtual
1069 * address by the vmap layer and so there might be some CPUs with TLB entries
1070 * still referencing that page (additional to the regular 1:1 kernel mapping).
1071 *
1072 * vm_unmap_aliases flushes all such lazy mappings. After it returns, we can
1073 * be sure that none of the pages we have control over will have any aliases
1074 * from the vmap layer.
1075 */
1076void vm_unmap_aliases(void)
1077{
1078 unsigned long start = ULONG_MAX, end = 0;
1079 int cpu;
1080 int flush = 0;
1081
Jeremy Fitzhardinge9b463332008-10-28 19:22:34 +11001082 if (unlikely(!vmap_initialized))
1083 return;
1084
Christoph Hellwig5803ed22016-12-12 16:44:20 -08001085 might_sleep();
1086
Nick Piggindb64fe02008-10-18 20:27:03 -07001087 for_each_possible_cpu(cpu) {
1088 struct vmap_block_queue *vbq = &per_cpu(vmap_block_queue, cpu);
1089 struct vmap_block *vb;
1090
1091 rcu_read_lock();
1092 list_for_each_entry_rcu(vb, &vbq->free, free_list) {
Nick Piggindb64fe02008-10-18 20:27:03 -07001093 spin_lock(&vb->lock);
Roman Pen7d61bfe2015-04-15 16:13:55 -07001094 if (vb->dirty) {
1095 unsigned long va_start = vb->va->va_start;
Nick Piggindb64fe02008-10-18 20:27:03 -07001096 unsigned long s, e;
Joonsoo Kimb136be5e2013-09-11 14:21:40 -07001097
Roman Pen7d61bfe2015-04-15 16:13:55 -07001098 s = va_start + (vb->dirty_min << PAGE_SHIFT);
1099 e = va_start + (vb->dirty_max << PAGE_SHIFT);
Nick Piggindb64fe02008-10-18 20:27:03 -07001100
Roman Pen7d61bfe2015-04-15 16:13:55 -07001101 start = min(s, start);
1102 end = max(e, end);
1103
Nick Piggindb64fe02008-10-18 20:27:03 -07001104 flush = 1;
Nick Piggindb64fe02008-10-18 20:27:03 -07001105 }
1106 spin_unlock(&vb->lock);
1107 }
1108 rcu_read_unlock();
1109 }
1110
Christoph Hellwigf9e09972016-12-12 16:44:23 -08001111 mutex_lock(&vmap_purge_lock);
Christoph Hellwig0574ecd2016-12-12 16:44:07 -08001112 purge_fragmented_blocks_allcpus();
1113 if (!__purge_vmap_area_lazy(start, end) && flush)
1114 flush_tlb_kernel_range(start, end);
Christoph Hellwigf9e09972016-12-12 16:44:23 -08001115 mutex_unlock(&vmap_purge_lock);
Nick Piggindb64fe02008-10-18 20:27:03 -07001116}
1117EXPORT_SYMBOL_GPL(vm_unmap_aliases);
1118
1119/**
1120 * vm_unmap_ram - unmap linear kernel address space set up by vm_map_ram
1121 * @mem: the pointer returned by vm_map_ram
1122 * @count: the count passed to that vm_map_ram call (cannot unmap partial)
1123 */
1124void vm_unmap_ram(const void *mem, unsigned int count)
1125{
Guillermo Julián Moreno65ee03c2016-06-03 14:55:33 -07001126 unsigned long size = (unsigned long)count << PAGE_SHIFT;
Nick Piggindb64fe02008-10-18 20:27:03 -07001127 unsigned long addr = (unsigned long)mem;
Christoph Hellwig9c3acf62016-12-12 16:44:04 -08001128 struct vmap_area *va;
Nick Piggindb64fe02008-10-18 20:27:03 -07001129
Christoph Hellwig5803ed22016-12-12 16:44:20 -08001130 might_sleep();
Nick Piggindb64fe02008-10-18 20:27:03 -07001131 BUG_ON(!addr);
1132 BUG_ON(addr < VMALLOC_START);
1133 BUG_ON(addr > VMALLOC_END);
Shawn Lina1c0b1a2016-03-17 14:20:37 -07001134 BUG_ON(!PAGE_ALIGNED(addr));
Nick Piggindb64fe02008-10-18 20:27:03 -07001135
Christoph Hellwig9c3acf62016-12-12 16:44:04 -08001136 if (likely(count <= VMAP_MAX_ALLOC)) {
Chintan Pandya05e3ff92018-06-07 17:06:53 -07001137 debug_check_no_locks_freed(mem, size);
Nick Piggindb64fe02008-10-18 20:27:03 -07001138 vb_free(mem, size);
Christoph Hellwig9c3acf62016-12-12 16:44:04 -08001139 return;
1140 }
1141
1142 va = find_vmap_area(addr);
1143 BUG_ON(!va);
Chintan Pandya05e3ff92018-06-07 17:06:53 -07001144 debug_check_no_locks_freed((void *)va->va_start,
1145 (va->va_end - va->va_start));
Christoph Hellwig9c3acf62016-12-12 16:44:04 -08001146 free_unmap_vmap_area(va);
Nick Piggindb64fe02008-10-18 20:27:03 -07001147}
1148EXPORT_SYMBOL(vm_unmap_ram);
1149
1150/**
1151 * vm_map_ram - map pages linearly into kernel virtual address (vmalloc space)
1152 * @pages: an array of pointers to the pages to be mapped
1153 * @count: number of pages
1154 * @node: prefer to allocate data structures on this node
1155 * @prot: memory protection to use. PAGE_KERNEL for regular RAM
Randy Dunlape99c97a2008-10-29 14:01:09 -07001156 *
Gioh Kim36437632014-04-07 15:37:37 -07001157 * If you use this function for less than VMAP_MAX_ALLOC pages, it could be
1158 * faster than vmap so it's good. But if you mix long-life and short-life
1159 * objects with vm_map_ram(), it could consume lots of address space through
1160 * fragmentation (especially on a 32bit machine). You could see failures in
1161 * the end. Please use this function for short-lived objects.
1162 *
Randy Dunlape99c97a2008-10-29 14:01:09 -07001163 * Returns: a pointer to the address that has been mapped, or %NULL on failure
Nick Piggindb64fe02008-10-18 20:27:03 -07001164 */
1165void *vm_map_ram(struct page **pages, unsigned int count, int node, pgprot_t prot)
1166{
Guillermo Julián Moreno65ee03c2016-06-03 14:55:33 -07001167 unsigned long size = (unsigned long)count << PAGE_SHIFT;
Nick Piggindb64fe02008-10-18 20:27:03 -07001168 unsigned long addr;
1169 void *mem;
1170
1171 if (likely(count <= VMAP_MAX_ALLOC)) {
1172 mem = vb_alloc(size, GFP_KERNEL);
1173 if (IS_ERR(mem))
1174 return NULL;
1175 addr = (unsigned long)mem;
1176 } else {
1177 struct vmap_area *va;
1178 va = alloc_vmap_area(size, PAGE_SIZE,
1179 VMALLOC_START, VMALLOC_END, node, GFP_KERNEL);
1180 if (IS_ERR(va))
1181 return NULL;
1182
1183 addr = va->va_start;
1184 mem = (void *)addr;
1185 }
1186 if (vmap_page_range(addr, addr + size, prot, pages) < 0) {
1187 vm_unmap_ram(mem, count);
1188 return NULL;
1189 }
1190 return mem;
1191}
1192EXPORT_SYMBOL(vm_map_ram);
1193
Joonsoo Kim4341fa42013-04-29 15:07:39 -07001194static struct vm_struct *vmlist __initdata;
Tejun Heof0aa6612009-02-20 16:29:08 +09001195/**
Nicolas Pitrebe9b7332011-08-25 00:24:21 -04001196 * vm_area_add_early - add vmap area early during boot
1197 * @vm: vm_struct to add
1198 *
1199 * This function is used to add fixed kernel vm area to vmlist before
1200 * vmalloc_init() is called. @vm->addr, @vm->size, and @vm->flags
1201 * should contain proper values and the other fields should be zero.
1202 *
1203 * DO NOT USE THIS FUNCTION UNLESS YOU KNOW WHAT YOU'RE DOING.
1204 */
1205void __init vm_area_add_early(struct vm_struct *vm)
1206{
1207 struct vm_struct *tmp, **p;
1208
1209 BUG_ON(vmap_initialized);
1210 for (p = &vmlist; (tmp = *p) != NULL; p = &tmp->next) {
1211 if (tmp->addr >= vm->addr) {
1212 BUG_ON(tmp->addr < vm->addr + vm->size);
1213 break;
1214 } else
1215 BUG_ON(tmp->addr + tmp->size > vm->addr);
1216 }
1217 vm->next = *p;
1218 *p = vm;
1219}
1220
1221/**
Tejun Heof0aa6612009-02-20 16:29:08 +09001222 * vm_area_register_early - register vmap area early during boot
1223 * @vm: vm_struct to register
Tejun Heoc0c0a292009-02-24 11:57:21 +09001224 * @align: requested alignment
Tejun Heof0aa6612009-02-20 16:29:08 +09001225 *
1226 * This function is used to register kernel vm area before
1227 * vmalloc_init() is called. @vm->size and @vm->flags should contain
1228 * proper values on entry and other fields should be zero. On return,
1229 * vm->addr contains the allocated address.
1230 *
1231 * DO NOT USE THIS FUNCTION UNLESS YOU KNOW WHAT YOU'RE DOING.
1232 */
Tejun Heoc0c0a292009-02-24 11:57:21 +09001233void __init vm_area_register_early(struct vm_struct *vm, size_t align)
Tejun Heof0aa6612009-02-20 16:29:08 +09001234{
1235 static size_t vm_init_off __initdata;
Tejun Heoc0c0a292009-02-24 11:57:21 +09001236 unsigned long addr;
Tejun Heof0aa6612009-02-20 16:29:08 +09001237
Tejun Heoc0c0a292009-02-24 11:57:21 +09001238 addr = ALIGN(VMALLOC_START + vm_init_off, align);
1239 vm_init_off = PFN_ALIGN(addr + vm->size) - VMALLOC_START;
1240
1241 vm->addr = (void *)addr;
Tejun Heof0aa6612009-02-20 16:29:08 +09001242
Nicolas Pitrebe9b7332011-08-25 00:24:21 -04001243 vm_area_add_early(vm);
Tejun Heof0aa6612009-02-20 16:29:08 +09001244}
1245
Nick Piggindb64fe02008-10-18 20:27:03 -07001246void __init vmalloc_init(void)
1247{
Ivan Kokshaysky822c18f2009-01-15 13:50:48 -08001248 struct vmap_area *va;
1249 struct vm_struct *tmp;
Nick Piggindb64fe02008-10-18 20:27:03 -07001250 int i;
1251
1252 for_each_possible_cpu(i) {
1253 struct vmap_block_queue *vbq;
Al Viro32fcfd42013-03-10 20:14:08 -04001254 struct vfree_deferred *p;
Nick Piggindb64fe02008-10-18 20:27:03 -07001255
1256 vbq = &per_cpu(vmap_block_queue, i);
1257 spin_lock_init(&vbq->lock);
1258 INIT_LIST_HEAD(&vbq->free);
Al Viro32fcfd42013-03-10 20:14:08 -04001259 p = &per_cpu(vfree_deferred, i);
1260 init_llist_head(&p->list);
1261 INIT_WORK(&p->wq, free_work);
Nick Piggindb64fe02008-10-18 20:27:03 -07001262 }
Jeremy Fitzhardinge9b463332008-10-28 19:22:34 +11001263
Ivan Kokshaysky822c18f2009-01-15 13:50:48 -08001264 /* Import existing vmlist entries. */
1265 for (tmp = vmlist; tmp; tmp = tmp->next) {
Pekka Enberg43ebdac2009-05-25 15:01:35 +03001266 va = kzalloc(sizeof(struct vmap_area), GFP_NOWAIT);
KyongHodbda5912012-05-29 15:06:49 -07001267 va->flags = VM_VM_AREA;
Ivan Kokshaysky822c18f2009-01-15 13:50:48 -08001268 va->va_start = (unsigned long)tmp->addr;
1269 va->va_end = va->va_start + tmp->size;
KyongHodbda5912012-05-29 15:06:49 -07001270 va->vm = tmp;
Ivan Kokshaysky822c18f2009-01-15 13:50:48 -08001271 __insert_vmap_area(va);
1272 }
Tejun Heoca23e402009-08-14 15:00:52 +09001273
1274 vmap_area_pcpu_hole = VMALLOC_END;
1275
Jeremy Fitzhardinge9b463332008-10-28 19:22:34 +11001276 vmap_initialized = true;
Nick Piggindb64fe02008-10-18 20:27:03 -07001277}
1278
Tejun Heo8fc48982009-02-20 16:29:08 +09001279/**
1280 * map_kernel_range_noflush - map kernel VM area with the specified pages
1281 * @addr: start of the VM area to map
1282 * @size: size of the VM area to map
1283 * @prot: page protection flags to use
1284 * @pages: pages to map
1285 *
1286 * Map PFN_UP(@size) pages at @addr. The VM area @addr and @size
1287 * specify should have been allocated using get_vm_area() and its
1288 * friends.
1289 *
1290 * NOTE:
1291 * This function does NOT do any cache flushing. The caller is
1292 * responsible for calling flush_cache_vmap() on to-be-mapped areas
1293 * before calling this function.
1294 *
1295 * RETURNS:
1296 * The number of pages mapped on success, -errno on failure.
1297 */
1298int map_kernel_range_noflush(unsigned long addr, unsigned long size,
1299 pgprot_t prot, struct page **pages)
1300{
1301 return vmap_page_range_noflush(addr, addr + size, prot, pages);
1302}
1303
1304/**
1305 * unmap_kernel_range_noflush - unmap kernel VM area
1306 * @addr: start of the VM area to unmap
1307 * @size: size of the VM area to unmap
1308 *
1309 * Unmap PFN_UP(@size) pages at @addr. The VM area @addr and @size
1310 * specify should have been allocated using get_vm_area() and its
1311 * friends.
1312 *
1313 * NOTE:
1314 * This function does NOT do any cache flushing. The caller is
1315 * responsible for calling flush_cache_vunmap() on to-be-mapped areas
1316 * before calling this function and flush_tlb_kernel_range() after.
1317 */
1318void unmap_kernel_range_noflush(unsigned long addr, unsigned long size)
1319{
1320 vunmap_page_range(addr, addr + size);
1321}
Huang Ying81e88fd2011-01-12 14:44:55 +08001322EXPORT_SYMBOL_GPL(unmap_kernel_range_noflush);
Tejun Heo8fc48982009-02-20 16:29:08 +09001323
1324/**
1325 * unmap_kernel_range - unmap kernel VM area and flush cache and TLB
1326 * @addr: start of the VM area to unmap
1327 * @size: size of the VM area to unmap
1328 *
1329 * Similar to unmap_kernel_range_noflush() but flushes vcache before
1330 * the unmapping and tlb after.
1331 */
Nick Piggindb64fe02008-10-18 20:27:03 -07001332void unmap_kernel_range(unsigned long addr, unsigned long size)
1333{
1334 unsigned long end = addr + size;
Tejun Heof6fcba72009-02-20 15:38:48 -08001335
1336 flush_cache_vunmap(addr, end);
Nick Piggindb64fe02008-10-18 20:27:03 -07001337 vunmap_page_range(addr, end);
1338 flush_tlb_kernel_range(addr, end);
1339}
Minchan Kim93ef6d6c2014-06-04 16:11:09 -07001340EXPORT_SYMBOL_GPL(unmap_kernel_range);
Nick Piggindb64fe02008-10-18 20:27:03 -07001341
WANG Chaof6f8ed42014-08-06 16:06:58 -07001342int map_vm_area(struct vm_struct *area, pgprot_t prot, struct page **pages)
Nick Piggindb64fe02008-10-18 20:27:03 -07001343{
1344 unsigned long addr = (unsigned long)area->addr;
Wanpeng Li762216a2013-09-11 14:22:42 -07001345 unsigned long end = addr + get_vm_area_size(area);
Nick Piggindb64fe02008-10-18 20:27:03 -07001346 int err;
1347
WANG Chaof6f8ed42014-08-06 16:06:58 -07001348 err = vmap_page_range(addr, end, prot, pages);
Nick Piggindb64fe02008-10-18 20:27:03 -07001349
WANG Chaof6f8ed42014-08-06 16:06:58 -07001350 return err > 0 ? 0 : err;
Nick Piggindb64fe02008-10-18 20:27:03 -07001351}
1352EXPORT_SYMBOL_GPL(map_vm_area);
1353
Mitsuo Hayasakaf5252e02011-10-31 17:08:13 -07001354static void setup_vmalloc_vm(struct vm_struct *vm, struct vmap_area *va,
Marek Szyprowski5e6cafc2012-04-13 12:32:09 +02001355 unsigned long flags, const void *caller)
Tejun Heocf88c792009-08-14 15:00:52 +09001356{
Joonsoo Kimc69480a2013-04-29 15:07:30 -07001357 spin_lock(&vmap_area_lock);
Tejun Heocf88c792009-08-14 15:00:52 +09001358 vm->flags = flags;
1359 vm->addr = (void *)va->va_start;
1360 vm->size = va->va_end - va->va_start;
1361 vm->caller = caller;
Minchan Kimdb1aeca2012-01-10 15:08:39 -08001362 va->vm = vm;
Tejun Heocf88c792009-08-14 15:00:52 +09001363 va->flags |= VM_VM_AREA;
Joonsoo Kimc69480a2013-04-29 15:07:30 -07001364 spin_unlock(&vmap_area_lock);
Mitsuo Hayasakaf5252e02011-10-31 17:08:13 -07001365}
Tejun Heocf88c792009-08-14 15:00:52 +09001366
Zhang Yanfei20fc02b2013-07-08 15:59:58 -07001367static void clear_vm_uninitialized_flag(struct vm_struct *vm)
Mitsuo Hayasakaf5252e02011-10-31 17:08:13 -07001368{
Joonsoo Kimd4033af2013-04-29 15:07:35 -07001369 /*
Zhang Yanfei20fc02b2013-07-08 15:59:58 -07001370 * Before removing VM_UNINITIALIZED,
Joonsoo Kimd4033af2013-04-29 15:07:35 -07001371 * we should make sure that vm has proper values.
1372 * Pair with smp_rmb() in show_numa_info().
1373 */
1374 smp_wmb();
Zhang Yanfei20fc02b2013-07-08 15:59:58 -07001375 vm->flags &= ~VM_UNINITIALIZED;
Tejun Heocf88c792009-08-14 15:00:52 +09001376}
1377
Nick Piggindb64fe02008-10-18 20:27:03 -07001378static struct vm_struct *__get_vm_area_node(unsigned long size,
David Miller2dca6992009-09-21 12:22:34 -07001379 unsigned long align, unsigned long flags, unsigned long start,
Marek Szyprowski5e6cafc2012-04-13 12:32:09 +02001380 unsigned long end, int node, gfp_t gfp_mask, const void *caller)
Nick Piggindb64fe02008-10-18 20:27:03 -07001381{
Kautuk Consul00065262011-12-19 17:12:04 -08001382 struct vmap_area *va;
Nick Piggindb64fe02008-10-18 20:27:03 -07001383 struct vm_struct *area;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
Giridhar Pemmasani52fd24c2006-10-28 10:38:34 -07001385 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 size = PAGE_ALIGN(size);
OGAWA Hirofumi31be8302006-11-16 01:19:29 -08001387 if (unlikely(!size))
1388 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
zijun_hu252e5c62016-10-07 16:57:26 -07001390 if (flags & VM_IOREMAP)
1391 align = 1ul << clamp_t(int, get_count_order_long(size),
1392 PAGE_SHIFT, IOREMAP_MAX_ORDER);
1393
Tejun Heocf88c792009-08-14 15:00:52 +09001394 area = kzalloc_node(sizeof(*area), gfp_mask & GFP_RECLAIM_MASK, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 if (unlikely(!area))
1396 return NULL;
1397
Andrey Ryabinin71394fe2015-02-13 14:40:03 -08001398 if (!(flags & VM_NO_GUARD))
1399 size += PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
Nick Piggindb64fe02008-10-18 20:27:03 -07001401 va = alloc_vmap_area(size, align, start, end, node, gfp_mask);
1402 if (IS_ERR(va)) {
1403 kfree(area);
1404 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
Zhang Yanfeid82b1d82013-07-03 15:04:47 -07001407 setup_vmalloc_vm(area, va, flags, caller);
Mitsuo Hayasakaf5252e02011-10-31 17:08:13 -07001408
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 return area;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410}
1411
Christoph Lameter930fc452005-10-29 18:15:41 -07001412struct vm_struct *__get_vm_area(unsigned long size, unsigned long flags,
1413 unsigned long start, unsigned long end)
1414{
David Rientjes00ef2d22013-02-22 16:35:36 -08001415 return __get_vm_area_node(size, 1, flags, start, end, NUMA_NO_NODE,
1416 GFP_KERNEL, __builtin_return_address(0));
Christoph Lameter930fc452005-10-29 18:15:41 -07001417}
Rusty Russell5992b6d2007-07-19 01:49:21 -07001418EXPORT_SYMBOL_GPL(__get_vm_area);
Christoph Lameter930fc452005-10-29 18:15:41 -07001419
Benjamin Herrenschmidtc2968612009-02-18 14:48:12 -08001420struct vm_struct *__get_vm_area_caller(unsigned long size, unsigned long flags,
1421 unsigned long start, unsigned long end,
Marek Szyprowski5e6cafc2012-04-13 12:32:09 +02001422 const void *caller)
Benjamin Herrenschmidtc2968612009-02-18 14:48:12 -08001423{
David Rientjes00ef2d22013-02-22 16:35:36 -08001424 return __get_vm_area_node(size, 1, flags, start, end, NUMA_NO_NODE,
1425 GFP_KERNEL, caller);
Benjamin Herrenschmidtc2968612009-02-18 14:48:12 -08001426}
1427
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428/**
Simon Arlott183ff222007-10-20 01:27:18 +02001429 * get_vm_area - reserve a contiguous kernel virtual area
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 * @size: size of the area
1431 * @flags: %VM_IOREMAP for I/O mappings or VM_ALLOC
1432 *
1433 * Search an area of @size in the kernel virtual mapping area,
1434 * and reserved it for out purposes. Returns the area descriptor
1435 * on success or %NULL on failure.
1436 */
1437struct vm_struct *get_vm_area(unsigned long size, unsigned long flags)
1438{
David Miller2dca6992009-09-21 12:22:34 -07001439 return __get_vm_area_node(size, 1, flags, VMALLOC_START, VMALLOC_END,
David Rientjes00ef2d22013-02-22 16:35:36 -08001440 NUMA_NO_NODE, GFP_KERNEL,
1441 __builtin_return_address(0));
Christoph Lameter23016962008-04-28 02:12:42 -07001442}
1443
1444struct vm_struct *get_vm_area_caller(unsigned long size, unsigned long flags,
Marek Szyprowski5e6cafc2012-04-13 12:32:09 +02001445 const void *caller)
Christoph Lameter23016962008-04-28 02:12:42 -07001446{
David Miller2dca6992009-09-21 12:22:34 -07001447 return __get_vm_area_node(size, 1, flags, VMALLOC_START, VMALLOC_END,
David Rientjes00ef2d22013-02-22 16:35:36 -08001448 NUMA_NO_NODE, GFP_KERNEL, caller);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449}
1450
Marek Szyprowskie9da6e92012-07-30 09:11:33 +02001451/**
1452 * find_vm_area - find a continuous kernel virtual area
1453 * @addr: base address
1454 *
1455 * Search for the kernel VM area starting at @addr, and return it.
1456 * It is up to the caller to do all required locking to keep the returned
1457 * pointer valid.
1458 */
1459struct vm_struct *find_vm_area(const void *addr)
Nick Piggin83342312006-06-23 02:03:20 -07001460{
Nick Piggindb64fe02008-10-18 20:27:03 -07001461 struct vmap_area *va;
Nick Piggin83342312006-06-23 02:03:20 -07001462
Nick Piggindb64fe02008-10-18 20:27:03 -07001463 va = find_vmap_area((unsigned long)addr);
1464 if (va && va->flags & VM_VM_AREA)
Minchan Kimdb1aeca2012-01-10 15:08:39 -08001465 return va->vm;
Nick Piggin83342312006-06-23 02:03:20 -07001466
Andi Kleen7856dfe2005-05-20 14:27:57 -07001467 return NULL;
Andi Kleen7856dfe2005-05-20 14:27:57 -07001468}
1469
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470/**
Simon Arlott183ff222007-10-20 01:27:18 +02001471 * remove_vm_area - find and remove a continuous kernel virtual area
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 * @addr: base address
1473 *
1474 * Search for the kernel VM area starting at @addr, and remove it.
1475 * This function returns the found VM area, but using it is NOT safe
Andi Kleen7856dfe2005-05-20 14:27:57 -07001476 * on SMP machines, except for its size or flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 */
Christoph Lameterb3bdda02008-02-04 22:28:32 -08001478struct vm_struct *remove_vm_area(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479{
Nick Piggindb64fe02008-10-18 20:27:03 -07001480 struct vmap_area *va;
1481
Christoph Hellwig5803ed22016-12-12 16:44:20 -08001482 might_sleep();
1483
Nick Piggindb64fe02008-10-18 20:27:03 -07001484 va = find_vmap_area((unsigned long)addr);
1485 if (va && va->flags & VM_VM_AREA) {
Minchan Kimdb1aeca2012-01-10 15:08:39 -08001486 struct vm_struct *vm = va->vm;
Mitsuo Hayasakaf5252e02011-10-31 17:08:13 -07001487
Joonsoo Kimc69480a2013-04-29 15:07:30 -07001488 spin_lock(&vmap_area_lock);
1489 va->vm = NULL;
1490 va->flags &= ~VM_VM_AREA;
Yisheng Xie78c72742017-07-10 15:48:09 -07001491 va->flags |= VM_LAZY_FREE;
Joonsoo Kimc69480a2013-04-29 15:07:30 -07001492 spin_unlock(&vmap_area_lock);
1493
Andrey Ryabinina5af5aa2015-03-12 16:26:11 -07001494 kasan_free_shadow(vm);
KAMEZAWA Hiroyukidd32c272009-09-21 17:02:32 -07001495 free_unmap_vmap_area(va);
KAMEZAWA Hiroyukidd32c272009-09-21 17:02:32 -07001496
Nick Piggindb64fe02008-10-18 20:27:03 -07001497 return vm;
1498 }
1499 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500}
1501
Christoph Lameterb3bdda02008-02-04 22:28:32 -08001502static void __vunmap(const void *addr, int deallocate_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503{
1504 struct vm_struct *area;
1505
1506 if (!addr)
1507 return;
1508
HATAYAMA Daisukee69e9d4a2013-07-03 15:02:18 -07001509 if (WARN(!PAGE_ALIGNED(addr), "Trying to vfree() bad address (%p)\n",
Dan Carpenterab15d9b2013-07-08 15:59:53 -07001510 addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
Liviu Dudau224a82c2019-03-05 15:42:54 -08001513 area = find_vm_area(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 if (unlikely(!area)) {
Arjan van de Ven4c8573e2008-07-25 19:45:37 -07001515 WARN(1, KERN_ERR "Trying to vfree() nonexistent vm area (%p)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 return;
1518 }
1519
Chintan Pandya05e3ff92018-06-07 17:06:53 -07001520 debug_check_no_locks_freed(area->addr, get_vm_area_size(area));
1521 debug_check_no_obj_freed(area->addr, get_vm_area_size(area));
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07001522
Chintan Pandyaf3c01d22018-06-07 17:06:50 -07001523 remove_vm_area(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 if (deallocate_pages) {
1525 int i;
1526
1527 for (i = 0; i < area->nr_pages; i++) {
Christoph Lameterbf53d6f2008-02-04 22:28:34 -08001528 struct page *page = area->pages[i];
1529
1530 BUG_ON(!page);
Vladimir Davydov49491482016-07-26 15:24:24 -07001531 __free_pages(page, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 }
1533
David Rientjes244d63e2016-01-14 15:19:35 -08001534 kvfree(area->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 }
1536
1537 kfree(area);
1538 return;
1539}
Andrey Ryabininbf22e372016-12-12 16:44:10 -08001540
1541static inline void __vfree_deferred(const void *addr)
1542{
1543 /*
1544 * Use raw_cpu_ptr() because this can be called from preemptible
1545 * context. Preemption is absolutely fine here, because the llist_add()
1546 * implementation is lockless, so it works even if we are adding to
1547 * nother cpu's list. schedule_work() should be fine with this too.
1548 */
1549 struct vfree_deferred *p = raw_cpu_ptr(&vfree_deferred);
1550
1551 if (llist_add((struct llist_node *)addr, &p->list))
1552 schedule_work(&p->wq);
1553}
1554
1555/**
1556 * vfree_atomic - release memory allocated by vmalloc()
1557 * @addr: memory base address
1558 *
1559 * This one is just like vfree() but can be called in any atomic context
1560 * except NMIs.
1561 */
1562void vfree_atomic(const void *addr)
1563{
1564 BUG_ON(in_nmi());
1565
1566 kmemleak_free(addr);
1567
1568 if (!addr)
1569 return;
1570 __vfree_deferred(addr);
1571}
1572
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573/**
1574 * vfree - release memory allocated by vmalloc()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 * @addr: memory base address
1576 *
Simon Arlott183ff222007-10-20 01:27:18 +02001577 * Free the virtually continuous memory area starting at @addr, as
Pekka Enberg80e93ef2005-09-09 13:10:16 -07001578 * obtained from vmalloc(), vmalloc_32() or __vmalloc(). If @addr is
1579 * NULL, no operation is performed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 *
Al Viro32fcfd42013-03-10 20:14:08 -04001581 * Must not be called in NMI context (strictly speaking, only if we don't
1582 * have CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG, but making the calling
1583 * conventions for vfree() arch-depenedent would be a really bad idea)
Andrew Mortonc9fcee52013-05-07 16:18:18 -07001584 *
mchehab@s-opensource.com0e056eb2017-03-30 17:11:36 -03001585 * NOTE: assumes that the object at @addr has a size >= sizeof(llist_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 */
Christoph Lameterb3bdda02008-02-04 22:28:32 -08001587void vfree(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588{
Al Viro32fcfd42013-03-10 20:14:08 -04001589 BUG_ON(in_nmi());
Catalin Marinas89219d32009-06-11 13:23:19 +01001590
1591 kmemleak_free(addr);
1592
Al Viro32fcfd42013-03-10 20:14:08 -04001593 if (!addr)
1594 return;
Andrey Ryabininbf22e372016-12-12 16:44:10 -08001595 if (unlikely(in_interrupt()))
1596 __vfree_deferred(addr);
1597 else
Al Viro32fcfd42013-03-10 20:14:08 -04001598 __vunmap(addr, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600EXPORT_SYMBOL(vfree);
1601
1602/**
1603 * vunmap - release virtual mapping obtained by vmap()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 * @addr: memory base address
1605 *
1606 * Free the virtually contiguous memory area starting at @addr,
1607 * which was created from the page array passed to vmap().
1608 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07001609 * Must not be called in interrupt context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 */
Christoph Lameterb3bdda02008-02-04 22:28:32 -08001611void vunmap(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612{
1613 BUG_ON(in_interrupt());
Peter Zijlstra34754b62009-02-25 16:04:03 +01001614 might_sleep();
Al Viro32fcfd42013-03-10 20:14:08 -04001615 if (addr)
1616 __vunmap(addr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618EXPORT_SYMBOL(vunmap);
1619
1620/**
1621 * vmap - map an array of pages into virtually contiguous space
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 * @pages: array of page pointers
1623 * @count: number of pages to map
1624 * @flags: vm_area->flags
1625 * @prot: page protection for the mapping
1626 *
1627 * Maps @count pages from @pages into contiguous kernel virtual
1628 * space.
1629 */
1630void *vmap(struct page **pages, unsigned int count,
1631 unsigned long flags, pgprot_t prot)
1632{
1633 struct vm_struct *area;
Guillermo Julián Moreno65ee03c2016-06-03 14:55:33 -07001634 unsigned long size; /* In bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
Peter Zijlstra34754b62009-02-25 16:04:03 +01001636 might_sleep();
1637
Jan Beulich44813742009-09-21 17:03:05 -07001638 if (count > totalram_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 return NULL;
1640
Guillermo Julián Moreno65ee03c2016-06-03 14:55:33 -07001641 size = (unsigned long)count << PAGE_SHIFT;
1642 area = get_vm_area_caller(size, flags, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 if (!area)
1644 return NULL;
Christoph Lameter23016962008-04-28 02:12:42 -07001645
WANG Chaof6f8ed42014-08-06 16:06:58 -07001646 if (map_vm_area(area, prot, pages)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 vunmap(area->addr);
1648 return NULL;
1649 }
1650
1651 return area->addr;
1652}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653EXPORT_SYMBOL(vmap);
1654
Michal Hocko8594a212017-05-12 15:46:41 -07001655static void *__vmalloc_node(unsigned long size, unsigned long align,
1656 gfp_t gfp_mask, pgprot_t prot,
1657 int node, const void *caller);
Adrian Bunke31d9eb2008-02-04 22:29:09 -08001658static void *__vmalloc_area_node(struct vm_struct *area, gfp_t gfp_mask,
Wanpeng Li3722e132013-11-12 15:07:29 -08001659 pgprot_t prot, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660{
1661 struct page **pages;
1662 unsigned int nr_pages, array_size, i;
David Rientjes930f0362014-08-06 16:06:28 -07001663 const gfp_t nested_gfp = (gfp_mask & GFP_RECLAIM_MASK) | __GFP_ZERO;
Laura Abbott704b8622017-08-18 15:16:27 -07001664 const gfp_t alloc_mask = gfp_mask | __GFP_NOWARN;
1665 const gfp_t highmem_mask = (gfp_mask & (GFP_DMA | GFP_DMA32)) ?
1666 0 :
1667 __GFP_HIGHMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
Wanpeng Li762216a2013-09-11 14:22:42 -07001669 nr_pages = get_vm_area_size(area) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 array_size = (nr_pages * sizeof(struct page *));
1671
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 /* Please note that the recursion is strictly bounded. */
Jan Kiszka8757d5f2006-07-14 00:23:56 -07001673 if (array_size > PAGE_SIZE) {
Laura Abbott704b8622017-08-18 15:16:27 -07001674 pages = __vmalloc_node(array_size, 1, nested_gfp|highmem_mask,
Wanpeng Li3722e132013-11-12 15:07:29 -08001675 PAGE_KERNEL, node, area->caller);
Andrew Morton286e1ea2006-10-17 00:09:57 -07001676 } else {
Jan Beulich976d6df2009-12-14 17:58:39 -08001677 pages = kmalloc_node(array_size, nested_gfp, node);
Andrew Morton286e1ea2006-10-17 00:09:57 -07001678 }
Austin Kim1c6c19b2019-09-23 15:36:42 -07001679
1680 if (!pages) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 remove_vm_area(area->addr);
1682 kfree(area);
1683 return NULL;
1684 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
Austin Kim1c6c19b2019-09-23 15:36:42 -07001686 area->pages = pages;
1687 area->nr_pages = nr_pages;
1688
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 for (i = 0; i < area->nr_pages; i++) {
Christoph Lameterbf53d6f2008-02-04 22:28:34 -08001690 struct page *page;
1691
Jianguo Wu4b909512013-11-12 15:07:11 -08001692 if (node == NUMA_NO_NODE)
Laura Abbott704b8622017-08-18 15:16:27 -07001693 page = alloc_page(alloc_mask|highmem_mask);
Christoph Lameter930fc452005-10-29 18:15:41 -07001694 else
Laura Abbott704b8622017-08-18 15:16:27 -07001695 page = alloc_pages_node(node, alloc_mask|highmem_mask, 0);
Christoph Lameterbf53d6f2008-02-04 22:28:34 -08001696
1697 if (unlikely(!page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 /* Successfully allocated i pages, free them in __vunmap() */
1699 area->nr_pages = i;
1700 goto fail;
1701 }
Christoph Lameterbf53d6f2008-02-04 22:28:34 -08001702 area->pages[i] = page;
Laura Abbott704b8622017-08-18 15:16:27 -07001703 if (gfpflags_allow_blocking(gfp_mask|highmem_mask))
Eric Dumazet660654f2014-08-06 16:06:25 -07001704 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 }
1706
WANG Chaof6f8ed42014-08-06 16:06:58 -07001707 if (map_vm_area(area, prot, pages))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 goto fail;
1709 return area->addr;
1710
1711fail:
Michal Hockoa8e99252017-02-22 15:46:10 -08001712 warn_alloc(gfp_mask, NULL,
Michal Hocko7877cdc2016-10-07 17:01:55 -07001713 "vmalloc: allocation failure, allocated %ld of %ld bytes",
Dave Hansen22943ab2011-05-24 17:12:18 -07001714 (area->nr_pages*PAGE_SIZE), area->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 vfree(area->addr);
1716 return NULL;
1717}
1718
David Rientjesd0a21262011-01-13 15:46:02 -08001719/**
1720 * __vmalloc_node_range - allocate virtually contiguous memory
1721 * @size: allocation size
1722 * @align: desired alignment
1723 * @start: vm area range start
1724 * @end: vm area range end
1725 * @gfp_mask: flags for the page level allocator
1726 * @prot: protection mask for the allocated pages
Andrey Ryabinincb9e3c22015-02-13 14:40:07 -08001727 * @vm_flags: additional vm area flags (e.g. %VM_NO_GUARD)
David Rientjes00ef2d22013-02-22 16:35:36 -08001728 * @node: node to use for allocation or NUMA_NO_NODE
David Rientjesd0a21262011-01-13 15:46:02 -08001729 * @caller: caller's return address
1730 *
1731 * Allocate enough pages to cover @size from the page level
1732 * allocator with @gfp_mask flags. Map them into contiguous
1733 * kernel virtual space, using a pagetable protection of @prot.
1734 */
1735void *__vmalloc_node_range(unsigned long size, unsigned long align,
1736 unsigned long start, unsigned long end, gfp_t gfp_mask,
Andrey Ryabinincb9e3c22015-02-13 14:40:07 -08001737 pgprot_t prot, unsigned long vm_flags, int node,
1738 const void *caller)
Christoph Lameter930fc452005-10-29 18:15:41 -07001739{
David Rientjesd0a21262011-01-13 15:46:02 -08001740 struct vm_struct *area;
1741 void *addr;
1742 unsigned long real_size = size;
1743
1744 size = PAGE_ALIGN(size);
1745 if (!size || (size >> PAGE_SHIFT) > totalram_pages)
Joe Perchesde7d2b52011-10-31 17:08:48 -07001746 goto fail;
David Rientjesd0a21262011-01-13 15:46:02 -08001747
Andrey Ryabinincb9e3c22015-02-13 14:40:07 -08001748 area = __get_vm_area_node(size, align, VM_ALLOC | VM_UNINITIALIZED |
1749 vm_flags, start, end, node, gfp_mask, caller);
David Rientjesd0a21262011-01-13 15:46:02 -08001750 if (!area)
Joe Perchesde7d2b52011-10-31 17:08:48 -07001751 goto fail;
David Rientjesd0a21262011-01-13 15:46:02 -08001752
Wanpeng Li3722e132013-11-12 15:07:29 -08001753 addr = __vmalloc_area_node(area, gfp_mask, prot, node);
Mel Gorman1368edf2011-12-08 14:34:30 -08001754 if (!addr)
Wanpeng Lib82225f32013-11-12 15:07:33 -08001755 return NULL;
Catalin Marinas89219d32009-06-11 13:23:19 +01001756
1757 /*
Joerg Roedel46b306f2019-07-19 20:46:52 +02001758 * First make sure the mappings are removed from all page-tables
1759 * before they are freed.
1760 */
Joerg Roedel6c1051f2020-03-21 18:22:41 -07001761 vmalloc_sync_unmappings();
Joerg Roedel46b306f2019-07-19 20:46:52 +02001762
1763 /*
Zhang Yanfei20fc02b2013-07-08 15:59:58 -07001764 * In this function, newly allocated vm_struct has VM_UNINITIALIZED
1765 * flag. It means that vm_struct is not fully initialized.
Joonsoo Kim4341fa42013-04-29 15:07:39 -07001766 * Now, it is fully initialized, so remove this flag here.
Mitsuo Hayasakaf5252e02011-10-31 17:08:13 -07001767 */
Zhang Yanfei20fc02b2013-07-08 15:59:58 -07001768 clear_vm_uninitialized_flag(area);
Mitsuo Hayasakaf5252e02011-10-31 17:08:13 -07001769
Catalin Marinas94f4a162017-07-06 15:40:22 -07001770 kmemleak_vmalloc(area, size, gfp_mask);
Catalin Marinas89219d32009-06-11 13:23:19 +01001771
1772 return addr;
Joe Perchesde7d2b52011-10-31 17:08:48 -07001773
1774fail:
Michal Hockoa8e99252017-02-22 15:46:10 -08001775 warn_alloc(gfp_mask, NULL,
Michal Hocko7877cdc2016-10-07 17:01:55 -07001776 "vmalloc: allocation failure: %lu bytes", real_size);
Joe Perchesde7d2b52011-10-31 17:08:48 -07001777 return NULL;
Christoph Lameter930fc452005-10-29 18:15:41 -07001778}
1779
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780/**
Christoph Lameter930fc452005-10-29 18:15:41 -07001781 * __vmalloc_node - allocate virtually contiguous memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 * @size: allocation size
David Miller2dca6992009-09-21 12:22:34 -07001783 * @align: desired alignment
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 * @gfp_mask: flags for the page level allocator
1785 * @prot: protection mask for the allocated pages
David Rientjes00ef2d22013-02-22 16:35:36 -08001786 * @node: node to use for allocation or NUMA_NO_NODE
Randy Dunlapc85d1942008-05-01 04:34:48 -07001787 * @caller: caller's return address
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 *
1789 * Allocate enough pages to cover @size from the page level
1790 * allocator with @gfp_mask flags. Map them into contiguous
1791 * kernel virtual space, using a pagetable protection of @prot.
Michal Hockoa7c3e902017-05-08 15:57:09 -07001792 *
Michal Hockodcda9b02017-07-12 14:36:45 -07001793 * Reclaim modifiers in @gfp_mask - __GFP_NORETRY, __GFP_RETRY_MAYFAIL
Michal Hockoa7c3e902017-05-08 15:57:09 -07001794 * and __GFP_NOFAIL are not supported
1795 *
1796 * Any use of gfp flags outside of GFP_KERNEL should be consulted
1797 * with mm people.
1798 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 */
Michal Hocko8594a212017-05-12 15:46:41 -07001800static void *__vmalloc_node(unsigned long size, unsigned long align,
David Miller2dca6992009-09-21 12:22:34 -07001801 gfp_t gfp_mask, pgprot_t prot,
Marek Szyprowski5e6cafc2012-04-13 12:32:09 +02001802 int node, const void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803{
David Rientjesd0a21262011-01-13 15:46:02 -08001804 return __vmalloc_node_range(size, align, VMALLOC_START, VMALLOC_END,
Andrey Ryabinincb9e3c22015-02-13 14:40:07 -08001805 gfp_mask, prot, 0, node, caller);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806}
1807
Christoph Lameter930fc452005-10-29 18:15:41 -07001808void *__vmalloc(unsigned long size, gfp_t gfp_mask, pgprot_t prot)
1809{
David Rientjes00ef2d22013-02-22 16:35:36 -08001810 return __vmalloc_node(size, 1, gfp_mask, prot, NUMA_NO_NODE,
Christoph Lameter23016962008-04-28 02:12:42 -07001811 __builtin_return_address(0));
Christoph Lameter930fc452005-10-29 18:15:41 -07001812}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813EXPORT_SYMBOL(__vmalloc);
1814
Michal Hocko8594a212017-05-12 15:46:41 -07001815static inline void *__vmalloc_node_flags(unsigned long size,
1816 int node, gfp_t flags)
1817{
1818 return __vmalloc_node(size, 1, flags, PAGE_KERNEL,
1819 node, __builtin_return_address(0));
1820}
1821
1822
1823void *__vmalloc_node_flags_caller(unsigned long size, int node, gfp_t flags,
1824 void *caller)
1825{
1826 return __vmalloc_node(size, 1, flags, PAGE_KERNEL, node, caller);
1827}
1828
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829/**
1830 * vmalloc - allocate virtually contiguous memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 * @size: allocation size
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 * Allocate enough pages to cover @size from the page level
1833 * allocator and map them into contiguous kernel virtual space.
1834 *
Michael Opdenackerc1c88972006-10-03 23:21:02 +02001835 * For tight control over page level allocator and protection flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 * use __vmalloc() instead.
1837 */
1838void *vmalloc(unsigned long size)
1839{
David Rientjes00ef2d22013-02-22 16:35:36 -08001840 return __vmalloc_node_flags(size, NUMA_NO_NODE,
Michal Hocko19809c22017-05-08 15:57:44 -07001841 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843EXPORT_SYMBOL(vmalloc);
1844
Christoph Lameter930fc452005-10-29 18:15:41 -07001845/**
Dave Younge1ca7782010-10-26 14:22:06 -07001846 * vzalloc - allocate virtually contiguous memory with zero fill
1847 * @size: allocation size
1848 * Allocate enough pages to cover @size from the page level
1849 * allocator and map them into contiguous kernel virtual space.
1850 * The memory allocated is set to zero.
1851 *
1852 * For tight control over page level allocator and protection flags
1853 * use __vmalloc() instead.
1854 */
1855void *vzalloc(unsigned long size)
1856{
David Rientjes00ef2d22013-02-22 16:35:36 -08001857 return __vmalloc_node_flags(size, NUMA_NO_NODE,
Michal Hocko19809c22017-05-08 15:57:44 -07001858 GFP_KERNEL | __GFP_ZERO);
Dave Younge1ca7782010-10-26 14:22:06 -07001859}
1860EXPORT_SYMBOL(vzalloc);
1861
1862/**
Rolf Eike Beeread04082006-09-27 01:50:13 -07001863 * vmalloc_user - allocate zeroed virtually contiguous memory for userspace
1864 * @size: allocation size
Nick Piggin83342312006-06-23 02:03:20 -07001865 *
Rolf Eike Beeread04082006-09-27 01:50:13 -07001866 * The resulting memory area is zeroed so it can be mapped to userspace
1867 * without leaking data.
Nick Piggin83342312006-06-23 02:03:20 -07001868 */
1869void *vmalloc_user(unsigned long size)
1870{
1871 struct vm_struct *area;
1872 void *ret;
1873
David Miller2dca6992009-09-21 12:22:34 -07001874 ret = __vmalloc_node(size, SHMLBA,
Michal Hocko19809c22017-05-08 15:57:44 -07001875 GFP_KERNEL | __GFP_ZERO,
David Rientjes00ef2d22013-02-22 16:35:36 -08001876 PAGE_KERNEL, NUMA_NO_NODE,
1877 __builtin_return_address(0));
Eric Dumazet2b4ac442006-11-10 12:27:48 -08001878 if (ret) {
Nick Piggindb64fe02008-10-18 20:27:03 -07001879 area = find_vm_area(ret);
Eric Dumazet2b4ac442006-11-10 12:27:48 -08001880 area->flags |= VM_USERMAP;
Eric Dumazet2b4ac442006-11-10 12:27:48 -08001881 }
Nick Piggin83342312006-06-23 02:03:20 -07001882 return ret;
1883}
1884EXPORT_SYMBOL(vmalloc_user);
1885
1886/**
Christoph Lameter930fc452005-10-29 18:15:41 -07001887 * vmalloc_node - allocate memory on a specific node
Christoph Lameter930fc452005-10-29 18:15:41 -07001888 * @size: allocation size
Randy Dunlapd44e0782005-11-07 01:01:10 -08001889 * @node: numa node
Christoph Lameter930fc452005-10-29 18:15:41 -07001890 *
1891 * Allocate enough pages to cover @size from the page level
1892 * allocator and map them into contiguous kernel virtual space.
1893 *
Michael Opdenackerc1c88972006-10-03 23:21:02 +02001894 * For tight control over page level allocator and protection flags
Christoph Lameter930fc452005-10-29 18:15:41 -07001895 * use __vmalloc() instead.
1896 */
1897void *vmalloc_node(unsigned long size, int node)
1898{
Michal Hocko19809c22017-05-08 15:57:44 -07001899 return __vmalloc_node(size, 1, GFP_KERNEL, PAGE_KERNEL,
Christoph Lameter23016962008-04-28 02:12:42 -07001900 node, __builtin_return_address(0));
Christoph Lameter930fc452005-10-29 18:15:41 -07001901}
1902EXPORT_SYMBOL(vmalloc_node);
1903
Dave Younge1ca7782010-10-26 14:22:06 -07001904/**
1905 * vzalloc_node - allocate memory on a specific node with zero fill
1906 * @size: allocation size
1907 * @node: numa node
1908 *
1909 * Allocate enough pages to cover @size from the page level
1910 * allocator and map them into contiguous kernel virtual space.
1911 * The memory allocated is set to zero.
1912 *
1913 * For tight control over page level allocator and protection flags
1914 * use __vmalloc_node() instead.
1915 */
1916void *vzalloc_node(unsigned long size, int node)
1917{
1918 return __vmalloc_node_flags(size, node,
Michal Hocko19809c22017-05-08 15:57:44 -07001919 GFP_KERNEL | __GFP_ZERO);
Dave Younge1ca7782010-10-26 14:22:06 -07001920}
1921EXPORT_SYMBOL(vzalloc_node);
1922
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923/**
1924 * vmalloc_exec - allocate virtually contiguous, executable memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 * @size: allocation size
1926 *
1927 * Kernel-internal function to allocate enough pages to cover @size
1928 * the page level allocator and map them into contiguous and
1929 * executable kernel virtual space.
1930 *
Michael Opdenackerc1c88972006-10-03 23:21:02 +02001931 * For tight control over page level allocator and protection flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 * use __vmalloc() instead.
1933 */
1934
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935void *vmalloc_exec(unsigned long size)
1936{
Michal Hocko19809c22017-05-08 15:57:44 -07001937 return __vmalloc_node(size, 1, GFP_KERNEL, PAGE_KERNEL_EXEC,
David Rientjes00ef2d22013-02-22 16:35:36 -08001938 NUMA_NO_NODE, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939}
1940
Andi Kleen0d08e0d2007-05-02 19:27:12 +02001941#if defined(CONFIG_64BIT) && defined(CONFIG_ZONE_DMA32)
Michal Hocko698d0832018-02-21 14:46:01 -08001942#define GFP_VMALLOC32 (GFP_DMA32 | GFP_KERNEL)
Andi Kleen0d08e0d2007-05-02 19:27:12 +02001943#elif defined(CONFIG_64BIT) && defined(CONFIG_ZONE_DMA)
Michal Hocko698d0832018-02-21 14:46:01 -08001944#define GFP_VMALLOC32 (GFP_DMA | GFP_KERNEL)
Andi Kleen0d08e0d2007-05-02 19:27:12 +02001945#else
Michal Hocko698d0832018-02-21 14:46:01 -08001946/*
1947 * 64b systems should always have either DMA or DMA32 zones. For others
1948 * GFP_DMA32 should do the right thing and use the normal zone.
1949 */
1950#define GFP_VMALLOC32 GFP_DMA32 | GFP_KERNEL
Andi Kleen0d08e0d2007-05-02 19:27:12 +02001951#endif
1952
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953/**
1954 * vmalloc_32 - allocate virtually contiguous memory (32bit addressable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 * @size: allocation size
1956 *
1957 * Allocate enough 32bit PA addressable pages to cover @size from the
1958 * page level allocator and map them into contiguous kernel virtual space.
1959 */
1960void *vmalloc_32(unsigned long size)
1961{
David Miller2dca6992009-09-21 12:22:34 -07001962 return __vmalloc_node(size, 1, GFP_VMALLOC32, PAGE_KERNEL,
David Rientjes00ef2d22013-02-22 16:35:36 -08001963 NUMA_NO_NODE, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965EXPORT_SYMBOL(vmalloc_32);
1966
Nick Piggin83342312006-06-23 02:03:20 -07001967/**
Rolf Eike Beeread04082006-09-27 01:50:13 -07001968 * vmalloc_32_user - allocate zeroed virtually contiguous 32bit memory
Nick Piggin83342312006-06-23 02:03:20 -07001969 * @size: allocation size
Rolf Eike Beeread04082006-09-27 01:50:13 -07001970 *
1971 * The resulting memory area is 32bit addressable and zeroed so it can be
1972 * mapped to userspace without leaking data.
Nick Piggin83342312006-06-23 02:03:20 -07001973 */
1974void *vmalloc_32_user(unsigned long size)
1975{
1976 struct vm_struct *area;
1977 void *ret;
1978
David Miller2dca6992009-09-21 12:22:34 -07001979 ret = __vmalloc_node(size, 1, GFP_VMALLOC32 | __GFP_ZERO, PAGE_KERNEL,
David Rientjes00ef2d22013-02-22 16:35:36 -08001980 NUMA_NO_NODE, __builtin_return_address(0));
Eric Dumazet2b4ac442006-11-10 12:27:48 -08001981 if (ret) {
Nick Piggindb64fe02008-10-18 20:27:03 -07001982 area = find_vm_area(ret);
Eric Dumazet2b4ac442006-11-10 12:27:48 -08001983 area->flags |= VM_USERMAP;
Eric Dumazet2b4ac442006-11-10 12:27:48 -08001984 }
Nick Piggin83342312006-06-23 02:03:20 -07001985 return ret;
1986}
1987EXPORT_SYMBOL(vmalloc_32_user);
1988
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07001989/*
1990 * small helper routine , copy contents to buf from addr.
1991 * If the page is not present, fill zero.
1992 */
1993
1994static int aligned_vread(char *buf, char *addr, unsigned long count)
1995{
1996 struct page *p;
1997 int copied = 0;
1998
1999 while (count) {
2000 unsigned long offset, length;
2001
Alexander Kuleshov891c49a2015-11-05 18:46:51 -08002002 offset = offset_in_page(addr);
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002003 length = PAGE_SIZE - offset;
2004 if (length > count)
2005 length = count;
2006 p = vmalloc_to_page(addr);
2007 /*
2008 * To do safe access to this _mapped_ area, we need
2009 * lock. But adding lock here means that we need to add
2010 * overhead of vmalloc()/vfree() calles for this _debug_
2011 * interface, rarely used. Instead of that, we'll use
2012 * kmap() and get small overhead in this access function.
2013 */
2014 if (p) {
2015 /*
2016 * we can expect USER0 is not used (see vread/vwrite's
2017 * function description)
2018 */
Cong Wang9b04c5f2011-11-25 23:14:39 +08002019 void *map = kmap_atomic(p);
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002020 memcpy(buf, map + offset, length);
Cong Wang9b04c5f2011-11-25 23:14:39 +08002021 kunmap_atomic(map);
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002022 } else
2023 memset(buf, 0, length);
2024
2025 addr += length;
2026 buf += length;
2027 copied += length;
2028 count -= length;
2029 }
2030 return copied;
2031}
2032
2033static int aligned_vwrite(char *buf, char *addr, unsigned long count)
2034{
2035 struct page *p;
2036 int copied = 0;
2037
2038 while (count) {
2039 unsigned long offset, length;
2040
Alexander Kuleshov891c49a2015-11-05 18:46:51 -08002041 offset = offset_in_page(addr);
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002042 length = PAGE_SIZE - offset;
2043 if (length > count)
2044 length = count;
2045 p = vmalloc_to_page(addr);
2046 /*
2047 * To do safe access to this _mapped_ area, we need
2048 * lock. But adding lock here means that we need to add
2049 * overhead of vmalloc()/vfree() calles for this _debug_
2050 * interface, rarely used. Instead of that, we'll use
2051 * kmap() and get small overhead in this access function.
2052 */
2053 if (p) {
2054 /*
2055 * we can expect USER0 is not used (see vread/vwrite's
2056 * function description)
2057 */
Cong Wang9b04c5f2011-11-25 23:14:39 +08002058 void *map = kmap_atomic(p);
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002059 memcpy(map + offset, buf, length);
Cong Wang9b04c5f2011-11-25 23:14:39 +08002060 kunmap_atomic(map);
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002061 }
2062 addr += length;
2063 buf += length;
2064 copied += length;
2065 count -= length;
2066 }
2067 return copied;
2068}
2069
2070/**
2071 * vread() - read vmalloc area in a safe way.
2072 * @buf: buffer for reading data
2073 * @addr: vm address.
2074 * @count: number of bytes to be read.
2075 *
2076 * Returns # of bytes which addr and buf should be increased.
2077 * (same number to @count). Returns 0 if [addr...addr+count) doesn't
2078 * includes any intersect with alive vmalloc area.
2079 *
2080 * This function checks that addr is a valid vmalloc'ed area, and
2081 * copy data from that area to a given buffer. If the given memory range
2082 * of [addr...addr+count) includes some valid address, data is copied to
2083 * proper area of @buf. If there are memory holes, they'll be zero-filled.
2084 * IOREMAP area is treated as memory hole and no copy is done.
2085 *
2086 * If [addr...addr+count) doesn't includes any intersects with alive
Cong Wanga8e52022012-06-23 11:30:16 +08002087 * vm_struct area, returns 0. @buf should be kernel's buffer.
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002088 *
2089 * Note: In usual ops, vread() is never necessary because the caller
2090 * should know vmalloc() area is valid and can use memcpy().
2091 * This is for routines which have to access vmalloc area without
2092 * any informaion, as /dev/kmem.
2093 *
2094 */
2095
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096long vread(char *buf, char *addr, unsigned long count)
2097{
Joonsoo Kime81ce852013-04-29 15:07:32 -07002098 struct vmap_area *va;
2099 struct vm_struct *vm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 char *vaddr, *buf_start = buf;
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002101 unsigned long buflen = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 unsigned long n;
2103
2104 /* Don't allow overflow */
2105 if ((unsigned long) addr + count < count)
2106 count = -(unsigned long) addr;
2107
Joonsoo Kime81ce852013-04-29 15:07:32 -07002108 spin_lock(&vmap_area_lock);
2109 list_for_each_entry(va, &vmap_area_list, list) {
2110 if (!count)
2111 break;
2112
2113 if (!(va->flags & VM_VM_AREA))
2114 continue;
2115
2116 vm = va->vm;
2117 vaddr = (char *) vm->addr;
Wanpeng Li762216a2013-09-11 14:22:42 -07002118 if (addr >= vaddr + get_vm_area_size(vm))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 continue;
2120 while (addr < vaddr) {
2121 if (count == 0)
2122 goto finished;
2123 *buf = '\0';
2124 buf++;
2125 addr++;
2126 count--;
2127 }
Wanpeng Li762216a2013-09-11 14:22:42 -07002128 n = vaddr + get_vm_area_size(vm) - addr;
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002129 if (n > count)
2130 n = count;
Joonsoo Kime81ce852013-04-29 15:07:32 -07002131 if (!(vm->flags & VM_IOREMAP))
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002132 aligned_vread(buf, addr, n);
2133 else /* IOREMAP area is treated as memory hole */
2134 memset(buf, 0, n);
2135 buf += n;
2136 addr += n;
2137 count -= n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 }
2139finished:
Joonsoo Kime81ce852013-04-29 15:07:32 -07002140 spin_unlock(&vmap_area_lock);
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002141
2142 if (buf == buf_start)
2143 return 0;
2144 /* zero-fill memory holes */
2145 if (buf != buf_start + buflen)
2146 memset(buf, 0, buflen - (buf - buf_start));
2147
2148 return buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149}
2150
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002151/**
2152 * vwrite() - write vmalloc area in a safe way.
2153 * @buf: buffer for source data
2154 * @addr: vm address.
2155 * @count: number of bytes to be read.
2156 *
2157 * Returns # of bytes which addr and buf should be incresed.
2158 * (same number to @count).
2159 * If [addr...addr+count) doesn't includes any intersect with valid
2160 * vmalloc area, returns 0.
2161 *
2162 * This function checks that addr is a valid vmalloc'ed area, and
2163 * copy data from a buffer to the given addr. If specified range of
2164 * [addr...addr+count) includes some valid address, data is copied from
2165 * proper area of @buf. If there are memory holes, no copy to hole.
2166 * IOREMAP area is treated as memory hole and no copy is done.
2167 *
2168 * If [addr...addr+count) doesn't includes any intersects with alive
Cong Wanga8e52022012-06-23 11:30:16 +08002169 * vm_struct area, returns 0. @buf should be kernel's buffer.
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002170 *
2171 * Note: In usual ops, vwrite() is never necessary because the caller
2172 * should know vmalloc() area is valid and can use memcpy().
2173 * This is for routines which have to access vmalloc area without
2174 * any informaion, as /dev/kmem.
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002175 */
2176
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177long vwrite(char *buf, char *addr, unsigned long count)
2178{
Joonsoo Kime81ce852013-04-29 15:07:32 -07002179 struct vmap_area *va;
2180 struct vm_struct *vm;
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002181 char *vaddr;
2182 unsigned long n, buflen;
2183 int copied = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
2185 /* Don't allow overflow */
2186 if ((unsigned long) addr + count < count)
2187 count = -(unsigned long) addr;
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002188 buflen = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
Joonsoo Kime81ce852013-04-29 15:07:32 -07002190 spin_lock(&vmap_area_lock);
2191 list_for_each_entry(va, &vmap_area_list, list) {
2192 if (!count)
2193 break;
2194
2195 if (!(va->flags & VM_VM_AREA))
2196 continue;
2197
2198 vm = va->vm;
2199 vaddr = (char *) vm->addr;
Wanpeng Li762216a2013-09-11 14:22:42 -07002200 if (addr >= vaddr + get_vm_area_size(vm))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 continue;
2202 while (addr < vaddr) {
2203 if (count == 0)
2204 goto finished;
2205 buf++;
2206 addr++;
2207 count--;
2208 }
Wanpeng Li762216a2013-09-11 14:22:42 -07002209 n = vaddr + get_vm_area_size(vm) - addr;
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002210 if (n > count)
2211 n = count;
Joonsoo Kime81ce852013-04-29 15:07:32 -07002212 if (!(vm->flags & VM_IOREMAP)) {
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002213 aligned_vwrite(buf, addr, n);
2214 copied++;
2215 }
2216 buf += n;
2217 addr += n;
2218 count -= n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 }
2220finished:
Joonsoo Kime81ce852013-04-29 15:07:32 -07002221 spin_unlock(&vmap_area_lock);
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002222 if (!copied)
2223 return 0;
2224 return buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225}
Nick Piggin83342312006-06-23 02:03:20 -07002226
2227/**
HATAYAMA Daisukee69e9d4a2013-07-03 15:02:18 -07002228 * remap_vmalloc_range_partial - map vmalloc pages to userspace
2229 * @vma: vma to cover
2230 * @uaddr: target user address to start at
2231 * @kaddr: virtual address of vmalloc kernel memory
Jann Hornd8da38e2020-04-20 18:14:11 -07002232 * @pgoff: offset from @kaddr to start at
HATAYAMA Daisukee69e9d4a2013-07-03 15:02:18 -07002233 * @size: size of map area
2234 *
2235 * Returns: 0 for success, -Exxx on failure
2236 *
2237 * This function checks that @kaddr is a valid vmalloc'ed area,
2238 * and that it is big enough to cover the range starting at
2239 * @uaddr in @vma. Will return failure if that criteria isn't
2240 * met.
2241 *
2242 * Similar to remap_pfn_range() (see mm/memory.c)
2243 */
2244int remap_vmalloc_range_partial(struct vm_area_struct *vma, unsigned long uaddr,
Jann Hornd8da38e2020-04-20 18:14:11 -07002245 void *kaddr, unsigned long pgoff,
2246 unsigned long size)
HATAYAMA Daisukee69e9d4a2013-07-03 15:02:18 -07002247{
2248 struct vm_struct *area;
Jann Hornd8da38e2020-04-20 18:14:11 -07002249 unsigned long off;
2250 unsigned long end_index;
2251
2252 if (check_shl_overflow(pgoff, PAGE_SHIFT, &off))
2253 return -EINVAL;
HATAYAMA Daisukee69e9d4a2013-07-03 15:02:18 -07002254
2255 size = PAGE_ALIGN(size);
2256
2257 if (!PAGE_ALIGNED(uaddr) || !PAGE_ALIGNED(kaddr))
2258 return -EINVAL;
2259
2260 area = find_vm_area(kaddr);
2261 if (!area)
2262 return -EINVAL;
2263
2264 if (!(area->flags & VM_USERMAP))
2265 return -EINVAL;
2266
Jann Hornd8da38e2020-04-20 18:14:11 -07002267 if (check_add_overflow(size, off, &end_index) ||
2268 end_index > get_vm_area_size(area))
HATAYAMA Daisukee69e9d4a2013-07-03 15:02:18 -07002269 return -EINVAL;
Jann Hornd8da38e2020-04-20 18:14:11 -07002270 kaddr += off;
HATAYAMA Daisukee69e9d4a2013-07-03 15:02:18 -07002271
2272 do {
2273 struct page *page = vmalloc_to_page(kaddr);
2274 int ret;
2275
2276 ret = vm_insert_page(vma, uaddr, page);
2277 if (ret)
2278 return ret;
2279
2280 uaddr += PAGE_SIZE;
2281 kaddr += PAGE_SIZE;
2282 size -= PAGE_SIZE;
2283 } while (size > 0);
2284
2285 vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
2286
2287 return 0;
2288}
2289EXPORT_SYMBOL(remap_vmalloc_range_partial);
2290
2291/**
Nick Piggin83342312006-06-23 02:03:20 -07002292 * remap_vmalloc_range - map vmalloc pages to userspace
Nick Piggin83342312006-06-23 02:03:20 -07002293 * @vma: vma to cover (map full range of vma)
2294 * @addr: vmalloc memory
2295 * @pgoff: number of pages into addr before first page to map
Randy Dunlap76824862008-03-19 17:00:40 -07002296 *
2297 * Returns: 0 for success, -Exxx on failure
Nick Piggin83342312006-06-23 02:03:20 -07002298 *
2299 * This function checks that addr is a valid vmalloc'ed area, and
2300 * that it is big enough to cover the vma. Will return failure if
2301 * that criteria isn't met.
2302 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08002303 * Similar to remap_pfn_range() (see mm/memory.c)
Nick Piggin83342312006-06-23 02:03:20 -07002304 */
2305int remap_vmalloc_range(struct vm_area_struct *vma, void *addr,
2306 unsigned long pgoff)
2307{
HATAYAMA Daisukee69e9d4a2013-07-03 15:02:18 -07002308 return remap_vmalloc_range_partial(vma, vma->vm_start,
Jann Hornd8da38e2020-04-20 18:14:11 -07002309 addr, pgoff,
HATAYAMA Daisukee69e9d4a2013-07-03 15:02:18 -07002310 vma->vm_end - vma->vm_start);
Nick Piggin83342312006-06-23 02:03:20 -07002311}
2312EXPORT_SYMBOL(remap_vmalloc_range);
2313
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -07002314/*
Joerg Roedel6c1051f2020-03-21 18:22:41 -07002315 * Implement stubs for vmalloc_sync_[un]mappings () if the architecture chose
2316 * not to have one.
Joerg Roedel46b306f2019-07-19 20:46:52 +02002317 *
2318 * The purpose of this function is to make sure the vmalloc area
2319 * mappings are identical in all page-tables in the system.
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -07002320 */
Joerg Roedel6c1051f2020-03-21 18:22:41 -07002321void __weak vmalloc_sync_mappings(void)
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -07002322{
2323}
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07002324
Joerg Roedel6c1051f2020-03-21 18:22:41 -07002325void __weak vmalloc_sync_unmappings(void)
2326{
2327}
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07002328
Martin Schwidefsky2f569af2008-02-08 04:22:04 -08002329static int f(pte_t *pte, pgtable_t table, unsigned long addr, void *data)
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07002330{
David Vrabelcd129092011-09-29 16:53:32 +01002331 pte_t ***p = data;
2332
2333 if (p) {
2334 *(*p) = pte;
2335 (*p)++;
2336 }
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07002337 return 0;
2338}
2339
2340/**
2341 * alloc_vm_area - allocate a range of kernel address space
2342 * @size: size of the area
David Vrabelcd129092011-09-29 16:53:32 +01002343 * @ptes: returns the PTEs for the address space
Randy Dunlap76824862008-03-19 17:00:40 -07002344 *
2345 * Returns: NULL on failure, vm_struct on success
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07002346 *
2347 * This function reserves a range of kernel address space, and
2348 * allocates pagetables to map that range. No actual mappings
David Vrabelcd129092011-09-29 16:53:32 +01002349 * are created.
2350 *
2351 * If @ptes is non-NULL, pointers to the PTEs (in init_mm)
2352 * allocated for the VM area are returned.
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07002353 */
David Vrabelcd129092011-09-29 16:53:32 +01002354struct vm_struct *alloc_vm_area(size_t size, pte_t **ptes)
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07002355{
2356 struct vm_struct *area;
2357
Christoph Lameter23016962008-04-28 02:12:42 -07002358 area = get_vm_area_caller(size, VM_IOREMAP,
2359 __builtin_return_address(0));
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07002360 if (area == NULL)
2361 return NULL;
2362
2363 /*
2364 * This ensures that page tables are constructed for this region
2365 * of kernel virtual address space and mapped into init_mm.
2366 */
2367 if (apply_to_page_range(&init_mm, (unsigned long)area->addr,
David Vrabelcd129092011-09-29 16:53:32 +01002368 size, f, ptes ? &ptes : NULL)) {
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07002369 free_vm_area(area);
2370 return NULL;
2371 }
2372
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07002373 return area;
2374}
2375EXPORT_SYMBOL_GPL(alloc_vm_area);
2376
2377void free_vm_area(struct vm_struct *area)
2378{
2379 struct vm_struct *ret;
2380 ret = remove_vm_area(area->addr);
2381 BUG_ON(ret != area);
2382 kfree(area);
2383}
2384EXPORT_SYMBOL_GPL(free_vm_area);
Christoph Lametera10aa572008-04-28 02:12:40 -07002385
Tejun Heo4f8b02b2010-09-03 18:22:47 +02002386#ifdef CONFIG_SMP
Tejun Heoca23e402009-08-14 15:00:52 +09002387static struct vmap_area *node_to_va(struct rb_node *n)
2388{
Geliang Tang4583e772017-02-22 15:41:54 -08002389 return rb_entry_safe(n, struct vmap_area, rb_node);
Tejun Heoca23e402009-08-14 15:00:52 +09002390}
2391
2392/**
2393 * pvm_find_next_prev - find the next and prev vmap_area surrounding @end
2394 * @end: target address
2395 * @pnext: out arg for the next vmap_area
2396 * @pprev: out arg for the previous vmap_area
2397 *
2398 * Returns: %true if either or both of next and prev are found,
2399 * %false if no vmap_area exists
2400 *
2401 * Find vmap_areas end addresses of which enclose @end. ie. if not
2402 * NULL, *pnext->va_end > @end and *pprev->va_end <= @end.
2403 */
2404static bool pvm_find_next_prev(unsigned long end,
2405 struct vmap_area **pnext,
2406 struct vmap_area **pprev)
2407{
2408 struct rb_node *n = vmap_area_root.rb_node;
2409 struct vmap_area *va = NULL;
2410
2411 while (n) {
2412 va = rb_entry(n, struct vmap_area, rb_node);
2413 if (end < va->va_end)
2414 n = n->rb_left;
2415 else if (end > va->va_end)
2416 n = n->rb_right;
2417 else
2418 break;
2419 }
2420
2421 if (!va)
2422 return false;
2423
2424 if (va->va_end > end) {
2425 *pnext = va;
2426 *pprev = node_to_va(rb_prev(&(*pnext)->rb_node));
2427 } else {
2428 *pprev = va;
2429 *pnext = node_to_va(rb_next(&(*pprev)->rb_node));
2430 }
2431 return true;
2432}
2433
2434/**
2435 * pvm_determine_end - find the highest aligned address between two vmap_areas
2436 * @pnext: in/out arg for the next vmap_area
2437 * @pprev: in/out arg for the previous vmap_area
2438 * @align: alignment
2439 *
2440 * Returns: determined end address
2441 *
2442 * Find the highest aligned address between *@pnext and *@pprev below
2443 * VMALLOC_END. *@pnext and *@pprev are adjusted so that the aligned
2444 * down address is between the end addresses of the two vmap_areas.
2445 *
2446 * Please note that the address returned by this function may fall
2447 * inside *@pnext vmap_area. The caller is responsible for checking
2448 * that.
2449 */
2450static unsigned long pvm_determine_end(struct vmap_area **pnext,
2451 struct vmap_area **pprev,
2452 unsigned long align)
2453{
2454 const unsigned long vmalloc_end = VMALLOC_END & ~(align - 1);
2455 unsigned long addr;
2456
2457 if (*pnext)
2458 addr = min((*pnext)->va_start & ~(align - 1), vmalloc_end);
2459 else
2460 addr = vmalloc_end;
2461
2462 while (*pprev && (*pprev)->va_end > addr) {
2463 *pnext = *pprev;
2464 *pprev = node_to_va(rb_prev(&(*pnext)->rb_node));
2465 }
2466
2467 return addr;
2468}
2469
2470/**
2471 * pcpu_get_vm_areas - allocate vmalloc areas for percpu allocator
2472 * @offsets: array containing offset of each area
2473 * @sizes: array containing size of each area
2474 * @nr_vms: the number of areas to allocate
2475 * @align: alignment, all entries in @offsets and @sizes must be aligned to this
Tejun Heoca23e402009-08-14 15:00:52 +09002476 *
2477 * Returns: kmalloc'd vm_struct pointer array pointing to allocated
2478 * vm_structs on success, %NULL on failure
2479 *
2480 * Percpu allocator wants to use congruent vm areas so that it can
2481 * maintain the offsets among percpu areas. This function allocates
David Rientjesec3f64f2011-01-13 15:46:01 -08002482 * congruent vmalloc areas for it with GFP_KERNEL. These areas tend to
2483 * be scattered pretty far, distance between two areas easily going up
2484 * to gigabytes. To avoid interacting with regular vmallocs, these
2485 * areas are allocated from top.
Tejun Heoca23e402009-08-14 15:00:52 +09002486 *
2487 * Despite its complicated look, this allocator is rather simple. It
2488 * does everything top-down and scans areas from the end looking for
2489 * matching slot. While scanning, if any of the areas overlaps with
2490 * existing vmap_area, the base address is pulled down to fit the
2491 * area. Scanning is repeated till all the areas fit and then all
Wei Yangc568da22017-09-06 16:24:09 -07002492 * necessary data structures are inserted and the result is returned.
Tejun Heoca23e402009-08-14 15:00:52 +09002493 */
2494struct vm_struct **pcpu_get_vm_areas(const unsigned long *offsets,
2495 const size_t *sizes, int nr_vms,
David Rientjesec3f64f2011-01-13 15:46:01 -08002496 size_t align)
Tejun Heoca23e402009-08-14 15:00:52 +09002497{
2498 const unsigned long vmalloc_start = ALIGN(VMALLOC_START, align);
2499 const unsigned long vmalloc_end = VMALLOC_END & ~(align - 1);
2500 struct vmap_area **vas, *prev, *next;
2501 struct vm_struct **vms;
2502 int area, area2, last_area, term_area;
2503 unsigned long base, start, end, last_end;
2504 bool purged = false;
2505
Tejun Heoca23e402009-08-14 15:00:52 +09002506 /* verify parameters and allocate data structures */
Alexander Kuleshov891c49a2015-11-05 18:46:51 -08002507 BUG_ON(offset_in_page(align) || !is_power_of_2(align));
Tejun Heoca23e402009-08-14 15:00:52 +09002508 for (last_area = 0, area = 0; area < nr_vms; area++) {
2509 start = offsets[area];
2510 end = start + sizes[area];
2511
2512 /* is everything aligned properly? */
2513 BUG_ON(!IS_ALIGNED(offsets[area], align));
2514 BUG_ON(!IS_ALIGNED(sizes[area], align));
2515
2516 /* detect the area with the highest address */
2517 if (start > offsets[last_area])
2518 last_area = area;
2519
Wei Yangc568da22017-09-06 16:24:09 -07002520 for (area2 = area + 1; area2 < nr_vms; area2++) {
Tejun Heoca23e402009-08-14 15:00:52 +09002521 unsigned long start2 = offsets[area2];
2522 unsigned long end2 = start2 + sizes[area2];
2523
Wei Yangc568da22017-09-06 16:24:09 -07002524 BUG_ON(start2 < end && start < end2);
Tejun Heoca23e402009-08-14 15:00:52 +09002525 }
2526 }
2527 last_end = offsets[last_area] + sizes[last_area];
2528
2529 if (vmalloc_end - vmalloc_start < last_end) {
2530 WARN_ON(true);
2531 return NULL;
2532 }
2533
Thomas Meyer4d67d862012-05-29 15:06:21 -07002534 vms = kcalloc(nr_vms, sizeof(vms[0]), GFP_KERNEL);
2535 vas = kcalloc(nr_vms, sizeof(vas[0]), GFP_KERNEL);
Tejun Heoca23e402009-08-14 15:00:52 +09002536 if (!vas || !vms)
Kautuk Consulf1db7af2012-01-12 17:20:08 -08002537 goto err_free2;
Tejun Heoca23e402009-08-14 15:00:52 +09002538
2539 for (area = 0; area < nr_vms; area++) {
David Rientjesec3f64f2011-01-13 15:46:01 -08002540 vas[area] = kzalloc(sizeof(struct vmap_area), GFP_KERNEL);
2541 vms[area] = kzalloc(sizeof(struct vm_struct), GFP_KERNEL);
Tejun Heoca23e402009-08-14 15:00:52 +09002542 if (!vas[area] || !vms[area])
2543 goto err_free;
2544 }
2545retry:
2546 spin_lock(&vmap_area_lock);
2547
2548 /* start scanning - we scan from the top, begin with the last area */
2549 area = term_area = last_area;
2550 start = offsets[area];
2551 end = start + sizes[area];
2552
2553 if (!pvm_find_next_prev(vmap_area_pcpu_hole, &next, &prev)) {
2554 base = vmalloc_end - last_end;
2555 goto found;
2556 }
2557 base = pvm_determine_end(&next, &prev, align) - end;
2558
2559 while (true) {
2560 BUG_ON(next && next->va_end <= base + end);
2561 BUG_ON(prev && prev->va_end > base + end);
2562
2563 /*
2564 * base might have underflowed, add last_end before
2565 * comparing.
2566 */
2567 if (base + last_end < vmalloc_start + last_end) {
2568 spin_unlock(&vmap_area_lock);
2569 if (!purged) {
2570 purge_vmap_area_lazy();
2571 purged = true;
2572 goto retry;
2573 }
2574 goto err_free;
2575 }
2576
2577 /*
2578 * If next overlaps, move base downwards so that it's
2579 * right below next and then recheck.
2580 */
2581 if (next && next->va_start < base + end) {
2582 base = pvm_determine_end(&next, &prev, align) - end;
2583 term_area = area;
2584 continue;
2585 }
2586
2587 /*
2588 * If prev overlaps, shift down next and prev and move
2589 * base so that it's right below new next and then
2590 * recheck.
2591 */
2592 if (prev && prev->va_end > base + start) {
2593 next = prev;
2594 prev = node_to_va(rb_prev(&next->rb_node));
2595 base = pvm_determine_end(&next, &prev, align) - end;
2596 term_area = area;
2597 continue;
2598 }
2599
2600 /*
2601 * This area fits, move on to the previous one. If
2602 * the previous one is the terminal one, we're done.
2603 */
2604 area = (area + nr_vms - 1) % nr_vms;
2605 if (area == term_area)
2606 break;
2607 start = offsets[area];
2608 end = start + sizes[area];
2609 pvm_find_next_prev(base + end, &next, &prev);
2610 }
2611found:
2612 /* we've found a fitting base, insert all va's */
2613 for (area = 0; area < nr_vms; area++) {
2614 struct vmap_area *va = vas[area];
2615
2616 va->va_start = base + offsets[area];
2617 va->va_end = va->va_start + sizes[area];
2618 __insert_vmap_area(va);
2619 }
2620
2621 vmap_area_pcpu_hole = base + offsets[last_area];
2622
2623 spin_unlock(&vmap_area_lock);
2624
2625 /* insert all vm's */
2626 for (area = 0; area < nr_vms; area++)
Zhang Yanfei3645cb42013-07-03 15:04:48 -07002627 setup_vmalloc_vm(vms[area], vas[area], VM_ALLOC,
2628 pcpu_get_vm_areas);
Tejun Heoca23e402009-08-14 15:00:52 +09002629
2630 kfree(vas);
2631 return vms;
2632
2633err_free:
2634 for (area = 0; area < nr_vms; area++) {
Kautuk Consulf1db7af2012-01-12 17:20:08 -08002635 kfree(vas[area]);
2636 kfree(vms[area]);
Tejun Heoca23e402009-08-14 15:00:52 +09002637 }
Kautuk Consulf1db7af2012-01-12 17:20:08 -08002638err_free2:
Tejun Heoca23e402009-08-14 15:00:52 +09002639 kfree(vas);
2640 kfree(vms);
2641 return NULL;
2642}
2643
2644/**
2645 * pcpu_free_vm_areas - free vmalloc areas for percpu allocator
2646 * @vms: vm_struct pointer array returned by pcpu_get_vm_areas()
2647 * @nr_vms: the number of allocated areas
2648 *
2649 * Free vm_structs and the array allocated by pcpu_get_vm_areas().
2650 */
2651void pcpu_free_vm_areas(struct vm_struct **vms, int nr_vms)
2652{
2653 int i;
2654
2655 for (i = 0; i < nr_vms; i++)
2656 free_vm_area(vms[i]);
2657 kfree(vms);
2658}
Tejun Heo4f8b02b2010-09-03 18:22:47 +02002659#endif /* CONFIG_SMP */
Christoph Lametera10aa572008-04-28 02:12:40 -07002660
2661#ifdef CONFIG_PROC_FS
2662static void *s_start(struct seq_file *m, loff_t *pos)
Joonsoo Kimd4033af2013-04-29 15:07:35 -07002663 __acquires(&vmap_area_lock)
Christoph Lametera10aa572008-04-28 02:12:40 -07002664{
Joonsoo Kimd4033af2013-04-29 15:07:35 -07002665 spin_lock(&vmap_area_lock);
zijun_hu3f500062016-12-12 16:42:17 -08002666 return seq_list_start(&vmap_area_list, *pos);
Christoph Lametera10aa572008-04-28 02:12:40 -07002667}
2668
2669static void *s_next(struct seq_file *m, void *p, loff_t *pos)
2670{
zijun_hu3f500062016-12-12 16:42:17 -08002671 return seq_list_next(p, &vmap_area_list, pos);
Christoph Lametera10aa572008-04-28 02:12:40 -07002672}
2673
2674static void s_stop(struct seq_file *m, void *p)
Joonsoo Kimd4033af2013-04-29 15:07:35 -07002675 __releases(&vmap_area_lock)
Christoph Lametera10aa572008-04-28 02:12:40 -07002676{
Joonsoo Kimd4033af2013-04-29 15:07:35 -07002677 spin_unlock(&vmap_area_lock);
Christoph Lametera10aa572008-04-28 02:12:40 -07002678}
2679
Eric Dumazeta47a1262008-07-23 21:27:38 -07002680static void show_numa_info(struct seq_file *m, struct vm_struct *v)
2681{
Kirill A. Shutemove5adfff2012-12-11 16:00:29 -08002682 if (IS_ENABLED(CONFIG_NUMA)) {
Eric Dumazeta47a1262008-07-23 21:27:38 -07002683 unsigned int nr, *counters = m->private;
2684
2685 if (!counters)
2686 return;
2687
Wanpeng Liaf123462013-11-12 15:07:32 -08002688 if (v->flags & VM_UNINITIALIZED)
2689 return;
Dmitry Vyukov7e5b5282014-12-12 16:56:30 -08002690 /* Pair with smp_wmb() in clear_vm_uninitialized_flag() */
2691 smp_rmb();
Wanpeng Liaf123462013-11-12 15:07:32 -08002692
Eric Dumazeta47a1262008-07-23 21:27:38 -07002693 memset(counters, 0, nr_node_ids * sizeof(unsigned int));
2694
2695 for (nr = 0; nr < v->nr_pages; nr++)
2696 counters[page_to_nid(v->pages[nr])]++;
2697
2698 for_each_node_state(nr, N_HIGH_MEMORY)
2699 if (counters[nr])
2700 seq_printf(m, " N%u=%u", nr, counters[nr]);
2701 }
2702}
2703
Christoph Lametera10aa572008-04-28 02:12:40 -07002704static int s_show(struct seq_file *m, void *p)
2705{
zijun_hu3f500062016-12-12 16:42:17 -08002706 struct vmap_area *va;
Joonsoo Kimd4033af2013-04-29 15:07:35 -07002707 struct vm_struct *v;
2708
zijun_hu3f500062016-12-12 16:42:17 -08002709 va = list_entry(p, struct vmap_area, list);
2710
Wanpeng Lic2ce8c12013-11-12 15:07:31 -08002711 /*
2712 * s_show can encounter race with remove_vm_area, !VM_VM_AREA on
2713 * behalf of vmap area is being tear down or vm_map_ram allocation.
2714 */
Yisheng Xie78c72742017-07-10 15:48:09 -07002715 if (!(va->flags & VM_VM_AREA)) {
2716 seq_printf(m, "0x%pK-0x%pK %7ld %s\n",
2717 (void *)va->va_start, (void *)va->va_end,
2718 va->va_end - va->va_start,
2719 va->flags & VM_LAZY_FREE ? "unpurged vm_area" : "vm_map_ram");
2720
Joonsoo Kimd4033af2013-04-29 15:07:35 -07002721 return 0;
Yisheng Xie78c72742017-07-10 15:48:09 -07002722 }
Joonsoo Kimd4033af2013-04-29 15:07:35 -07002723
Joonsoo Kimd4033af2013-04-29 15:07:35 -07002724 v = va->vm;
Christoph Lametera10aa572008-04-28 02:12:40 -07002725
Kees Cook45ec1692012-10-08 16:34:09 -07002726 seq_printf(m, "0x%pK-0x%pK %7ld",
Christoph Lametera10aa572008-04-28 02:12:40 -07002727 v->addr, v->addr + v->size, v->size);
2728
Joe Perches62c70bc2011-01-13 15:45:52 -08002729 if (v->caller)
2730 seq_printf(m, " %pS", v->caller);
Christoph Lameter23016962008-04-28 02:12:42 -07002731
Christoph Lametera10aa572008-04-28 02:12:40 -07002732 if (v->nr_pages)
2733 seq_printf(m, " pages=%d", v->nr_pages);
2734
2735 if (v->phys_addr)
Miles Chen199eaa02017-02-24 14:59:51 -08002736 seq_printf(m, " phys=%pa", &v->phys_addr);
Christoph Lametera10aa572008-04-28 02:12:40 -07002737
2738 if (v->flags & VM_IOREMAP)
Fabian Frederickf4527c92014-06-04 16:08:09 -07002739 seq_puts(m, " ioremap");
Christoph Lametera10aa572008-04-28 02:12:40 -07002740
2741 if (v->flags & VM_ALLOC)
Fabian Frederickf4527c92014-06-04 16:08:09 -07002742 seq_puts(m, " vmalloc");
Christoph Lametera10aa572008-04-28 02:12:40 -07002743
2744 if (v->flags & VM_MAP)
Fabian Frederickf4527c92014-06-04 16:08:09 -07002745 seq_puts(m, " vmap");
Christoph Lametera10aa572008-04-28 02:12:40 -07002746
2747 if (v->flags & VM_USERMAP)
Fabian Frederickf4527c92014-06-04 16:08:09 -07002748 seq_puts(m, " user");
Christoph Lametera10aa572008-04-28 02:12:40 -07002749
David Rientjes244d63e2016-01-14 15:19:35 -08002750 if (is_vmalloc_addr(v->pages))
Fabian Frederickf4527c92014-06-04 16:08:09 -07002751 seq_puts(m, " vpages");
Christoph Lametera10aa572008-04-28 02:12:40 -07002752
Eric Dumazeta47a1262008-07-23 21:27:38 -07002753 show_numa_info(m, v);
Christoph Lametera10aa572008-04-28 02:12:40 -07002754 seq_putc(m, '\n');
2755 return 0;
2756}
2757
Alexey Dobriyan5f6a6a92008-10-06 03:50:47 +04002758static const struct seq_operations vmalloc_op = {
Christoph Lametera10aa572008-04-28 02:12:40 -07002759 .start = s_start,
2760 .next = s_next,
2761 .stop = s_stop,
2762 .show = s_show,
2763};
Alexey Dobriyan5f6a6a92008-10-06 03:50:47 +04002764
Alexey Dobriyan5f6a6a92008-10-06 03:50:47 +04002765static int __init proc_vmalloc_init(void)
2766{
Christoph Hellwigfddda2b2018-04-13 19:44:18 +02002767 if (IS_ENABLED(CONFIG_NUMA))
Joe Perches0825a6f2018-06-14 15:27:58 -07002768 proc_create_seq_private("vmallocinfo", 0400, NULL,
Christoph Hellwig44414d82018-04-24 17:05:17 +02002769 &vmalloc_op,
2770 nr_node_ids * sizeof(unsigned int), NULL);
Christoph Hellwigfddda2b2018-04-13 19:44:18 +02002771 else
Joe Perches0825a6f2018-06-14 15:27:58 -07002772 proc_create_seq("vmallocinfo", 0400, NULL, &vmalloc_op);
Alexey Dobriyan5f6a6a92008-10-06 03:50:47 +04002773 return 0;
2774}
2775module_init(proc_vmalloc_init);
Joonsoo Kimdb3808c2013-04-29 15:07:28 -07002776
Christoph Lametera10aa572008-04-28 02:12:40 -07002777#endif
2778