dump_pagetables.c 16.9 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
#include <linux/pci.h>
23

24
#include <asm/e820/types.h>
25 26 27 28 29 30 31 32 33 34
#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;
35
	pgprotval_t effective_prot;
36 37
	unsigned long start_address;
	unsigned long current_address;
38
	const struct addr_marker *marker;
39
	unsigned long lines;
40
	bool to_dmesg;
S
Stephen Smalley 已提交
41 42
	bool check_wx;
	unsigned long wx_pages;
43 44
};

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

51 52 53 54
/* Address space markers hints */

#ifdef CONFIG_X86_64

55 56 57
enum address_markers_idx {
	USER_SPACE_NR = 0,
	KERNEL_SPACE_NR,
58
#ifdef CONFIG_MODIFY_LDT_SYSCALL
59 60
	LDT_NR,
#endif
61
	LOW_KERNEL_NR,
62 63
	VMALLOC_START_NR,
	VMEMMAP_START_NR,
64 65 66
#ifdef CONFIG_KASAN
	KASAN_SHADOW_START_NR,
	KASAN_SHADOW_END_NR,
67
#endif
68
	CPU_ENTRY_AREA_NR,
69
#ifdef CONFIG_X86_ESPFIX64
70
	ESPFIX_START_NR,
71 72 73 74
#endif
#ifdef CONFIG_EFI
	EFI_END_NR,
#endif
75 76 77
	HIGH_KERNEL_NR,
	MODULES_VADDR_NR,
	MODULES_END_NR,
78 79 80 81 82 83 84 85 86 87 88
	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
89 90 91 92 93 94
	/*
	 * 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" },
95 96
#endif
#ifdef CONFIG_MODIFY_LDT_SYSCALL
97
	[LDT_NR]		= { 0UL,		"LDT remap" },
98
#endif
99
	[CPU_ENTRY_AREA_NR]	= { CPU_ENTRY_AREA_BASE,"CPU entry Area" },
100 101 102 103 104 105 106 107 108 109 110 111 112
#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 }
};

113 114
#define INIT_PGD	((pgd_t *) &init_top_pgt)

115 116 117 118
#else /* CONFIG_X86_64 */

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

133
static struct addr_marker address_markers[] = {
134 135 136 137 138 139
	[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" },
140 141 142
#endif
#ifdef CONFIG_MODIFY_LDT_SYSCALL
	[LDT_NR]		= { 0UL,		"LDT remap" },
143
#endif
144
	[CPU_ENTRY_AREA_NR]	= { 0UL,		"CPU entry area" },
145 146
	[FIXADDR_START_NR]	= { 0UL,		"Fixmap area" },
	[END_OF_SPACE_NR]	= { -1,			NULL }
147
};
148

149 150
#define INIT_PGD	(swapper_pg_dir)

151 152
#endif /* !CONFIG_X86_64 */

153 154 155 156
/* 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)
157
#define P4D_LEVEL_MULT (PTRS_PER_PUD * PUD_LEVEL_MULT)
158
#define PGD_LEVEL_MULT (PTRS_PER_P4D * P4D_LEVEL_MULT)
159

160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
#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);		\
})

178 179 180
/*
 * Print a readable form of a pgprot_t to the seq_file
 */
181
static void printk_prot(struct seq_file *m, pgprot_t prot, int level, bool dmsg)
182
{
183 184
	pgprotval_t pr = pgprot_val(prot);
	static const char * const level_name[] =
185
		{ "cr3", "pgd", "p4d", "pud", "pmd", "pte" };
186

187
	if (!(pr & _PAGE_PRESENT)) {
188
		/* Not present */
189
		pt_dump_cont_printf(m, dmsg, "                              ");
190 191
	} else {
		if (pr & _PAGE_USER)
192
			pt_dump_cont_printf(m, dmsg, "USR ");
193
		else
194
			pt_dump_cont_printf(m, dmsg, "    ");
195
		if (pr & _PAGE_RW)
196
			pt_dump_cont_printf(m, dmsg, "RW ");
197
		else
198
			pt_dump_cont_printf(m, dmsg, "ro ");
199
		if (pr & _PAGE_PWT)
200
			pt_dump_cont_printf(m, dmsg, "PWT ");
201
		else
202
			pt_dump_cont_printf(m, dmsg, "    ");
203
		if (pr & _PAGE_PCD)
204
			pt_dump_cont_printf(m, dmsg, "PCD ");
205
		else
206
			pt_dump_cont_printf(m, dmsg, "    ");
207

208
		/* Bit 7 has a different meaning on level 3 vs 4 */
209
		if (level <= 4 && pr & _PAGE_PSE)
210 211 212
			pt_dump_cont_printf(m, dmsg, "PSE ");
		else
			pt_dump_cont_printf(m, dmsg, "    ");
213 214
		if ((level == 5 && pr & _PAGE_PAT) ||
		    ((level == 4 || level == 3) && pr & _PAGE_PAT_LARGE))
215
			pt_dump_cont_printf(m, dmsg, "PAT ");
216 217
		else
			pt_dump_cont_printf(m, dmsg, "    ");
218
		if (pr & _PAGE_GLOBAL)
219
			pt_dump_cont_printf(m, dmsg, "GLB ");
220
		else
221
			pt_dump_cont_printf(m, dmsg, "    ");
222
		if (pr & _PAGE_NX)
223
			pt_dump_cont_printf(m, dmsg, "NX ");
224
		else
225
			pt_dump_cont_printf(m, dmsg, "x  ");
226
	}
227
	pt_dump_cont_printf(m, dmsg, "%s\n", level_name[level]);
228 229 230
}

/*
231
 * On 64 bits, sign-extend the 48 bit address to 64 bit
232
 */
233
static unsigned long normalize_addr(unsigned long u)
234
{
235 236 237 238 239 240
	int shift;
	if (!IS_ENABLED(CONFIG_X86_64))
		return u;

	shift = 64 - (__VIRTUAL_MASK_SHIFT + 1);
	return (signed long)(u << shift) >> shift;
241 242
}

243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
static void note_wx(struct pg_state *st)
{
	unsigned long npages;

	npages = (st->current_address - st->start_address) / PAGE_SIZE;

#ifdef CONFIG_PCI_BIOS
	/*
	 * If PCI BIOS is enabled, the PCI BIOS area is forced to WX.
	 * Inform about it, but avoid the warning.
	 */
	if (pcibios_enabled && st->start_address >= PAGE_OFFSET + BIOS_BEGIN &&
	    st->current_address <= PAGE_OFFSET + BIOS_END) {
		pr_warn_once("x86/mm: PCI BIOS W+X mapping %lu pages\n", npages);
		return;
	}
#endif
	/* Account the WX pages */
	st->wx_pages += npages;
	WARN_ONCE(1, "x86/mm: Found insecure W+X mapping at address %pS\n",
		  (void *)st->start_address);
}

266 267 268 269 270 271
/*
 * 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,
272
		      pgprot_t new_prot, pgprotval_t new_eff, int level)
273
{
274
	pgprotval_t prot, cur, eff;
275
	static const char units[] = "BKMGTPE";
276 277 278

	/*
	 * If we have a "break" in the series, we need to flush the state that
279 280
	 * we have now. "break" is either changing perms, levels or
	 * address space marker.
281
	 */
282 283
	prot = pgprot_val(new_prot);
	cur = pgprot_val(st->current_prot);
284
	eff = st->effective_prot;
285

286 287 288
	if (!st->level) {
		/* First entry */
		st->current_prot = new_prot;
289
		st->effective_prot = new_eff;
290 291
		st->level = level;
		st->marker = address_markers;
292
		st->lines = 0;
293 294
		pt_dump_seq_printf(m, st->to_dmesg, "---[ %s ]---\n",
				   st->marker->name);
295
	} else if (prot != cur || new_eff != eff || level != st->level ||
296 297
		   st->current_address >= st->marker[1].start_address) {
		const char *unit = units;
298
		unsigned long delta;
299
		int width = sizeof(unsigned long) * 2;
S
Stephen Smalley 已提交
300

301 302
		if (st->check_wx && (eff & _PAGE_RW) && !(eff & _PAGE_NX))
			note_wx(st);
303 304 305 306

		/*
		 * Now print the actual finished series
		 */
307 308 309 310 311 312
		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);
313

314 315 316 317 318 319 320 321 322
			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);
323
		}
