dump_pagetables.c 16.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * Debug helper to dump the current kernel pagetables of the system
 * so that we can see what the various memory ranges are set to.
 *
 * (C) Copyright 2008 Intel Corporation
 *
 * Author: Arjan van de Ven <arjan@linux.intel.com>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; version 2
 * of the License.
 */

15
#include <linux/debugfs.h>
16
#include <linux/kasan.h>
17
#include <linux/mm.h>
18
#include <linux/init.h>
19
#include <linux/sched.h>
20
#include <linux/seq_file.h>
21
#include <linux/highmem.h>
22 23 24 25 26 27 28 29 30 31 32

#include <asm/pgtable.h>

/*
 * The dumper groups pagetable entries of the same type into one, and for
 * that it needs to keep some state when walking, and flush this state
 * when a "break" in the continuity is found.
 */
struct pg_state {
	int level;
	pgprot_t current_prot;
33
	pgprotval_t effective_prot;
34 35
	unsigned long start_address;
	unsigned long current_address;
36
	const struct addr_marker *marker;
37
	unsigned long lines;
38
	bool to_dmesg;
S
Stephen Smalley 已提交
39 40
	bool check_wx;
	unsigned long wx_pages;
41 42
};

43 44 45
struct addr_marker {
	unsigned long start_address;
	const char *name;
46
	unsigned long max_lines;
47 48
};

49 50 51 52
/* Address space markers hints */

#ifdef CONFIG_X86_64

53 54 55 56
enum address_markers_idx {
	USER_SPACE_NR = 0,
	KERNEL_SPACE_NR,
	LOW_KERNEL_NR,
57 58 59
#if defined(CONFIG_MODIFY_LDT_SYSCALL) && defined(CONFIG_X86_5LEVEL)
	LDT_NR,
#endif
60 61
	VMALLOC_START_NR,
	VMEMMAP_START_NR,
62 63 64
#ifdef CONFIG_KASAN
	KASAN_SHADOW_START_NR,
	KASAN_SHADOW_END_NR,
65
#endif
66
	CPU_ENTRY_AREA_NR,
67 68
#if defined(CONFIG_MODIFY_LDT_SYSCALL) && !defined(CONFIG_X86_5LEVEL)
	LDT_NR,
69
#endif
70
#ifdef CONFIG_X86_ESPFIX64
71
	ESPFIX_START_NR,
72 73 74 75
#endif
#ifdef CONFIG_EFI
	EFI_END_NR,
#endif
76 77 78
	HIGH_KERNEL_NR,
	MODULES_VADDR_NR,
	MODULES_END_NR,
79 80 81 82 83 84 85 86 87 88 89
	FIXADDR_START_NR,
	END_OF_SPACE_NR,
};

static struct addr_marker address_markers[] = {
	[USER_SPACE_NR]		= { 0,			"User Space" },
	[KERNEL_SPACE_NR]	= { (1UL << 63),	"Kernel Space" },
	[LOW_KERNEL_NR]		= { 0UL,		"Low Kernel Mapping" },
	[VMALLOC_START_NR]	= { 0UL,		"vmalloc() Area" },
	[VMEMMAP_START_NR]	= { 0UL,		"Vmemmap" },
#ifdef CONFIG_KASAN
90 91 92 93 94 95
	/*
	 * These fields get initialized with the (dynamic)
	 * KASAN_SHADOW_{START,END} values in pt_dump_init().
	 */
	[KASAN_SHADOW_START_NR]	= { 0UL,		"KASAN shadow" },
	[KASAN_SHADOW_END_NR]	= { 0UL,		"KASAN shadow end" },
96 97
#endif
#ifdef CONFIG_MODIFY_LDT_SYSCALL
98
	[LDT_NR]		= { 0UL,		"LDT remap" },
99
#endif
100
	[CPU_ENTRY_AREA_NR]	= { CPU_ENTRY_AREA_BASE,"CPU entry Area" },
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
#ifdef CONFIG_X86_ESPFIX64
	[ESPFIX_START_NR]	= { ESPFIX_BASE_ADDR,	"ESPfix Area", 16 },
#endif
#ifdef CONFIG_EFI
	[EFI_END_NR]		= { EFI_VA_END,		"EFI Runtime Services" },
#endif
	[HIGH_KERNEL_NR]	= { __START_KERNEL_map,	"High Kernel Mapping" },
	[MODULES_VADDR_NR]	= { MODULES_VADDR,	"Modules" },
	[MODULES_END_NR]	= { MODULES_END,	"End Modules" },
	[FIXADDR_START_NR]	= { FIXADDR_START,	"Fixmap Area" },
	[END_OF_SPACE_NR]	= { -1,			NULL }
};

