blob: b7db93572797e1477c1648c454a909b29766e3ce [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>
15#include <linux/slab.h>
16#include <linux/spinlock.h>
17#include <linux/interrupt.h>
Alexey Dobriyan5f6a6a92008-10-06 03:50:47 +040018#include <linux/proc_fs.h>
Christoph Lametera10aa572008-04-28 02:12:40 -070019#include <linux/seq_file.h>
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070020#include <linux/debugobjects.h>
Christoph Lameter23016962008-04-28 02:12:42 -070021#include <linux/kallsyms.h>
Nick Piggindb64fe02008-10-18 20:27:03 -070022#include <linux/list.h>
23#include <linux/rbtree.h>
24#include <linux/radix-tree.h>
25#include <linux/rcupdate.h>
Ivan Kokshaysky822c18f2009-01-15 13:50:48 -080026#include <linux/bootmem.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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Nick Piggindb64fe02008-10-18 20:27:03 -070030#include <asm/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/uaccess.h>
32#include <asm/tlbflush.h>
33
34
Nick Piggindb64fe02008-10-18 20:27:03 -070035/*** Page table manipulation functions ***/
Adrian Bunkb2213852006-09-25 23:31:02 -070036
Linus Torvalds1da177e2005-04-16 15:20:36 -070037static void vunmap_pte_range(pmd_t *pmd, unsigned long addr, unsigned long end)
38{
39 pte_t *pte;
40
41 pte = pte_offset_kernel(pmd, addr);
42 do {
43 pte_t ptent = ptep_get_and_clear(&init_mm, addr, pte);
44 WARN_ON(!pte_none(ptent) && !pte_present(ptent));
45 } while (pte++, addr += PAGE_SIZE, addr != end);
46}
47
Nick Piggindb64fe02008-10-18 20:27:03 -070048static void vunmap_pmd_range(pud_t *pud, unsigned long addr, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049{
50 pmd_t *pmd;
51 unsigned long next;
52
53 pmd = pmd_offset(pud, addr);
54 do {
55 next = pmd_addr_end(addr, end);
56 if (pmd_none_or_clear_bad(pmd))
57 continue;
58 vunmap_pte_range(pmd, addr, next);
59 } while (pmd++, addr = next, addr != end);
60}
61
Nick Piggindb64fe02008-10-18 20:27:03 -070062static void vunmap_pud_range(pgd_t *pgd, unsigned long addr, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
64 pud_t *pud;
65 unsigned long next;
66
67 pud = pud_offset(pgd, addr);
68 do {
69 next = pud_addr_end(addr, end);
70 if (pud_none_or_clear_bad(pud))
71 continue;
72 vunmap_pmd_range(pud, addr, next);
73 } while (pud++, addr = next, addr != end);
74}
75
Nick Piggindb64fe02008-10-18 20:27:03 -070076static void vunmap_page_range(unsigned long addr, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
78 pgd_t *pgd;
79 unsigned long next;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81 BUG_ON(addr >= end);
82 pgd = pgd_offset_k(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 do {
84 next = pgd_addr_end(addr, end);
85 if (pgd_none_or_clear_bad(pgd))
86 continue;
87 vunmap_pud_range(pgd, addr, next);
88 } while (pgd++, addr = next, addr != end);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089}
90
91static int vmap_pte_range(pmd_t *pmd, unsigned long addr,
Nick Piggindb64fe02008-10-18 20:27:03 -070092 unsigned long end, pgprot_t prot, struct page **pages, int *nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
94 pte_t *pte;
95
Nick Piggindb64fe02008-10-18 20:27:03 -070096 /*
97 * nr is a running index into the array which helps higher level
98 * callers keep track of where we're up to.
99 */
100
Hugh Dickins872fec12005-10-29 18:16:21 -0700101 pte = pte_alloc_kernel(pmd, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 if (!pte)
103 return -ENOMEM;
104 do {
Nick Piggindb64fe02008-10-18 20:27:03 -0700105 struct page *page = pages[*nr];
106
107 if (WARN_ON(!pte_none(*pte)))
108 return -EBUSY;
109 if (WARN_ON(!page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 return -ENOMEM;
111 set_pte_at(&init_mm, addr, pte, mk_pte(page, prot));
Nick Piggindb64fe02008-10-18 20:27:03 -0700112 (*nr)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 } while (pte++, addr += PAGE_SIZE, addr != end);
114 return 0;
115}
116
Nick Piggindb64fe02008-10-18 20:27:03 -0700117static int vmap_pmd_range(pud_t *pud, unsigned long addr,
118 unsigned long end, pgprot_t prot, struct page **pages, int *nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
120 pmd_t *pmd;
121 unsigned long next;
122
123 pmd = pmd_alloc(&init_mm, pud, addr);
124 if (!pmd)
125 return -ENOMEM;
126 do {
127 next = pmd_addr_end(addr, end);
Nick Piggindb64fe02008-10-18 20:27:03 -0700128 if (vmap_pte_range(pmd, addr, next, prot, pages, nr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 return -ENOMEM;
130 } while (pmd++, addr = next, addr != end);
131 return 0;
132}
133
Nick Piggindb64fe02008-10-18 20:27:03 -0700134static int vmap_pud_range(pgd_t *pgd, unsigned long addr,
135 unsigned long end, pgprot_t prot, struct page **pages, int *nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
137 pud_t *pud;
138 unsigned long next;
139
140 pud = pud_alloc(&init_mm, pgd, addr);
141 if (!pud)
142 return -ENOMEM;
143 do {
144 next = pud_addr_end(addr, end);
Nick Piggindb64fe02008-10-18 20:27:03 -0700145 if (vmap_pmd_range(pud, addr, next, prot, pages, nr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 return -ENOMEM;
147 } while (pud++, addr = next, addr != end);
148 return 0;
149}
150
Nick Piggindb64fe02008-10-18 20:27:03 -0700151/*
152 * Set up page tables in kva (addr, end). The ptes shall have prot "prot", and
153 * will have pfns corresponding to the "pages" array.
154 *
155 * Ie. pte at addr+N*PAGE_SIZE shall point to pfn corresponding to pages[N]
156 */
Tejun Heo8fc48982009-02-20 16:29:08 +0900157static int vmap_page_range_noflush(unsigned long start, unsigned long end,
158 pgprot_t prot, struct page **pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
160 pgd_t *pgd;
161 unsigned long next;
Adam Lackorzynski2e4e27c2009-01-04 12:00:46 -0800162 unsigned long addr = start;
Nick Piggindb64fe02008-10-18 20:27:03 -0700163 int err = 0;
164 int nr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 BUG_ON(addr >= end);
167 pgd = pgd_offset_k(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 do {
169 next = pgd_addr_end(addr, end);
Nick Piggindb64fe02008-10-18 20:27:03 -0700170 err = vmap_pud_range(pgd, addr, next, prot, pages, &nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 if (err)
172 break;
173 } while (pgd++, addr = next, addr != end);
Nick Piggindb64fe02008-10-18 20:27:03 -0700174
175 if (unlikely(err))
176 return err;
177 return nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178}
179
Tejun Heo8fc48982009-02-20 16:29:08 +0900180static int vmap_page_range(unsigned long start, unsigned long end,
181 pgprot_t prot, struct page **pages)
182{
183 int ret;
184
185 ret = vmap_page_range_noflush(start, end, prot, pages);
186 flush_cache_vmap(start, end);
187 return ret;
188}
189
Linus Torvalds73bdf0a2008-10-15 08:35:12 -0700190static inline int is_vmalloc_or_module_addr(const void *x)
191{
192 /*
Russell Kingab4f2ee2008-11-06 17:11:07 +0000193 * ARM, x86-64 and sparc64 put modules in a special place,
Linus Torvalds73bdf0a2008-10-15 08:35:12 -0700194 * and fall back on vmalloc() if that fails. Others
195 * just put it in the vmalloc space.
196 */
197#if defined(CONFIG_MODULES) && defined(MODULES_VADDR)
198 unsigned long addr = (unsigned long)x;
199 if (addr >= MODULES_VADDR && addr < MODULES_END)
200 return 1;
201#endif
202 return is_vmalloc_addr(x);
203}
204
Christoph Lameter48667e72008-02-04 22:28:31 -0800205/*
Nick Piggindb64fe02008-10-18 20:27:03 -0700206 * Walk a vmap address to the struct page it maps.
Christoph Lameter48667e72008-02-04 22:28:31 -0800207 */
Christoph Lameterb3bdda02008-02-04 22:28:32 -0800208struct page *vmalloc_to_page(const void *vmalloc_addr)
Christoph Lameter48667e72008-02-04 22:28:31 -0800209{
210 unsigned long addr = (unsigned long) vmalloc_addr;
211 struct page *page = NULL;
212 pgd_t *pgd = pgd_offset_k(addr);
Christoph Lameter48667e72008-02-04 22:28:31 -0800213
Ingo Molnar7aa413d2008-06-19 13:28:11 +0200214 /*
215 * XXX we might need to change this if we add VIRTUAL_BUG_ON for
216 * architectures that do not vmalloc module space
217 */
Linus Torvalds73bdf0a2008-10-15 08:35:12 -0700218 VIRTUAL_BUG_ON(!is_vmalloc_or_module_addr(vmalloc_addr));
Jiri Slaby59ea7462008-06-12 13:56:40 +0200219
Christoph Lameter48667e72008-02-04 22:28:31 -0800220 if (!pgd_none(*pgd)) {
Nick Piggindb64fe02008-10-18 20:27:03 -0700221 pud_t *pud = pud_offset(pgd, addr);
Christoph Lameter48667e72008-02-04 22:28:31 -0800222 if (!pud_none(*pud)) {
Nick Piggindb64fe02008-10-18 20:27:03 -0700223 pmd_t *pmd = pmd_offset(pud, addr);
Christoph Lameter48667e72008-02-04 22:28:31 -0800224 if (!pmd_none(*pmd)) {
Nick Piggindb64fe02008-10-18 20:27:03 -0700225 pte_t *ptep, pte;
226
Christoph Lameter48667e72008-02-04 22:28:31 -0800227 ptep = pte_offset_map(pmd, addr);
228 pte = *ptep;
229 if (pte_present(pte))
230 page = pte_page(pte);
231 pte_unmap(ptep);
232 }
233 }
234 }
235 return page;
236}
237EXPORT_SYMBOL(vmalloc_to_page);
238
239/*
240 * Map a vmalloc()-space virtual address to the physical page frame number.
241 */
Christoph Lameterb3bdda02008-02-04 22:28:32 -0800242unsigned long vmalloc_to_pfn(const void *vmalloc_addr)
Christoph Lameter48667e72008-02-04 22:28:31 -0800243{
244 return page_to_pfn(vmalloc_to_page(vmalloc_addr));
245}
246EXPORT_SYMBOL(vmalloc_to_pfn);
247
Nick Piggindb64fe02008-10-18 20:27:03 -0700248
249/*** Global kva allocator ***/
250
251#define VM_LAZY_FREE 0x01
252#define VM_LAZY_FREEING 0x02
253#define VM_VM_AREA 0x04
254
255struct vmap_area {
256 unsigned long va_start;
257 unsigned long va_end;
258 unsigned long flags;
259 struct rb_node rb_node; /* address sorted rbtree */
260 struct list_head list; /* address sorted list */
261 struct list_head purge_list; /* "lazy purge" list */
262 void *private;
263 struct rcu_head rcu_head;
264};
265
266static DEFINE_SPINLOCK(vmap_area_lock);
267static struct rb_root vmap_area_root = RB_ROOT;
268static LIST_HEAD(vmap_area_list);
269
270static struct vmap_area *__find_vmap_area(unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
Nick Piggindb64fe02008-10-18 20:27:03 -0700272 struct rb_node *n = vmap_area_root.rb_node;
273
274 while (n) {
275 struct vmap_area *va;
276
277 va = rb_entry(n, struct vmap_area, rb_node);
278 if (addr < va->va_start)
279 n = n->rb_left;
280 else if (addr > va->va_start)
281 n = n->rb_right;
282 else
283 return va;
284 }
285
286 return NULL;
287}
288
289static void __insert_vmap_area(struct vmap_area *va)
290{
291 struct rb_node **p = &vmap_area_root.rb_node;
292 struct rb_node *parent = NULL;
293 struct rb_node *tmp;
294
295 while (*p) {
296 struct vmap_area *tmp;
297
298 parent = *p;
299 tmp = rb_entry(parent, struct vmap_area, rb_node);
300 if (va->va_start < tmp->va_end)
301 p = &(*p)->rb_left;
302 else if (va->va_end > tmp->va_start)
303 p = &(*p)->rb_right;
304 else
305 BUG();
306 }
307
308 rb_link_node(&va->rb_node, parent, p);
309 rb_insert_color(&va->rb_node, &vmap_area_root);
310
311 /* address-sort this list so it is usable like the vmlist */
312 tmp = rb_prev(&va->rb_node);
313 if (tmp) {
314 struct vmap_area *prev;
315 prev = rb_entry(tmp, struct vmap_area, rb_node);
316 list_add_rcu(&va->list, &prev->list);
317 } else
318 list_add_rcu(&va->list, &vmap_area_list);
319}
320
321static void purge_vmap_area_lazy(void);
322
323/*
324 * Allocate a region of KVA of the specified size and alignment, within the
325 * vstart and vend.
326 */
327static struct vmap_area *alloc_vmap_area(unsigned long size,
328 unsigned long align,
329 unsigned long vstart, unsigned long vend,
330 int node, gfp_t gfp_mask)
331{
332 struct vmap_area *va;
333 struct rb_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 unsigned long addr;
Nick Piggindb64fe02008-10-18 20:27:03 -0700335 int purged = 0;
336
Nick Piggin77669702009-02-27 14:03:03 -0800337 BUG_ON(!size);
Nick Piggindb64fe02008-10-18 20:27:03 -0700338 BUG_ON(size & ~PAGE_MASK);
339
Nick Piggindb64fe02008-10-18 20:27:03 -0700340 va = kmalloc_node(sizeof(struct vmap_area),
341 gfp_mask & GFP_RECLAIM_MASK, node);
342 if (unlikely(!va))
343 return ERR_PTR(-ENOMEM);
344
345retry:
Glauber Costa0ae15132008-11-19 15:36:33 -0800346 addr = ALIGN(vstart, align);
347
Nick Piggindb64fe02008-10-18 20:27:03 -0700348 spin_lock(&vmap_area_lock);
Nick Piggin77669702009-02-27 14:03:03 -0800349 if (addr + size - 1 < addr)
350 goto overflow;
351
Nick Piggindb64fe02008-10-18 20:27:03 -0700352 /* XXX: could have a last_hole cache */
353 n = vmap_area_root.rb_node;
354 if (n) {
355 struct vmap_area *first = NULL;
356
357 do {
358 struct vmap_area *tmp;
359 tmp = rb_entry(n, struct vmap_area, rb_node);
360 if (tmp->va_end >= addr) {
361 if (!first && tmp->va_start < addr + size)
362 first = tmp;
363 n = n->rb_left;
364 } else {
365 first = tmp;
366 n = n->rb_right;
367 }
368 } while (n);
369
370 if (!first)
371 goto found;
372
373 if (first->va_end < addr) {
374 n = rb_next(&first->rb_node);
375 if (n)
376 first = rb_entry(n, struct vmap_area, rb_node);
377 else
378 goto found;
379 }
380
Nick Pigginf011c2d2008-11-19 15:36:32 -0800381 while (addr + size > first->va_start && addr + size <= vend) {
Nick Piggindb64fe02008-10-18 20:27:03 -0700382 addr = ALIGN(first->va_end + PAGE_SIZE, align);
Nick Piggin77669702009-02-27 14:03:03 -0800383 if (addr + size - 1 < addr)
384 goto overflow;
Nick Piggindb64fe02008-10-18 20:27:03 -0700385
386 n = rb_next(&first->rb_node);
387 if (n)
388 first = rb_entry(n, struct vmap_area, rb_node);
389 else
390 goto found;
391 }
392 }
393found:
394 if (addr + size > vend) {
Nick Piggin77669702009-02-27 14:03:03 -0800395overflow:
Nick Piggindb64fe02008-10-18 20:27:03 -0700396 spin_unlock(&vmap_area_lock);
397 if (!purged) {
398 purge_vmap_area_lazy();
399 purged = 1;
400 goto retry;
401 }
402 if (printk_ratelimit())
Glauber Costac1279c42009-01-06 14:39:18 -0800403 printk(KERN_WARNING
404 "vmap allocation for size %lu failed: "
405 "use vmalloc=<size> to increase size.\n", size);
Ralph Wuerthner2498ce42009-05-06 16:02:59 -0700406 kfree(va);
Nick Piggindb64fe02008-10-18 20:27:03 -0700407 return ERR_PTR(-EBUSY);
408 }
409
410 BUG_ON(addr & (align-1));
411
412 va->va_start = addr;
413 va->va_end = addr + size;
414 va->flags = 0;
415 __insert_vmap_area(va);
416 spin_unlock(&vmap_area_lock);
417
418 return va;
419}
420
421static void rcu_free_va(struct rcu_head *head)
422{
423 struct vmap_area *va = container_of(head, struct vmap_area, rcu_head);
424
425 kfree(va);
426}
427
428static void __free_vmap_area(struct vmap_area *va)
429{
430 BUG_ON(RB_EMPTY_NODE(&va->rb_node));
431 rb_erase(&va->rb_node, &vmap_area_root);
432 RB_CLEAR_NODE(&va->rb_node);
433 list_del_rcu(&va->list);
434
435 call_rcu(&va->rcu_head, rcu_free_va);
436}
437
438/*
439 * Free a region of KVA allocated by alloc_vmap_area
440 */
441static void free_vmap_area(struct vmap_area *va)
442{
443 spin_lock(&vmap_area_lock);
444 __free_vmap_area(va);
445 spin_unlock(&vmap_area_lock);
446}
447
448/*
449 * Clear the pagetable entries of a given vmap_area
450 */
451static void unmap_vmap_area(struct vmap_area *va)
452{
453 vunmap_page_range(va->va_start, va->va_end);
454}
455
Nick Piggincd528582009-01-06 14:39:20 -0800456static void vmap_debug_free_range(unsigned long start, unsigned long end)
457{
458 /*
459 * Unmap page tables and force a TLB flush immediately if
460 * CONFIG_DEBUG_PAGEALLOC is set. This catches use after free
461 * bugs similarly to those in linear kernel virtual address
462 * space after a page has been freed.
463 *
464 * All the lazy freeing logic is still retained, in order to
465 * minimise intrusiveness of this debugging feature.
466 *
467 * This is going to be *slow* (linear kernel virtual address
468 * debugging doesn't do a broadcast TLB flush so it is a lot
469 * faster).
470 */
471#ifdef CONFIG_DEBUG_PAGEALLOC
472 vunmap_page_range(start, end);
473 flush_tlb_kernel_range(start, end);
474#endif
475}
476
Nick Piggindb64fe02008-10-18 20:27:03 -0700477/*
478 * lazy_max_pages is the maximum amount of virtual address space we gather up
479 * before attempting to purge with a TLB flush.
480 *
481 * There is a tradeoff here: a larger number will cover more kernel page tables
482 * and take slightly longer to purge, but it will linearly reduce the number of
483 * global TLB flushes that must be performed. It would seem natural to scale
484 * this number up linearly with the number of CPUs (because vmapping activity
485 * could also scale linearly with the number of CPUs), however it is likely
486 * that in practice, workloads might be constrained in other ways that mean
487 * vmap activity will not scale linearly with CPUs. Also, I want to be
488 * conservative and not introduce a big latency on huge systems, so go with
489 * a less aggressive log scale. It will still be an improvement over the old
490 * code, and it will be simple to change the scale factor if we find that it
491 * becomes a problem on bigger systems.
492 */
493static unsigned long lazy_max_pages(void)
494{
495 unsigned int log;
496
497 log = fls(num_online_cpus());
498
499 return log * (32UL * 1024 * 1024 / PAGE_SIZE);
500}
501
502static atomic_t vmap_lazy_nr = ATOMIC_INIT(0);
503
504/*
505 * Purges all lazily-freed vmap areas.
506 *
507 * If sync is 0 then don't purge if there is already a purge in progress.
508 * If force_flush is 1, then flush kernel TLBs between *start and *end even
509 * if we found no lazy vmap areas to unmap (callers can use this to optimise
510 * their own TLB flushing).
511 * Returns with *start = min(*start, lowest purged address)
512 * *end = max(*end, highest purged address)
513 */
514static void __purge_vmap_area_lazy(unsigned long *start, unsigned long *end,
515 int sync, int force_flush)
516{
Andrew Morton46666d82009-01-15 13:51:15 -0800517 static DEFINE_SPINLOCK(purge_lock);
Nick Piggindb64fe02008-10-18 20:27:03 -0700518 LIST_HEAD(valist);
519 struct vmap_area *va;
Vegard Nossumcbb76672009-02-27 14:03:04 -0800520 struct vmap_area *n_va;
Nick Piggindb64fe02008-10-18 20:27:03 -0700521 int nr = 0;
522
523 /*
524 * If sync is 0 but force_flush is 1, we'll go sync anyway but callers
525 * should not expect such behaviour. This just simplifies locking for
526 * the case that isn't actually used at the moment anyway.
527 */
528 if (!sync && !force_flush) {
Andrew Morton46666d82009-01-15 13:51:15 -0800529 if (!spin_trylock(&purge_lock))
Nick Piggindb64fe02008-10-18 20:27:03 -0700530 return;
531 } else
Andrew Morton46666d82009-01-15 13:51:15 -0800532 spin_lock(&purge_lock);
Nick Piggindb64fe02008-10-18 20:27:03 -0700533
534 rcu_read_lock();
535 list_for_each_entry_rcu(va, &vmap_area_list, list) {
536 if (va->flags & VM_LAZY_FREE) {
537 if (va->va_start < *start)
538 *start = va->va_start;
539 if (va->va_end > *end)
540 *end = va->va_end;
541 nr += (va->va_end - va->va_start) >> PAGE_SHIFT;
542 unmap_vmap_area(va);
543 list_add_tail(&va->purge_list, &valist);
544 va->flags |= VM_LAZY_FREEING;
545 va->flags &= ~VM_LAZY_FREE;
546 }
547 }
548 rcu_read_unlock();
549
550 if (nr) {
551 BUG_ON(nr > atomic_read(&vmap_lazy_nr));
552 atomic_sub(nr, &vmap_lazy_nr);
553 }
554
555 if (nr || force_flush)
556 flush_tlb_kernel_range(*start, *end);
557
558 if (nr) {
559 spin_lock(&vmap_area_lock);
Vegard Nossumcbb76672009-02-27 14:03:04 -0800560 list_for_each_entry_safe(va, n_va, &valist, purge_list)
Nick Piggindb64fe02008-10-18 20:27:03 -0700561 __free_vmap_area(va);
562 spin_unlock(&vmap_area_lock);
563 }
Andrew Morton46666d82009-01-15 13:51:15 -0800564 spin_unlock(&purge_lock);
Nick Piggindb64fe02008-10-18 20:27:03 -0700565}
566
567/*
Nick Piggin496850e2008-11-19 15:36:33 -0800568 * Kick off a purge of the outstanding lazy areas. Don't bother if somebody
569 * is already purging.
570 */
571static void try_purge_vmap_area_lazy(void)
572{
573 unsigned long start = ULONG_MAX, end = 0;
574
575 __purge_vmap_area_lazy(&start, &end, 0, 0);
576}
577
578/*
Nick Piggindb64fe02008-10-18 20:27:03 -0700579 * Kick off a purge of the outstanding lazy areas.
580 */
581static void purge_vmap_area_lazy(void)
582{
583 unsigned long start = ULONG_MAX, end = 0;
584
Nick Piggin496850e2008-11-19 15:36:33 -0800585 __purge_vmap_area_lazy(&start, &end, 1, 0);
Nick Piggindb64fe02008-10-18 20:27:03 -0700586}
587
588/*
Nick Pigginb29acbd2008-12-01 13:13:47 -0800589 * Free and unmap a vmap area, caller ensuring flush_cache_vunmap had been
590 * called for the correct range previously.
Nick Piggindb64fe02008-10-18 20:27:03 -0700591 */
Nick Pigginb29acbd2008-12-01 13:13:47 -0800592static void free_unmap_vmap_area_noflush(struct vmap_area *va)
Nick Piggindb64fe02008-10-18 20:27:03 -0700593{
594 va->flags |= VM_LAZY_FREE;
595 atomic_add((va->va_end - va->va_start) >> PAGE_SHIFT, &vmap_lazy_nr);
596 if (unlikely(atomic_read(&vmap_lazy_nr) > lazy_max_pages()))
Nick Piggin496850e2008-11-19 15:36:33 -0800597 try_purge_vmap_area_lazy();
Nick Piggindb64fe02008-10-18 20:27:03 -0700598}
599
Nick Pigginb29acbd2008-12-01 13:13:47 -0800600/*
601 * Free and unmap a vmap area
602 */
603static void free_unmap_vmap_area(struct vmap_area *va)
604{
605 flush_cache_vunmap(va->va_start, va->va_end);
606 free_unmap_vmap_area_noflush(va);
607}
608
Nick Piggindb64fe02008-10-18 20:27:03 -0700609static struct vmap_area *find_vmap_area(unsigned long addr)
610{
611 struct vmap_area *va;
612
613 spin_lock(&vmap_area_lock);
614 va = __find_vmap_area(addr);
615 spin_unlock(&vmap_area_lock);
616
617 return va;
618}
619
620static void free_unmap_vmap_area_addr(unsigned long addr)
621{
622 struct vmap_area *va;
623
624 va = find_vmap_area(addr);
625 BUG_ON(!va);
626 free_unmap_vmap_area(va);
627}
628
629
630/*** Per cpu kva allocator ***/
631
632/*
633 * vmap space is limited especially on 32 bit architectures. Ensure there is
634 * room for at least 16 percpu vmap blocks per CPU.
635 */
636/*
637 * If we had a constant VMALLOC_START and VMALLOC_END, we'd like to be able
638 * to #define VMALLOC_SPACE (VMALLOC_END-VMALLOC_START). Guess
639 * instead (we just need a rough idea)
640 */
641#if BITS_PER_LONG == 32
642#define VMALLOC_SPACE (128UL*1024*1024)
643#else
644#define VMALLOC_SPACE (128UL*1024*1024*1024)
645#endif
646
647#define VMALLOC_PAGES (VMALLOC_SPACE / PAGE_SIZE)
648#define VMAP_MAX_ALLOC BITS_PER_LONG /* 256K with 4K pages */
649#define VMAP_BBMAP_BITS_MAX 1024 /* 4MB with 4K pages */
650#define VMAP_BBMAP_BITS_MIN (VMAP_MAX_ALLOC*2)
651#define VMAP_MIN(x, y) ((x) < (y) ? (x) : (y)) /* can't use min() */
652#define VMAP_MAX(x, y) ((x) > (y) ? (x) : (y)) /* can't use max() */
653#define VMAP_BBMAP_BITS VMAP_MIN(VMAP_BBMAP_BITS_MAX, \
654 VMAP_MAX(VMAP_BBMAP_BITS_MIN, \
655 VMALLOC_PAGES / NR_CPUS / 16))
656
657#define VMAP_BLOCK_SIZE (VMAP_BBMAP_BITS * PAGE_SIZE)
658
Jeremy Fitzhardinge9b463332008-10-28 19:22:34 +1100659static bool vmap_initialized __read_mostly = false;
660
Nick Piggindb64fe02008-10-18 20:27:03 -0700661struct vmap_block_queue {
662 spinlock_t lock;
663 struct list_head free;
664 struct list_head dirty;
665 unsigned int nr_dirty;
666};
667
668struct vmap_block {
669 spinlock_t lock;
670 struct vmap_area *va;
671 struct vmap_block_queue *vbq;
672 unsigned long free, dirty;
673 DECLARE_BITMAP(alloc_map, VMAP_BBMAP_BITS);
674 DECLARE_BITMAP(dirty_map, VMAP_BBMAP_BITS);
675 union {
MinChan Kimd0868172009-03-31 15:19:26 -0700676 struct list_head free_list;
Nick Piggindb64fe02008-10-18 20:27:03 -0700677 struct rcu_head rcu_head;
678 };
679};
680
681/* Queue of free and dirty vmap blocks, for allocation and flushing purposes */
682static DEFINE_PER_CPU(struct vmap_block_queue, vmap_block_queue);
683
684/*
685 * Radix tree of vmap blocks, indexed by address, to quickly find a vmap block
686 * in the free path. Could get rid of this if we change the API to return a
687 * "cookie" from alloc, to be passed to free. But no big deal yet.
688 */
689static DEFINE_SPINLOCK(vmap_block_tree_lock);
690static RADIX_TREE(vmap_block_tree, GFP_ATOMIC);
691
692/*
693 * We should probably have a fallback mechanism to allocate virtual memory
694 * out of partially filled vmap blocks. However vmap block sizing should be
695 * fairly reasonable according to the vmalloc size, so it shouldn't be a
696 * big problem.
697 */
698
699static unsigned long addr_to_vb_idx(unsigned long addr)
700{
701 addr -= VMALLOC_START & ~(VMAP_BLOCK_SIZE-1);
702 addr /= VMAP_BLOCK_SIZE;
703 return addr;
704}
705
706static struct vmap_block *new_vmap_block(gfp_t gfp_mask)
707{
708 struct vmap_block_queue *vbq;
709 struct vmap_block *vb;
710 struct vmap_area *va;
711 unsigned long vb_idx;
712 int node, err;
713
714 node = numa_node_id();
715
716 vb = kmalloc_node(sizeof(struct vmap_block),
717 gfp_mask & GFP_RECLAIM_MASK, node);
718 if (unlikely(!vb))
719 return ERR_PTR(-ENOMEM);
720
721 va = alloc_vmap_area(VMAP_BLOCK_SIZE, VMAP_BLOCK_SIZE,
722 VMALLOC_START, VMALLOC_END,
723 node, gfp_mask);
724 if (unlikely(IS_ERR(va))) {
725 kfree(vb);
726 return ERR_PTR(PTR_ERR(va));
727 }
728
729 err = radix_tree_preload(gfp_mask);
730 if (unlikely(err)) {
731 kfree(vb);
732 free_vmap_area(va);
733 return ERR_PTR(err);
734 }
735
736 spin_lock_init(&vb->lock);
737 vb->va = va;
738 vb->free = VMAP_BBMAP_BITS;
739 vb->dirty = 0;
740 bitmap_zero(vb->alloc_map, VMAP_BBMAP_BITS);
741 bitmap_zero(vb->dirty_map, VMAP_BBMAP_BITS);
742 INIT_LIST_HEAD(&vb->free_list);
Nick Piggindb64fe02008-10-18 20:27:03 -0700743
744 vb_idx = addr_to_vb_idx(va->va_start);
745 spin_lock(&vmap_block_tree_lock);
746 err = radix_tree_insert(&vmap_block_tree, vb_idx, vb);
747 spin_unlock(&vmap_block_tree_lock);
748 BUG_ON(err);
749 radix_tree_preload_end();
750
751 vbq = &get_cpu_var(vmap_block_queue);
752 vb->vbq = vbq;
753 spin_lock(&vbq->lock);
754 list_add(&vb->free_list, &vbq->free);
755 spin_unlock(&vbq->lock);
756 put_cpu_var(vmap_cpu_blocks);
757
758 return vb;
759}
760
761static void rcu_free_vb(struct rcu_head *head)
762{
763 struct vmap_block *vb = container_of(head, struct vmap_block, rcu_head);
764
765 kfree(vb);
766}
767
768static void free_vmap_block(struct vmap_block *vb)
769{
770 struct vmap_block *tmp;
771 unsigned long vb_idx;
772
MinChan Kimd0868172009-03-31 15:19:26 -0700773 BUG_ON(!list_empty(&vb->free_list));
Nick Piggindb64fe02008-10-18 20:27:03 -0700774
775 vb_idx = addr_to_vb_idx(vb->va->va_start);
776 spin_lock(&vmap_block_tree_lock);
777 tmp = radix_tree_delete(&vmap_block_tree, vb_idx);
778 spin_unlock(&vmap_block_tree_lock);
779 BUG_ON(tmp != vb);
780
Nick Pigginb29acbd2008-12-01 13:13:47 -0800781 free_unmap_vmap_area_noflush(vb->va);
Nick Piggindb64fe02008-10-18 20:27:03 -0700782 call_rcu(&vb->rcu_head, rcu_free_vb);
783}
784
785static void *vb_alloc(unsigned long size, gfp_t gfp_mask)
786{
787 struct vmap_block_queue *vbq;
788 struct vmap_block *vb;
789 unsigned long addr = 0;
790 unsigned int order;
791
792 BUG_ON(size & ~PAGE_MASK);
793 BUG_ON(size > PAGE_SIZE*VMAP_MAX_ALLOC);
794 order = get_order(size);
795
796again:
797 rcu_read_lock();
798 vbq = &get_cpu_var(vmap_block_queue);
799 list_for_each_entry_rcu(vb, &vbq->free, free_list) {
800 int i;
801
802 spin_lock(&vb->lock);
803 i = bitmap_find_free_region(vb->alloc_map,
804 VMAP_BBMAP_BITS, order);
805
806 if (i >= 0) {
807 addr = vb->va->va_start + (i << PAGE_SHIFT);
808 BUG_ON(addr_to_vb_idx(addr) !=
809 addr_to_vb_idx(vb->va->va_start));
810 vb->free -= 1UL << order;
811 if (vb->free == 0) {
812 spin_lock(&vbq->lock);
813 list_del_init(&vb->free_list);
814 spin_unlock(&vbq->lock);
815 }
816 spin_unlock(&vb->lock);
817 break;
818 }
819 spin_unlock(&vb->lock);
820 }
821 put_cpu_var(vmap_cpu_blocks);
822 rcu_read_unlock();
823
824 if (!addr) {
825 vb = new_vmap_block(gfp_mask);
826 if (IS_ERR(vb))
827 return vb;
828 goto again;
829 }
830
831 return (void *)addr;
832}
833
834static void vb_free(const void *addr, unsigned long size)
835{
836 unsigned long offset;
837 unsigned long vb_idx;
838 unsigned int order;
839 struct vmap_block *vb;
840
841 BUG_ON(size & ~PAGE_MASK);
842 BUG_ON(size > PAGE_SIZE*VMAP_MAX_ALLOC);
Nick Pigginb29acbd2008-12-01 13:13:47 -0800843
844 flush_cache_vunmap((unsigned long)addr, (unsigned long)addr + size);
845
Nick Piggindb64fe02008-10-18 20:27:03 -0700846 order = get_order(size);
847
848 offset = (unsigned long)addr & (VMAP_BLOCK_SIZE - 1);
849
850 vb_idx = addr_to_vb_idx((unsigned long)addr);
851 rcu_read_lock();
852 vb = radix_tree_lookup(&vmap_block_tree, vb_idx);
853 rcu_read_unlock();
854 BUG_ON(!vb);
855
856 spin_lock(&vb->lock);
857 bitmap_allocate_region(vb->dirty_map, offset >> PAGE_SHIFT, order);
MinChan Kimd0868172009-03-31 15:19:26 -0700858
Nick Piggindb64fe02008-10-18 20:27:03 -0700859 vb->dirty += 1UL << order;
860 if (vb->dirty == VMAP_BBMAP_BITS) {
861 BUG_ON(vb->free || !list_empty(&vb->free_list));
862 spin_unlock(&vb->lock);
863 free_vmap_block(vb);
864 } else
865 spin_unlock(&vb->lock);
866}
867
868/**
869 * vm_unmap_aliases - unmap outstanding lazy aliases in the vmap layer
870 *
871 * The vmap/vmalloc layer lazily flushes kernel virtual mappings primarily
872 * to amortize TLB flushing overheads. What this means is that any page you
873 * have now, may, in a former life, have been mapped into kernel virtual
874 * address by the vmap layer and so there might be some CPUs with TLB entries
875 * still referencing that page (additional to the regular 1:1 kernel mapping).
876 *
877 * vm_unmap_aliases flushes all such lazy mappings. After it returns, we can
878 * be sure that none of the pages we have control over will have any aliases
879 * from the vmap layer.
880 */
881void vm_unmap_aliases(void)
882{
883 unsigned long start = ULONG_MAX, end = 0;
884 int cpu;
885 int flush = 0;
886
Jeremy Fitzhardinge9b463332008-10-28 19:22:34 +1100887 if (unlikely(!vmap_initialized))
888 return;
889
Nick Piggindb64fe02008-10-18 20:27:03 -0700890 for_each_possible_cpu(cpu) {
891 struct vmap_block_queue *vbq = &per_cpu(vmap_block_queue, cpu);
892 struct vmap_block *vb;
893
894 rcu_read_lock();
895 list_for_each_entry_rcu(vb, &vbq->free, free_list) {
896 int i;
897
898 spin_lock(&vb->lock);
899 i = find_first_bit(vb->dirty_map, VMAP_BBMAP_BITS);
900 while (i < VMAP_BBMAP_BITS) {
901 unsigned long s, e;
902 int j;
903 j = find_next_zero_bit(vb->dirty_map,
904 VMAP_BBMAP_BITS, i);
905
906 s = vb->va->va_start + (i << PAGE_SHIFT);
907 e = vb->va->va_start + (j << PAGE_SHIFT);
908 vunmap_page_range(s, e);
909 flush = 1;
910
911 if (s < start)
912 start = s;
913 if (e > end)
914 end = e;
915
916 i = j;
917 i = find_next_bit(vb->dirty_map,
918 VMAP_BBMAP_BITS, i);
919 }
920 spin_unlock(&vb->lock);
921 }
922 rcu_read_unlock();
923 }
924
925 __purge_vmap_area_lazy(&start, &end, 1, flush);
926}
927EXPORT_SYMBOL_GPL(vm_unmap_aliases);
928
929/**
930 * vm_unmap_ram - unmap linear kernel address space set up by vm_map_ram
931 * @mem: the pointer returned by vm_map_ram
932 * @count: the count passed to that vm_map_ram call (cannot unmap partial)
933 */
934void vm_unmap_ram(const void *mem, unsigned int count)
935{
936 unsigned long size = count << PAGE_SHIFT;
937 unsigned long addr = (unsigned long)mem;
938
939 BUG_ON(!addr);
940 BUG_ON(addr < VMALLOC_START);
941 BUG_ON(addr > VMALLOC_END);
942 BUG_ON(addr & (PAGE_SIZE-1));
943
944 debug_check_no_locks_freed(mem, size);
Nick Piggincd528582009-01-06 14:39:20 -0800945 vmap_debug_free_range(addr, addr+size);
Nick Piggindb64fe02008-10-18 20:27:03 -0700946
947 if (likely(count <= VMAP_MAX_ALLOC))
948 vb_free(mem, size);
949 else
950 free_unmap_vmap_area_addr(addr);
951}
952EXPORT_SYMBOL(vm_unmap_ram);
953
954/**
955 * vm_map_ram - map pages linearly into kernel virtual address (vmalloc space)
956 * @pages: an array of pointers to the pages to be mapped
957 * @count: number of pages
958 * @node: prefer to allocate data structures on this node
959 * @prot: memory protection to use. PAGE_KERNEL for regular RAM
Randy Dunlape99c97a2008-10-29 14:01:09 -0700960 *
961 * Returns: a pointer to the address that has been mapped, or %NULL on failure
Nick Piggindb64fe02008-10-18 20:27:03 -0700962 */
963void *vm_map_ram(struct page **pages, unsigned int count, int node, pgprot_t prot)
964{
965 unsigned long size = count << PAGE_SHIFT;
966 unsigned long addr;
967 void *mem;
968
969 if (likely(count <= VMAP_MAX_ALLOC)) {
970 mem = vb_alloc(size, GFP_KERNEL);
971 if (IS_ERR(mem))
972 return NULL;
973 addr = (unsigned long)mem;
974 } else {
975 struct vmap_area *va;
976 va = alloc_vmap_area(size, PAGE_SIZE,
977 VMALLOC_START, VMALLOC_END, node, GFP_KERNEL);
978 if (IS_ERR(va))
979 return NULL;
980
981 addr = va->va_start;
982 mem = (void *)addr;
983 }
984 if (vmap_page_range(addr, addr + size, prot, pages) < 0) {
985 vm_unmap_ram(mem, count);
986 return NULL;
987 }
988 return mem;
989}
990EXPORT_SYMBOL(vm_map_ram);
991
Tejun Heof0aa6612009-02-20 16:29:08 +0900992/**
993 * vm_area_register_early - register vmap area early during boot
994 * @vm: vm_struct to register
Tejun Heoc0c0a292009-02-24 11:57:21 +0900995 * @align: requested alignment
Tejun Heof0aa6612009-02-20 16:29:08 +0900996 *
997 * This function is used to register kernel vm area before
998 * vmalloc_init() is called. @vm->size and @vm->flags should contain
999 * proper values on entry and other fields should be zero. On return,
1000 * vm->addr contains the allocated address.
1001 *
1002 * DO NOT USE THIS FUNCTION UNLESS YOU KNOW WHAT YOU'RE DOING.
1003 */
Tejun Heoc0c0a292009-02-24 11:57:21 +09001004void __init vm_area_register_early(struct vm_struct *vm, size_t align)
Tejun Heof0aa6612009-02-20 16:29:08 +09001005{
1006 static size_t vm_init_off __initdata;
Tejun Heoc0c0a292009-02-24 11:57:21 +09001007 unsigned long addr;
Tejun Heof0aa6612009-02-20 16:29:08 +09001008
Tejun Heoc0c0a292009-02-24 11:57:21 +09001009 addr = ALIGN(VMALLOC_START + vm_init_off, align);
1010 vm_init_off = PFN_ALIGN(addr + vm->size) - VMALLOC_START;
1011
1012 vm->addr = (void *)addr;
Tejun Heof0aa6612009-02-20 16:29:08 +09001013
1014 vm->next = vmlist;
1015 vmlist = vm;
1016}
1017
Nick Piggindb64fe02008-10-18 20:27:03 -07001018void __init vmalloc_init(void)
1019{
Ivan Kokshaysky822c18f2009-01-15 13:50:48 -08001020 struct vmap_area *va;
1021 struct vm_struct *tmp;
Nick Piggindb64fe02008-10-18 20:27:03 -07001022 int i;
1023
1024 for_each_possible_cpu(i) {
1025 struct vmap_block_queue *vbq;
1026
1027 vbq = &per_cpu(vmap_block_queue, i);
1028 spin_lock_init(&vbq->lock);
1029 INIT_LIST_HEAD(&vbq->free);
1030 INIT_LIST_HEAD(&vbq->dirty);
1031 vbq->nr_dirty = 0;
1032 }
Jeremy Fitzhardinge9b463332008-10-28 19:22:34 +11001033
Ivan Kokshaysky822c18f2009-01-15 13:50:48 -08001034 /* Import existing vmlist entries. */
1035 for (tmp = vmlist; tmp; tmp = tmp->next) {
1036 va = alloc_bootmem(sizeof(struct vmap_area));
1037 va->flags = tmp->flags | VM_VM_AREA;
1038 va->va_start = (unsigned long)tmp->addr;
1039 va->va_end = va->va_start + tmp->size;
1040 __insert_vmap_area(va);
1041 }
Jeremy Fitzhardinge9b463332008-10-28 19:22:34 +11001042 vmap_initialized = true;
Nick Piggindb64fe02008-10-18 20:27:03 -07001043}
1044
Tejun Heo8fc48982009-02-20 16:29:08 +09001045/**
1046 * map_kernel_range_noflush - map kernel VM area with the specified pages
1047 * @addr: start of the VM area to map
1048 * @size: size of the VM area to map
1049 * @prot: page protection flags to use
1050 * @pages: pages to map
1051 *
1052 * Map PFN_UP(@size) pages at @addr. The VM area @addr and @size
1053 * specify should have been allocated using get_vm_area() and its
1054 * friends.
1055 *
1056 * NOTE:
1057 * This function does NOT do any cache flushing. The caller is
1058 * responsible for calling flush_cache_vmap() on to-be-mapped areas
1059 * before calling this function.
1060 *
1061 * RETURNS:
1062 * The number of pages mapped on success, -errno on failure.
1063 */
1064int map_kernel_range_noflush(unsigned long addr, unsigned long size,
1065 pgprot_t prot, struct page **pages)
1066{
1067 return vmap_page_range_noflush(addr, addr + size, prot, pages);
1068}
1069
1070/**
1071 * unmap_kernel_range_noflush - unmap kernel VM area
1072 * @addr: start of the VM area to unmap
1073 * @size: size of the VM area to unmap
1074 *
1075 * Unmap PFN_UP(@size) pages at @addr. The VM area @addr and @size
1076 * specify should have been allocated using get_vm_area() and its
1077 * friends.
1078 *
1079 * NOTE:
1080 * This function does NOT do any cache flushing. The caller is
1081 * responsible for calling flush_cache_vunmap() on to-be-mapped areas
1082 * before calling this function and flush_tlb_kernel_range() after.
1083 */
1084void unmap_kernel_range_noflush(unsigned long addr, unsigned long size)
1085{
1086 vunmap_page_range(addr, addr + size);
1087}
1088
1089/**
1090 * unmap_kernel_range - unmap kernel VM area and flush cache and TLB
1091 * @addr: start of the VM area to unmap
1092 * @size: size of the VM area to unmap
1093 *
1094 * Similar to unmap_kernel_range_noflush() but flushes vcache before
1095 * the unmapping and tlb after.
1096 */
Nick Piggindb64fe02008-10-18 20:27:03 -07001097void unmap_kernel_range(unsigned long addr, unsigned long size)
1098{
1099 unsigned long end = addr + size;
Tejun Heof6fcba72009-02-20 15:38:48 -08001100
1101 flush_cache_vunmap(addr, end);
Nick Piggindb64fe02008-10-18 20:27:03 -07001102 vunmap_page_range(addr, end);
1103 flush_tlb_kernel_range(addr, end);
1104}
1105
1106int map_vm_area(struct vm_struct *area, pgprot_t prot, struct page ***pages)
1107{
1108 unsigned long addr = (unsigned long)area->addr;
1109 unsigned long end = addr + area->size - PAGE_SIZE;
1110 int err;
1111
1112 err = vmap_page_range(addr, end, prot, *pages);
1113 if (err > 0) {
1114 *pages += err;
1115 err = 0;
1116 }
1117
1118 return err;
1119}
1120EXPORT_SYMBOL_GPL(map_vm_area);
1121
1122/*** Old vmalloc interfaces ***/
1123DEFINE_RWLOCK(vmlist_lock);
1124struct vm_struct *vmlist;
1125
1126static struct vm_struct *__get_vm_area_node(unsigned long size,
1127 unsigned long flags, unsigned long start, unsigned long end,
1128 int node, gfp_t gfp_mask, void *caller)
1129{
1130 static struct vmap_area *va;
1131 struct vm_struct *area;
1132 struct vm_struct *tmp, **p;
1133 unsigned long align = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Giridhar Pemmasani52fd24c2006-10-28 10:38:34 -07001135 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 if (flags & VM_IOREMAP) {
1137 int bit = fls(size);
1138
1139 if (bit > IOREMAP_MAX_ORDER)
1140 bit = IOREMAP_MAX_ORDER;
1141 else if (bit < PAGE_SHIFT)
1142 bit = PAGE_SHIFT;
1143
1144 align = 1ul << bit;
1145 }
Nick Piggindb64fe02008-10-18 20:27:03 -07001146
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 size = PAGE_ALIGN(size);
OGAWA Hirofumi31be8302006-11-16 01:19:29 -08001148 if (unlikely(!size))
1149 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
Christoph Lameter6cb06222007-10-16 01:25:41 -07001151 area = kmalloc_node(sizeof(*area), gfp_mask & GFP_RECLAIM_MASK, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 if (unlikely(!area))
1153 return NULL;
1154
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 /*
1156 * We always allocate a guard page.
1157 */
1158 size += PAGE_SIZE;
1159
Nick Piggindb64fe02008-10-18 20:27:03 -07001160 va = alloc_vmap_area(size, align, start, end, node, gfp_mask);
1161 if (IS_ERR(va)) {
1162 kfree(area);
1163 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
1166 area->flags = flags;
Nick Piggindb64fe02008-10-18 20:27:03 -07001167 area->addr = (void *)va->va_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 area->size = size;
1169 area->pages = NULL;
1170 area->nr_pages = 0;
1171 area->phys_addr = 0;
Christoph Lameter23016962008-04-28 02:12:42 -07001172 area->caller = caller;
Nick Piggindb64fe02008-10-18 20:27:03 -07001173 va->private = area;
1174 va->flags |= VM_VM_AREA;
1175
1176 write_lock(&vmlist_lock);
1177 for (p = &vmlist; (tmp = *p) != NULL; p = &tmp->next) {
1178 if (tmp->addr >= area->addr)
1179 break;
1180 }
1181 area->next = *p;
1182 *p = area;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 write_unlock(&vmlist_lock);
1184
1185 return area;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186}
1187
Christoph Lameter930fc452005-10-29 18:15:41 -07001188struct vm_struct *__get_vm_area(unsigned long size, unsigned long flags,
1189 unsigned long start, unsigned long end)
1190{
Christoph Lameter23016962008-04-28 02:12:42 -07001191 return __get_vm_area_node(size, flags, start, end, -1, GFP_KERNEL,
1192 __builtin_return_address(0));
Christoph Lameter930fc452005-10-29 18:15:41 -07001193}
Rusty Russell5992b6d2007-07-19 01:49:21 -07001194EXPORT_SYMBOL_GPL(__get_vm_area);
Christoph Lameter930fc452005-10-29 18:15:41 -07001195
Benjamin Herrenschmidtc2968612009-02-18 14:48:12 -08001196struct vm_struct *__get_vm_area_caller(unsigned long size, unsigned long flags,
1197 unsigned long start, unsigned long end,
1198 void *caller)
1199{
1200 return __get_vm_area_node(size, flags, start, end, -1, GFP_KERNEL,
1201 caller);
1202}
1203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204/**
Simon Arlott183ff222007-10-20 01:27:18 +02001205 * get_vm_area - reserve a contiguous kernel virtual area
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 * @size: size of the area
1207 * @flags: %VM_IOREMAP for I/O mappings or VM_ALLOC
1208 *
1209 * Search an area of @size in the kernel virtual mapping area,
1210 * and reserved it for out purposes. Returns the area descriptor
1211 * on success or %NULL on failure.
1212 */
1213struct vm_struct *get_vm_area(unsigned long size, unsigned long flags)
1214{
Christoph Lameter23016962008-04-28 02:12:42 -07001215 return __get_vm_area_node(size, flags, VMALLOC_START, VMALLOC_END,
1216 -1, GFP_KERNEL, __builtin_return_address(0));
1217}
1218
1219struct vm_struct *get_vm_area_caller(unsigned long size, unsigned long flags,
1220 void *caller)
1221{
1222 return __get_vm_area_node(size, flags, VMALLOC_START, VMALLOC_END,
1223 -1, GFP_KERNEL, caller);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224}
1225
Giridhar Pemmasani52fd24c2006-10-28 10:38:34 -07001226struct vm_struct *get_vm_area_node(unsigned long size, unsigned long flags,
1227 int node, gfp_t gfp_mask)
Christoph Lameter930fc452005-10-29 18:15:41 -07001228{
Giridhar Pemmasani52fd24c2006-10-28 10:38:34 -07001229 return __get_vm_area_node(size, flags, VMALLOC_START, VMALLOC_END, node,
Christoph Lameter23016962008-04-28 02:12:42 -07001230 gfp_mask, __builtin_return_address(0));
Christoph Lameter930fc452005-10-29 18:15:41 -07001231}
1232
Nick Piggindb64fe02008-10-18 20:27:03 -07001233static struct vm_struct *find_vm_area(const void *addr)
Nick Piggin83342312006-06-23 02:03:20 -07001234{
Nick Piggindb64fe02008-10-18 20:27:03 -07001235 struct vmap_area *va;
Nick Piggin83342312006-06-23 02:03:20 -07001236
Nick Piggindb64fe02008-10-18 20:27:03 -07001237 va = find_vmap_area((unsigned long)addr);
1238 if (va && va->flags & VM_VM_AREA)
1239 return va->private;
Nick Piggin83342312006-06-23 02:03:20 -07001240
Andi Kleen7856dfe2005-05-20 14:27:57 -07001241 return NULL;
Andi Kleen7856dfe2005-05-20 14:27:57 -07001242}
1243
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244/**
Simon Arlott183ff222007-10-20 01:27:18 +02001245 * remove_vm_area - find and remove a continuous kernel virtual area
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 * @addr: base address
1247 *
1248 * Search for the kernel VM area starting at @addr, and remove it.
1249 * This function returns the found VM area, but using it is NOT safe
Andi Kleen7856dfe2005-05-20 14:27:57 -07001250 * on SMP machines, except for its size or flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 */
Christoph Lameterb3bdda02008-02-04 22:28:32 -08001252struct vm_struct *remove_vm_area(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253{
Nick Piggindb64fe02008-10-18 20:27:03 -07001254 struct vmap_area *va;
1255
1256 va = find_vmap_area((unsigned long)addr);
1257 if (va && va->flags & VM_VM_AREA) {
1258 struct vm_struct *vm = va->private;
1259 struct vm_struct *tmp, **p;
Nick Piggincd528582009-01-06 14:39:20 -08001260
1261 vmap_debug_free_range(va->va_start, va->va_end);
Nick Piggindb64fe02008-10-18 20:27:03 -07001262 free_unmap_vmap_area(va);
1263 vm->size -= PAGE_SIZE;
1264
1265 write_lock(&vmlist_lock);
1266 for (p = &vmlist; (tmp = *p) != vm; p = &tmp->next)
1267 ;
1268 *p = tmp->next;
1269 write_unlock(&vmlist_lock);
1270
1271 return vm;
1272 }
1273 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274}
1275
Christoph Lameterb3bdda02008-02-04 22:28:32 -08001276static void __vunmap(const void *addr, int deallocate_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277{
1278 struct vm_struct *area;
1279
1280 if (!addr)
1281 return;
1282
1283 if ((PAGE_SIZE-1) & (unsigned long)addr) {
Arjan van de Ven4c8573e2008-07-25 19:45:37 -07001284 WARN(1, KERN_ERR "Trying to vfree() bad address (%p)\n", addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 return;
1286 }
1287
1288 area = remove_vm_area(addr);
1289 if (unlikely(!area)) {
Arjan van de Ven4c8573e2008-07-25 19:45:37 -07001290 WARN(1, KERN_ERR "Trying to vfree() nonexistent vm area (%p)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 return;
1293 }
1294
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07001295 debug_check_no_locks_freed(addr, area->size);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07001296 debug_check_no_obj_freed(addr, area->size);
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07001297
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 if (deallocate_pages) {
1299 int i;
1300
1301 for (i = 0; i < area->nr_pages; i++) {
Christoph Lameterbf53d6f2008-02-04 22:28:34 -08001302 struct page *page = area->pages[i];
1303
1304 BUG_ON(!page);
1305 __free_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 }
1307
Jan Kiszka8757d5f2006-07-14 00:23:56 -07001308 if (area->flags & VM_VPAGES)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 vfree(area->pages);
1310 else
1311 kfree(area->pages);
1312 }
1313
1314 kfree(area);
1315 return;
1316}
1317
1318/**
1319 * vfree - release memory allocated by vmalloc()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 * @addr: memory base address
1321 *
Simon Arlott183ff222007-10-20 01:27:18 +02001322 * Free the virtually continuous memory area starting at @addr, as
Pekka Enberg80e93ef2005-09-09 13:10:16 -07001323 * obtained from vmalloc(), vmalloc_32() or __vmalloc(). If @addr is
1324 * NULL, no operation is performed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07001326 * Must not be called in interrupt context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 */
Christoph Lameterb3bdda02008-02-04 22:28:32 -08001328void vfree(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329{
1330 BUG_ON(in_interrupt());
Catalin Marinas89219d32009-06-11 13:23:19 +01001331
1332 kmemleak_free(addr);
1333
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 __vunmap(addr, 1);
1335}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336EXPORT_SYMBOL(vfree);
1337
1338/**
1339 * vunmap - release virtual mapping obtained by vmap()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 * @addr: memory base address
1341 *
1342 * Free the virtually contiguous memory area starting at @addr,
1343 * which was created from the page array passed to vmap().
1344 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07001345 * Must not be called in interrupt context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 */
Christoph Lameterb3bdda02008-02-04 22:28:32 -08001347void vunmap(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348{
1349 BUG_ON(in_interrupt());
Peter Zijlstra34754b62009-02-25 16:04:03 +01001350 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 __vunmap(addr, 0);
1352}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353EXPORT_SYMBOL(vunmap);
1354
1355/**
1356 * vmap - map an array of pages into virtually contiguous space
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 * @pages: array of page pointers
1358 * @count: number of pages to map
1359 * @flags: vm_area->flags
1360 * @prot: page protection for the mapping
1361 *
1362 * Maps @count pages from @pages into contiguous kernel virtual
1363 * space.
1364 */
1365void *vmap(struct page **pages, unsigned int count,
1366 unsigned long flags, pgprot_t prot)
1367{
1368 struct vm_struct *area;
1369
Peter Zijlstra34754b62009-02-25 16:04:03 +01001370 might_sleep();
1371
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 if (count > num_physpages)
1373 return NULL;
1374
Christoph Lameter23016962008-04-28 02:12:42 -07001375 area = get_vm_area_caller((count << PAGE_SHIFT), flags,
1376 __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 if (!area)
1378 return NULL;
Christoph Lameter23016962008-04-28 02:12:42 -07001379
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 if (map_vm_area(area, prot, &pages)) {
1381 vunmap(area->addr);
1382 return NULL;
1383 }
1384
1385 return area->addr;
1386}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387EXPORT_SYMBOL(vmap);
1388
Nick Piggindb64fe02008-10-18 20:27:03 -07001389static void *__vmalloc_node(unsigned long size, gfp_t gfp_mask, pgprot_t prot,
1390 int node, void *caller);
Adrian Bunke31d9eb2008-02-04 22:29:09 -08001391static void *__vmalloc_area_node(struct vm_struct *area, gfp_t gfp_mask,
Christoph Lameter23016962008-04-28 02:12:42 -07001392 pgprot_t prot, int node, void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393{
1394 struct page **pages;
1395 unsigned int nr_pages, array_size, i;
1396
1397 nr_pages = (area->size - PAGE_SIZE) >> PAGE_SHIFT;
1398 array_size = (nr_pages * sizeof(struct page *));
1399
1400 area->nr_pages = nr_pages;
1401 /* Please note that the recursion is strictly bounded. */
Jan Kiszka8757d5f2006-07-14 00:23:56 -07001402 if (array_size > PAGE_SIZE) {
Christoph Lameter94f60302007-07-17 04:03:29 -07001403 pages = __vmalloc_node(array_size, gfp_mask | __GFP_ZERO,
Christoph Lameter23016962008-04-28 02:12:42 -07001404 PAGE_KERNEL, node, caller);
Jan Kiszka8757d5f2006-07-14 00:23:56 -07001405 area->flags |= VM_VPAGES;
Andrew Morton286e1ea2006-10-17 00:09:57 -07001406 } else {
1407 pages = kmalloc_node(array_size,
Christoph Lameter6cb06222007-10-16 01:25:41 -07001408 (gfp_mask & GFP_RECLAIM_MASK) | __GFP_ZERO,
Andrew Morton286e1ea2006-10-17 00:09:57 -07001409 node);
1410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 area->pages = pages;
Christoph Lameter23016962008-04-28 02:12:42 -07001412 area->caller = caller;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 if (!area->pages) {
1414 remove_vm_area(area->addr);
1415 kfree(area);
1416 return NULL;
1417 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
1419 for (i = 0; i < area->nr_pages; i++) {
Christoph Lameterbf53d6f2008-02-04 22:28:34 -08001420 struct page *page;
1421
Christoph Lameter930fc452005-10-29 18:15:41 -07001422 if (node < 0)
Christoph Lameterbf53d6f2008-02-04 22:28:34 -08001423 page = alloc_page(gfp_mask);
Christoph Lameter930fc452005-10-29 18:15:41 -07001424 else
Christoph Lameterbf53d6f2008-02-04 22:28:34 -08001425 page = alloc_pages_node(node, gfp_mask, 0);
1426
1427 if (unlikely(!page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 /* Successfully allocated i pages, free them in __vunmap() */
1429 area->nr_pages = i;
1430 goto fail;
1431 }
Christoph Lameterbf53d6f2008-02-04 22:28:34 -08001432 area->pages[i] = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 }
1434
1435 if (map_vm_area(area, prot, &pages))
1436 goto fail;
1437 return area->addr;
1438
1439fail:
1440 vfree(area->addr);
1441 return NULL;
1442}
1443
Christoph Lameter930fc452005-10-29 18:15:41 -07001444void *__vmalloc_area(struct vm_struct *area, gfp_t gfp_mask, pgprot_t prot)
1445{
Catalin Marinas89219d32009-06-11 13:23:19 +01001446 void *addr = __vmalloc_area_node(area, gfp_mask, prot, -1,
1447 __builtin_return_address(0));
1448
1449 /*
1450 * A ref_count = 3 is needed because the vm_struct and vmap_area
1451 * structures allocated in the __get_vm_area_node() function contain
1452 * references to the virtual address of the vmalloc'ed block.
1453 */
1454 kmemleak_alloc(addr, area->size - PAGE_SIZE, 3, gfp_mask);
1455
1456 return addr;
Christoph Lameter930fc452005-10-29 18:15:41 -07001457}
1458
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459/**
Christoph Lameter930fc452005-10-29 18:15:41 -07001460 * __vmalloc_node - allocate virtually contiguous memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 * @size: allocation size
1462 * @gfp_mask: flags for the page level allocator
1463 * @prot: protection mask for the allocated pages
Randy Dunlapd44e0782005-11-07 01:01:10 -08001464 * @node: node to use for allocation or -1
Randy Dunlapc85d1942008-05-01 04:34:48 -07001465 * @caller: caller's return address
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 *
1467 * Allocate enough pages to cover @size from the page level
1468 * allocator with @gfp_mask flags. Map them into contiguous
1469 * kernel virtual space, using a pagetable protection of @prot.
1470 */
Adrian Bunkb2213852006-09-25 23:31:02 -07001471static void *__vmalloc_node(unsigned long size, gfp_t gfp_mask, pgprot_t prot,
Christoph Lameter23016962008-04-28 02:12:42 -07001472 int node, void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473{
1474 struct vm_struct *area;
Catalin Marinas89219d32009-06-11 13:23:19 +01001475 void *addr;
1476 unsigned long real_size = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
1478 size = PAGE_ALIGN(size);
1479 if (!size || (size >> PAGE_SHIFT) > num_physpages)
1480 return NULL;
1481
Christoph Lameter23016962008-04-28 02:12:42 -07001482 area = __get_vm_area_node(size, VM_ALLOC, VMALLOC_START, VMALLOC_END,
1483 node, gfp_mask, caller);
1484
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 if (!area)
1486 return NULL;
1487
Catalin Marinas89219d32009-06-11 13:23:19 +01001488 addr = __vmalloc_area_node(area, gfp_mask, prot, node, caller);
1489
1490 /*
1491 * A ref_count = 3 is needed because the vm_struct and vmap_area
1492 * structures allocated in the __get_vm_area_node() function contain
1493 * references to the virtual address of the vmalloc'ed block.
1494 */
1495 kmemleak_alloc(addr, real_size, 3, gfp_mask);
1496
1497 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498}
1499
Christoph Lameter930fc452005-10-29 18:15:41 -07001500void *__vmalloc(unsigned long size, gfp_t gfp_mask, pgprot_t prot)
1501{
Christoph Lameter23016962008-04-28 02:12:42 -07001502 return __vmalloc_node(size, gfp_mask, prot, -1,
1503 __builtin_return_address(0));
Christoph Lameter930fc452005-10-29 18:15:41 -07001504}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505EXPORT_SYMBOL(__vmalloc);
1506
1507/**
1508 * vmalloc - allocate virtually contiguous memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 * @size: allocation size
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 * Allocate enough pages to cover @size from the page level
1511 * allocator and map them into contiguous kernel virtual space.
1512 *
Michael Opdenackerc1c88972006-10-03 23:21:02 +02001513 * For tight control over page level allocator and protection flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 * use __vmalloc() instead.
1515 */
1516void *vmalloc(unsigned long size)
1517{
Christoph Lameter23016962008-04-28 02:12:42 -07001518 return __vmalloc_node(size, GFP_KERNEL | __GFP_HIGHMEM, PAGE_KERNEL,
1519 -1, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521EXPORT_SYMBOL(vmalloc);
1522
Christoph Lameter930fc452005-10-29 18:15:41 -07001523/**
Rolf Eike Beeread04082006-09-27 01:50:13 -07001524 * vmalloc_user - allocate zeroed virtually contiguous memory for userspace
1525 * @size: allocation size
Nick Piggin83342312006-06-23 02:03:20 -07001526 *
Rolf Eike Beeread04082006-09-27 01:50:13 -07001527 * The resulting memory area is zeroed so it can be mapped to userspace
1528 * without leaking data.
Nick Piggin83342312006-06-23 02:03:20 -07001529 */
1530void *vmalloc_user(unsigned long size)
1531{
1532 struct vm_struct *area;
1533 void *ret;
1534
Glauber Costa84877842009-01-06 14:39:19 -08001535 ret = __vmalloc_node(size, GFP_KERNEL | __GFP_HIGHMEM | __GFP_ZERO,
1536 PAGE_KERNEL, -1, __builtin_return_address(0));
Eric Dumazet2b4ac442006-11-10 12:27:48 -08001537 if (ret) {
Nick Piggindb64fe02008-10-18 20:27:03 -07001538 area = find_vm_area(ret);
Eric Dumazet2b4ac442006-11-10 12:27:48 -08001539 area->flags |= VM_USERMAP;
Eric Dumazet2b4ac442006-11-10 12:27:48 -08001540 }
Nick Piggin83342312006-06-23 02:03:20 -07001541 return ret;
1542}
1543EXPORT_SYMBOL(vmalloc_user);
1544
1545/**
Christoph Lameter930fc452005-10-29 18:15:41 -07001546 * vmalloc_node - allocate memory on a specific node
Christoph Lameter930fc452005-10-29 18:15:41 -07001547 * @size: allocation size
Randy Dunlapd44e0782005-11-07 01:01:10 -08001548 * @node: numa node
Christoph Lameter930fc452005-10-29 18:15:41 -07001549 *
1550 * Allocate enough pages to cover @size from the page level
1551 * allocator and map them into contiguous kernel virtual space.
1552 *
Michael Opdenackerc1c88972006-10-03 23:21:02 +02001553 * For tight control over page level allocator and protection flags
Christoph Lameter930fc452005-10-29 18:15:41 -07001554 * use __vmalloc() instead.
1555 */
1556void *vmalloc_node(unsigned long size, int node)
1557{
Christoph Lameter23016962008-04-28 02:12:42 -07001558 return __vmalloc_node(size, GFP_KERNEL | __GFP_HIGHMEM, PAGE_KERNEL,
1559 node, __builtin_return_address(0));
Christoph Lameter930fc452005-10-29 18:15:41 -07001560}
1561EXPORT_SYMBOL(vmalloc_node);
1562
Pavel Pisa4dc3b162005-05-01 08:59:25 -07001563#ifndef PAGE_KERNEL_EXEC
1564# define PAGE_KERNEL_EXEC PAGE_KERNEL
1565#endif
1566
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567/**
1568 * vmalloc_exec - allocate virtually contiguous, executable memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 * @size: allocation size
1570 *
1571 * Kernel-internal function to allocate enough pages to cover @size
1572 * the page level allocator and map them into contiguous and
1573 * executable kernel virtual space.
1574 *
Michael Opdenackerc1c88972006-10-03 23:21:02 +02001575 * For tight control over page level allocator and protection flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 * use __vmalloc() instead.
1577 */
1578
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579void *vmalloc_exec(unsigned long size)
1580{
Glauber Costa84877842009-01-06 14:39:19 -08001581 return __vmalloc_node(size, GFP_KERNEL | __GFP_HIGHMEM, PAGE_KERNEL_EXEC,
1582 -1, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583}
1584
Andi Kleen0d08e0d2007-05-02 19:27:12 +02001585#if defined(CONFIG_64BIT) && defined(CONFIG_ZONE_DMA32)
Benjamin Herrenschmidt7ac674f2007-07-19 01:49:10 -07001586#define GFP_VMALLOC32 GFP_DMA32 | GFP_KERNEL
Andi Kleen0d08e0d2007-05-02 19:27:12 +02001587#elif defined(CONFIG_64BIT) && defined(CONFIG_ZONE_DMA)
Benjamin Herrenschmidt7ac674f2007-07-19 01:49:10 -07001588#define GFP_VMALLOC32 GFP_DMA | GFP_KERNEL
Andi Kleen0d08e0d2007-05-02 19:27:12 +02001589#else
1590#define GFP_VMALLOC32 GFP_KERNEL
1591#endif
1592
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593/**
1594 * vmalloc_32 - allocate virtually contiguous memory (32bit addressable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 * @size: allocation size
1596 *
1597 * Allocate enough 32bit PA addressable pages to cover @size from the
1598 * page level allocator and map them into contiguous kernel virtual space.
1599 */
1600void *vmalloc_32(unsigned long size)
1601{
Glauber Costa84877842009-01-06 14:39:19 -08001602 return __vmalloc_node(size, GFP_VMALLOC32, PAGE_KERNEL,
1603 -1, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605EXPORT_SYMBOL(vmalloc_32);
1606
Nick Piggin83342312006-06-23 02:03:20 -07001607/**
Rolf Eike Beeread04082006-09-27 01:50:13 -07001608 * vmalloc_32_user - allocate zeroed virtually contiguous 32bit memory
Nick Piggin83342312006-06-23 02:03:20 -07001609 * @size: allocation size
Rolf Eike Beeread04082006-09-27 01:50:13 -07001610 *
1611 * The resulting memory area is 32bit addressable and zeroed so it can be
1612 * mapped to userspace without leaking data.
Nick Piggin83342312006-06-23 02:03:20 -07001613 */
1614void *vmalloc_32_user(unsigned long size)
1615{
1616 struct vm_struct *area;
1617 void *ret;
1618
Glauber Costa84877842009-01-06 14:39:19 -08001619 ret = __vmalloc_node(size, GFP_VMALLOC32 | __GFP_ZERO, PAGE_KERNEL,
1620 -1, __builtin_return_address(0));
Eric Dumazet2b4ac442006-11-10 12:27:48 -08001621 if (ret) {
Nick Piggindb64fe02008-10-18 20:27:03 -07001622 area = find_vm_area(ret);
Eric Dumazet2b4ac442006-11-10 12:27:48 -08001623 area->flags |= VM_USERMAP;
Eric Dumazet2b4ac442006-11-10 12:27:48 -08001624 }
Nick Piggin83342312006-06-23 02:03:20 -07001625 return ret;
1626}
1627EXPORT_SYMBOL(vmalloc_32_user);
1628
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629long vread(char *buf, char *addr, unsigned long count)
1630{
1631 struct vm_struct *tmp;
1632 char *vaddr, *buf_start = buf;
1633 unsigned long n;
1634
1635 /* Don't allow overflow */
1636 if ((unsigned long) addr + count < count)
1637 count = -(unsigned long) addr;
1638
1639 read_lock(&vmlist_lock);
1640 for (tmp = vmlist; tmp; tmp = tmp->next) {
1641 vaddr = (char *) tmp->addr;
1642 if (addr >= vaddr + tmp->size - PAGE_SIZE)
1643 continue;
1644 while (addr < vaddr) {
1645 if (count == 0)
1646 goto finished;
1647 *buf = '\0';
1648 buf++;
1649 addr++;
1650 count--;
1651 }
1652 n = vaddr + tmp->size - PAGE_SIZE - addr;
1653 do {
1654 if (count == 0)
1655 goto finished;
1656 *buf = *addr;
1657 buf++;
1658 addr++;
1659 count--;
1660 } while (--n > 0);
1661 }
1662finished:
1663 read_unlock(&vmlist_lock);
1664 return buf - buf_start;
1665}
1666
1667long vwrite(char *buf, char *addr, unsigned long count)
1668{
1669 struct vm_struct *tmp;
1670 char *vaddr, *buf_start = buf;
1671 unsigned long n;
1672
1673 /* Don't allow overflow */
1674 if ((unsigned long) addr + count < count)
1675 count = -(unsigned long) addr;
1676
1677 read_lock(&vmlist_lock);
1678 for (tmp = vmlist; tmp; tmp = tmp->next) {
1679 vaddr = (char *) tmp->addr;
1680 if (addr >= vaddr + tmp->size - PAGE_SIZE)
1681 continue;
1682 while (addr < vaddr) {
1683 if (count == 0)
1684 goto finished;
1685 buf++;
1686 addr++;
1687 count--;
1688 }
1689 n = vaddr + tmp->size - PAGE_SIZE - addr;
1690 do {
1691 if (count == 0)
1692 goto finished;
1693 *addr = *buf;
1694 buf++;
1695 addr++;
1696 count--;
1697 } while (--n > 0);
1698 }
1699finished:
1700 read_unlock(&vmlist_lock);
1701 return buf - buf_start;
1702}
Nick Piggin83342312006-06-23 02:03:20 -07001703
1704/**
1705 * remap_vmalloc_range - map vmalloc pages to userspace
Nick Piggin83342312006-06-23 02:03:20 -07001706 * @vma: vma to cover (map full range of vma)
1707 * @addr: vmalloc memory
1708 * @pgoff: number of pages into addr before first page to map
Randy Dunlap76824862008-03-19 17:00:40 -07001709 *
1710 * Returns: 0 for success, -Exxx on failure
Nick Piggin83342312006-06-23 02:03:20 -07001711 *
1712 * This function checks that addr is a valid vmalloc'ed area, and
1713 * that it is big enough to cover the vma. Will return failure if
1714 * that criteria isn't met.
1715 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08001716 * Similar to remap_pfn_range() (see mm/memory.c)
Nick Piggin83342312006-06-23 02:03:20 -07001717 */
1718int remap_vmalloc_range(struct vm_area_struct *vma, void *addr,
1719 unsigned long pgoff)
1720{
1721 struct vm_struct *area;
1722 unsigned long uaddr = vma->vm_start;
1723 unsigned long usize = vma->vm_end - vma->vm_start;
Nick Piggin83342312006-06-23 02:03:20 -07001724
1725 if ((PAGE_SIZE-1) & (unsigned long)addr)
1726 return -EINVAL;
1727
Nick Piggindb64fe02008-10-18 20:27:03 -07001728 area = find_vm_area(addr);
Nick Piggin83342312006-06-23 02:03:20 -07001729 if (!area)
Nick Piggindb64fe02008-10-18 20:27:03 -07001730 return -EINVAL;
Nick Piggin83342312006-06-23 02:03:20 -07001731
1732 if (!(area->flags & VM_USERMAP))
Nick Piggindb64fe02008-10-18 20:27:03 -07001733 return -EINVAL;
Nick Piggin83342312006-06-23 02:03:20 -07001734
1735 if (usize + (pgoff << PAGE_SHIFT) > area->size - PAGE_SIZE)
Nick Piggindb64fe02008-10-18 20:27:03 -07001736 return -EINVAL;
Nick Piggin83342312006-06-23 02:03:20 -07001737
1738 addr += pgoff << PAGE_SHIFT;
1739 do {
1740 struct page *page = vmalloc_to_page(addr);
Nick Piggindb64fe02008-10-18 20:27:03 -07001741 int ret;
1742
Nick Piggin83342312006-06-23 02:03:20 -07001743 ret = vm_insert_page(vma, uaddr, page);
1744 if (ret)
1745 return ret;
1746
1747 uaddr += PAGE_SIZE;
1748 addr += PAGE_SIZE;
1749 usize -= PAGE_SIZE;
1750 } while (usize > 0);
1751
1752 /* Prevent "things" like memory migration? VM_flags need a cleanup... */
1753 vma->vm_flags |= VM_RESERVED;
1754
Nick Piggindb64fe02008-10-18 20:27:03 -07001755 return 0;
Nick Piggin83342312006-06-23 02:03:20 -07001756}
1757EXPORT_SYMBOL(remap_vmalloc_range);
1758
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -07001759/*
1760 * Implement a stub for vmalloc_sync_all() if the architecture chose not to
1761 * have one.
1762 */
1763void __attribute__((weak)) vmalloc_sync_all(void)
1764{
1765}
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07001766
1767
Martin Schwidefsky2f569af2008-02-08 04:22:04 -08001768static int f(pte_t *pte, pgtable_t table, unsigned long addr, void *data)
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07001769{
1770 /* apply_to_page_range() does all the hard work. */
1771 return 0;
1772}
1773
1774/**
1775 * alloc_vm_area - allocate a range of kernel address space
1776 * @size: size of the area
Randy Dunlap76824862008-03-19 17:00:40 -07001777 *
1778 * Returns: NULL on failure, vm_struct on success
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07001779 *
1780 * This function reserves a range of kernel address space, and
1781 * allocates pagetables to map that range. No actual mappings
1782 * are created. If the kernel address space is not shared
1783 * between processes, it syncs the pagetable across all
1784 * processes.
1785 */
1786struct vm_struct *alloc_vm_area(size_t size)
1787{
1788 struct vm_struct *area;
1789
Christoph Lameter23016962008-04-28 02:12:42 -07001790 area = get_vm_area_caller(size, VM_IOREMAP,
1791 __builtin_return_address(0));
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07001792 if (area == NULL)
1793 return NULL;
1794
1795 /*
1796 * This ensures that page tables are constructed for this region
1797 * of kernel virtual address space and mapped into init_mm.
1798 */
1799 if (apply_to_page_range(&init_mm, (unsigned long)area->addr,
1800 area->size, f, NULL)) {
1801 free_vm_area(area);
1802 return NULL;
1803 }
1804
1805 /* Make sure the pagetables are constructed in process kernel
1806 mappings */
1807 vmalloc_sync_all();
1808
1809 return area;
1810}
1811EXPORT_SYMBOL_GPL(alloc_vm_area);
1812
1813void free_vm_area(struct vm_struct *area)
1814{
1815 struct vm_struct *ret;
1816 ret = remove_vm_area(area->addr);
1817 BUG_ON(ret != area);
1818 kfree(area);
1819}
1820EXPORT_SYMBOL_GPL(free_vm_area);
Christoph Lametera10aa572008-04-28 02:12:40 -07001821
1822
1823#ifdef CONFIG_PROC_FS
1824static void *s_start(struct seq_file *m, loff_t *pos)
1825{
1826 loff_t n = *pos;
1827 struct vm_struct *v;
1828
1829 read_lock(&vmlist_lock);
1830 v = vmlist;
1831 while (n > 0 && v) {
1832 n--;
1833 v = v->next;
1834 }
1835 if (!n)
1836 return v;
1837
1838 return NULL;
1839
1840}
1841
1842static void *s_next(struct seq_file *m, void *p, loff_t *pos)
1843{
1844 struct vm_struct *v = p;
1845
1846 ++*pos;
1847 return v->next;
1848}
1849
1850static void s_stop(struct seq_file *m, void *p)
1851{
1852 read_unlock(&vmlist_lock);
1853}
1854
Eric Dumazeta47a1262008-07-23 21:27:38 -07001855static void show_numa_info(struct seq_file *m, struct vm_struct *v)
1856{
1857 if (NUMA_BUILD) {
1858 unsigned int nr, *counters = m->private;
1859
1860 if (!counters)
1861 return;
1862
1863 memset(counters, 0, nr_node_ids * sizeof(unsigned int));
1864
1865 for (nr = 0; nr < v->nr_pages; nr++)
1866 counters[page_to_nid(v->pages[nr])]++;
1867
1868 for_each_node_state(nr, N_HIGH_MEMORY)
1869 if (counters[nr])
1870 seq_printf(m, " N%u=%u", nr, counters[nr]);
1871 }
1872}
1873
Christoph Lametera10aa572008-04-28 02:12:40 -07001874static int s_show(struct seq_file *m, void *p)
1875{
1876 struct vm_struct *v = p;
1877
1878 seq_printf(m, "0x%p-0x%p %7ld",
1879 v->addr, v->addr + v->size, v->size);
1880
Christoph Lameter23016962008-04-28 02:12:42 -07001881 if (v->caller) {
Hugh Dickins9c246242008-12-09 13:14:27 -08001882 char buff[KSYM_SYMBOL_LEN];
Christoph Lameter23016962008-04-28 02:12:42 -07001883
1884 seq_putc(m, ' ');
1885 sprint_symbol(buff, (unsigned long)v->caller);
1886 seq_puts(m, buff);
1887 }
1888
Christoph Lametera10aa572008-04-28 02:12:40 -07001889 if (v->nr_pages)
1890 seq_printf(m, " pages=%d", v->nr_pages);
1891
1892 if (v->phys_addr)
1893 seq_printf(m, " phys=%lx", v->phys_addr);
1894
1895 if (v->flags & VM_IOREMAP)
1896 seq_printf(m, " ioremap");
1897
1898 if (v->flags & VM_ALLOC)
1899 seq_printf(m, " vmalloc");
1900
1901 if (v->flags & VM_MAP)
1902 seq_printf(m, " vmap");
1903
1904 if (v->flags & VM_USERMAP)
1905 seq_printf(m, " user");
1906
1907 if (v->flags & VM_VPAGES)
1908 seq_printf(m, " vpages");
1909
Eric Dumazeta47a1262008-07-23 21:27:38 -07001910 show_numa_info(m, v);
Christoph Lametera10aa572008-04-28 02:12:40 -07001911 seq_putc(m, '\n');
1912 return 0;
1913}
1914
Alexey Dobriyan5f6a6a92008-10-06 03:50:47 +04001915static const struct seq_operations vmalloc_op = {
Christoph Lametera10aa572008-04-28 02:12:40 -07001916 .start = s_start,
1917 .next = s_next,
1918 .stop = s_stop,
1919 .show = s_show,
1920};
Alexey Dobriyan5f6a6a92008-10-06 03:50:47 +04001921
1922static int vmalloc_open(struct inode *inode, struct file *file)
1923{
1924 unsigned int *ptr = NULL;
1925 int ret;
1926
1927 if (NUMA_BUILD)
1928 ptr = kmalloc(nr_node_ids * sizeof(unsigned int), GFP_KERNEL);
1929 ret = seq_open(file, &vmalloc_op);
1930 if (!ret) {
1931 struct seq_file *m = file->private_data;
1932 m->private = ptr;
1933 } else
1934 kfree(ptr);
1935 return ret;
1936}
1937
1938static const struct file_operations proc_vmalloc_operations = {
1939 .open = vmalloc_open,
1940 .read = seq_read,
1941 .llseek = seq_lseek,
1942 .release = seq_release_private,
1943};
1944
1945static int __init proc_vmalloc_init(void)
1946{
1947 proc_create("vmallocinfo", S_IRUSR, NULL, &proc_vmalloc_operations);
1948 return 0;
1949}
1950module_init(proc_vmalloc_init);
Christoph Lametera10aa572008-04-28 02:12:40 -07001951#endif
1952