From: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> To: linux-kernel@vger.kernel.org Cc: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> Subject: [PATCH v4 0/7] arch/x86: kprobes: Remove MODULES dependency Date: Fri, 17 Jul 2020 06:04:14 +0300 [thread overview] Message-ID: <20200717030422.679972-1-jarkko.sakkinen@linux.intel.com> (raw) Remove MODULES dependency by migrating from module_alloc() to the new text_alloc() API. Essentially these changes provide preliminaries for allowing to compile a static kernel with a proper tracing support. The same API can be used later on in other sites that allocate space for trampolines, and trivially scaled to other arch's. An arch can inform with CONFIG_ARCH_HAS_TEXT_ALLOC that it's providing implementation for text_alloc(). I tested this by creating a trivial (x86_64_defconfig) kernel and initrd (BusyBox) and then run the most basic kprobe: # ./kprobe p:do_sys_open Tracing kprobe do_sys_open. Ctrl-C to end. cat-1018 [000] .... 277.635966: do_sys_open: (do_sys_open+0x0/0x80) cat-1018 [000] .... 277.635966: do_sys_open: (do_sys_open+0x0/0x80) cat-1018 [000] .... 277.636966: do_sys_open: (do_sys_open+0x0/0x80) cat-1018 [000] .... 277.636966: do_sys_open: (do_sys_open+0x0/0x80) cat-1018 [000] .... 277.636966: do_sys_open: (do_sys_open+0x0/0x80) cat-1018 [000] .... 277.636966: do_sys_open: (do_sys_open+0x0/0x80) cat-1018 [000] .... 277.636966: do_sys_open: (do_sys_open+0x0/0x80) cat-1018 [000] .... 277.636966: do_sys_open: (do_sys_open+0x0/0x80) cat-1018 [000] .... 277.636966: do_sys_open: (do_sys_open+0x0/0x80) cat-1018 [000] .... 277.640966: do_sys_open: (do_sys_open+0x0/0x80) cat-1018 [000] .... 277.654963: do_sys_open: (do_sys_open+0x0/0x80) I did only "sed -i 's/=m/=y/' .config" and disabled CONFIG_MODULES. The test was run under QEMU: qemu-system-x86_64 -kernel output/images/bzImage \ -m 1G -initrd output/images/rootfs.cpio \ -append "root=/dev/sda rw console=ttyS0,115200 acpi=off nokaslr" \ -serial stdio -display none v3: * Make text_alloc() API disjoint. * Remove all the possible extra clutter not absolutely required and split into more logical pieces. Jarkko Sakkinen (7): module: Add lock_modules() and unlock_modules() kprobes: Use lock_modules() and unlock_modules() vmalloc: Add text_alloc() and text_free() arch/x86: Implement text_alloc() and text_free() arch/x86: kprobes: Use text_alloc() in alloc_insn_page() kprobes: Use text_alloc() and text_free() kprobes: Flag out CONFIG_MODULES dependent code arch/Kconfig | 2 +- arch/x86/Kconfig | 3 ++ arch/x86/kernel/Makefile | 1 + arch/x86/kernel/kprobes/core.c | 8 +---- arch/x86/kernel/text_alloc.c | 41 ++++++++++++++++++++++++ include/linux/module.h | 32 ++++++++++++++----- include/linux/vmalloc.h | 23 ++++++++++++++ kernel/kprobes.c | 57 +++++++++++++++++++++------------- kernel/trace/trace_kprobe.c | 20 +++++++++--- 9 files changed, 146 insertions(+), 41 deletions(-) create mode 100644 arch/x86/kernel/text_alloc.c -- 2.25.1
next reply other threads:[~2020-07-17 3:04 UTC|newest] Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-07-17 3:04 Jarkko Sakkinen [this message] 2020-07-17 3:04 ` [PATCH v4 1/7] module: Add lock_modules() and unlock_modules() Jarkko Sakkinen 2020-07-17 3:04 ` [PATCH v4 2/7] kprobes: Use " Jarkko Sakkinen 2020-07-17 3:04 ` [PATCH v4 3/7] vmalloc: Add text_alloc() and text_free() Jarkko Sakkinen 2020-07-17 5:33 ` kernel test robot 2020-07-17 5:33 ` kernel test robot 2020-07-17 8:52 ` Masami Hiramatsu 2020-07-23 22:24 ` Jarkko Sakkinen 2020-07-18 16:23 ` Mike Rapoport 2020-07-20 12:01 ` Masami Hiramatsu 2020-07-23 22:28 ` Jarkko Sakkinen 2020-07-24 10:13 ` Mike Rapoport 2020-07-24 23:31 ` Jarkko Sakkinen 2020-07-24 23:40 ` Jarkko Sakkinen 2020-07-17 3:04 ` [PATCH v4 4/7] arch/x86: Implement " Jarkko Sakkinen 2020-07-17 3:04 ` [PATCH v4 5/7] arch/x86: kprobes: Use text_alloc() in alloc_insn_page() Jarkko Sakkinen 2020-07-23 22:16 ` Jarkko Sakkinen 2020-07-17 3:04 ` [PATCH v4 6/7] kprobes: Use text_alloc() and text_free() Jarkko Sakkinen 2020-07-17 3:04 ` [PATCH v4 7/7] kprobes: Flag out CONFIG_MODULES dependent code Jarkko Sakkinen
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20200717030422.679972-1-jarkko.sakkinen@linux.intel.com \ --to=jarkko.sakkinen@linux.intel.com \ --cc=linux-kernel@vger.kernel.org \ --subject='Re: [PATCH v4 0/7] arch/x86: kprobes: Remove MODULES dependency' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).