2015-11-20 09:07:55 +08:00
|
|
|
#include <linux/debugfs.h>
|
2018-03-12 17:43:54 +08:00
|
|
|
#include <linux/efi.h>
|
2015-11-20 09:07:55 +08:00
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/seq_file.h>
|
|
|
|
#include <asm/pgtable.h>
|
|
|
|
|
|
|
|
static int ptdump_show(struct seq_file *m, void *v)
|
|
|
|
{
|
2017-12-04 22:08:06 +08:00
|
|
|
ptdump_walk_pgd_level_debugfs(m, NULL, false);
|
2015-11-20 09:07:55 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-11-19 23:43:34 +08:00
|
|
|
DEFINE_SHOW_ATTRIBUTE(ptdump);
|
2015-11-20 09:07:55 +08:00
|
|
|
|
2018-11-19 23:43:34 +08:00
|
|
|
static int ptdump_curknl_show(struct seq_file *m, void *v)
|
2017-12-04 22:08:06 +08:00
|
|
|
{
|
|
|
|
if (current->mm->pgd) {
|
|
|
|
down_read(¤t->mm->mmap_sem);
|
|
|
|
ptdump_walk_pgd_level_debugfs(m, current->mm->pgd, false);
|
|
|
|
up_read(¤t->mm->mmap_sem);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-11-19 23:43:34 +08:00
|
|
|
DEFINE_SHOW_ATTRIBUTE(ptdump_curknl);
|
2017-12-04 22:08:06 +08:00
|
|
|
|
|
|
|
#ifdef CONFIG_PAGE_TABLE_ISOLATION
|
|
|
|
static struct dentry *pe_curusr;
|
|
|
|
|
2018-11-19 23:43:34 +08:00
|
|
|
static int ptdump_curusr_show(struct seq_file *m, void *v)
|
2017-12-04 22:08:06 +08:00
|
|
|
{
|
|
|
|
if (current->mm->pgd) {
|
|
|
|
down_read(¤t->mm->mmap_sem);
|
|
|
|
ptdump_walk_pgd_level_debugfs(m, current->mm->pgd, true);
|
|
|
|
up_read(¤t->mm->mmap_sem);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-11-19 23:43:34 +08:00
|
|
|
DEFINE_SHOW_ATTRIBUTE(ptdump_curusr);
|
2017-12-04 22:08:06 +08:00
|
|
|
#endif
|
|
|
|
|
2018-01-31 23:56:22 +08:00
|
|
|
#if defined(CONFIG_EFI) && defined(CONFIG_X86_64)
|
|
|
|
static struct dentry *pe_efi;
|
|
|
|
|
2018-11-19 23:43:34 +08:00
|
|
|
static int ptdump_efi_show(struct seq_file *m, void *v)
|
2018-01-31 23:56:22 +08:00
|
|
|
{
|
2018-03-12 17:43:54 +08:00
|
|
|
if (efi_mm.pgd)
|
|
|
|
ptdump_walk_pgd_level_debugfs(m, efi_mm.pgd, false);
|
2018-01-31 23:56:22 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-11-19 23:43:34 +08:00
|
|
|
DEFINE_SHOW_ATTRIBUTE(ptdump_efi);
|
2018-01-31 23:56:22 +08:00
|
|
|
#endif
|
|
|
|
|
2017-12-04 22:08:06 +08:00
|
|
|
static struct dentry *dir, *pe_knl, *pe_curknl;
|
2015-11-20 09:07:55 +08:00
|
|
|
|
|
|
|
static int __init pt_dump_debug_init(void)
|
|
|
|
{
|
2017-12-04 22:08:04 +08:00
|
|
|
dir = debugfs_create_dir("page_tables", NULL);
|
|
|
|
if (!dir)
|
2015-11-20 09:07:55 +08:00
|
|
|
return -ENOMEM;
|
|
|
|
|
2017-12-04 22:08:06 +08:00
|
|
|
pe_knl = debugfs_create_file("kernel", 0400, dir, NULL,
|
|
|
|
&ptdump_fops);
|
|
|
|
if (!pe_knl)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
pe_curknl = debugfs_create_file("current_kernel", 0400,
|
|
|
|
dir, NULL, &ptdump_curknl_fops);
|
|
|
|
if (!pe_curknl)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
#ifdef CONFIG_PAGE_TABLE_ISOLATION
|
|
|
|
pe_curusr = debugfs_create_file("current_user", 0400,
|
|
|
|
dir, NULL, &ptdump_curusr_fops);
|
|
|
|
if (!pe_curusr)
|
2017-12-04 22:08:04 +08:00
|
|
|
goto err;
|
2017-12-04 22:08:06 +08:00
|
|
|
#endif
|
2018-01-31 23:56:22 +08:00
|
|
|
|
|
|
|
#if defined(CONFIG_EFI) && defined(CONFIG_X86_64)
|
|
|
|
pe_efi = debugfs_create_file("efi", 0400, dir, NULL, &ptdump_efi_fops);
|
|
|
|
if (!pe_efi)
|
|
|
|
goto err;
|
|
|
|
#endif
|
|
|
|
|
2015-11-20 09:07:55 +08:00
|
|
|
return 0;
|
2017-12-04 22:08:04 +08:00
|
|
|
err:
|
|
|
|
debugfs_remove_recursive(dir);
|
|
|
|
return -ENOMEM;
|
2015-11-20 09:07:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void __exit pt_dump_debug_exit(void)
|
|
|
|
{
|
2017-12-04 22:08:04 +08:00
|
|
|
debugfs_remove_recursive(dir);
|
2015-11-20 09:07:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
module_init(pt_dump_debug_init);
|
|
|
|
module_exit(pt_dump_debug_exit);
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
MODULE_AUTHOR("Arjan van de Ven <arjan@linux.intel.com>");
|
|
|
|
MODULE_DESCRIPTION("Kernel debugging helper that dumps pagetables");
|