blob: 7ee5c896e3e64df842d73cd70c4ac6043190a4af [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/mm/vmalloc.c
3 *
4 * Copyright (C) 1993 Linus Torvalds
5 * Support of BIGMEM added by Gerhard Wichert, Siemens AG, July 1999
6 * SMP-safe vmalloc/vfree/ioremap, Tigran Aivazian <tigran@veritas.com>, May 2000
7 * Major rework to support vmap/vunmap, Christoph Hellwig, SGI, August 2002
Christoph Lameter930fc452005-10-29 18:15:41 -07008 * Numa awareness, Christoph Lameter, SGI, June 2005
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
Nick Piggindb64fe02008-10-18 20:27:03 -070011#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/mm.h>
13#include <linux/module.h>
14#include <linux/highmem.h>
Ingo Molnarc3edc402017-02-02 08:35:14 +010015#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/slab.h>
17#include <linux/spinlock.h>
18#include <linux/interrupt.h>
Alexey Dobriyan5f6a6a92008-10-06 03:50:47 +040019#include <linux/proc_fs.h>
Christoph Lametera10aa572008-04-28 02:12:40 -070020#include <linux/seq_file.h>
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070021#include <linux/debugobjects.h>
Christoph Lameter23016962008-04-28 02:12:42 -070022#include <linux/kallsyms.h>
Nick Piggindb64fe02008-10-18 20:27:03 -070023#include <linux/list.h>
Chris Wilson4da56b92016-04-04 14:46:42 +010024#include <linux/notifier.h>
Nick Piggindb64fe02008-10-18 20:27:03 -070025#include <linux/rbtree.h>
26#include <linux/radix-tree.h>
27#include <linux/rcupdate.h>
Tejun Heof0aa6612009-02-20 16:29:08 +090028#include <linux/pfn.h>
Catalin Marinas89219d32009-06-11 13:23:19 +010029#include <linux/kmemleak.h>
Arun Sharma600634972011-07-26 16:09:06 -070030#include <linux/atomic.h>
Gideon Israel Dsouza3b321232014-04-07 15:37:26 -070031#include <linux/compiler.h>
Al Viro32fcfd42013-03-10 20:14:08 -040032#include <linux/llist.h>
Toshi Kani0f616be2015-04-14 15:47:17 -070033#include <linux/bitops.h>
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -070034#include <linux/rbtree_augmented.h>
Gideon Israel Dsouza3b321232014-04-07 15:37:26 -070035
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080036#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/tlbflush.h>
David Miller2dca6992009-09-21 12:22:34 -070038#include <asm/shmparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Mel Gormandd56b042015-11-06 16:28:43 -080040#include "internal.h"
41
Al Viro32fcfd42013-03-10 20:14:08 -040042struct vfree_deferred {
43 struct llist_head list;
44 struct work_struct wq;
45};
46static DEFINE_PER_CPU(struct vfree_deferred, vfree_deferred);
47
48static void __vunmap(const void *, int);
49
50static void free_work(struct work_struct *w)
51{
52 struct vfree_deferred *p = container_of(w, struct vfree_deferred, wq);
Byungchul Park894e58c2017-09-06 16:24:26 -070053 struct llist_node *t, *llnode;
54
55 llist_for_each_safe(llnode, t, llist_del_all(&p->list))
56 __vunmap((void *)llnode, 1);
Al Viro32fcfd42013-03-10 20:14:08 -040057}
58
Nick Piggindb64fe02008-10-18 20:27:03 -070059/*** Page table manipulation functions ***/
Adrian Bunkb2213852006-09-25 23:31:02 -070060
Linus Torvalds1da177e2005-04-16 15:20:36 -070061static void vunmap_pte_range(pmd_t *pmd, unsigned long addr, unsigned long end)
62{
63 pte_t *pte;
64
65 pte = pte_offset_kernel(pmd, addr);
66 do {
67 pte_t ptent = ptep_get_and_clear(&init_mm, addr, pte);
68 WARN_ON(!pte_none(ptent) && !pte_present(ptent));
69 } while (pte++, addr += PAGE_SIZE, addr != end);
70}
71
Nick Piggindb64fe02008-10-18 20:27:03 -070072static void vunmap_pmd_range(pud_t *pud, unsigned long addr, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
74 pmd_t *pmd;
75 unsigned long next;
76
77 pmd = pmd_offset(pud, addr);
78 do {
79 next = pmd_addr_end(addr, end);
Toshi Kanib9820d82015-04-14 15:47:26 -070080 if (pmd_clear_huge(pmd))
81 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 if (pmd_none_or_clear_bad(pmd))
83 continue;
84 vunmap_pte_range(pmd, addr, next);
85 } while (pmd++, addr = next, addr != end);
86}
87
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +030088static void vunmap_pud_range(p4d_t *p4d, unsigned long addr, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
90 pud_t *pud;
91 unsigned long next;
92
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +030093 pud = pud_offset(p4d, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 do {
95 next = pud_addr_end(addr, end);
Toshi Kanib9820d82015-04-14 15:47:26 -070096 if (pud_clear_huge(pud))
97 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 if (pud_none_or_clear_bad(pud))
99 continue;
100 vunmap_pmd_range(pud, addr, next);
101 } while (pud++, addr = next, addr != end);
102}
103
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300104static void vunmap_p4d_range(pgd_t *pgd, unsigned long addr, unsigned long end)
105{
106 p4d_t *p4d;
107 unsigned long next;
108
109 p4d = p4d_offset(pgd, addr);
110 do {
111 next = p4d_addr_end(addr, end);
112 if (p4d_clear_huge(p4d))
113 continue;
114 if (p4d_none_or_clear_bad(p4d))
115 continue;
116 vunmap_pud_range(p4d, addr, next);
117 } while (p4d++, addr = next, addr != end);
118}
119
Nick Piggindb64fe02008-10-18 20:27:03 -0700120static void vunmap_page_range(unsigned long addr, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
122 pgd_t *pgd;
123 unsigned long next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 BUG_ON(addr >= end);
126 pgd = pgd_offset_k(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 do {
128 next = pgd_addr_end(addr, end);
129 if (pgd_none_or_clear_bad(pgd))
130 continue;
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300131 vunmap_p4d_range(pgd, addr, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 } while (pgd++, addr = next, addr != end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133}
134
135static int vmap_pte_range(pmd_t *pmd, unsigned long addr,
Nick Piggindb64fe02008-10-18 20:27:03 -0700136 unsigned long end, pgprot_t prot, struct page **pages, int *nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
138 pte_t *pte;
139
Nick Piggindb64fe02008-10-18 20:27:03 -0700140 /*
141 * nr is a running index into the array which helps higher level
142 * callers keep track of where we're up to.
143 */
144
Hugh Dickins872fec12005-10-29 18:16:21 -0700145 pte = pte_alloc_kernel(pmd, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 if (!pte)
147 return -ENOMEM;
148 do {
Nick Piggindb64fe02008-10-18 20:27:03 -0700149 struct page *page = pages[*nr];
150
151 if (WARN_ON(!pte_none(*pte)))
152 return -EBUSY;
153 if (WARN_ON(!page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 return -ENOMEM;
155 set_pte_at(&init_mm, addr, pte, mk_pte(page, prot));
Nick Piggindb64fe02008-10-18 20:27:03 -0700156 (*nr)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 } while (pte++, addr += PAGE_SIZE, addr != end);
158 return 0;
159}
160
Nick Piggindb64fe02008-10-18 20:27:03 -0700161static int vmap_pmd_range(pud_t *pud, unsigned long addr,
162 unsigned long end, pgprot_t prot, struct page **pages, int *nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
164 pmd_t *pmd;
165 unsigned long next;
166
167 pmd = pmd_alloc(&init_mm, pud, addr);
168 if (!pmd)
169 return -ENOMEM;
170 do {
171 next = pmd_addr_end(addr, end);
Nick Piggindb64fe02008-10-18 20:27:03 -0700172 if (vmap_pte_range(pmd, addr, next, prot, pages, nr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 return -ENOMEM;
174 } while (pmd++, addr = next, addr != end);
175 return 0;
176}
177
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300178static int vmap_pud_range(p4d_t *p4d, unsigned long addr,
Nick Piggindb64fe02008-10-18 20:27:03 -0700179 unsigned long end, pgprot_t prot, struct page **pages, int *nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
181 pud_t *pud;
182 unsigned long next;
183
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300184 pud = pud_alloc(&init_mm, p4d, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 if (!pud)
186 return -ENOMEM;
187 do {
188 next = pud_addr_end(addr, end);
Nick Piggindb64fe02008-10-18 20:27:03 -0700189 if (vmap_pmd_range(pud, addr, next, prot, pages, nr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 return -ENOMEM;
191 } while (pud++, addr = next, addr != end);
192 return 0;
193}
194
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300195static int vmap_p4d_range(pgd_t *pgd, unsigned long addr,
196 unsigned long end, pgprot_t prot, struct page **pages, int *nr)
197{
198 p4d_t *p4d;
199 unsigned long next;
200
201 p4d = p4d_alloc(&init_mm, pgd, addr);
202 if (!p4d)
203 return -ENOMEM;
204 do {
205 next = p4d_addr_end(addr, end);
206 if (vmap_pud_range(p4d, addr, next, prot, pages, nr))
207 return -ENOMEM;
208 } while (p4d++, addr = next, addr != end);
209 return 0;
210}
211
Nick Piggindb64fe02008-10-18 20:27:03 -0700212/*
213 * Set up page tables in kva (addr, end). The ptes shall have prot "prot", and
214 * will have pfns corresponding to the "pages" array.
215 *
216 * Ie. pte at addr+N*PAGE_SIZE shall point to pfn corresponding to pages[N]
217 */
Tejun Heo8fc48982009-02-20 16:29:08 +0900218static int vmap_page_range_noflush(unsigned long start, unsigned long end,
219 pgprot_t prot, struct page **pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
221 pgd_t *pgd;
222 unsigned long next;
Adam Lackorzynski2e4e27c2009-01-04 12:00:46 -0800223 unsigned long addr = start;
Nick Piggindb64fe02008-10-18 20:27:03 -0700224 int err = 0;
225 int nr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 BUG_ON(addr >= end);
228 pgd = pgd_offset_k(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 do {
230 next = pgd_addr_end(addr, end);
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300231 err = vmap_p4d_range(pgd, addr, next, prot, pages, &nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 if (err)
Figo.zhangbf88c8c2009-09-21 17:01:47 -0700233 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 } while (pgd++, addr = next, addr != end);
Nick Piggindb64fe02008-10-18 20:27:03 -0700235
Nick Piggindb64fe02008-10-18 20:27:03 -0700236 return nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237}
238
Tejun Heo8fc48982009-02-20 16:29:08 +0900239static int vmap_page_range(unsigned long start, unsigned long end,
240 pgprot_t prot, struct page **pages)
241{
242 int ret;
243
244 ret = vmap_page_range_noflush(start, end, prot, pages);
245 flush_cache_vmap(start, end);
246 return ret;
247}
248
KAMEZAWA Hiroyuki81ac3ad2009-09-22 16:45:49 -0700249int is_vmalloc_or_module_addr(const void *x)
Linus Torvalds73bdf0a2008-10-15 08:35:12 -0700250{
251 /*
Russell Kingab4f2ee2008-11-06 17:11:07 +0000252 * ARM, x86-64 and sparc64 put modules in a special place,
Linus Torvalds73bdf0a2008-10-15 08:35:12 -0700253 * and fall back on vmalloc() if that fails. Others
254 * just put it in the vmalloc space.
255 */
256#if defined(CONFIG_MODULES) && defined(MODULES_VADDR)
257 unsigned long addr = (unsigned long)x;
258 if (addr >= MODULES_VADDR && addr < MODULES_END)
259 return 1;
260#endif
261 return is_vmalloc_addr(x);
262}
263
Christoph Lameter48667e72008-02-04 22:28:31 -0800264/*
malcadd688f2014-01-27 17:06:53 -0800265 * Walk a vmap address to the struct page it maps.
Christoph Lameter48667e72008-02-04 22:28:31 -0800266 */
malcadd688f2014-01-27 17:06:53 -0800267struct page *vmalloc_to_page(const void *vmalloc_addr)
Christoph Lameter48667e72008-02-04 22:28:31 -0800268{
269 unsigned long addr = (unsigned long) vmalloc_addr;
malcadd688f2014-01-27 17:06:53 -0800270 struct page *page = NULL;
Christoph Lameter48667e72008-02-04 22:28:31 -0800271 pgd_t *pgd = pgd_offset_k(addr);
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300272 p4d_t *p4d;
273 pud_t *pud;
274 pmd_t *pmd;
275 pte_t *ptep, pte;
Christoph Lameter48667e72008-02-04 22:28:31 -0800276
Ingo Molnar7aa413d2008-06-19 13:28:11 +0200277 /*
278 * XXX we might need to change this if we add VIRTUAL_BUG_ON for
279 * architectures that do not vmalloc module space
280 */
Linus Torvalds73bdf0a2008-10-15 08:35:12 -0700281 VIRTUAL_BUG_ON(!is_vmalloc_or_module_addr(vmalloc_addr));
Jiri Slaby59ea7462008-06-12 13:56:40 +0200282
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300283 if (pgd_none(*pgd))
284 return NULL;
285 p4d = p4d_offset(pgd, addr);
286 if (p4d_none(*p4d))
287 return NULL;
288 pud = pud_offset(p4d, addr);
Ard Biesheuvel029c54b2017-06-23 15:08:41 -0700289
290 /*
291 * Don't dereference bad PUD or PMD (below) entries. This will also
292 * identify huge mappings, which we may encounter on architectures
293 * that define CONFIG_HAVE_ARCH_HUGE_VMAP=y. Such regions will be
294 * identified as vmalloc addresses by is_vmalloc_addr(), but are
295 * not [unambiguously] associated with a struct page, so there is
296 * no correct value to return for them.
297 */
298 WARN_ON_ONCE(pud_bad(*pud));
299 if (pud_none(*pud) || pud_bad(*pud))
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300300 return NULL;
301 pmd = pmd_offset(pud, addr);
Ard Biesheuvel029c54b2017-06-23 15:08:41 -0700302 WARN_ON_ONCE(pmd_bad(*pmd));
303 if (pmd_none(*pmd) || pmd_bad(*pmd))
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300304 return NULL;
Nick Piggindb64fe02008-10-18 20:27:03 -0700305
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300306 ptep = pte_offset_map(pmd, addr);
307 pte = *ptep;
308 if (pte_present(pte))
309 page = pte_page(pte);
310 pte_unmap(ptep);
malcadd688f2014-01-27 17:06:53 -0800311 return page;
Jianyu Zhanece86e222014-01-21 15:49:12 -0800312}
313EXPORT_SYMBOL(vmalloc_to_page);
314
malcadd688f2014-01-27 17:06:53 -0800315/*
316 * Map a vmalloc()-space virtual address to the physical page frame number.
317 */
318unsigned long vmalloc_to_pfn(const void *vmalloc_addr)
319{
320 return page_to_pfn(vmalloc_to_page(vmalloc_addr));
321}
322EXPORT_SYMBOL(vmalloc_to_pfn);
323
Nick Piggindb64fe02008-10-18 20:27:03 -0700324
325/*** Global kva allocator ***/
326
Uladzislau Rezki (Sony)8087b172019-05-17 14:31:34 -0700327#define DEBUG_AUGMENT_PROPAGATE_CHECK 0
Uladzislau Rezki (Sony)367c1e42019-05-17 14:31:37 -0700328#define DEBUG_AUGMENT_LOWEST_MATCH_CHECK 0
Uladzislau Rezki (Sony)8087b172019-05-17 14:31:34 -0700329
Yisheng Xie78c72742017-07-10 15:48:09 -0700330#define VM_LAZY_FREE 0x02
Nick Piggindb64fe02008-10-18 20:27:03 -0700331#define VM_VM_AREA 0x04
332
Nick Piggindb64fe02008-10-18 20:27:03 -0700333static DEFINE_SPINLOCK(vmap_area_lock);
Joonsoo Kimf1c40692013-04-29 15:07:37 -0700334/* Export for kexec only */
335LIST_HEAD(vmap_area_list);
Chris Wilson80c4bd72016-05-20 16:57:38 -0700336static LLIST_HEAD(vmap_purge_list);
Nick Piggin89699602011-03-22 16:30:36 -0700337static struct rb_root vmap_area_root = RB_ROOT;
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -0700338static bool vmap_initialized __read_mostly;
Nick Piggin89699602011-03-22 16:30:36 -0700339
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -0700340/*
341 * This kmem_cache is used for vmap_area objects. Instead of
342 * allocating from slab we reuse an object from this cache to
343 * make things faster. Especially in "no edge" splitting of
344 * free block.
345 */
346static struct kmem_cache *vmap_area_cachep;
Nick Piggin89699602011-03-22 16:30:36 -0700347
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -0700348/*
349 * This linked list is used in pair with free_vmap_area_root.
350 * It gives O(1) access to prev/next to perform fast coalescing.
351 */
352static LIST_HEAD(free_vmap_area_list);
353
354/*
355 * This augment red-black tree represents the free vmap space.
356 * All vmap_area objects in this tree are sorted by va->va_start
357 * address. It is used for allocation and merging when a vmap
358 * object is released.
359 *
360 * Each vmap_area node contains a maximum available free block
361 * of its sub-tree, right or left. Therefore it is possible to
362 * find a lowest match of free area.
363 */
364static struct rb_root free_vmap_area_root = RB_ROOT;
365
366static __always_inline unsigned long
367va_size(struct vmap_area *va)
368{
369 return (va->va_end - va->va_start);
370}
371
372static __always_inline unsigned long
373get_subtree_max_size(struct rb_node *node)
374{
375 struct vmap_area *va;
376
377 va = rb_entry_safe(node, struct vmap_area, rb_node);
378 return va ? va->subtree_max_size : 0;
379}
380
381/*
382 * Gets called when remove the node and rotate.
383 */
384static __always_inline unsigned long
385compute_subtree_max_size(struct vmap_area *va)
386{
387 return max3(va_size(va),
388 get_subtree_max_size(va->rb_node.rb_left),
389 get_subtree_max_size(va->rb_node.rb_right));
390}
391
392RB_DECLARE_CALLBACKS(static, free_vmap_area_rb_augment_cb,
393 struct vmap_area, rb_node, unsigned long, subtree_max_size,
394 compute_subtree_max_size)
395
396static void purge_vmap_area_lazy(void);
397static BLOCKING_NOTIFIER_HEAD(vmap_notify_list);
398static unsigned long lazy_max_pages(void);
Nick Piggindb64fe02008-10-18 20:27:03 -0700399
Roman Gushchindb70fefd2019-02-25 12:30:37 -0800400static atomic_long_t nr_vmalloc_pages;
401
402unsigned long vmalloc_nr_pages(void)
403{
404 return atomic_long_read(&nr_vmalloc_pages);
405}
406
Nick Piggindb64fe02008-10-18 20:27:03 -0700407static struct vmap_area *__find_vmap_area(unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
Nick Piggindb64fe02008-10-18 20:27:03 -0700409 struct rb_node *n = vmap_area_root.rb_node;
410
411 while (n) {
412 struct vmap_area *va;
413
414 va = rb_entry(n, struct vmap_area, rb_node);
415 if (addr < va->va_start)
416 n = n->rb_left;
HATAYAMA Daisukecef2ac32013-07-03 15:02:17 -0700417 else if (addr >= va->va_end)
Nick Piggindb64fe02008-10-18 20:27:03 -0700418 n = n->rb_right;
419 else
420 return va;
421 }
422
423 return NULL;
424}
425
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -0700426/*
427 * This function returns back addresses of parent node
428 * and its left or right link for further processing.
429 */
430static __always_inline struct rb_node **
431find_va_links(struct vmap_area *va,
432 struct rb_root *root, struct rb_node *from,
433 struct rb_node **parent)
Nick Piggindb64fe02008-10-18 20:27:03 -0700434{
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -0700435 struct vmap_area *tmp_va;
436 struct rb_node **link;
Nick Piggindb64fe02008-10-18 20:27:03 -0700437
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -0700438 if (root) {
439 link = &root->rb_node;
440 if (unlikely(!*link)) {
441 *parent = NULL;
442 return link;
443 }
444 } else {
445 link = &from;
Nick Piggindb64fe02008-10-18 20:27:03 -0700446 }
447
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -0700448 /*
449 * Go to the bottom of the tree. When we hit the last point
450 * we end up with parent rb_node and correct direction, i name
451 * it link, where the new va->rb_node will be attached to.
452 */
453 do {
454 tmp_va = rb_entry(*link, struct vmap_area, rb_node);
Nick Piggindb64fe02008-10-18 20:27:03 -0700455
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -0700456 /*
457 * During the traversal we also do some sanity check.
458 * Trigger the BUG() if there are sides(left/right)
459 * or full overlaps.
460 */
461 if (va->va_start < tmp_va->va_end &&
462 va->va_end <= tmp_va->va_start)
463 link = &(*link)->rb_left;
464 else if (va->va_end > tmp_va->va_start &&
465 va->va_start >= tmp_va->va_end)
466 link = &(*link)->rb_right;
467 else
468 BUG();
469 } while (*link);
470
471 *parent = &tmp_va->rb_node;
472 return link;
Nick Piggindb64fe02008-10-18 20:27:03 -0700473}
474
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -0700475static __always_inline struct list_head *
476get_va_next_sibling(struct rb_node *parent, struct rb_node **link)
477{
478 struct list_head *list;
Nick Piggindb64fe02008-10-18 20:27:03 -0700479
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -0700480 if (unlikely(!parent))
481 /*
482 * The red-black tree where we try to find VA neighbors
483 * before merging or inserting is empty, i.e. it means
484 * there is no free vmap space. Normally it does not
485 * happen but we handle this case anyway.
486 */
487 return NULL;
488
489 list = &rb_entry(parent, struct vmap_area, rb_node)->list;
490 return (&parent->rb_right == link ? list->next : list);
491}
492
493static __always_inline void
494link_va(struct vmap_area *va, struct rb_root *root,
495 struct rb_node *parent, struct rb_node **link, struct list_head *head)
496{
497 /*
498 * VA is still not in the list, but we can
499 * identify its future previous list_head node.
500 */
501 if (likely(parent)) {
502 head = &rb_entry(parent, struct vmap_area, rb_node)->list;
503 if (&parent->rb_right != link)
504 head = head->prev;
505 }
506
507 /* Insert to the rb-tree */
508 rb_link_node(&va->rb_node, parent, link);
509 if (root == &free_vmap_area_root) {
510 /*
511 * Some explanation here. Just perform simple insertion
512 * to the tree. We do not set va->subtree_max_size to
513 * its current size before calling rb_insert_augmented().
514 * It is because of we populate the tree from the bottom
515 * to parent levels when the node _is_ in the tree.
516 *
517 * Therefore we set subtree_max_size to zero after insertion,
518 * to let __augment_tree_propagate_from() puts everything to
519 * the correct order later on.
520 */
521 rb_insert_augmented(&va->rb_node,
522 root, &free_vmap_area_rb_augment_cb);
523 va->subtree_max_size = 0;
524 } else {
525 rb_insert_color(&va->rb_node, root);
526 }
527
528 /* Address-sort this list */
529 list_add(&va->list, head);
530}
531
532static __always_inline void
533unlink_va(struct vmap_area *va, struct rb_root *root)
534{
535 /*
536 * During merging a VA node can be empty, therefore
537 * not linked with the tree nor list. Just check it.
538 */
539 if (!RB_EMPTY_NODE(&va->rb_node)) {
540 if (root == &free_vmap_area_root)
541 rb_erase_augmented(&va->rb_node,
542 root, &free_vmap_area_rb_augment_cb);
543 else
544 rb_erase(&va->rb_node, root);
545
546 list_del(&va->list);
547 RB_CLEAR_NODE(&va->rb_node);
548 }
549}
550
Uladzislau Rezki (Sony)8087b172019-05-17 14:31:34 -0700551#if DEBUG_AUGMENT_PROPAGATE_CHECK
552static void
553augment_tree_propagate_check(struct rb_node *n)
554{
555 struct vmap_area *va;
556 struct rb_node *node;
557 unsigned long size;
558 bool found = false;
559
560 if (n == NULL)
561 return;
562
563 va = rb_entry(n, struct vmap_area, rb_node);
564 size = va->subtree_max_size;
565 node = n;
566
567 while (node) {
568 va = rb_entry(node, struct vmap_area, rb_node);
569
570 if (get_subtree_max_size(node->rb_left) == size) {
571 node = node->rb_left;
572 } else {
573 if (va_size(va) == size) {
574 found = true;
575 break;
576 }
577
578 node = node->rb_right;
579 }
580 }
581
582 if (!found) {
583 va = rb_entry(n, struct vmap_area, rb_node);
584 pr_emerg("tree is corrupted: %lu, %lu\n",
585 va_size(va), va->subtree_max_size);
586 }
587
588 augment_tree_propagate_check(n->rb_left);
589 augment_tree_propagate_check(n->rb_right);
590}
591#endif
592
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -0700593/*
594 * This function populates subtree_max_size from bottom to upper
595 * levels starting from VA point. The propagation must be done
596 * when VA size is modified by changing its va_start/va_end. Or
597 * in case of newly inserting of VA to the tree.
598 *
599 * It means that __augment_tree_propagate_from() must be called:
600 * - After VA has been inserted to the tree(free path);
601 * - After VA has been shrunk(allocation path);
602 * - After VA has been increased(merging path).
603 *
604 * Please note that, it does not mean that upper parent nodes
605 * and their subtree_max_size are recalculated all the time up
606 * to the root node.
607 *
608 * 4--8
609 * /\
610 * / \
611 * / \
612 * 2--2 8--8
613 *
614 * For example if we modify the node 4, shrinking it to 2, then
615 * no any modification is required. If we shrink the node 2 to 1
616 * its subtree_max_size is updated only, and set to 1. If we shrink
617 * the node 8 to 6, then its subtree_max_size is set to 6 and parent
618 * node becomes 4--6.
619 */
620static __always_inline void
621augment_tree_propagate_from(struct vmap_area *va)
622{
623 struct rb_node *node = &va->rb_node;
624 unsigned long new_va_sub_max_size;
625
626 while (node) {
627 va = rb_entry(node, struct vmap_area, rb_node);
628 new_va_sub_max_size = compute_subtree_max_size(va);
629
630 /*
631 * If the newly calculated maximum available size of the
632 * subtree is equal to the current one, then it means that
633 * the tree is propagated correctly. So we have to stop at
634 * this point to save cycles.
635 */
636 if (va->subtree_max_size == new_va_sub_max_size)
637 break;
638
639 va->subtree_max_size = new_va_sub_max_size;
640 node = rb_parent(&va->rb_node);
641 }
Uladzislau Rezki (Sony)8087b172019-05-17 14:31:34 -0700642
643#if DEBUG_AUGMENT_PROPAGATE_CHECK
644 augment_tree_propagate_check(free_vmap_area_root.rb_node);
645#endif
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -0700646}
647
648static void
649insert_vmap_area(struct vmap_area *va,
650 struct rb_root *root, struct list_head *head)
651{
652 struct rb_node **link;
653 struct rb_node *parent;
654
655 link = find_va_links(va, root, NULL, &parent);
656 link_va(va, root, parent, link, head);
657}
658
659static void
660insert_vmap_area_augment(struct vmap_area *va,
661 struct rb_node *from, struct rb_root *root,
662 struct list_head *head)
663{
664 struct rb_node **link;
665 struct rb_node *parent;
666
667 if (from)
668 link = find_va_links(va, NULL, from, &parent);
669 else
670 link = find_va_links(va, root, NULL, &parent);
671
672 link_va(va, root, parent, link, head);
673 augment_tree_propagate_from(va);
674}
675
676/*
677 * Merge de-allocated chunk of VA memory with previous
678 * and next free blocks. If coalesce is not done a new
679 * free area is inserted. If VA has been merged, it is
680 * freed.
681 */
682static __always_inline void
683merge_or_add_vmap_area(struct vmap_area *va,
684 struct rb_root *root, struct list_head *head)
685{
686 struct vmap_area *sibling;
687 struct list_head *next;
688 struct rb_node **link;
689 struct rb_node *parent;
690 bool merged = false;
691
692 /*
693 * Find a place in the tree where VA potentially will be
694 * inserted, unless it is merged with its sibling/siblings.
695 */
696 link = find_va_links(va, root, NULL, &parent);
697
698 /*
699 * Get next node of VA to check if merging can be done.
700 */
701 next = get_va_next_sibling(parent, link);
702 if (unlikely(next == NULL))
703 goto insert;
704
705 /*
706 * start end
707 * | |
708 * |<------VA------>|<-----Next----->|
709 * | |
710 * start end
711 */
712 if (next != head) {
713 sibling = list_entry(next, struct vmap_area, list);
714 if (sibling->va_start == va->va_end) {
715 sibling->va_start = va->va_start;
716
717 /* Check and update the tree if needed. */
718 augment_tree_propagate_from(sibling);
719
720 /* Remove this VA, it has been merged. */
721 unlink_va(va, root);
722
723 /* Free vmap_area object. */
724 kmem_cache_free(vmap_area_cachep, va);
725
726 /* Point to the new merged area. */
727 va = sibling;
728 merged = true;
729 }
730 }
731
732 /*
733 * start end
734 * | |
735 * |<-----Prev----->|<------VA------>|
736 * | |
737 * start end
738 */
739 if (next->prev != head) {
740 sibling = list_entry(next->prev, struct vmap_area, list);
741 if (sibling->va_end == va->va_start) {
742 sibling->va_end = va->va_end;
743
744 /* Check and update the tree if needed. */
745 augment_tree_propagate_from(sibling);
746
747 /* Remove this VA, it has been merged. */
748 unlink_va(va, root);
749
750 /* Free vmap_area object. */
751 kmem_cache_free(vmap_area_cachep, va);
752
753 return;
754 }
755 }
756
757insert:
758 if (!merged) {
759 link_va(va, root, parent, link, head);
760 augment_tree_propagate_from(va);
761 }
762}
763
764static __always_inline bool
765is_within_this_va(struct vmap_area *va, unsigned long size,
766 unsigned long align, unsigned long vstart)
767{
768 unsigned long nva_start_addr;
769
770 if (va->va_start > vstart)
771 nva_start_addr = ALIGN(va->va_start, align);
772 else
773 nva_start_addr = ALIGN(vstart, align);
774
775 /* Can be overflowed due to big size or alignment. */
776 if (nva_start_addr + size < nva_start_addr ||
777 nva_start_addr < vstart)
778 return false;
779
780 return (nva_start_addr + size <= va->va_end);
781}
782
783/*
784 * Find the first free block(lowest start address) in the tree,
785 * that will accomplish the request corresponding to passing
786 * parameters.
787 */
788static __always_inline struct vmap_area *
789find_vmap_lowest_match(unsigned long size,
790 unsigned long align, unsigned long vstart)
791{
792 struct vmap_area *va;
793 struct rb_node *node;
794 unsigned long length;
795
796 /* Start from the root. */
797 node = free_vmap_area_root.rb_node;
798
799 /* Adjust the search size for alignment overhead. */
800 length = size + align - 1;
801
802 while (node) {
803 va = rb_entry(node, struct vmap_area, rb_node);
804
805 if (get_subtree_max_size(node->rb_left) >= length &&
806 vstart < va->va_start) {
807 node = node->rb_left;
808 } else {
809 if (is_within_this_va(va, size, align, vstart))
810 return va;
811
812 /*
813 * Does not make sense to go deeper towards the right
814 * sub-tree if it does not have a free block that is
815 * equal or bigger to the requested search length.
816 */
817 if (get_subtree_max_size(node->rb_right) >= length) {
818 node = node->rb_right;
819 continue;
820 }
821
822 /*
823 * OK. We roll back and find the fist right sub-tree,
824 * that will satisfy the search criteria. It can happen
825 * only once due to "vstart" restriction.
826 */
827 while ((node = rb_parent(node))) {
828 va = rb_entry(node, struct vmap_area, rb_node);
829 if (is_within_this_va(va, size, align, vstart))
830 return va;
831
832 if (get_subtree_max_size(node->rb_right) >= length &&
833 vstart <= va->va_start) {
834 node = node->rb_right;
835 break;
836 }
837 }
838 }
839 }
840
841 return NULL;
842}
843
Uladzislau Rezki (Sony)367c1e42019-05-17 14:31:37 -0700844#if DEBUG_AUGMENT_LOWEST_MATCH_CHECK
845#include <linux/random.h>
846
847static struct vmap_area *
848find_vmap_lowest_linear_match(unsigned long size,
849 unsigned long align, unsigned long vstart)
850{
851 struct vmap_area *va;
852
853 list_for_each_entry(va, &free_vmap_area_list, list) {
854 if (!is_within_this_va(va, size, align, vstart))
855 continue;
856
857 return va;
858 }
859
860 return NULL;
861}
862
863static void
864find_vmap_lowest_match_check(unsigned long size)
865{
866 struct vmap_area *va_1, *va_2;
867 unsigned long vstart;
868 unsigned int rnd;
869
870 get_random_bytes(&rnd, sizeof(rnd));
871 vstart = VMALLOC_START + rnd;
872
873 va_1 = find_vmap_lowest_match(size, 1, vstart);
874 va_2 = find_vmap_lowest_linear_match(size, 1, vstart);
875
876 if (va_1 != va_2)
877 pr_emerg("not lowest: t: 0x%p, l: 0x%p, v: 0x%lx\n",
878 va_1, va_2, vstart);
879}
880#endif
881
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -0700882enum fit_type {
883 NOTHING_FIT = 0,
884 FL_FIT_TYPE = 1, /* full fit */
885 LE_FIT_TYPE = 2, /* left edge fit */
886 RE_FIT_TYPE = 3, /* right edge fit */
887 NE_FIT_TYPE = 4 /* no edge fit */
888};
889
890static __always_inline enum fit_type
891classify_va_fit_type(struct vmap_area *va,
892 unsigned long nva_start_addr, unsigned long size)
893{
894 enum fit_type type;
895
896 /* Check if it is within VA. */
897 if (nva_start_addr < va->va_start ||
898 nva_start_addr + size > va->va_end)
899 return NOTHING_FIT;
900
901 /* Now classify. */
902 if (va->va_start == nva_start_addr) {
903 if (va->va_end == nva_start_addr + size)
904 type = FL_FIT_TYPE;
905 else
906 type = LE_FIT_TYPE;
907 } else if (va->va_end == nva_start_addr + size) {
908 type = RE_FIT_TYPE;
909 } else {
910 type = NE_FIT_TYPE;
911 }
912
913 return type;
914}
915
916static __always_inline int
917adjust_va_to_fit_type(struct vmap_area *va,
918 unsigned long nva_start_addr, unsigned long size,
919 enum fit_type type)
920{
921 struct vmap_area *lva;
922
923 if (type == FL_FIT_TYPE) {
924 /*
925 * No need to split VA, it fully fits.
926 *
927 * | |
928 * V NVA V
929 * |---------------|
930 */
931 unlink_va(va, &free_vmap_area_root);
932 kmem_cache_free(vmap_area_cachep, va);
933 } else if (type == LE_FIT_TYPE) {
934 /*
935 * Split left edge of fit VA.
936 *
937 * | |
938 * V NVA V R
939 * |-------|-------|
940 */
941 va->va_start += size;
942 } else if (type == RE_FIT_TYPE) {
943 /*
944 * Split right edge of fit VA.
945 *
946 * | |
947 * L V NVA V
948 * |-------|-------|
949 */
950 va->va_end = nva_start_addr;
951 } else if (type == NE_FIT_TYPE) {
952 /*
953 * Split no edge of fit VA.
954 *
955 * | |
956 * L V NVA V R
957 * |---|-------|---|
958 */
959 lva = kmem_cache_alloc(vmap_area_cachep, GFP_NOWAIT);
960 if (unlikely(!lva))
961 return -1;
962
963 /*
964 * Build the remainder.
965 */
966 lva->va_start = va->va_start;
967 lva->va_end = nva_start_addr;
968
969 /*
970 * Shrink this VA to remaining size.
971 */
972 va->va_start = nva_start_addr + size;
973 } else {
974 return -1;
975 }
976
977 if (type != FL_FIT_TYPE) {
978 augment_tree_propagate_from(va);
979
980 if (type == NE_FIT_TYPE)
981 insert_vmap_area_augment(lva, &va->rb_node,
982 &free_vmap_area_root, &free_vmap_area_list);
983 }
984
985 return 0;
986}
987
988/*
989 * Returns a start address of the newly allocated area, if success.
990 * Otherwise a vend is returned that indicates failure.
991 */
992static __always_inline unsigned long
993__alloc_vmap_area(unsigned long size, unsigned long align,
994 unsigned long vstart, unsigned long vend, int node)
995{
996 unsigned long nva_start_addr;
997 struct vmap_area *va;
998 enum fit_type type;
999 int ret;
1000
1001 va = find_vmap_lowest_match(size, align, vstart);
1002 if (unlikely(!va))
1003 return vend;
1004
1005 if (va->va_start > vstart)
1006 nva_start_addr = ALIGN(va->va_start, align);
1007 else
1008 nva_start_addr = ALIGN(vstart, align);
1009
1010 /* Check the "vend" restriction. */
1011 if (nva_start_addr + size > vend)
1012 return vend;
1013
1014 /* Classify what we have found. */
1015 type = classify_va_fit_type(va, nva_start_addr, size);
1016 if (WARN_ON_ONCE(type == NOTHING_FIT))
1017 return vend;
1018
1019 /* Update the free vmap_area. */
1020 ret = adjust_va_to_fit_type(va, nva_start_addr, size, type);
1021 if (ret)
1022 return vend;
1023
Uladzislau Rezki (Sony)367c1e42019-05-17 14:31:37 -07001024#if DEBUG_AUGMENT_LOWEST_MATCH_CHECK
1025 find_vmap_lowest_match_check(size);
1026#endif
1027
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07001028 return nva_start_addr;
1029}
Chris Wilson4da56b92016-04-04 14:46:42 +01001030
Nick Piggindb64fe02008-10-18 20:27:03 -07001031/*
1032 * Allocate a region of KVA of the specified size and alignment, within the
1033 * vstart and vend.
1034 */
1035static struct vmap_area *alloc_vmap_area(unsigned long size,
1036 unsigned long align,
1037 unsigned long vstart, unsigned long vend,
1038 int node, gfp_t gfp_mask)
1039{
1040 struct vmap_area *va;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 unsigned long addr;
Nick Piggindb64fe02008-10-18 20:27:03 -07001042 int purged = 0;
1043
Nick Piggin77669702009-02-27 14:03:03 -08001044 BUG_ON(!size);
Alexander Kuleshov891c49a2015-11-05 18:46:51 -08001045 BUG_ON(offset_in_page(size));
Nick Piggin89699602011-03-22 16:30:36 -07001046 BUG_ON(!is_power_of_2(align));
Nick Piggindb64fe02008-10-18 20:27:03 -07001047
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07001048 if (unlikely(!vmap_initialized))
1049 return ERR_PTR(-EBUSY);
1050
Christoph Hellwig5803ed22016-12-12 16:44:20 -08001051 might_sleep();
Chris Wilson4da56b92016-04-04 14:46:42 +01001052
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07001053 va = kmem_cache_alloc_node(vmap_area_cachep,
Nick Piggindb64fe02008-10-18 20:27:03 -07001054 gfp_mask & GFP_RECLAIM_MASK, node);
1055 if (unlikely(!va))
1056 return ERR_PTR(-ENOMEM);
1057
Catalin Marinas7f88f882013-11-12 15:07:45 -08001058 /*
1059 * Only scan the relevant parts containing pointers to other objects
1060 * to avoid false negatives.
1061 */
1062 kmemleak_scan_area(&va->rb_node, SIZE_MAX, gfp_mask & GFP_RECLAIM_MASK);
1063
Nick Piggindb64fe02008-10-18 20:27:03 -07001064retry:
1065 spin_lock(&vmap_area_lock);
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07001066
Nick Piggin89699602011-03-22 16:30:36 -07001067 /*
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07001068 * If an allocation fails, the "vend" address is
1069 * returned. Therefore trigger the overflow path.
Nick Piggin89699602011-03-22 16:30:36 -07001070 */
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07001071 addr = __alloc_vmap_area(size, align, vstart, vend, node);
1072 if (unlikely(addr == vend))
Nick Piggin89699602011-03-22 16:30:36 -07001073 goto overflow;
Nick Piggindb64fe02008-10-18 20:27:03 -07001074
1075 va->va_start = addr;
1076 va->va_end = addr + size;
1077 va->flags = 0;
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07001078 insert_vmap_area(va, &vmap_area_root, &vmap_area_list);
1079
Nick Piggindb64fe02008-10-18 20:27:03 -07001080 spin_unlock(&vmap_area_lock);
1081
Wang Xiaoqiang61e16552016-01-15 16:57:19 -08001082 BUG_ON(!IS_ALIGNED(va->va_start, align));
Nick Piggin89699602011-03-22 16:30:36 -07001083 BUG_ON(va->va_start < vstart);
1084 BUG_ON(va->va_end > vend);
1085
Nick Piggindb64fe02008-10-18 20:27:03 -07001086 return va;
Nick Piggin89699602011-03-22 16:30:36 -07001087
1088overflow:
1089 spin_unlock(&vmap_area_lock);
1090 if (!purged) {
1091 purge_vmap_area_lazy();
1092 purged = 1;
1093 goto retry;
1094 }
Chris Wilson4da56b92016-04-04 14:46:42 +01001095
1096 if (gfpflags_allow_blocking(gfp_mask)) {
1097 unsigned long freed = 0;
1098 blocking_notifier_call_chain(&vmap_notify_list, 0, &freed);
1099 if (freed > 0) {
1100 purged = 0;
1101 goto retry;
1102 }
1103 }
1104
Florian Fainelli03497d72017-04-27 11:19:00 -07001105 if (!(gfp_mask & __GFP_NOWARN) && printk_ratelimit())
Joe Perches756a0252016-03-17 14:19:47 -07001106 pr_warn("vmap allocation for size %lu failed: use vmalloc=<size> to increase size\n",
1107 size);
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07001108
1109 kmem_cache_free(vmap_area_cachep, va);
Nick Piggin89699602011-03-22 16:30:36 -07001110 return ERR_PTR(-EBUSY);
Nick Piggindb64fe02008-10-18 20:27:03 -07001111}
1112
Chris Wilson4da56b92016-04-04 14:46:42 +01001113int register_vmap_purge_notifier(struct notifier_block *nb)
1114{
1115 return blocking_notifier_chain_register(&vmap_notify_list, nb);
1116}
1117EXPORT_SYMBOL_GPL(register_vmap_purge_notifier);
1118
1119int unregister_vmap_purge_notifier(struct notifier_block *nb)
1120{
1121 return blocking_notifier_chain_unregister(&vmap_notify_list, nb);
1122}
1123EXPORT_SYMBOL_GPL(unregister_vmap_purge_notifier);
1124
Nick Piggindb64fe02008-10-18 20:27:03 -07001125static void __free_vmap_area(struct vmap_area *va)
1126{
1127 BUG_ON(RB_EMPTY_NODE(&va->rb_node));
Nick Piggin89699602011-03-22 16:30:36 -07001128
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07001129 /*
1130 * Remove from the busy tree/list.
1131 */
1132 unlink_va(va, &vmap_area_root);
Nick Piggindb64fe02008-10-18 20:27:03 -07001133
Tejun Heoca23e402009-08-14 15:00:52 +09001134 /*
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07001135 * Merge VA with its neighbors, otherwise just add it.
Tejun Heoca23e402009-08-14 15:00:52 +09001136 */
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07001137 merge_or_add_vmap_area(va,
1138 &free_vmap_area_root, &free_vmap_area_list);
Nick Piggindb64fe02008-10-18 20:27:03 -07001139}
1140
1141/*
1142 * Free a region of KVA allocated by alloc_vmap_area
1143 */
1144static void free_vmap_area(struct vmap_area *va)
1145{
1146 spin_lock(&vmap_area_lock);
1147 __free_vmap_area(va);
1148 spin_unlock(&vmap_area_lock);
1149}
1150
1151/*
1152 * Clear the pagetable entries of a given vmap_area
1153 */
1154static void unmap_vmap_area(struct vmap_area *va)
1155{
1156 vunmap_page_range(va->va_start, va->va_end);
1157}
1158
1159/*
1160 * lazy_max_pages is the maximum amount of virtual address space we gather up
1161 * before attempting to purge with a TLB flush.
1162 *
1163 * There is a tradeoff here: a larger number will cover more kernel page tables
1164 * and take slightly longer to purge, but it will linearly reduce the number of
1165 * global TLB flushes that must be performed. It would seem natural to scale
1166 * this number up linearly with the number of CPUs (because vmapping activity
1167 * could also scale linearly with the number of CPUs), however it is likely
1168 * that in practice, workloads might be constrained in other ways that mean
1169 * vmap activity will not scale linearly with CPUs. Also, I want to be
1170 * conservative and not introduce a big latency on huge systems, so go with
1171 * a less aggressive log scale. It will still be an improvement over the old
1172 * code, and it will be simple to change the scale factor if we find that it
1173 * becomes a problem on bigger systems.
1174 */
1175static unsigned long lazy_max_pages(void)
1176{
1177 unsigned int log;
1178
1179 log = fls(num_online_cpus());
1180
1181 return log * (32UL * 1024 * 1024 / PAGE_SIZE);
1182}
1183
Uladzislau Rezki (Sony)b127ecf2019-05-14 15:41:25 -07001184static atomic_long_t vmap_lazy_nr = ATOMIC_LONG_INIT(0);
Nick Piggindb64fe02008-10-18 20:27:03 -07001185
Christoph Hellwig0574ecd2016-12-12 16:44:07 -08001186/*
1187 * Serialize vmap purging. There is no actual criticial section protected
1188 * by this look, but we want to avoid concurrent calls for performance
1189 * reasons and to make the pcpu_get_vm_areas more deterministic.
1190 */
Christoph Hellwigf9e09972016-12-12 16:44:23 -08001191static DEFINE_MUTEX(vmap_purge_lock);
Christoph Hellwig0574ecd2016-12-12 16:44:07 -08001192
Nick Piggin02b709d2010-02-01 22:25:57 +11001193/* for per-CPU blocks */
1194static void purge_fragmented_blocks_allcpus(void);
1195
Nick Piggindb64fe02008-10-18 20:27:03 -07001196/*
Cliff Wickman3ee48b62010-09-16 11:44:02 -05001197 * called before a call to iounmap() if the caller wants vm_area_struct's
1198 * immediately freed.
1199 */
1200void set_iounmap_nonlazy(void)
1201{
Uladzislau Rezki (Sony)b127ecf2019-05-14 15:41:25 -07001202 atomic_long_set(&vmap_lazy_nr, lazy_max_pages()+1);
Cliff Wickman3ee48b62010-09-16 11:44:02 -05001203}
1204
1205/*
Nick Piggindb64fe02008-10-18 20:27:03 -07001206 * Purges all lazily-freed vmap areas.
Nick Piggindb64fe02008-10-18 20:27:03 -07001207 */
Christoph Hellwig0574ecd2016-12-12 16:44:07 -08001208static bool __purge_vmap_area_lazy(unsigned long start, unsigned long end)
Nick Piggindb64fe02008-10-18 20:27:03 -07001209{
Uladzislau Rezki (Sony)b127ecf2019-05-14 15:41:25 -07001210 unsigned long resched_threshold;
Chris Wilson80c4bd72016-05-20 16:57:38 -07001211 struct llist_node *valist;
Nick Piggindb64fe02008-10-18 20:27:03 -07001212 struct vmap_area *va;
Vegard Nossumcbb76672009-02-27 14:03:04 -08001213 struct vmap_area *n_va;
Nick Piggindb64fe02008-10-18 20:27:03 -07001214
Christoph Hellwig0574ecd2016-12-12 16:44:07 -08001215 lockdep_assert_held(&vmap_purge_lock);
Nick Piggin02b709d2010-02-01 22:25:57 +11001216
Chris Wilson80c4bd72016-05-20 16:57:38 -07001217 valist = llist_del_all(&vmap_purge_list);
Uladzislau Rezki (Sony)af3fbc72019-05-14 15:41:22 -07001218 if (unlikely(valist == NULL))
1219 return false;
1220
1221 /*
1222 * TODO: to calculate a flush range without looping.
1223 * The list can be up to lazy_max_pages() elements.
1224 */
Chris Wilson80c4bd72016-05-20 16:57:38 -07001225 llist_for_each_entry(va, valist, purge_list) {
Christoph Hellwig0574ecd2016-12-12 16:44:07 -08001226 if (va->va_start < start)
1227 start = va->va_start;
1228 if (va->va_end > end)
1229 end = va->va_end;
Nick Piggindb64fe02008-10-18 20:27:03 -07001230 }
Nick Piggindb64fe02008-10-18 20:27:03 -07001231
Christoph Hellwig0574ecd2016-12-12 16:44:07 -08001232 flush_tlb_kernel_range(start, end);
Uladzislau Rezki (Sony)b127ecf2019-05-14 15:41:25 -07001233 resched_threshold = lazy_max_pages() << 1;
Nick Piggindb64fe02008-10-18 20:27:03 -07001234
Christoph Hellwig0574ecd2016-12-12 16:44:07 -08001235 spin_lock(&vmap_area_lock);
Joel Fernandes763b2182016-12-12 16:44:26 -08001236 llist_for_each_entry_safe(va, n_va, valist, purge_list) {
Uladzislau Rezki (Sony)b127ecf2019-05-14 15:41:25 -07001237 unsigned long nr = (va->va_end - va->va_start) >> PAGE_SHIFT;
Joel Fernandes763b2182016-12-12 16:44:26 -08001238
Christoph Hellwig0574ecd2016-12-12 16:44:07 -08001239 __free_vmap_area(va);
Uladzislau Rezki (Sony)b127ecf2019-05-14 15:41:25 -07001240 atomic_long_sub(nr, &vmap_lazy_nr);
Uladzislau Rezki (Sony)af3fbc72019-05-14 15:41:22 -07001241
Uladzislau Rezki (Sony)b127ecf2019-05-14 15:41:25 -07001242 if (atomic_long_read(&vmap_lazy_nr) < resched_threshold)
Uladzislau Rezki (Sony)af3fbc72019-05-14 15:41:22 -07001243 cond_resched_lock(&vmap_area_lock);
Joel Fernandes763b2182016-12-12 16:44:26 -08001244 }
Christoph Hellwig0574ecd2016-12-12 16:44:07 -08001245 spin_unlock(&vmap_area_lock);
1246 return true;
Nick Piggindb64fe02008-10-18 20:27:03 -07001247}
1248
1249/*
Nick Piggin496850e2008-11-19 15:36:33 -08001250 * Kick off a purge of the outstanding lazy areas. Don't bother if somebody
1251 * is already purging.
1252 */
1253static void try_purge_vmap_area_lazy(void)
1254{
Christoph Hellwigf9e09972016-12-12 16:44:23 -08001255 if (mutex_trylock(&vmap_purge_lock)) {
Christoph Hellwig0574ecd2016-12-12 16:44:07 -08001256 __purge_vmap_area_lazy(ULONG_MAX, 0);
Christoph Hellwigf9e09972016-12-12 16:44:23 -08001257 mutex_unlock(&vmap_purge_lock);
Christoph Hellwig0574ecd2016-12-12 16:44:07 -08001258 }
Nick Piggin496850e2008-11-19 15:36:33 -08001259}
1260
1261/*
Nick Piggindb64fe02008-10-18 20:27:03 -07001262 * Kick off a purge of the outstanding lazy areas.
1263 */
1264static void purge_vmap_area_lazy(void)
1265{
Christoph Hellwigf9e09972016-12-12 16:44:23 -08001266 mutex_lock(&vmap_purge_lock);
Christoph Hellwig0574ecd2016-12-12 16:44:07 -08001267 purge_fragmented_blocks_allcpus();
1268 __purge_vmap_area_lazy(ULONG_MAX, 0);
Christoph Hellwigf9e09972016-12-12 16:44:23 -08001269 mutex_unlock(&vmap_purge_lock);
Nick Piggindb64fe02008-10-18 20:27:03 -07001270}
1271
1272/*
Jeremy Fitzhardinge64141da2010-12-02 14:31:18 -08001273 * Free a vmap area, caller ensuring that the area has been unmapped
1274 * and flush_cache_vunmap had been called for the correct range
1275 * previously.
Nick Piggindb64fe02008-10-18 20:27:03 -07001276 */
Jeremy Fitzhardinge64141da2010-12-02 14:31:18 -08001277static void free_vmap_area_noflush(struct vmap_area *va)
Nick Piggindb64fe02008-10-18 20:27:03 -07001278{
Uladzislau Rezki (Sony)b127ecf2019-05-14 15:41:25 -07001279 unsigned long nr_lazy;
Chris Wilson80c4bd72016-05-20 16:57:38 -07001280
Uladzislau Rezki (Sony)b127ecf2019-05-14 15:41:25 -07001281 nr_lazy = atomic_long_add_return((va->va_end - va->va_start) >>
1282 PAGE_SHIFT, &vmap_lazy_nr);
Chris Wilson80c4bd72016-05-20 16:57:38 -07001283
1284 /* After this point, we may free va at any time */
1285 llist_add(&va->purge_list, &vmap_purge_list);
1286
1287 if (unlikely(nr_lazy > lazy_max_pages()))
Nick Piggin496850e2008-11-19 15:36:33 -08001288 try_purge_vmap_area_lazy();
Nick Piggindb64fe02008-10-18 20:27:03 -07001289}
1290
Nick Pigginb29acbd2008-12-01 13:13:47 -08001291/*
1292 * Free and unmap a vmap area
1293 */
1294static void free_unmap_vmap_area(struct vmap_area *va)
1295{
1296 flush_cache_vunmap(va->va_start, va->va_end);
Christoph Hellwigc8eef012016-12-12 16:44:01 -08001297 unmap_vmap_area(va);
Chintan Pandya82a2e922018-06-07 17:06:46 -07001298 if (debug_pagealloc_enabled())
1299 flush_tlb_kernel_range(va->va_start, va->va_end);
1300
Christoph Hellwigc8eef012016-12-12 16:44:01 -08001301 free_vmap_area_noflush(va);
Nick Pigginb29acbd2008-12-01 13:13:47 -08001302}
1303
Nick Piggindb64fe02008-10-18 20:27:03 -07001304static struct vmap_area *find_vmap_area(unsigned long addr)
1305{
1306 struct vmap_area *va;
1307
1308 spin_lock(&vmap_area_lock);
1309 va = __find_vmap_area(addr);
1310 spin_unlock(&vmap_area_lock);
1311
1312 return va;
1313}
1314
Nick Piggindb64fe02008-10-18 20:27:03 -07001315/*** Per cpu kva allocator ***/
1316
1317/*
1318 * vmap space is limited especially on 32 bit architectures. Ensure there is
1319 * room for at least 16 percpu vmap blocks per CPU.
1320 */
1321/*
1322 * If we had a constant VMALLOC_START and VMALLOC_END, we'd like to be able
1323 * to #define VMALLOC_SPACE (VMALLOC_END-VMALLOC_START). Guess
1324 * instead (we just need a rough idea)
1325 */
1326#if BITS_PER_LONG == 32
1327#define VMALLOC_SPACE (128UL*1024*1024)
1328#else
1329#define VMALLOC_SPACE (128UL*1024*1024*1024)
1330#endif
1331
1332#define VMALLOC_PAGES (VMALLOC_SPACE / PAGE_SIZE)
1333#define VMAP_MAX_ALLOC BITS_PER_LONG /* 256K with 4K pages */
1334#define VMAP_BBMAP_BITS_MAX 1024 /* 4MB with 4K pages */
1335#define VMAP_BBMAP_BITS_MIN (VMAP_MAX_ALLOC*2)
1336#define VMAP_MIN(x, y) ((x) < (y) ? (x) : (y)) /* can't use min() */
1337#define VMAP_MAX(x, y) ((x) > (y) ? (x) : (y)) /* can't use max() */
Clemens Ladischf982f912011-06-21 22:09:50 +02001338#define VMAP_BBMAP_BITS \
1339 VMAP_MIN(VMAP_BBMAP_BITS_MAX, \
1340 VMAP_MAX(VMAP_BBMAP_BITS_MIN, \
1341 VMALLOC_PAGES / roundup_pow_of_two(NR_CPUS) / 16))
Nick Piggindb64fe02008-10-18 20:27:03 -07001342
1343#define VMAP_BLOCK_SIZE (VMAP_BBMAP_BITS * PAGE_SIZE)
1344
1345struct vmap_block_queue {
1346 spinlock_t lock;
1347 struct list_head free;
Nick Piggindb64fe02008-10-18 20:27:03 -07001348};
1349
1350struct vmap_block {
1351 spinlock_t lock;
1352 struct vmap_area *va;
Nick Piggindb64fe02008-10-18 20:27:03 -07001353 unsigned long free, dirty;
Roman Pen7d61bfe2015-04-15 16:13:55 -07001354 unsigned long dirty_min, dirty_max; /*< dirty range */
Nick Pigginde560422010-02-01 22:24:18 +11001355 struct list_head free_list;
1356 struct rcu_head rcu_head;
Nick Piggin02b709d2010-02-01 22:25:57 +11001357 struct list_head purge;
Nick Piggindb64fe02008-10-18 20:27:03 -07001358};
1359
1360/* Queue of free and dirty vmap blocks, for allocation and flushing purposes */
1361static DEFINE_PER_CPU(struct vmap_block_queue, vmap_block_queue);
1362
1363/*
1364 * Radix tree of vmap blocks, indexed by address, to quickly find a vmap block
1365 * in the free path. Could get rid of this if we change the API to return a
1366 * "cookie" from alloc, to be passed to free. But no big deal yet.
1367 */
1368static DEFINE_SPINLOCK(vmap_block_tree_lock);
1369static RADIX_TREE(vmap_block_tree, GFP_ATOMIC);
1370
1371/*
1372 * We should probably have a fallback mechanism to allocate virtual memory
1373 * out of partially filled vmap blocks. However vmap block sizing should be
1374 * fairly reasonable according to the vmalloc size, so it shouldn't be a
1375 * big problem.
1376 */
1377
1378static unsigned long addr_to_vb_idx(unsigned long addr)
1379{
1380 addr -= VMALLOC_START & ~(VMAP_BLOCK_SIZE-1);
1381 addr /= VMAP_BLOCK_SIZE;
1382 return addr;
1383}
1384
Roman Pencf725ce2015-04-15 16:13:52 -07001385static void *vmap_block_vaddr(unsigned long va_start, unsigned long pages_off)
1386{
1387 unsigned long addr;
1388
1389 addr = va_start + (pages_off << PAGE_SHIFT);
1390 BUG_ON(addr_to_vb_idx(addr) != addr_to_vb_idx(va_start));
1391 return (void *)addr;
1392}
1393
1394/**
1395 * new_vmap_block - allocates new vmap_block and occupies 2^order pages in this
1396 * block. Of course pages number can't exceed VMAP_BBMAP_BITS
1397 * @order: how many 2^order pages should be occupied in newly allocated block
1398 * @gfp_mask: flags for the page level allocator
1399 *
1400 * Returns: virtual address in a newly allocated block or ERR_PTR(-errno)
1401 */
1402static void *new_vmap_block(unsigned int order, gfp_t gfp_mask)
Nick Piggindb64fe02008-10-18 20:27:03 -07001403{
1404 struct vmap_block_queue *vbq;
1405 struct vmap_block *vb;
1406 struct vmap_area *va;
1407 unsigned long vb_idx;
1408 int node, err;
Roman Pencf725ce2015-04-15 16:13:52 -07001409 void *vaddr;
Nick Piggindb64fe02008-10-18 20:27:03 -07001410
1411 node = numa_node_id();
1412
1413 vb = kmalloc_node(sizeof(struct vmap_block),
1414 gfp_mask & GFP_RECLAIM_MASK, node);
1415 if (unlikely(!vb))
1416 return ERR_PTR(-ENOMEM);
1417
1418 va = alloc_vmap_area(VMAP_BLOCK_SIZE, VMAP_BLOCK_SIZE,
1419 VMALLOC_START, VMALLOC_END,
1420 node, gfp_mask);
Tobias Klauserddf9c6d42011-01-13 15:46:15 -08001421 if (IS_ERR(va)) {
Nick Piggindb64fe02008-10-18 20:27:03 -07001422 kfree(vb);
Julia Lawalle7d86342010-08-09 17:18:28 -07001423 return ERR_CAST(va);
Nick Piggindb64fe02008-10-18 20:27:03 -07001424 }
1425
1426 err = radix_tree_preload(gfp_mask);
1427 if (unlikely(err)) {
1428 kfree(vb);
1429 free_vmap_area(va);
1430 return ERR_PTR(err);
1431 }
1432
Roman Pencf725ce2015-04-15 16:13:52 -07001433 vaddr = vmap_block_vaddr(va->va_start, 0);
Nick Piggindb64fe02008-10-18 20:27:03 -07001434 spin_lock_init(&vb->lock);
1435 vb->va = va;
Roman Pencf725ce2015-04-15 16:13:52 -07001436 /* At least something should be left free */
1437 BUG_ON(VMAP_BBMAP_BITS <= (1UL << order));
1438 vb->free = VMAP_BBMAP_BITS - (1UL << order);
Nick Piggindb64fe02008-10-18 20:27:03 -07001439 vb->dirty = 0;
Roman Pen7d61bfe2015-04-15 16:13:55 -07001440 vb->dirty_min = VMAP_BBMAP_BITS;
1441 vb->dirty_max = 0;
Nick Piggindb64fe02008-10-18 20:27:03 -07001442 INIT_LIST_HEAD(&vb->free_list);
Nick Piggindb64fe02008-10-18 20:27:03 -07001443
1444 vb_idx = addr_to_vb_idx(va->va_start);
1445 spin_lock(&vmap_block_tree_lock);
1446 err = radix_tree_insert(&vmap_block_tree, vb_idx, vb);
1447 spin_unlock(&vmap_block_tree_lock);
1448 BUG_ON(err);
1449 radix_tree_preload_end();
1450
1451 vbq = &get_cpu_var(vmap_block_queue);
Nick Piggindb64fe02008-10-18 20:27:03 -07001452 spin_lock(&vbq->lock);
Roman Pen68ac5462015-04-15 16:13:48 -07001453 list_add_tail_rcu(&vb->free_list, &vbq->free);
Nick Piggindb64fe02008-10-18 20:27:03 -07001454 spin_unlock(&vbq->lock);
Tejun Heo3f04ba82009-10-29 22:34:12 +09001455 put_cpu_var(vmap_block_queue);
Nick Piggindb64fe02008-10-18 20:27:03 -07001456
Roman Pencf725ce2015-04-15 16:13:52 -07001457 return vaddr;
Nick Piggindb64fe02008-10-18 20:27:03 -07001458}
1459
Nick Piggindb64fe02008-10-18 20:27:03 -07001460static void free_vmap_block(struct vmap_block *vb)
1461{
1462 struct vmap_block *tmp;
1463 unsigned long vb_idx;
1464
Nick Piggindb64fe02008-10-18 20:27:03 -07001465 vb_idx = addr_to_vb_idx(vb->va->va_start);
1466 spin_lock(&vmap_block_tree_lock);
1467 tmp = radix_tree_delete(&vmap_block_tree, vb_idx);
1468 spin_unlock(&vmap_block_tree_lock);
1469 BUG_ON(tmp != vb);
1470
Jeremy Fitzhardinge64141da2010-12-02 14:31:18 -08001471 free_vmap_area_noflush(vb->va);
Lai Jiangshan22a3c7d2011-03-18 12:13:08 +08001472 kfree_rcu(vb, rcu_head);
Nick Piggindb64fe02008-10-18 20:27:03 -07001473}
1474
Nick Piggin02b709d2010-02-01 22:25:57 +11001475static void purge_fragmented_blocks(int cpu)
1476{
1477 LIST_HEAD(purge);
1478 struct vmap_block *vb;
1479 struct vmap_block *n_vb;
1480 struct vmap_block_queue *vbq = &per_cpu(vmap_block_queue, cpu);
1481
1482 rcu_read_lock();
1483 list_for_each_entry_rcu(vb, &vbq->free, free_list) {
1484
1485 if (!(vb->free + vb->dirty == VMAP_BBMAP_BITS && vb->dirty != VMAP_BBMAP_BITS))
1486 continue;
1487
1488 spin_lock(&vb->lock);
1489 if (vb->free + vb->dirty == VMAP_BBMAP_BITS && vb->dirty != VMAP_BBMAP_BITS) {
1490 vb->free = 0; /* prevent further allocs after releasing lock */
1491 vb->dirty = VMAP_BBMAP_BITS; /* prevent purging it again */
Roman Pen7d61bfe2015-04-15 16:13:55 -07001492 vb->dirty_min = 0;
1493 vb->dirty_max = VMAP_BBMAP_BITS;
Nick Piggin02b709d2010-02-01 22:25:57 +11001494 spin_lock(&vbq->lock);
1495 list_del_rcu(&vb->free_list);
1496 spin_unlock(&vbq->lock);
1497 spin_unlock(&vb->lock);
1498 list_add_tail(&vb->purge, &purge);
1499 } else
1500 spin_unlock(&vb->lock);
1501 }
1502 rcu_read_unlock();
1503
1504 list_for_each_entry_safe(vb, n_vb, &purge, purge) {
1505 list_del(&vb->purge);
1506 free_vmap_block(vb);
1507 }
1508}
1509
Nick Piggin02b709d2010-02-01 22:25:57 +11001510static void purge_fragmented_blocks_allcpus(void)
1511{
1512 int cpu;
1513
1514 for_each_possible_cpu(cpu)
1515 purge_fragmented_blocks(cpu);
1516}
1517
Nick Piggindb64fe02008-10-18 20:27:03 -07001518static void *vb_alloc(unsigned long size, gfp_t gfp_mask)
1519{
1520 struct vmap_block_queue *vbq;
1521 struct vmap_block *vb;
Roman Pencf725ce2015-04-15 16:13:52 -07001522 void *vaddr = NULL;
Nick Piggindb64fe02008-10-18 20:27:03 -07001523 unsigned int order;
1524
Alexander Kuleshov891c49a2015-11-05 18:46:51 -08001525 BUG_ON(offset_in_page(size));
Nick Piggindb64fe02008-10-18 20:27:03 -07001526 BUG_ON(size > PAGE_SIZE*VMAP_MAX_ALLOC);
Jan Karaaa91c4d2012-07-31 16:41:37 -07001527 if (WARN_ON(size == 0)) {
1528 /*
1529 * Allocating 0 bytes isn't what caller wants since
1530 * get_order(0) returns funny result. Just warn and terminate
1531 * early.
1532 */
1533 return NULL;
1534 }
Nick Piggindb64fe02008-10-18 20:27:03 -07001535 order = get_order(size);
1536
Nick Piggindb64fe02008-10-18 20:27:03 -07001537 rcu_read_lock();
1538 vbq = &get_cpu_var(vmap_block_queue);
1539 list_for_each_entry_rcu(vb, &vbq->free, free_list) {
Roman Pencf725ce2015-04-15 16:13:52 -07001540 unsigned long pages_off;
Nick Piggindb64fe02008-10-18 20:27:03 -07001541
1542 spin_lock(&vb->lock);
Roman Pencf725ce2015-04-15 16:13:52 -07001543 if (vb->free < (1UL << order)) {
1544 spin_unlock(&vb->lock);
1545 continue;
1546 }
Nick Piggin02b709d2010-02-01 22:25:57 +11001547
Roman Pencf725ce2015-04-15 16:13:52 -07001548 pages_off = VMAP_BBMAP_BITS - vb->free;
1549 vaddr = vmap_block_vaddr(vb->va->va_start, pages_off);
Nick Piggin02b709d2010-02-01 22:25:57 +11001550 vb->free -= 1UL << order;
1551 if (vb->free == 0) {
1552 spin_lock(&vbq->lock);
1553 list_del_rcu(&vb->free_list);
1554 spin_unlock(&vbq->lock);
Nick Piggindb64fe02008-10-18 20:27:03 -07001555 }
Roman Pencf725ce2015-04-15 16:13:52 -07001556
Nick Piggindb64fe02008-10-18 20:27:03 -07001557 spin_unlock(&vb->lock);
Nick Piggin02b709d2010-02-01 22:25:57 +11001558 break;
Nick Piggindb64fe02008-10-18 20:27:03 -07001559 }
Nick Piggin02b709d2010-02-01 22:25:57 +11001560
Tejun Heo3f04ba82009-10-29 22:34:12 +09001561 put_cpu_var(vmap_block_queue);
Nick Piggindb64fe02008-10-18 20:27:03 -07001562 rcu_read_unlock();
1563
Roman Pencf725ce2015-04-15 16:13:52 -07001564 /* Allocate new block if nothing was found */
1565 if (!vaddr)
1566 vaddr = new_vmap_block(order, gfp_mask);
Nick Piggindb64fe02008-10-18 20:27:03 -07001567
Roman Pencf725ce2015-04-15 16:13:52 -07001568 return vaddr;
Nick Piggindb64fe02008-10-18 20:27:03 -07001569}
1570
1571static void vb_free(const void *addr, unsigned long size)
1572{
1573 unsigned long offset;
1574 unsigned long vb_idx;
1575 unsigned int order;
1576 struct vmap_block *vb;
1577
Alexander Kuleshov891c49a2015-11-05 18:46:51 -08001578 BUG_ON(offset_in_page(size));
Nick Piggindb64fe02008-10-18 20:27:03 -07001579 BUG_ON(size > PAGE_SIZE*VMAP_MAX_ALLOC);
Nick Pigginb29acbd2008-12-01 13:13:47 -08001580
1581 flush_cache_vunmap((unsigned long)addr, (unsigned long)addr + size);
1582
Nick Piggindb64fe02008-10-18 20:27:03 -07001583 order = get_order(size);
1584
1585 offset = (unsigned long)addr & (VMAP_BLOCK_SIZE - 1);
Roman Pen7d61bfe2015-04-15 16:13:55 -07001586 offset >>= PAGE_SHIFT;
Nick Piggindb64fe02008-10-18 20:27:03 -07001587
1588 vb_idx = addr_to_vb_idx((unsigned long)addr);
1589 rcu_read_lock();
1590 vb = radix_tree_lookup(&vmap_block_tree, vb_idx);
1591 rcu_read_unlock();
1592 BUG_ON(!vb);
1593
Jeremy Fitzhardinge64141da2010-12-02 14:31:18 -08001594 vunmap_page_range((unsigned long)addr, (unsigned long)addr + size);
1595
Chintan Pandya82a2e922018-06-07 17:06:46 -07001596 if (debug_pagealloc_enabled())
1597 flush_tlb_kernel_range((unsigned long)addr,
1598 (unsigned long)addr + size);
1599
Nick Piggindb64fe02008-10-18 20:27:03 -07001600 spin_lock(&vb->lock);
Roman Pen7d61bfe2015-04-15 16:13:55 -07001601
1602 /* Expand dirty range */
1603 vb->dirty_min = min(vb->dirty_min, offset);
1604 vb->dirty_max = max(vb->dirty_max, offset + (1UL << order));
MinChan Kimd0868172009-03-31 15:19:26 -07001605
Nick Piggindb64fe02008-10-18 20:27:03 -07001606 vb->dirty += 1UL << order;
1607 if (vb->dirty == VMAP_BBMAP_BITS) {
Nick Pigginde560422010-02-01 22:24:18 +11001608 BUG_ON(vb->free);
Nick Piggindb64fe02008-10-18 20:27:03 -07001609 spin_unlock(&vb->lock);
1610 free_vmap_block(vb);
1611 } else
1612 spin_unlock(&vb->lock);
1613}
1614
1615/**
1616 * vm_unmap_aliases - unmap outstanding lazy aliases in the vmap layer
1617 *
1618 * The vmap/vmalloc layer lazily flushes kernel virtual mappings primarily
1619 * to amortize TLB flushing overheads. What this means is that any page you
1620 * have now, may, in a former life, have been mapped into kernel virtual
1621 * address by the vmap layer and so there might be some CPUs with TLB entries
1622 * still referencing that page (additional to the regular 1:1 kernel mapping).
1623 *
1624 * vm_unmap_aliases flushes all such lazy mappings. After it returns, we can
1625 * be sure that none of the pages we have control over will have any aliases
1626 * from the vmap layer.
1627 */
1628void vm_unmap_aliases(void)
1629{
1630 unsigned long start = ULONG_MAX, end = 0;
1631 int cpu;
1632 int flush = 0;
1633
Jeremy Fitzhardinge9b463332008-10-28 19:22:34 +11001634 if (unlikely(!vmap_initialized))
1635 return;
1636
Christoph Hellwig5803ed22016-12-12 16:44:20 -08001637 might_sleep();
1638
Nick Piggindb64fe02008-10-18 20:27:03 -07001639 for_each_possible_cpu(cpu) {
1640 struct vmap_block_queue *vbq = &per_cpu(vmap_block_queue, cpu);
1641 struct vmap_block *vb;
1642
1643 rcu_read_lock();
1644 list_for_each_entry_rcu(vb, &vbq->free, free_list) {
Nick Piggindb64fe02008-10-18 20:27:03 -07001645 spin_lock(&vb->lock);
Roman Pen7d61bfe2015-04-15 16:13:55 -07001646 if (vb->dirty) {
1647 unsigned long va_start = vb->va->va_start;
Nick Piggindb64fe02008-10-18 20:27:03 -07001648 unsigned long s, e;
Joonsoo Kimb136be5e2013-09-11 14:21:40 -07001649
Roman Pen7d61bfe2015-04-15 16:13:55 -07001650 s = va_start + (vb->dirty_min << PAGE_SHIFT);
1651 e = va_start + (vb->dirty_max << PAGE_SHIFT);
Nick Piggindb64fe02008-10-18 20:27:03 -07001652
Roman Pen7d61bfe2015-04-15 16:13:55 -07001653 start = min(s, start);
1654 end = max(e, end);
1655
Nick Piggindb64fe02008-10-18 20:27:03 -07001656 flush = 1;
Nick Piggindb64fe02008-10-18 20:27:03 -07001657 }
1658 spin_unlock(&vb->lock);
1659 }
1660 rcu_read_unlock();
1661 }
1662
Christoph Hellwigf9e09972016-12-12 16:44:23 -08001663 mutex_lock(&vmap_purge_lock);
Christoph Hellwig0574ecd2016-12-12 16:44:07 -08001664 purge_fragmented_blocks_allcpus();
1665 if (!__purge_vmap_area_lazy(start, end) && flush)
1666 flush_tlb_kernel_range(start, end);
Christoph Hellwigf9e09972016-12-12 16:44:23 -08001667 mutex_unlock(&vmap_purge_lock);
Nick Piggindb64fe02008-10-18 20:27:03 -07001668}
1669EXPORT_SYMBOL_GPL(vm_unmap_aliases);
1670
1671/**
1672 * vm_unmap_ram - unmap linear kernel address space set up by vm_map_ram
1673 * @mem: the pointer returned by vm_map_ram
1674 * @count: the count passed to that vm_map_ram call (cannot unmap partial)
1675 */
1676void vm_unmap_ram(const void *mem, unsigned int count)
1677{
Guillermo Julián Moreno65ee03c2016-06-03 14:55:33 -07001678 unsigned long size = (unsigned long)count << PAGE_SHIFT;
Nick Piggindb64fe02008-10-18 20:27:03 -07001679 unsigned long addr = (unsigned long)mem;
Christoph Hellwig9c3acf62016-12-12 16:44:04 -08001680 struct vmap_area *va;
Nick Piggindb64fe02008-10-18 20:27:03 -07001681
Christoph Hellwig5803ed22016-12-12 16:44:20 -08001682 might_sleep();
Nick Piggindb64fe02008-10-18 20:27:03 -07001683 BUG_ON(!addr);
1684 BUG_ON(addr < VMALLOC_START);
1685 BUG_ON(addr > VMALLOC_END);
Shawn Lina1c0b1a2016-03-17 14:20:37 -07001686 BUG_ON(!PAGE_ALIGNED(addr));
Nick Piggindb64fe02008-10-18 20:27:03 -07001687
Christoph Hellwig9c3acf62016-12-12 16:44:04 -08001688 if (likely(count <= VMAP_MAX_ALLOC)) {
Chintan Pandya05e3ff92018-06-07 17:06:53 -07001689 debug_check_no_locks_freed(mem, size);
Nick Piggindb64fe02008-10-18 20:27:03 -07001690 vb_free(mem, size);
Christoph Hellwig9c3acf62016-12-12 16:44:04 -08001691 return;
1692 }
1693
1694 va = find_vmap_area(addr);
1695 BUG_ON(!va);
Chintan Pandya05e3ff92018-06-07 17:06:53 -07001696 debug_check_no_locks_freed((void *)va->va_start,
1697 (va->va_end - va->va_start));
Christoph Hellwig9c3acf62016-12-12 16:44:04 -08001698 free_unmap_vmap_area(va);
Nick Piggindb64fe02008-10-18 20:27:03 -07001699}
1700EXPORT_SYMBOL(vm_unmap_ram);
1701
1702/**
1703 * vm_map_ram - map pages linearly into kernel virtual address (vmalloc space)
1704 * @pages: an array of pointers to the pages to be mapped
1705 * @count: number of pages
1706 * @node: prefer to allocate data structures on this node
1707 * @prot: memory protection to use. PAGE_KERNEL for regular RAM
Randy Dunlape99c97a2008-10-29 14:01:09 -07001708 *
Gioh Kim36437632014-04-07 15:37:37 -07001709 * If you use this function for less than VMAP_MAX_ALLOC pages, it could be
1710 * faster than vmap so it's good. But if you mix long-life and short-life
1711 * objects with vm_map_ram(), it could consume lots of address space through
1712 * fragmentation (especially on a 32bit machine). You could see failures in
1713 * the end. Please use this function for short-lived objects.
1714 *
Randy Dunlape99c97a2008-10-29 14:01:09 -07001715 * Returns: a pointer to the address that has been mapped, or %NULL on failure
Nick Piggindb64fe02008-10-18 20:27:03 -07001716 */
1717void *vm_map_ram(struct page **pages, unsigned int count, int node, pgprot_t prot)
1718{
Guillermo Julián Moreno65ee03c2016-06-03 14:55:33 -07001719 unsigned long size = (unsigned long)count << PAGE_SHIFT;
Nick Piggindb64fe02008-10-18 20:27:03 -07001720 unsigned long addr;
1721 void *mem;
1722
1723 if (likely(count <= VMAP_MAX_ALLOC)) {
1724 mem = vb_alloc(size, GFP_KERNEL);
1725 if (IS_ERR(mem))
1726 return NULL;
1727 addr = (unsigned long)mem;
1728 } else {
1729 struct vmap_area *va;
1730 va = alloc_vmap_area(size, PAGE_SIZE,
1731 VMALLOC_START, VMALLOC_END, node, GFP_KERNEL);
1732 if (IS_ERR(va))
1733 return NULL;
1734
1735 addr = va->va_start;
1736 mem = (void *)addr;
1737 }
1738 if (vmap_page_range(addr, addr + size, prot, pages) < 0) {
1739 vm_unmap_ram(mem, count);
1740 return NULL;
1741 }
1742 return mem;
1743}
1744EXPORT_SYMBOL(vm_map_ram);
1745
Joonsoo Kim4341fa42013-04-29 15:07:39 -07001746static struct vm_struct *vmlist __initdata;
Tejun Heof0aa6612009-02-20 16:29:08 +09001747/**
Nicolas Pitrebe9b7332011-08-25 00:24:21 -04001748 * vm_area_add_early - add vmap area early during boot
1749 * @vm: vm_struct to add
1750 *
1751 * This function is used to add fixed kernel vm area to vmlist before
1752 * vmalloc_init() is called. @vm->addr, @vm->size, and @vm->flags
1753 * should contain proper values and the other fields should be zero.
1754 *
1755 * DO NOT USE THIS FUNCTION UNLESS YOU KNOW WHAT YOU'RE DOING.
1756 */
1757void __init vm_area_add_early(struct vm_struct *vm)
1758{
1759 struct vm_struct *tmp, **p;
1760
1761 BUG_ON(vmap_initialized);
1762 for (p = &vmlist; (tmp = *p) != NULL; p = &tmp->next) {
1763 if (tmp->addr >= vm->addr) {
1764 BUG_ON(tmp->addr < vm->addr + vm->size);
1765 break;
1766 } else
1767 BUG_ON(tmp->addr + tmp->size > vm->addr);
1768 }
1769 vm->next = *p;
1770 *p = vm;
1771}
1772
1773/**
Tejun Heof0aa6612009-02-20 16:29:08 +09001774 * vm_area_register_early - register vmap area early during boot
1775 * @vm: vm_struct to register
Tejun Heoc0c0a292009-02-24 11:57:21 +09001776 * @align: requested alignment
Tejun Heof0aa6612009-02-20 16:29:08 +09001777 *
1778 * This function is used to register kernel vm area before
1779 * vmalloc_init() is called. @vm->size and @vm->flags should contain
1780 * proper values on entry and other fields should be zero. On return,
1781 * vm->addr contains the allocated address.
1782 *
1783 * DO NOT USE THIS FUNCTION UNLESS YOU KNOW WHAT YOU'RE DOING.
1784 */
Tejun Heoc0c0a292009-02-24 11:57:21 +09001785void __init vm_area_register_early(struct vm_struct *vm, size_t align)
Tejun Heof0aa6612009-02-20 16:29:08 +09001786{
1787 static size_t vm_init_off __initdata;
Tejun Heoc0c0a292009-02-24 11:57:21 +09001788 unsigned long addr;
Tejun Heof0aa6612009-02-20 16:29:08 +09001789
Tejun Heoc0c0a292009-02-24 11:57:21 +09001790 addr = ALIGN(VMALLOC_START + vm_init_off, align);
1791 vm_init_off = PFN_ALIGN(addr + vm->size) - VMALLOC_START;
1792
1793 vm->addr = (void *)addr;
Tejun Heof0aa6612009-02-20 16:29:08 +09001794
Nicolas Pitrebe9b7332011-08-25 00:24:21 -04001795 vm_area_add_early(vm);
Tejun Heof0aa6612009-02-20 16:29:08 +09001796}
1797
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07001798static void vmap_init_free_space(void)
1799{
1800 unsigned long vmap_start = 1;
1801 const unsigned long vmap_end = ULONG_MAX;
1802 struct vmap_area *busy, *free;
1803
1804 /*
1805 * B F B B B F
1806 * -|-----|.....|-----|-----|-----|.....|-
1807 * | The KVA space |
1808 * |<--------------------------------->|
1809 */
1810 list_for_each_entry(busy, &vmap_area_list, list) {
1811 if (busy->va_start - vmap_start > 0) {
1812 free = kmem_cache_zalloc(vmap_area_cachep, GFP_NOWAIT);
1813 if (!WARN_ON_ONCE(!free)) {
1814 free->va_start = vmap_start;
1815 free->va_end = busy->va_start;
1816
1817 insert_vmap_area_augment(free, NULL,
1818 &free_vmap_area_root,
1819 &free_vmap_area_list);
1820 }
1821 }
1822
1823 vmap_start = busy->va_end;
1824 }
1825
1826 if (vmap_end - vmap_start > 0) {
1827 free = kmem_cache_zalloc(vmap_area_cachep, GFP_NOWAIT);
1828 if (!WARN_ON_ONCE(!free)) {
1829 free->va_start = vmap_start;
1830 free->va_end = vmap_end;
1831
1832 insert_vmap_area_augment(free, NULL,
1833 &free_vmap_area_root,
1834 &free_vmap_area_list);
1835 }
1836 }
1837}
1838
Nick Piggindb64fe02008-10-18 20:27:03 -07001839void __init vmalloc_init(void)
1840{
Ivan Kokshaysky822c18f2009-01-15 13:50:48 -08001841 struct vmap_area *va;
1842 struct vm_struct *tmp;
Nick Piggindb64fe02008-10-18 20:27:03 -07001843 int i;
1844
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07001845 /*
1846 * Create the cache for vmap_area objects.
1847 */
1848 vmap_area_cachep = KMEM_CACHE(vmap_area, SLAB_PANIC);
1849
Nick Piggindb64fe02008-10-18 20:27:03 -07001850 for_each_possible_cpu(i) {
1851 struct vmap_block_queue *vbq;
Al Viro32fcfd42013-03-10 20:14:08 -04001852 struct vfree_deferred *p;
Nick Piggindb64fe02008-10-18 20:27:03 -07001853
1854 vbq = &per_cpu(vmap_block_queue, i);
1855 spin_lock_init(&vbq->lock);
1856 INIT_LIST_HEAD(&vbq->free);
Al Viro32fcfd42013-03-10 20:14:08 -04001857 p = &per_cpu(vfree_deferred, i);
1858 init_llist_head(&p->list);
1859 INIT_WORK(&p->wq, free_work);
Nick Piggindb64fe02008-10-18 20:27:03 -07001860 }
Jeremy Fitzhardinge9b463332008-10-28 19:22:34 +11001861
Ivan Kokshaysky822c18f2009-01-15 13:50:48 -08001862 /* Import existing vmlist entries. */
1863 for (tmp = vmlist; tmp; tmp = tmp->next) {
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07001864 va = kmem_cache_zalloc(vmap_area_cachep, GFP_NOWAIT);
1865 if (WARN_ON_ONCE(!va))
1866 continue;
1867
KyongHodbda5912012-05-29 15:06:49 -07001868 va->flags = VM_VM_AREA;
Ivan Kokshaysky822c18f2009-01-15 13:50:48 -08001869 va->va_start = (unsigned long)tmp->addr;
1870 va->va_end = va->va_start + tmp->size;
KyongHodbda5912012-05-29 15:06:49 -07001871 va->vm = tmp;
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07001872 insert_vmap_area(va, &vmap_area_root, &vmap_area_list);
Ivan Kokshaysky822c18f2009-01-15 13:50:48 -08001873 }
Tejun Heoca23e402009-08-14 15:00:52 +09001874
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07001875 /*
1876 * Now we can initialize a free vmap space.
1877 */
1878 vmap_init_free_space();
Jeremy Fitzhardinge9b463332008-10-28 19:22:34 +11001879 vmap_initialized = true;
Nick Piggindb64fe02008-10-18 20:27:03 -07001880}
1881
Tejun Heo8fc48982009-02-20 16:29:08 +09001882/**
1883 * map_kernel_range_noflush - map kernel VM area with the specified pages
1884 * @addr: start of the VM area to map
1885 * @size: size of the VM area to map
1886 * @prot: page protection flags to use
1887 * @pages: pages to map
1888 *
1889 * Map PFN_UP(@size) pages at @addr. The VM area @addr and @size
1890 * specify should have been allocated using get_vm_area() and its
1891 * friends.
1892 *
1893 * NOTE:
1894 * This function does NOT do any cache flushing. The caller is
1895 * responsible for calling flush_cache_vmap() on to-be-mapped areas
1896 * before calling this function.
1897 *
1898 * RETURNS:
1899 * The number of pages mapped on success, -errno on failure.
1900 */
1901int map_kernel_range_noflush(unsigned long addr, unsigned long size,
1902 pgprot_t prot, struct page **pages)
1903{
1904 return vmap_page_range_noflush(addr, addr + size, prot, pages);
1905}
1906
1907/**
1908 * unmap_kernel_range_noflush - unmap kernel VM area
1909 * @addr: start of the VM area to unmap
1910 * @size: size of the VM area to unmap
1911 *
1912 * Unmap PFN_UP(@size) pages at @addr. The VM area @addr and @size
1913 * specify should have been allocated using get_vm_area() and its
1914 * friends.
1915 *
1916 * NOTE:
1917 * This function does NOT do any cache flushing. The caller is
1918 * responsible for calling flush_cache_vunmap() on to-be-mapped areas
1919 * before calling this function and flush_tlb_kernel_range() after.
1920 */
1921void unmap_kernel_range_noflush(unsigned long addr, unsigned long size)
1922{
1923 vunmap_page_range(addr, addr + size);
1924}
Huang Ying81e88fd2011-01-12 14:44:55 +08001925EXPORT_SYMBOL_GPL(unmap_kernel_range_noflush);
Tejun Heo8fc48982009-02-20 16:29:08 +09001926
1927/**
1928 * unmap_kernel_range - unmap kernel VM area and flush cache and TLB
1929 * @addr: start of the VM area to unmap
1930 * @size: size of the VM area to unmap
1931 *
1932 * Similar to unmap_kernel_range_noflush() but flushes vcache before
1933 * the unmapping and tlb after.
1934 */
Nick Piggindb64fe02008-10-18 20:27:03 -07001935void unmap_kernel_range(unsigned long addr, unsigned long size)
1936{
1937 unsigned long end = addr + size;
Tejun Heof6fcba72009-02-20 15:38:48 -08001938
1939 flush_cache_vunmap(addr, end);
Nick Piggindb64fe02008-10-18 20:27:03 -07001940 vunmap_page_range(addr, end);
1941 flush_tlb_kernel_range(addr, end);
1942}
Minchan Kim93ef6d6c2014-06-04 16:11:09 -07001943EXPORT_SYMBOL_GPL(unmap_kernel_range);
Nick Piggindb64fe02008-10-18 20:27:03 -07001944
WANG Chaof6f8ed42014-08-06 16:06:58 -07001945int map_vm_area(struct vm_struct *area, pgprot_t prot, struct page **pages)
Nick Piggindb64fe02008-10-18 20:27:03 -07001946{
1947 unsigned long addr = (unsigned long)area->addr;
Wanpeng Li762216a2013-09-11 14:22:42 -07001948 unsigned long end = addr + get_vm_area_size(area);
Nick Piggindb64fe02008-10-18 20:27:03 -07001949 int err;
1950
WANG Chaof6f8ed42014-08-06 16:06:58 -07001951 err = vmap_page_range(addr, end, prot, pages);
Nick Piggindb64fe02008-10-18 20:27:03 -07001952
WANG Chaof6f8ed42014-08-06 16:06:58 -07001953 return err > 0 ? 0 : err;
Nick Piggindb64fe02008-10-18 20:27:03 -07001954}
1955EXPORT_SYMBOL_GPL(map_vm_area);
1956
Mitsuo Hayasakaf5252e02011-10-31 17:08:13 -07001957static void setup_vmalloc_vm(struct vm_struct *vm, struct vmap_area *va,
Marek Szyprowski5e6cafc2012-04-13 12:32:09 +02001958 unsigned long flags, const void *caller)
Tejun Heocf88c792009-08-14 15:00:52 +09001959{
Joonsoo Kimc69480a2013-04-29 15:07:30 -07001960 spin_lock(&vmap_area_lock);
Tejun Heocf88c792009-08-14 15:00:52 +09001961 vm->flags = flags;
1962 vm->addr = (void *)va->va_start;
1963 vm->size = va->va_end - va->va_start;
1964 vm->caller = caller;
Minchan Kimdb1aeca2012-01-10 15:08:39 -08001965 va->vm = vm;
Tejun Heocf88c792009-08-14 15:00:52 +09001966 va->flags |= VM_VM_AREA;
Joonsoo Kimc69480a2013-04-29 15:07:30 -07001967 spin_unlock(&vmap_area_lock);
Mitsuo Hayasakaf5252e02011-10-31 17:08:13 -07001968}
Tejun Heocf88c792009-08-14 15:00:52 +09001969
Zhang Yanfei20fc02b2013-07-08 15:59:58 -07001970static void clear_vm_uninitialized_flag(struct vm_struct *vm)
Mitsuo Hayasakaf5252e02011-10-31 17:08:13 -07001971{
Joonsoo Kimd4033af2013-04-29 15:07:35 -07001972 /*
Zhang Yanfei20fc02b2013-07-08 15:59:58 -07001973 * Before removing VM_UNINITIALIZED,
Joonsoo Kimd4033af2013-04-29 15:07:35 -07001974 * we should make sure that vm has proper values.
1975 * Pair with smp_rmb() in show_numa_info().
1976 */
1977 smp_wmb();
Zhang Yanfei20fc02b2013-07-08 15:59:58 -07001978 vm->flags &= ~VM_UNINITIALIZED;
Tejun Heocf88c792009-08-14 15:00:52 +09001979}
1980
Nick Piggindb64fe02008-10-18 20:27:03 -07001981static struct vm_struct *__get_vm_area_node(unsigned long size,
David Miller2dca6992009-09-21 12:22:34 -07001982 unsigned long align, unsigned long flags, unsigned long start,
Marek Szyprowski5e6cafc2012-04-13 12:32:09 +02001983 unsigned long end, int node, gfp_t gfp_mask, const void *caller)
Nick Piggindb64fe02008-10-18 20:27:03 -07001984{
Kautuk Consul00065262011-12-19 17:12:04 -08001985 struct vmap_area *va;
Nick Piggindb64fe02008-10-18 20:27:03 -07001986 struct vm_struct *area;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987
Giridhar Pemmasani52fd24c2006-10-28 10:38:34 -07001988 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 size = PAGE_ALIGN(size);
OGAWA Hirofumi31be8302006-11-16 01:19:29 -08001990 if (unlikely(!size))
1991 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
zijun_hu252e5c62016-10-07 16:57:26 -07001993 if (flags & VM_IOREMAP)
1994 align = 1ul << clamp_t(int, get_count_order_long(size),
1995 PAGE_SHIFT, IOREMAP_MAX_ORDER);
1996
Tejun Heocf88c792009-08-14 15:00:52 +09001997 area = kzalloc_node(sizeof(*area), gfp_mask & GFP_RECLAIM_MASK, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 if (unlikely(!area))
1999 return NULL;
2000
Andrey Ryabinin71394fe2015-02-13 14:40:03 -08002001 if (!(flags & VM_NO_GUARD))
2002 size += PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
Nick Piggindb64fe02008-10-18 20:27:03 -07002004 va = alloc_vmap_area(size, align, start, end, node, gfp_mask);
2005 if (IS_ERR(va)) {
2006 kfree(area);
2007 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009
Zhang Yanfeid82b1d82013-07-03 15:04:47 -07002010 setup_vmalloc_vm(area, va, flags, caller);
Mitsuo Hayasakaf5252e02011-10-31 17:08:13 -07002011
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 return area;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013}
2014
Christoph Lameter930fc452005-10-29 18:15:41 -07002015struct vm_struct *__get_vm_area(unsigned long size, unsigned long flags,
2016 unsigned long start, unsigned long end)
2017{
David Rientjes00ef2d22013-02-22 16:35:36 -08002018 return __get_vm_area_node(size, 1, flags, start, end, NUMA_NO_NODE,
2019 GFP_KERNEL, __builtin_return_address(0));
Christoph Lameter930fc452005-10-29 18:15:41 -07002020}
Rusty Russell5992b6d2007-07-19 01:49:21 -07002021EXPORT_SYMBOL_GPL(__get_vm_area);
Christoph Lameter930fc452005-10-29 18:15:41 -07002022
Benjamin Herrenschmidtc2968612009-02-18 14:48:12 -08002023struct vm_struct *__get_vm_area_caller(unsigned long size, unsigned long flags,
2024 unsigned long start, unsigned long end,
Marek Szyprowski5e6cafc2012-04-13 12:32:09 +02002025 const void *caller)
Benjamin Herrenschmidtc2968612009-02-18 14:48:12 -08002026{
David Rientjes00ef2d22013-02-22 16:35:36 -08002027 return __get_vm_area_node(size, 1, flags, start, end, NUMA_NO_NODE,
2028 GFP_KERNEL, caller);
Benjamin Herrenschmidtc2968612009-02-18 14:48:12 -08002029}
2030
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031/**
Simon Arlott183ff222007-10-20 01:27:18 +02002032 * get_vm_area - reserve a contiguous kernel virtual area
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 * @size: size of the area
2034 * @flags: %VM_IOREMAP for I/O mappings or VM_ALLOC
2035 *
2036 * Search an area of @size in the kernel virtual mapping area,
2037 * and reserved it for out purposes. Returns the area descriptor
2038 * on success or %NULL on failure.
2039 */
2040struct vm_struct *get_vm_area(unsigned long size, unsigned long flags)
2041{
David Miller2dca6992009-09-21 12:22:34 -07002042 return __get_vm_area_node(size, 1, flags, VMALLOC_START, VMALLOC_END,
David Rientjes00ef2d22013-02-22 16:35:36 -08002043 NUMA_NO_NODE, GFP_KERNEL,
2044 __builtin_return_address(0));
Christoph Lameter23016962008-04-28 02:12:42 -07002045}
2046
2047struct vm_struct *get_vm_area_caller(unsigned long size, unsigned long flags,
Marek Szyprowski5e6cafc2012-04-13 12:32:09 +02002048 const void *caller)
Christoph Lameter23016962008-04-28 02:12:42 -07002049{
David Miller2dca6992009-09-21 12:22:34 -07002050 return __get_vm_area_node(size, 1, flags, VMALLOC_START, VMALLOC_END,
David Rientjes00ef2d22013-02-22 16:35:36 -08002051 NUMA_NO_NODE, GFP_KERNEL, caller);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052}
2053
Marek Szyprowskie9da6e92012-07-30 09:11:33 +02002054/**
2055 * find_vm_area - find a continuous kernel virtual area
2056 * @addr: base address
2057 *
2058 * Search for the kernel VM area starting at @addr, and return it.
2059 * It is up to the caller to do all required locking to keep the returned
2060 * pointer valid.
2061 */
2062struct vm_struct *find_vm_area(const void *addr)
Nick Piggin83342312006-06-23 02:03:20 -07002063{
Nick Piggindb64fe02008-10-18 20:27:03 -07002064 struct vmap_area *va;
Nick Piggin83342312006-06-23 02:03:20 -07002065
Nick Piggindb64fe02008-10-18 20:27:03 -07002066 va = find_vmap_area((unsigned long)addr);
2067 if (va && va->flags & VM_VM_AREA)
Minchan Kimdb1aeca2012-01-10 15:08:39 -08002068 return va->vm;
Nick Piggin83342312006-06-23 02:03:20 -07002069
Andi Kleen7856dfe2005-05-20 14:27:57 -07002070 return NULL;
Andi Kleen7856dfe2005-05-20 14:27:57 -07002071}
2072
Roman Gushchin48480dc2019-04-24 07:37:21 +10002073static struct vm_struct *__remove_vm_area(struct vmap_area *va)
2074{
2075 struct vm_struct *vm = va->vm;
2076
Roman Gushchin48480dc2019-04-24 07:37:21 +10002077 spin_lock(&vmap_area_lock);
2078 va->vm = NULL;
2079 va->flags &= ~VM_VM_AREA;
2080 va->flags |= VM_LAZY_FREE;
2081 spin_unlock(&vmap_area_lock);
2082
2083 kasan_free_shadow(vm);
2084 free_unmap_vmap_area(va);
2085
2086 return vm;
2087}
2088
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089/**
Simon Arlott183ff222007-10-20 01:27:18 +02002090 * remove_vm_area - find and remove a continuous kernel virtual area
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 * @addr: base address
2092 *
2093 * Search for the kernel VM area starting at @addr, and remove it.
2094 * This function returns the found VM area, but using it is NOT safe
Andi Kleen7856dfe2005-05-20 14:27:57 -07002095 * on SMP machines, except for its size or flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 */
Christoph Lameterb3bdda02008-02-04 22:28:32 -08002097struct vm_struct *remove_vm_area(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098{
Roman Gushchin48480dc2019-04-24 07:37:21 +10002099 struct vm_struct *vm = NULL;
Nick Piggindb64fe02008-10-18 20:27:03 -07002100 struct vmap_area *va;
2101
2102 va = find_vmap_area((unsigned long)addr);
Roman Gushchin48480dc2019-04-24 07:37:21 +10002103 if (va && va->flags & VM_VM_AREA)
2104 vm = __remove_vm_area(va);
Mitsuo Hayasakaf5252e02011-10-31 17:08:13 -07002105
Roman Gushchin48480dc2019-04-24 07:37:21 +10002106 return vm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107}
2108
Christoph Lameterb3bdda02008-02-04 22:28:32 -08002109static void __vunmap(const void *addr, int deallocate_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110{
2111 struct vm_struct *area;
Roman Gushchin48480dc2019-04-24 07:37:21 +10002112 struct vmap_area *va;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
2114 if (!addr)
2115 return;
2116
HATAYAMA Daisukee69e9d4a2013-07-03 15:02:18 -07002117 if (WARN(!PAGE_ALIGNED(addr), "Trying to vfree() bad address (%p)\n",
Dan Carpenterab15d9b2013-07-08 15:59:53 -07002118 addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120
Roman Gushchin48480dc2019-04-24 07:37:21 +10002121 va = find_vmap_area((unsigned long)addr);
2122 if (unlikely(!va || !(va->flags & VM_VM_AREA))) {
Arjan van de Ven4c8573e2008-07-25 19:45:37 -07002123 WARN(1, KERN_ERR "Trying to vfree() nonexistent vm area (%p)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 return;
2126 }
2127
Roman Gushchin48480dc2019-04-24 07:37:21 +10002128 area = va->vm;
2129 debug_check_no_locks_freed(addr, get_vm_area_size(area));
2130 debug_check_no_obj_freed(addr, get_vm_area_size(area));
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07002131
Roman Gushchin48480dc2019-04-24 07:37:21 +10002132 __remove_vm_area(va);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 if (deallocate_pages) {
2134 int i;
2135
2136 for (i = 0; i < area->nr_pages; i++) {
Christoph Lameterbf53d6f2008-02-04 22:28:34 -08002137 struct page *page = area->pages[i];
2138
2139 BUG_ON(!page);
Vladimir Davydov49491482016-07-26 15:24:24 -07002140 __free_pages(page, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 }
Roman Gushchindb70fefd2019-02-25 12:30:37 -08002142 atomic_long_sub(area->nr_pages, &nr_vmalloc_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143
David Rientjes244d63e2016-01-14 15:19:35 -08002144 kvfree(area->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 }
2146
2147 kfree(area);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148}
Andrey Ryabininbf22e372016-12-12 16:44:10 -08002149
2150static inline void __vfree_deferred(const void *addr)
2151{
2152 /*
2153 * Use raw_cpu_ptr() because this can be called from preemptible
2154 * context. Preemption is absolutely fine here, because the llist_add()
2155 * implementation is lockless, so it works even if we are adding to
2156 * nother cpu's list. schedule_work() should be fine with this too.
2157 */
2158 struct vfree_deferred *p = raw_cpu_ptr(&vfree_deferred);
2159
2160 if (llist_add((struct llist_node *)addr, &p->list))
2161 schedule_work(&p->wq);
2162}
2163
2164/**
2165 * vfree_atomic - release memory allocated by vmalloc()
2166 * @addr: memory base address
2167 *
2168 * This one is just like vfree() but can be called in any atomic context
2169 * except NMIs.
2170 */
2171void vfree_atomic(const void *addr)
2172{
2173 BUG_ON(in_nmi());
2174
2175 kmemleak_free(addr);
2176
2177 if (!addr)
2178 return;
2179 __vfree_deferred(addr);
2180}
2181
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182/**
2183 * vfree - release memory allocated by vmalloc()
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 * @addr: memory base address
2185 *
Simon Arlott183ff222007-10-20 01:27:18 +02002186 * Free the virtually continuous memory area starting at @addr, as
Pekka Enberg80e93ef2005-09-09 13:10:16 -07002187 * obtained from vmalloc(), vmalloc_32() or __vmalloc(). If @addr is
2188 * NULL, no operation is performed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 *
Al Viro32fcfd42013-03-10 20:14:08 -04002190 * Must not be called in NMI context (strictly speaking, only if we don't
2191 * have CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG, but making the calling
2192 * conventions for vfree() arch-depenedent would be a really bad idea)
Andrew Mortonc9fcee52013-05-07 16:18:18 -07002193 *
mchehab@s-opensource.com0e056eb2017-03-30 17:11:36 -03002194 * NOTE: assumes that the object at @addr has a size >= sizeof(llist_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 */
Christoph Lameterb3bdda02008-02-04 22:28:32 -08002196void vfree(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197{
Al Viro32fcfd42013-03-10 20:14:08 -04002198 BUG_ON(in_nmi());
Catalin Marinas89219d32009-06-11 13:23:19 +01002199
2200 kmemleak_free(addr);
2201
Al Viro32fcfd42013-03-10 20:14:08 -04002202 if (!addr)
2203 return;
Andrey Ryabininbf22e372016-12-12 16:44:10 -08002204 if (unlikely(in_interrupt()))
2205 __vfree_deferred(addr);
2206 else
Al Viro32fcfd42013-03-10 20:14:08 -04002207 __vunmap(addr, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209EXPORT_SYMBOL(vfree);
2210
2211/**
2212 * vunmap - release virtual mapping obtained by vmap()
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 * @addr: memory base address
2214 *
2215 * Free the virtually contiguous memory area starting at @addr,
2216 * which was created from the page array passed to vmap().
2217 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07002218 * Must not be called in interrupt context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 */
Christoph Lameterb3bdda02008-02-04 22:28:32 -08002220void vunmap(const void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221{
2222 BUG_ON(in_interrupt());
Peter Zijlstra34754b62009-02-25 16:04:03 +01002223 might_sleep();
Al Viro32fcfd42013-03-10 20:14:08 -04002224 if (addr)
2225 __vunmap(addr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227EXPORT_SYMBOL(vunmap);
2228
2229/**
2230 * vmap - map an array of pages into virtually contiguous space
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 * @pages: array of page pointers
2232 * @count: number of pages to map
2233 * @flags: vm_area->flags
2234 * @prot: page protection for the mapping
2235 *
2236 * Maps @count pages from @pages into contiguous kernel virtual
2237 * space.
2238 */
2239void *vmap(struct page **pages, unsigned int count,
2240 unsigned long flags, pgprot_t prot)
2241{
2242 struct vm_struct *area;
Guillermo Julián Moreno65ee03c2016-06-03 14:55:33 -07002243 unsigned long size; /* In bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
Peter Zijlstra34754b62009-02-25 16:04:03 +01002245 might_sleep();
2246
Jan Beulich44813742009-09-21 17:03:05 -07002247 if (count > totalram_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 return NULL;
2249
Guillermo Julián Moreno65ee03c2016-06-03 14:55:33 -07002250 size = (unsigned long)count << PAGE_SHIFT;
2251 area = get_vm_area_caller(size, flags, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 if (!area)
2253 return NULL;
Christoph Lameter23016962008-04-28 02:12:42 -07002254
WANG Chaof6f8ed42014-08-06 16:06:58 -07002255 if (map_vm_area(area, prot, pages)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 vunmap(area->addr);
2257 return NULL;
2258 }
2259
2260 return area->addr;
2261}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262EXPORT_SYMBOL(vmap);
2263
Michal Hocko8594a212017-05-12 15:46:41 -07002264static void *__vmalloc_node(unsigned long size, unsigned long align,
2265 gfp_t gfp_mask, pgprot_t prot,
2266 int node, const void *caller);
Adrian Bunke31d9eb2008-02-04 22:29:09 -08002267static void *__vmalloc_area_node(struct vm_struct *area, gfp_t gfp_mask,
Wanpeng Li3722e132013-11-12 15:07:29 -08002268 pgprot_t prot, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269{
2270 struct page **pages;
2271 unsigned int nr_pages, array_size, i;
David Rientjes930f0362014-08-06 16:06:28 -07002272 const gfp_t nested_gfp = (gfp_mask & GFP_RECLAIM_MASK) | __GFP_ZERO;
Laura Abbott704b8622017-08-18 15:16:27 -07002273 const gfp_t alloc_mask = gfp_mask | __GFP_NOWARN;
2274 const gfp_t highmem_mask = (gfp_mask & (GFP_DMA | GFP_DMA32)) ?
2275 0 :
2276 __GFP_HIGHMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
Wanpeng Li762216a2013-09-11 14:22:42 -07002278 nr_pages = get_vm_area_size(area) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 array_size = (nr_pages * sizeof(struct page *));
2280
2281 area->nr_pages = nr_pages;
2282 /* Please note that the recursion is strictly bounded. */
Jan Kiszka8757d5f2006-07-14 00:23:56 -07002283 if (array_size > PAGE_SIZE) {
Laura Abbott704b8622017-08-18 15:16:27 -07002284 pages = __vmalloc_node(array_size, 1, nested_gfp|highmem_mask,
Wanpeng Li3722e132013-11-12 15:07:29 -08002285 PAGE_KERNEL, node, area->caller);
Andrew Morton286e1ea2006-10-17 00:09:57 -07002286 } else {
Jan Beulich976d6df2009-12-14 17:58:39 -08002287 pages = kmalloc_node(array_size, nested_gfp, node);
Andrew Morton286e1ea2006-10-17 00:09:57 -07002288 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 area->pages = pages;
2290 if (!area->pages) {
2291 remove_vm_area(area->addr);
2292 kfree(area);
2293 return NULL;
2294 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295
2296 for (i = 0; i < area->nr_pages; i++) {
Christoph Lameterbf53d6f2008-02-04 22:28:34 -08002297 struct page *page;
2298
Jianguo Wu4b909512013-11-12 15:07:11 -08002299 if (node == NUMA_NO_NODE)
Laura Abbott704b8622017-08-18 15:16:27 -07002300 page = alloc_page(alloc_mask|highmem_mask);
Christoph Lameter930fc452005-10-29 18:15:41 -07002301 else
Laura Abbott704b8622017-08-18 15:16:27 -07002302 page = alloc_pages_node(node, alloc_mask|highmem_mask, 0);
Christoph Lameterbf53d6f2008-02-04 22:28:34 -08002303
2304 if (unlikely(!page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 /* Successfully allocated i pages, free them in __vunmap() */
2306 area->nr_pages = i;
Roman Gushchindb70fefd2019-02-25 12:30:37 -08002307 atomic_long_add(area->nr_pages, &nr_vmalloc_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 goto fail;
2309 }
Christoph Lameterbf53d6f2008-02-04 22:28:34 -08002310 area->pages[i] = page;
Laura Abbott704b8622017-08-18 15:16:27 -07002311 if (gfpflags_allow_blocking(gfp_mask|highmem_mask))
Eric Dumazet660654f2014-08-06 16:06:25 -07002312 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 }
Roman Gushchindb70fefd2019-02-25 12:30:37 -08002314 atomic_long_add(area->nr_pages, &nr_vmalloc_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
WANG Chaof6f8ed42014-08-06 16:06:58 -07002316 if (map_vm_area(area, prot, pages))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 goto fail;
2318 return area->addr;
2319
2320fail:
Michal Hockoa8e99252017-02-22 15:46:10 -08002321 warn_alloc(gfp_mask, NULL,
Michal Hocko7877cdc2016-10-07 17:01:55 -07002322 "vmalloc: allocation failure, allocated %ld of %ld bytes",
Dave Hansen22943ab2011-05-24 17:12:18 -07002323 (area->nr_pages*PAGE_SIZE), area->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 vfree(area->addr);
2325 return NULL;
2326}
2327
David Rientjesd0a21262011-01-13 15:46:02 -08002328/**
2329 * __vmalloc_node_range - allocate virtually contiguous memory
2330 * @size: allocation size
2331 * @align: desired alignment
2332 * @start: vm area range start
2333 * @end: vm area range end
2334 * @gfp_mask: flags for the page level allocator
2335 * @prot: protection mask for the allocated pages
Andrey Ryabinincb9e3c22015-02-13 14:40:07 -08002336 * @vm_flags: additional vm area flags (e.g. %VM_NO_GUARD)
David Rientjes00ef2d22013-02-22 16:35:36 -08002337 * @node: node to use for allocation or NUMA_NO_NODE
David Rientjesd0a21262011-01-13 15:46:02 -08002338 * @caller: caller's return address
2339 *
2340 * Allocate enough pages to cover @size from the page level
2341 * allocator with @gfp_mask flags. Map them into contiguous
2342 * kernel virtual space, using a pagetable protection of @prot.
2343 */
2344void *__vmalloc_node_range(unsigned long size, unsigned long align,
2345 unsigned long start, unsigned long end, gfp_t gfp_mask,
Andrey Ryabinincb9e3c22015-02-13 14:40:07 -08002346 pgprot_t prot, unsigned long vm_flags, int node,
2347 const void *caller)
Christoph Lameter930fc452005-10-29 18:15:41 -07002348{
David Rientjesd0a21262011-01-13 15:46:02 -08002349 struct vm_struct *area;
2350 void *addr;
2351 unsigned long real_size = size;
2352
2353 size = PAGE_ALIGN(size);
2354 if (!size || (size >> PAGE_SHIFT) > totalram_pages)
Joe Perchesde7d2b52011-10-31 17:08:48 -07002355 goto fail;
David Rientjesd0a21262011-01-13 15:46:02 -08002356
Andrey Ryabinincb9e3c22015-02-13 14:40:07 -08002357 area = __get_vm_area_node(size, align, VM_ALLOC | VM_UNINITIALIZED |
2358 vm_flags, start, end, node, gfp_mask, caller);
David Rientjesd0a21262011-01-13 15:46:02 -08002359 if (!area)
Joe Perchesde7d2b52011-10-31 17:08:48 -07002360 goto fail;
David Rientjesd0a21262011-01-13 15:46:02 -08002361
Wanpeng Li3722e132013-11-12 15:07:29 -08002362 addr = __vmalloc_area_node(area, gfp_mask, prot, node);
Mel Gorman1368edf2011-12-08 14:34:30 -08002363 if (!addr)
Wanpeng Lib82225f32013-11-12 15:07:33 -08002364 return NULL;
Catalin Marinas89219d32009-06-11 13:23:19 +01002365
2366 /*
Joerg Roedel46b306f2019-07-19 20:46:52 +02002367 * First make sure the mappings are removed from all page-tables
2368 * before they are freed.
2369 */
2370 vmalloc_sync_all();
2371
2372 /*
Zhang Yanfei20fc02b2013-07-08 15:59:58 -07002373 * In this function, newly allocated vm_struct has VM_UNINITIALIZED
2374 * flag. It means that vm_struct is not fully initialized.
Joonsoo Kim4341fa42013-04-29 15:07:39 -07002375 * Now, it is fully initialized, so remove this flag here.
Mitsuo Hayasakaf5252e02011-10-31 17:08:13 -07002376 */
Zhang Yanfei20fc02b2013-07-08 15:59:58 -07002377 clear_vm_uninitialized_flag(area);
Mitsuo Hayasakaf5252e02011-10-31 17:08:13 -07002378
Catalin Marinas94f4a162017-07-06 15:40:22 -07002379 kmemleak_vmalloc(area, size, gfp_mask);
Catalin Marinas89219d32009-06-11 13:23:19 +01002380
2381 return addr;
Joe Perchesde7d2b52011-10-31 17:08:48 -07002382
2383fail:
Michal Hockoa8e99252017-02-22 15:46:10 -08002384 warn_alloc(gfp_mask, NULL,
Michal Hocko7877cdc2016-10-07 17:01:55 -07002385 "vmalloc: allocation failure: %lu bytes", real_size);
Joe Perchesde7d2b52011-10-31 17:08:48 -07002386 return NULL;
Christoph Lameter930fc452005-10-29 18:15:41 -07002387}
2388
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389/**
Christoph Lameter930fc452005-10-29 18:15:41 -07002390 * __vmalloc_node - allocate virtually contiguous memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 * @size: allocation size
David Miller2dca6992009-09-21 12:22:34 -07002392 * @align: desired alignment
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 * @gfp_mask: flags for the page level allocator
2394 * @prot: protection mask for the allocated pages
David Rientjes00ef2d22013-02-22 16:35:36 -08002395 * @node: node to use for allocation or NUMA_NO_NODE
Randy Dunlapc85d1942008-05-01 04:34:48 -07002396 * @caller: caller's return address
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 *
2398 * Allocate enough pages to cover @size from the page level
2399 * allocator with @gfp_mask flags. Map them into contiguous
2400 * kernel virtual space, using a pagetable protection of @prot.
Michal Hockoa7c3e902017-05-08 15:57:09 -07002401 *
Michal Hockodcda9b02017-07-12 14:36:45 -07002402 * Reclaim modifiers in @gfp_mask - __GFP_NORETRY, __GFP_RETRY_MAYFAIL
Michal Hockoa7c3e902017-05-08 15:57:09 -07002403 * and __GFP_NOFAIL are not supported
2404 *
2405 * Any use of gfp flags outside of GFP_KERNEL should be consulted
2406 * with mm people.
2407 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 */
Michal Hocko8594a212017-05-12 15:46:41 -07002409static void *__vmalloc_node(unsigned long size, unsigned long align,
David Miller2dca6992009-09-21 12:22:34 -07002410 gfp_t gfp_mask, pgprot_t prot,
Marek Szyprowski5e6cafc2012-04-13 12:32:09 +02002411 int node, const void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412{
David Rientjesd0a21262011-01-13 15:46:02 -08002413 return __vmalloc_node_range(size, align, VMALLOC_START, VMALLOC_END,
Andrey Ryabinincb9e3c22015-02-13 14:40:07 -08002414 gfp_mask, prot, 0, node, caller);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415}
2416
Christoph Lameter930fc452005-10-29 18:15:41 -07002417void *__vmalloc(unsigned long size, gfp_t gfp_mask, pgprot_t prot)
2418{
David Rientjes00ef2d22013-02-22 16:35:36 -08002419 return __vmalloc_node(size, 1, gfp_mask, prot, NUMA_NO_NODE,
Christoph Lameter23016962008-04-28 02:12:42 -07002420 __builtin_return_address(0));
Christoph Lameter930fc452005-10-29 18:15:41 -07002421}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422EXPORT_SYMBOL(__vmalloc);
2423
Michal Hocko8594a212017-05-12 15:46:41 -07002424static inline void *__vmalloc_node_flags(unsigned long size,
2425 int node, gfp_t flags)
2426{
2427 return __vmalloc_node(size, 1, flags, PAGE_KERNEL,
2428 node, __builtin_return_address(0));
2429}
2430
2431
2432void *__vmalloc_node_flags_caller(unsigned long size, int node, gfp_t flags,
2433 void *caller)
2434{
2435 return __vmalloc_node(size, 1, flags, PAGE_KERNEL, node, caller);
2436}
2437
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438/**
2439 * vmalloc - allocate virtually contiguous memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 * @size: allocation size
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 * Allocate enough pages to cover @size from the page level
2442 * allocator and map them into contiguous kernel virtual space.
2443 *
Michael Opdenackerc1c88972006-10-03 23:21:02 +02002444 * For tight control over page level allocator and protection flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 * use __vmalloc() instead.
2446 */
2447void *vmalloc(unsigned long size)
2448{
David Rientjes00ef2d22013-02-22 16:35:36 -08002449 return __vmalloc_node_flags(size, NUMA_NO_NODE,
Michal Hocko19809c22017-05-08 15:57:44 -07002450 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452EXPORT_SYMBOL(vmalloc);
2453
Christoph Lameter930fc452005-10-29 18:15:41 -07002454/**
Dave Younge1ca7782010-10-26 14:22:06 -07002455 * vzalloc - allocate virtually contiguous memory with zero fill
2456 * @size: allocation size
2457 * Allocate enough pages to cover @size from the page level
2458 * allocator and map them into contiguous kernel virtual space.
2459 * The memory allocated is set to zero.
2460 *
2461 * For tight control over page level allocator and protection flags
2462 * use __vmalloc() instead.
2463 */
2464void *vzalloc(unsigned long size)
2465{
David Rientjes00ef2d22013-02-22 16:35:36 -08002466 return __vmalloc_node_flags(size, NUMA_NO_NODE,
Michal Hocko19809c22017-05-08 15:57:44 -07002467 GFP_KERNEL | __GFP_ZERO);
Dave Younge1ca7782010-10-26 14:22:06 -07002468}
2469EXPORT_SYMBOL(vzalloc);
2470
2471/**
Rolf Eike Beeread04082006-09-27 01:50:13 -07002472 * vmalloc_user - allocate zeroed virtually contiguous memory for userspace
2473 * @size: allocation size
Nick Piggin83342312006-06-23 02:03:20 -07002474 *
Rolf Eike Beeread04082006-09-27 01:50:13 -07002475 * The resulting memory area is zeroed so it can be mapped to userspace
2476 * without leaking data.
Nick Piggin83342312006-06-23 02:03:20 -07002477 */
2478void *vmalloc_user(unsigned long size)
2479{
2480 struct vm_struct *area;
2481 void *ret;
2482
David Miller2dca6992009-09-21 12:22:34 -07002483 ret = __vmalloc_node(size, SHMLBA,
Michal Hocko19809c22017-05-08 15:57:44 -07002484 GFP_KERNEL | __GFP_ZERO,
David Rientjes00ef2d22013-02-22 16:35:36 -08002485 PAGE_KERNEL, NUMA_NO_NODE,
2486 __builtin_return_address(0));
Eric Dumazet2b4ac442006-11-10 12:27:48 -08002487 if (ret) {
Nick Piggindb64fe02008-10-18 20:27:03 -07002488 area = find_vm_area(ret);
Eric Dumazet2b4ac442006-11-10 12:27:48 -08002489 area->flags |= VM_USERMAP;
Eric Dumazet2b4ac442006-11-10 12:27:48 -08002490 }
Nick Piggin83342312006-06-23 02:03:20 -07002491 return ret;
2492}
2493EXPORT_SYMBOL(vmalloc_user);
2494
2495/**
Christoph Lameter930fc452005-10-29 18:15:41 -07002496 * vmalloc_node - allocate memory on a specific node
Christoph Lameter930fc452005-10-29 18:15:41 -07002497 * @size: allocation size
Randy Dunlapd44e0782005-11-07 01:01:10 -08002498 * @node: numa node
Christoph Lameter930fc452005-10-29 18:15:41 -07002499 *
2500 * Allocate enough pages to cover @size from the page level
2501 * allocator and map them into contiguous kernel virtual space.
2502 *
Michael Opdenackerc1c88972006-10-03 23:21:02 +02002503 * For tight control over page level allocator and protection flags
Christoph Lameter930fc452005-10-29 18:15:41 -07002504 * use __vmalloc() instead.
2505 */
2506void *vmalloc_node(unsigned long size, int node)
2507{
Michal Hocko19809c22017-05-08 15:57:44 -07002508 return __vmalloc_node(size, 1, GFP_KERNEL, PAGE_KERNEL,
Christoph Lameter23016962008-04-28 02:12:42 -07002509 node, __builtin_return_address(0));
Christoph Lameter930fc452005-10-29 18:15:41 -07002510}
2511EXPORT_SYMBOL(vmalloc_node);
2512
Dave Younge1ca7782010-10-26 14:22:06 -07002513/**
2514 * vzalloc_node - allocate memory on a specific node with zero fill
2515 * @size: allocation size
2516 * @node: numa node
2517 *
2518 * Allocate enough pages to cover @size from the page level
2519 * allocator and map them into contiguous kernel virtual space.
2520 * The memory allocated is set to zero.
2521 *
2522 * For tight control over page level allocator and protection flags
2523 * use __vmalloc_node() instead.
2524 */
2525void *vzalloc_node(unsigned long size, int node)
2526{
2527 return __vmalloc_node_flags(size, node,
Michal Hocko19809c22017-05-08 15:57:44 -07002528 GFP_KERNEL | __GFP_ZERO);
Dave Younge1ca7782010-10-26 14:22:06 -07002529}
2530EXPORT_SYMBOL(vzalloc_node);
2531
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532/**
2533 * vmalloc_exec - allocate virtually contiguous, executable memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 * @size: allocation size
2535 *
2536 * Kernel-internal function to allocate enough pages to cover @size
2537 * the page level allocator and map them into contiguous and
2538 * executable kernel virtual space.
2539 *
Michael Opdenackerc1c88972006-10-03 23:21:02 +02002540 * For tight control over page level allocator and protection flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 * use __vmalloc() instead.
2542 */
2543
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544void *vmalloc_exec(unsigned long size)
2545{
Michal Hocko19809c22017-05-08 15:57:44 -07002546 return __vmalloc_node(size, 1, GFP_KERNEL, PAGE_KERNEL_EXEC,
David Rientjes00ef2d22013-02-22 16:35:36 -08002547 NUMA_NO_NODE, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548}
2549
Andi Kleen0d08e0d2007-05-02 19:27:12 +02002550#if defined(CONFIG_64BIT) && defined(CONFIG_ZONE_DMA32)
Michal Hocko698d0832018-02-21 14:46:01 -08002551#define GFP_VMALLOC32 (GFP_DMA32 | GFP_KERNEL)
Andi Kleen0d08e0d2007-05-02 19:27:12 +02002552#elif defined(CONFIG_64BIT) && defined(CONFIG_ZONE_DMA)
Michal Hocko698d0832018-02-21 14:46:01 -08002553#define GFP_VMALLOC32 (GFP_DMA | GFP_KERNEL)
Andi Kleen0d08e0d2007-05-02 19:27:12 +02002554#else
Michal Hocko698d0832018-02-21 14:46:01 -08002555/*
2556 * 64b systems should always have either DMA or DMA32 zones. For others
2557 * GFP_DMA32 should do the right thing and use the normal zone.
2558 */
2559#define GFP_VMALLOC32 GFP_DMA32 | GFP_KERNEL
Andi Kleen0d08e0d2007-05-02 19:27:12 +02002560#endif
2561
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562/**
2563 * vmalloc_32 - allocate virtually contiguous memory (32bit addressable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 * @size: allocation size
2565 *
2566 * Allocate enough 32bit PA addressable pages to cover @size from the
2567 * page level allocator and map them into contiguous kernel virtual space.
2568 */
2569void *vmalloc_32(unsigned long size)
2570{
David Miller2dca6992009-09-21 12:22:34 -07002571 return __vmalloc_node(size, 1, GFP_VMALLOC32, PAGE_KERNEL,
David Rientjes00ef2d22013-02-22 16:35:36 -08002572 NUMA_NO_NODE, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574EXPORT_SYMBOL(vmalloc_32);
2575
Nick Piggin83342312006-06-23 02:03:20 -07002576/**
Rolf Eike Beeread04082006-09-27 01:50:13 -07002577 * vmalloc_32_user - allocate zeroed virtually contiguous 32bit memory
Nick Piggin83342312006-06-23 02:03:20 -07002578 * @size: allocation size
Rolf Eike Beeread04082006-09-27 01:50:13 -07002579 *
2580 * The resulting memory area is 32bit addressable and zeroed so it can be
2581 * mapped to userspace without leaking data.
Nick Piggin83342312006-06-23 02:03:20 -07002582 */
2583void *vmalloc_32_user(unsigned long size)
2584{
2585 struct vm_struct *area;
2586 void *ret;
2587
David Miller2dca6992009-09-21 12:22:34 -07002588 ret = __vmalloc_node(size, 1, GFP_VMALLOC32 | __GFP_ZERO, PAGE_KERNEL,
David Rientjes00ef2d22013-02-22 16:35:36 -08002589 NUMA_NO_NODE, __builtin_return_address(0));
Eric Dumazet2b4ac442006-11-10 12:27:48 -08002590 if (ret) {
Nick Piggindb64fe02008-10-18 20:27:03 -07002591 area = find_vm_area(ret);
Eric Dumazet2b4ac442006-11-10 12:27:48 -08002592 area->flags |= VM_USERMAP;
Eric Dumazet2b4ac442006-11-10 12:27:48 -08002593 }
Nick Piggin83342312006-06-23 02:03:20 -07002594 return ret;
2595}
2596EXPORT_SYMBOL(vmalloc_32_user);
2597
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002598/*
2599 * small helper routine , copy contents to buf from addr.
2600 * If the page is not present, fill zero.
2601 */
2602
2603static int aligned_vread(char *buf, char *addr, unsigned long count)
2604{
2605 struct page *p;
2606 int copied = 0;
2607
2608 while (count) {
2609 unsigned long offset, length;
2610
Alexander Kuleshov891c49a2015-11-05 18:46:51 -08002611 offset = offset_in_page(addr);
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002612 length = PAGE_SIZE - offset;
2613 if (length > count)
2614 length = count;
2615 p = vmalloc_to_page(addr);
2616 /*
2617 * To do safe access to this _mapped_ area, we need
2618 * lock. But adding lock here means that we need to add
2619 * overhead of vmalloc()/vfree() calles for this _debug_
2620 * interface, rarely used. Instead of that, we'll use
2621 * kmap() and get small overhead in this access function.
2622 */
2623 if (p) {
2624 /*
2625 * we can expect USER0 is not used (see vread/vwrite's
2626 * function description)
2627 */
Cong Wang9b04c5f2011-11-25 23:14:39 +08002628 void *map = kmap_atomic(p);
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002629 memcpy(buf, map + offset, length);
Cong Wang9b04c5f2011-11-25 23:14:39 +08002630 kunmap_atomic(map);
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002631 } else
2632 memset(buf, 0, length);
2633
2634 addr += length;
2635 buf += length;
2636 copied += length;
2637 count -= length;
2638 }
2639 return copied;
2640}
2641
2642static int aligned_vwrite(char *buf, char *addr, unsigned long count)
2643{
2644 struct page *p;
2645 int copied = 0;
2646
2647 while (count) {
2648 unsigned long offset, length;
2649
Alexander Kuleshov891c49a2015-11-05 18:46:51 -08002650 offset = offset_in_page(addr);
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002651 length = PAGE_SIZE - offset;
2652 if (length > count)
2653 length = count;
2654 p = vmalloc_to_page(addr);
2655 /*
2656 * To do safe access to this _mapped_ area, we need
2657 * lock. But adding lock here means that we need to add
2658 * overhead of vmalloc()/vfree() calles for this _debug_
2659 * interface, rarely used. Instead of that, we'll use
2660 * kmap() and get small overhead in this access function.
2661 */
2662 if (p) {
2663 /*
2664 * we can expect USER0 is not used (see vread/vwrite's
2665 * function description)
2666 */
Cong Wang9b04c5f2011-11-25 23:14:39 +08002667 void *map = kmap_atomic(p);
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002668 memcpy(map + offset, buf, length);
Cong Wang9b04c5f2011-11-25 23:14:39 +08002669 kunmap_atomic(map);
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002670 }
2671 addr += length;
2672 buf += length;
2673 copied += length;
2674 count -= length;
2675 }
2676 return copied;
2677}
2678
2679/**
2680 * vread() - read vmalloc area in a safe way.
2681 * @buf: buffer for reading data
2682 * @addr: vm address.
2683 * @count: number of bytes to be read.
2684 *
2685 * Returns # of bytes which addr and buf should be increased.
2686 * (same number to @count). Returns 0 if [addr...addr+count) doesn't
2687 * includes any intersect with alive vmalloc area.
2688 *
2689 * This function checks that addr is a valid vmalloc'ed area, and
2690 * copy data from that area to a given buffer. If the given memory range
2691 * of [addr...addr+count) includes some valid address, data is copied to
2692 * proper area of @buf. If there are memory holes, they'll be zero-filled.
2693 * IOREMAP area is treated as memory hole and no copy is done.
2694 *
2695 * If [addr...addr+count) doesn't includes any intersects with alive
Cong Wanga8e52022012-06-23 11:30:16 +08002696 * vm_struct area, returns 0. @buf should be kernel's buffer.
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002697 *
2698 * Note: In usual ops, vread() is never necessary because the caller
2699 * should know vmalloc() area is valid and can use memcpy().
2700 * This is for routines which have to access vmalloc area without
2701 * any informaion, as /dev/kmem.
2702 *
2703 */
2704
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705long vread(char *buf, char *addr, unsigned long count)
2706{
Joonsoo Kime81ce852013-04-29 15:07:32 -07002707 struct vmap_area *va;
2708 struct vm_struct *vm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 char *vaddr, *buf_start = buf;
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002710 unsigned long buflen = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 unsigned long n;
2712
2713 /* Don't allow overflow */
2714 if ((unsigned long) addr + count < count)
2715 count = -(unsigned long) addr;
2716
Joonsoo Kime81ce852013-04-29 15:07:32 -07002717 spin_lock(&vmap_area_lock);
2718 list_for_each_entry(va, &vmap_area_list, list) {
2719 if (!count)
2720 break;
2721
2722 if (!(va->flags & VM_VM_AREA))
2723 continue;
2724
2725 vm = va->vm;
2726 vaddr = (char *) vm->addr;
Wanpeng Li762216a2013-09-11 14:22:42 -07002727 if (addr >= vaddr + get_vm_area_size(vm))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 continue;
2729 while (addr < vaddr) {
2730 if (count == 0)
2731 goto finished;
2732 *buf = '\0';
2733 buf++;
2734 addr++;
2735 count--;
2736 }
Wanpeng Li762216a2013-09-11 14:22:42 -07002737 n = vaddr + get_vm_area_size(vm) - addr;
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002738 if (n > count)
2739 n = count;
Joonsoo Kime81ce852013-04-29 15:07:32 -07002740 if (!(vm->flags & VM_IOREMAP))
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002741 aligned_vread(buf, addr, n);
2742 else /* IOREMAP area is treated as memory hole */
2743 memset(buf, 0, n);
2744 buf += n;
2745 addr += n;
2746 count -= n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 }
2748finished:
Joonsoo Kime81ce852013-04-29 15:07:32 -07002749 spin_unlock(&vmap_area_lock);
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002750
2751 if (buf == buf_start)
2752 return 0;
2753 /* zero-fill memory holes */
2754 if (buf != buf_start + buflen)
2755 memset(buf, 0, buflen - (buf - buf_start));
2756
2757 return buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758}
2759
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002760/**
2761 * vwrite() - write vmalloc area in a safe way.
2762 * @buf: buffer for source data
2763 * @addr: vm address.
2764 * @count: number of bytes to be read.
2765 *
2766 * Returns # of bytes which addr and buf should be incresed.
2767 * (same number to @count).
2768 * If [addr...addr+count) doesn't includes any intersect with valid
2769 * vmalloc area, returns 0.
2770 *
2771 * This function checks that addr is a valid vmalloc'ed area, and
2772 * copy data from a buffer to the given addr. If specified range of
2773 * [addr...addr+count) includes some valid address, data is copied from
2774 * proper area of @buf. If there are memory holes, no copy to hole.
2775 * IOREMAP area is treated as memory hole and no copy is done.
2776 *
2777 * If [addr...addr+count) doesn't includes any intersects with alive
Cong Wanga8e52022012-06-23 11:30:16 +08002778 * vm_struct area, returns 0. @buf should be kernel's buffer.
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002779 *
2780 * Note: In usual ops, vwrite() is never necessary because the caller
2781 * should know vmalloc() area is valid and can use memcpy().
2782 * This is for routines which have to access vmalloc area without
2783 * any informaion, as /dev/kmem.
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002784 */
2785
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786long vwrite(char *buf, char *addr, unsigned long count)
2787{
Joonsoo Kime81ce852013-04-29 15:07:32 -07002788 struct vmap_area *va;
2789 struct vm_struct *vm;
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002790 char *vaddr;
2791 unsigned long n, buflen;
2792 int copied = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793
2794 /* Don't allow overflow */
2795 if ((unsigned long) addr + count < count)
2796 count = -(unsigned long) addr;
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002797 buflen = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798
Joonsoo Kime81ce852013-04-29 15:07:32 -07002799 spin_lock(&vmap_area_lock);
2800 list_for_each_entry(va, &vmap_area_list, list) {
2801 if (!count)
2802 break;
2803
2804 if (!(va->flags & VM_VM_AREA))
2805 continue;
2806
2807 vm = va->vm;
2808 vaddr = (char *) vm->addr;
Wanpeng Li762216a2013-09-11 14:22:42 -07002809 if (addr >= vaddr + get_vm_area_size(vm))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 continue;
2811 while (addr < vaddr) {
2812 if (count == 0)
2813 goto finished;
2814 buf++;
2815 addr++;
2816 count--;
2817 }
Wanpeng Li762216a2013-09-11 14:22:42 -07002818 n = vaddr + get_vm_area_size(vm) - addr;
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002819 if (n > count)
2820 n = count;
Joonsoo Kime81ce852013-04-29 15:07:32 -07002821 if (!(vm->flags & VM_IOREMAP)) {
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002822 aligned_vwrite(buf, addr, n);
2823 copied++;
2824 }
2825 buf += n;
2826 addr += n;
2827 count -= n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 }
2829finished:
Joonsoo Kime81ce852013-04-29 15:07:32 -07002830 spin_unlock(&vmap_area_lock);
KAMEZAWA Hiroyukid0107eb2009-09-21 17:02:34 -07002831 if (!copied)
2832 return 0;
2833 return buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834}
Nick Piggin83342312006-06-23 02:03:20 -07002835
2836/**
HATAYAMA Daisukee69e9d4a2013-07-03 15:02:18 -07002837 * remap_vmalloc_range_partial - map vmalloc pages to userspace
2838 * @vma: vma to cover
2839 * @uaddr: target user address to start at
2840 * @kaddr: virtual address of vmalloc kernel memory
2841 * @size: size of map area
2842 *
2843 * Returns: 0 for success, -Exxx on failure
2844 *
2845 * This function checks that @kaddr is a valid vmalloc'ed area,
2846 * and that it is big enough to cover the range starting at
2847 * @uaddr in @vma. Will return failure if that criteria isn't
2848 * met.
2849 *
2850 * Similar to remap_pfn_range() (see mm/memory.c)
2851 */
2852int remap_vmalloc_range_partial(struct vm_area_struct *vma, unsigned long uaddr,
2853 void *kaddr, unsigned long size)
2854{
2855 struct vm_struct *area;
2856
2857 size = PAGE_ALIGN(size);
2858
2859 if (!PAGE_ALIGNED(uaddr) || !PAGE_ALIGNED(kaddr))
2860 return -EINVAL;
2861
2862 area = find_vm_area(kaddr);
2863 if (!area)
2864 return -EINVAL;
2865
2866 if (!(area->flags & VM_USERMAP))
2867 return -EINVAL;
2868
Roman Penyaevc1ddc7b2019-03-05 15:43:20 -08002869 if (kaddr + size > area->addr + get_vm_area_size(area))
HATAYAMA Daisukee69e9d4a2013-07-03 15:02:18 -07002870 return -EINVAL;
2871
2872 do {
2873 struct page *page = vmalloc_to_page(kaddr);
2874 int ret;
2875
2876 ret = vm_insert_page(vma, uaddr, page);
2877 if (ret)
2878 return ret;
2879
2880 uaddr += PAGE_SIZE;
2881 kaddr += PAGE_SIZE;
2882 size -= PAGE_SIZE;
2883 } while (size > 0);
2884
2885 vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
2886
2887 return 0;
2888}
2889EXPORT_SYMBOL(remap_vmalloc_range_partial);
2890
2891/**
Nick Piggin83342312006-06-23 02:03:20 -07002892 * remap_vmalloc_range - map vmalloc pages to userspace
Nick Piggin83342312006-06-23 02:03:20 -07002893 * @vma: vma to cover (map full range of vma)
2894 * @addr: vmalloc memory
2895 * @pgoff: number of pages into addr before first page to map
Randy Dunlap76824862008-03-19 17:00:40 -07002896 *
2897 * Returns: 0 for success, -Exxx on failure
Nick Piggin83342312006-06-23 02:03:20 -07002898 *
2899 * This function checks that addr is a valid vmalloc'ed area, and
2900 * that it is big enough to cover the vma. Will return failure if
2901 * that criteria isn't met.
2902 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08002903 * Similar to remap_pfn_range() (see mm/memory.c)
Nick Piggin83342312006-06-23 02:03:20 -07002904 */
2905int remap_vmalloc_range(struct vm_area_struct *vma, void *addr,
2906 unsigned long pgoff)
2907{
HATAYAMA Daisukee69e9d4a2013-07-03 15:02:18 -07002908 return remap_vmalloc_range_partial(vma, vma->vm_start,
2909 addr + (pgoff << PAGE_SHIFT),
2910 vma->vm_end - vma->vm_start);
Nick Piggin83342312006-06-23 02:03:20 -07002911}
2912EXPORT_SYMBOL(remap_vmalloc_range);
2913
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -07002914/*
2915 * Implement a stub for vmalloc_sync_all() if the architecture chose not to
2916 * have one.
Joerg Roedel46b306f2019-07-19 20:46:52 +02002917 *
2918 * The purpose of this function is to make sure the vmalloc area
2919 * mappings are identical in all page-tables in the system.
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -07002920 */
Gideon Israel Dsouza3b321232014-04-07 15:37:26 -07002921void __weak vmalloc_sync_all(void)
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -07002922{
2923}
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07002924
2925
Martin Schwidefsky2f569af2008-02-08 04:22:04 -08002926static int f(pte_t *pte, pgtable_t table, unsigned long addr, void *data)
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07002927{
David Vrabelcd129092011-09-29 16:53:32 +01002928 pte_t ***p = data;
2929
2930 if (p) {
2931 *(*p) = pte;
2932 (*p)++;
2933 }
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07002934 return 0;
2935}
2936
2937/**
2938 * alloc_vm_area - allocate a range of kernel address space
2939 * @size: size of the area
David Vrabelcd129092011-09-29 16:53:32 +01002940 * @ptes: returns the PTEs for the address space
Randy Dunlap76824862008-03-19 17:00:40 -07002941 *
2942 * Returns: NULL on failure, vm_struct on success
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07002943 *
2944 * This function reserves a range of kernel address space, and
2945 * allocates pagetables to map that range. No actual mappings
David Vrabelcd129092011-09-29 16:53:32 +01002946 * are created.
2947 *
2948 * If @ptes is non-NULL, pointers to the PTEs (in init_mm)
2949 * allocated for the VM area are returned.
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07002950 */
David Vrabelcd129092011-09-29 16:53:32 +01002951struct vm_struct *alloc_vm_area(size_t size, pte_t **ptes)
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07002952{
2953 struct vm_struct *area;
2954
Christoph Lameter23016962008-04-28 02:12:42 -07002955 area = get_vm_area_caller(size, VM_IOREMAP,
2956 __builtin_return_address(0));
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07002957 if (area == NULL)
2958 return NULL;
2959
2960 /*
2961 * This ensures that page tables are constructed for this region
2962 * of kernel virtual address space and mapped into init_mm.
2963 */
2964 if (apply_to_page_range(&init_mm, (unsigned long)area->addr,
David Vrabelcd129092011-09-29 16:53:32 +01002965 size, f, ptes ? &ptes : NULL)) {
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07002966 free_vm_area(area);
2967 return NULL;
2968 }
2969
Jeremy Fitzhardinge5f4352f2007-07-17 18:37:04 -07002970 return area;
2971}
2972EXPORT_SYMBOL_GPL(alloc_vm_area);
2973
2974void free_vm_area(struct vm_struct *area)
2975{
2976 struct vm_struct *ret;
2977 ret = remove_vm_area(area->addr);
2978 BUG_ON(ret != area);
2979 kfree(area);
2980}
2981EXPORT_SYMBOL_GPL(free_vm_area);
Christoph Lametera10aa572008-04-28 02:12:40 -07002982
Tejun Heo4f8b02b2010-09-03 18:22:47 +02002983#ifdef CONFIG_SMP
Tejun Heoca23e402009-08-14 15:00:52 +09002984static struct vmap_area *node_to_va(struct rb_node *n)
2985{
Geliang Tang4583e772017-02-22 15:41:54 -08002986 return rb_entry_safe(n, struct vmap_area, rb_node);
Tejun Heoca23e402009-08-14 15:00:52 +09002987}
2988
2989/**
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07002990 * pvm_find_va_enclose_addr - find the vmap_area @addr belongs to
2991 * @addr: target address
Tejun Heoca23e402009-08-14 15:00:52 +09002992 *
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07002993 * Returns: vmap_area if it is found. If there is no such area
2994 * the first highest(reverse order) vmap_area is returned
2995 * i.e. va->va_start < addr && va->va_end < addr or NULL
2996 * if there are no any areas before @addr.
Tejun Heoca23e402009-08-14 15:00:52 +09002997 */
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07002998static struct vmap_area *
2999pvm_find_va_enclose_addr(unsigned long addr)
Tejun Heoca23e402009-08-14 15:00:52 +09003000{
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07003001 struct vmap_area *va, *tmp;
3002 struct rb_node *n;
3003
3004 n = free_vmap_area_root.rb_node;
3005 va = NULL;
Tejun Heoca23e402009-08-14 15:00:52 +09003006
3007 while (n) {
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07003008 tmp = rb_entry(n, struct vmap_area, rb_node);
3009 if (tmp->va_start <= addr) {
3010 va = tmp;
3011 if (tmp->va_end >= addr)
3012 break;
3013
Tejun Heoca23e402009-08-14 15:00:52 +09003014 n = n->rb_right;
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07003015 } else {
3016 n = n->rb_left;
3017 }
Tejun Heoca23e402009-08-14 15:00:52 +09003018 }
3019
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07003020 return va;
Tejun Heoca23e402009-08-14 15:00:52 +09003021}
3022
3023/**
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07003024 * pvm_determine_end_from_reverse - find the highest aligned address
3025 * of free block below VMALLOC_END
3026 * @va:
3027 * in - the VA we start the search(reverse order);
3028 * out - the VA with the highest aligned end address.
Tejun Heoca23e402009-08-14 15:00:52 +09003029 *
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07003030 * Returns: determined end address within vmap_area
Tejun Heoca23e402009-08-14 15:00:52 +09003031 */
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07003032static unsigned long
3033pvm_determine_end_from_reverse(struct vmap_area **va, unsigned long align)
Tejun Heoca23e402009-08-14 15:00:52 +09003034{
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07003035 unsigned long vmalloc_end = VMALLOC_END & ~(align - 1);
Tejun Heoca23e402009-08-14 15:00:52 +09003036 unsigned long addr;
3037
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07003038 if (likely(*va)) {
3039 list_for_each_entry_from_reverse((*va),
3040 &free_vmap_area_list, list) {
3041 addr = min((*va)->va_end & ~(align - 1), vmalloc_end);
3042 if ((*va)->va_start < addr)
3043 return addr;
3044 }
Tejun Heoca23e402009-08-14 15:00:52 +09003045 }
3046
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07003047 return 0;
Tejun Heoca23e402009-08-14 15:00:52 +09003048}
3049
3050/**
3051 * pcpu_get_vm_areas - allocate vmalloc areas for percpu allocator
3052 * @offsets: array containing offset of each area
3053 * @sizes: array containing size of each area
3054 * @nr_vms: the number of areas to allocate
3055 * @align: alignment, all entries in @offsets and @sizes must be aligned to this
Tejun Heoca23e402009-08-14 15:00:52 +09003056 *
3057 * Returns: kmalloc'd vm_struct pointer array pointing to allocated
3058 * vm_structs on success, %NULL on failure
3059 *
3060 * Percpu allocator wants to use congruent vm areas so that it can
3061 * maintain the offsets among percpu areas. This function allocates
David Rientjesec3f64f2011-01-13 15:46:01 -08003062 * congruent vmalloc areas for it with GFP_KERNEL. These areas tend to
3063 * be scattered pretty far, distance between two areas easily going up
3064 * to gigabytes. To avoid interacting with regular vmallocs, these
3065 * areas are allocated from top.
Tejun Heoca23e402009-08-14 15:00:52 +09003066 *
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07003067 * Despite its complicated look, this allocator is rather simple. It
3068 * does everything top-down and scans free blocks from the end looking
3069 * for matching base. While scanning, if any of the areas do not fit the
3070 * base address is pulled down to fit the area. Scanning is repeated till
3071 * all the areas fit and then all necessary data structures are inserted
3072 * and the result is returned.
Tejun Heoca23e402009-08-14 15:00:52 +09003073 */
3074struct vm_struct **pcpu_get_vm_areas(const unsigned long *offsets,
3075 const size_t *sizes, int nr_vms,
David Rientjesec3f64f2011-01-13 15:46:01 -08003076 size_t align)
Tejun Heoca23e402009-08-14 15:00:52 +09003077{
3078 const unsigned long vmalloc_start = ALIGN(VMALLOC_START, align);
3079 const unsigned long vmalloc_end = VMALLOC_END & ~(align - 1);
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07003080 struct vmap_area **vas, *va;
Tejun Heoca23e402009-08-14 15:00:52 +09003081 struct vm_struct **vms;
3082 int area, area2, last_area, term_area;
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07003083 unsigned long base, start, size, end, last_end;
Tejun Heoca23e402009-08-14 15:00:52 +09003084 bool purged = false;
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07003085 enum fit_type type;
Tejun Heoca23e402009-08-14 15:00:52 +09003086
Tejun Heoca23e402009-08-14 15:00:52 +09003087 /* verify parameters and allocate data structures */
Alexander Kuleshov891c49a2015-11-05 18:46:51 -08003088 BUG_ON(offset_in_page(align) || !is_power_of_2(align));
Tejun Heoca23e402009-08-14 15:00:52 +09003089 for (last_area = 0, area = 0; area < nr_vms; area++) {
3090 start = offsets[area];
3091 end = start + sizes[area];
3092
3093 /* is everything aligned properly? */
3094 BUG_ON(!IS_ALIGNED(offsets[area], align));
3095 BUG_ON(!IS_ALIGNED(sizes[area], align));
3096
3097 /* detect the area with the highest address */
3098 if (start > offsets[last_area])
3099 last_area = area;
3100
Wei Yangc568da22017-09-06 16:24:09 -07003101 for (area2 = area + 1; area2 < nr_vms; area2++) {
Tejun Heoca23e402009-08-14 15:00:52 +09003102 unsigned long start2 = offsets[area2];
3103 unsigned long end2 = start2 + sizes[area2];
3104
Wei Yangc568da22017-09-06 16:24:09 -07003105 BUG_ON(start2 < end && start < end2);
Tejun Heoca23e402009-08-14 15:00:52 +09003106 }
3107 }
3108 last_end = offsets[last_area] + sizes[last_area];
3109
3110 if (vmalloc_end - vmalloc_start < last_end) {
3111 WARN_ON(true);
3112 return NULL;
3113 }
3114
Thomas Meyer4d67d862012-05-29 15:06:21 -07003115 vms = kcalloc(nr_vms, sizeof(vms[0]), GFP_KERNEL);
3116 vas = kcalloc(nr_vms, sizeof(vas[0]), GFP_KERNEL);
Tejun Heoca23e402009-08-14 15:00:52 +09003117 if (!vas || !vms)
Kautuk Consulf1db7af2012-01-12 17:20:08 -08003118 goto err_free2;
Tejun Heoca23e402009-08-14 15:00:52 +09003119
3120 for (area = 0; area < nr_vms; area++) {
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07003121 vas[area] = kmem_cache_zalloc(vmap_area_cachep, GFP_KERNEL);
David Rientjesec3f64f2011-01-13 15:46:01 -08003122 vms[area] = kzalloc(sizeof(struct vm_struct), GFP_KERNEL);
Tejun Heoca23e402009-08-14 15:00:52 +09003123 if (!vas[area] || !vms[area])
3124 goto err_free;
3125 }
3126retry:
3127 spin_lock(&vmap_area_lock);
3128
3129 /* start scanning - we scan from the top, begin with the last area */
3130 area = term_area = last_area;
3131 start = offsets[area];
3132 end = start + sizes[area];
3133
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07003134 va = pvm_find_va_enclose_addr(vmalloc_end);
3135 base = pvm_determine_end_from_reverse(&va, align) - end;
Tejun Heoca23e402009-08-14 15:00:52 +09003136
3137 while (true) {
Tejun Heoca23e402009-08-14 15:00:52 +09003138 /*
3139 * base might have underflowed, add last_end before
3140 * comparing.
3141 */
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07003142 if (base + last_end < vmalloc_start + last_end)
3143 goto overflow;
Tejun Heoca23e402009-08-14 15:00:52 +09003144
3145 /*
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07003146 * Fitting base has not been found.
Tejun Heoca23e402009-08-14 15:00:52 +09003147 */
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07003148 if (va == NULL)
3149 goto overflow;
Tejun Heoca23e402009-08-14 15:00:52 +09003150
3151 /*
Kuppuswamy Sathyanarayananf36154e2019-08-13 15:37:31 -07003152 * If required width exeeds current VA block, move
3153 * base downwards and then recheck.
3154 */
3155 if (base + end > va->va_end) {
3156 base = pvm_determine_end_from_reverse(&va, align) - end;
3157 term_area = area;
3158 continue;
3159 }
3160
3161 /*
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07003162 * If this VA does not fit, move base downwards and recheck.
Tejun Heoca23e402009-08-14 15:00:52 +09003163 */
Kuppuswamy Sathyanarayananf36154e2019-08-13 15:37:31 -07003164 if (base + start < va->va_start) {
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07003165 va = node_to_va(rb_prev(&va->rb_node));
3166 base = pvm_determine_end_from_reverse(&va, align) - end;
Tejun Heoca23e402009-08-14 15:00:52 +09003167 term_area = area;
3168 continue;
3169 }
3170
3171 /*
3172 * This area fits, move on to the previous one. If
3173 * the previous one is the terminal one, we're done.
3174 */
3175 area = (area + nr_vms - 1) % nr_vms;
3176 if (area == term_area)
3177 break;
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07003178
Tejun Heoca23e402009-08-14 15:00:52 +09003179 start = offsets[area];
3180 end = start + sizes[area];
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07003181 va = pvm_find_va_enclose_addr(base + end);
Tejun Heoca23e402009-08-14 15:00:52 +09003182 }
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07003183
Tejun Heoca23e402009-08-14 15:00:52 +09003184 /* we've found a fitting base, insert all va's */
3185 for (area = 0; area < nr_vms; area++) {
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07003186 int ret;
Tejun Heoca23e402009-08-14 15:00:52 +09003187
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07003188 start = base + offsets[area];
3189 size = sizes[area];
3190
3191 va = pvm_find_va_enclose_addr(start);
3192 if (WARN_ON_ONCE(va == NULL))
3193 /* It is a BUG(), but trigger recovery instead. */
3194 goto recovery;
3195
3196 type = classify_va_fit_type(va, start, size);
3197 if (WARN_ON_ONCE(type == NOTHING_FIT))
3198 /* It is a BUG(), but trigger recovery instead. */
3199 goto recovery;
3200
3201 ret = adjust_va_to_fit_type(va, start, size, type);
3202 if (unlikely(ret))
3203 goto recovery;
3204
3205 /* Allocated area. */
3206 va = vas[area];
3207 va->va_start = start;
3208 va->va_end = start + size;
3209
3210 insert_vmap_area(va, &vmap_area_root, &vmap_area_list);
Tejun Heoca23e402009-08-14 15:00:52 +09003211 }
3212
Tejun Heoca23e402009-08-14 15:00:52 +09003213 spin_unlock(&vmap_area_lock);
3214
3215 /* insert all vm's */
3216 for (area = 0; area < nr_vms; area++)
Zhang Yanfei3645cb42013-07-03 15:04:48 -07003217 setup_vmalloc_vm(vms[area], vas[area], VM_ALLOC,
3218 pcpu_get_vm_areas);
Tejun Heoca23e402009-08-14 15:00:52 +09003219
3220 kfree(vas);
3221 return vms;
3222
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07003223recovery:
3224 /* Remove previously inserted areas. */
3225 while (area--) {
3226 __free_vmap_area(vas[area]);
3227 vas[area] = NULL;
3228 }
3229
3230overflow:
3231 spin_unlock(&vmap_area_lock);
3232 if (!purged) {
3233 purge_vmap_area_lazy();
3234 purged = true;
3235
3236 /* Before "retry", check if we recover. */
3237 for (area = 0; area < nr_vms; area++) {
3238 if (vas[area])
3239 continue;
3240
3241 vas[area] = kmem_cache_zalloc(
3242 vmap_area_cachep, GFP_KERNEL);
3243 if (!vas[area])
3244 goto err_free;
3245 }
3246
3247 goto retry;
3248 }
3249
Tejun Heoca23e402009-08-14 15:00:52 +09003250err_free:
3251 for (area = 0; area < nr_vms; area++) {
Uladzislau Rezki (Sony)674e1202019-05-17 14:31:31 -07003252 if (vas[area])
3253 kmem_cache_free(vmap_area_cachep, vas[area]);
3254
Kautuk Consulf1db7af2012-01-12 17:20:08 -08003255 kfree(vms[area]);
Tejun Heoca23e402009-08-14 15:00:52 +09003256 }
Kautuk Consulf1db7af2012-01-12 17:20:08 -08003257err_free2:
Tejun Heoca23e402009-08-14 15:00:52 +09003258 kfree(vas);
3259 kfree(vms);
3260 return NULL;
3261}
3262
3263/**
3264 * pcpu_free_vm_areas - free vmalloc areas for percpu allocator
3265 * @vms: vm_struct pointer array returned by pcpu_get_vm_areas()
3266 * @nr_vms: the number of allocated areas
3267 *
3268 * Free vm_structs and the array allocated by pcpu_get_vm_areas().
3269 */
3270void pcpu_free_vm_areas(struct vm_struct **vms, int nr_vms)
3271{
3272 int i;
3273
3274 for (i = 0; i < nr_vms; i++)
3275 free_vm_area(vms[i]);
3276 kfree(vms);
3277}
Tejun Heo4f8b02b2010-09-03 18:22:47 +02003278#endif /* CONFIG_SMP */
Christoph Lametera10aa572008-04-28 02:12:40 -07003279
3280#ifdef CONFIG_PROC_FS
3281static void *s_start(struct seq_file *m, loff_t *pos)
Joonsoo Kimd4033af2013-04-29 15:07:35 -07003282 __acquires(&vmap_area_lock)
Christoph Lametera10aa572008-04-28 02:12:40 -07003283{
Joonsoo Kimd4033af2013-04-29 15:07:35 -07003284 spin_lock(&vmap_area_lock);
zijun_hu3f500062016-12-12 16:42:17 -08003285 return seq_list_start(&vmap_area_list, *pos);
Christoph Lametera10aa572008-04-28 02:12:40 -07003286}
3287
3288static void *s_next(struct seq_file *m, void *p, loff_t *pos)
3289{
zijun_hu3f500062016-12-12 16:42:17 -08003290 return seq_list_next(p, &vmap_area_list, pos);
Christoph Lametera10aa572008-04-28 02:12:40 -07003291}
3292
3293static void s_stop(struct seq_file *m, void *p)
Joonsoo Kimd4033af2013-04-29 15:07:35 -07003294 __releases(&vmap_area_lock)
Christoph Lametera10aa572008-04-28 02:12:40 -07003295{
Joonsoo Kimd4033af2013-04-29 15:07:35 -07003296 spin_unlock(&vmap_area_lock);
Christoph Lametera10aa572008-04-28 02:12:40 -07003297}
3298
Eric Dumazeta47a1262008-07-23 21:27:38 -07003299static void show_numa_info(struct seq_file *m, struct vm_struct *v)
3300{
Kirill A. Shutemove5adfff2012-12-11 16:00:29 -08003301 if (IS_ENABLED(CONFIG_NUMA)) {
Eric Dumazeta47a1262008-07-23 21:27:38 -07003302 unsigned int nr, *counters = m->private;
3303
3304 if (!counters)
3305 return;
3306
Wanpeng Liaf123462013-11-12 15:07:32 -08003307 if (v->flags & VM_UNINITIALIZED)
3308 return;
Dmitry Vyukov7e5b5282014-12-12 16:56:30 -08003309 /* Pair with smp_wmb() in clear_vm_uninitialized_flag() */
3310 smp_rmb();
Wanpeng Liaf123462013-11-12 15:07:32 -08003311
Eric Dumazeta47a1262008-07-23 21:27:38 -07003312 memset(counters, 0, nr_node_ids * sizeof(unsigned int));
3313
3314 for (nr = 0; nr < v->nr_pages; nr++)
3315 counters[page_to_nid(v->pages[nr])]++;
3316
3317 for_each_node_state(nr, N_HIGH_MEMORY)
3318 if (counters[nr])
3319 seq_printf(m, " N%u=%u", nr, counters[nr]);
3320 }
3321}
3322
Christoph Lametera10aa572008-04-28 02:12:40 -07003323static int s_show(struct seq_file *m, void *p)
3324{
zijun_hu3f500062016-12-12 16:42:17 -08003325 struct vmap_area *va;
Joonsoo Kimd4033af2013-04-29 15:07:35 -07003326 struct vm_struct *v;
3327
zijun_hu3f500062016-12-12 16:42:17 -08003328 va = list_entry(p, struct vmap_area, list);
3329
Wanpeng Lic2ce8c12013-11-12 15:07:31 -08003330 /*
3331 * s_show can encounter race with remove_vm_area, !VM_VM_AREA on
3332 * behalf of vmap area is being tear down or vm_map_ram allocation.
3333 */
Yisheng Xie78c72742017-07-10 15:48:09 -07003334 if (!(va->flags & VM_VM_AREA)) {
3335 seq_printf(m, "0x%pK-0x%pK %7ld %s\n",
3336 (void *)va->va_start, (void *)va->va_end,
3337 va->va_end - va->va_start,
3338 va->flags & VM_LAZY_FREE ? "unpurged vm_area" : "vm_map_ram");
3339
Joonsoo Kimd4033af2013-04-29 15:07:35 -07003340 return 0;
Yisheng Xie78c72742017-07-10 15:48:09 -07003341 }
Joonsoo Kimd4033af2013-04-29 15:07:35 -07003342
Joonsoo Kimd4033af2013-04-29 15:07:35 -07003343 v = va->vm;
Christoph Lametera10aa572008-04-28 02:12:40 -07003344
Kees Cook45ec1692012-10-08 16:34:09 -07003345 seq_printf(m, "0x%pK-0x%pK %7ld",
Christoph Lametera10aa572008-04-28 02:12:40 -07003346 v->addr, v->addr + v->size, v->size);
3347
Joe Perches62c70bc2011-01-13 15:45:52 -08003348 if (v->caller)
3349 seq_printf(m, " %pS", v->caller);
Christoph Lameter23016962008-04-28 02:12:42 -07003350
Christoph Lametera10aa572008-04-28 02:12:40 -07003351 if (v->nr_pages)
3352 seq_printf(m, " pages=%d", v->nr_pages);
3353
3354 if (v->phys_addr)
Miles Chen199eaa02017-02-24 14:59:51 -08003355 seq_printf(m, " phys=%pa", &v->phys_addr);
Christoph Lametera10aa572008-04-28 02:12:40 -07003356
3357 if (v->flags & VM_IOREMAP)
Fabian Frederickf4527c92014-06-04 16:08:09 -07003358 seq_puts(m, " ioremap");
Christoph Lametera10aa572008-04-28 02:12:40 -07003359
3360 if (v->flags & VM_ALLOC)
Fabian Frederickf4527c92014-06-04 16:08:09 -07003361 seq_puts(m, " vmalloc");
Christoph Lametera10aa572008-04-28 02:12:40 -07003362
3363 if (v->flags & VM_MAP)
Fabian Frederickf4527c92014-06-04 16:08:09 -07003364 seq_puts(m, " vmap");
Christoph Lametera10aa572008-04-28 02:12:40 -07003365
3366 if (v->flags & VM_USERMAP)
Fabian Frederickf4527c92014-06-04 16:08:09 -07003367 seq_puts(m, " user");
Christoph Lametera10aa572008-04-28 02:12:40 -07003368
David Rientjes244d63e2016-01-14 15:19:35 -08003369 if (is_vmalloc_addr(v->pages))
Fabian Frederickf4527c92014-06-04 16:08:09 -07003370 seq_puts(m, " vpages");
Christoph Lametera10aa572008-04-28 02:12:40 -07003371
Eric Dumazeta47a1262008-07-23 21:27:38 -07003372 show_numa_info(m, v);
Christoph Lametera10aa572008-04-28 02:12:40 -07003373 seq_putc(m, '\n');
3374 return 0;
3375}
3376
Alexey Dobriyan5f6a6a92008-10-06 03:50:47 +04003377static const struct seq_operations vmalloc_op = {
Christoph Lametera10aa572008-04-28 02:12:40 -07003378 .start = s_start,
3379 .next = s_next,
3380 .stop = s_stop,
3381 .show = s_show,
3382};
Alexey Dobriyan5f6a6a92008-10-06 03:50:47 +04003383
Alexey Dobriyan5f6a6a92008-10-06 03:50:47 +04003384static int __init proc_vmalloc_init(void)
3385{
Christoph Hellwigfddda2b2018-04-13 19:44:18 +02003386 if (IS_ENABLED(CONFIG_NUMA))
Joe Perches0825a6f2018-06-14 15:27:58 -07003387 proc_create_seq_private("vmallocinfo", 0400, NULL,
Christoph Hellwig44414d82018-04-24 17:05:17 +02003388 &vmalloc_op,
3389 nr_node_ids * sizeof(unsigned int), NULL);
Christoph Hellwigfddda2b2018-04-13 19:44:18 +02003390 else
Joe Perches0825a6f2018-06-14 15:27:58 -07003391 proc_create_seq("vmallocinfo", 0400, NULL, &vmalloc_op);
Alexey Dobriyan5f6a6a92008-10-06 03:50:47 +04003392 return 0;
3393}
3394module_init(proc_vmalloc_init);
Joonsoo Kimdb3808c2013-04-29 15:07:28 -07003395
Christoph Lametera10aa572008-04-28 02:12:40 -07003396#endif
3397