OSDN Git Service

power: supply: ltc2941-battery-gauge: fix use-after-free
[sagit-ice-cold/kernel_xiaomi_msm8998.git] / mm / page_ext.c
1 #include <linux/mm.h>
2 #include <linux/mmzone.h>
3 #include <linux/bootmem.h>
4 #include <linux/page_ext.h>
5 #include <linux/memory.h>
6 #include <linux/vmalloc.h>
7 #include <linux/kmemleak.h>
8 #include <linux/page_owner.h>
9 #include <linux/page_idle.h>
10
11 /*
12  * struct page extension
13  *
14  * This is the feature to manage memory for extended data per page.
15  *
16  * Until now, we must modify struct page itself to store extra data per page.
17  * This requires rebuilding the kernel and it is really time consuming process.
18  * And, sometimes, rebuild is impossible due to third party module dependency.
19  * At last, enlarging struct page could cause un-wanted system behaviour change.
20  *
21  * This feature is intended to overcome above mentioned problems. This feature
22  * allocates memory for extended data per page in certain place rather than
23  * the struct page itself. This memory can be accessed by the accessor
24  * functions provided by this code. During the boot process, it checks whether
25  * allocation of huge chunk of memory is needed or not. If not, it avoids
26  * allocating memory at all. With this advantage, we can include this feature
27  * into the kernel in default and can avoid rebuild and solve related problems.
28  *
29  * To help these things to work well, there are two callbacks for clients. One
30  * is the need callback which is mandatory if user wants to avoid useless
31  * memory allocation at boot-time. The other is optional, init callback, which
32  * is used to do proper initialization after memory is allocated.
33  *
34  * The need callback is used to decide whether extended memory allocation is
35  * needed or not. Sometimes users want to deactivate some features in this
36  * boot and extra memory would be unneccessary. In this case, to avoid
37  * allocating huge chunk of memory, each clients represent their need of
38  * extra memory through the need callback. If one of the need callbacks
39  * returns true, it means that someone needs extra memory so that
40  * page extension core should allocates memory for page extension. If
41  * none of need callbacks return true, memory isn't needed at all in this boot
42  * and page extension core can skip to allocate memory. As result,
43  * none of memory is wasted.
44  *
45  * The init callback is used to do proper initialization after page extension
46  * is completely initialized. In sparse memory system, extra memory is
47  * allocated some time later than memmap is allocated. In other words, lifetime
48  * of memory for page extension isn't same with memmap for struct page.
49  * Therefore, clients can't store extra data until page extension is
50  * initialized, even if pages are allocated and used freely. This could
51  * cause inadequate state of extra data per page, so, to prevent it, client
52  * can utilize this callback to initialize the state of it correctly.
53  */
54
55 static struct page_ext_operations *page_ext_ops[] = {
56         &debug_guardpage_ops,
57 #ifdef CONFIG_PAGE_POISONING
58         &page_poisoning_ops,
59 #endif
60 #ifdef CONFIG_PAGE_OWNER
61         &page_owner_ops,
62 #endif
63 #if defined(CONFIG_IDLE_PAGE_TRACKING) && !defined(CONFIG_64BIT)
64         &page_idle_ops,
65 #endif
66 };
67
68 static unsigned long total_usage;
69
70 static bool __init invoke_need_callbacks(void)
71 {
72         int i;
73         int entries = ARRAY_SIZE(page_ext_ops);
74
75         for (i = 0; i < entries; i++) {
76                 if (page_ext_ops[i]->need && page_ext_ops[i]->need())
77                         return true;
78         }
79
80         return false;
81 }
82
83 static void __init invoke_init_callbacks(void)
84 {
85         int i;
86         int entries = ARRAY_SIZE(page_ext_ops);
87
88         for (i = 0; i < entries; i++) {
89                 if (page_ext_ops[i]->init)
90                         page_ext_ops[i]->init();
91         }
92 }
93
94 #if !defined(CONFIG_SPARSEMEM)
95
96
97 void __meminit pgdat_page_ext_init(struct pglist_data *pgdat)
98 {
99         pgdat->node_page_ext = NULL;
100 }
101
102 struct page_ext *lookup_page_ext(struct page *page)
103 {
104         unsigned long pfn = page_to_pfn(page);
105         unsigned long offset;
106         struct page_ext *base;
107
108         base = NODE_DATA(page_to_nid(page))->node_page_ext;
109         /*
110          * The sanity checks the page allocator does upon freeing a
111          * page can reach here before the page_ext arrays are
112          * allocated when feeding a range of pages to the allocator
113          * for the first time during bootup or memory hotplug.
114          */
115         if (unlikely(!base))
116                 return NULL;
117         offset = pfn - round_down(node_start_pfn(page_to_nid(page)),
118                                         MAX_ORDER_NR_PAGES);
119         return base + offset;
120 }
121
122 static int __init alloc_node_page_ext(int nid)
123 {
124         struct page_ext *base;
125         unsigned long table_size;
126         unsigned long nr_pages;
127
128         nr_pages = NODE_DATA(nid)->node_spanned_pages;
129         if (!nr_pages)
130                 return 0;
131
132         /*
133          * Need extra space if node range is not aligned with
134          * MAX_ORDER_NR_PAGES. When page allocator's buddy algorithm
135          * checks buddy's status, range could be out of exact node range.
136          */
137         if (!IS_ALIGNED(node_start_pfn(nid), MAX_ORDER_NR_PAGES) ||
138                 !IS_ALIGNED(node_end_pfn(nid), MAX_ORDER_NR_PAGES))
139                 nr_pages += MAX_ORDER_NR_PAGES;
140
141         table_size = sizeof(struct page_ext) * nr_pages;
142
143         base = memblock_virt_alloc_try_nid_nopanic(
144                         table_size, PAGE_SIZE, __pa(MAX_DMA_ADDRESS),
145                         BOOTMEM_ALLOC_ACCESSIBLE, nid);
146         if (!base)
147                 return -ENOMEM;
148         NODE_DATA(nid)->node_page_ext = base;
149         total_usage += table_size;
150         return 0;
151 }
152
153 void __init page_ext_init_flatmem(void)
154 {
155
156         int nid, fail;
157
158         if (!invoke_need_callbacks())
159                 return;
160
161         for_each_online_node(nid)  {
162                 fail = alloc_node_page_ext(nid);
163                 if (fail)
164                         goto fail;
165         }
166         pr_info("allocated %ld bytes of page_ext\n", total_usage);
167         invoke_init_callbacks();
168         return;
169
170 fail:
171         pr_crit("allocation of page_ext failed.\n");
172         panic("Out of memory");
173 }
174
175 #else /* CONFIG_FLAT_NODE_MEM_MAP */
176
177 struct page_ext *lookup_page_ext(struct page *page)
178 {
179         unsigned long pfn = page_to_pfn(page);
180         struct mem_section *section = __pfn_to_section(pfn);
181         /*
182          * The sanity checks the page allocator does upon freeing a
183          * page can reach here before the page_ext arrays are
184          * allocated when feeding a range of pages to the allocator
185          * for the first time during bootup or memory hotplug.
186          */
187         if (!section->page_ext)
188                 return NULL;
189         return section->page_ext + pfn;
190 }
191
192 static void *__meminit alloc_page_ext(size_t size, int nid)
193 {
194         gfp_t flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN;
195         void *addr = NULL;
196
197         addr = alloc_pages_exact_nid(nid, size, flags);
198         if (addr) {
199                 kmemleak_alloc(addr, size, 1, flags);
200                 return addr;
201         }
202
203         if (node_state(nid, N_HIGH_MEMORY))
204                 addr = vzalloc_node(size, nid);
205         else
206                 addr = vzalloc(size);
207
208         return addr;
209 }
210
211 static int __meminit init_section_page_ext(unsigned long pfn, int nid)
212 {
213         struct mem_section *section;
214         struct page_ext *base;
215         unsigned long table_size;
216
217         section = __pfn_to_section(pfn);
218
219         if (section->page_ext)
220                 return 0;
221
222         table_size = sizeof(struct page_ext) * PAGES_PER_SECTION;
223         base = alloc_page_ext(table_size, nid);
224
225         /*
226          * The value stored in section->page_ext is (base - pfn)
227          * and it does not point to the memory block allocated above,
228          * causing kmemleak false positives.
229          */
230         kmemleak_not_leak(base);
231
232         if (!base) {
233                 pr_err("page ext allocation failure\n");
234                 return -ENOMEM;
235         }
236
237         /*
238          * The passed "pfn" may not be aligned to SECTION.  For the calculation
239          * we need to apply a mask.
240          */
241         pfn &= PAGE_SECTION_MASK;
242         section->page_ext = base - pfn;
243         total_usage += table_size;
244         return 0;
245 }
246 #ifdef CONFIG_MEMORY_HOTPLUG
247 static void free_page_ext(void *addr)
248 {
249         if (is_vmalloc_addr(addr)) {
250                 vfree(addr);
251         } else {
252                 struct page *page = virt_to_page(addr);
253                 size_t table_size;
254
255                 table_size = sizeof(struct page_ext) * PAGES_PER_SECTION;
256
257                 BUG_ON(PageReserved(page));
258                 kmemleak_free(addr);
259                 free_pages_exact(addr, table_size);
260         }
261 }
262
263 static void __free_page_ext(unsigned long pfn)
264 {
265         struct mem_section *ms;
266         struct page_ext *base;
267
268         ms = __pfn_to_section(pfn);
269         if (!ms || !ms->page_ext)
270                 return;
271         base = ms->page_ext + pfn;
272         free_page_ext(base);
273         ms->page_ext = NULL;
274 }
275
276 static int __meminit online_page_ext(unsigned long start_pfn,
277                                 unsigned long nr_pages,
278                                 int nid)
279 {
280         unsigned long start, end, pfn;
281         int fail = 0;
282
283         start = SECTION_ALIGN_DOWN(start_pfn);
284         end = SECTION_ALIGN_UP(start_pfn + nr_pages);
285
286         if (nid == -1) {
287                 /*
288                  * In this case, "nid" already exists and contains valid memory.
289                  * "start_pfn" passed to us is a pfn which is an arg for
290                  * online__pages(), and start_pfn should exist.
291                  */
292                 nid = pfn_to_nid(start_pfn);
293                 VM_BUG_ON(!node_state(nid, N_ONLINE));
294         }
295
296         for (pfn = start; !fail && pfn < end; pfn += PAGES_PER_SECTION) {
297                 if (!pfn_present(pfn))
298                         continue;
299                 fail = init_section_page_ext(pfn, nid);
300         }
301         if (!fail)
302                 return 0;
303
304         /* rollback */
305         for (pfn = start; pfn < end; pfn += PAGES_PER_SECTION)
306                 __free_page_ext(pfn);
307
308         return -ENOMEM;
309 }
310
311 static int __meminit offline_page_ext(unsigned long start_pfn,
312                                 unsigned long nr_pages, int nid)
313 {
314         unsigned long start, end, pfn;
315
316         start = SECTION_ALIGN_DOWN(start_pfn);
317         end = SECTION_ALIGN_UP(start_pfn + nr_pages);
318
319         for (pfn = start; pfn < end; pfn += PAGES_PER_SECTION)
320                 __free_page_ext(pfn);
321         return 0;
322
323 }
324
325 static int __meminit page_ext_callback(struct notifier_block *self,
326                                unsigned long action, void *arg)
327 {
328         struct memory_notify *mn = arg;
329         int ret = 0;
330
331         switch (action) {
332         case MEM_GOING_ONLINE:
333                 ret = online_page_ext(mn->start_pfn,
334                                    mn->nr_pages, mn->status_change_nid);
335                 break;
336         case MEM_OFFLINE:
337                 offline_page_ext(mn->start_pfn,
338                                 mn->nr_pages, mn->status_change_nid);
339                 break;
340         case MEM_CANCEL_ONLINE:
341                 offline_page_ext(mn->start_pfn,
342                                 mn->nr_pages, mn->status_change_nid);
343                 break;
344         case MEM_GOING_OFFLINE:
345                 break;
346         case MEM_ONLINE:
347         case MEM_CANCEL_OFFLINE:
348                 break;
349         }
350
351         return notifier_from_errno(ret);
352 }
353
354 #endif
355
356 void __init page_ext_init(void)
357 {
358         unsigned long pfn;
359         int nid;
360
361         if (!invoke_need_callbacks())
362                 return;
363
364         for_each_node_state(nid, N_MEMORY) {
365                 unsigned long start_pfn, end_pfn;
366
367                 start_pfn = node_start_pfn(nid);
368                 end_pfn = node_end_pfn(nid);
369                 /*
370                  * start_pfn and end_pfn may not be aligned to SECTION and the
371                  * page->flags of out of node pages are not initialized.  So we
372                  * scan [start_pfn, the biggest section's pfn < end_pfn) here.
373                  */
374                 for (pfn = start_pfn; pfn < end_pfn;
375                         pfn = ALIGN(pfn + 1, PAGES_PER_SECTION)) {
376
377                         if (!pfn_valid(pfn))
378                                 continue;
379                         /*
380                          * Nodes's pfns can be overlapping.
381                          * We know some arch can have a nodes layout such as
382                          * -------------pfn-------------->
383                          * N0 | N1 | N2 | N0 | N1 | N2|....
384                          */
385                         if (pfn_to_nid(pfn) != nid)
386                                 continue;
387                         if (init_section_page_ext(pfn, nid))
388                                 goto oom;
389                 }
390         }
391         hotplug_memory_notifier(page_ext_callback, 0);
392         pr_info("allocated %ld bytes of page_ext\n", total_usage);
393         invoke_init_callbacks();
394         return;
395
396 oom:
397         panic("Out of memory");
398 }
399
400 void __meminit pgdat_page_ext_init(struct pglist_data *pgdat)
401 {
402 }
403
404 #endif