blob: 63b1053f5b41fbd4afc870c911a8fc696d6b7d16 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Joonsoo Kim48c96a32014-12-12 16:56:01 -08002#include <linux/debugfs.h>
3#include <linux/mm.h>
4#include <linux/slab.h>
5#include <linux/uaccess.h>
6#include <linux/bootmem.h>
7#include <linux/stacktrace.h>
8#include <linux/page_owner.h>
Vlastimil Babka7dd80b82016-03-15 14:56:12 -07009#include <linux/jump_label.h>
Vlastimil Babka7cd12b42016-03-15 14:56:18 -070010#include <linux/migrate.h>
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070011#include <linux/stackdepot.h>
Joonsoo Kime2f612e2016-10-07 16:58:21 -070012#include <linux/seq_file.h>
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070013
Joonsoo Kim48c96a32014-12-12 16:56:01 -080014#include "internal.h"
15
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070016/*
17 * TODO: teach PAGE_OWNER_STACK_DEPTH (__dump_page_owner and save_stack)
18 * to use off stack temporal storage
19 */
20#define PAGE_OWNER_STACK_DEPTH (16)
21
Joonsoo Kim9300d8d2016-10-07 16:58:30 -070022struct page_owner {
Ayush Mittal6b4c54e2017-11-15 17:34:30 -080023 unsigned short order;
24 short last_migrate_reason;
Joonsoo Kim9300d8d2016-10-07 16:58:30 -070025 gfp_t gfp_mask;
Joonsoo Kim9300d8d2016-10-07 16:58:30 -070026 depot_stack_handle_t handle;
27};
28
Joonsoo Kim48c96a32014-12-12 16:56:01 -080029static bool page_owner_disabled = true;
Vlastimil Babka7dd80b82016-03-15 14:56:12 -070030DEFINE_STATIC_KEY_FALSE(page_owner_inited);
Joonsoo Kim48c96a32014-12-12 16:56:01 -080031
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070032static depot_stack_handle_t dummy_handle;
33static depot_stack_handle_t failure_handle;
Vlastimil Babkadab4ead2017-09-06 16:20:44 -070034static depot_stack_handle_t early_handle;
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070035
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -080036static void init_early_allocated_pages(void);
37
Dou Liyang11731942018-04-05 16:23:49 -070038static int __init early_page_owner_param(char *buf)
Joonsoo Kim48c96a32014-12-12 16:56:01 -080039{
40 if (!buf)
41 return -EINVAL;
42
43 if (strcmp(buf, "on") == 0)
44 page_owner_disabled = false;
45
46 return 0;
47}
48early_param("page_owner", early_page_owner_param);
49
50static bool need_page_owner(void)
51{
52 if (page_owner_disabled)
53 return false;
54
55 return true;
56}
57
Vlastimil Babkadab4ead2017-09-06 16:20:44 -070058static __always_inline depot_stack_handle_t create_dummy_stack(void)
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070059{
60 unsigned long entries[4];
61 struct stack_trace dummy;
62
63 dummy.nr_entries = 0;
64 dummy.max_entries = ARRAY_SIZE(entries);
65 dummy.entries = &entries[0];
66 dummy.skip = 0;
67
68 save_stack_trace(&dummy);
Vlastimil Babkadab4ead2017-09-06 16:20:44 -070069 return depot_save_stack(&dummy, GFP_KERNEL);
70}
71
72static noinline void register_dummy_stack(void)
73{
74 dummy_handle = create_dummy_stack();
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070075}
76
77static noinline void register_failure_stack(void)
78{
Vlastimil Babkadab4ead2017-09-06 16:20:44 -070079 failure_handle = create_dummy_stack();
80}
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070081
Vlastimil Babkadab4ead2017-09-06 16:20:44 -070082static noinline void register_early_stack(void)
83{
84 early_handle = create_dummy_stack();
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070085}
86
Joonsoo Kim48c96a32014-12-12 16:56:01 -080087static void init_page_owner(void)
88{
89 if (page_owner_disabled)
90 return;
91
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070092 register_dummy_stack();
93 register_failure_stack();
Vlastimil Babkadab4ead2017-09-06 16:20:44 -070094 register_early_stack();
Vlastimil Babka7dd80b82016-03-15 14:56:12 -070095 static_branch_enable(&page_owner_inited);
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -080096 init_early_allocated_pages();
Joonsoo Kim48c96a32014-12-12 16:56:01 -080097}
98
99struct page_ext_operations page_owner_ops = {
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700100 .size = sizeof(struct page_owner),
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800101 .need = need_page_owner,
102 .init = init_page_owner,
103};
104
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700105static inline struct page_owner *get_page_owner(struct page_ext *page_ext)
106{
107 return (void *)page_ext + page_owner_ops.offset;
108}
109
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800110void __reset_page_owner(struct page *page, unsigned int order)
111{
112 int i;
113 struct page_ext *page_ext;
114
115 for (i = 0; i < (1 << order); i++) {
116 page_ext = lookup_page_ext(page + i);
Yang Shif86e4272016-06-03 14:55:38 -0700117 if (unlikely(!page_ext))
118 continue;
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800119 __clear_bit(PAGE_EXT_OWNER, &page_ext->flags);
120 }
121}
122
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700123static inline bool check_recursive_alloc(struct stack_trace *trace,
124 unsigned long ip)
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800125{
Maninder Singh299815a2018-03-28 16:01:05 -0700126 int i;
Yang Shif86e4272016-06-03 14:55:38 -0700127
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700128 if (!trace->nr_entries)
129 return false;
130
Maninder Singh299815a2018-03-28 16:01:05 -0700131 for (i = 0; i < trace->nr_entries; i++) {
132 if (trace->entries[i] == ip)
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700133 return true;
134 }
135
136 return false;
137}
138
139static noinline depot_stack_handle_t save_stack(gfp_t flags)
140{
141 unsigned long entries[PAGE_OWNER_STACK_DEPTH];
Sergei Rogachev94f759d62015-02-11 15:28:34 -0800142 struct stack_trace trace = {
143 .nr_entries = 0,
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700144 .entries = entries,
145 .max_entries = PAGE_OWNER_STACK_DEPTH,
Prakash Gupta5f48f0b2017-09-13 16:28:35 -0700146 .skip = 2
Sergei Rogachev94f759d62015-02-11 15:28:34 -0800147 };
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700148 depot_stack_handle_t handle;
149
150 save_stack_trace(&trace);
151 if (trace.nr_entries != 0 &&
152 trace.entries[trace.nr_entries-1] == ULONG_MAX)
153 trace.nr_entries--;
154
155 /*
156 * We need to check recursion here because our request to stackdepot
157 * could trigger memory allocation to save new entry. New memory
158 * allocation would reach here and call depot_save_stack() again
159 * if we don't catch it. There is still not enough memory in stackdepot
160 * so it would try to allocate memory again and loop forever.
161 */
162 if (check_recursive_alloc(&trace, _RET_IP_))
163 return dummy_handle;
164
165 handle = depot_save_stack(&trace, flags);
166 if (!handle)
167 handle = failure_handle;
168
169 return handle;
170}
171
Vlastimil Babkadab4ead2017-09-06 16:20:44 -0700172static inline void __set_page_owner_handle(struct page_ext *page_ext,
173 depot_stack_handle_t handle, unsigned int order, gfp_t gfp_mask)
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700174{
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700175 struct page_owner *page_owner;
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800176
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700177 page_owner = get_page_owner(page_ext);
Vlastimil Babkadab4ead2017-09-06 16:20:44 -0700178 page_owner->handle = handle;
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700179 page_owner->order = order;
180 page_owner->gfp_mask = gfp_mask;
181 page_owner->last_migrate_reason = -1;
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800182
183 __set_bit(PAGE_EXT_OWNER, &page_ext->flags);
184}
185
Vlastimil Babkadab4ead2017-09-06 16:20:44 -0700186noinline void __set_page_owner(struct page *page, unsigned int order,
187 gfp_t gfp_mask)
188{
189 struct page_ext *page_ext = lookup_page_ext(page);
190 depot_stack_handle_t handle;
191
192 if (unlikely(!page_ext))
193 return;
194
195 handle = save_stack(gfp_mask);
196 __set_page_owner_handle(page_ext, handle, order, gfp_mask);
197}
198
Vlastimil Babka7cd12b42016-03-15 14:56:18 -0700199void __set_page_owner_migrate_reason(struct page *page, int reason)
200{
201 struct page_ext *page_ext = lookup_page_ext(page);
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700202 struct page_owner *page_owner;
203
Yang Shif86e4272016-06-03 14:55:38 -0700204 if (unlikely(!page_ext))
205 return;
Vlastimil Babka7cd12b42016-03-15 14:56:18 -0700206
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700207 page_owner = get_page_owner(page_ext);
208 page_owner->last_migrate_reason = reason;
Vlastimil Babka7cd12b42016-03-15 14:56:18 -0700209}
210
Joonsoo Kima9627bc2016-07-26 15:23:49 -0700211void __split_page_owner(struct page *page, unsigned int order)
Joonsoo Kime2cfc912015-07-17 16:24:18 -0700212{
Joonsoo Kima9627bc2016-07-26 15:23:49 -0700213 int i;
Joonsoo Kime2cfc912015-07-17 16:24:18 -0700214 struct page_ext *page_ext = lookup_page_ext(page);
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700215 struct page_owner *page_owner;
Joonsoo Kime2cfc912015-07-17 16:24:18 -0700216
Joonsoo Kima9627bc2016-07-26 15:23:49 -0700217 if (unlikely(!page_ext))
218 return;
219
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700220 page_owner = get_page_owner(page_ext);
221 page_owner->order = 0;
Joonsoo Kima9627bc2016-07-26 15:23:49 -0700222 for (i = 1; i < (1 << order); i++)
223 __copy_page_owner(page, page + i);
Joonsoo Kime2cfc912015-07-17 16:24:18 -0700224}
225
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700226void __copy_page_owner(struct page *oldpage, struct page *newpage)
227{
228 struct page_ext *old_ext = lookup_page_ext(oldpage);
229 struct page_ext *new_ext = lookup_page_ext(newpage);
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700230 struct page_owner *old_page_owner, *new_page_owner;
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700231
Yang Shif86e4272016-06-03 14:55:38 -0700232 if (unlikely(!old_ext || !new_ext))
233 return;
234
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700235 old_page_owner = get_page_owner(old_ext);
236 new_page_owner = get_page_owner(new_ext);
237 new_page_owner->order = old_page_owner->order;
238 new_page_owner->gfp_mask = old_page_owner->gfp_mask;
239 new_page_owner->last_migrate_reason =
240 old_page_owner->last_migrate_reason;
241 new_page_owner->handle = old_page_owner->handle;
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700242
243 /*
244 * We don't clear the bit on the oldpage as it's going to be freed
245 * after migration. Until then, the info can be useful in case of
246 * a bug, and the overal stats will be off a bit only temporarily.
247 * Also, migrate_misplaced_transhuge_page() can still fail the
248 * migration and then we want the oldpage to retain the info. But
249 * in that case we also don't need to explicitly clear the info from
250 * the new page, which will be freed.
251 */
252 __set_bit(PAGE_EXT_OWNER, &new_ext->flags);
253}
254
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700255void pagetypeinfo_showmixedcount_print(struct seq_file *m,
256 pg_data_t *pgdat, struct zone *zone)
257{
258 struct page *page;
259 struct page_ext *page_ext;
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700260 struct page_owner *page_owner;
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700261 unsigned long pfn = zone->zone_start_pfn, block_end_pfn;
262 unsigned long end_pfn = pfn + zone->spanned_pages;
263 unsigned long count[MIGRATE_TYPES] = { 0, };
264 int pageblock_mt, page_mt;
265 int i;
266
267 /* Scan block by block. First and last block may be incomplete */
268 pfn = zone->zone_start_pfn;
269
270 /*
271 * Walk the zone in pageblock_nr_pages steps. If a page block spans
272 * a zone boundary, it will be double counted between zones. This does
273 * not matter as the mixed block count will still be correct
274 */
275 for (; pfn < end_pfn; ) {
Qian Caif712e302019-10-18 20:19:29 -0700276 page = pfn_to_online_page(pfn);
277 if (!page) {
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700278 pfn = ALIGN(pfn + 1, MAX_ORDER_NR_PAGES);
279 continue;
280 }
281
282 block_end_pfn = ALIGN(pfn + 1, pageblock_nr_pages);
283 block_end_pfn = min(block_end_pfn, end_pfn);
284
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700285 pageblock_mt = get_pageblock_migratetype(page);
286
287 for (; pfn < block_end_pfn; pfn++) {
288 if (!pfn_valid_within(pfn))
289 continue;
290
Qian Caif712e302019-10-18 20:19:29 -0700291 /* The pageblock is online, no need to recheck. */
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700292 page = pfn_to_page(pfn);
293
294 if (page_zone(page) != zone)
295 continue;
296
297 if (PageBuddy(page)) {
Vinayak Menon727c0802017-07-10 15:49:17 -0700298 unsigned long freepage_order;
299
300 freepage_order = page_order_unsafe(page);
301 if (freepage_order < MAX_ORDER)
302 pfn += (1UL << freepage_order) - 1;
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700303 continue;
304 }
305
306 if (PageReserved(page))
307 continue;
308
309 page_ext = lookup_page_ext(page);
310 if (unlikely(!page_ext))
311 continue;
312
313 if (!test_bit(PAGE_EXT_OWNER, &page_ext->flags))
314 continue;
315
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700316 page_owner = get_page_owner(page_ext);
317 page_mt = gfpflags_to_migratetype(
318 page_owner->gfp_mask);
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700319 if (pageblock_mt != page_mt) {
320 if (is_migrate_cma(pageblock_mt))
321 count[MIGRATE_MOVABLE]++;
322 else
323 count[pageblock_mt]++;
324
325 pfn = block_end_pfn;
326 break;
327 }
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700328 pfn += (1UL << page_owner->order) - 1;
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700329 }
330 }
331
332 /* Print counts */
333 seq_printf(m, "Node %d, zone %8s ", pgdat->node_id, zone->name);
334 for (i = 0; i < MIGRATE_TYPES; i++)
335 seq_printf(m, "%12lu ", count[i]);
336 seq_putc(m, '\n');
337}
338
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800339static ssize_t
340print_page_owner(char __user *buf, size_t count, unsigned long pfn,
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700341 struct page *page, struct page_owner *page_owner,
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700342 depot_stack_handle_t handle)
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800343{
344 int ret;
345 int pageblock_mt, page_mt;
346 char *kbuf;
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700347 unsigned long entries[PAGE_OWNER_STACK_DEPTH];
Sergei Rogachev94f759d62015-02-11 15:28:34 -0800348 struct stack_trace trace = {
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700349 .nr_entries = 0,
350 .entries = entries,
351 .max_entries = PAGE_OWNER_STACK_DEPTH,
352 .skip = 0
Sergei Rogachev94f759d62015-02-11 15:28:34 -0800353 };
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800354
355 kbuf = kmalloc(count, GFP_KERNEL);
356 if (!kbuf)
357 return -ENOMEM;
358
359 ret = snprintf(kbuf, count,
Vlastimil Babka60f30352016-03-15 14:56:08 -0700360 "Page allocated via order %u, mask %#x(%pGg)\n",
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700361 page_owner->order, page_owner->gfp_mask,
362 &page_owner->gfp_mask);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800363
364 if (ret >= count)
365 goto err;
366
367 /* Print information relevant to grouping pages by mobility */
Mel Gorman0b423ca2016-05-19 17:14:27 -0700368 pageblock_mt = get_pageblock_migratetype(page);
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700369 page_mt = gfpflags_to_migratetype(page_owner->gfp_mask);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800370 ret += snprintf(kbuf + ret, count - ret,
Vlastimil Babka60f30352016-03-15 14:56:08 -0700371 "PFN %lu type %s Block %lu type %s Flags %#lx(%pGp)\n",
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800372 pfn,
Vlastimil Babka60f30352016-03-15 14:56:08 -0700373 migratetype_names[page_mt],
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800374 pfn >> pageblock_order,
Vlastimil Babka60f30352016-03-15 14:56:08 -0700375 migratetype_names[pageblock_mt],
376 page->flags, &page->flags);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800377
378 if (ret >= count)
379 goto err;
380
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700381 depot_fetch_stack(handle, &trace);
Sergei Rogachev94f759d62015-02-11 15:28:34 -0800382 ret += snprint_stack_trace(kbuf + ret, count - ret, &trace, 0);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800383 if (ret >= count)
384 goto err;
385
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700386 if (page_owner->last_migrate_reason != -1) {
Vlastimil Babka7cd12b42016-03-15 14:56:18 -0700387 ret += snprintf(kbuf + ret, count - ret,
388 "Page has been migrated, last migrate reason: %s\n",
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700389 migrate_reason_names[page_owner->last_migrate_reason]);
Vlastimil Babka7cd12b42016-03-15 14:56:18 -0700390 if (ret >= count)
391 goto err;
392 }
393
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800394 ret += snprintf(kbuf + ret, count - ret, "\n");
395 if (ret >= count)
396 goto err;
397
398 if (copy_to_user(buf, kbuf, ret))
399 ret = -EFAULT;
400
401 kfree(kbuf);
402 return ret;
403
404err:
405 kfree(kbuf);
406 return -ENOMEM;
407}
408
Vlastimil Babka4e462112016-03-15 14:56:21 -0700409void __dump_page_owner(struct page *page)
410{
411 struct page_ext *page_ext = lookup_page_ext(page);
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700412 struct page_owner *page_owner;
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700413 unsigned long entries[PAGE_OWNER_STACK_DEPTH];
Vlastimil Babka4e462112016-03-15 14:56:21 -0700414 struct stack_trace trace = {
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700415 .nr_entries = 0,
416 .entries = entries,
417 .max_entries = PAGE_OWNER_STACK_DEPTH,
418 .skip = 0
Vlastimil Babka4e462112016-03-15 14:56:21 -0700419 };
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700420 depot_stack_handle_t handle;
Sudip Mukherjee82850272016-06-24 14:50:24 -0700421 gfp_t gfp_mask;
422 int mt;
Vlastimil Babka4e462112016-03-15 14:56:21 -0700423
Yang Shif86e4272016-06-03 14:55:38 -0700424 if (unlikely(!page_ext)) {
425 pr_alert("There is not page extension available.\n");
426 return;
427 }
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700428
429 page_owner = get_page_owner(page_ext);
430 gfp_mask = page_owner->gfp_mask;
Sudip Mukherjee82850272016-06-24 14:50:24 -0700431 mt = gfpflags_to_migratetype(gfp_mask);
Yang Shif86e4272016-06-03 14:55:38 -0700432
Vlastimil Babka4e462112016-03-15 14:56:21 -0700433 if (!test_bit(PAGE_EXT_OWNER, &page_ext->flags)) {
434 pr_alert("page_owner info is not active (free page?)\n");
435 return;
436 }
437
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700438 handle = READ_ONCE(page_owner->handle);
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700439 if (!handle) {
440 pr_alert("page_owner info is not active (free page?)\n");
441 return;
442 }
443
444 depot_fetch_stack(handle, &trace);
Joe Perches756a0252016-03-17 14:19:47 -0700445 pr_alert("page allocated via order %u, migratetype %s, gfp_mask %#x(%pGg)\n",
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700446 page_owner->order, migratetype_names[mt], gfp_mask, &gfp_mask);
Vlastimil Babka4e462112016-03-15 14:56:21 -0700447 print_stack_trace(&trace, 0);
448
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700449 if (page_owner->last_migrate_reason != -1)
Vlastimil Babka4e462112016-03-15 14:56:21 -0700450 pr_alert("page has been migrated, last migrate reason: %s\n",
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700451 migrate_reason_names[page_owner->last_migrate_reason]);
Vlastimil Babka4e462112016-03-15 14:56:21 -0700452}
453
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800454static ssize_t
455read_page_owner(struct file *file, char __user *buf, size_t count, loff_t *ppos)
456{
457 unsigned long pfn;
458 struct page *page;
459 struct page_ext *page_ext;
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700460 struct page_owner *page_owner;
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700461 depot_stack_handle_t handle;
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800462
Vlastimil Babka7dd80b82016-03-15 14:56:12 -0700463 if (!static_branch_unlikely(&page_owner_inited))
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800464 return -EINVAL;
465
466 page = NULL;
467 pfn = min_low_pfn + *ppos;
468
469 /* Find a valid PFN or the start of a MAX_ORDER_NR_PAGES area */
470 while (!pfn_valid(pfn) && (pfn & (MAX_ORDER_NR_PAGES - 1)) != 0)
471 pfn++;
472
473 drain_all_pages(NULL);
474
475 /* Find an allocated page */
476 for (; pfn < max_pfn; pfn++) {
477 /*
478 * If the new page is in a new MAX_ORDER_NR_PAGES area,
479 * validate the area as existing, skip it if not
480 */
481 if ((pfn & (MAX_ORDER_NR_PAGES - 1)) == 0 && !pfn_valid(pfn)) {
482 pfn += MAX_ORDER_NR_PAGES - 1;
483 continue;
484 }
485
486 /* Check for holes within a MAX_ORDER area */
487 if (!pfn_valid_within(pfn))
488 continue;
489
490 page = pfn_to_page(pfn);
491 if (PageBuddy(page)) {
492 unsigned long freepage_order = page_order_unsafe(page);
493
494 if (freepage_order < MAX_ORDER)
495 pfn += (1UL << freepage_order) - 1;
496 continue;
497 }
498
499 page_ext = lookup_page_ext(page);
Yang Shif86e4272016-06-03 14:55:38 -0700500 if (unlikely(!page_ext))
501 continue;
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800502
503 /*
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800504 * Some pages could be missed by concurrent allocation or free,
505 * because we don't hold the zone lock.
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800506 */
507 if (!test_bit(PAGE_EXT_OWNER, &page_ext->flags))
508 continue;
509
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700510 page_owner = get_page_owner(page_ext);
511
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700512 /*
513 * Access to page_ext->handle isn't synchronous so we should
514 * be careful to access it.
515 */
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700516 handle = READ_ONCE(page_owner->handle);
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700517 if (!handle)
518 continue;
519
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800520 /* Record the next PFN to read in the file offset */
521 *ppos = (pfn - min_low_pfn) + 1;
522
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700523 return print_page_owner(buf, count, pfn, page,
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700524 page_owner, handle);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800525 }
526
527 return 0;
528}
529
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800530static void init_pages_in_zone(pg_data_t *pgdat, struct zone *zone)
531{
Oscar Salvador6787c1d2018-01-31 16:20:11 -0800532 unsigned long pfn = zone->zone_start_pfn;
533 unsigned long end_pfn = zone_end_pfn(zone);
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800534 unsigned long count = 0;
535
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800536 /*
537 * Walk the zone in pageblock_nr_pages steps. If a page block spans
538 * a zone boundary, it will be double counted between zones. This does
539 * not matter as the mixed block count will still be correct
540 */
541 for (; pfn < end_pfn; ) {
Oscar Salvador6787c1d2018-01-31 16:20:11 -0800542 unsigned long block_end_pfn;
543
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800544 if (!pfn_valid(pfn)) {
545 pfn = ALIGN(pfn + 1, MAX_ORDER_NR_PAGES);
546 continue;
547 }
548
549 block_end_pfn = ALIGN(pfn + 1, pageblock_nr_pages);
550 block_end_pfn = min(block_end_pfn, end_pfn);
551
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800552 for (; pfn < block_end_pfn; pfn++) {
Oscar Salvador6787c1d2018-01-31 16:20:11 -0800553 struct page *page;
554 struct page_ext *page_ext;
555
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800556 if (!pfn_valid_within(pfn))
557 continue;
558
559 page = pfn_to_page(pfn);
560
Joonsoo Kim9d43f5a2016-05-19 17:12:13 -0700561 if (page_zone(page) != zone)
562 continue;
563
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800564 /*
Vlastimil Babka10903022017-09-06 16:20:51 -0700565 * To avoid having to grab zone->lock, be a little
566 * careful when reading buddy page order. The only
567 * danger is that we skip too much and potentially miss
568 * some early allocated pages, which is better than
569 * heavy lock contention.
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800570 */
571 if (PageBuddy(page)) {
Vlastimil Babka10903022017-09-06 16:20:51 -0700572 unsigned long order = page_order_unsafe(page);
573
574 if (order > 0 && order < MAX_ORDER)
575 pfn += (1UL << order) - 1;
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800576 continue;
577 }
578
579 if (PageReserved(page))
580 continue;
581
582 page_ext = lookup_page_ext(page);
Yang Shif86e4272016-06-03 14:55:38 -0700583 if (unlikely(!page_ext))
584 continue;
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800585
Vlastimil Babkadab4ead2017-09-06 16:20:44 -0700586 /* Maybe overlapping zone */
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800587 if (test_bit(PAGE_EXT_OWNER, &page_ext->flags))
588 continue;
589
590 /* Found early allocated page */
Vlastimil Babkadab4ead2017-09-06 16:20:44 -0700591 __set_page_owner_handle(page_ext, early_handle, 0, 0);
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800592 count++;
593 }
Vlastimil Babka10903022017-09-06 16:20:51 -0700594 cond_resched();
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800595 }
596
597 pr_info("Node %d, zone %8s: page owner found early allocated %lu pages\n",
598 pgdat->node_id, zone->name, count);
599}
600
601static void init_zones_in_node(pg_data_t *pgdat)
602{
603 struct zone *zone;
604 struct zone *node_zones = pgdat->node_zones;
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800605
606 for (zone = node_zones; zone - node_zones < MAX_NR_ZONES; ++zone) {
607 if (!populated_zone(zone))
608 continue;
609
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800610 init_pages_in_zone(pgdat, zone);
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800611 }
612}
613
614static void init_early_allocated_pages(void)
615{
616 pg_data_t *pgdat;
617
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800618 for_each_online_pgdat(pgdat)
619 init_zones_in_node(pgdat);
620}
621
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800622static const struct file_operations proc_page_owner_operations = {
623 .read = read_page_owner,
624};
625
626static int __init pageowner_init(void)
627{
628 struct dentry *dentry;
629
Vlastimil Babka7dd80b82016-03-15 14:56:12 -0700630 if (!static_branch_unlikely(&page_owner_inited)) {
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800631 pr_info("page_owner is disabled\n");
632 return 0;
633 }
634
Joe Perches0825a6f2018-06-14 15:27:58 -0700635 dentry = debugfs_create_file("page_owner", 0400, NULL,
636 NULL, &proc_page_owner_operations);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800637
Vasyl Gomonovych8e337712018-01-31 16:16:48 -0800638 return PTR_ERR_OR_ZERO(dentry);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800639}
Paul Gortmaker44c5af92015-05-01 21:57:34 -0400640late_initcall(pageowner_init)