* [PATCH] kprobes: Rollback kprobe flags on failed arm_kprobe
@ 2022-06-02 7:32 Chuang
2022-06-03 15:03 ` Masami Hiramatsu
0 siblings, 1 reply; 3+ messages in thread
From: Chuang @ 2022-06-02 7:32 UTC (permalink / raw)
Cc: Chuang Wang, Jingren Zhou, Naveen N. Rao, Anil S Keshavamurthy,
David S. Miller, Masami Hiramatsu, linux-kernel
From: Chuang Wang <nashuiliang@gmail.com>
In aggrprobe scenes, if arm_kprobe() returns an error(e.g. livepatch and
kprobe are using the same function X), kprobe flags, while has been
modified to ~KPROBE_FLAG_DISABLED, is not rollled back.
Then, __disable_kprobe() will be failed in __unregister_kprobe_top(),
the kprobe list will be not removed from aggrprobe, memory leaks or
illegal pointers will be caused.
WARN disarm_kprobe:
Failed to disarm kprobe-ftrace at 00000000c729fdbc (-2)
RIP: 0010:disarm_kprobe+0xcc/0x110
Call Trace:
__disable_kprobe+0x78/0x90
__unregister_kprobe_top+0x13/0x1b0
? _cond_resched+0x15/0x30
unregister_kprobes+0x32/0x80
unregister_kprobe+0x1a/0x20
Illegal Pointers:
BUG: unable to handle kernel paging request at 0000000000656369
RIP: 0010:__get_valid_kprobe+0x69/0x90
Call Trace:
register_kprobe+0x30/0x60
__register_trace_kprobe.part.7+0x8b/0xc0
create_local_trace_kprobe+0xd2/0x130
perf_kprobe_init+0x83/0xd0
Signed-off-by: Chuang Wang <nashuiliang@gmail.com>
Signed-off-by: Jingren Zhou <zhoujingren@didiglobal.com>
---
kernel/kprobes.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/kernel/kprobes.c b/kernel/kprobes.c
index f214f8c088ed..96c75e23113c 100644
--- a/kernel/kprobes.c
+++ b/kernel/kprobes.c
@@ -2422,8 +2422,10 @@ int enable_kprobe(struct kprobe *kp)
if (!kprobes_all_disarmed && kprobe_disabled(p)) {
p->flags &= ~KPROBE_FLAG_DISABLED;
ret = arm_kprobe(p);
- if (ret)
+ if (ret) {
p->flags |= KPROBE_FLAG_DISABLED;
+ kp->flags |= KPROBE_FLAG_DISABLED;
+ }
}
out:
mutex_unlock(&kprobe_mutex);
--
2.34.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] kprobes: Rollback kprobe flags on failed arm_kprobe
2022-06-02 7:32 [PATCH] kprobes: Rollback kprobe flags on failed arm_kprobe Chuang
@ 2022-06-03 15:03 ` Masami Hiramatsu
2022-06-04 2:16 ` chuang
0 siblings, 1 reply; 3+ messages in thread
From: Masami Hiramatsu @ 2022-06-03 15:03 UTC (permalink / raw)
To: Chuang
Cc: Jingren Zhou, Naveen N. Rao, Anil S Keshavamurthy,
David S. Miller, Masami Hiramatsu, linux-kernel
Hi Chuang,
On Thu, 2 Jun 2022 15:32:59 +0800
Chuang <nashuiliang@gmail.com> wrote:
> From: Chuang Wang <nashuiliang@gmail.com>
>
> In aggrprobe scenes, if arm_kprobe() returns an error(e.g. livepatch and
> kprobe are using the same function X), kprobe flags, while has been
> modified to ~KPROBE_FLAG_DISABLED, is not rollled back.
>
> Then, __disable_kprobe() will be failed in __unregister_kprobe_top(),
> the kprobe list will be not removed from aggrprobe, memory leaks or
> illegal pointers will be caused.
>
> WARN disarm_kprobe:
> Failed to disarm kprobe-ftrace at 00000000c729fdbc (-2)
> RIP: 0010:disarm_kprobe+0xcc/0x110
> Call Trace:
> __disable_kprobe+0x78/0x90
> __unregister_kprobe_top+0x13/0x1b0
> ? _cond_resched+0x15/0x30
> unregister_kprobes+0x32/0x80
> unregister_kprobe+0x1a/0x20
>
> Illegal Pointers:
> BUG: unable to handle kernel paging request at 0000000000656369
> RIP: 0010:__get_valid_kprobe+0x69/0x90
> Call Trace:
> register_kprobe+0x30/0x60
> __register_trace_kprobe.part.7+0x8b/0xc0
> create_local_trace_kprobe+0xd2/0x130
> perf_kprobe_init+0x83/0xd0
Oops, thanks for reporting!
> Signed-off-by: Chuang Wang <nashuiliang@gmail.com>
> Signed-off-by: Jingren Zhou <zhoujingren@didiglobal.com>
This should go to stable, so add below tag. (No need to CC to stable)
Fixes: 12310e343755 ("kprobes: Propagate error from arm_kprobe_ftrace()")
Cc: stable@vger.kernel.org
And could you also update this patch as below?
> ---
> kernel/kprobes.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/kernel/kprobes.c b/kernel/kprobes.c
> index f214f8c088ed..96c75e23113c 100644
> --- a/kernel/kprobes.c
> +++ b/kernel/kprobes.c
> @@ -2422,8 +2422,10 @@ int enable_kprobe(struct kprobe *kp)
> if (!kprobes_all_disarmed && kprobe_disabled(p)) {
> p->flags &= ~KPROBE_FLAG_DISABLED;
> ret = arm_kprobe(p);
> - if (ret)
> + if (ret) {
> p->flags |= KPROBE_FLAG_DISABLED;
Here, can you add a check?
if (p != kp)
> + kp->flags |= KPROBE_FLAG_DISABLED;
Thus is is clear that this is corresponding to
---
if (p != kp)
kp->flags &= ~KPROBE_FLAG_DISABLED;
---
Thank you,
> + }
> }
> out:
> mutex_unlock(&kprobe_mutex);
> --
> 2.34.1
>
--
Masami Hiramatsu (Google) <mhiramat@kernel.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] kprobes: Rollback kprobe flags on failed arm_kprobe
2022-06-03 15:03 ` Masami Hiramatsu
@ 2022-06-04 2:16 ` chuang
0 siblings, 0 replies; 3+ messages in thread
From: chuang @ 2022-06-04 2:16 UTC (permalink / raw)
To: Masami Hiramatsu
Cc: Jingren Zhou, Naveen N. Rao, Anil S Keshavamurthy,
David S. Miller, linux-kernel
Thanks for your quick reply.
I'm very, very sorry for sending multiple emails. I am submitting a
patch for the first time.
On Fri, Jun 3, 2022 at 11:03 PM Masami Hiramatsu <mhiramat@kernel.org> wrote:
>
> This should go to stable, so add below tag. (No need to CC to stable)
>
> Fixes: 12310e343755 ("kprobes: Propagate error from arm_kprobe_ftrace()")
> Cc: stable@vger.kernel.org
Thanks for your kind reminder.
>
> And could you also update this patch as below?
>
> > ---
> > kernel/kprobes.c | 4 +++-
> > 1 file changed, 3 insertions(+), 1 deletion(-)
> >
> > diff --git a/kernel/kprobes.c b/kernel/kprobes.c
> > index f214f8c088ed..96c75e23113c 100644
> > --- a/kernel/kprobes.c
> > +++ b/kernel/kprobes.c
> > @@ -2422,8 +2422,10 @@ int enable_kprobe(struct kprobe *kp)
> > if (!kprobes_all_disarmed && kprobe_disabled(p)) {
> > p->flags &= ~KPROBE_FLAG_DISABLED;
> > ret = arm_kprobe(p);
> > - if (ret)
> > + if (ret) {
> > p->flags |= KPROBE_FLAG_DISABLED;
>
> Here, can you add a check?
>
> if (p != kp)
>
> > + kp->flags |= KPROBE_FLAG_DISABLED;
Well, I also thought about it. This already covers conditions `p ==
kp` and `p != kp`:
---
kp->flags |= KPROBE_FLAG_DISABLED;
---
When p is equal to kp, `kp->flags` is assigned to KPROBE_FLAG_DISABLED twice.
However, if you add a check that p is not equal to kp, this makes the
code read more clearly. Anything is OK, what is your suggestion?
>
> Thus is is clear that this is corresponding to
> ---
> if (p != kp)
> kp->flags &= ~KPROBE_FLAG_DISABLED;
> ---
>
> Thank you,
>
> > + }
> > }
> > out:
> > mutex_unlock(&kprobe_mutex);
> > --
> > 2.34.1
> >
>
>
> --
> Masami Hiramatsu (Google) <mhiramat@kernel.org>
Have a wonderful day!
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-06-04 2:17 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-06-02 7:32 [PATCH] kprobes: Rollback kprobe flags on failed arm_kprobe Chuang
2022-06-03 15:03 ` Masami Hiramatsu
2022-06-04 2:16 ` chuang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox