blob: 99e360df9465237f1899f4f58958573ac0fa781a [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;
Georgi Djakov866b4852021-04-29 22:54:57 -070030 u64 free_ts_nsec;
Liam Mark9cc7e96a2020-12-14 19:04:49 -080031 pid_t pid;
Joonsoo Kim9300d8d2016-10-07 16:58:30 -070032};
33
Vlastimil Babka0fe9a442019-10-14 14:11:44 -070034static bool page_owner_enabled = false;
Vlastimil Babka7dd80b82016-03-15 14:56:12 -070035DEFINE_STATIC_KEY_FALSE(page_owner_inited);
Joonsoo Kim48c96a32014-12-12 16:56:01 -080036
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070037static depot_stack_handle_t dummy_handle;
38static depot_stack_handle_t failure_handle;
Vlastimil Babkadab4ead2017-09-06 16:20:44 -070039static depot_stack_handle_t early_handle;
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070040
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -080041static void init_early_allocated_pages(void);
42
Dou Liyang11731942018-04-05 16:23:49 -070043static int __init early_page_owner_param(char *buf)
Joonsoo Kim48c96a32014-12-12 16:56:01 -080044{
Sergei Trofimovich608b5d62021-04-29 22:55:05 -070045 return kstrtobool(buf, &page_owner_enabled);
Joonsoo Kim48c96a32014-12-12 16:56:01 -080046}
47early_param("page_owner", early_page_owner_param);
48
Ting Liucab0a7c2022-01-14 14:09:28 -080049static __init bool need_page_owner(void)
Joonsoo Kim48c96a32014-12-12 16:56:01 -080050{
Vlastimil Babka0fe9a442019-10-14 14:11:44 -070051 return page_owner_enabled;
Joonsoo Kim48c96a32014-12-12 16:56:01 -080052}
53
Vlastimil Babkadab4ead2017-09-06 16:20:44 -070054static __always_inline depot_stack_handle_t create_dummy_stack(void)
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070055{
56 unsigned long entries[4];
Thomas Gleixneraf52bf62019-04-25 11:45:03 +020057 unsigned int nr_entries;
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070058
Thomas Gleixneraf52bf62019-04-25 11:45:03 +020059 nr_entries = stack_trace_save(entries, ARRAY_SIZE(entries), 0);
60 return stack_depot_save(entries, nr_entries, GFP_KERNEL);
Vlastimil Babkadab4ead2017-09-06 16:20:44 -070061}
62
63static noinline void register_dummy_stack(void)
64{
65 dummy_handle = create_dummy_stack();
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070066}
67
68static noinline void register_failure_stack(void)
69{
Vlastimil Babkadab4ead2017-09-06 16:20:44 -070070 failure_handle = create_dummy_stack();
71}
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070072
Vlastimil Babkadab4ead2017-09-06 16:20:44 -070073static noinline void register_early_stack(void)
74{
75 early_handle = create_dummy_stack();
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070076}
77
Ting Liucab0a7c2022-01-14 14:09:28 -080078static __init void init_page_owner(void)
Joonsoo Kim48c96a32014-12-12 16:56:01 -080079{
Vlastimil Babka0fe9a442019-10-14 14:11:44 -070080 if (!page_owner_enabled)
Joonsoo Kim48c96a32014-12-12 16:56:01 -080081 return;
82
Vlastimil Babka2dba5eb2022-01-21 22:14:27 -080083 stack_depot_init();
84
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -070085 register_dummy_stack();
86 register_failure_stack();
Vlastimil Babkadab4ead2017-09-06 16:20:44 -070087 register_early_stack();
Vlastimil Babka7dd80b82016-03-15 14:56:12 -070088 static_branch_enable(&page_owner_inited);
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -080089 init_early_allocated_pages();
Joonsoo Kim48c96a32014-12-12 16:56:01 -080090}
91
92struct page_ext_operations page_owner_ops = {
Joonsoo Kim9300d8d2016-10-07 16:58:30 -070093 .size = sizeof(struct page_owner),
Joonsoo Kim48c96a32014-12-12 16:56:01 -080094 .need = need_page_owner,
95 .init = init_page_owner,
96};
97
Joonsoo Kim9300d8d2016-10-07 16:58:30 -070098static inline struct page_owner *get_page_owner(struct page_ext *page_ext)
99{
100 return (void *)page_ext + page_owner_ops.offset;
101}
102
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700103static noinline depot_stack_handle_t save_stack(gfp_t flags)
104{
105 unsigned long entries[PAGE_OWNER_STACK_DEPTH];
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700106 depot_stack_handle_t handle;
Thomas Gleixneraf52bf62019-04-25 11:45:03 +0200107 unsigned int nr_entries;
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700108
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700109 /*
Sergei Trofimovich8e9b16c2021-04-29 22:55:08 -0700110 * Avoid recursion.
111 *
112 * Sometimes page metadata allocation tracking requires more
113 * memory to be allocated:
114 * - when new stack trace is saved to stack depot
115 * - when backtrace itself is calculated (ia64)
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700116 */
Sergei Trofimovich8e9b16c2021-04-29 22:55:08 -0700117 if (current->in_page_owner)
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700118 return dummy_handle;
Sergei Trofimovich8e9b16c2021-04-29 22:55:08 -0700119 current->in_page_owner = 1;
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700120
Sergei Trofimovich8e9b16c2021-04-29 22:55:08 -0700121 nr_entries = stack_trace_save(entries, ARRAY_SIZE(entries), 2);
Thomas Gleixneraf52bf62019-04-25 11:45:03 +0200122 handle = stack_depot_save(entries, nr_entries, flags);
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700123 if (!handle)
124 handle = failure_handle;
125
Sergei Trofimovich8e9b16c2021-04-29 22:55:08 -0700126 current->in_page_owner = 0;
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700127 return handle;
128}
129
Yixuan Cao0093de62021-11-10 20:32:30 -0800130void __reset_page_owner(struct page *page, unsigned short order)
Vlastimil Babka89745582019-09-23 15:34:42 -0700131{
132 int i;
133 struct page_ext *page_ext;
Sergei Trofimovichfab765c2021-04-29 22:55:02 -0700134 depot_stack_handle_t handle;
Vlastimil Babka89745582019-09-23 15:34:42 -0700135 struct page_owner *page_owner;
Georgi Djakov866b4852021-04-29 22:54:57 -0700136 u64 free_ts_nsec = local_clock();
Vlastimil Babka89745582019-09-23 15:34:42 -0700137
Vlastimil Babka5556cfe2019-10-14 14:11:40 -0700138 page_ext = lookup_page_ext(page);
139 if (unlikely(!page_ext))
140 return;
Sergei Trofimovichfab765c2021-04-29 22:55:02 -0700141
142 handle = save_stack(GFP_NOWAIT | __GFP_NOWARN);
Vlastimil Babka89745582019-09-23 15:34:42 -0700143 for (i = 0; i < (1 << order); i++) {
Vlastimil Babkafdf3bf82019-10-14 14:11:47 -0700144 __clear_bit(PAGE_EXT_OWNER_ALLOCATED, &page_ext->flags);
Vlastimil Babka0fe9a442019-10-14 14:11:44 -0700145 page_owner = get_page_owner(page_ext);
146 page_owner->free_handle = handle;
Georgi Djakov866b4852021-04-29 22:54:57 -0700147 page_owner->free_ts_nsec = free_ts_nsec;
Vlastimil Babka5556cfe2019-10-14 14:11:40 -0700148 page_ext = page_ext_next(page_ext);
Vlastimil Babka89745582019-09-23 15:34:42 -0700149 }
150}
151
zhongjiang-ali64ea78d2021-04-29 22:55:00 -0700152static inline void __set_page_owner_handle(struct page_ext *page_ext,
153 depot_stack_handle_t handle,
Yixuan Cao0093de62021-11-10 20:32:30 -0800154 unsigned short order, gfp_t gfp_mask)
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700155{
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700156 struct page_owner *page_owner;
Vlastimil Babka7e2f2a02019-09-23 15:34:36 -0700157 int i;
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800158
Vlastimil Babka7e2f2a02019-09-23 15:34:36 -0700159 for (i = 0; i < (1 << order); i++) {
160 page_owner = get_page_owner(page_ext);
161 page_owner->handle = handle;
162 page_owner->order = order;
163 page_owner->gfp_mask = gfp_mask;
164 page_owner->last_migrate_reason = -1;
Liam Mark9cc7e96a2020-12-14 19:04:49 -0800165 page_owner->pid = current->pid;
166 page_owner->ts_nsec = local_clock();
Vlastimil Babka7e2f2a02019-09-23 15:34:36 -0700167 __set_bit(PAGE_EXT_OWNER, &page_ext->flags);
Vlastimil Babkafdf3bf82019-10-14 14:11:47 -0700168 __set_bit(PAGE_EXT_OWNER_ALLOCATED, &page_ext->flags);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800169
Vlastimil Babka5556cfe2019-10-14 14:11:40 -0700170 page_ext = page_ext_next(page_ext);
Vlastimil Babka7e2f2a02019-09-23 15:34:36 -0700171 }
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800172}
173
Yixuan Cao0093de62021-11-10 20:32:30 -0800174noinline void __set_page_owner(struct page *page, unsigned short order,
Vlastimil Babkadab4ead2017-09-06 16:20:44 -0700175 gfp_t gfp_mask)
176{
177 struct page_ext *page_ext = lookup_page_ext(page);
178 depot_stack_handle_t handle;
179
180 if (unlikely(!page_ext))
181 return;
182
183 handle = save_stack(gfp_mask);
zhongjiang-ali64ea78d2021-04-29 22:55:00 -0700184 __set_page_owner_handle(page_ext, handle, order, gfp_mask);
Vlastimil Babkadab4ead2017-09-06 16:20:44 -0700185}
186
Vlastimil Babka7cd12b42016-03-15 14:56:18 -0700187void __set_page_owner_migrate_reason(struct page *page, int reason)
188{
189 struct page_ext *page_ext = lookup_page_ext(page);
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700190 struct page_owner *page_owner;
191
Yang Shif86e4272016-06-03 14:55:38 -0700192 if (unlikely(!page_ext))
193 return;
Vlastimil Babka7cd12b42016-03-15 14:56:18 -0700194
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700195 page_owner = get_page_owner(page_ext);
196 page_owner->last_migrate_reason = reason;
Vlastimil Babka7cd12b42016-03-15 14:56:18 -0700197}
198
Matthew Wilcox (Oracle)8fb156c2020-10-15 20:05:29 -0700199void __split_page_owner(struct page *page, unsigned int nr)
Joonsoo Kime2cfc912015-07-17 16:24:18 -0700200{
Joonsoo Kima9627bc2016-07-26 15:23:49 -0700201 int i;
Joonsoo Kime2cfc912015-07-17 16:24:18 -0700202 struct page_ext *page_ext = lookup_page_ext(page);
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700203 struct page_owner *page_owner;
Joonsoo Kime2cfc912015-07-17 16:24:18 -0700204
Joonsoo Kima9627bc2016-07-26 15:23:49 -0700205 if (unlikely(!page_ext))
206 return;
207
Matthew Wilcox (Oracle)8fb156c2020-10-15 20:05:29 -0700208 for (i = 0; i < nr; i++) {
Vlastimil Babka7e2f2a02019-09-23 15:34:36 -0700209 page_owner = get_page_owner(page_ext);
210 page_owner->order = 0;
Vlastimil Babka5556cfe2019-10-14 14:11:40 -0700211 page_ext = page_ext_next(page_ext);
Vlastimil Babka7e2f2a02019-09-23 15:34:36 -0700212 }
Joonsoo Kime2cfc912015-07-17 16:24:18 -0700213}
214
Matthew Wilcox (Oracle)19138342021-05-07 15:26:29 -0400215void __folio_copy_owner(struct folio *newfolio, struct folio *old)
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700216{
Matthew Wilcox (Oracle)19138342021-05-07 15:26:29 -0400217 struct page_ext *old_ext = lookup_page_ext(&old->page);
218 struct page_ext *new_ext = lookup_page_ext(&newfolio->page);
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700219 struct page_owner *old_page_owner, *new_page_owner;
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700220
Yang Shif86e4272016-06-03 14:55:38 -0700221 if (unlikely(!old_ext || !new_ext))
222 return;
223
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700224 old_page_owner = get_page_owner(old_ext);
225 new_page_owner = get_page_owner(new_ext);
226 new_page_owner->order = old_page_owner->order;
227 new_page_owner->gfp_mask = old_page_owner->gfp_mask;
228 new_page_owner->last_migrate_reason =
229 old_page_owner->last_migrate_reason;
230 new_page_owner->handle = old_page_owner->handle;
Liam Mark9cc7e96a2020-12-14 19:04:49 -0800231 new_page_owner->pid = old_page_owner->pid;
232 new_page_owner->ts_nsec = old_page_owner->ts_nsec;
Georgi Djakov866b4852021-04-29 22:54:57 -0700233 new_page_owner->free_ts_nsec = old_page_owner->ts_nsec;
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700234
235 /*
Matthew Wilcox (Oracle)19138342021-05-07 15:26:29 -0400236 * We don't clear the bit on the old folio as it's going to be freed
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700237 * after migration. Until then, the info can be useful in case of
Ingo Molnarf0953a12021-05-06 18:06:47 -0700238 * a bug, and the overall stats will be off a bit only temporarily.
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700239 * Also, migrate_misplaced_transhuge_page() can still fail the
Matthew Wilcox (Oracle)19138342021-05-07 15:26:29 -0400240 * migration and then we want the old folio to retain the info. But
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700241 * in that case we also don't need to explicitly clear the info from
242 * the new page, which will be freed.
243 */
244 __set_bit(PAGE_EXT_OWNER, &new_ext->flags);
Vlastimil Babkafdf3bf82019-10-14 14:11:47 -0700245 __set_bit(PAGE_EXT_OWNER_ALLOCATED, &new_ext->flags);
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700246}
247
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700248void pagetypeinfo_showmixedcount_print(struct seq_file *m,
249 pg_data_t *pgdat, struct zone *zone)
250{
251 struct page *page;
252 struct page_ext *page_ext;
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700253 struct page_owner *page_owner;
Miaohe Lin1d2cae82021-02-24 12:01:39 -0800254 unsigned long pfn, block_end_pfn;
255 unsigned long end_pfn = zone_end_pfn(zone);
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700256 unsigned long count[MIGRATE_TYPES] = { 0, };
257 int pageblock_mt, page_mt;
258 int i;
259
260 /* Scan block by block. First and last block may be incomplete */
261 pfn = zone->zone_start_pfn;
262
263 /*
264 * Walk the zone in pageblock_nr_pages steps. If a page block spans
265 * a zone boundary, it will be double counted between zones. This does
266 * not matter as the mixed block count will still be correct
267 */
268 for (; pfn < end_pfn; ) {
Qian Caia26ee562019-10-18 20:19:29 -0700269 page = pfn_to_online_page(pfn);
270 if (!page) {
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700271 pfn = ALIGN(pfn + 1, MAX_ORDER_NR_PAGES);
272 continue;
273 }
274
275 block_end_pfn = ALIGN(pfn + 1, pageblock_nr_pages);
276 block_end_pfn = min(block_end_pfn, end_pfn);
277
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700278 pageblock_mt = get_pageblock_migratetype(page);
279
280 for (; pfn < block_end_pfn; pfn++) {
Qian Caia26ee562019-10-18 20:19:29 -0700281 /* The pageblock is online, no need to recheck. */
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700282 page = pfn_to_page(pfn);
283
284 if (page_zone(page) != zone)
285 continue;
286
287 if (PageBuddy(page)) {
Vinayak Menon727c0802017-07-10 15:49:17 -0700288 unsigned long freepage_order;
289
Matthew Wilcox (Oracle)ab130f912020-10-15 20:10:15 -0700290 freepage_order = buddy_order_unsafe(page);
Vinayak Menon727c0802017-07-10 15:49:17 -0700291 if (freepage_order < MAX_ORDER)
292 pfn += (1UL << freepage_order) - 1;
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700293 continue;
294 }
295
296 if (PageReserved(page))
297 continue;
298
299 page_ext = lookup_page_ext(page);
300 if (unlikely(!page_ext))
301 continue;
302
Vlastimil Babkafdf3bf82019-10-14 14:11:47 -0700303 if (!test_bit(PAGE_EXT_OWNER_ALLOCATED, &page_ext->flags))
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700304 continue;
305
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700306 page_owner = get_page_owner(page_ext);
Wei Yang01c0bfe2020-06-03 15:59:08 -0700307 page_mt = gfp_migratetype(page_owner->gfp_mask);
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700308 if (pageblock_mt != page_mt) {
309 if (is_migrate_cma(pageblock_mt))
310 count[MIGRATE_MOVABLE]++;
311 else
312 count[pageblock_mt]++;
313
314 pfn = block_end_pfn;
315 break;
316 }
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700317 pfn += (1UL << page_owner->order) - 1;
Joonsoo Kime2f612e2016-10-07 16:58:21 -0700318 }
319 }
320
321 /* Print counts */
322 seq_printf(m, "Node %d, zone %8s ", pgdat->node_id, zone->name);
323 for (i = 0; i < MIGRATE_TYPES; i++)
324 seq_printf(m, "%12lu ", count[i]);
325 seq_putc(m, '\n');
326}
327
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800328static ssize_t
329print_page_owner(char __user *buf, size_t count, unsigned long pfn,
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700330 struct page *page, struct page_owner *page_owner,
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700331 depot_stack_handle_t handle)
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800332{
Thomas Gleixneraf52bf62019-04-25 11:45:03 +0200333 int ret, pageblock_mt, page_mt;
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800334 char *kbuf;
335
Miles Chenc8f61cf2018-12-28 00:33:21 -0800336 count = min_t(size_t, count, PAGE_SIZE);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800337 kbuf = kmalloc(count, GFP_KERNEL);
338 if (!kbuf)
339 return -ENOMEM;
340
341 ret = snprintf(kbuf, count,
Georgi Djakov866b4852021-04-29 22:54:57 -0700342 "Page allocated via order %u, mask %#x(%pGg), pid %d, ts %llu ns, free_ts %llu ns\n",
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700343 page_owner->order, page_owner->gfp_mask,
Liam Mark9cc7e96a2020-12-14 19:04:49 -0800344 &page_owner->gfp_mask, page_owner->pid,
Georgi Djakov866b4852021-04-29 22:54:57 -0700345 page_owner->ts_nsec, page_owner->free_ts_nsec);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800346
347 if (ret >= count)
348 goto err;
349
350 /* Print information relevant to grouping pages by mobility */
Mel Gorman0b423ca2016-05-19 17:14:27 -0700351 pageblock_mt = get_pageblock_migratetype(page);
Wei Yang01c0bfe2020-06-03 15:59:08 -0700352 page_mt = gfp_migratetype(page_owner->gfp_mask);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800353 ret += snprintf(kbuf + ret, count - ret,
Matthew Wilcox (Oracle)23efd082021-10-19 15:26:21 +0100354 "PFN %lu type %s Block %lu type %s Flags %pGp\n",
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800355 pfn,
Vlastimil Babka60f30352016-03-15 14:56:08 -0700356 migratetype_names[page_mt],
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800357 pfn >> pageblock_order,
Vlastimil Babka60f30352016-03-15 14:56:08 -0700358 migratetype_names[pageblock_mt],
Matthew Wilcox (Oracle)23efd082021-10-19 15:26:21 +0100359 &page->flags);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800360
361 if (ret >= count)
362 goto err;
363
Imran Khan0f68d452021-11-08 18:33:16 -0800364 ret += stack_depot_snprint(handle, kbuf + ret, count - ret, 0);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800365 if (ret >= count)
366 goto err;
367
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700368 if (page_owner->last_migrate_reason != -1) {
Vlastimil Babka7cd12b42016-03-15 14:56:18 -0700369 ret += snprintf(kbuf + ret, count - ret,
370 "Page has been migrated, last migrate reason: %s\n",
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700371 migrate_reason_names[page_owner->last_migrate_reason]);
Vlastimil Babka7cd12b42016-03-15 14:56:18 -0700372 if (ret >= count)
373 goto err;
374 }
375
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800376 ret += snprintf(kbuf + ret, count - ret, "\n");
377 if (ret >= count)
378 goto err;
379
380 if (copy_to_user(buf, kbuf, ret))
381 ret = -EFAULT;
382
383 kfree(kbuf);
384 return ret;
385
386err:
387 kfree(kbuf);
388 return -ENOMEM;
389}
390
Matthew Wilcox (Oracle)8bf6f452021-06-28 19:41:16 -0700391void __dump_page_owner(const struct page *page)
Vlastimil Babka4e462112016-03-15 14:56:21 -0700392{
393 struct page_ext *page_ext = lookup_page_ext(page);
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700394 struct page_owner *page_owner;
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700395 depot_stack_handle_t handle;
Sudip Mukherjee82850272016-06-24 14:50:24 -0700396 gfp_t gfp_mask;
397 int mt;
Vlastimil Babka4e462112016-03-15 14:56:21 -0700398
Yang Shif86e4272016-06-03 14:55:38 -0700399 if (unlikely(!page_ext)) {
400 pr_alert("There is not page extension available.\n");
401 return;
402 }
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700403
404 page_owner = get_page_owner(page_ext);
405 gfp_mask = page_owner->gfp_mask;
Wei Yang01c0bfe2020-06-03 15:59:08 -0700406 mt = gfp_migratetype(gfp_mask);
Yang Shif86e4272016-06-03 14:55:38 -0700407
Vlastimil Babka4e462112016-03-15 14:56:21 -0700408 if (!test_bit(PAGE_EXT_OWNER, &page_ext->flags)) {
Vlastimil Babka373891672019-09-23 15:34:39 -0700409 pr_alert("page_owner info is not present (never set?)\n");
Vlastimil Babka4e462112016-03-15 14:56:21 -0700410 return;
411 }
412
Vlastimil Babkafdf3bf82019-10-14 14:11:47 -0700413 if (test_bit(PAGE_EXT_OWNER_ALLOCATED, &page_ext->flags))
Vlastimil Babka373891672019-09-23 15:34:39 -0700414 pr_alert("page_owner tracks the page as allocated\n");
415 else
416 pr_alert("page_owner tracks the page as freed\n");
417
Georgi Djakov866b4852021-04-29 22:54:57 -0700418 pr_alert("page last allocated via order %u, migratetype %s, gfp_mask %#x(%pGg), pid %d, ts %llu, free_ts %llu\n",
Liam Mark9cc7e96a2020-12-14 19:04:49 -0800419 page_owner->order, migratetype_names[mt], gfp_mask, &gfp_mask,
Georgi Djakov866b4852021-04-29 22:54:57 -0700420 page_owner->pid, page_owner->ts_nsec, page_owner->free_ts_nsec);
Vlastimil Babka373891672019-09-23 15:34:39 -0700421
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700422 handle = READ_ONCE(page_owner->handle);
Imran Khan505be482021-11-08 18:33:12 -0800423 if (!handle)
Vlastimil Babka373891672019-09-23 15:34:39 -0700424 pr_alert("page_owner allocation stack trace missing\n");
Imran Khan505be482021-11-08 18:33:12 -0800425 else
426 stack_depot_print(handle);
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700427
Vlastimil Babka89745582019-09-23 15:34:42 -0700428 handle = READ_ONCE(page_owner->free_handle);
429 if (!handle) {
430 pr_alert("page_owner free stack trace missing\n");
431 } else {
Vlastimil Babka89745582019-09-23 15:34:42 -0700432 pr_alert("page last free stack trace:\n");
Imran Khan505be482021-11-08 18:33:12 -0800433 stack_depot_print(handle);
Vlastimil Babka89745582019-09-23 15:34:42 -0700434 }
Vlastimil Babka89745582019-09-23 15:34:42 -0700435
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700436 if (page_owner->last_migrate_reason != -1)
Vlastimil Babka4e462112016-03-15 14:56:21 -0700437 pr_alert("page has been migrated, last migrate reason: %s\n",
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700438 migrate_reason_names[page_owner->last_migrate_reason]);
Vlastimil Babka4e462112016-03-15 14:56:21 -0700439}
440
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800441static ssize_t
442read_page_owner(struct file *file, char __user *buf, size_t count, loff_t *ppos)
443{
444 unsigned long pfn;
445 struct page *page;
446 struct page_ext *page_ext;
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700447 struct page_owner *page_owner;
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700448 depot_stack_handle_t handle;
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800449
Vlastimil Babka7dd80b82016-03-15 14:56:12 -0700450 if (!static_branch_unlikely(&page_owner_inited))
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800451 return -EINVAL;
452
453 page = NULL;
454 pfn = min_low_pfn + *ppos;
455
456 /* Find a valid PFN or the start of a MAX_ORDER_NR_PAGES area */
457 while (!pfn_valid(pfn) && (pfn & (MAX_ORDER_NR_PAGES - 1)) != 0)
458 pfn++;
459
460 drain_all_pages(NULL);
461
462 /* Find an allocated page */
463 for (; pfn < max_pfn; pfn++) {
464 /*
465 * If the new page is in a new MAX_ORDER_NR_PAGES area,
466 * validate the area as existing, skip it if not
467 */
468 if ((pfn & (MAX_ORDER_NR_PAGES - 1)) == 0 && !pfn_valid(pfn)) {
469 pfn += MAX_ORDER_NR_PAGES - 1;
470 continue;
471 }
472
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800473 page = pfn_to_page(pfn);
474 if (PageBuddy(page)) {
Matthew Wilcox (Oracle)ab130f912020-10-15 20:10:15 -0700475 unsigned long freepage_order = buddy_order_unsafe(page);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800476
477 if (freepage_order < MAX_ORDER)
478 pfn += (1UL << freepage_order) - 1;
479 continue;
480 }
481
482 page_ext = lookup_page_ext(page);
Yang Shif86e4272016-06-03 14:55:38 -0700483 if (unlikely(!page_ext))
484 continue;
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800485
486 /*
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800487 * Some pages could be missed by concurrent allocation or free,
488 * because we don't hold the zone lock.
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800489 */
490 if (!test_bit(PAGE_EXT_OWNER, &page_ext->flags))
491 continue;
492
Vlastimil Babka373891672019-09-23 15:34:39 -0700493 /*
494 * Although we do have the info about past allocation of free
495 * pages, it's not relevant for current memory usage.
496 */
Vlastimil Babkafdf3bf82019-10-14 14:11:47 -0700497 if (!test_bit(PAGE_EXT_OWNER_ALLOCATED, &page_ext->flags))
Vlastimil Babka373891672019-09-23 15:34:39 -0700498 continue;
499
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700500 page_owner = get_page_owner(page_ext);
501
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700502 /*
Vlastimil Babka7e2f2a02019-09-23 15:34:36 -0700503 * Don't print "tail" pages of high-order allocations as that
504 * would inflate the stats.
505 */
506 if (!IS_ALIGNED(pfn, 1 << page_owner->order))
507 continue;
508
509 /*
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700510 * Access to page_ext->handle isn't synchronous so we should
511 * be careful to access it.
512 */
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700513 handle = READ_ONCE(page_owner->handle);
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700514 if (!handle)
515 continue;
516
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800517 /* Record the next PFN to read in the file offset */
518 *ppos = (pfn - min_low_pfn) + 1;
519
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -0700520 return print_page_owner(buf, count, pfn, page,
Joonsoo Kim9300d8d2016-10-07 16:58:30 -0700521 page_owner, handle);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800522 }
523
524 return 0;
525}
526
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800527static void init_pages_in_zone(pg_data_t *pgdat, struct zone *zone)
528{
Oscar Salvador6787c1d2018-01-31 16:20:11 -0800529 unsigned long pfn = zone->zone_start_pfn;
530 unsigned long end_pfn = zone_end_pfn(zone);
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800531 unsigned long count = 0;
532
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800533 /*
534 * Walk the zone in pageblock_nr_pages steps. If a page block spans
535 * a zone boundary, it will be double counted between zones. This does
536 * not matter as the mixed block count will still be correct
537 */
538 for (; pfn < end_pfn; ) {
Oscar Salvador6787c1d2018-01-31 16:20:11 -0800539 unsigned long block_end_pfn;
540
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800541 if (!pfn_valid(pfn)) {
542 pfn = ALIGN(pfn + 1, MAX_ORDER_NR_PAGES);
543 continue;
544 }
545
546 block_end_pfn = ALIGN(pfn + 1, pageblock_nr_pages);
547 block_end_pfn = min(block_end_pfn, end_pfn);
548
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800549 for (; pfn < block_end_pfn; pfn++) {
Mike Rapoport859a85d2021-09-07 19:54:52 -0700550 struct page *page = pfn_to_page(pfn);
Oscar Salvador6787c1d2018-01-31 16:20:11 -0800551 struct page_ext *page_ext;
552
Joonsoo Kim9d43f5a2016-05-19 17:12:13 -0700553 if (page_zone(page) != zone)
554 continue;
555
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800556 /*
Vlastimil Babka10903022017-09-06 16:20:51 -0700557 * To avoid having to grab zone->lock, be a little
558 * careful when reading buddy page order. The only
559 * danger is that we skip too much and potentially miss
560 * some early allocated pages, which is better than
561 * heavy lock contention.
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800562 */
563 if (PageBuddy(page)) {
Matthew Wilcox (Oracle)ab130f912020-10-15 20:10:15 -0700564 unsigned long order = buddy_order_unsafe(page);
Vlastimil Babka10903022017-09-06 16:20:51 -0700565
566 if (order > 0 && order < MAX_ORDER)
567 pfn += (1UL << order) - 1;
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800568 continue;
569 }
570
571 if (PageReserved(page))
572 continue;
573
574 page_ext = lookup_page_ext(page);
Yang Shif86e4272016-06-03 14:55:38 -0700575 if (unlikely(!page_ext))
576 continue;
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800577
Vlastimil Babkadab4ead2017-09-06 16:20:44 -0700578 /* Maybe overlapping zone */
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800579 if (test_bit(PAGE_EXT_OWNER, &page_ext->flags))
580 continue;
581
582 /* Found early allocated page */
zhongjiang-ali64ea78d2021-04-29 22:55:00 -0700583 __set_page_owner_handle(page_ext, early_handle,
Vlastimil Babka7e2f2a02019-09-23 15:34:36 -0700584 0, 0);
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800585 count++;
586 }
Vlastimil Babka10903022017-09-06 16:20:51 -0700587 cond_resched();
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800588 }
589
590 pr_info("Node %d, zone %8s: page owner found early allocated %lu pages\n",
591 pgdat->node_id, zone->name, count);
592}
593
594static void init_zones_in_node(pg_data_t *pgdat)
595{
596 struct zone *zone;
597 struct zone *node_zones = pgdat->node_zones;
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800598
599 for (zone = node_zones; zone - node_zones < MAX_NR_ZONES; ++zone) {
600 if (!populated_zone(zone))
601 continue;
602
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800603 init_pages_in_zone(pgdat, zone);
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800604 }
605}
606
607static void init_early_allocated_pages(void)
608{
609 pg_data_t *pgdat;
610
Joonsoo Kim61cf5fe2014-12-12 16:56:04 -0800611 for_each_online_pgdat(pgdat)
612 init_zones_in_node(pgdat);
613}
614
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800615static const struct file_operations proc_page_owner_operations = {
616 .read = read_page_owner,
617};
618
619static int __init pageowner_init(void)
620{
Vlastimil Babka7dd80b82016-03-15 14:56:12 -0700621 if (!static_branch_unlikely(&page_owner_inited)) {
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800622 pr_info("page_owner is disabled\n");
623 return 0;
624 }
625
Greg Kroah-Hartmand9f79792019-03-05 15:46:09 -0800626 debugfs_create_file("page_owner", 0400, NULL, NULL,
627 &proc_page_owner_operations);
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800628
Greg Kroah-Hartmand9f79792019-03-05 15:46:09 -0800629 return 0;
Joonsoo Kim48c96a32014-12-12 16:56:01 -0800630}
Paul Gortmaker44c5af92015-05-01 21:57:34 -0400631late_initcall(pageowner_init)