324
		st->lines++;
325 326 327 328 329 330 331

		/*
		 * 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) {
332 333 334 335 336 337 338 339 340
			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");
			}
341
			st->marker++;
342
			st->lines = 0;
343 344
			pt_dump_seq_printf(m, st->to_dmesg, "---[ %s ]---\n",
					   st->marker->name);
345
		}
346

347 348
		st->start_address = st->current_address;
		st->current_prot = new_prot;
349
		st->effective_prot = new_eff;
350
		st->level = level;
351
	}
352 353
}

354 355 356 357 358 359 360 361
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)
362 363
{
	int i;
364
	pte_t *pte;
365
	pgprotval_t prot, eff;
366 367

	for (i = 0; i < PTRS_PER_PTE; i++) {
368
		st->current_address = normalize_addr(P + i * PTE_LEVEL_MULT);
369 370 371
		pte = pte_offset_map(&addr, st->current_address);
		prot = pte_flags(*pte);
		eff = effective_prot(eff_in, prot);
372
		note_page(m, st, __pgprot(prot), eff, 5);
373
		pte_unmap(pte);
374 375
	}
}
376 377 378 379
#ifdef CONFIG_KASAN

/*
 * This is an optimization for KASAN=y case. Since all kasan page tables
380
 * eventually point to the kasan_early_shadow_page we could call note_page()
381 382 383 384 385 386 387
 * 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)
{
388 389 390 391 392
	if (__pa(pt) == __pa(kasan_early_shadow_pmd) ||
	    (pgtable_l5_enabled() &&
			__pa(pt) == __pa(kasan_early_shadow_p4d)) ||
	    __pa(pt) == __pa(kasan_early_shadow_pud)) {
		pgprotval_t prot = pte_flags(kasan_early_shadow_pte[0]);
393
		note_page(m, st, __pgprot(prot), 0, 5);
394 395 396 397 398 399 400 401 402 403 404
		return true;
	}
	return false;
}
#else
static inline bool kasan_page_table(struct seq_file *m, struct pg_state *st,
				void *pt)
{
	return false;
}
#endif
405

406
#if PTRS_PER_PMD > 1
407

408 409
static void walk_pmd_level(struct seq_file *m, struct pg_state *st, pud_t addr,
			   pgprotval_t eff_in, unsigned long P)
410 411
{
	int i;
412
	pmd_t *start, *pmd_start;
413
	pgprotval_t prot, eff;
414

415
	pmd_start = start = (pmd_t *)pud_page_vaddr(addr);
416
	for (i = 0; i < PTRS_PER_PMD; i++) {
417
		st->current_address = normalize_addr(P + i * PMD_LEVEL_MULT);
418
		if (!pmd_none(*start)) {
419 420
			prot = pmd_flags(*start);
			eff = effective_prot(eff_in, prot);
421
			if (pmd_large(*start) || !pmd_present(*start)) {
422
				note_page(m, st, __pgprot(prot), eff, 4);
423
			} else if (!kasan_page_table(m, st, pmd_start)) {
424
				walk_pte_level(m, st, *start, eff,
425
					       P + i * PMD_LEVEL_MULT);
426
			}
427
		} else
428
			note_page(m, st, __pgprot(0), 0, 4);
429 430 431 432
		start++;
	}
}

433
#else
434
#define walk_pmd_level(m,s,a,e,p) walk_pte_level(m,s,__pmd(pud_val(a)),e,p)
435 436 437
#define pud_large(a) pmd_large(__pmd(pud_val(a)))
#define pud_none(a)  pmd_none(__pmd(pud_val(a)))
#endif
438

439 440
#if PTRS_PER_PUD > 1

441 442
static void walk_pud_level(struct seq_file *m, struct pg_state *st, p4d_t addr,
			   pgprotval_t eff_in, unsigned long P)
443 444
{
	int i;
445
	pud_t *start, *pud_start;
446
	pgprotval_t prot, eff;
447

448
	pud_start = start = (pud_t *)p4d_page_vaddr(addr);
449 450

	for (i = 0; i < PTRS_PER_PUD; i++) {
451
		st->current_address = normalize_addr(P + i * PUD_LEVEL_MULT);
452
		if (!pud_none(*start)) {
453 454
			prot = pud_flags(*start);
			eff = effective_prot(eff_in, prot);
455
			if (pud_large(*start) || !pud_present(*start)) {
456
				note_page(m, st, __pgprot(prot), eff, 3);
457
			} else if (!kasan_page_table(m, st, pud_start)) {
458
				walk_pmd_level(m, st, *start, eff,
459
					       P + i * PUD_LEVEL_MULT);
460
			}
461
		} else
462
			note_page(m, st, __pgprot(0), 0, 3);
463 464 465 466 467

		start++;
	}
}

468
#else
469
#define walk_pud_level(m,s,a,e,p) walk_pmd_level(m,s,__pud(p4d_val(a)),e,p)
470 471 472 473
#define p4d_large(a) pud_large(__pud(p4d_val(a)))
#define p4d_none(a)  pud_none(__pud(p4d_val(a)))
#endif

474 475
static void walk_p4d_level(struct seq_file *m, struct pg_state *st, pgd_t addr,
			   pgprotval_t eff_in, unsigned long P)
476 477
{
	int i;
478
	p4d_t *start, *p4d_start;
479
	pgprotval_t prot, eff;
480

481
	if (PTRS_PER_P4D == 1)
482
		return walk_pud_level(m, st, __p4d(pgd_val(addr)), eff_in, P);
483

484
	p4d_start = start = (p4d_t *)pgd_page_vaddr(addr);
485 486 487 488

	for (i = 0; i < PTRS_PER_P4D; i++) {
		st->current_address = normalize_addr(P + i * P4D_LEVEL_MULT);
		if (!p4d_none(*start)) {
489 490
			prot = p4d_flags(*start);
			eff = effective_prot(eff_in, prot);
491
			if (p4d_large(*start) || !p4d_present(*start)) {
492
				note_page(m, st, __pgprot(prot), eff, 2);
493
			} else if (!kasan_page_table(m, st, p4d_start)) {
494
				walk_pud_level(m, st, *start, eff,
495 496 497
					       P + i * P4D_LEVEL_MULT);
			}
		} else
498
			note_page(m, st, __pgprot(0), 0, 2);
499 500 501 502 503

		start++;
	}
}

504 505
#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))))
506

507 508
static inline bool is_hypervisor_range(int idx)
{
509
#ifdef CONFIG_X86_64
510
	/*
511 512
	 * A hole in the beginning of kernel address space reserved
	 * for a hypervisor.
513
	 */
