blob: d15c7c4994f55007e57e74a3481209912e8531d8 [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>
Mike Rapoport57c8a662018-10-30 15:09:49 -07006#include <linux/memblock.h>
Joonsoo Kim48c96a32014-12-12 16:56:01 -08007#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>
Liam Mark9cc7e96a2020-12-14 19:04:49 -080013#include <linux/sched/clock.h>
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070014
Joonsoo Kim48c96a32014-12-12 16:56:01 -080015#include "internal.h"
16
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070017/*
18 * TODO: teach PAGE_OWNER_STACK_DEPTH (__dump_page_owner and save_stack)
19 * to use off stack temporal storage
20 */
21#define PAGE_OWNER_STACK_DEPTH (16)
22
Joonsoo Kim9300d8d2016-10-07 16:58:30 -070023struct page_owner {
Ayush Mittal6b4c54e2017-11-15 17:34:30 -080024 unsigned short order;
25 short last_migrate_reason;
Joonsoo Kim9300d8d2016-10-07 16:58:30 -070026 gfp_t gfp_mask;
Joonsoo Kim9300d8d2016-10-07 16:58:30 -070027 depot_stack_handle_t handle;
Vlastimil Babka89745582019-09-23 15:34:42 -070028 depot_stack_handle_t free_handle;
Liam Mark9cc7e96a2020-12-14 19:04:49 -080029 u64 ts_nsec;
30 pid_t pid;
Joonsoo Kim9300d8d2016-10-07 16:58:30 -070031};
32
Vlastimil Babka0fe9a442019-10-14 14:11:44 -070033static bool page_owner_enabled = false;
Vlastimil Babka7dd80b82016-03-15 14:56:12 -070034DEFINE_STATIC_KEY_FALSE(page_owner_inited);
Joonsoo Kim48c96a32014-12-12 16:56:01 -080035
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070036static depot_stack_handle_t dummy_handle;
37static depot_stack_handle_t failure_handle;
Vlastimil Babkadab4ead2017-09-06 16:20:44 -070038static depot_stack_handle_t early_handle;
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070039
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -080040static void init_early_allocated_pages(void);
41
Dou Liyang11731942018-04-05 16:23:49 -070042static int __init early_page_owner_param(char *buf)
Joonsoo Kim48c96a32014-12-12 16:56:01 -080043{
44 if (!buf)
45 return -EINVAL;
46
47 if (strcmp(buf, "on") == 0)
Vlastimil Babka0fe9a442019-10-14 14:11:44 -070048 page_owner_enabled = true;
Joonsoo Kim48c96a32014-12-12 16:56:01 -080049
50 return 0;
51}
52early_param("page_owner", early_page_owner_param);
53
54static bool need_page_owner(void)
55{
Vlastimil Babka0fe9a442019-10-14 14:11:44 -070056 return page_owner_enabled;
Joonsoo Kim48c96a32014-12-12 16:56:01 -080057}
58
Vlastimil Babkadab4ead2017-09-06 16:20:44 -070059static __always_inline depot_stack_handle_t create_dummy_stack(void)
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070060{
61 unsigned long entries[4];
Thomas Gleixneraf52bf62019-04-25 11:45:03 +020062 unsigned int nr_entries;
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070063
Thomas Gleixneraf52bf62019-04-25 11:45:03 +020064 nr_entries = stack_trace_save(entries, ARRAY_SIZE(entries), 0);
65 return stack_depot_save(entries, nr_entries, GFP_KERNEL);
Vlastimil Babkadab4ead2017-09-06 16:20:44 -070066}
67
68static noinline void register_dummy_stack(void)
69{
70 dummy_handle = create_dummy_stack();
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070071}
72
73static noinline void register_failure_stack(void)
74{
Vlastimil Babkadab4ead2017-09-06 16:20:44 -070075 failure_handle = create_dummy_stack();
76}
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070077
Vlastimil Babkadab4ead2017-09-06 16:20:44 -070078static noinline void register_early_stack(void)
79{
80 early_handle = create_dummy_stack();
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070081}
82
Joonsoo Kim48c96a32014-12-12 16:56:01 -080083static void init_page_owner(void)
84{
Vlastimil Babka0fe9a442019-10-14 14:11:44 -070085 if (!page_owner_enabled)
Joonsoo Kim48c96a32014-12-12 16:56:01 -080086 return;
87
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070088 register_dummy_stack();
89 register_failure_stack();
Vlastimil Babkadab4ead2017-09-06 16:20:44 -070090 register_early_stack();
Vlastimil Babka7dd80b82016-03-15 14:56:12 -070091 static_branch_enable(&page_owner_inited);
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -080092 init_early_allocated_pages();
Joonsoo Kim48c96a32014-12-12 16:56:01 -080093}
94
95struct page_ext_operations page_owner_ops = {
Joonsoo Kim9300d8d2016-10-07 16:58:30 -070096 .size = sizeof(struct page_owner),
Joonsoo Kim48c96a32014-12-12 16:56:01 -080097 .need = need_page_owner,
98 .init = init_page_owner,
99};
100
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700101static inline struct page_owner *get_page_owner(struct page_ext *page_ext)
102{
103 return (void *)page_ext + page_owner_ops.offset;
104}
105
Thomas Gleixneraf52bf62019-04-25 11:45:03 +0200106static inline bool check_recursive_alloc(unsigned long *entries,
107 unsigned int nr_entries,
108 unsigned long ip)
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800109{
Thomas Gleixneraf52bf62019-04-25 11:45:03 +0200110 unsigned int i;
Yang Shif86e4272016-06-03 14:55:38 -0700111
Thomas Gleixneraf52bf62019-04-25 11:45:03 +0200112 for (i = 0; i < nr_entries; i++) {
113 if (entries[i] == ip)
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700114 return true;
115 }
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700116 return false;
117}
118
119static noinline depot_stack_handle_t save_stack(gfp_t flags)
120{
121 unsigned long entries[PAGE_OWNER_STACK_DEPTH];
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700122 depot_stack_handle_t handle;
Thomas Gleixneraf52bf62019-04-25 11:45:03 +0200123 unsigned int nr_entries;
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700124
Thomas Gleixneraf52bf62019-04-25 11:45:03 +0200125 nr_entries = stack_trace_save(entries, ARRAY_SIZE(entries), 2);
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700126
127 /*
Thomas Gleixneraf52bf62019-04-25 11:45:03 +0200128 * We need to check recursion here because our request to
129 * stackdepot could trigger memory allocation to save new
130 * entry. New memory allocation would reach here and call
131 * stack_depot_save_entries() again if we don't catch it. There is
132 * still not enough memory in stackdepot so it would try to
133 * allocate memory again and loop forever.
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700134 */
Thomas Gleixneraf52bf62019-04-25 11:45:03 +0200135 if (check_recursive_alloc(entries, nr_entries, _RET_IP_))
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700136 return dummy_handle;
137
Thomas Gleixneraf52bf62019-04-25 11:45:03 +0200138 handle = stack_depot_save(entries, nr_entries, flags);
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700139 if (!handle)
140 handle = failure_handle;
141
142 return handle;
143}
144
Vlastimil Babka89745582019-09-23 15:34:42 -0700145void __reset_page_owner(struct page *page, unsigned int order)
146{
147 int i;
148 struct page_ext *page_ext;
Vlastimil Babka89745582019-09-23 15:34:42 -0700149 depot_stack_handle_t handle = 0;
150 struct page_owner *page_owner;
151
Vlastimil Babka0fe9a442019-10-14 14:11:44 -0700152 handle = save_stack(GFP_NOWAIT | __GFP_NOWARN);
Vlastimil Babka89745582019-09-23 15:34:42 -0700153
Vlastimil Babka5556cfe2019-10-14 14:11:40 -0700154 page_ext = lookup_page_ext(page);
155 if (unlikely(!page_ext))
156 return;
Vlastimil Babka89745582019-09-23 15:34:42 -0700157 for (i = 0; i < (1 << order); i++) {
Vlastimil Babkafdf3bf82019-10-14 14:11:47 -0700158 __clear_bit(PAGE_EXT_OWNER_ALLOCATED, &page_ext->flags);
Vlastimil Babka0fe9a442019-10-14 14:11:44 -0700159 page_owner = get_page_owner(page_ext);
160 page_owner->free_handle = handle;
Vlastimil Babka5556cfe2019-10-14 14:11:40 -0700161 page_ext = page_ext_next(page_ext);
Vlastimil Babka89745582019-09-23 15:34:42 -0700162 }
163}
164
Vlastimil Babka7e2f2a02019-09-23 15:34:36 -0700165static inline void __set_page_owner_handle(struct page *page,
166 struct page_ext *page_ext, depot_stack_handle_t handle,
167 unsigned int order, gfp_t gfp_mask)
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700168{
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700169 struct page_owner *page_owner;
Vlastimil Babka7e2f2a02019-09-23 15:34:36 -0700170 int i;
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800171
Vlastimil Babka7e2f2a02019-09-23 15:34:36 -0700172 for (i = 0; i < (1 << order); i++) {
173 page_owner = get_page_owner(page_ext);
174 page_owner->handle = handle;
175 page_owner->order = order;
176 page_owner->gfp_mask = gfp_mask;
177 page_owner->last_migrate_reason = -1;
Liam Mark9cc7e96a2020-12-14 19:04:49 -0800178 page_owner->pid = current->pid;
179 page_owner->ts_nsec = local_clock();
Vlastimil Babka7e2f2a02019-09-23 15:34:36 -0700180 __set_bit(PAGE_EXT_OWNER, &page_ext->flags);
Vlastimil Babkafdf3bf82019-10-14 14:11:47 -0700181 __set_bit(PAGE_EXT_OWNER_ALLOCATED, &page_ext->flags);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800182
Vlastimil Babka5556cfe2019-10-14 14:11:40 -0700183 page_ext = page_ext_next(page_ext);
Vlastimil Babka7e2f2a02019-09-23 15:34:36 -0700184 }
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800185}
186
Vlastimil Babkadab4ead2017-09-06 16:20:44 -0700187noinline void __set_page_owner(struct page *page, unsigned int order,
188 gfp_t gfp_mask)
189{
190 struct page_ext *page_ext = lookup_page_ext(page);
191 depot_stack_handle_t handle;
192
193 if (unlikely(!page_ext))
194 return;
195
196 handle = save_stack(gfp_mask);
Vlastimil Babka7e2f2a02019-09-23 15:34:36 -0700197 __set_page_owner_handle(page, page_ext, handle, order, gfp_mask);
Vlastimil Babkadab4ead2017-09-06 16:20:44 -0700198}
199
Vlastimil Babka7cd12b42016-03-15 14:56:18 -0700200void __set_page_owner_migrate_reason(struct page *page, int reason)
201{
202 struct page_ext *page_ext = lookup_page_ext(page);
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700203 struct page_owner *page_owner;
204
Yang Shif86e4272016-06-03 14:55:38 -0700205 if (unlikely(!page_ext))
206 return;
Vlastimil Babka7cd12b42016-03-15 14:56:18 -0700207
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700208 page_owner = get_page_owner(page_ext);
209 page_owner->last_migrate_reason = reason;
Vlastimil Babka7cd12b42016-03-15 14:56:18 -0700210}
211
Matthew Wilcox (Oracle)8fb156c2020-10-15 20:05:29 -0700212void __split_page_owner(struct page *page, unsigned int nr)
Joonsoo Kime2cfc912015-07-17 16:24:18 -0700213{
Joonsoo Kima9627bc2016-07-26 15:23:49 -0700214 int i;
Joonsoo Kime2cfc912015-07-17 16:24:18 -0700215 struct page_ext *page_ext = lookup_page_ext(page);
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700216 struct page_owner *page_owner;
Joonsoo Kime2cfc912015-07-17 16:24:18 -0700217
Joonsoo Kima9627bc2016-07-26 15:23:49 -0700218 if (unlikely(!page_ext))
219 return;
220
Matthew Wilcox (Oracle)8fb156c2020-10-15 20:05:29 -0700221 for (i = 0; i < nr; i++) {
Vlastimil Babka7e2f2a02019-09-23 15:34:36 -0700222 page_owner = get_page_owner(page_ext);
223 page_owner->order = 0;
Vlastimil Babka5556cfe2019-10-14 14:11:40 -0700224 page_ext = page_ext_next(page_ext);
Vlastimil Babka7e2f2a02019-09-23 15:34:36 -0700225 }
Joonsoo Kime2cfc912015-07-17 16:24:18 -0700226}
227
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700228void __copy_page_owner(struct page *oldpage, struct page *newpage)
229{
230 struct page_ext *old_ext = lookup_page_ext(oldpage);
231 struct page_ext *new_ext = lookup_page_ext(newpage);
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700232 struct page_owner *old_page_owner, *new_page_owner;
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700233
Yang Shif86e4272016-06-03 14:55:38 -0700234 if (unlikely(!old_ext || !new_ext))
235 return;
236
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700237 old_page_owner = get_page_owner(old_ext);
238 new_page_owner = get_page_owner(new_ext);
239 new_page_owner->order = old_page_owner->order;
240 new_page_owner->gfp_mask = old_page_owner->gfp_mask;
241 new_page_owner->last_migrate_reason =
242 old_page_owner->last_migrate_reason;
243 new_page_owner->handle = old_page_owner->handle;
Liam Mark9cc7e96a2020-12-14 19:04:49 -0800244 new_page_owner->pid = old_page_owner->pid;
245 new_page_owner->ts_nsec = old_page_owner->ts_nsec;
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700246
247 /*
248 * We don't clear the bit on the oldpage as it's going to be freed
249 * after migration. Until then, the info can be useful in case of
250 * a bug, and the overal stats will be off a bit only temporarily.
251 * Also, migrate_misplaced_transhuge_page() can still fail the
252 * migration and then we want the oldpage to retain the info. But
253 * in that case we also don't need to explicitly clear the info from
254 * the new page, which will be freed.
255 */
256 __set_bit(PAGE_EXT_OWNER, &new_ext->flags);
Vlastimil Babkafdf3bf82019-10-14 14:11:47 -0700257 __set_bit(PAGE_EXT_OWNER_ALLOCATED, &new_ext->flags);
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700258}
259
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700260void pagetypeinfo_showmixedcount_print(struct seq_file *m,
261 pg_data_t *pgdat, struct zone *zone)
262{
263 struct page *page;
264 struct page_ext *page_ext;
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700265 struct page_owner *page_owner;
Miaohe Lin1d2cae82021-02-24 12:01:39 -0800266 unsigned long pfn, block_end_pfn;
267 unsigned long end_pfn = zone_end_pfn(zone);
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700268 unsigned long count[MIGRATE_TYPES] = { 0, };
269 int pageblock_mt, page_mt;
270 int i;
271
272 /* Scan block by block. First and last block may be incomplete */
273 pfn = zone->zone_start_pfn;
274
275 /*
276 * Walk the zone in pageblock_nr_pages steps. If a page block spans
277 * a zone boundary, it will be double counted between zones. This does
278 * not matter as the mixed block count will still be correct
279 */
280 for (; pfn < end_pfn; ) {
Qian Caia26ee562019-10-18 20:19:29 -0700281 page = pfn_to_online_page(pfn);
282 if (!page) {
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700283 pfn = ALIGN(pfn + 1, MAX_ORDER_NR_PAGES);
284 continue;
285 }
286
287 block_end_pfn = ALIGN(pfn + 1, pageblock_nr_pages);
288 block_end_pfn = min(block_end_pfn, end_pfn);
289
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700290 pageblock_mt = get_pageblock_migratetype(page);
291
292 for (; pfn < block_end_pfn; pfn++) {
293 if (!pfn_valid_within(pfn))
294 continue;
295
Qian Caia26ee562019-10-18 20:19:29 -0700296 /* The pageblock is online, no need to recheck. */
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700297 page = pfn_to_page(pfn);
298
299 if (page_zone(page) != zone)
300 continue;
301
302 if (PageBuddy(page)) {
Vinayak Menon727c0802017-07-10 15:49:17 -0700303 unsigned long freepage_order;
304
Matthew Wilcox (Oracle)ab130f912020-10-15 20:10:15 -0700305 freepage_order = buddy_order_unsafe(page);
Vinayak Menon727c0802017-07-10 15:49:17 -0700306 if (freepage_order < MAX_ORDER)
307 pfn += (1UL << freepage_order) - 1;
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700308 continue;
309 }
310
311 if (PageReserved(page))
312 continue;
313
314 page_ext = lookup_page_ext(page);
315 if (unlikely(!page_ext))
316 continue;
317
Vlastimil Babkafdf3bf82019-10-14 14:11:47 -0700318 if (!test_bit(PAGE_EXT_OWNER_ALLOCATED, &page_ext->flags))
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700319 continue;
320
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700321 page_owner = get_page_owner(page_ext);
Wei Yang01c0bfe2020-06-03 15:59:08 -0700322 page_mt = gfp_migratetype(page_owner->gfp_mask);
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700323 if (pageblock_mt != page_mt) {
324 if (is_migrate_cma(pageblock_mt))
325 count[MIGRATE_MOVABLE]++;
326 else
327 count[pageblock_mt]++;
328
329 pfn = block_end_pfn;
330 break;
331 }
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700332 pfn += (1UL << page_owner->order) - 1;
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700333 }
334 }
335
336 /* Print counts */
337 seq_printf(m, "Node %d, zone %8s ", pgdat->node_id, zone->name);
338 for (i = 0; i < MIGRATE_TYPES; i++)
339 seq_printf(m, "%12lu ", count[i]);
340 seq_putc(m, '\n');
341}
342
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800343static ssize_t
344print_page_owner(char __user *buf, size_t count, unsigned long pfn,
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700345 struct page *page, struct page_owner *page_owner,
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700346 depot_stack_handle_t handle)
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800347{
Thomas Gleixneraf52bf62019-04-25 11:45:03 +0200348 int ret, pageblock_mt, page_mt;
349 unsigned long *entries;
350 unsigned int nr_entries;
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800351 char *kbuf;
352
Miles Chenc8f61cf2018-12-28 00:33:21 -0800353 count = min_t(size_t, count, PAGE_SIZE);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800354 kbuf = kmalloc(count, GFP_KERNEL);
355 if (!kbuf)
356 return -ENOMEM;
357
358 ret = snprintf(kbuf, count,
Liam Mark9cc7e96a2020-12-14 19:04:49 -0800359 "Page allocated via order %u, mask %#x(%pGg), pid %d, ts %llu ns\n",
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700360 page_owner->order, page_owner->gfp_mask,
Liam Mark9cc7e96a2020-12-14 19:04:49 -0800361 &page_owner->gfp_mask, page_owner->pid,
362 page_owner->ts_nsec);
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);
Wei Yang01c0bfe2020-06-03 15:59:08 -0700369 page_mt = gfp_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
Thomas Gleixneraf52bf62019-04-25 11:45:03 +0200381 nr_entries = stack_depot_fetch(handle, &entries);
382 ret += stack_trace_snprint(kbuf + ret, count - ret, entries, nr_entries, 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 depot_stack_handle_t handle;
Thomas Gleixneraf52bf62019-04-25 11:45:03 +0200414 unsigned long *entries;
415 unsigned int nr_entries;
Sudip Mukherjee82850272016-06-24 14:50:24 -0700416 gfp_t gfp_mask;
417 int mt;
Vlastimil Babka4e462112016-03-15 14:56:21 -0700418
Yang Shif86e4272016-06-03 14:55:38 -0700419 if (unlikely(!page_ext)) {
420 pr_alert("There is not page extension available.\n");
421 return;
422 }
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700423
424 page_owner = get_page_owner(page_ext);
425 gfp_mask = page_owner->gfp_mask;
Wei Yang01c0bfe2020-06-03 15:59:08 -0700426 mt = gfp_migratetype(gfp_mask);
Yang Shif86e4272016-06-03 14:55:38 -0700427
Vlastimil Babka4e462112016-03-15 14:56:21 -0700428 if (!test_bit(PAGE_EXT_OWNER, &page_ext->flags)) {
Vlastimil Babka373891672019-09-23 15:34:39 -0700429 pr_alert("page_owner info is not present (never set?)\n");
Vlastimil Babka4e462112016-03-15 14:56:21 -0700430 return;
431 }
432
Vlastimil Babkafdf3bf82019-10-14 14:11:47 -0700433 if (test_bit(PAGE_EXT_OWNER_ALLOCATED, &page_ext->flags))
Vlastimil Babka373891672019-09-23 15:34:39 -0700434 pr_alert("page_owner tracks the page as allocated\n");
435 else
436 pr_alert("page_owner tracks the page as freed\n");
437
Liam Mark9cc7e96a2020-12-14 19:04:49 -0800438 pr_alert("page last allocated via order %u, migratetype %s, gfp_mask %#x(%pGg), pid %d, ts %llu\n",
439 page_owner->order, migratetype_names[mt], gfp_mask, &gfp_mask,
440 page_owner->pid, page_owner->ts_nsec);
Vlastimil Babka373891672019-09-23 15:34:39 -0700441
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700442 handle = READ_ONCE(page_owner->handle);
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700443 if (!handle) {
Vlastimil Babka373891672019-09-23 15:34:39 -0700444 pr_alert("page_owner allocation stack trace missing\n");
445 } else {
446 nr_entries = stack_depot_fetch(handle, &entries);
447 stack_trace_print(entries, nr_entries, 0);
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700448 }
449
Vlastimil Babka89745582019-09-23 15:34:42 -0700450 handle = READ_ONCE(page_owner->free_handle);
451 if (!handle) {
452 pr_alert("page_owner free stack trace missing\n");
453 } else {
454 nr_entries = stack_depot_fetch(handle, &entries);
455 pr_alert("page last free stack trace:\n");
456 stack_trace_print(entries, nr_entries, 0);
457 }
Vlastimil Babka89745582019-09-23 15:34:42 -0700458
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700459 if (page_owner->last_migrate_reason != -1)
Vlastimil Babka4e462112016-03-15 14:56:21 -0700460 pr_alert("page has been migrated, last migrate reason: %s\n",
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700461 migrate_reason_names[page_owner->last_migrate_reason]);
Vlastimil Babka4e462112016-03-15 14:56:21 -0700462}
463
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800464static ssize_t
465read_page_owner(struct file *file, char __user *buf, size_t count, loff_t *ppos)
466{
467 unsigned long pfn;
468 struct page *page;
469 struct page_ext *page_ext;
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700470 struct page_owner *page_owner;
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700471 depot_stack_handle_t handle;
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800472
Vlastimil Babka7dd80b82016-03-15 14:56:12 -0700473 if (!static_branch_unlikely(&page_owner_inited))
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800474 return -EINVAL;
475
476 page = NULL;
477 pfn = min_low_pfn + *ppos;
478
479 /* Find a valid PFN or the start of a MAX_ORDER_NR_PAGES area */
480 while (!pfn_valid(pfn) && (pfn & (MAX_ORDER_NR_PAGES - 1)) != 0)
481 pfn++;
482
483 drain_all_pages(NULL);
484
485 /* Find an allocated page */
486 for (; pfn < max_pfn; pfn++) {
487 /*
488 * If the new page is in a new MAX_ORDER_NR_PAGES area,
489 * validate the area as existing, skip it if not
490 */
491 if ((pfn & (MAX_ORDER_NR_PAGES - 1)) == 0 && !pfn_valid(pfn)) {
492 pfn += MAX_ORDER_NR_PAGES - 1;
493 continue;
494 }
495
496 /* Check for holes within a MAX_ORDER area */
497 if (!pfn_valid_within(pfn))
498 continue;
499
500 page = pfn_to_page(pfn);
501 if (PageBuddy(page)) {
Matthew Wilcox (Oracle)ab130f912020-10-15 20:10:15 -0700502 unsigned long freepage_order = buddy_order_unsafe(page);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800503
504 if (freepage_order < MAX_ORDER)
505 pfn += (1UL << freepage_order) - 1;
506 continue;
507 }
508
509 page_ext = lookup_page_ext(page);
Yang Shif86e4272016-06-03 14:55:38 -0700510 if (unlikely(!page_ext))
511 continue;
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800512
513 /*
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800514 * Some pages could be missed by concurrent allocation or free,
515 * because we don't hold the zone lock.
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800516 */
517 if (!test_bit(PAGE_EXT_OWNER, &page_ext->flags))
518 continue;
519
Vlastimil Babka373891672019-09-23 15:34:39 -0700520 /*
521 * Although we do have the info about past allocation of free
522 * pages, it's not relevant for current memory usage.
523 */
Vlastimil Babkafdf3bf82019-10-14 14:11:47 -0700524 if (!test_bit(PAGE_EXT_OWNER_ALLOCATED, &page_ext->flags))
Vlastimil Babka373891672019-09-23 15:34:39 -0700525 continue;
526
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700527 page_owner = get_page_owner(page_ext);
528
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700529 /*
Vlastimil Babka7e2f2a02019-09-23 15:34:36 -0700530 * Don't print "tail" pages of high-order allocations as that
531 * would inflate the stats.
532 */
533 if (!IS_ALIGNED(pfn, 1 << page_owner->order))
534 continue;
535
536 /*
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700537 * Access to page_ext->handle isn't synchronous so we should
538 * be careful to access it.
539 */
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700540 handle = READ_ONCE(page_owner->handle);
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700541 if (!handle)
542 continue;
543
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800544 /* Record the next PFN to read in the file offset */
545 *ppos = (pfn - min_low_pfn) + 1;
546
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700547 return print_page_owner(buf, count, pfn, page,
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700548 page_owner, handle);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800549 }
550
551 return 0;
552}
553
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800554static void init_pages_in_zone(pg_data_t *pgdat, struct zone *zone)
555{
Oscar Salvador6787c1d2018-01-31 16:20:11 -0800556 unsigned long pfn = zone->zone_start_pfn;
557 unsigned long end_pfn = zone_end_pfn(zone);
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800558 unsigned long count = 0;
559
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800560 /*
561 * Walk the zone in pageblock_nr_pages steps. If a page block spans
562 * a zone boundary, it will be double counted between zones. This does
563 * not matter as the mixed block count will still be correct
564 */
565 for (; pfn < end_pfn; ) {
Oscar Salvador6787c1d2018-01-31 16:20:11 -0800566 unsigned long block_end_pfn;
567
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800568 if (!pfn_valid(pfn)) {
569 pfn = ALIGN(pfn + 1, MAX_ORDER_NR_PAGES);
570 continue;
571 }
572
573 block_end_pfn = ALIGN(pfn + 1, pageblock_nr_pages);
574 block_end_pfn = min(block_end_pfn, end_pfn);
575
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800576 for (; pfn < block_end_pfn; pfn++) {
Oscar Salvador6787c1d2018-01-31 16:20:11 -0800577 struct page *page;
578 struct page_ext *page_ext;
579
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800580 if (!pfn_valid_within(pfn))
581 continue;
582
583 page = pfn_to_page(pfn);
584
Joonsoo Kim9d43f5a2016-05-19 17:12:13 -0700585 if (page_zone(page) != zone)
586 continue;
587
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800588 /*
Vlastimil Babka10903022017-09-06 16:20:51 -0700589 * To avoid having to grab zone->lock, be a little
590 * careful when reading buddy page order. The only
591 * danger is that we skip too much and potentially miss
592 * some early allocated pages, which is better than
593 * heavy lock contention.
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800594 */
595 if (PageBuddy(page)) {
Matthew Wilcox (Oracle)ab130f912020-10-15 20:10:15 -0700596 unsigned long order = buddy_order_unsafe(page);
Vlastimil Babka10903022017-09-06 16:20:51 -0700597
598 if (order > 0 && order < MAX_ORDER)
599 pfn += (1UL << order) - 1;
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800600 continue;
601 }
602
603 if (PageReserved(page))
604 continue;
605
606 page_ext = lookup_page_ext(page);
Yang Shif86e4272016-06-03 14:55:38 -0700607 if (unlikely(!page_ext))
608 continue;
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800609
Vlastimil Babkadab4ead2017-09-06 16:20:44 -0700610 /* Maybe overlapping zone */
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800611 if (test_bit(PAGE_EXT_OWNER, &page_ext->flags))
612 continue;
613
614 /* Found early allocated page */
Vlastimil Babka7e2f2a02019-09-23 15:34:36 -0700615 __set_page_owner_handle(page, page_ext, early_handle,
616 0, 0);
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800617 count++;
618 }
Vlastimil Babka10903022017-09-06 16:20:51 -0700619 cond_resched();
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800620 }
621
622 pr_info("Node %d, zone %8s: page owner found early allocated %lu pages\n",
623 pgdat->node_id, zone->name, count);
624}
625
626static void init_zones_in_node(pg_data_t *pgdat)
627{
628 struct zone *zone;
629 struct zone *node_zones = pgdat->node_zones;
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800630
631 for (zone = node_zones; zone - node_zones < MAX_NR_ZONES; ++zone) {
632 if (!populated_zone(zone))
633 continue;
634
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800635 init_pages_in_zone(pgdat, zone);
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800636 }
637}
638
639static void init_early_allocated_pages(void)
640{
641 pg_data_t *pgdat;
642
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800643 for_each_online_pgdat(pgdat)
644 init_zones_in_node(pgdat);
645}
646
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800647static const struct file_operations proc_page_owner_operations = {
648 .read = read_page_owner,
649};
650
651static int __init pageowner_init(void)
652{
Vlastimil Babka7dd80b82016-03-15 14:56:12 -0700653 if (!static_branch_unlikely(&page_owner_inited)) {
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800654 pr_info("page_owner is disabled\n");
655 return 0;
656 }
657
Greg Kroah-Hartmand9f79792019-03-05 15:46:09 -0800658 debugfs_create_file("page_owner", 0400, NULL, NULL,
659 &proc_page_owner_operations);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800660
Greg Kroah-Hartmand9f79792019-03-05 15:46:09 -0800661 return 0;
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800662}
Paul Gortmaker44c5af92015-05-01 21:57:34 -0400663late_initcall(pageowner_init)