[PATCH] slab: verify pointers before free
[linux-2.6-block.git] / mm / sparse.c
CommitLineData
d41dee36
AW
1/*
2 * sparse memory mappings.
3 */
4#include <linux/config.h>
5#include <linux/mm.h>
6#include <linux/mmzone.h>
7#include <linux/bootmem.h>
0b0acbec 8#include <linux/highmem.h>
d41dee36 9#include <linux/module.h>
28ae55c9 10#include <linux/spinlock.h>
0b0acbec 11#include <linux/vmalloc.h>
d41dee36
AW
12#include <asm/dma.h>
13
14/*
15 * Permanent SPARSEMEM data:
16 *
17 * 1) mem_section - memory sections, mem_map's for valid memory
18 */
3e347261 19#ifdef CONFIG_SPARSEMEM_EXTREME
802f192e 20struct mem_section *mem_section[NR_SECTION_ROOTS]
22fc6ecc 21 ____cacheline_internodealigned_in_smp;
3e347261
BP
22#else
23struct mem_section mem_section[NR_SECTION_ROOTS][SECTIONS_PER_ROOT]
22fc6ecc 24 ____cacheline_internodealigned_in_smp;
3e347261
BP
25#endif
26EXPORT_SYMBOL(mem_section);
27
3e347261 28#ifdef CONFIG_SPARSEMEM_EXTREME
28ae55c9
DH
29static struct mem_section *sparse_index_alloc(int nid)
30{
31 struct mem_section *section = NULL;
32 unsigned long array_size = SECTIONS_PER_ROOT *
33 sizeof(struct mem_section);
34
39d24e64 35 if (slab_is_available())
46a66eec
MK
36 section = kmalloc_node(array_size, GFP_KERNEL, nid);
37 else
38 section = alloc_bootmem_node(NODE_DATA(nid), array_size);
28ae55c9
DH
39
40 if (section)
41 memset(section, 0, array_size);
42
43 return section;
3e347261 44}
802f192e 45
28ae55c9 46static int sparse_index_init(unsigned long section_nr, int nid)
802f192e 47{
28ae55c9
DH
48 static spinlock_t index_init_lock = SPIN_LOCK_UNLOCKED;
49 unsigned long root = SECTION_NR_TO_ROOT(section_nr);
50 struct mem_section *section;
51 int ret = 0;
802f192e
BP
52
53 if (mem_section[root])
28ae55c9 54 return -EEXIST;
3e347261 55
28ae55c9
DH
56 section = sparse_index_alloc(nid);
57 /*
58 * This lock keeps two different sections from
59 * reallocating for the same index
60 */
61 spin_lock(&index_init_lock);
3e347261 62
28ae55c9
DH
63 if (mem_section[root]) {
64 ret = -EEXIST;
65 goto out;
66 }
67
68 mem_section[root] = section;
69out:
70 spin_unlock(&index_init_lock);
71 return ret;
72}
73#else /* !SPARSEMEM_EXTREME */
74static inline int sparse_index_init(unsigned long section_nr, int nid)
75{
76 return 0;
802f192e 77}
28ae55c9
DH
78#endif
79
4ca644d9
DH
80/*
81 * Although written for the SPARSEMEM_EXTREME case, this happens
82 * to also work for the flat array case becase
83 * NR_SECTION_ROOTS==NR_MEM_SECTIONS.
84 */
85int __section_nr(struct mem_section* ms)
86{
87 unsigned long root_nr;
88 struct mem_section* root;
89
12783b00
MK
90 for (root_nr = 0; root_nr < NR_SECTION_ROOTS; root_nr++) {
91 root = __nr_to_section(root_nr * SECTIONS_PER_ROOT);
4ca644d9
DH
92 if (!root)
93 continue;
94
95 if ((ms >= root) && (ms < (root + SECTIONS_PER_ROOT)))
96 break;
97 }
98
99 return (root_nr * SECTIONS_PER_ROOT) + (ms - root);
100}
101
d41dee36
AW
102/* Record a memory area against a node. */
103void memory_present(int nid, unsigned long start, unsigned long end)
104{
105 unsigned long pfn;
106
107 start &= PAGE_SECTION_MASK;
108 for (pfn = start; pfn < end; pfn += PAGES_PER_SECTION) {
109 unsigned long section = pfn_to_section_nr(pfn);
802f192e
BP
110 struct mem_section *ms;
111
112 sparse_index_init(section, nid);
113
114 ms = __nr_to_section(section);
115 if (!ms->section_mem_map)
116 ms->section_mem_map = SECTION_MARKED_PRESENT;
d41dee36
AW
117 }
118}
119
120/*
121 * Only used by the i386 NUMA architecures, but relatively
122 * generic code.
123 */
124unsigned long __init node_memmap_size_bytes(int nid, unsigned long start_pfn,
125 unsigned long end_pfn)
126{
127 unsigned long pfn;
128 unsigned long nr_pages = 0;
129
130 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
131 if (nid != early_pfn_to_nid(pfn))
132 continue;
133
134 if (pfn_valid(pfn))
135 nr_pages += PAGES_PER_SECTION;
136 }
137
138 return nr_pages * sizeof(struct page);
139}
140
29751f69
AW
141/*
142 * Subtle, we encode the real pfn into the mem_map such that
143 * the identity pfn - section_mem_map will return the actual
144 * physical page frame number.
145 */
146static unsigned long sparse_encode_mem_map(struct page *mem_map, unsigned long pnum)
147{
148 return (unsigned long)(mem_map - (section_nr_to_pfn(pnum)));
149}
150
151/*
152 * We need this if we ever free the mem_maps. While not implemented yet,
153 * this function is included for parity with its sibling.
154 */
155static __attribute((unused))
156struct page *sparse_decode_mem_map(unsigned long coded_mem_map, unsigned long pnum)
157{
158 return ((struct page *)coded_mem_map) + section_nr_to_pfn(pnum);
159}
160
161static int sparse_init_one_section(struct mem_section *ms,
162 unsigned long pnum, struct page *mem_map)
163{
164 if (!valid_section(ms))
165 return -EINVAL;
166
167 ms->section_mem_map |= sparse_encode_mem_map(mem_map, pnum);
168
169 return 1;
170}
171
172static struct page *sparse_early_mem_map_alloc(unsigned long pnum)
173{
174 struct page *map;
175 int nid = early_pfn_to_nid(section_nr_to_pfn(pnum));
802f192e 176 struct mem_section *ms = __nr_to_section(pnum);
29751f69
AW
177
178 map = alloc_remap(nid, sizeof(struct page) * PAGES_PER_SECTION);
179 if (map)
180 return map;
181
182 map = alloc_bootmem_node(NODE_DATA(nid),
183 sizeof(struct page) * PAGES_PER_SECTION);
184 if (map)
185 return map;
186
187 printk(KERN_WARNING "%s: allocation failed\n", __FUNCTION__);
802f192e 188 ms->section_mem_map = 0;
29751f69
AW
189 return NULL;
190}
191
0b0acbec
DH
192static struct page *__kmalloc_section_memmap(unsigned long nr_pages)
193{
194 struct page *page, *ret;
195 unsigned long memmap_size = sizeof(struct page) * nr_pages;
196
197 page = alloc_pages(GFP_KERNEL, get_order(memmap_size));
198 if (page)
199 goto got_map_page;
200
201 ret = vmalloc(memmap_size);
202 if (ret)
203 goto got_map_ptr;
204
205 return NULL;
206got_map_page:
207 ret = (struct page *)pfn_to_kaddr(page_to_pfn(page));
208got_map_ptr:
209 memset(ret, 0, memmap_size);
210
211 return ret;
212}
213
214static int vaddr_in_vmalloc_area(void *addr)
215{
216 if (addr >= (void *)VMALLOC_START &&
217 addr < (void *)VMALLOC_END)
218 return 1;
219 return 0;
220}
221
222static void __kfree_section_memmap(struct page *memmap, unsigned long nr_pages)
223{
224 if (vaddr_in_vmalloc_area(memmap))
225 vfree(memmap);
226 else
227 free_pages((unsigned long)memmap,
228 get_order(sizeof(struct page) * nr_pages));
229}
230
d41dee36
AW
231/*
232 * Allocate the accumulated non-linear sections, allocate a mem_map
233 * for each and record the physical to section mapping.
234 */
235void sparse_init(void)
236{
237 unsigned long pnum;
238 struct page *map;
d41dee36
AW
239
240 for (pnum = 0; pnum < NR_MEM_SECTIONS; pnum++) {
29751f69 241 if (!valid_section_nr(pnum))
d41dee36
AW
242 continue;
243
29751f69 244 map = sparse_early_mem_map_alloc(pnum);
802f192e
BP
245 if (!map)
246 continue;
247 sparse_init_one_section(__nr_to_section(pnum), pnum, map);
d41dee36
AW
248 }
249}
29751f69
AW
250
251/*
252 * returns the number of sections whose mem_maps were properly
253 * set. If this is <=0, then that means that the passed-in
254 * map was not consumed and must be freed.
255 */
0b0acbec
DH
256int sparse_add_one_section(struct zone *zone, unsigned long start_pfn,
257 int nr_pages)
29751f69 258{
0b0acbec
DH
259 unsigned long section_nr = pfn_to_section_nr(start_pfn);
260 struct pglist_data *pgdat = zone->zone_pgdat;
261 struct mem_section *ms;
262 struct page *memmap;
263 unsigned long flags;
264 int ret;
29751f69 265
0b0acbec
DH
266 /*
267 * no locking for this, because it does its own
268 * plus, it does a kmalloc
269 */
270 sparse_index_init(section_nr, pgdat->node_id);
271 memmap = __kmalloc_section_memmap(nr_pages);
272
273 pgdat_resize_lock(pgdat, &flags);
29751f69 274
0b0acbec
DH
275 ms = __pfn_to_section(start_pfn);
276 if (ms->section_mem_map & SECTION_MARKED_PRESENT) {
277 ret = -EEXIST;
278 goto out;
279 }
29751f69
AW
280 ms->section_mem_map |= SECTION_MARKED_PRESENT;
281
0b0acbec
DH
282 ret = sparse_init_one_section(ms, section_nr, memmap);
283
0b0acbec
DH
284out:
285 pgdat_resize_unlock(pgdat, &flags);
46a66eec
MK
286 if (ret <= 0)
287 __kfree_section_memmap(memmap, nr_pages);
0b0acbec 288 return ret;
29751f69 289}