#else /* CONFIG_X86_64 */

enum address_markers_idx {
	USER_SPACE_NR = 0,
118 119 120
	KERNEL_SPACE_NR,
	VMALLOC_START_NR,
	VMALLOC_END_NR,
121
#ifdef CONFIG_HIGHMEM
122 123
	PKMAP_BASE_NR,
#endif
124
	CPU_ENTRY_AREA_NR,
125 126
	FIXADDR_START_NR,
	END_OF_SPACE_NR,
127 128
};

129
static struct addr_marker address_markers[] = {
130 131 132 133 134 135
	[USER_SPACE_NR]		= { 0,			"User Space" },
	[KERNEL_SPACE_NR]	= { PAGE_OFFSET,	"Kernel Mapping" },
	[VMALLOC_START_NR]	= { 0UL,		"vmalloc() Area" },
	[VMALLOC_END_NR]	= { 0UL,		"vmalloc() End" },
#ifdef CONFIG_HIGHMEM
	[PKMAP_BASE_NR]		= { 0UL,		"Persistent kmap() Area" },
136
#endif
137
	[CPU_ENTRY_AREA_NR]	= { 0UL,		"CPU entry area" },
138 139
	[FIXADDR_START_NR]	= { 0UL,		"Fixmap area" },
	[END_OF_SPACE_NR]	= { -1,			NULL }
140
};
141

142 143
#endif /* !CONFIG_X86_64 */

144 145 146 147
/* Multipliers for offsets within the PTEs */
#define PTE_LEVEL_MULT (PAGE_SIZE)
#define PMD_LEVEL_MULT (PTRS_PER_PTE * PTE_LEVEL_MULT)
#define PUD_LEVEL_MULT (PTRS_PER_PMD * PMD_LEVEL_MULT)
148
#define P4D_LEVEL_MULT (PTRS_PER_PUD * PUD_LEVEL_MULT)
149
#define PGD_LEVEL_MULT (PTRS_PER_P4D * P4D_LEVEL_MULT)
150

