blob: 2e074aa3fb61f5cc7773277f6d2d68f50d5ed803 [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>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040015#include <linux/sched.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>
24#include <linux/rbtree.h>
25#include <linux/radix-tree.h>
26#include <linux/rcupdate.h>
Tejun Heof0aa6612009-02-20 16:29:08 +090027#include <linux/pfn.h>
Catalin Marinas89219d32009-06-11 13:23:19 +010028#include <linux/kmemleak.h>
Arun Sharma60063492011-07-26 16:09:06 -070029#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/uaccess.h>
31#include <asm/tlbflush.h>
David Miller2dca6992009-09-21 12:22:34 -070032#include <asm/shmparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Nick Piggindb64fe02008-10-18 20:27:03 -070034/*** Page table manipulation functions ***/
Adrian Bunkb2213852006-09-25 23:31:02 -070035
Linus Torvalds1da177e2005-04-16 15:20:36 -070036static void vunmap_pte_range(pmd_t *pmd, unsigned long addr, unsigned long end)
37{
38 pte_t *pte;
39
40 pte = pte_offset_kernel(pmd, addr);
41 do {
42 pte_t ptent = ptep_get_and_clear(&init_mm, addr, pte);
43 WARN_ON(!pte_none(ptent) && !pte_present(ptent));
44 } while (pte++, addr += PAGE_SIZE, addr != end);
45}
46
Nick Piggindb64fe02008-10-18 20:27:03 -070047static void vunmap_pmd_range(pud_t *pud, unsigned long addr, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
49 pmd_t *pmd;
50 unsigned long next;
51
52 pmd = pmd_offset(pud, addr);
53 do {
54 next = pmd_addr_end(addr, end);
55 if (pmd_none_or_clear_bad(pmd))
56 continue;
57 vunmap_pte_range(pmd, addr, next);
58 } while (pmd++, addr = next, addr != end);
59}
60
Nick Piggindb64fe02008-10-18 20:27:03 -070061static void vunmap_pud_range(pgd_t *pgd, unsigned long addr, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
63 pud_t *pud;
64 unsigned long next;
65
66 pud = pud_offset(pgd, addr);
67 do {
68 next = pud_addr_end(addr, end);
69 if (pud_none_or_clear_bad(pud))
70 continue;
71 vunmap_pmd_range(pud, addr, next);
72 } while (pud++, addr = next, addr != end);
73}
74
Nick Piggindb64fe02008-10-18 20:27:03 -070075static void vunmap_page_range(unsigned long addr, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
77 pgd_t *pgd;
78 unsigned long next;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80 BUG_ON(addr >= end);
81 pgd = pgd_offset_k(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 do {
83 next = pgd_addr_end(addr, end);
84 if (pgd_none_or_clear_bad(pgd))
85 continue;
86 vunmap_pud_range(pgd, addr, next);
87 } while (pgd++, addr = next, addr != end);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
90static int vmap_pte_range(pmd_t *pmd, unsigned long addr,
Nick Piggindb64fe02008-10-18 20:27:03 -070091 unsigned long end, pgprot_t prot, struct page **pages, int *nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
93 pte_t *pte;
94
Nick Piggindb64fe02008-10-18 20:27:03 -070095 /*
96 * nr is a running index into the array which helps higher level
97 * callers keep track of where we're up to.
98 */
99
Hugh Dickins872fec12005-10-29 18:16:21 -0700100 pte = pte_alloc_kernel(pmd, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 if (!pte)
102 return -ENOMEM;
103 do {
Nick Piggindb64fe02008-10-18 20:27:03 -0700104 struct page *page = pages[*nr];
105
106 if (WARN_ON(!pte_none(*pte)))
107 return -EBUSY;
108 if (WARN_ON(!page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 return -ENOMEM;
110 set_pte_at(&init_mm, addr, pte, mk_pte(page, prot));
Nick Piggindb64fe02008-10-18 20:27:03 -0700111 (*nr)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 } while (pte++, addr += PAGE_SIZE, addr != end);
113 return 0;
114}
115
Nick Piggindb64fe02008-10-18 20:27:03 -0700116static int vmap_pmd_range(pud_t *pud, unsigned long addr,
117 unsigned long end, pgprot_t prot, struct page **pages, int *nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
119 pmd_t *pmd;
120 unsigned long next;
121
122 pmd = pmd_alloc(&init_mm, pud, addr);
123 if (!pmd)
124 return -ENOMEM;
125 do {
126 next = pmd_addr_end(addr, end);
Nick Piggindb64fe02008-10-18 20:27:03 -0700127 if (vmap_pte_range(pmd, addr, next, prot, pages, nr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 return -ENOMEM;
129 } while (pmd++, addr = next, addr != end);
130 return 0;
131}
132
Nick Piggindb64fe02008-10-18 20:27:03 -0700133static int vmap_pud_range(pgd_t *pgd, unsigned long addr,
134 unsigned long end, pgprot_t prot, struct page **pages, int *nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
136 pud_t *pud;
137 unsigned long next;
138
139 pud = pud_alloc(&init_mm, pgd, addr);
140 if (!pud)
141 return -ENOMEM;
142 do {
143 next = pud_addr_end(addr, end);
Nick Piggindb64fe02008-10-18 20:27:03 -0700144 if (vmap_pmd_range(pud, addr, next, prot, pages, nr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 return -ENOMEM;
146 } while (pud++, addr = next, addr != end);
147 return 0;
148}
149
Nick Piggindb64fe02008-10-18 20:27:03 -0700150/*
151 * Set up page tables in kva (addr, end). The ptes shall have prot "prot", and
152 * will have pfns corresponding to the "pages" array.
153 *
154 * Ie. pte at addr+N*PAGE_SIZE shall point to pfn corresponding to pages[N]
155 */
Tejun Heo8fc48982009-02-20 16:29:08 +0900156static int vmap_page_range_noflush(unsigned long start, unsigned long end,
157 pgprot_t prot, struct page **pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
159 pgd_t *pgd;
160 unsigned long next;
Adam Lackorzynski2e4e27c2009-01-04 12:00:46 -0800161 unsigned long addr = start;
Nick Piggindb64fe02008-10-18 20:27:03 -0700162 int err = 0;
163 int nr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165 BUG_ON(addr >= end);
166 pgd = pgd_offset_k(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 do {
168 next = pgd_addr_end(addr, end);
Nick Piggindb64fe02008-10-18 20:27:03 -0700169 err = vmap_pud_range(pgd, addr, next, prot, pages, &nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 if (err)
Figo.zhangbf88c8c2009-09-21 17:01:47 -0700171 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 } while (pgd++, addr = next, addr != end);
Nick Piggindb64fe02008-10-18 20:27:03 -0700173
Nick Piggindb64fe02008-10-18 20:27:03 -0700174 return nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}
176
Tejun Heo8fc48982009-02-20 16:29:08 +0900177static int vmap_page_range(unsigned long start, unsigned long end,
178 pgprot_t prot, struct page **pages)
179{
180 int ret;
181
182 ret = vmap_page_range_noflush(start, end, prot, pages);
183 flush_cache_vmap(start, end);
184 return ret;
185}
186
KAMEZAWA Hiroyuki81ac3ad2009-09-22 16:45:49 -0700187int is_vmalloc_or_module_addr(const void *x)
Linus Torvalds73bdf0a2008-10-15 08:35:12 -0700188{
189 /*
Russell Kingab4f2ee2008-11-06 17:11:07 +0000190 * ARM, x86-64 and sparc64 put modules in a special place,
Linus Torvalds73bdf0a2008-10-15 08:35:12 -0700191 * and fall back on vmalloc() if that fails. Others
192 * just put it in the vmalloc space.
193 */
194#if defined(CONFIG_MODULES) && defined(MODULES_VADDR)
195 unsigned long addr = (unsigned long)x;
196 if (addr >= MODULES_VADDR && addr < MODULES_END)
197 return 1;
198#endif
199 return is_vmalloc_addr(x);
200}
201
Christoph Lameter48667e72008-02-04 22:28:31 -0800202/*
Nick Piggindb64fe02008-10-18 20:27:03 -0700203 * Walk a vmap address to the struct page it maps.
Christoph Lameter48667e72008-02-04 22:28:31 -0800204 */
Christoph Lameterb3bdda02008-02-04 22:28:32 -0800205struct page *vmalloc_to_page(const void *vmalloc_addr)
Christoph Lameter48667e72008-02-04 22:28:31 -0800206{
207 unsigned long addr = (unsigned long) vmalloc_addr;
208 struct page *page = NULL;
209 pgd_t *pgd = pgd_offset_k(addr);
Christoph Lameter48667e72008-02-04 22:28:31 -0800210
Ingo Molnar7aa413d2008-06-19 13:28:11 +0200211 /*
212 * XXX we might need to change this if we add VIRTUAL_BUG_ON for
213 * architectures that do not vmalloc module space
214 */
Linus Torvalds73bdf0a2008-10-15 08:35:12 -0700215 VIRTUAL_BUG_ON(!is_vmalloc_or_module_addr(vmalloc_addr));
Jiri Slaby59ea7462008-06-12 13:56:40 +0200216
Christoph Lameter48667e72008-02-04 22:28:31 -0800217 if (!pgd_none(*pgd)) {
Nick Piggindb64fe02008-10-18 20:27:03 -0700218 pud_t *pud = pud_offset(pgd, addr);
Christoph Lameter48667e72008-02-04 22:28:31 -0800219 if (!pud_none(*pud)) {
Nick Piggindb64fe02008-10-18 20:27:03 -0700220 pmd_t *pmd = pmd_offset(pud, addr);
Christoph Lameter48667e72008-02-04 22:28:31 -0800221 if (!pmd_none(*pmd)) {
Nick Piggindb64fe02008-10-18 20:27:03 -0700222 pte_t *ptep, pte;
223
Christoph Lameter48667e72008-02-04 22:28:31 -0800224 ptep = pte_offset_map(pmd, addr);
225 pte = *ptep;
226 if (pte_present(pte))
227 page = pte_page(pte);
228 pte_unmap(ptep);
229 }
230 }
231 }
232 return page;
233}
234EXPORT_SYMBOL(vmalloc_to_page);
235
236/*
237 * Map a vmalloc()-space virtual address to the physical page frame number.
238 */
Christoph Lameterb3bdda02008-02-04 22:28:32 -0800239unsigned long vmalloc_to_pfn(const void *vmalloc_addr)
Christoph Lameter48667e72008-02-04 22:28:31 -0800240{
241 return page_to_pfn(vmalloc_to_page(vmalloc_addr));
242}
243EXPORT_SYMBOL(vmalloc_to_pfn);
244
Nick Piggindb64fe02008-10-18 20:27:03 -0700245
246/*** Global kva allocator ***/
247
248#define VM_LAZY_FREE 0x01
249#define VM_LAZY_FREEING 0x02
250#define VM_VM_AREA 0x04
251
252struct vmap_area {
253 unsigned long va_start;
254 unsigned long va_end;
255 unsigned long flags;
256 struct rb_node rb_node; /* address sorted rbtree */
257 struct list_head list; /* address sorted list */
258 struct list_head purge_list; /* "lazy purge" list */
Minchan Kimdb1aeca2012-01-10 15:08:39 -0800259 struct vm_struct *vm;
Nick Piggindb64fe02008-10-18 20:27:03 -0700260 struct rcu_head rcu_head;
261};
262
263static DEFINE_SPINLOCK(vmap_area_lock);
Nick Piggindb64fe02008-10-18 20:27:03 -0700264static LIST_HEAD(vmap_area_list);
Nick Piggin89699602011-03-22 16:30:36 -0700265static struct rb_root vmap_area_root = RB_ROOT;
266
267/* The vmap cache globals are protected by vmap_area_lock */
268static struct rb_node *free_vmap_cache;
269static unsigned long cached_hole_size;
270static unsigned long cached_vstart;
271static unsigned long cached_align;
272
Tejun Heoca23e402009-08-14 15:00:52 +0900273static unsigned long vmap_area_pcpu_hole;
Nick Piggindb64fe02008-10-18 20:27:03 -0700274
Laura Abbottf2da5eb2013-12-20 13:17:19 -0800275#ifdef CONFIG_ENABLE_VMALLOC_SAVING
276#define POSSIBLE_VMALLOC_START PAGE_OFFSET
277
278#define VMALLOC_BITMAP_SIZE ((VMALLOC_END - PAGE_OFFSET) >> \
279 PAGE_SHIFT)
280#define VMALLOC_TO_BIT(addr) ((addr - PAGE_OFFSET) >> PAGE_SHIFT)
281#define BIT_TO_VMALLOC(i) (PAGE_OFFSET + i * PAGE_SIZE)
282
283DECLARE_BITMAP(possible_areas, VMALLOC_BITMAP_SIZE);
284
285void mark_vmalloc_reserved_area(void *x, unsigned long size)
286{
287 unsigned long addr = (unsigned long)x;
288
289 bitmap_set(possible_areas, VMALLOC_TO_BIT(addr), size >> PAGE_SHIFT);
290}
291
292int is_vmalloc_addr(const void *x)
293{
294 unsigned long addr = (unsigned long)x;
295
296 if (addr < POSSIBLE_VMALLOC_START || addr >= VMALLOC_END)
297 return 0;
298
299 if (test_bit(VMALLOC_TO_BIT(addr), possible_areas))
300 return 0;
301
302 return 1;
303}
304#else
305int is_vmalloc_addr(const void *x)
306{
307 unsigned long addr = (unsigned long)x;
308
309 return addr >= VMALLOC_START && addr < VMALLOC_END;
310}
311#endif
312EXPORT_SYMBOL(is_vmalloc_addr);
313
314
315
Nick Piggindb64fe02008-10-18 20:27:03 -0700316static struct vmap_area *__find_vmap_area(unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
Nick Piggindb64fe02008-10-18 20:27:03 -0700318 struct rb_node *n = vmap_area_root.rb_node;
319
320 while (n) {
321 struct vmap_area *va;
322
323 va = rb_entry(n, struct vmap_area, rb_node);
324 if (addr < va->va_start)
325 n = n->rb_left;
326 else if (addr > va->va_start)
327 n = n->rb_right;
328 else
329 return va;
330 }
331
332 return NULL;
333}
334
335static void __insert_vmap_area(struct vmap_area *va)
336{
337 struct rb_node **p = &vmap_area_root.rb_node;
338 struct rb_node *parent = NULL;
339 struct rb_node *tmp;
340
341 while (*p) {
Namhyung Kim170168d2010-10-26 14:22:02 -0700342 struct vmap_area *tmp_va;
Nick Piggindb64fe02008-10-18 20:27:03 -0700343
344 parent = *p;
Namhyung Kim170168d2010-10-26 14:22:02 -0700345 tmp_va = rb_entry(parent, struct vmap_area, rb_node);
346 if (va->va_start < tmp_va->va_end)
Nick Piggindb64fe02008-10-18 20:27:03 -0700347 p = &(*p)->rb_left;
Namhyung Kim170168d2010-10-26 14:22:02 -0700348 else if (va->va_end > tmp_va->va_start)
Nick Piggindb64fe02008-10-18 20:27:03 -0700349 p = &(*p)->rb_right;
350 else
351 BUG();
352 }
353
354 rb_link_node(&va->rb_node, parent, p);
355 rb_insert_color(&va->rb_node, &vmap_area_root);
356
357 /* address-sort this list so it is usable like the vmlist */
358 tmp = rb_prev(&va->rb_node);
359 if (tmp) {
360 struct vmap_area *prev;
361 prev = rb_entry(tmp, struct vmap_area, rb_node);
362 list_add_rcu(&va->list, &prev->list);
363 } else
364 list_add_rcu(&va->list, &vmap_area_list);
365}
366
367static void purge_vmap_area_lazy(void);
368
369/*
370 * Allocate a region of KVA of the specified size and alignment, within the
371 * vstart and vend.
372 */
373static struct vmap_area *alloc_vmap_area(unsigned long size,
374 unsigned long align,
375 unsigned long vstart, unsigned long vend,
376 int node, gfp_t gfp_mask)
377{
378 struct vmap_area *va;
379 struct rb_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 unsigned long addr;
Nick Piggindb64fe02008-10-18 20:27:03 -0700381 int purged = 0;
Nick Piggin89699602011-03-22 16:30:36 -0700382 struct vmap_area *first;
Nick Piggindb64fe02008-10-18 20:27:03 -0700383
Nick Piggin77669702009-02-27 14:03:03 -0800384 BUG_ON(!size);
Nick Piggindb64fe02008-10-18 20:27:03 -0700385 BUG_ON(size & ~PAGE_MASK);
Nick Piggin89699602011-03-22 16:30:36 -0700386 BUG_ON(!is_power_of_2(align));
Nick Piggindb64fe02008-10-18 20:27:03 -0700387
Nick Piggindb64fe02008-10-18 20:27:03 -0700388 va = kmalloc_node(sizeof(struct vmap_area),
389 gfp_mask & GFP_RECLAIM_MASK, node);
390 if (unlikely(!va))
391 return ERR_PTR(-ENOMEM);
392
393retry:
394 spin_lock(&vmap_area_lock);
Nick Piggin89699602011-03-22 16:30:36 -0700395 /*
396 * Invalidate cache if we have more permissive parameters.
397 * cached_hole_size notes the largest hole noticed _below_
398 * the vmap_area cached in free_vmap_cache: if size fits
399 * into that hole, we want to scan from vstart to reuse
400 * the hole instead of allocating above free_vmap_cache.
401 * Note that __free_vmap_area may update free_vmap_cache
402 * without updating cached_hole_size or cached_align.
403 */
404 if (!free_vmap_cache ||
405 size < cached_hole_size ||
406 vstart < cached_vstart ||
407 align < cached_align) {
408nocache:
409 cached_hole_size = 0;
410 free_vmap_cache = NULL;
411 }
412 /* record if we encounter less permissive parameters */
413 cached_vstart = vstart;
414 cached_align = align;
Nick Piggin77669702009-02-27 14:03:03 -0800415
Nick Piggin89699602011-03-22 16:30:36 -0700416 /* find starting point for our search */
417 if (free_vmap_cache) {
418 first = rb_entry(free_vmap_cache, struct vmap_area, rb_node);
Johannes Weiner248ac0e2011-05-24 17:11:43 -0700419 addr = ALIGN(first->va_end, align);
Nick Piggin89699602011-03-22 16:30:36 -0700420 if (addr < vstart)
421 goto nocache;
422 if (addr + size - 1 < addr)
423 goto overflow;
Nick Piggindb64fe02008-10-18 20:27:03 -0700424
Nick Piggin89699602011-03-22 16:30:36 -0700425 } else {
426 addr = ALIGN(vstart, align);
427 if (addr + size - 1 < addr)
428 goto overflow;
429
430 n = vmap_area_root.rb_node;
431 first = NULL;
432
433 while (n) {
Nick Piggindb64fe02008-10-18 20:27:03 -0700434 struct vmap_area *tmp;
435 tmp = rb_entry(n, struct vmap_area, rb_node);
436 if (tmp->va_end >= addr) {
Nick Piggindb64fe02008-10-18 20:27:03 -0700437 first = tmp;
Nick Piggin89699602011-03-22 16:30:36 -0700438 if (tmp->va_start <= addr)
439 break;
440 n = n->rb_left;
441 } else
Nick Piggindb64fe02008-10-18 20:27:03 -0700442 n = n->rb_right;
Nick Piggin89699602011-03-22 16:30:36 -0700443 }
Nick Piggindb64fe02008-10-18 20:27:03 -0700444
445 if (!first)
446 goto found;
Nick Piggindb64fe02008-10-18 20:27:03 -0700447 }
Nick Piggin89699602011-03-22 16:30:36 -0700448
449 /* from the starting point, walk areas until a suitable hole is found */
Johannes Weiner248ac0e2011-05-24 17:11:43 -0700450 while (addr + size > first->va_start && addr + size <= vend) {
Nick Piggin89699602011-03-22 16:30:36 -0700451 if (addr + cached_hole_size < first->va_start)
452 cached_hole_size = first->va_start - addr;
Johannes Weiner248ac0e2011-05-24 17:11:43 -0700453 addr = ALIGN(first->va_end, align);
Nick Piggin89699602011-03-22 16:30:36 -0700454 if (addr + size - 1 < addr)
455 goto overflow;
456
457 n = rb_next(&first->rb_node);
458 if (n)
459 first = rb_entry(n, struct vmap_area, rb_node);
460 else
461 goto found;
462 }
463
Nick Piggindb64fe02008-10-18 20:27:03 -0700464found:
Nick Piggin89699602011-03-22 16:30:36 -0700465 if (addr + size > vend)
466 goto overflow;
Nick Piggindb64fe02008-10-18 20:27:03 -0700467
468 va->va_start = addr;
469 va->va_end = addr + size;
470 va->flags = 0;
471 __insert_vmap_area(va);
Nick Piggin89699602011-03-22 16:30:36 -0700472 free_vmap_cache = &va->rb_node;
Nick Piggindb64fe02008-10-18 20:27:03 -0700473 spin_unlock(&vmap_area_lock);
474
Nick Piggin89699602011-03-22 16:30:36 -0700475 BUG_ON(va->va_start & (align-1));
476 BUG_ON(va->va_start < vstart);
477 BUG_ON(va->va_end > vend);
478
Nick Piggindb64fe02008-10-18 20:27:03 -0700479 return va;
Nick Piggin89699602011-03-22 16:30:36 -0700480
481overflow:
482 spin_unlock(&vmap_area_lock);
483 if (!purged) {
484 purge_vmap_area_lazy();
485 purged = 1;
486 goto retry;
487 }
488 if (printk_ratelimit())
489 printk(KERN_WARNING
490 "vmap allocation for size %lu failed: "
491 "use vmalloc=<size> to increase size.\n", size);
492 kfree(va);
493 return ERR_PTR(-EBUSY);
Nick Piggindb64fe02008-10-18 20:27:03 -0700494}
495
Nick Piggindb64fe02008-10-18 20:27:03 -0700496static void __free_vmap_area(struct vmap_area *va)
497{
498 BUG_ON(RB_EMPTY_NODE(&va->rb_node));
Nick Piggin89699602011-03-22 16:30:36 -0700499
500 if (free_vmap_cache) {
501 if (va->va_end < cached_vstart) {
502 free_vmap_cache = NULL;
503 } else {
504 struct vmap_area *cache;
505 cache = rb_entry(free_vmap_cache, struct vmap_area, rb_node);
506 if (va->va_start <= cache->va_start) {
507 free_vmap_cache = rb_prev(&va->rb_node);
508 /*
509 * We don't try to update cached_hole_size or
510 * cached_align, but it won't go very wrong.
511 */
512 }
513 }
514 }
Nick Piggindb64fe02008-10-18 20:27:03 -0700515 rb_erase(&va->rb_node, &vmap_area_root);
516 RB_CLEAR_NODE(&va->rb_node);
517 list_del_rcu(&va->list);
518
Tejun Heoca23e402009-08-14 15:00:52 +0900519 /*
520 * Track the highest possible candidate for pcpu area
521 * allocation. Areas outside of vmalloc area can be returned
522 * here too, consider only end addresses which fall inside
523 * vmalloc area proper.
524 */
525 if (va->va_end > VMALLOC_START && va->va_end <= VMALLOC_END)
526 vmap_area_pcpu_hole = max(vmap_area_pcpu_hole, va->va_end);
527
Lai Jiangshan14769de2011-03-18 12:12:19 +0800528 kfree_rcu(va, rcu_head);
Nick Piggindb64fe02008-10-18 20:27:03 -0700529}
530
531/*
532 * Free a region of KVA allocated by alloc_vmap_area
533 */
534static void free_vmap_area(struct vmap_area *va)
535{
536 spin_lock(&vmap_area_lock);
537 __free_vmap_area(va);
538 spin_unlock(&vmap_area_lock);
539}
540
541/*
542 * Clear the pagetable entries of a given vmap_area
543 */
544static void unmap_vmap_area(struct vmap_area *va)
545{
546 vunmap_page_range(va->va_start, va->va_end);
547}
548
Nick Piggincd528582009-01-06 14:39:20 -0800549static void vmap_debug_free_range(unsigned long start, unsigned long end)
550{
551 /*
552 * Unmap page tables and force a TLB flush immediately if
553 * CONFIG_DEBUG_PAGEALLOC is set. This catches use after free
554 * bugs similarly to those in linear kernel virtual address
555 * space after a page has been freed.
556 *
557 * All the lazy freeing logic is still retained, in order to
558 * minimise intrusiveness of this debugging feature.
559 *
560 * This is going to be *slow* (linear kernel virtual address
561 * debugging doesn't do a broadcast TLB flush so it is a lot
562 * faster).
563 */
564#ifdef CONFIG_DEBUG_PAGEALLOC
565 vunmap_page_range(start, end);
566 flush_tlb_kernel_range(start, end);
567#endif
568}
569
Nick Piggindb64fe02008-10-18 20:27:03 -0700570/*
571 * lazy_max_pages is the maximum amount of virtual address space we gather up
572 * before attempting to purge with a TLB flush.
573 *
574 * There is a tradeoff here: a larger number will cover more kernel page tables
575 * and take slightly longer to purge, but it will linearly reduce the number of
576 * global TLB flushes that must be performed. It would seem natural to scale
577 * this number up linearly with the number of CPUs (because vmapping activity
578 * could also scale linearly with the number of CPUs), however it is likely
579 * that in practice, workloads might be constrained in other ways that mean
580 * vmap activity will not scale linearly with CPUs. Also, I want to be
581 * conservative and not introduce a big latency on huge systems, so go with
582 * a less aggressive log scale. It will still be an improvement over the old
583 * code, and it will be simple to change the scale factor if we find that it
584 * becomes a problem on bigger systems.
585 */
586static unsigned long lazy_max_pages(void)
587{
588 unsigned int log;
589
590 log = fls(num_online_cpus());
591
592 return log * (32UL * 1024 * 1024 / PAGE_SIZE);
593}
594
595static atomic_t vmap_lazy_nr = ATOMIC_INIT(0);
596
Nick Piggin02b709d2010-02-01 22:25:57 +1100597/* for per-CPU blocks */
598static void purge_fragmented_blocks_allcpus(void);
599
Nick Piggindb64fe02008-10-18 20:27:03 -0700600/*
Cliff Wickman3ee48b62010-09-16 11:44:02 -0500601 * called before a call to iounmap() if the caller wants vm_area_struct's
602 * immediately freed.
603 */
604void set_iounmap_nonlazy(void)
605{
606 atomic_set(&vmap_lazy_nr, lazy_max_pages()+1);
607}
608
609/*
Nick Piggindb64fe02008-10-18 20:27:03 -0700610 * Purges all lazily-freed vmap areas.
611 *
612 * If sync is 0 then don't purge if there is already a purge in progress.
613 * If force_flush is 1, then flush kernel TLBs between *start and *end even
614 * if we found no lazy vmap areas to unmap (callers can use this to optimise
615 * their own TLB flushing).
616 * Returns with *start = min(*start, lowest purged address)
617 * *end = max(*end, highest purged address)
618 */
619static void __purge_vmap_area_lazy(unsigned long *start, unsigned long *end,
620 int sync, int force_flush)
621{
Andrew Morton46666d82009-01-15 13:51:15 -0800622 static DEFINE_SPINLOCK(purge_lock);
Nick Piggindb64fe02008-10-18 20:27:03 -0700623 LIST_HEAD(valist);
624 struct vmap_area *va;
Vegard Nossumcbb76672009-02-27 14:03:04 -0800625 struct vmap_area *n_va;
Nick Piggindb64fe02008-10-18 20:27:03 -0700626 int nr = 0;
627
628 /*
629 * If sync is 0 but force_flush is 1, we'll go sync anyway but callers
630 * should not expect such behaviour. This just simplifies locking for
631 * the case that isn't actually used at the moment anyway.
632 */
633 if (!sync && !force_flush) {
Andrew Morton46666d82009-01-15 13:51:15 -0800634 if (!spin_trylock(&purge_lock))
Nick Piggindb64fe02008-10-18 20:27:03 -0700635 return;
636 } else
Andrew Morton46666d82009-01-15 13:51:15 -0800637 spin_lock(&purge_lock);
Nick Piggindb64fe02008-10-18 20:27:03 -0700638
Nick Piggin02b709d2010-02-01 22:25:57 +1100639 if (sync)
640 purge_fragmented_blocks_allcpus();
641
Nick Piggindb64fe02008-10-18 20:27:03 -0700642 rcu_read_lock();
643 list_for_each_entry_rcu(va, &vmap_area_list, list) {
644 if (va->flags & VM_LAZY_FREE) {
645 if (va->va_start < *start)
646 *start = va->va_start;
647 if (va->va_end > *end)
648 *end = va->va_end;
649 nr += (va->va_end - va->va_start) >> PAGE_SHIFT;
Nick Piggindb64fe02008-10-18 20:27:03 -0700650 list_add_tail(&va->purge_list, &valist);
651 va->flags |= VM_LAZY_FREEING;
652 va->flags &= ~VM_LAZY_FREE;
653 }
654 }
655 rcu_read_unlock();
656
Yongseok Koh88f50042010-01-19 17:33:49 +0900657 if (nr)
Nick Piggindb64fe02008-10-18 20:27:03 -0700658 atomic_sub(nr, &vmap_lazy_nr);
Nick Piggindb64fe02008-10-18 20:27:03 -0700659
660 if (nr || force_flush)
661 flush_tlb_kernel_range(*start, *end);
662
663 if (nr) {
664 spin_lock(&vmap_area_lock);
Vegard Nossumcbb76672009-02-27 14:03:04 -0800665 list_for_each_entry_safe(va, n_va, &valist, purge_list)
Nick Piggindb64fe02008-10-18 20:27:03 -0700666 __free_vmap_area(va);
667 spin_unlock(&vmap_area_lock);
668 }
Andrew Morton46666d82009-01-15 13:51:15 -0800669 spin_unlock(&purge_lock);
Nick Piggindb64fe02008-10-18 20:27:03 -0700670}
671
672/*
Nick Piggin496850e2008-11-19 15:36:33 -0800673 * Kick off a purge of the outstanding lazy areas. Don't bother if somebody
674 * is already purging.
675 */
676static void try_purge_vmap_area_lazy(void)
677{
678 unsigned long start = ULONG_MAX, end = 0;
679
680 __purge_vmap_area_lazy(&start, &end, 0, 0);
681}
682
683/*
Nick Piggindb64fe02008-10-18 20:27:03 -0700684 * Kick off a purge of the outstanding lazy areas.
685 */
686static void purge_vmap_area_lazy(void)
687{
688 unsigned long start = ULONG_MAX, end = 0;
689
Nick Piggin496850e2008-11-19 15:36:33 -0800690 __purge_vmap_area_lazy(&start, &end, 1, 0);
Nick Piggindb64fe02008-10-18 20:27:03 -0700691}
692
693/*
Jeremy Fitzhardinge64141da2010-12-02 14:31:18 -0800694 * Free a vmap area, caller ensuring that the area has been unmapped
695 * and flush_cache_vunmap had been called for the correct range
696 * previously.
Nick Piggindb64fe02008-10-18 20:27:03 -0700697 */
Jeremy Fitzhardinge64141da2010-12-02 14:31:18 -0800698static void free_vmap_area_noflush(struct vmap_area *va)
Nick Piggindb64fe02008-10-18 20:27:03 -0700699{
700 va->flags |= VM_LAZY_FREE;
701 atomic_add((va->va_end - va->va_start) >> PAGE_SHIFT, &vmap_lazy_nr);
702 if (unlikely(atomic_read(&vmap_lazy_nr) > lazy_max_pages()))
Nick Piggin496850e2008-11-19 15:36:33 -0800703 try_purge_vmap_area_lazy();
Nick Piggindb64fe02008-10-18 20:27:03 -0700704}
705
Nick Pigginb29acbd2008-12-01 13:13:47 -0800706/*
Jeremy Fitzhardinge64141da2010-12-02 14:31:18 -0800707 * Free and unmap a vmap area, caller ensuring flush_cache_vunmap had been
708 * called for the correct range previously.
709 */
710static void free_unmap_vmap_area_noflush(struct vmap_area *va)
711{
712 unmap_vmap_area(va);
713 free_vmap_area_noflush(va);
714}
715
716/*
Nick Pigginb29acbd2008-12-01 13:13:47 -0800717 * Free and unmap a vmap area
718 */
719static void free_unmap_vmap_area(struct vmap_area *va)
720{
721 flush_cache_vunmap(va->va_start, va->va_end);
722 free_unmap_vmap_area_noflush(va);
723}
724
Nick Piggindb64fe02008-10-18 20:27:03 -0700725static struct vmap_area *find_vmap_area(unsigned long addr)
726{
727 struct vmap_area *va;
728
729 spin_lock(&vmap_area_lock);
730 va = __find_vmap_area(addr);
731 spin_unlock(&vmap_area_lock);
732
733 return va;
734}
735
736static void free_unmap_vmap_area_addr(unsigned long addr)
737{
738 struct vmap_area *va;
739
740 va = find_vmap_area(addr);
741 BUG_ON(!va);
742 free_unmap_vmap_area(va);
743}
744
745
746/*** Per cpu kva allocator ***/
747
748/*
749 * vmap space is limited especially on 32 bit architectures. Ensure there is
750 * room for at least 16 percpu vmap blocks per CPU.
751 */
752/*
753 * If we had a constant VMALLOC_START and VMALLOC_END, we'd like to be able
754 * to #define VMALLOC_SPACE (VMALLOC_END-VMALLOC_START). Guess
755 * instead (we just need a rough idea)
756 */
757#if BITS_PER_LONG == 32
758#define VMALLOC_SPACE (128UL*1024*1024)
759#else
760#define VMALLOC_SPACE (128UL*1024*1024*1024)
761#endif
762
763#define VMALLOC_PAGES (VMALLOC_SPACE / PAGE_SIZE)
764#define VMAP_MAX_ALLOC BITS_PER_LONG /* 256K with 4K pages */
765#define VMAP_BBMAP_BITS_MAX 1024 /* 4MB with 4K pages */
766#define VMAP_BBMAP_BITS_MIN (VMAP_MAX_ALLOC*2)
767#define VMAP_MIN(x, y) ((x) < (y) ? (x) : (y)) /* can't use min() */
768#define VMAP_MAX(x, y) ((x) > (y) ? (x) : (y)) /* can't use max() */
Clemens Ladischf982f912011-06-21 22:09:50 +0200769#define VMAP_BBMAP_BITS \
770 VMAP_MIN(VMAP_BBMAP_BITS_MAX, \
771 VMAP_MAX(VMAP_BBMAP_BITS_MIN, \
772 VMALLOC_PAGES / roundup_pow_of_two(NR_CPUS) / 16))
Nick Piggindb64fe02008-10-18 20:27:03 -0700773
774#define VMAP_BLOCK_SIZE (VMAP_BBMAP_BITS * PAGE_SIZE)
775
Jeremy Fitzhardinge9b463332008-10-28 19:22:34 +1100776static bool vmap_initialized __read_mostly = false;
777
Nick Piggindb64fe02008-10-18 20:27:03 -0700778struct vmap_block_queue {
779 spinlock_t lock;
780 struct list_head free;
Nick Piggindb64fe02008-10-18 20:27:03 -0700781};
782
783struct vmap_block {
784 spinlock_t lock;
785 struct vmap_area *va;
786 struct vmap_block_queue *vbq;
787 unsigned long free, dirty;
788 DECLARE_BITMAP(alloc_map, VMAP_BBMAP_BITS);
789 DECLARE_BITMAP(dirty_map, VMAP_BBMAP_BITS);
Nick Pigginde560422010-02-01 22:24:18 +1100790 struct list_head free_list;
791 struct rcu_head rcu_head;
Nick Piggin02b709d2010-02-01 22:25:57 +1100792 struct list_head purge;
Nick Piggindb64fe02008-10-18 20:27:03 -0700793};
794
795/* Queue of free and dirty vmap blocks, for allocation and flushing purposes */
796static DEFINE_PER_CPU(struct vmap_block_queue, vmap_block_queue);
797
798/*
799 * Radix tree of vmap blocks, indexed by address, to quickly find a vmap block
800 * in the free path. Could get rid of this if we change the API to return a
801 * "cookie" from alloc, to be passed to free. But no big deal yet.
802 */
803static DEFINE_SPINLOCK(vmap_block_tree_lock);
804static RADIX_TREE(vmap_block_tree, GFP_ATOMIC);
805
806/*
807 * We should probably have a fallback mechanism to allocate virtual memory
808 * out of partially filled vmap blocks. However vmap block sizing should be
809 * fairly reasonable according to the vmalloc size, so it shouldn't be a
810 * big problem.
811 */
812
813static unsigned long addr_to_vb_idx(unsigned long addr)
814{
815 addr -= VMALLOC_START & ~(VMAP_BLOCK_SIZE-1);
816 addr /= VMAP_BLOCK_SIZE;
817 return addr;
818}
819
820static struct vmap_block *new_vmap_block(gfp_t gfp_mask)
821{
822 struct vmap_block_queue *vbq;
823 struct vmap_block *vb;
824 struct vmap_area *va;
825 unsigned long vb_idx;
826 int node, err;
827
828 node = numa_node_id();
829
830 vb = kmalloc_node(sizeof(struct vmap_block),
831 gfp_mask & GFP_RECLAIM_MASK, node);
832 if (unlikely(!vb))
833 return ERR_PTR(-ENOMEM);
834
835 va = alloc_vmap_area(VMAP_BLOCK_SIZE, VMAP_BLOCK_SIZE,
836 VMALLOC_START, VMALLOC_END,
837 node, gfp_mask);
Tobias Klauserddf9c6d2011-01-13 15:46:15 -0800838 if (IS_ERR(va)) {
Nick Piggindb64fe02008-10-18 20:27:03 -0700839 kfree(vb);
Julia Lawalle7d86342010-08-09 17:18:28 -0700840 return ERR_CAST(va);
Nick Piggindb64fe02008-10-18 20:27:03 -0700841 }
842
843 err = radix_tree_preload(gfp_mask);
844 if (unlikely(err)) {
845 kfree(vb);
846 free_vmap_area(va);
847 return ERR_PTR(err);
848 }
849
850 spin_lock_init(&vb->lock);
851 vb->va = va;
852 vb->free = VMAP_BBMAP_BITS;
853 vb->dirty = 0;
854 bitmap_zero(vb->alloc_map, VMAP_BBMAP_BITS);
855 bitmap_zero(vb->dirty_map, VMAP_BBMAP_BITS);
856 INIT_LIST_HEAD(&vb->free_list);
Nick Piggindb64fe02008-10-18 20:27:03 -0700857
858 vb_idx = addr_to_vb_idx(va->va_start);
859 spin_lock(&vmap_block_tree_lock);
860 err = radix_tree_insert(&vmap_block_tree, vb_idx, vb);
861 spin_unlock(&vmap_block_tree_lock);
862 BUG_ON(err);
863 radix_tree_preload_end();
864
865 vbq = &get_cpu_var(vmap_block_queue);
866 vb->vbq = vbq;
867 spin_lock(&vbq->lock);
Nick Pigginde560422010-02-01 22:24:18 +1100868 list_add_rcu(&vb->free_list, &vbq->free);
Nick Piggindb64fe02008-10-18 20:27:03 -0700869 spin_unlock(&vbq->lock);
Tejun Heo3f04ba82009-10-29 22:34:12 +0900870 put_cpu_var(vmap_block_queue);
Nick Piggindb64fe02008-10-18 20:27:03 -0700871
872 return vb;
873}
874
Nick Piggindb64fe02008-10-18 20:27:03 -0700875static void free_vmap_block(struct vmap_block *vb)
876{
877 struct vmap_block *tmp;
878 unsigned long vb_idx;
879
Nick Piggindb64fe02008-10-18 20:27:03 -0700880 vb_idx = addr_to_vb_idx(vb->va->va_start);
881 spin_lock(&vmap_block_tree_lock);
882 tmp = radix_tree_delete(&vmap_block_tree, vb_idx);
883 spin_unlock(&vmap_block_tree_lock);
884 BUG_ON(tmp != vb);
885
Jeremy Fitzhardinge64141da2010-12-02 14:31:18 -0800886 free_vmap_area_noflush(vb->va);
Lai Jiangshan22a3c7d2011-03-18 12:13:08 +0800887 kfree_rcu(vb, rcu_head);
Nick Piggindb64fe02008-10-18 20:27:03 -0700888}
889
Nick Piggin02b709d2010-02-01 22:25:57 +1100890static void purge_fragmented_blocks(int cpu)
891{
892 LIST_HEAD(purge);
893 struct vmap_block *vb;
894 struct vmap_block *n_vb;
895 struct vmap_block_queue *vbq = &per_cpu(vmap_block_queue, cpu);
896
897 rcu_read_lock();
898 list_for_each_entry_rcu(vb, &vbq->free, free_list) {
899
900 if (!(vb->free + vb->dirty == VMAP_BBMAP_BITS && vb->dirty != VMAP_BBMAP_BITS))
901 continue;
902
903 spin_lock(&vb->lock);
904 if (vb->free + vb->dirty == VMAP_BBMAP_BITS && vb->dirty != VMAP_BBMAP_BITS) {
905 vb->free = 0; /* prevent further allocs after releasing lock */
906 vb->dirty = VMAP_BBMAP_BITS; /* prevent purging it again */
907 bitmap_fill(vb->alloc_map, VMAP_BBMAP_BITS);
908 bitmap_fill(vb->dirty_map, VMAP_BBMAP_BITS);
909 spin_lock(&vbq->lock);
910 list_del_rcu(&vb->free_list);
911 spin_unlock(&vbq->lock);
912 spin_unlock(&vb->lock);
913 list_add_tail(&vb->purge, &purge);
914 } else
915 spin_unlock(&vb->lock);
916 }
917 rcu_read_unlock();
918
919 list_for_each_entry_safe(vb, n_vb, &purge, purge) {
920 list_del(&vb->purge);
921 free_vmap_block(vb);
922 }
923}
924
925static void purge_fragmented_blocks_thiscpu(void)
926{
927 purge_fragmented_blocks(smp_processor_id());
928}
929
930static void purge_fragmented_blocks_allcpus(void)
931{
932 int cpu;
933
934 for_each_possible_cpu(cpu)
935 purge_fragmented_blocks(cpu);
936}
937
Nick Piggindb64fe02008-10-18 20:27:03 -0700938static void *vb_alloc(unsigned long size, gfp_t gfp_mask)
939{
940 struct vmap_block_queue *vbq;
941 struct vmap_block *vb;
942 unsigned long addr = 0;
943 unsigned int order;
Nick Piggin02b709d2010-02-01 22:25:57 +1100944 int purge = 0;
Nick Piggindb64fe02008-10-18 20:27:03 -0700945
946 BUG_ON(size & ~PAGE_MASK);
947 BUG_ON(size > PAGE_SIZE*VMAP_MAX_ALLOC);
948 order = get_order(size);
949
950again:
951 rcu_read_lock();
952 vbq = &get_cpu_var(vmap_block_queue);
953 list_for_each_entry_rcu(vb, &vbq->free, free_list) {
954 int i;
955
956 spin_lock(&vb->lock);
Nick Piggin02b709d2010-02-01 22:25:57 +1100957 if (vb->free < 1UL << order)
958 goto next;
959
Nick Piggindb64fe02008-10-18 20:27:03 -0700960 i = bitmap_find_free_region(vb->alloc_map,
961 VMAP_BBMAP_BITS, order);
962
Nick Piggin02b709d2010-02-01 22:25:57 +1100963 if (i < 0) {
964 if (vb->free + vb->dirty == VMAP_BBMAP_BITS) {
965 /* fragmented and no outstanding allocations */
966 BUG_ON(vb->dirty != VMAP_BBMAP_BITS);
967 purge = 1;
Nick Piggindb64fe02008-10-18 20:27:03 -0700968 }
Nick Piggin02b709d2010-02-01 22:25:57 +1100969 goto next;
970 }
971 addr = vb->va->va_start + (i << PAGE_SHIFT);
972 BUG_ON(addr_to_vb_idx(addr) !=
973 addr_to_vb_idx(vb->va->va_start));
974 vb->free -= 1UL << order;
975 if (vb->free == 0) {
976 spin_lock(&vbq->lock);
977 list_del_rcu(&vb->free_list);
978 spin_unlock(&vbq->lock);
Nick Piggindb64fe02008-10-18 20:27:03 -0700979 }
980 spin_unlock(&vb->lock);
Nick Piggin02b709d2010-02-01 22:25:57 +1100981 break;
982next:
983 spin_unlock(&vb->lock);
Nick Piggindb64fe02008-10-18 20:27:03 -0700984 }
Nick Piggin02b709d2010-02-01 22:25:57 +1100985
986 if (purge)
987 purge_fragmented_blocks_thiscpu();
988
Tejun Heo3f04ba82009-10-29 22:34:12 +0900989 put_cpu_var(vmap_block_queue);
Nick Piggindb64fe02008-10-18 20:27:03 -0700990 rcu_read_unlock();
991
992 if (!addr) {
993 vb = new_vmap_block(gfp_mask);
994 if (IS_ERR(vb))
995 return vb;
996 goto again;
997 }
998
999 return (void *)addr;
1000}
1001
1002static void vb_free(const void *addr, unsigned long size)
1003{
1004 unsigned long offset;
1005 unsigned long vb_idx;
1006 unsigned int order;
1007 struct vmap_block *vb;
1008
1009 BUG_ON(size & ~PAGE_MASK);
1010 BUG_ON(size > PAGE_SIZE*VMAP_MAX_ALLOC);
Nick Pigginb29acbd2008-12-01 13:13:47 -08001011
1012 flush_cache_vunmap((unsigned long)addr, (unsigned long)addr + size);
1013
Nick Piggindb64fe02008-10-18 20:27:03 -07001014 order = get_order(size);
1015
1016 offset = (unsigned long)addr & (VMAP_BLOCK_SIZE - 1);
1017
1018 vb_idx = addr_to_vb_idx((unsigned long)addr);
1019 rcu_read_lock();
1020 vb = radix_tree_lookup(&vmap_block_tree, vb_idx);
1021 rcu_read_unlock();
1022 BUG_ON(!vb);
1023
Jeremy Fitzhardinge64141da2010-12-02 14:31:18 -08001024 vunmap_page_range((unsigned long)addr, (unsigned long)addr + size);
1025
Nick Piggindb64fe02008-10-18 20:27:03 -07001026 spin_lock(&vb->lock);
Nick Pigginde560422010-02-01 22:24:18 +11001027 BUG_ON(bitmap_allocate_region(vb->dirty_map, offset >> PAGE_SHIFT, order));
MinChan Kimd0868172009-03-31 15:19:26 -07001028
Nick Piggindb64fe02008-10-18 20:27:03 -07001029 vb->dirty += 1UL << order;
1030 if (vb->dirty == VMAP_BBMAP_BITS) {
Nick Pigginde560422010-02-01 22:24:18 +11001031 BUG_ON(vb->free);
Nick Piggindb64fe02008-10-18 20:27:03 -07001032 spin_unlock(&vb->lock);
1033 free_vmap_block(vb);
1034 } else
1035 spin_unlock(&vb->lock);
1036}
1037
1038/**
1039 * vm_unmap_aliases - unmap outstanding lazy aliases in the vmap layer
1040 *
1041 * The vmap/vmalloc layer lazily flushes kernel virtual mappings primarily
1042 * to amortize TLB flushing overheads. What this means is that any page you
1043 * have now, may, in a former life, have been mapped into kernel virtual
1044 * address by the vmap layer and so there might be some CPUs with TLB entries
1045 * still referencing that page (additional to the regular 1:1 kernel mapping).
1046 *
1047 * vm_unmap_aliases flushes all such lazy mappings. After it returns, we can
1048 * be sure that none of the pages we have control over will have any aliases
1049 * from the vmap layer.
1050 */
1051void vm_unmap_aliases(void)
1052{
1053 unsigned long start = ULONG_MAX, end = 0;
1054 int cpu;
1055 int flush = 0;
1056
Jeremy Fitzhardinge9b463332008-10-28 19:22:34 +11001057 if (unlikely(!vmap_initialized))
1058 return;
1059
Nick Piggindb64fe02008-10-18 20:27:03 -07001060 for_each_possible_cpu(cpu) {
1061 struct vmap_block_queue *vbq = &per_cpu(vmap_block_queue, cpu);
1062 struct vmap_block *vb;
1063
1064 rcu_read_lock();
1065 list_for_each_entry_rcu(vb, &vbq->free, free_list) {
1066 int i;
1067
1068 spin_lock(&vb->lock);
1069 i = find_first_bit(vb->dirty_map, VMAP_BBMAP_BITS);
1070 while (i < VMAP_BBMAP_BITS) {
1071 unsigned long s, e;
1072 int j;
1073 j = find_next_zero_bit(vb->dirty_map,
1074 VMAP_BBMAP_BITS, i);
1075
1076 s = vb->va->va_start + (i << PAGE_SHIFT);
1077 e = vb->va->va_start + (j << PAGE_SHIFT);
Nick Piggindb64fe02008-10-18 20:27:03 -07001078 flush = 1;
1079
1080 if (s < start)
1081 start = s;
1082 if (e > end)
1083 end = e;
1084
1085 i = j;
1086 i = find_next_bit(vb->dirty_map,
1087 VMAP_BBMAP_BITS, i);
1088 }
1089 spin_unlock(&vb->lock);
1090 }
1091 rcu_read_unlock();
1092 }
1093
1094 __purge_vmap_area_lazy(&start, &end, 1, flush);
1095}
1096EXPORT_SYMBOL_GPL(vm_unmap_aliases);
1097
1098/**
1099 * vm_unmap_ram - unmap linear kernel address space set up by vm_map_ram
1100 * @mem: the pointer returned by vm_map_ram
1101 * @count: the count passed to that vm_map_ram call (cannot unmap partial)
1102 */
1103void vm_unmap_ram(const void *mem, unsigned int count)
1104{
1105 unsigned long size = count << PAGE_SHIFT;
1106 unsigned long addr = (unsigned long)mem;
1107
1108 BUG_ON(!addr);
1109 BUG_ON(addr < VMALLOC_START);
1110 BUG_ON(addr > VMALLOC_END);
1111 BUG_ON(addr & (PAGE_SIZE-1));
1112
1113 debug_check_no_locks_freed(mem, size);
Nick Piggincd528582009-01-06 14:39:20 -08001114 vmap_debug_free_range(addr, addr+size);
Nick Piggindb64fe02008-10-18 20:27:03 -07001115
1116 if (likely(count <= VMAP_MAX_ALLOC))
1117 vb_free(mem, size);
1118 else
1119 free_unmap_vmap_area_addr(addr);
1120}
1121EXPORT_SYMBOL(vm_unmap_ram);
1122
1123/**
1124 * vm_map_ram - map pages linearly into kernel virtual address (vmalloc space)
1125 * @pages: an array of pointers to the pages to be mapped
1126 * @count: number of pages
1127 * @node: prefer to allocate data structures on this node
1128 * @prot: memory protection to use. PAGE_KERNEL for regular RAM
Randy Dunlape99c97a2008-10-29 14:01:09 -07001129 *
1130 * Returns: a pointer to the address that has been mapped, or %NULL on failure
Nick Piggindb64fe02008-10-18 20:27:03 -07001131 */
1132void *vm_map_ram(struct page **pages, unsigned int count, int node, pgprot_t prot)
1133{
1134 unsigned long size = count << PAGE_SHIFT;
1135 unsigned long addr;
1136 void *mem;
1137
1138 if (likely(count <= VMAP_MAX_ALLOC)) {
1139 mem = vb_alloc(size, GFP_KERNEL);
1140 if (IS_ERR(mem))
1141 return NULL;
1142 addr = (unsigned long)mem;
1143 } else {
1144 struct vmap_area *va;
1145 va = alloc_vmap_area(size, PAGE_SIZE,
1146 VMALLOC_START, VMALLOC_END, node, GFP_KERNEL);
1147 if (IS_ERR(va))
1148 return NULL;
1149
1150 addr = va->va_start;
1151 mem = (void *)addr;
1152 }
1153 if (vmap_page_range(addr, addr + size, prot, pages) < 0) {
1154 vm_unmap_ram(mem, count);
1155 return NULL;
1156 }
1157 return mem;
1158}
1159EXPORT_SYMBOL(vm_map_ram);
Neeti Desaic278c942013-06-10 17:14:21 -07001160/**
1161 * vm_area_check_early - check if vmap area is already mapped
1162 * @vm: vm_struct to be checked
1163 *
1164 * This function is used to check if the vmap area has been
1165 * mapped already. @vm->addr, @vm->size and @vm->flags should
1166 * contain proper values.
1167 *
1168 */
1169int __init vm_area_check_early(struct vm_struct *vm)
1170{
1171 struct vm_struct *tmp, **p;
Nick Piggindb64fe02008-10-18 20:27:03 -07001172
Neeti Desaic278c942013-06-10 17:14:21 -07001173 BUG_ON(vmap_initialized);
1174 for (p = &vmlist; (tmp = *p) != NULL; p = &tmp->next) {
1175 if (tmp->addr >= vm->addr) {
1176 if (tmp->addr < vm->addr + vm->size)
1177 return 1;
1178 } else {
1179 if (tmp->addr + tmp->size > vm->addr)
1180 return 1;
1181 }
1182 }
1183 return 0;
1184}
Tejun Heof0aa6612009-02-20 16:29:08 +09001185/**
Nicolas Pitrebe9b7332011-08-25 00:24:21 -04001186 * vm_area_add_early - add vmap area early during boot
1187 * @vm: vm_struct to add
1188 *
1189 * This function is used to add fixed kernel vm area to vmlist before
1190 * vmalloc_init() is called. @vm->addr, @vm->size, and @vm->flags
1191 * should contain proper values and the other fields should be zero.
1192 *
1193 * DO NOT USE THIS FUNCTION UNLESS YOU KNOW WHAT YOU'RE DOING.
1194 */
1195void __init vm_area_add_early(struct vm_struct *vm)
1196{
1197 struct vm_struct *tmp, **p;
1198
1199 BUG_ON(vmap_initialized);
1200 for (p = &vmlist; (tmp = *p) != NULL; p = &tmp->next) {
1201 if (tmp->addr >= vm->addr) {
1202 BUG_ON(tmp->addr < vm->addr + vm->size);
1203 break;
1204 } else
1205 BUG_ON(tmp->addr + tmp->size > vm->addr);
1206 }
1207 vm->next = *p;
1208 *p = vm;
1209}
1210
1211/**
Tejun Heof0aa6612009-02-20 16:29:08 +09001212 * vm_area_register_early - register vmap area early during boot
1213 * @vm: vm_struct to register
Tejun Heoc0c0a292009-02-24 11:57:21 +09001214 * @align: requested alignment
Tejun Heof0aa6612009-02-20 16:29:08 +09001215 *
1216 * This function is used to register kernel vm area before
1217 * vmalloc_init() is called. @vm->size and @vm->flags should contain
1218 * proper values on entry and other fields should be zero. On return,
1219 * vm->addr contains the allocated address.
1220 *
1221 * DO NOT USE THIS FUNCTION UNLESS YOU KNOW WHAT YOU'RE DOING.
1222 */
Tejun Heoc0c0a292009-02-24 11:57:21 +09001223void __init vm_area_register_early(struct vm_struct *vm, size_t align)
Tejun Heof0aa6612009-02-20 16:29:08 +09001224{
1225 static size_t vm_init_off __initdata;
Tejun Heoc0c0a292009-02-24 11:57:21 +09001226 unsigned long addr;
Tejun Heof0aa6612009-02-20 16:29:08 +09001227
Tejun Heoc0c0a292009-02-24 11:57:21 +09001228 addr = ALIGN(VMALLOC_START + vm_init_off, align);
1229 vm_init_off = PFN_ALIGN(addr + vm->size) - VMALLOC_START;
1230
1231 vm->addr = (void *)addr;
Tejun Heof0aa6612009-02-20 16:29:08 +09001232
Nicolas Pitrebe9b7332011-08-25 00:24:21 -04001233 vm_area_add_early(vm);
Tejun Heof0aa6612009-02-20 16:29:08 +09001234}
1235
Nick Piggindb64fe02008-10-18 20:27:03 -07001236void __init vmalloc_init(void)
1237{
Ivan Kokshaysky822c18f2009-01-15 13:50:48 -08001238 struct vmap_area *va;
1239 struct vm_struct *tmp;
Nick Piggindb64fe02008-10-18 20:27:03 -07001240 int i;
1241
1242 for_each_possible_cpu(i) {
1243 struct vmap_block_queue *vbq;
1244
1245 vbq = &per_cpu(vmap_block_queue, i);
1246 spin_lock_init(&vbq->lock);
1247 INIT_LIST_HEAD(&vbq->free);
Nick Piggindb64fe02008-10-18 20:27:03 -07001248 }
Jeremy Fitzhardinge9b463332008-10-28 19:22:34 +11001249
Ivan Kokshaysky822c18f2009-01-15 13:50:48 -08001250 /* Import existing vmlist entries. */
1251 for (tmp = vmlist; tmp; tmp = tmp->next) {
Pekka Enberg43ebdac2009-05-25 15:01:35 +03001252 va = kzalloc(sizeof(struct vmap_area), GFP_NOWAIT);
KyongHofa002622012-05-29 15:06:49 -07001253 va->flags = VM_VM_AREA;
Ivan Kokshaysky822c18f2009-01-15 13:50:48 -08001254 va->va_start = (unsigned long)tmp->addr;
1255 va->va_end = va->va_start + tmp->size;
KyongHofa002622012-05-29 15:06:49 -07001256 va->vm = tmp;
Ivan Kokshaysky822c18f2009-01-15 13:50:48 -08001257 __insert_vmap_area(va);
1258 }
Tejun Heoca23e402009-08-14 15:00:52 +09001259
1260 vmap_area_pcpu_hole = VMALLOC_END;
1261
Jeremy Fitzhardinge9b463332008-10-28 19:22:34 +11001262 vmap_initialized = true;
Nick Piggindb64fe02008-10-18 20:27:03 -07001263}
1264
Tejun Heo8fc48982009-02-20 16:29:08 +09001265/**
1266 * map_kernel_range_noflush - map kernel VM area with the specified pages
1267 * @addr: start of the VM area to map
1268 * @size: size of the VM area to map
1269 * @prot: page protection flags to use
1270 * @pages: pages to map
1271 *
1272 * Map PFN_UP(@size) pages at @addr. The VM area @addr and @size
1273 * specify should have been allocated using get_vm_area() and its
1274 * friends.
1275 *
1276 * NOTE:
1277 * This function does NOT do any cache flushing. The caller is
1278 * responsible for calling flush_cache_vmap() on to-be-mapped areas
1279 * before calling this function.
1280 *
1281 * RETURNS:
1282 * The number of pages mapped on success, -errno on failure.
1283 */
1284int map_kernel_range_noflush(unsigned long addr, unsigned long size,
1285 pgprot_t prot, struct page **pages)
1286{
1287 return vmap_page_range_noflush(addr, addr + size, prot, pages);
1288}
1289
1290/**
1291 * unmap_kernel_range_noflush - unmap kernel VM area
1292 * @addr: start of the VM area to unmap
1293 * @size: size of the VM area to unmap
1294 *
1295 * Unmap PFN_UP(@size) pages at @addr. The VM area @addr and @size
1296 * specify should have been allocated using get_vm_area() and its
1297 * friends.
1298 *
1299 * NOTE:
1300 * This function does NOT do any cache flushing. The caller is
1301 * responsible for calling flush_cache_vunmap() on to-be-mapped areas
1302 * before calling this function and flush_tlb_kernel_range() after.
1303 */
1304void unmap_kernel_range_noflush(unsigned long addr, unsigned long size)
1305{
1306 vunmap_page_range(addr, addr + size);
1307}
Huang Ying81e88fd2011-01-12 14:44:55 +08001308EXPORT_SYMBOL_GPL(unmap_kernel_range_noflush);
Tejun Heo8fc48982009-02-20 16:29:08 +09001309
1310/**
1311 * unmap_kernel_range - unmap kernel VM area and flush cache and TLB
1312 * @addr: start of the VM area to unmap
1313 * @size: size of the VM area to unmap
1314 *
1315 * Similar to unmap_kernel_range_noflush() but flushes vcache before
1316 * the unmapping and tlb after.
1317 */
Nick Piggindb64fe02008-10-18 20:27:03 -07001318void unmap_kernel_range(unsigned long addr, unsigned long size)
1319{
1320 unsigned long end = addr + size;
Tejun Heof6fcba72009-02-20 15:38:48 -08001321
1322 flush_cache_vunmap(addr, end);
Nick Piggindb64fe02008-10-18 20:27:03 -07001323 vunmap_page_range(addr, end);
1324 flush_tlb_kernel_range(addr, end);
1325}
1326
1327int map_vm_area(struct vm_struct *area, pgprot_t prot, struct page ***pages)
1328{
1329 unsigned long addr = (unsigned long)area->addr;
1330 unsigned long end = addr + area->size - PAGE_SIZE;
1331 int err;
1332
1333 err = vmap_page_range(addr, end, prot, *pages);
1334 if (err > 0) {
1335 *pages += err;
1336 err = 0;
1337 }
1338
1339 return err;
1340}
1341EXPORT_SYMBOL_GPL(map_vm_area);
1342
1343/*** Old vmalloc interfaces ***/
1344DEFINE_RWLOCK(vmlist_lock);
1345struct vm_struct *vmlist;
1346
Mitsuo Hayasakaf5252e02011-10-31 17:08:13 -07001347static void setup_vmalloc_vm(struct vm_struct *vm, struct vmap_area *va,
Marek Szyprowskiacf4e612012-04-13 12:32:09 +02001348 unsigned long flags, const void *caller)
Tejun Heocf88c792009-08-14 15:00:52 +09001349{
Tejun Heocf88c792009-08-14 15:00:52 +09001350 vm->flags = flags;
1351 vm->addr = (void *)va->va_start;
1352 vm->size = va->va_end - va->va_start;
1353 vm->caller = caller;
Minchan Kimdb1aeca2012-01-10 15:08:39 -08001354 va->vm = vm;
Tejun Heocf88c792009-08-14 15:00:52 +09001355 va->flags |= VM_VM_AREA;
Mitsuo Hayasakaf5252e02011-10-31 17:08:13 -07001356}
Tejun Heocf88c792009-08-14 15:00:52 +09001357
Mitsuo Hayasakaf5252e02011-10-31 17:08:13 -07001358static void insert_vmalloc_vmlist(struct vm_struct *vm)
1359{
1360 struct vm_struct *tmp, **p;
1361
1362 vm->flags &= ~VM_UNLIST;
Tejun Heocf88c792009-08-14 15:00:52 +09001363 write_lock(&vmlist_lock);
1364 for (p = &vmlist; (tmp = *p) != NULL; p = &tmp->next) {
1365 if (tmp->addr >= vm->addr)
1366 break;
1367 }
1368 vm->next = *p;
1369 *p = vm;
1370 write_unlock(&vmlist_lock);
1371}
1372
Mitsuo Hayasakaf5252e02011-10-31 17:08:13 -07001373static void insert_vmalloc_vm(struct vm_struct *vm, struct vmap_area *va,
Marek Szyprowskiacf4e612012-04-13 12:32:09 +02001374 unsigned long flags, const void *caller)
Mitsuo Hayasakaf5252e02011-10-31 17:08:13 -07001375{
1376 setup_vmalloc_vm(vm, va, flags, caller);
1377 insert_vmalloc_vmlist(vm);
1378}
1379
Nick Piggindb64fe02008-10-18 20:27:03 -07001380static struct vm_struct *__get_vm_area_node(unsigned long size,
David Miller2dca6992009-09-21 12:22:34 -07001381 unsigned long align, unsigned long flags, unsigned long start,
Marek Szyprowskiacf4e612012-04-13 12:32:09 +02001382 unsigned long end, int node, gfp_t gfp_mask, const void *caller)
Nick Piggindb64fe02008-10-18 20:27:03 -07001383{
Kautuk Consul00065262011-12-19 17:12:04 -08001384 struct vmap_area *va;
Nick Piggindb64fe02008-10-18 20:27:03 -07001385 struct vm_struct *area;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
Giridhar Pemmasani52fd24c2006-10-28 10:38:34 -07001387 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 if (flags & VM_IOREMAP) {
1389 int bit = fls(size);
1390
1391 if (bit > IOREMAP_MAX_ORDER)
1392 bit = IOREMAP_MAX_ORDER;
1393 else if (bit < PAGE_SHIFT)
1394 bit = PAGE_SHIFT;
1395
1396 align = 1ul << bit;
1397 }
Nick Piggindb64fe02008-10-18 20:27:03 -07001398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 size = PAGE_ALIGN(size);
OGAWA Hirofumi31be8302006-11-16 01:19:29 -08001400 if (unlikely(!size))
1401 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402
Tejun Heocf88c792009-08-14 15:00:52 +09001403 area = kzalloc_node(sizeof(*area), gfp_mask & GFP_RECLAIM_MASK, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 if (unlikely(!area))
1405 return NULL;
1406
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 /*
1408 * We always allocate a guard page.
1409 */
1410 size += PAGE_SIZE;
1411
Nick Piggindb64fe02008-10-18 20:27:03 -07001412 va = alloc_vmap_area(size, align, start, end, node, gfp_mask);
1413 if (IS_ERR(va)) {
1414 kfree(area);
1415 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Mitsuo Hayasakaf5252e02011-10-31 17:08:13 -07001418 /*
1419 * When this function is called from __vmalloc_node_range,
1420 * we do not add vm_struct to vmlist here to avoid
1421 * accessing uninitialized members of vm_struct such as
1422 * pages and nr_pages fields. They will be set later.
1423 * To distinguish it from others, we use a VM_UNLIST flag.
1424 */
1425 if (flags & VM_UNLIST)
1426 setup_vmalloc_vm(area, va, flags, caller);
1427 else
1428 insert_vmalloc_vm(area, va, flags, caller);
1429
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 return area;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431}
1432
Christoph Lameter930fc452005-10-29 18:15:41 -07001433struct vm_struct *__get_vm_area(unsigned long size, unsigned long flags,
1434 unsigned long start, unsigned long end)
1435{
David Miller2dca6992009-09-21 12:22:34 -07001436 return __get_vm_area_node(size, 1, flags, start, end, -1, GFP_KERNEL,
Christoph Lameter23016962008-04-28 02:12:42 -07001437 __builtin_return_address(0));
Christoph Lameter930fc452005-10-29 18:15:41 -07001438}
Rusty Russell5992b6d2007-07-19 01:49:21 -07001439EXPORT_SYMBOL_GPL(__get_vm_area);
Christoph Lameter930fc452005-10-29 18:15:41 -07001440
Benjamin Herrenschmidtc2968612009-02-18 14:48:12 -08001441struct vm_struct *__get_vm_area_caller(unsigned long size, unsigned long flags,
1442 unsigned long start, unsigned long end,
Marek Szyprowskiacf4e612012-04-13 12:32:09 +02001443 const void *caller)
Benjamin Herrenschmidtc2968612009-02-18 14:48:12 -08001444{
David Miller2dca6992009-09-21 12:22:34 -07001445 return __get_vm_area_node(size, 1, flags, start, end, -1, GFP_KERNEL,
Benjamin Herrenschmidtc2968612009-02-18 14:48:12 -08001446 caller);
1447}
1448
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449/**
Simon Arlott183ff222007-10-20 01:27:18 +02001450 * get_vm_area - reserve a contiguous kernel virtual area
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 * @size: size of the area
1452 * @flags: %VM_IOREMAP for I/O mappings or VM_ALLOC
1453 *
1454 * Search an area of @size in the kernel virtual mapping area,
1455 * and reserved it for out purposes. Returns the area descriptor
1456 * on success or %NULL on failure.
1457 */
1458struct vm_struct *get_vm_area(unsigned long size, unsigned long flags)
1459{
Neeti Desaie6ccd032013-06-14 17:39:33 -07001460#ifdef CONFIG_ENABLE_VMALLOC_SAVING
1461 return __get_vm_area_node(size, 1, flags, PAGE_OFFSET, VMALLOC_END,
1462 -1, GFP_KERNEL, __builtin_return_address(0));
1463#else
David Miller2dca6992009-09-21 12:22:34 -07001464 return __get_vm_area_node(size, 1, flags, VMALLOC_START, VMALLOC_END,
Christoph Lameter23016962008-04-28 02:12:42 -07001465 -1, GFP_KERNEL, __builtin_return_address(0));
Neeti Desaie6ccd032013-06-14 17:39:33 -07001466#endif
1467
Christoph Lameter23016962008-04-28 02:12:42 -07001468}
1469
1470struct vm_struct *get_vm_area_caller(unsigned long size, unsigned long flags,
Marek Szyprowskiacf4e612012-04-13 12:32:09 +02001471 const void *caller)
Christoph Lameter23016962008-04-28 02:12:42 -07001472{
Neeti Desaie6ccd032013-06-14 17:39:33 -07001473#ifdef CONFIG_ENABLE_VMALLOC_SAVING
1474 return __get_vm_area_node(size, 1, flags, PAGE_OFFSET, VMALLOC_END,
Christoph Lameter23016962008-04-28 02:12:42 -07001475 -1, GFP_KERNEL, caller);
Neeti Desaie6ccd032013-06-14 17:39:33 -07001476#else
1477 return __get_vm_area_node(size, 1, flags, VMALLOC_START, VMALLOC_END,
1478 -1, GFP_KERNEL, __builtin_return_address(0));
1479#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480}
1481
Marek Szyprowskicb4d7a62012-07-30 09:11:33 +02001482/**
1483 * find_vm_area - find a continuous kernel virtual area
1484 * @addr: base address
1485 *
1486 * Search for the kernel VM area starting at @addr, and return it.
1487 * It is up to the caller to do all required locking to keep the returned
1488 * pointer valid.
1489 */
1490struct vm_struct *find_vm_area(const void *addr)
Nick Piggin83342312006-06-23 02:03:20 -07001491{
Nick Piggindb64fe02008-10-18 20:27:03 -07001492 struct vmap_area *va;
Nick Piggin83342312006-06-23 02:03:20 -07001493
Nick Piggindb64fe02008-10-18 20:27:03 -07001494 va = find_vmap_area((unsigned long)addr);
1495 if (va && va->flags & VM_VM_AREA)
Minchan Kimdb1aeca2012-01-10 15:08:39 -08001496 return va->vm;
Nick Piggin83342312006-06-23 02:03:20 -07001497
Andi Kleen7856dfe2005-05-20 14:27:57 -07001498 return NULL;
Andi Kleen7856dfe2005-05-20 14:27:57 -07001499}
1500
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501/**
Simon Arlott183ff222007-10-20 01:27:18 +02001502 * remove_vm_area - find and remove a continuous kernel virtual area
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 * @addr: base address
1504 *
1505 * Search for the kernel VM area starting at @addr, and remove it.
1506 * This function returns the found VM area, but using it is NOT safe
Andi Kleen7856dfe2005-05-20 14:27:57 -07001507 * on SMP machines, except for its size or flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 */
Christoph Lameterb3bdda02008-02-04 22:28:32 -08001509struct vm_struct *remove_vm_area(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510{
Nick Piggindb64fe02008-10-18 20:27:03 -07001511 struct vmap_area *va;
1512
1513 va = find_vmap_area((unsigned long)addr);
1514 if (va && va->flags & VM_VM_AREA) {
Minchan Kimdb1aeca2012-01-10 15:08:39 -08001515 struct vm_struct *vm = va->vm;
Mitsuo Hayasakaf5252e02011-10-31 17:08:13 -07001516
1517 if (!(vm->flags & VM_UNLIST)) {
1518 struct vm_struct *tmp, **p;
1519 /*
1520 * remove from list and disallow access to
1521 * this vm_struct before unmap. (address range
1522 * confliction is maintained by vmap.)
1523 */
1524 write_lock(&vmlist_lock);
1525 for (p = &vmlist; (tmp = *p) != vm; p = &tmp->next)
1526 ;
1527 *p = tmp->next;
1528 write_unlock(&vmlist_lock);
1529 }
Nick Piggindb64fe02008-10-18 20:27:03 -07001530
KAMEZAWA Hiroyukidd32c272009-09-21 17:02:32 -07001531 vmap_debug_free_range(va->va_start, va->va_end);
1532 free_unmap_vmap_area(va);
1533 vm->size -= PAGE_SIZE;
1534
Nick Piggindb64fe02008-10-18 20:27:03 -07001535 return vm;
1536 }
1537 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538}
1539
Christoph Lameterb3bdda02008-02-04 22:28:32 -08001540static void __vunmap(const void *addr, int deallocate_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541{
1542 struct vm_struct *area;
1543
1544 if (!addr)
1545 return;
1546
1547 if ((PAGE_SIZE-1) & (unsigned long)addr) {
Arjan van de Ven4c8573e2008-07-25 19:45:37 -07001548 WARN(1, KERN_ERR "Trying to vfree() bad address (%p)\n", addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 return;
1550 }
1551
1552 area = remove_vm_area(addr);
1553 if (unlikely(!area)) {
Arjan van de Ven4c8573e2008-07-25 19:45:37 -07001554 WARN(1, KERN_ERR "Trying to vfree() nonexistent vm area (%p)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 return;
1557 }
1558
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07001559 debug_check_no_locks_freed(addr, area->size);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07001560 debug_check_no_obj_freed(addr, area->size);
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07001561
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 if (deallocate_pages) {
1563 int i;
1564
1565 for (i = 0; i < area->nr_pages; i++) {
Christoph Lameterbf53d6f2008-02-04 22:28:34 -08001566 struct page *page = area->pages[i];
1567
1568 BUG_ON(!page);
1569 __free_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 }
1571
Jan Kiszka8757d5f2006-07-14 00:23:56 -07001572 if (area->flags & VM_VPAGES)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 vfree(area->pages);
1574 else
1575 kfree(area->pages);
1576 }
1577
1578 kfree(area);
1579 return;
1580}
1581
1582/**
1583 * vfree - release memory allocated by vmalloc()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 * @addr: memory base address
1585 *
Simon Arlott183ff222007-10-20 01:27:18 +02001586 * Free the virtually continuous memory area starting at @addr, as
Pekka Enberg80e93ef2005-09-09 13:10:16 -07001587 * obtained from vmalloc(), vmalloc_32() or __vmalloc(). If @addr is
1588 * NULL, no operation is performed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07001590 * Must not be called in interrupt context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 */
Christoph Lameterb3bdda02008-02-04 22:28:32 -08001592void vfree(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593{
1594 BUG_ON(in_interrupt());
Catalin Marinas89219d32009-06-11 13:23:19 +01001595
1596 kmemleak_free(addr);
1597
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 __vunmap(addr, 1);
1599}
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();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 __vunmap(addr, 0);
1616}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617EXPORT_SYMBOL(vunmap);
1618
1619/**
1620 * vmap - map an array of pages into virtually contiguous space
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 * @pages: array of page pointers
1622 * @count: number of pages to map
1623 * @flags: vm_area->flags
1624 * @prot: page protection for the mapping
1625 *
1626 * Maps @count pages from @pages into contiguous kernel virtual
1627 * space.
1628 */
1629void *vmap(struct page **pages, unsigned int count,
1630 unsigned long flags, pgprot_t prot)
1631{
1632 struct vm_struct *area;
1633
Peter Zijlstra34754b62009-02-25 16:04:03 +01001634 might_sleep();
1635
Jan Beulich44813742009-09-21 17:03:05 -07001636 if (count > totalram_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 return NULL;
1638
Christoph Lameter23016962008-04-28 02:12:42 -07001639 area = get_vm_area_caller((count << PAGE_SHIFT), flags,
1640 __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 if (!area)
1642 return NULL;
Christoph Lameter23016962008-04-28 02:12:42 -07001643
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 if (map_vm_area(area, prot, &pages)) {
1645 vunmap(area->addr);
1646 return NULL;
1647 }
1648
1649 return area->addr;
1650}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651EXPORT_SYMBOL(vmap);
1652
David Miller2dca6992009-09-21 12:22:34 -07001653static void *__vmalloc_node(unsigned long size, unsigned long align,
1654 gfp_t gfp_mask, pgprot_t prot,
Marek Szyprowskiacf4e612012-04-13 12:32:09 +02001655 int node, const void *caller);
Adrian Bunke31d9eb2008-02-04 22:29:09 -08001656static void *__vmalloc_area_node(struct vm_struct *area, gfp_t gfp_mask,
Marek Szyprowskiacf4e612012-04-13 12:32:09 +02001657 pgprot_t prot, int node, const void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658{
Dave Hansen22943ab2011-05-24 17:12:18 -07001659 const int order = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 struct page **pages;
1661 unsigned int nr_pages, array_size, i;
Jan Beulich976d6df2009-12-14 17:58:39 -08001662 gfp_t nested_gfp = (gfp_mask & GFP_RECLAIM_MASK) | __GFP_ZERO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
1664 nr_pages = (area->size - PAGE_SIZE) >> PAGE_SHIFT;
1665 array_size = (nr_pages * sizeof(struct page *));
1666
1667 area->nr_pages = nr_pages;
1668 /* Please note that the recursion is strictly bounded. */
Jan Kiszka8757d5f2006-07-14 00:23:56 -07001669 if (array_size > PAGE_SIZE) {
Jan Beulich976d6df2009-12-14 17:58:39 -08001670 pages = __vmalloc_node(array_size, 1, nested_gfp|__GFP_HIGHMEM,
Christoph Lameter23016962008-04-28 02:12:42 -07001671 PAGE_KERNEL, node, caller);
Jan Kiszka8757d5f2006-07-14 00:23:56 -07001672 area->flags |= VM_VPAGES;
Andrew Morton286e1ea2006-10-17 00:09:57 -07001673 } else {
Jan Beulich976d6df2009-12-14 17:58:39 -08001674 pages = kmalloc_node(array_size, nested_gfp, node);
Andrew Morton286e1ea2006-10-17 00:09:57 -07001675 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 area->pages = pages;
Christoph Lameter23016962008-04-28 02:12:42 -07001677 area->caller = caller;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 if (!area->pages) {
1679 remove_vm_area(area->addr);
1680 kfree(area);
1681 return NULL;
1682 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
1684 for (i = 0; i < area->nr_pages; i++) {
Christoph Lameterbf53d6f2008-02-04 22:28:34 -08001685 struct page *page;
Dave Hansen22943ab2011-05-24 17:12:18 -07001686 gfp_t tmp_mask = gfp_mask | __GFP_NOWARN;
Christoph Lameterbf53d6f2008-02-04 22:28:34 -08001687
Christoph Lameter930fc452005-10-29 18:15:41 -07001688 if (node < 0)
Dave Hansen22943ab2011-05-24 17:12:18 -07001689 page = alloc_page(tmp_mask);
Christoph Lameter930fc452005-10-29 18:15:41 -07001690 else
Dave Hansen22943ab2011-05-24 17:12:18 -07001691 page = alloc_pages_node(node, tmp_mask, order);
Christoph Lameterbf53d6f2008-02-04 22:28:34 -08001692
1693 if (unlikely(!page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 /* Successfully allocated i pages, free them in __vunmap() */
1695 area->nr_pages = i;
1696 goto fail;
1697 }
Christoph Lameterbf53d6f2008-02-04 22:28:34 -08001698 area->pages[i] = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 }
1700
1701 if (map_vm_area(area, prot, &pages))
1702 goto fail;
1703 return area->addr;
1704
1705fail:
Joe Perches3ee9a4f2011-10-31 17:08:35 -07001706 warn_alloc_failed(gfp_mask, order,
1707 "vmalloc: allocation failure, allocated %ld of %ld bytes\n",
Dave Hansen22943ab2011-05-24 17:12:18 -07001708 (area->nr_pages*PAGE_SIZE), area->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 vfree(area->addr);
1710 return NULL;
1711}
1712
David Rientjesd0a21262011-01-13 15:46:02 -08001713/**
1714 * __vmalloc_node_range - allocate virtually contiguous memory
1715 * @size: allocation size
1716 * @align: desired alignment
1717 * @start: vm area range start
1718 * @end: vm area range end
1719 * @gfp_mask: flags for the page level allocator
1720 * @prot: protection mask for the allocated pages
1721 * @node: node to use for allocation or -1
1722 * @caller: caller's return address
1723 *
1724 * Allocate enough pages to cover @size from the page level
1725 * allocator with @gfp_mask flags. Map them into contiguous
1726 * kernel virtual space, using a pagetable protection of @prot.
1727 */
1728void *__vmalloc_node_range(unsigned long size, unsigned long align,
1729 unsigned long start, unsigned long end, gfp_t gfp_mask,
Marek Szyprowskiacf4e612012-04-13 12:32:09 +02001730 pgprot_t prot, int node, const void *caller)
Christoph Lameter930fc452005-10-29 18:15:41 -07001731{
David Rientjesd0a21262011-01-13 15:46:02 -08001732 struct vm_struct *area;
1733 void *addr;
1734 unsigned long real_size = size;
Jack Cheung59f9f1c2011-11-29 16:52:49 -08001735#ifdef CONFIG_FIX_MOVABLE_ZONE
1736 unsigned long total_pages = total_unmovable_pages;
1737#else
1738 unsigned long total_pages = totalram_pages;
1739#endif
David Rientjesd0a21262011-01-13 15:46:02 -08001740
1741 size = PAGE_ALIGN(size);
Jack Cheung59f9f1c2011-11-29 16:52:49 -08001742 if (!size || (size >> PAGE_SHIFT) > total_pages)
Joe Perchesde7d2b52011-10-31 17:08:48 -07001743 goto fail;
David Rientjesd0a21262011-01-13 15:46:02 -08001744
Mitsuo Hayasakaf5252e02011-10-31 17:08:13 -07001745 area = __get_vm_area_node(size, align, VM_ALLOC | VM_UNLIST,
1746 start, end, node, gfp_mask, caller);
David Rientjesd0a21262011-01-13 15:46:02 -08001747 if (!area)
Joe Perchesde7d2b52011-10-31 17:08:48 -07001748 goto fail;
David Rientjesd0a21262011-01-13 15:46:02 -08001749
1750 addr = __vmalloc_area_node(area, gfp_mask, prot, node, caller);
Mel Gorman1368edf2011-12-08 14:34:30 -08001751 if (!addr)
1752 return NULL;
Catalin Marinas89219d32009-06-11 13:23:19 +01001753
1754 /*
Mitsuo Hayasakaf5252e02011-10-31 17:08:13 -07001755 * In this function, newly allocated vm_struct is not added
1756 * to vmlist at __get_vm_area_node(). so, it is added here.
1757 */
1758 insert_vmalloc_vmlist(area);
1759
1760 /*
Catalin Marinas89219d32009-06-11 13:23:19 +01001761 * A ref_count = 3 is needed because the vm_struct and vmap_area
1762 * structures allocated in the __get_vm_area_node() function contain
1763 * references to the virtual address of the vmalloc'ed block.
1764 */
David Rientjesd0a21262011-01-13 15:46:02 -08001765 kmemleak_alloc(addr, real_size, 3, gfp_mask);
Catalin Marinas89219d32009-06-11 13:23:19 +01001766
1767 return addr;
Joe Perchesde7d2b52011-10-31 17:08:48 -07001768
1769fail:
1770 warn_alloc_failed(gfp_mask, 0,
1771 "vmalloc: allocation failure: %lu bytes\n",
1772 real_size);
1773 return NULL;
Christoph Lameter930fc452005-10-29 18:15:41 -07001774}
1775
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776/**
Christoph Lameter930fc452005-10-29 18:15:41 -07001777 * __vmalloc_node - allocate virtually contiguous memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 * @size: allocation size
David Miller2dca6992009-09-21 12:22:34 -07001779 * @align: desired alignment
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 * @gfp_mask: flags for the page level allocator
1781 * @prot: protection mask for the allocated pages
Randy Dunlapd44e0782005-11-07 01:01:10 -08001782 * @node: node to use for allocation or -1
Randy Dunlapc85d1942008-05-01 04:34:48 -07001783 * @caller: caller's return address
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 *
1785 * Allocate enough pages to cover @size from the page level
1786 * allocator with @gfp_mask flags. Map them into contiguous
1787 * kernel virtual space, using a pagetable protection of @prot.
1788 */
David Miller2dca6992009-09-21 12:22:34 -07001789static void *__vmalloc_node(unsigned long size, unsigned long align,
1790 gfp_t gfp_mask, pgprot_t prot,
Marek Szyprowskiacf4e612012-04-13 12:32:09 +02001791 int node, const void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792{
David Rientjesd0a21262011-01-13 15:46:02 -08001793 return __vmalloc_node_range(size, align, VMALLOC_START, VMALLOC_END,
1794 gfp_mask, prot, node, caller);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795}
1796
Christoph Lameter930fc452005-10-29 18:15:41 -07001797void *__vmalloc(unsigned long size, gfp_t gfp_mask, pgprot_t prot)
1798{
David Miller2dca6992009-09-21 12:22:34 -07001799 return __vmalloc_node(size, 1, gfp_mask, prot, -1,
Christoph Lameter23016962008-04-28 02:12:42 -07001800 __builtin_return_address(0));
Christoph Lameter930fc452005-10-29 18:15:41 -07001801}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802EXPORT_SYMBOL(__vmalloc);
1803
Dave Younge1ca7782010-10-26 14:22:06 -07001804static inline void *__vmalloc_node_flags(unsigned long size,
1805 int node, gfp_t flags)
1806{
1807 return __vmalloc_node(size, 1, flags, PAGE_KERNEL,
1808 node, __builtin_return_address(0));
1809}
1810
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811/**
1812 * vmalloc - allocate virtually contiguous memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 * @size: allocation size
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 * Allocate enough pages to cover @size from the page level
1815 * allocator and map them into contiguous kernel virtual space.
1816 *
Michael Opdenackerc1c88972006-10-03 23:21:02 +02001817 * For tight control over page level allocator and protection flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 * use __vmalloc() instead.
1819 */
1820void *vmalloc(unsigned long size)
1821{
Dave Younge1ca7782010-10-26 14:22:06 -07001822 return __vmalloc_node_flags(size, -1, GFP_KERNEL | __GFP_HIGHMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824EXPORT_SYMBOL(vmalloc);
1825
Christoph Lameter930fc452005-10-29 18:15:41 -07001826/**
Dave Younge1ca7782010-10-26 14:22:06 -07001827 * vzalloc - allocate virtually contiguous memory with zero fill
1828 * @size: allocation size
1829 * Allocate enough pages to cover @size from the page level
1830 * allocator and map them into contiguous kernel virtual space.
1831 * The memory allocated is set to zero.
1832 *
1833 * For tight control over page level allocator and protection flags
1834 * use __vmalloc() instead.
1835 */
1836void *vzalloc(unsigned long size)
1837{
1838 return __vmalloc_node_flags(size, -1,
1839 GFP_KERNEL | __GFP_HIGHMEM | __GFP_ZERO);
1840}
1841EXPORT_SYMBOL(vzalloc);
1842
1843/**
Rolf Eike Beeread04082006-09-27 01:50:13 -07001844 * vmalloc_user - allocate zeroed virtually contiguous memory for userspace
1845 * @size: allocation size
Nick Piggin83342312006-06-23 02:03:20 -07001846 *
Rolf Eike Beeread04082006-09-27 01:50:13 -07001847 * The resulting memory area is zeroed so it can be mapped to userspace
1848 * without leaking data.
Nick Piggin83342312006-06-23 02:03:20 -07001849 */
1850void *vmalloc_user(unsigned long size)
1851{
1852 struct vm_struct *area;
1853 void *ret;
1854
David Miller2dca6992009-09-21 12:22:34 -07001855 ret = __vmalloc_node(size, SHMLBA,
1856 GFP_KERNEL | __GFP_HIGHMEM | __GFP_ZERO,
Glauber Costa84877842009-01-06 14:39:19 -08001857 PAGE_KERNEL, -1, __builtin_return_address(0));
Eric Dumazet2b4ac442006-11-10 12:27:48 -08001858 if (ret) {
Nick Piggindb64fe02008-10-18 20:27:03 -07001859 area = find_vm_area(ret);
Eric Dumazet2b4ac442006-11-10 12:27:48 -08001860 area->flags |= VM_USERMAP;
Eric Dumazet2b4ac442006-11-10 12:27:48 -08001861 }
Nick Piggin83342312006-06-23 02:03:20 -07001862 return ret;
1863}
1864EXPORT_SYMBOL(vmalloc_user);
1865
1866/**
Christoph Lameter930fc452005-10-29 18:15:41 -07001867 * vmalloc_node - allocate memory on a specific node
Christoph Lameter930fc452005-10-29 18:15:41 -07001868 * @size: allocation size
Randy Dunlapd44e0782005-11-07 01:01:10 -08001869 * @node: numa node
Christoph Lameter930fc452005-10-29 18:15:41 -07001870 *
1871 * Allocate enough pages to cover @size from the page level
1872 * allocator and map them into contiguous kernel virtual space.
1873 *
Michael Opdenackerc1c88972006-10-03 23:21:02 +02001874 * For tight control over page level allocator and protection flags
Christoph Lameter930fc452005-10-29 18:15:41 -07001875 * use __vmalloc() instead.
1876 */
1877void *vmalloc_node(unsigned long size, int node)
1878{
David Miller2dca6992009-09-21 12:22:34 -07001879 return __vmalloc_node(size, 1, GFP_KERNEL | __GFP_HIGHMEM, PAGE_KERNEL,
Christoph Lameter23016962008-04-28 02:12:42 -07001880 node, __builtin_return_address(0));
Christoph Lameter930fc452005-10-29 18:15:41 -07001881}
1882EXPORT_SYMBOL(vmalloc_node);
1883
Dave Younge1ca7782010-10-26 14:22:06 -07001884/**
1885 * vzalloc_node - allocate memory on a specific node with zero fill
1886 * @size: allocation size
1887 * @node: numa node
1888 *
1889 * Allocate enough pages to cover @size from the page level
1890 * allocator and map them into contiguous kernel virtual space.
1891 * The memory allocated is set to zero.
1892 *
1893 * For tight control over page level allocator and protection flags
1894 * use __vmalloc_node() instead.
1895 */
1896void *vzalloc_node(unsigned long size, int node)
1897{
1898 return __vmalloc_node_flags(size, node,
1899 GFP_KERNEL | __GFP_HIGHMEM | __GFP_ZERO);
1900}
1901EXPORT_SYMBOL(vzalloc_node);
1902
Pavel Pisa4dc3b162005-05-01 08:59:25 -07001903#ifndef PAGE_KERNEL_EXEC
1904# define PAGE_KERNEL_EXEC PAGE_KERNEL
1905#endif
1906
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907/**
1908 * vmalloc_exec - allocate virtually contiguous, executable memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 * @size: allocation size
1910 *
1911 * Kernel-internal function to allocate enough pages to cover @size
1912 * the page level allocator and map them into contiguous and
1913 * executable kernel virtual space.
1914 *
Michael Opdenackerc1c88972006-10-03 23:21:02 +02001915 * For tight control over page level allocator and protection flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 * use __vmalloc() instead.
1917 */
1918
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919void *vmalloc_exec(unsigned long size)
1920{
David Miller2dca6992009-09-21 12:22:34 -07001921 return __vmalloc_node(size, 1, GFP_KERNEL | __GFP_HIGHMEM, PAGE_KERNEL_EXEC,
Glauber Costa84877842009-01-06 14:39:19 -08001922 -1, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923}
1924
Andi Kleen0d08e0d2007-05-02 19:27:12 +02001925#if defined(CONFIG_64BIT) && defined(CONFIG_ZONE_DMA32)
Benjamin Herrenschmidt7ac674f2007-07-19 01:49:10 -07001926#define GFP_VMALLOC32 GFP_DMA32 | GFP_KERNEL
Andi Kleen0d08e0d2007-05-02 19:27:12 +02001927#elif defined(CONFIG_64BIT) && defined(CONFIG_ZONE_DMA)
Benjamin Herrenschmidt7ac674f2007-07-19 01:49:10 -07001928#define GFP_VMALLOC32 GFP_DMA | GFP_KERNEL
Andi Kleen0d08e0d2007-05-02 19:27:12 +02001929#else
1930#define GFP_VMALLOC32 GFP_KERNEL
1931#endif
1932
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933/**
1934 * vmalloc_32 - allocate virtually contiguous memory (32bit addressable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 * @size: allocation size
1936 *
1937 * Allocate enough 32bit PA addressable pages to cover @size from the
1938 * page level allocator and map them into contiguous kernel virtual space.
1939 */
1940void *vmalloc_32(unsigned long size)
1941{
David Miller2dca6992009-09-21 12:22:34 -07001942 return __vmalloc_node(size, 1, GFP_VMALLOC32, PAGE_KERNEL,
Glauber Costa84877842009-01-06 14:39:19 -08001943 -1, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945EXPORT_SYMBOL(vmalloc_32);
1946
Nick Piggin83342312006-06-23 02:03:20 -07001947/**
Rolf Eike Beeread04082006-09-27 01:50:13 -07001948 * vmalloc_32_user - allocate zeroed virtually contiguous 32bit memory
Nick Piggin83342312006-06-23 02:03:20 -07001949 * @size: allocation size
Rolf Eike Beeread04082006-09-27 01:50:13 -07001950 *
1951 * The resulting memory area is 32bit addressable and zeroed so it can be
1952 * mapped to userspace without leaking data.
Nick Piggin83342312006-06-23 02:03:20 -07001953 */
1954void *vmalloc_32_user(unsigned long size)
1955{
1956 struct vm_struct *area;
1957 void *ret;
1958
David Miller2dca6992009-09-21 12:22:34 -07001959 ret = __vmalloc_node(size, 1, GFP_VMALLOC32 | __GFP_ZERO, PAGE_KERNEL,
Glauber Costa84877842009-01-06 14:39:19 -08001960 -1, __builtin_return_address(0));
Eric Dumazet2b4ac442006-11-10 12:27:48 -08001961 if (ret) {
Nick Piggindb64fe02008-10-18 20:27:03 -07001962 area = find_vm_area(ret);
Eric Dumazet2b4ac442006-11-10 12:27:48 -08001963 area->flags |= VM_USERMAP;
Eric Dumazet2b4ac442006-11-10 12:27:48 -08001964 }
Nick Piggin83342312006-06-23 02:03:20 -07001965 return ret;
1966}
1967EXPORT_SYMBOL(vmalloc_32_user);
1968
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07001969/*
1970 * small helper routine , copy contents to buf from addr.
1971 * If the page is not present, fill zero.
1972 */
1973
1974static int aligned_vread(char *buf, char *addr, unsigned long count)
1975{
1976 struct page *p;
1977 int copied = 0;
1978
1979 while (count) {
1980 unsigned long offset, length;
1981
1982 offset = (unsigned long)addr & ~PAGE_MASK;
1983 length = PAGE_SIZE - offset;
1984 if (length > count)
1985 length = count;
1986 p = vmalloc_to_page(addr);
1987 /*
1988 * To do safe access to this _mapped_ area, we need
1989 * lock. But adding lock here means that we need to add
1990 * overhead of vmalloc()/vfree() calles for this _debug_
1991 * interface, rarely used. Instead of that, we'll use
1992 * kmap() and get small overhead in this access function.
1993 */
1994 if (p) {
1995 /*
1996 * we can expect USER0 is not used (see vread/vwrite's
1997 * function description)
1998 */
Cong Wang9b04c5f2011-11-25 23:14:39 +08001999 void *map = kmap_atomic(p);
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002000 memcpy(buf, map + offset, length);
Cong Wang9b04c5f2011-11-25 23:14:39 +08002001 kunmap_atomic(map);
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002002 } else
2003 memset(buf, 0, length);
2004
2005 addr += length;
2006 buf += length;
2007 copied += length;
2008 count -= length;
2009 }
2010 return copied;
2011}
2012
2013static int aligned_vwrite(char *buf, char *addr, unsigned long count)
2014{
2015 struct page *p;
2016 int copied = 0;
2017
2018 while (count) {
2019 unsigned long offset, length;
2020
2021 offset = (unsigned long)addr & ~PAGE_MASK;
2022 length = PAGE_SIZE - offset;
2023 if (length > count)
2024 length = count;
2025 p = vmalloc_to_page(addr);
2026 /*
2027 * To do safe access to this _mapped_ area, we need
2028 * lock. But adding lock here means that we need to add
2029 * overhead of vmalloc()/vfree() calles for this _debug_
2030 * interface, rarely used. Instead of that, we'll use
2031 * kmap() and get small overhead in this access function.
2032 */
2033 if (p) {
2034 /*
2035 * we can expect USER0 is not used (see vread/vwrite's
2036 * function description)
2037 */
Cong Wang9b04c5f2011-11-25 23:14:39 +08002038 void *map = kmap_atomic(p);
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002039 memcpy(map + offset, buf, length);
Cong Wang9b04c5f2011-11-25 23:14:39 +08002040 kunmap_atomic(map);
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002041 }
2042 addr += length;
2043 buf += length;
2044 copied += length;
2045 count -= length;
2046 }
2047 return copied;
2048}
2049
2050/**
2051 * vread() - read vmalloc area in a safe way.
2052 * @buf: buffer for reading data
2053 * @addr: vm address.
2054 * @count: number of bytes to be read.
2055 *
2056 * Returns # of bytes which addr and buf should be increased.
2057 * (same number to @count). Returns 0 if [addr...addr+count) doesn't
2058 * includes any intersect with alive vmalloc area.
2059 *
2060 * This function checks that addr is a valid vmalloc'ed area, and
2061 * copy data from that area to a given buffer. If the given memory range
2062 * of [addr...addr+count) includes some valid address, data is copied to
2063 * proper area of @buf. If there are memory holes, they'll be zero-filled.
2064 * IOREMAP area is treated as memory hole and no copy is done.
2065 *
2066 * If [addr...addr+count) doesn't includes any intersects with alive
2067 * vm_struct area, returns 0.
2068 * @buf should be kernel's buffer. Because this function uses KM_USER0,
2069 * the caller should guarantee KM_USER0 is not used.
2070 *
2071 * Note: In usual ops, vread() is never necessary because the caller
2072 * should know vmalloc() area is valid and can use memcpy().
2073 * This is for routines which have to access vmalloc area without
2074 * any informaion, as /dev/kmem.
2075 *
2076 */
2077
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078long vread(char *buf, char *addr, unsigned long count)
2079{
2080 struct vm_struct *tmp;
2081 char *vaddr, *buf_start = buf;
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002082 unsigned long buflen = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 unsigned long n;
2084
2085 /* Don't allow overflow */
2086 if ((unsigned long) addr + count < count)
2087 count = -(unsigned long) addr;
2088
2089 read_lock(&vmlist_lock);
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002090 for (tmp = vmlist; count && tmp; tmp = tmp->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 vaddr = (char *) tmp->addr;
2092 if (addr >= vaddr + tmp->size - PAGE_SIZE)
2093 continue;
2094 while (addr < vaddr) {
2095 if (count == 0)
2096 goto finished;
2097 *buf = '\0';
2098 buf++;
2099 addr++;
2100 count--;
2101 }
2102 n = vaddr + tmp->size - PAGE_SIZE - addr;
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002103 if (n > count)
2104 n = count;
2105 if (!(tmp->flags & VM_IOREMAP))
2106 aligned_vread(buf, addr, n);
2107 else /* IOREMAP area is treated as memory hole */
2108 memset(buf, 0, n);
2109 buf += n;
2110 addr += n;
2111 count -= n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 }
2113finished:
2114 read_unlock(&vmlist_lock);
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002115
2116 if (buf == buf_start)
2117 return 0;
2118 /* zero-fill memory holes */
2119 if (buf != buf_start + buflen)
2120 memset(buf, 0, buflen - (buf - buf_start));
2121
2122 return buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123}
2124
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002125/**
2126 * vwrite() - write vmalloc area in a safe way.
2127 * @buf: buffer for source data
2128 * @addr: vm address.
2129 * @count: number of bytes to be read.
2130 *
2131 * Returns # of bytes which addr and buf should be incresed.
2132 * (same number to @count).
2133 * If [addr...addr+count) doesn't includes any intersect with valid
2134 * vmalloc area, returns 0.
2135 *
2136 * This function checks that addr is a valid vmalloc'ed area, and
2137 * copy data from a buffer to the given addr. If specified range of
2138 * [addr...addr+count) includes some valid address, data is copied from
2139 * proper area of @buf. If there are memory holes, no copy to hole.
2140 * IOREMAP area is treated as memory hole and no copy is done.
2141 *
2142 * If [addr...addr+count) doesn't includes any intersects with alive
2143 * vm_struct area, returns 0.
2144 * @buf should be kernel's buffer. Because this function uses KM_USER0,
2145 * the caller should guarantee KM_USER0 is not used.
2146 *
2147 * Note: In usual ops, vwrite() is never necessary because the caller
2148 * should know vmalloc() area is valid and can use memcpy().
2149 * This is for routines which have to access vmalloc area without
2150 * any informaion, as /dev/kmem.
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002151 */
2152
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153long vwrite(char *buf, char *addr, unsigned long count)
2154{
2155 struct vm_struct *tmp;
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002156 char *vaddr;
2157 unsigned long n, buflen;
2158 int copied = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
2160 /* Don't allow overflow */
2161 if ((unsigned long) addr + count < count)
2162 count = -(unsigned long) addr;
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002163 buflen = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
2165 read_lock(&vmlist_lock);
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002166 for (tmp = vmlist; count && tmp; tmp = tmp->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 vaddr = (char *) tmp->addr;
2168 if (addr >= vaddr + tmp->size - PAGE_SIZE)
2169 continue;
2170 while (addr < vaddr) {
2171 if (count == 0)
2172 goto finished;
2173 buf++;
2174 addr++;
2175 count--;
2176 }
2177 n = vaddr + tmp->size - PAGE_SIZE - addr;
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002178 if (n > count)
2179 n = count;
2180 if (!(tmp->flags & VM_IOREMAP)) {
2181 aligned_vwrite(buf, addr, n);
2182 copied++;
2183 }
2184 buf += n;
2185 addr += n;
2186 count -= n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 }
2188finished:
2189 read_unlock(&vmlist_lock);
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002190 if (!copied)
2191 return 0;
2192 return buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193}
Nick Piggin83342312006-06-23 02:03:20 -07002194
2195/**
2196 * remap_vmalloc_range - map vmalloc pages to userspace
Nick Piggin83342312006-06-23 02:03:20 -07002197 * @vma: vma to cover (map full range of vma)
2198 * @addr: vmalloc memory
2199 * @pgoff: number of pages into addr before first page to map
Randy Dunlap76824862008-03-19 17:00:40 -07002200 *
2201 * Returns: 0 for success, -Exxx on failure
Nick Piggin83342312006-06-23 02:03:20 -07002202 *
2203 * This function checks that addr is a valid vmalloc'ed area, and
2204 * that it is big enough to cover the vma. Will return failure if
2205 * that criteria isn't met.
2206 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08002207 * Similar to remap_pfn_range() (see mm/memory.c)
Nick Piggin83342312006-06-23 02:03:20 -07002208 */
2209int remap_vmalloc_range(struct vm_area_struct *vma, void *addr,
2210 unsigned long pgoff)
2211{
2212 struct vm_struct *area;
2213 unsigned long uaddr = vma->vm_start;
2214 unsigned long usize = vma->vm_end - vma->vm_start;
Nick Piggin83342312006-06-23 02:03:20 -07002215
2216 if ((PAGE_SIZE-1) & (unsigned long)addr)
2217 return -EINVAL;
2218
Nick Piggindb64fe02008-10-18 20:27:03 -07002219 area = find_vm_area(addr);
Nick Piggin83342312006-06-23 02:03:20 -07002220 if (!area)
Nick Piggindb64fe02008-10-18 20:27:03 -07002221 return -EINVAL;
Nick Piggin83342312006-06-23 02:03:20 -07002222
2223 if (!(area->flags & VM_USERMAP))
Nick Piggindb64fe02008-10-18 20:27:03 -07002224 return -EINVAL;
Nick Piggin83342312006-06-23 02:03:20 -07002225
2226 if (usize + (pgoff << PAGE_SHIFT) > area->size - PAGE_SIZE)
Nick Piggindb64fe02008-10-18 20:27:03 -07002227 return -EINVAL;
Nick Piggin83342312006-06-23 02:03:20 -07002228
2229 addr += pgoff << PAGE_SHIFT;
2230 do {
2231 struct page *page = vmalloc_to_page(addr);
Nick Piggindb64fe02008-10-18 20:27:03 -07002232 int ret;
2233
Nick Piggin83342312006-06-23 02:03:20 -07002234 ret = vm_insert_page(vma, uaddr, page);
2235 if (ret)
2236 return ret;
2237
2238 uaddr += PAGE_SIZE;
2239 addr += PAGE_SIZE;
2240 usize -= PAGE_SIZE;
2241 } while (usize > 0);
2242
2243 /* Prevent "things" like memory migration? VM_flags need a cleanup... */
2244 vma->vm_flags |= VM_RESERVED;
2245
Nick Piggindb64fe02008-10-18 20:27:03 -07002246 return 0;
Nick Piggin83342312006-06-23 02:03:20 -07002247}
2248EXPORT_SYMBOL(remap_vmalloc_range);
2249
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -07002250/*
2251 * Implement a stub for vmalloc_sync_all() if the architecture chose not to
2252 * have one.
2253 */
2254void __attribute__((weak)) vmalloc_sync_all(void)
2255{
2256}
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07002257
2258
Martin Schwidefsky2f569af2008-02-08 04:22:04 -08002259static int f(pte_t *pte, pgtable_t table, unsigned long addr, void *data)
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07002260{
David Vrabelcd129092011-09-29 16:53:32 +01002261 pte_t ***p = data;
2262
2263 if (p) {
2264 *(*p) = pte;
2265 (*p)++;
2266 }
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07002267 return 0;
2268}
2269
2270/**
2271 * alloc_vm_area - allocate a range of kernel address space
2272 * @size: size of the area
David Vrabelcd129092011-09-29 16:53:32 +01002273 * @ptes: returns the PTEs for the address space
Randy Dunlap76824862008-03-19 17:00:40 -07002274 *
2275 * Returns: NULL on failure, vm_struct on success
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07002276 *
2277 * This function reserves a range of kernel address space, and
2278 * allocates pagetables to map that range. No actual mappings
David Vrabelcd129092011-09-29 16:53:32 +01002279 * are created.
2280 *
2281 * If @ptes is non-NULL, pointers to the PTEs (in init_mm)
2282 * allocated for the VM area are returned.
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07002283 */
David Vrabelcd129092011-09-29 16:53:32 +01002284struct vm_struct *alloc_vm_area(size_t size, pte_t **ptes)
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07002285{
2286 struct vm_struct *area;
2287
Christoph Lameter23016962008-04-28 02:12:42 -07002288 area = get_vm_area_caller(size, VM_IOREMAP,
2289 __builtin_return_address(0));
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07002290 if (area == NULL)
2291 return NULL;
2292
2293 /*
2294 * This ensures that page tables are constructed for this region
2295 * of kernel virtual address space and mapped into init_mm.
2296 */
2297 if (apply_to_page_range(&init_mm, (unsigned long)area->addr,
David Vrabelcd129092011-09-29 16:53:32 +01002298 size, f, ptes ? &ptes : NULL)) {
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07002299 free_vm_area(area);
2300 return NULL;
2301 }
2302
David Vrabeld63c8a02011-09-14 16:22:02 -07002303 /*
2304 * If the allocated address space is passed to a hypercall
2305 * before being used then we cannot rely on a page fault to
2306 * trigger an update of the page tables. So sync all the page
2307 * tables here.
2308 */
2309 vmalloc_sync_all();
2310
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07002311 return area;
2312}
2313EXPORT_SYMBOL_GPL(alloc_vm_area);
2314
2315void free_vm_area(struct vm_struct *area)
2316{
2317 struct vm_struct *ret;
2318 ret = remove_vm_area(area->addr);
2319 BUG_ON(ret != area);
2320 kfree(area);
2321}
2322EXPORT_SYMBOL_GPL(free_vm_area);
Christoph Lametera10aa572008-04-28 02:12:40 -07002323
Tejun Heo4f8b02b2010-09-03 18:22:47 +02002324#ifdef CONFIG_SMP
Tejun Heoca23e402009-08-14 15:00:52 +09002325static struct vmap_area *node_to_va(struct rb_node *n)
2326{
2327 return n ? rb_entry(n, struct vmap_area, rb_node) : NULL;
2328}
2329
2330/**
2331 * pvm_find_next_prev - find the next and prev vmap_area surrounding @end
2332 * @end: target address
2333 * @pnext: out arg for the next vmap_area
2334 * @pprev: out arg for the previous vmap_area
2335 *
2336 * Returns: %true if either or both of next and prev are found,
2337 * %false if no vmap_area exists
2338 *
2339 * Find vmap_areas end addresses of which enclose @end. ie. if not
2340 * NULL, *pnext->va_end > @end and *pprev->va_end <= @end.
2341 */
2342static bool pvm_find_next_prev(unsigned long end,
2343 struct vmap_area **pnext,
2344 struct vmap_area **pprev)
2345{
2346 struct rb_node *n = vmap_area_root.rb_node;
2347 struct vmap_area *va = NULL;
2348
2349 while (n) {
2350 va = rb_entry(n, struct vmap_area, rb_node);
2351 if (end < va->va_end)
2352 n = n->rb_left;
2353 else if (end > va->va_end)
2354 n = n->rb_right;
2355 else
2356 break;
2357 }
2358
2359 if (!va)
2360 return false;
2361
2362 if (va->va_end > end) {
2363 *pnext = va;
2364 *pprev = node_to_va(rb_prev(&(*pnext)->rb_node));
2365 } else {
2366 *pprev = va;
2367 *pnext = node_to_va(rb_next(&(*pprev)->rb_node));
2368 }
2369 return true;
2370}
2371
2372/**
2373 * pvm_determine_end - find the highest aligned address between two vmap_areas
2374 * @pnext: in/out arg for the next vmap_area
2375 * @pprev: in/out arg for the previous vmap_area
2376 * @align: alignment
2377 *
2378 * Returns: determined end address
2379 *
2380 * Find the highest aligned address between *@pnext and *@pprev below
2381 * VMALLOC_END. *@pnext and *@pprev are adjusted so that the aligned
2382 * down address is between the end addresses of the two vmap_areas.
2383 *
2384 * Please note that the address returned by this function may fall
2385 * inside *@pnext vmap_area. The caller is responsible for checking
2386 * that.
2387 */
2388static unsigned long pvm_determine_end(struct vmap_area **pnext,
2389 struct vmap_area **pprev,
2390 unsigned long align)
2391{
2392 const unsigned long vmalloc_end = VMALLOC_END & ~(align - 1);
2393 unsigned long addr;
2394
2395 if (*pnext)
2396 addr = min((*pnext)->va_start & ~(align - 1), vmalloc_end);
2397 else
2398 addr = vmalloc_end;
2399
2400 while (*pprev && (*pprev)->va_end > addr) {
2401 *pnext = *pprev;
2402 *pprev = node_to_va(rb_prev(&(*pnext)->rb_node));
2403 }
2404
2405 return addr;
2406}
2407
2408/**
2409 * pcpu_get_vm_areas - allocate vmalloc areas for percpu allocator
2410 * @offsets: array containing offset of each area
2411 * @sizes: array containing size of each area
2412 * @nr_vms: the number of areas to allocate
2413 * @align: alignment, all entries in @offsets and @sizes must be aligned to this
Tejun Heoca23e402009-08-14 15:00:52 +09002414 *
2415 * Returns: kmalloc'd vm_struct pointer array pointing to allocated
2416 * vm_structs on success, %NULL on failure
2417 *
2418 * Percpu allocator wants to use congruent vm areas so that it can
2419 * maintain the offsets among percpu areas. This function allocates
David Rientjesec3f64f2011-01-13 15:46:01 -08002420 * congruent vmalloc areas for it with GFP_KERNEL. These areas tend to
2421 * be scattered pretty far, distance between two areas easily going up
2422 * to gigabytes. To avoid interacting with regular vmallocs, these
2423 * areas are allocated from top.
Tejun Heoca23e402009-08-14 15:00:52 +09002424 *
2425 * Despite its complicated look, this allocator is rather simple. It
2426 * does everything top-down and scans areas from the end looking for
2427 * matching slot. While scanning, if any of the areas overlaps with
2428 * existing vmap_area, the base address is pulled down to fit the
2429 * area. Scanning is repeated till all the areas fit and then all
2430 * necessary data structres are inserted and the result is returned.
2431 */
2432struct vm_struct **pcpu_get_vm_areas(const unsigned long *offsets,
2433 const size_t *sizes, int nr_vms,
David Rientjesec3f64f2011-01-13 15:46:01 -08002434 size_t align)
Tejun Heoca23e402009-08-14 15:00:52 +09002435{
2436 const unsigned long vmalloc_start = ALIGN(VMALLOC_START, align);
2437 const unsigned long vmalloc_end = VMALLOC_END & ~(align - 1);
2438 struct vmap_area **vas, *prev, *next;
2439 struct vm_struct **vms;
2440 int area, area2, last_area, term_area;
2441 unsigned long base, start, end, last_end;
2442 bool purged = false;
2443
Tejun Heoca23e402009-08-14 15:00:52 +09002444 /* verify parameters and allocate data structures */
2445 BUG_ON(align & ~PAGE_MASK || !is_power_of_2(align));
2446 for (last_area = 0, area = 0; area < nr_vms; area++) {
2447 start = offsets[area];
2448 end = start + sizes[area];
2449
2450 /* is everything aligned properly? */
2451 BUG_ON(!IS_ALIGNED(offsets[area], align));
2452 BUG_ON(!IS_ALIGNED(sizes[area], align));
2453
2454 /* detect the area with the highest address */
2455 if (start > offsets[last_area])
2456 last_area = area;
2457
2458 for (area2 = 0; area2 < nr_vms; area2++) {
2459 unsigned long start2 = offsets[area2];
2460 unsigned long end2 = start2 + sizes[area2];
2461
2462 if (area2 == area)
2463 continue;
2464
2465 BUG_ON(start2 >= start && start2 < end);
2466 BUG_ON(end2 <= end && end2 > start);
2467 }
2468 }
2469 last_end = offsets[last_area] + sizes[last_area];
2470
2471 if (vmalloc_end - vmalloc_start < last_end) {
2472 WARN_ON(true);
2473 return NULL;
2474 }
2475
David Rientjesec3f64f2011-01-13 15:46:01 -08002476 vms = kzalloc(sizeof(vms[0]) * nr_vms, GFP_KERNEL);
2477 vas = kzalloc(sizeof(vas[0]) * nr_vms, GFP_KERNEL);
Tejun Heoca23e402009-08-14 15:00:52 +09002478 if (!vas || !vms)
Kautuk Consulf1db7af2012-01-12 17:20:08 -08002479 goto err_free2;
Tejun Heoca23e402009-08-14 15:00:52 +09002480
2481 for (area = 0; area < nr_vms; area++) {
David Rientjesec3f64f2011-01-13 15:46:01 -08002482 vas[area] = kzalloc(sizeof(struct vmap_area), GFP_KERNEL);
2483 vms[area] = kzalloc(sizeof(struct vm_struct), GFP_KERNEL);
Tejun Heoca23e402009-08-14 15:00:52 +09002484 if (!vas[area] || !vms[area])
2485 goto err_free;
2486 }
2487retry:
2488 spin_lock(&vmap_area_lock);
2489
2490 /* start scanning - we scan from the top, begin with the last area */
2491 area = term_area = last_area;
2492 start = offsets[area];
2493 end = start + sizes[area];
2494
2495 if (!pvm_find_next_prev(vmap_area_pcpu_hole, &next, &prev)) {
2496 base = vmalloc_end - last_end;
2497 goto found;
2498 }
2499 base = pvm_determine_end(&next, &prev, align) - end;
2500
2501 while (true) {
2502 BUG_ON(next && next->va_end <= base + end);
2503 BUG_ON(prev && prev->va_end > base + end);
2504
2505 /*
2506 * base might have underflowed, add last_end before
2507 * comparing.
2508 */
2509 if (base + last_end < vmalloc_start + last_end) {
2510 spin_unlock(&vmap_area_lock);
2511 if (!purged) {
2512 purge_vmap_area_lazy();
2513 purged = true;
2514 goto retry;
2515 }
2516 goto err_free;
2517 }
2518
2519 /*
2520 * If next overlaps, move base downwards so that it's
2521 * right below next and then recheck.
2522 */
2523 if (next && next->va_start < base + end) {
2524 base = pvm_determine_end(&next, &prev, align) - end;
2525 term_area = area;
2526 continue;
2527 }
2528
2529 /*
2530 * If prev overlaps, shift down next and prev and move
2531 * base so that it's right below new next and then
2532 * recheck.
2533 */
2534 if (prev && prev->va_end > base + start) {
2535 next = prev;
2536 prev = node_to_va(rb_prev(&next->rb_node));
2537 base = pvm_determine_end(&next, &prev, align) - end;
2538 term_area = area;
2539 continue;
2540 }
2541
2542 /*
2543 * This area fits, move on to the previous one. If
2544 * the previous one is the terminal one, we're done.
2545 */
2546 area = (area + nr_vms - 1) % nr_vms;
2547 if (area == term_area)
2548 break;
2549 start = offsets[area];
2550 end = start + sizes[area];
2551 pvm_find_next_prev(base + end, &next, &prev);
2552 }
2553found:
2554 /* we've found a fitting base, insert all va's */
2555 for (area = 0; area < nr_vms; area++) {
2556 struct vmap_area *va = vas[area];
2557
2558 va->va_start = base + offsets[area];
2559 va->va_end = va->va_start + sizes[area];
2560 __insert_vmap_area(va);
2561 }
2562
2563 vmap_area_pcpu_hole = base + offsets[last_area];
2564
2565 spin_unlock(&vmap_area_lock);
2566
2567 /* insert all vm's */
2568 for (area = 0; area < nr_vms; area++)
2569 insert_vmalloc_vm(vms[area], vas[area], VM_ALLOC,
2570 pcpu_get_vm_areas);
2571
2572 kfree(vas);
2573 return vms;
2574
2575err_free:
2576 for (area = 0; area < nr_vms; area++) {
Kautuk Consulf1db7af2012-01-12 17:20:08 -08002577 kfree(vas[area]);
2578 kfree(vms[area]);
Tejun Heoca23e402009-08-14 15:00:52 +09002579 }
Kautuk Consulf1db7af2012-01-12 17:20:08 -08002580err_free2:
Tejun Heoca23e402009-08-14 15:00:52 +09002581 kfree(vas);
2582 kfree(vms);
2583 return NULL;
2584}
2585
2586/**
2587 * pcpu_free_vm_areas - free vmalloc areas for percpu allocator
2588 * @vms: vm_struct pointer array returned by pcpu_get_vm_areas()
2589 * @nr_vms: the number of allocated areas
2590 *
2591 * Free vm_structs and the array allocated by pcpu_get_vm_areas().
2592 */
2593void pcpu_free_vm_areas(struct vm_struct **vms, int nr_vms)
2594{
2595 int i;
2596
2597 for (i = 0; i < nr_vms; i++)
2598 free_vm_area(vms[i]);
2599 kfree(vms);
2600}
Tejun Heo4f8b02b2010-09-03 18:22:47 +02002601#endif /* CONFIG_SMP */
Christoph Lametera10aa572008-04-28 02:12:40 -07002602
2603#ifdef CONFIG_PROC_FS
2604static void *s_start(struct seq_file *m, loff_t *pos)
Namhyung Kime199b5d2010-10-26 14:22:03 -07002605 __acquires(&vmlist_lock)
Christoph Lametera10aa572008-04-28 02:12:40 -07002606{
2607 loff_t n = *pos;
2608 struct vm_struct *v;
2609
2610 read_lock(&vmlist_lock);
2611 v = vmlist;
2612 while (n > 0 && v) {
2613 n--;
2614 v = v->next;
2615 }
2616 if (!n)
2617 return v;
2618
2619 return NULL;
2620
2621}
2622
2623static void *s_next(struct seq_file *m, void *p, loff_t *pos)
2624{
2625 struct vm_struct *v = p;
2626
2627 ++*pos;
2628 return v->next;
2629}
2630
2631static void s_stop(struct seq_file *m, void *p)
Namhyung Kime199b5d2010-10-26 14:22:03 -07002632 __releases(&vmlist_lock)
Christoph Lametera10aa572008-04-28 02:12:40 -07002633{
2634 read_unlock(&vmlist_lock);
2635}
2636
Eric Dumazeta47a1262008-07-23 21:27:38 -07002637static void show_numa_info(struct seq_file *m, struct vm_struct *v)
2638{
2639 if (NUMA_BUILD) {
2640 unsigned int nr, *counters = m->private;
2641
2642 if (!counters)
2643 return;
2644
2645 memset(counters, 0, nr_node_ids * sizeof(unsigned int));
2646
2647 for (nr = 0; nr < v->nr_pages; nr++)
2648 counters[page_to_nid(v->pages[nr])]++;
2649
2650 for_each_node_state(nr, N_HIGH_MEMORY)
2651 if (counters[nr])
2652 seq_printf(m, " N%u=%u", nr, counters[nr]);
2653 }
2654}
2655
Christoph Lametera10aa572008-04-28 02:12:40 -07002656static int s_show(struct seq_file *m, void *p)
2657{
2658 struct vm_struct *v = p;
2659
2660 seq_printf(m, "0x%p-0x%p %7ld",
2661 v->addr, v->addr + v->size, v->size);
2662
Joe Perches62c70bc2011-01-13 15:45:52 -08002663 if (v->caller)
2664 seq_printf(m, " %pS", v->caller);
Christoph Lameter23016962008-04-28 02:12:42 -07002665
Christoph Lametera10aa572008-04-28 02:12:40 -07002666 if (v->nr_pages)
2667 seq_printf(m, " pages=%d", v->nr_pages);
2668
2669 if (v->phys_addr)
Kenji Kaneshigeffa71f32010-06-18 12:22:40 +09002670 seq_printf(m, " phys=%llx", (unsigned long long)v->phys_addr);
Christoph Lametera10aa572008-04-28 02:12:40 -07002671
2672 if (v->flags & VM_IOREMAP)
2673 seq_printf(m, " ioremap");
2674
2675 if (v->flags & VM_ALLOC)
2676 seq_printf(m, " vmalloc");
2677
2678 if (v->flags & VM_MAP)
2679 seq_printf(m, " vmap");
2680
2681 if (v->flags & VM_USERMAP)
2682 seq_printf(m, " user");
2683
2684 if (v->flags & VM_VPAGES)
2685 seq_printf(m, " vpages");
2686
Laura Abbottd3263482013-08-22 13:46:07 -07002687 if (v->flags & VM_LOWMEM)
2688 seq_printf(m, " lowmem");
2689
Eric Dumazeta47a1262008-07-23 21:27:38 -07002690 show_numa_info(m, v);
Christoph Lametera10aa572008-04-28 02:12:40 -07002691 seq_putc(m, '\n');
2692 return 0;
2693}
2694
Alexey Dobriyan5f6a6a92008-10-06 03:50:47 +04002695static const struct seq_operations vmalloc_op = {
Christoph Lametera10aa572008-04-28 02:12:40 -07002696 .start = s_start,
2697 .next = s_next,
2698 .stop = s_stop,
2699 .show = s_show,
2700};
Alexey Dobriyan5f6a6a92008-10-06 03:50:47 +04002701
2702static int vmalloc_open(struct inode *inode, struct file *file)
2703{
2704 unsigned int *ptr = NULL;
2705 int ret;
2706
Kulikov Vasiliy51980ac2010-08-09 17:19:58 -07002707 if (NUMA_BUILD) {
Alexey Dobriyan5f6a6a92008-10-06 03:50:47 +04002708 ptr = kmalloc(nr_node_ids * sizeof(unsigned int), GFP_KERNEL);
Kulikov Vasiliy51980ac2010-08-09 17:19:58 -07002709 if (ptr == NULL)
2710 return -ENOMEM;
2711 }
Alexey Dobriyan5f6a6a92008-10-06 03:50:47 +04002712 ret = seq_open(file, &vmalloc_op);
2713 if (!ret) {
2714 struct seq_file *m = file->private_data;
2715 m->private = ptr;
2716 } else
2717 kfree(ptr);
2718 return ret;
2719}
2720
2721static const struct file_operations proc_vmalloc_operations = {
2722 .open = vmalloc_open,
2723 .read = seq_read,
2724 .llseek = seq_lseek,
2725 .release = seq_release_private,
2726};
2727
2728static int __init proc_vmalloc_init(void)
2729{
2730 proc_create("vmallocinfo", S_IRUSR, NULL, &proc_vmalloc_operations);
2731 return 0;
2732}
2733module_init(proc_vmalloc_init);
Christoph Lametera10aa572008-04-28 02:12:40 -07002734#endif
2735