blob: c6cda3e36212833f78189c3a93b7dc80f8bc7ec9 [file] [log] [blame]
Joonsoo Kim48c96a32014-12-12 16:56:01 -08001#include <linux/debugfs.h>
2#include <linux/mm.h>
3#include <linux/slab.h>
4#include <linux/uaccess.h>
5#include <linux/bootmem.h>
6#include <linux/stacktrace.h>
7#include <linux/page_owner.h>
Vlastimil Babka7dd80b82016-03-15 14:56:12 -07008#include <linux/jump_label.h>
Vlastimil Babka7cd12b42016-03-15 14:56:18 -07009#include <linux/migrate.h>
Joonsoo Kim48c96a32014-12-12 16:56:01 -080010#include "internal.h"
11
12static bool page_owner_disabled = true;
Vlastimil Babka7dd80b82016-03-15 14:56:12 -070013DEFINE_STATIC_KEY_FALSE(page_owner_inited);
Joonsoo Kim48c96a32014-12-12 16:56:01 -080014
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -080015static void init_early_allocated_pages(void);
16
Joonsoo Kim48c96a32014-12-12 16:56:01 -080017static int early_page_owner_param(char *buf)
18{
19 if (!buf)
20 return -EINVAL;
21
22 if (strcmp(buf, "on") == 0)
23 page_owner_disabled = false;
24
25 return 0;
26}
27early_param("page_owner", early_page_owner_param);
28
29static bool need_page_owner(void)
30{
31 if (page_owner_disabled)
32 return false;
33
34 return true;
35}
36
37static void init_page_owner(void)
38{
39 if (page_owner_disabled)
40 return;
41
Vlastimil Babka7dd80b82016-03-15 14:56:12 -070042 static_branch_enable(&page_owner_inited);
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -080043 init_early_allocated_pages();
Joonsoo Kim48c96a32014-12-12 16:56:01 -080044}
45
46struct page_ext_operations page_owner_ops = {
47 .need = need_page_owner,
48 .init = init_page_owner,
49};
50
51void __reset_page_owner(struct page *page, unsigned int order)
52{
53 int i;
54 struct page_ext *page_ext;
55
56 for (i = 0; i < (1 << order); i++) {
57 page_ext = lookup_page_ext(page + i);
Yang Shif86e4272016-06-03 14:55:38 -070058 if (unlikely(!page_ext))
59 continue;
Joonsoo Kim48c96a32014-12-12 16:56:01 -080060 __clear_bit(PAGE_EXT_OWNER, &page_ext->flags);
61 }
62}
63
64void __set_page_owner(struct page *page, unsigned int order, gfp_t gfp_mask)
65{
Sergei Rogachev94f759d62015-02-11 15:28:34 -080066 struct page_ext *page_ext = lookup_page_ext(page);
Yang Shif86e4272016-06-03 14:55:38 -070067
Sergei Rogachev94f759d62015-02-11 15:28:34 -080068 struct stack_trace trace = {
69 .nr_entries = 0,
70 .max_entries = ARRAY_SIZE(page_ext->trace_entries),
71 .entries = &page_ext->trace_entries[0],
72 .skip = 3,
73 };
Joonsoo Kim48c96a32014-12-12 16:56:01 -080074
Yang Shif86e4272016-06-03 14:55:38 -070075 if (unlikely(!page_ext))
76 return;
77
Sergei Rogachev94f759d62015-02-11 15:28:34 -080078 save_stack_trace(&trace);
Joonsoo Kim48c96a32014-12-12 16:56:01 -080079
80 page_ext->order = order;
81 page_ext->gfp_mask = gfp_mask;
Sergei Rogachev94f759d62015-02-11 15:28:34 -080082 page_ext->nr_entries = trace.nr_entries;
Vlastimil Babka7cd12b42016-03-15 14:56:18 -070083 page_ext->last_migrate_reason = -1;
Joonsoo Kim48c96a32014-12-12 16:56:01 -080084
85 __set_bit(PAGE_EXT_OWNER, &page_ext->flags);
86}
87
Vlastimil Babka7cd12b42016-03-15 14:56:18 -070088void __set_page_owner_migrate_reason(struct page *page, int reason)
89{
90 struct page_ext *page_ext = lookup_page_ext(page);
Yang Shif86e4272016-06-03 14:55:38 -070091 if (unlikely(!page_ext))
92 return;
Vlastimil Babka7cd12b42016-03-15 14:56:18 -070093
94 page_ext->last_migrate_reason = reason;
95}
96
Joonsoo Kime2cfc912015-07-17 16:24:18 -070097gfp_t __get_page_owner_gfp(struct page *page)
98{
99 struct page_ext *page_ext = lookup_page_ext(page);
Yang Shif86e4272016-06-03 14:55:38 -0700100 if (unlikely(!page_ext))
101 /*
102 * The caller just returns 0 if no valid gfp
103 * So return 0 here too.
104 */
105 return 0;
Joonsoo Kime2cfc912015-07-17 16:24:18 -0700106
107 return page_ext->gfp_mask;
108}
109
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700110void __copy_page_owner(struct page *oldpage, struct page *newpage)
111{
112 struct page_ext *old_ext = lookup_page_ext(oldpage);
113 struct page_ext *new_ext = lookup_page_ext(newpage);
114 int i;
115
Yang Shif86e4272016-06-03 14:55:38 -0700116 if (unlikely(!old_ext || !new_ext))
117 return;
118
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700119 new_ext->order = old_ext->order;
120 new_ext->gfp_mask = old_ext->gfp_mask;
121 new_ext->nr_entries = old_ext->nr_entries;
122
123 for (i = 0; i < ARRAY_SIZE(new_ext->trace_entries); i++)
124 new_ext->trace_entries[i] = old_ext->trace_entries[i];
125
126 /*
127 * We don't clear the bit on the oldpage as it's going to be freed
128 * after migration. Until then, the info can be useful in case of
129 * a bug, and the overal stats will be off a bit only temporarily.
130 * Also, migrate_misplaced_transhuge_page() can still fail the
131 * migration and then we want the oldpage to retain the info. But
132 * in that case we also don't need to explicitly clear the info from
133 * the new page, which will be freed.
134 */
135 __set_bit(PAGE_EXT_OWNER, &new_ext->flags);
136}
137
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800138static ssize_t
139print_page_owner(char __user *buf, size_t count, unsigned long pfn,
140 struct page *page, struct page_ext *page_ext)
141{
142 int ret;
143 int pageblock_mt, page_mt;
144 char *kbuf;
Sergei Rogachev94f759d62015-02-11 15:28:34 -0800145 struct stack_trace trace = {
146 .nr_entries = page_ext->nr_entries,
147 .entries = &page_ext->trace_entries[0],
148 };
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800149
150 kbuf = kmalloc(count, GFP_KERNEL);
151 if (!kbuf)
152 return -ENOMEM;
153
154 ret = snprintf(kbuf, count,
Vlastimil Babka60f30352016-03-15 14:56:08 -0700155 "Page allocated via order %u, mask %#x(%pGg)\n",
156 page_ext->order, page_ext->gfp_mask,
157 &page_ext->gfp_mask);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800158
159 if (ret >= count)
160 goto err;
161
162 /* Print information relevant to grouping pages by mobility */
Mel Gorman0b423ca2016-05-19 17:14:27 -0700163 pageblock_mt = get_pageblock_migratetype(page);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800164 page_mt = gfpflags_to_migratetype(page_ext->gfp_mask);
165 ret += snprintf(kbuf + ret, count - ret,
Vlastimil Babka60f30352016-03-15 14:56:08 -0700166 "PFN %lu type %s Block %lu type %s Flags %#lx(%pGp)\n",
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800167 pfn,
Vlastimil Babka60f30352016-03-15 14:56:08 -0700168 migratetype_names[page_mt],
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800169 pfn >> pageblock_order,
Vlastimil Babka60f30352016-03-15 14:56:08 -0700170 migratetype_names[pageblock_mt],
171 page->flags, &page->flags);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800172
173 if (ret >= count)
174 goto err;
175
Sergei Rogachev94f759d62015-02-11 15:28:34 -0800176 ret += snprint_stack_trace(kbuf + ret, count - ret, &trace, 0);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800177 if (ret >= count)
178 goto err;
179
Vlastimil Babka7cd12b42016-03-15 14:56:18 -0700180 if (page_ext->last_migrate_reason != -1) {
181 ret += snprintf(kbuf + ret, count - ret,
182 "Page has been migrated, last migrate reason: %s\n",
183 migrate_reason_names[page_ext->last_migrate_reason]);
184 if (ret >= count)
185 goto err;
186 }
187
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800188 ret += snprintf(kbuf + ret, count - ret, "\n");
189 if (ret >= count)
190 goto err;
191
192 if (copy_to_user(buf, kbuf, ret))
193 ret = -EFAULT;
194
195 kfree(kbuf);
196 return ret;
197
198err:
199 kfree(kbuf);
200 return -ENOMEM;
201}
202
Vlastimil Babka4e462112016-03-15 14:56:21 -0700203void __dump_page_owner(struct page *page)
204{
205 struct page_ext *page_ext = lookup_page_ext(page);
206 struct stack_trace trace = {
207 .nr_entries = page_ext->nr_entries,
208 .entries = &page_ext->trace_entries[0],
209 };
210 gfp_t gfp_mask = page_ext->gfp_mask;
211 int mt = gfpflags_to_migratetype(gfp_mask);
212
Yang Shif86e4272016-06-03 14:55:38 -0700213 if (unlikely(!page_ext)) {
214 pr_alert("There is not page extension available.\n");
215 return;
216 }
217
Vlastimil Babka4e462112016-03-15 14:56:21 -0700218 if (!test_bit(PAGE_EXT_OWNER, &page_ext->flags)) {
219 pr_alert("page_owner info is not active (free page?)\n");
220 return;
221 }
222
Joe Perches756a025f02016-03-17 14:19:47 -0700223 pr_alert("page allocated via order %u, migratetype %s, gfp_mask %#x(%pGg)\n",
224 page_ext->order, migratetype_names[mt], gfp_mask, &gfp_mask);
Vlastimil Babka4e462112016-03-15 14:56:21 -0700225 print_stack_trace(&trace, 0);
226
227 if (page_ext->last_migrate_reason != -1)
228 pr_alert("page has been migrated, last migrate reason: %s\n",
229 migrate_reason_names[page_ext->last_migrate_reason]);
230}
231
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800232static ssize_t
233read_page_owner(struct file *file, char __user *buf, size_t count, loff_t *ppos)
234{
235 unsigned long pfn;
236 struct page *page;
237 struct page_ext *page_ext;
238
Vlastimil Babka7dd80b82016-03-15 14:56:12 -0700239 if (!static_branch_unlikely(&page_owner_inited))
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800240 return -EINVAL;
241
242 page = NULL;
243 pfn = min_low_pfn + *ppos;
244
245 /* Find a valid PFN or the start of a MAX_ORDER_NR_PAGES area */
246 while (!pfn_valid(pfn) && (pfn & (MAX_ORDER_NR_PAGES - 1)) != 0)
247 pfn++;
248
249 drain_all_pages(NULL);
250
251 /* Find an allocated page */
252 for (; pfn < max_pfn; pfn++) {
253 /*
254 * If the new page is in a new MAX_ORDER_NR_PAGES area,
255 * validate the area as existing, skip it if not
256 */
257 if ((pfn & (MAX_ORDER_NR_PAGES - 1)) == 0 && !pfn_valid(pfn)) {
258 pfn += MAX_ORDER_NR_PAGES - 1;
259 continue;
260 }
261
262 /* Check for holes within a MAX_ORDER area */
263 if (!pfn_valid_within(pfn))
264 continue;
265
266 page = pfn_to_page(pfn);
267 if (PageBuddy(page)) {
268 unsigned long freepage_order = page_order_unsafe(page);
269
270 if (freepage_order < MAX_ORDER)
271 pfn += (1UL << freepage_order) - 1;
272 continue;
273 }
274
275 page_ext = lookup_page_ext(page);
Yang Shif86e4272016-06-03 14:55:38 -0700276 if (unlikely(!page_ext))
277 continue;
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800278
279 /*
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800280 * Some pages could be missed by concurrent allocation or free,
281 * because we don't hold the zone lock.
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800282 */
283 if (!test_bit(PAGE_EXT_OWNER, &page_ext->flags))
284 continue;
285
286 /* Record the next PFN to read in the file offset */
287 *ppos = (pfn - min_low_pfn) + 1;
288
289 return print_page_owner(buf, count, pfn, page, page_ext);
290 }
291
292 return 0;
293}
294
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800295static void init_pages_in_zone(pg_data_t *pgdat, struct zone *zone)
296{
297 struct page *page;
298 struct page_ext *page_ext;
299 unsigned long pfn = zone->zone_start_pfn, block_end_pfn;
300 unsigned long end_pfn = pfn + zone->spanned_pages;
301 unsigned long count = 0;
302
303 /* Scan block by block. First and last block may be incomplete */
304 pfn = zone->zone_start_pfn;
305
306 /*
307 * Walk the zone in pageblock_nr_pages steps. If a page block spans
308 * a zone boundary, it will be double counted between zones. This does
309 * not matter as the mixed block count will still be correct
310 */
311 for (; pfn < end_pfn; ) {
312 if (!pfn_valid(pfn)) {
313 pfn = ALIGN(pfn + 1, MAX_ORDER_NR_PAGES);
314 continue;
315 }
316
317 block_end_pfn = ALIGN(pfn + 1, pageblock_nr_pages);
318 block_end_pfn = min(block_end_pfn, end_pfn);
319
320 page = pfn_to_page(pfn);
321
322 for (; pfn < block_end_pfn; pfn++) {
323 if (!pfn_valid_within(pfn))
324 continue;
325
326 page = pfn_to_page(pfn);
327
Joonsoo Kim9d43f5a2016-05-19 17:12:13 -0700328 if (page_zone(page) != zone)
329 continue;
330
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800331 /*
332 * We are safe to check buddy flag and order, because
333 * this is init stage and only single thread runs.
334 */
335 if (PageBuddy(page)) {
336 pfn += (1UL << page_order(page)) - 1;
337 continue;
338 }
339
340 if (PageReserved(page))
341 continue;
342
343 page_ext = lookup_page_ext(page);
Yang Shif86e4272016-06-03 14:55:38 -0700344 if (unlikely(!page_ext))
345 continue;
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800346
347 /* Maybe overraping zone */
348 if (test_bit(PAGE_EXT_OWNER, &page_ext->flags))
349 continue;
350
351 /* Found early allocated page */
352 set_page_owner(page, 0, 0);
353 count++;
354 }
355 }
356
357 pr_info("Node %d, zone %8s: page owner found early allocated %lu pages\n",
358 pgdat->node_id, zone->name, count);
359}
360
361static void init_zones_in_node(pg_data_t *pgdat)
362{
363 struct zone *zone;
364 struct zone *node_zones = pgdat->node_zones;
365 unsigned long flags;
366
367 for (zone = node_zones; zone - node_zones < MAX_NR_ZONES; ++zone) {
368 if (!populated_zone(zone))
369 continue;
370
371 spin_lock_irqsave(&zone->lock, flags);
372 init_pages_in_zone(pgdat, zone);
373 spin_unlock_irqrestore(&zone->lock, flags);
374 }
375}
376
377static void init_early_allocated_pages(void)
378{
379 pg_data_t *pgdat;
380
381 drain_all_pages(NULL);
382 for_each_online_pgdat(pgdat)
383 init_zones_in_node(pgdat);
384}
385
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800386static const struct file_operations proc_page_owner_operations = {
387 .read = read_page_owner,
388};
389
390static int __init pageowner_init(void)
391{
392 struct dentry *dentry;
393
Vlastimil Babka7dd80b82016-03-15 14:56:12 -0700394 if (!static_branch_unlikely(&page_owner_inited)) {
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800395 pr_info("page_owner is disabled\n");
396 return 0;
397 }
398
399 dentry = debugfs_create_file("page_owner", S_IRUSR, NULL,
400 NULL, &proc_page_owner_operations);
401 if (IS_ERR(dentry))
402 return PTR_ERR(dentry);
403
404 return 0;
405}
Paul Gortmaker44c5af92015-05-01 21:57:34 -0400406late_initcall(pageowner_init)