514 515
	return	(idx >= pgd_index(GUARD_HOLE_BASE_ADDR)) &&
		(idx <  pgd_index(GUARD_HOLE_END_ADDR));
516
#else
517
	return false;
518
#endif
519
}
520

S
Stephen Smalley 已提交
521
static void ptdump_walk_pgd_level_core(struct seq_file *m, pgd_t *pgd,
522
				       bool checkwx, bool dmesg)
523
{
524
	pgd_t *start = INIT_PGD;
525
	pgprotval_t prot, eff;
526
	int i;
527
	struct pg_state st = {};
528

529 530
	if (pgd) {
		start = pgd;
531
		st.to_dmesg = dmesg;
532
	}
533

S
Stephen Smalley 已提交
534 535 536 537
	st.check_wx = checkwx;
	if (checkwx)
		st.wx_pages = 0;

538
	for (i = 0; i < PTRS_PER_PGD; i++) {
539
		st.current_address = normalize_addr(i * PGD_LEVEL_MULT);
540
		if (!pgd_none(*start) && !is_hypervisor_range(i)) {
541 542 543 544 545 546
			prot = pgd_flags(*start);
#ifdef CONFIG_X86_PAE
			eff = _PAGE_USER | _PAGE_RW;
#else
			eff = prot;
#endif
547
			if (pgd_large(*start) || !pgd_present(*start)) {
548
				note_page(m, &st, __pgprot(prot), eff, 1);
549
			} else {
550
				walk_p4d_level(m, &st, *start, eff,
551
					       i * PGD_LEVEL_MULT);
552
			}
553
		} else
554
			note_page(m, &st, __pgprot(0), 0, 1);
555

556
		cond_resched();
557 558
		start++;
	}
559 560 561

	/* Flush out the last page */
	st.current_address = normalize_addr(PTRS_PER_PGD*PGD_LEVEL_MULT);
562
	note_page(m, &st, __pgprot(0), 0, 0);
S
Stephen Smalley 已提交
563 564 565 566 567 568 569 570 571 572 573
	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)
{
574 575 576
	ptdump_walk_pgd_level_core(m, pgd, false, true);
}

