From: masami.hiramatsu.pt@hitachi.com (Masami Hiramatsu)
To: linux-arm-kernel@lists.infradead.org
Subject: [RFC PATCH 01/11] ARM: kprobes: directly modify code if kprobe is not initialized.
Date: Wed, 14 Jan 2015 00:34:13 +0900 [thread overview]
Message-ID: <54B53AF5.2010303@hitachi.com> (raw)
In-Reply-To: <1420616124-42765-1-git-send-email-wangnan0@huawei.com>
(2015/01/07 16:35), Wang Nan wrote:
> If kprobe is optimized before kprobe is initialized, there should
> be only one core, the probed instruction is not armed with breakpoint,
> so simply patch text is okay.
This patch looks very hacky. If kprobes is not initialized, why anyone
can optimize kprobes? I think you must introduce early kprobes init
routine and set init flag at that point.
Thank you,
>
> Signed-off-by: Wang Nan <wangnan0@huawei.com>
> ---
> arch/arm/probes/kprobes/opt-arm.c | 11 ++++++++++-
> 1 file changed, 10 insertions(+), 1 deletion(-)
>
> diff --git a/arch/arm/probes/kprobes/opt-arm.c b/arch/arm/probes/kprobes/opt-arm.c
> index 15b37c0..a021474 100644
> --- a/arch/arm/probes/kprobes/opt-arm.c
> +++ b/arch/arm/probes/kprobes/opt-arm.c
> @@ -325,8 +325,17 @@ void __kprobes arch_optimize_kprobes(struct list_head *oplist)
> * Similar to __arch_disarm_kprobe, operations which
> * removing breakpoints must be wrapped by stop_machine
> * to avoid racing.
> + *
> + * If this function is called before kprobes initialized,
> + * the kprobe should be an early kprobe, the instruction
> + * is not armed with breakpoint. There should be only
> + * one core now, so directly __patch_text is enough.
> */
> - kprobes_remove_breakpoint(op->kp.addr, insn);
> + if (unlikely(!kprobes_initialized)) {
> + BUG_ON(!(op->kp.flags & KPROBE_FLAG_EARLY));
> + __patch_text(op->kp.addr, insn);
> + } else
> + kprobes_remove_breakpoint(op->kp.addr, insn);
>
> list_del_init(&op->list);
> }
>
--
Masami HIRAMATSU
Software Platform Research Dept. Linux Technology Research Center
Hitachi, Ltd., Yokohama Research Laboratory
E-mail: masami.hiramatsu.pt at hitachi.com
WARNING: multiple messages have this Message-ID (diff)
From: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
To: Wang Nan <wangnan0@huawei.com>
Cc: linux@arm.linux.org.uk, mingo@redhat.com, x86@kernel.org,
anil.s.keshavamurthy@intel.com, davem@davemloft.net,
ananth@in.ibm.com, dave.long@linaro.org, tixy@linaro.org,
lizefan@huawei.com, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: Re: [RFC PATCH 01/11] ARM: kprobes: directly modify code if kprobe is not initialized.
Date: Wed, 14 Jan 2015 00:34:13 +0900 [thread overview]
Message-ID: <54B53AF5.2010303@hitachi.com> (raw)
In-Reply-To: <1420616124-42765-1-git-send-email-wangnan0@huawei.com>
(2015/01/07 16:35), Wang Nan wrote:
> If kprobe is optimized before kprobe is initialized, there should
> be only one core, the probed instruction is not armed with breakpoint,
> so simply patch text is okay.
This patch looks very hacky. If kprobes is not initialized, why anyone
can optimize kprobes? I think you must introduce early kprobes init
routine and set init flag at that point.
Thank you,
>
> Signed-off-by: Wang Nan <wangnan0@huawei.com>
> ---
> arch/arm/probes/kprobes/opt-arm.c | 11 ++++++++++-
> 1 file changed, 10 insertions(+), 1 deletion(-)
>
> diff --git a/arch/arm/probes/kprobes/opt-arm.c b/arch/arm/probes/kprobes/opt-arm.c
> index 15b37c0..a021474 100644
> --- a/arch/arm/probes/kprobes/opt-arm.c
> +++ b/arch/arm/probes/kprobes/opt-arm.c
> @@ -325,8 +325,17 @@ void __kprobes arch_optimize_kprobes(struct list_head *oplist)
> * Similar to __arch_disarm_kprobe, operations which
> * removing breakpoints must be wrapped by stop_machine
> * to avoid racing.
> + *
> + * If this function is called before kprobes initialized,
> + * the kprobe should be an early kprobe, the instruction
> + * is not armed with breakpoint. There should be only
> + * one core now, so directly __patch_text is enough.
> */
> - kprobes_remove_breakpoint(op->kp.addr, insn);
> + if (unlikely(!kprobes_initialized)) {
> + BUG_ON(!(op->kp.flags & KPROBE_FLAG_EARLY));
> + __patch_text(op->kp.addr, insn);
> + } else
> + kprobes_remove_breakpoint(op->kp.addr, insn);
>
> list_del_init(&op->list);
> }
>
--
Masami HIRAMATSU
Software Platform Research Dept. Linux Technology Research Center
Hitachi, Ltd., Yokohama Research Laboratory
E-mail: masami.hiramatsu.pt@hitachi.com
next prev parent reply other threads:[~2015-01-13 15:34 UTC|newest]
Thread overview: 42+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-01-07 7:34 [RFC PATCH 00/11] Early kprobe: enable kprobes at very early Wang Nan
2015-01-07 7:34 ` Wang Nan
2015-01-07 7:35 ` [RFC PATCH 01/11] ARM: kprobes: directly modify code if kprobe is not initialized Wang Nan
2015-01-07 7:35 ` Wang Nan
2015-01-07 17:15 ` Christopher Covington
2015-01-07 17:15 ` Christopher Covington
2015-01-13 15:34 ` Masami Hiramatsu [this message]
2015-01-13 15:34 ` Masami Hiramatsu
2015-01-07 7:35 ` [RFC PATCH 02/11] ARM: kprobes: introduce early kprobes related code area Wang Nan
2015-01-07 7:35 ` Wang Nan
2015-01-07 7:35 ` [RFC PATCH 03/11] x86: kprobes: directly modify code if kprobe is not initialized Wang Nan
2015-01-07 7:35 ` Wang Nan
2015-01-07 7:35 ` [RFC PATCH 04/11] x86: kprobes: introduce early kprobes related code area Wang Nan
2015-01-07 7:35 ` Wang Nan
2015-01-07 7:35 ` [RFC PATCH 05/11] kprobes: Add an KPROBE_FLAG_EARLY for early kprobe Wang Nan
2015-01-07 7:35 ` Wang Nan
2015-01-07 7:35 ` [RFC PATCH 06/11] kprobes: makes kprobes_initialized globally visable Wang Nan
2015-01-07 7:35 ` Wang Nan
2015-01-07 7:35 ` [RFC PATCH 07/11] kprobes: introduces macros for allocing early kprobe resources Wang Nan
2015-01-07 7:35 ` Wang Nan
2015-01-07 10:45 ` Wang Nan
2015-01-07 10:45 ` Wang Nan
2015-01-07 7:35 ` [RFC PATCH 08/11] kprobes: allows __alloc_insn_slot() from early kprobes slots Wang Nan
2015-01-07 7:35 ` Wang Nan
2015-01-07 7:36 ` [RFC PATCH 09/11] kprobes: core logic of eraly kprobes Wang Nan
2015-01-07 7:36 ` Wang Nan
2015-01-07 7:36 ` [RFC PATCH 10/11] kprobes: enable 'ekprobe=' cmdline option for early kprobes Wang Nan
2015-01-07 7:36 ` Wang Nan
2015-01-07 7:36 ` [RFC PATCH 11/11] kprobes: add CONFIG_EARLY_KPROBES option Wang Nan
2015-01-07 7:36 ` Wang Nan
2015-01-07 7:42 ` Wang Nan
2015-01-07 7:42 ` Wang Nan
2015-01-13 15:58 ` [RFC PATCH 00/11] Early kprobe: enable kprobes at very early Masami Hiramatsu
2015-01-13 15:58 ` Masami Hiramatsu
2015-02-06 10:30 ` [RFC PATCH] x86: kprobes: enable optmize relative call insn Wang Nan
2015-02-06 10:30 ` Wang Nan
2015-02-07 10:08 ` Masami Hiramatsu
2015-02-07 10:08 ` Masami Hiramatsu
2015-02-07 10:42 ` Wang Nan
2015-02-07 10:42 ` Wang Nan
2015-01-16 17:48 ` [RFC PATCH 00/11] Early kprobe: enable kprobes at very early Steven Rostedt
2015-01-16 17:48 ` Steven Rostedt
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=54B53AF5.2010303@hitachi.com \
--to=masami.hiramatsu.pt@hitachi.com \
--cc=linux-arm-kernel@lists.infradead.org \
/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
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.