blob: 39001a401effb6f94f4d5e82ba93827dca8f05ad [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001// SPDX-License-Identifier: GPL-2.0-only
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002#include <linux/debugfs.h>
3#include <linux/efi.h>
4#include <linux/module.h>
5#include <linux/seq_file.h>
6#include <asm/pgtable.h>
7
8static int ptdump_show(struct seq_file *m, void *v)
9{
10 ptdump_walk_pgd_level_debugfs(m, NULL, false);
11 return 0;
12}
13
David Brazdil0f672f62019-12-10 10:32:29 +000014DEFINE_SHOW_ATTRIBUTE(ptdump);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000015
David Brazdil0f672f62019-12-10 10:32:29 +000016static int ptdump_curknl_show(struct seq_file *m, void *v)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000017{
18 if (current->mm->pgd) {
19 down_read(&current->mm->mmap_sem);
20 ptdump_walk_pgd_level_debugfs(m, current->mm->pgd, false);
21 up_read(&current->mm->mmap_sem);
22 }
23 return 0;
24}
25
David Brazdil0f672f62019-12-10 10:32:29 +000026DEFINE_SHOW_ATTRIBUTE(ptdump_curknl);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000027
28#ifdef CONFIG_PAGE_TABLE_ISOLATION
David Brazdil0f672f62019-12-10 10:32:29 +000029static int ptdump_curusr_show(struct seq_file *m, void *v)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000030{
31 if (current->mm->pgd) {
32 down_read(&current->mm->mmap_sem);
33 ptdump_walk_pgd_level_debugfs(m, current->mm->pgd, true);
34 up_read(&current->mm->mmap_sem);
35 }
36 return 0;
37}
38
David Brazdil0f672f62019-12-10 10:32:29 +000039DEFINE_SHOW_ATTRIBUTE(ptdump_curusr);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000040#endif
41
42#if defined(CONFIG_EFI) && defined(CONFIG_X86_64)
David Brazdil0f672f62019-12-10 10:32:29 +000043static int ptdump_efi_show(struct seq_file *m, void *v)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000044{
45 if (efi_mm.pgd)
46 ptdump_walk_pgd_level_debugfs(m, efi_mm.pgd, false);
47 return 0;
48}
49
David Brazdil0f672f62019-12-10 10:32:29 +000050DEFINE_SHOW_ATTRIBUTE(ptdump_efi);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000051#endif
52
David Brazdil0f672f62019-12-10 10:32:29 +000053static struct dentry *dir;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000054
55static int __init pt_dump_debug_init(void)
56{
57 dir = debugfs_create_dir("page_tables", NULL);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000058
David Brazdil0f672f62019-12-10 10:32:29 +000059 debugfs_create_file("kernel", 0400, dir, NULL, &ptdump_fops);
60 debugfs_create_file("current_kernel", 0400, dir, NULL,
61 &ptdump_curknl_fops);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000062
63#ifdef CONFIG_PAGE_TABLE_ISOLATION
David Brazdil0f672f62019-12-10 10:32:29 +000064 debugfs_create_file("current_user", 0400, dir, NULL,
65 &ptdump_curusr_fops);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000066#endif
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000067#if defined(CONFIG_EFI) && defined(CONFIG_X86_64)
David Brazdil0f672f62019-12-10 10:32:29 +000068 debugfs_create_file("efi", 0400, dir, NULL, &ptdump_efi_fops);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000069#endif
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000070 return 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000071}
72
73static void __exit pt_dump_debug_exit(void)
74{
75 debugfs_remove_recursive(dir);
76}
77
78module_init(pt_dump_debug_init);
79module_exit(pt_dump_debug_exit);
80MODULE_LICENSE("GPL");
81MODULE_AUTHOR("Arjan van de Ven <arjan@linux.intel.com>");
82MODULE_DESCRIPTION("Kernel debugging helper that dumps pagetables");