577
void ptdump_walk_pgd_level_debugfs(struct seq_file *m, pgd_t *pgd, bool user)
578
{
579 580 581 582
#ifdef CONFIG_PAGE_TABLE_ISOLATION
	if (user && static_cpu_has(X86_FEATURE_PTI))
		pgd = kernel_to_user_pgdp(pgd);
#endif
583 584 585 586
	ptdump_walk_pgd_level_core(m, pgd, false, false);
}
EXPORT_SYMBOL_GPL(ptdump_walk_pgd_level_debugfs);

587
void ptdump_walk_user_pgd_level_checkwx(void)
588 589
{
#ifdef CONFIG_PAGE_TABLE_ISOLATION
590
	pgd_t *pgd = INIT_PGD;
591

592 593
	if (!(__supported_pte_mask & _PAGE_NX) ||
	    !static_cpu_has(X86_FEATURE_PTI))
594 595 596 597 598 599
		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
600 601
}

S
Stephen Smalley 已提交
602 603
void ptdump_walk_pgd_level_checkwx(void)
{
604
	ptdump_walk_pgd_level_core(NULL, NULL, true, false);
S
Stephen Smalley 已提交
605 606
}

607
static int __init pt_dump_init(void)
608
{
609 610 611 612 613 614 615 616
	/*
	 * 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;
617 618 619
#ifdef CONFIG_MODIFY_LDT_SYSCALL
	address_markers[LDT_NR].start_address = LDT_BASE_ADDR;
#endif
620 621 622 623
#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
624
#endif
625
#ifdef CONFIG_X86_32
626 627
	address_markers[VMALLOC_START_NR].start_address = VMALLOC_START;
	address_markers[VMALLOC_END_NR].start_address = VMALLOC_END;
628
# ifdef CONFIG_HIGHMEM
629
	address_markers[PKMAP_BASE_NR].start_address = PKMAP_BASE;
630
# endif
631
	address_markers[FIXADDR_START_NR].start_address = FIXADDR_START;
632
	address_markers[CPU_ENTRY_AREA_NR].start_address = CPU_ENTRY_AREA_BASE;
633 634 635
# ifdef CONFIG_MODIFY_LDT_SYSCALL
	address_markers[LDT_NR].start_address = LDT_BASE_ADDR;
# endif
636
#endif
637 638 639
	return 0;
}
__initcall(pt_dump_init);