151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
#define pt_dump_seq_printf(m, to_dmesg, fmt, args...)		\
({								\
	if (to_dmesg)					\
		printk(KERN_INFO fmt, ##args);			\
	else							\
		if (m)						\
			seq_printf(m, fmt, ##args);		\
})

#define pt_dump_cont_printf(m, to_dmesg, fmt, args...)		\
({								\
	if (to_dmesg)					\
		printk(KERN_CONT fmt, ##args);			\
	else							\
		if (m)						\
			seq_printf(m, fmt, ##args);		\
})

169 170 171
/*
 * Print a readable form of a pgprot_t to the seq_file
 */
172
static void printk_prot(struct seq_file *m, pgprot_t prot, int level, bool dmsg)
173
{
174 175
	pgprotval_t pr = pgprot_val(prot);
	static const char * const level_name[] =
176
		{ "cr3", "pgd", "p4d", "pud", "pmd", "pte" };
177

178
	if (!(pr & _PAGE_PRESENT)) {
179
		/* Not present */
180
		pt_dump_cont_printf(m, dmsg, "                              ");
181 182
	} else {
		if (pr & _PAGE_USER)
183
			pt_dump_cont_printf(m, dmsg, "USR ");
184
		else
185
			pt_dump_cont_printf(m, dmsg, "    ");
186
		if (pr & _PAGE_RW)
187
			pt_dump_cont_printf(m, dmsg, "RW ");
188
		else
189
			pt_dump_cont_printf(m, dmsg, "ro ");
190
		if (pr & _PAGE_PWT)
191
			pt_dump_cont_printf(m, dmsg, "PWT ");
192
		else
193
			pt_dump_cont_printf(m, dmsg, "    ");
194
		if (pr & _PAGE_PCD)
195
			pt_dump_cont_printf(m, dmsg, "PCD ");
196
		else
197
			pt_dump_cont_printf(m, dmsg, "    ");
198

199
		/* Bit 7 has a different meaning on level 3 vs 4 */
200
		if (level <= 4 && pr & _PAGE_PSE)
201 202 203
			pt_dump_cont_printf(m, dmsg, "PSE ");
		else
			pt_dump_cont_printf(m, dmsg, "    ");
204 205
		if ((level == 5 && pr & _PAGE_PAT) ||
		    ((level == 4 || level == 3) && pr & _PAGE_PAT_LARGE))
206
			pt_dump_cont_printf(m, dmsg, "PAT ");
207 208
		else
			pt_dump_cont_printf(m, dmsg, "    ");
209
		if (pr & _PAGE_GLOBAL)
210
			pt_dump_cont_printf(m, dmsg, "GLB ");
211
		else
212
			pt_dump_cont_printf(m, dmsg, "    ");
213
		if (pr & _PAGE_NX)
214
			pt_dump_cont_printf(m, dmsg, "NX ");
215
		else
216
			pt_dump_cont_printf(m, dmsg, "x  ");
217
	}
218
	pt_dump_cont_printf(m, dmsg, "%s\n", level_name[level]);
219 220 221
}

/*
222
 * On 64 bits, sign-extend the 48 bit address to 64 bit
223
 */
224
static unsigned long normalize_addr(unsigned long u)
225
{
226 227 228 229 230 231
	int shift;
	if (!IS_ENABLED(CONFIG_X86_64))
		return u;

	shift = 64 - (__VIRTUAL_MASK_SHIFT + 1);
	return (signed long)(u << shift) >> shift;
232 233 234 235 236 237 238 239
}

/*
 * This function gets called on a break in a continuous series
 * of PTE entries; the next one is different so we need to
 * print what we collected so far.
 */
static void note_page(struct seq_file *m, struct pg_state *st,
240
		      pgprot_t new_prot, pgprotval_t new_eff, int level)
241
{
242
	pgprotval_t prot, cur, eff;
243
	static const char units[] = "BKMGTPE";
244 245 246

	/*
	 * If we have a "break" in the series, we need to flush the state that
247 248
	 * we have now. "break" is either changing perms, levels or
	 * address space marker.
249
	 */
250 251
	prot = pgprot_val(new_prot);
	cur = pgprot_val(st->current_prot);
252
	eff = st->effective_prot;
253

254 255 256
	if (!st->level) {
		/* First entry */
		st->current_prot = new_prot;
257
		st->effective_prot = new_eff;
258 259
		st->level = level;
		st->marker = address_markers;
260
		st->lines = 0;
261 262
		pt_dump_seq_printf(m, st->to_dmesg, "---[ %s ]---\n",
				   st->marker->name);
263
	} else if (prot != cur || new_eff != eff || level != st->level ||
264 265
		   st->current_address >= st->marker[1].start_address) {
		const char *unit = units;
266
		unsigned long delta;
267
		int width = sizeof(unsigned long) * 2;
S
Stephen Smalley 已提交
268

269
		if (st->check_wx && (eff & _PAGE_RW) && !(eff & _PAGE_NX)) {
S
Stephen Smalley 已提交
270 271 272 273 274 275 276
			WARN_ONCE(1,
				  "x86/mm: Found insecure W+X mapping at address %p/%pS\n",
				  (void *)st->start_address,
				  (void *)st->start_address);
			st->wx_pages += (st->current_address -
					 st->start_address) / PAGE_SIZE;
		}
277 278 279 280

		/*
		 * Now print the actual finished series
		 */
281 282 283 284 285 286
		if (!st->marker->max_lines ||
		    st->lines < st->marker->max_lines) {
			pt_dump_seq_printf(m, st->to_dmesg,
					   "0x%0*lx-0x%0*lx   ",
					   width, st->start_address,
					   width, st->current_address);
287

288 289 290 291 292 293 294 295 296
			delta = st->current_address - st->start_address;
			while (!(delta & 1023) && unit[1]) {
				delta >>= 10;
				unit++;
			}
			pt_dump_cont_printf(m, st->to_dmesg, "%9lu%c ",
					    delta, *unit);
			printk_prot(m, st->current_prot, st->level,
				    st->to_dmesg);
297
		}
298
		st->lines++;
299 300 301 302 303 304 305

		/*
		 * We print markers for special areas of address space,
		 * such as the start of vmalloc space etc.
		 * This helps in the interpretation.
		 */
		if (st->current_address >= st->marker[1].start_address) {
306 307 308 309 310 311 312 313 314
			if (st->marker->max_lines &&
			    st->lines > st->marker->max_lines) {
				unsigned long nskip =
					st->lines - st->marker->max_lines;
				pt_dump_seq_printf(m, st->to_dmesg,
						   "... %lu entr%s skipped ... \n",
						   nskip,
						   nskip == 1 ? "y" : "ies");
			}
315
			st->marker++;
316
			st->lines = 0;
317 318
			pt_dump_seq_printf(m, st->to_dmesg, "---[ %s ]---\n",
					   st->marker->name);
319
		}
320

321 322
		st->start_address = st->current_address;
		st->current_prot = new_prot;
323
		st->effective_prot = new_eff;
324
		st->level = level;
325
	}
326 327
}

328 329 330 331 332 333 334 335
static inline pgprotval_t effective_prot(pgprotval_t prot1, pgprotval_t prot2)
{
	return (prot1 & prot2 & (_PAGE_USER | _PAGE_RW)) |
	       ((prot1 | prot2) & _PAGE_NX);
}

static void walk_pte_level(struct seq_file *m, struct pg_state *st, pmd_t addr,
			   pgprotval_t eff_in, unsigned long P)
336 337
{
	int i;
338
	pte_t *pte;
339
	pgprotval_t prot, eff;
340 341

	for (i = 0; i < PTRS_PER_PTE; i++) {
342
		st->current_address = normalize_addr(P + i * PTE_LEVEL_MULT);
343 344 345
		pte = pte_offset_map(&addr, st->current_address);
		prot = pte_flags(*pte);
		eff = effective_prot(eff_in, prot);
346
		note_page(m, st, __pgprot(prot), eff, 5);
347
		pte_unmap(pte);
348 349
	}
}
350 351 352 353 354 355 356 357 358 359 360 361 362
#ifdef CONFIG_KASAN

/*
 * This is an optimization for KASAN=y case. Since all kasan page tables
 * eventually point to the kasan_zero_page we could call note_page()
 * right away without walking through lower level page tables. This saves
 * us dozens of seconds (minutes for 5-level config) while checking for
 * W+X mapping or reading kernel_page_tables debugfs file.
 */
static inline bool kasan_page_table(struct seq_file *m, struct pg_state *st,
				void *pt)
{
	if (__pa(pt) == __pa(kasan_zero_pmd) ||
363
	    (pgtable_l5_enabled() && __pa(pt) == __pa(kasan_zero_p4d)) ||
364 365
	    __pa(pt) == __pa(kasan_zero_pud)) {
		pgprotval_t prot = pte_flags(kasan_zero_pte[0]);
366
		note_page(m, st, __pgprot(prot), 0, 5);
367 368 369 370 371 372 373 374 375 376 377
		return true;
	}
	return false;
}
#else
static inline bool kasan_page_table(struct seq_file *m, struct pg_state *st,
				void *pt)
{
	return false;
}
#endif
378

379
#if PTRS_PER_PMD > 1
380

381 382
static void walk_pmd_level(struct seq_file *m, struct pg_state *st, pud_t addr,
			   pgprotval_t eff_in, unsigned long P)
383 384
{
	int i;
385
	pmd_t *start, *pmd_start;
386
	pgprotval_t prot, eff;
387

388
	pmd_start = start = (pmd_t *)pud_page_vaddr(addr);
389
	for (i = 0; i < PTRS_PER_PMD; i++) {
390
		st->current_address = normalize_addr(P + i * PMD_LEVEL_MULT);
391
		if (!pmd_none(*start)) {
392 393
			prot = pmd_flags(*start);
			eff = effective_prot(eff_in, prot);
394
			if (pmd_large(*start) || !pmd_present(*start)) {
395
				note_page(m, st, __pgprot(prot), eff, 4);
396
			} else if (!kasan_page_table(m, st, pmd_start)) {
397
				walk_pte_level(m, st, *start, eff,
398
					       P + i * PMD_LEVEL_MULT);
399
			}
400
		} else
401
			note_page(m, st, __pgprot(0), 0, 4);
402 403 404 405
		start++;
	}
}

406
#else
407
#define walk_pmd_level(m,s,a,e,p) walk_pte_level(m,s,__pmd(pud_val(a)),e,p)
408 409 410
#define pud_large(a) pmd_large(__pmd(pud_val(a)))
#define pud_none(a)  pmd_none(__pmd(pud_val(a)))
#endif
411

412 413
#if PTRS_PER_PUD > 1

414 415
static void walk_pud_level(struct seq_file *m, struct pg_state *st, p4d_t addr,
			   pgprotval_t eff_in, unsigned long P)
416 417
{
	int i;
418
	pud_t *start, *pud_start;
419
	pgprotval_t prot, eff;
420
	pud_t *prev_pud = NULL;
421

422
	pud_start = start = (pud_t *)p4d_page_vaddr(addr);
423 424

	for (i = 0; i < PTRS_PER_PUD; i++) {
425
		st->current_address = normalize_addr(P + i * PUD_LEVEL_MULT);
426
		if (!pud_none(*start)) {
427 428
			prot = pud_flags(*start);
			eff = effective_prot(eff_in, prot);
429
			if (pud_large(*start) || !pud_present(*start)) {
430
				note_page(m, st, __pgprot(prot), eff, 3);
431
			} else if (!kasan_page_table(m, st, pud_start)) {
432
				walk_pmd_level(m, st, *start, eff,
433
					       P + i * PUD_LEVEL_MULT);
434
			}
435
		} else
436
			note_page(m, st, __pgprot(0), 0, 3);
437

438
		prev_pud = start;
439 440 441 442
		start++;
	}
}

443
#else
444
#define walk_pud_level(m,s,a,e,p) walk_pmd_level(m,s,__pud(p4d_val(a)),e,p)
445 446 447 448
#define p4d_large(a) pud_large(__pud(p4d_val(a)))
#define p4d_none(a)  pud_none(__pud(p4d_val(a)))
#endif

449 450
static void walk_p4d_level(struct seq_file *m, struct pg_state *st, pgd_t addr,
			   pgprotval_t eff_in, unsigned long P)
451 452
{
	int i;
453
	p4d_t *start, *p4d_start;
454
	pgprotval_t prot, eff;
455

456
	if (PTRS_PER_P4D == 1)
457
		return walk_pud_level(m, st, __p4d(pgd_val(addr)), eff_in, P);
458

459
	p4d_start = start = (p4d_t *)pgd_page_vaddr(addr);
460 461 462 463

	for (i = 0; i < PTRS_PER_P4D; i++) {
		st->current_address = normalize_addr(P + i * P4D_LEVEL_MULT);
		if (!p4d_none(*start)) {
464 465
			prot = p4d_flags(*start);
			eff = effective_prot(eff_in, prot);
466
			if (p4d_large(*start) || !p4d_present(*start)) {
467
				note_page(m, st, __pgprot(prot), eff, 2);
468
			} else if (!kasan_page_table(m, st, p4d_start)) {
469
				walk_pud_level(m, st, *start, eff,
470 471 472
					       P + i * P4D_LEVEL_MULT);
			}
		} else
473
			note_page(m, st, __pgprot(0), 0, 2);
474 475 476 477 478

		start++;
	}
}

479 480
#define pgd_large(a) (pgtable_l5_enabled() ? pgd_large(a) : p4d_large(__p4d(pgd_val(a))))
#define pgd_none(a)  (pgtable_l5_enabled() ? pgd_none(a) : p4d_none(__p4d(pgd_val(a))))
481

482 483
static inline bool is_hypervisor_range(int idx)
{
484
#ifdef CONFIG_X86_64
485 486 487 488
	/*
	 * ffff800000000000 - ffff87ffffffffff is reserved for
	 * the hypervisor.
	 */
489 490
	return	(idx >= pgd_index(__PAGE_OFFSET) - 16) &&
		(idx <  pgd_index(__PAGE_OFFSET));
491
#else
492
	return false;
493
#endif
494
}
495

S
Stephen Smalley 已提交
496
static void ptdump_walk_pgd_level_core(struct seq_file *m, pgd_t *pgd,
497
				       bool checkwx, bool dmesg)
498
{
499
#ifdef CONFIG_X86_64
500
	pgd_t *start = (pgd_t *) &init_top_pgt;
501 502 503
#else
	pgd_t *start = swapper_pg_dir;
#endif
504
	pgprotval_t prot, eff;
505
	int i;
506
	struct pg_state st = {};
507

508 509
	if (pgd) {
		start = pgd;
510
		st.to_dmesg = dmesg;
511
	}
512

S
Stephen Smalley 已提交
513 514 515 516
	st.check_wx = checkwx;
	if (checkwx)
		st.wx_pages = 0;

517
	for (i = 0; i < PTRS_PER_PGD; i++) {
518
		st.current_address = normalize_addr(i * PGD_LEVEL_MULT);
519
		if (!pgd_none(*start) && !is_hypervisor_range(i)) {
520 521 522 523 524 525
			prot = pgd_flags(*start);
#ifdef CONFIG_X86_PAE
			eff = _PAGE_USER | _PAGE_RW;
#else
			eff = prot;
#endif
526
			if (pgd_large(*start) || !pgd_present(*start)) {
527
				note_page(m, &st, __pgprot(prot), eff, 1);
528
			} else {
529
				walk_p4d_level(m, &st, *start, eff,
530
					       i * PGD_LEVEL_MULT);
531
			}
532
		} else
533
			note_page(m, &st, __pgprot(0), 0, 1);
534

535
		cond_resched();
536 537
		start++;
	}
538 539 540

	/* Flush out the last page */
	st.current_address = normalize_addr(PTRS_PER_PGD*PGD_LEVEL_MULT);
541
	note_page(m, &st, __pgprot(0), 0, 0);
S
Stephen Smalley 已提交
542 543 544 545 546 547 548 549 550 551 552
	if (!checkwx)
		return;
	if (st.wx_pages)
		pr_info("x86/mm: Checked W+X mappings: FAILED, %lu W+X pages found.\n",
			st.wx_pages);
	else
		pr_info("x86/mm: Checked W+X mappings: passed, no W+X pages found.\n");
}

void ptdump_walk_pgd_level(struct seq_file *m, pgd_t *pgd)
{
553 554 555
	ptdump_walk_pgd_level_core(m, pgd, false, true);
}

556
void ptdump_walk_pgd_level_debugfs(struct seq_file *m, pgd_t *pgd, bool user)
557
{
558 559 560 561
#ifdef CONFIG_PAGE_TABLE_ISOLATION
	if (user && static_cpu_has(X86_FEATURE_PTI))
		pgd = kernel_to_user_pgdp(pgd);
#endif
562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577
	ptdump_walk_pgd_level_core(m, pgd, false, false);
}
EXPORT_SYMBOL_GPL(ptdump_walk_pgd_level_debugfs);

static void ptdump_walk_user_pgd_level_checkwx(void)
{
#ifdef CONFIG_PAGE_TABLE_ISOLATION
	pgd_t *pgd = (pgd_t *) &init_top_pgt;

	if (!static_cpu_has(X86_FEATURE_PTI))
		return;

	pr_info("x86/mm: Checking user space page tables\n");
	pgd = kernel_to_user_pgdp(pgd);
	ptdump_walk_pgd_level_core(NULL, pgd, true, false);
#endif
578 579
}

S
Stephen Smalley 已提交
580 581
void ptdump_walk_pgd_level_checkwx(void)
{
582 583
	ptdump_walk_pgd_level_core(NULL, NULL, true, false);
	ptdump_walk_user_pgd_level_checkwx();
S
Stephen Smalley 已提交
584 585
}

586
static int __init pt_dump_init(void)
587
{
588 589 590 591 592 593 594 595
	/*
	 * Various markers are not compile-time constants, so assign them
	 * here.
	 */
#ifdef CONFIG_X86_64
	address_markers[LOW_KERNEL_NR].start_address = PAGE_OFFSET;
	address_markers[VMALLOC_START_NR].start_address = VMALLOC_START;
	address_markers[VMEMMAP_START_NR].start_address = VMEMMAP_START;
596 597 598
#ifdef CONFIG_MODIFY_LDT_SYSCALL
	address_markers[LDT_NR].start_address = LDT_BASE_ADDR;
#endif
599 600 601 602
#ifdef CONFIG_KASAN
	address_markers[KASAN_SHADOW_START_NR].start_address = KASAN_SHADOW_START;
	address_markers[KASAN_SHADOW_END_NR].start_address = KASAN_SHADOW_END;
#endif
603
#endif
604
#ifdef CONFIG_X86_32
605 606
	address_markers[VMALLOC_START_NR].start_address = VMALLOC_START;
	address_markers[VMALLOC_END_NR].start_address = VMALLOC_END;
607
# ifdef CONFIG_HIGHMEM
608
	address_markers[PKMAP_BASE_NR].start_address = PKMAP_BASE;
609
# endif
610
	address_markers[FIXADDR_START_NR].start_address = FIXADDR_START;
611
	address_markers[CPU_ENTRY_AREA_NR].start_address = CPU_ENTRY_AREA_BASE;
612
#endif
613 614 615
	return 0;
}
__initcall(pt_dump_init);