* [PATCH] kprobes: fix a memory leak in function pre_handler_kretprobe()
@ 2012-01-30 16:10 Jiang Liu
2012-01-31 21:35 ` Andrew Morton
0 siblings, 1 reply; 5+ messages in thread
From: Jiang Liu @ 2012-01-30 16:10 UTC (permalink / raw)
To: linux-kernel, Linus Torvalds, Andrew Morton
Cc: Jim Keniston, Ananth N Mavinakayanahalli, Jiang Liu,
Masami Hiramatsu, Anil S Keshavamurthy, David S. Miller, stable
In function pre_handler_kretprobe(), the allocated kretprobe_instance object
will get leaked if the entry_handler callback returns non-zero. This may cause
all the preallocated kretprobe_instance objects exhausted. This issue could be
reproduced by changing samples/kprobes/kretprobe_example.c to probe
"mutex_unlock". And the fix is straight forward, just put the allocated
kretprobe_instance object back onto the free_instances list.
Signed-off-by: Jiang Liu <jiang.liu@huawei.com>
Acked-by: Jim Keniston <jkenisto@us.ibm.com>
Acked-by: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
CC: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
CC: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
CC: "David S. Miller" <davem@davemloft.net>
CC: stable@vger.kernel.org
---
kernel/kprobes.c | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/kernel/kprobes.c b/kernel/kprobes.c
index e5d8464..2423295 100644
--- a/kernel/kprobes.c
+++ b/kernel/kprobes.c
@@ -1673,8 +1673,12 @@ static int __kprobes pre_handler_kretprobe(struct kprobe *p,
ri->rp = rp;
ri->task = current;
- if (rp->entry_handler && rp->entry_handler(ri, regs))
+ if (rp->entry_handler && rp->entry_handler(ri, regs)) {
+ spin_lock_irqsave(&rp->lock, flags);
+ hlist_add_head(&ri->hlist, &rp->free_instances);
+ spin_unlock_irqrestore(&rp->lock, flags);
return 0;
+ }
arch_prepare_kretprobe(ri, regs);
--
1.7.5.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] kprobes: fix a memory leak in function pre_handler_kretprobe()
2012-01-30 16:10 [PATCH] kprobes: fix a memory leak in function pre_handler_kretprobe() Jiang Liu
@ 2012-01-31 21:35 ` Andrew Morton
0 siblings, 0 replies; 5+ messages in thread
From: Andrew Morton @ 2012-01-31 21:35 UTC (permalink / raw)
To: Jiang Liu
Cc: linux-kernel, Linus Torvalds, Jim Keniston,
Ananth N Mavinakayanahalli, Jiang Liu, Masami Hiramatsu,
Anil S Keshavamurthy, David S. Miller, stable
On Tue, 31 Jan 2012 00:10:12 +0800
Jiang Liu <liuj97@gmail.com> wrote:
> In function pre_handler_kretprobe(), the allocated kretprobe_instance object
> will get leaked if the entry_handler callback returns non-zero. This may cause
> all the preallocated kretprobe_instance objects exhausted. This issue could be
> reproduced by changing samples/kprobes/kretprobe_example.c to probe
> "mutex_unlock". And the fix is straight forward, just put the allocated
> kretprobe_instance object back onto the free_instances list.
>
> Signed-off-by: Jiang Liu <jiang.liu@huawei.com>
> Acked-by: Jim Keniston <jkenisto@us.ibm.com>
> Acked-by: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
> CC: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
> CC: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
> CC: "David S. Miller" <davem@davemloft.net>
> CC: stable@vger.kernel.org
> ---
> kernel/kprobes.c | 6 +++++-
> 1 files changed, 5 insertions(+), 1 deletions(-)
>
> diff --git a/kernel/kprobes.c b/kernel/kprobes.c
> index e5d8464..2423295 100644
> --- a/kernel/kprobes.c
> +++ b/kernel/kprobes.c
> @@ -1673,8 +1673,12 @@ static int __kprobes pre_handler_kretprobe(struct kprobe *p,
> ri->rp = rp;
> ri->task = current;
>
> - if (rp->entry_handler && rp->entry_handler(ri, regs))
> + if (rp->entry_handler && rp->entry_handler(ri, regs)) {
> + spin_lock_irqsave(&rp->lock, flags);
> + hlist_add_head(&ri->hlist, &rp->free_instances);
> + spin_unlock_irqrestore(&rp->lock, flags);
> return 0;
> + }
>
kernel/kprobes.c: In function 'pre_handler_kretprobe':
kernel/kprobes.c:1677: warning: passing argument 1 of 'spinlock_check' from incompatible pointer type
include/linux/spinlock.h:272: note: expected 'struct spinlock_t *' but argument is of type 'struct raw_spinlock_t *'
kernel/kprobes.c:1679: warning: passing argument 1 of 'spin_unlock_irqrestore' from incompatible pointer type
include/linux/spinlock.h:338: note: expected 'struct spinlock_t *' but argument is of type 'struct raw_spinlock_t *'
--- a/kernel/kprobes.c~kprobes-fix-a-memory-leak-in-function-pre_handler_kretprobe-fix
+++ a/kernel/kprobes.c
@@ -1674,9 +1674,9 @@ static int __kprobes pre_handler_kretpro
ri->task = current;
if (rp->entry_handler && rp->entry_handler(ri, regs)) {
- spin_lock_irqsave(&rp->lock, flags);
+ raw_spin_lock_irqsave(&rp->lock, flags);
hlist_add_head(&ri->hlist, &rp->free_instances);
- spin_unlock_irqrestore(&rp->lock, flags);
+ raw_spin_unlock_irqrestore(&rp->lock, flags);
return 0;
}
I'm surprised you didn't notice the warning spew. How well tested is
this code?
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] kprobes: fix a memory leak in function pre_handler_kretprobe()
2012-01-11 16:12 ` Ananth N Mavinakayanahalli
@ 2012-01-11 16:59 ` Greg KH
0 siblings, 0 replies; 5+ messages in thread
From: Greg KH @ 2012-01-11 16:59 UTC (permalink / raw)
To: Ananth N Mavinakayanahalli
Cc: Jiang Liu, linux-kernel, Anil S Keshavamurthy, David S . Miller,
Masami Hiramatsu, Jim Keniston, Jun Ma, stable, Jiang Liu
On Wed, Jan 11, 2012 at 09:42:33PM +0530, Ananth N Mavinakayanahalli wrote:
> On Wed, Jan 11, 2012 at 11:21:51PM +0800, Jiang Liu wrote:
> > From: Jiang Liu <liuj97@gmail.com>
> >
> > In function pre_handler_kretprobe(), the allocated kretprobe_instance object
> > will be leaked if the entry_handler callback returns non-zero. This may cause
> > all the preallocated kretprobe_instance objects exhausted. This issue could be
> > reproduced by changing samples/kprobes/kretprobe_example.c to probe
> > "mutex_unlock". And the fix is straight forward, just put the allocated
> > kretprobe_instance object back onto the free_instances list.
> >
> > Signed-off-by: Jiang Liu <jiang.liu@huawei.com>
> > Acked-by: Jim Keniston <jkenisto@us.ibm.com>
> > Acked-by: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
>
> Thank you Jiang. I think the correct ID for stable is now
> stable@vger.kernel.org.
<formletter>
This is not the correct way to submit patches for inclusion in the
stable kernel tree. Please read Documentation/stable_kernel_rules.txt
for how to do this properly.
</formletter>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] kprobes: fix a memory leak in function pre_handler_kretprobe()
2012-01-11 15:21 Jiang Liu
@ 2012-01-11 16:12 ` Ananth N Mavinakayanahalli
2012-01-11 16:59 ` Greg KH
0 siblings, 1 reply; 5+ messages in thread
From: Ananth N Mavinakayanahalli @ 2012-01-11 16:12 UTC (permalink / raw)
To: Jiang Liu
Cc: linux-kernel, Anil S Keshavamurthy, David S . Miller,
Masami Hiramatsu, Jim Keniston, Jun Ma, stable, Jiang Liu
On Wed, Jan 11, 2012 at 11:21:51PM +0800, Jiang Liu wrote:
> From: Jiang Liu <liuj97@gmail.com>
>
> In function pre_handler_kretprobe(), the allocated kretprobe_instance object
> will be leaked if the entry_handler callback returns non-zero. This may cause
> all the preallocated kretprobe_instance objects exhausted. This issue could be
> reproduced by changing samples/kprobes/kretprobe_example.c to probe
> "mutex_unlock". And the fix is straight forward, just put the allocated
> kretprobe_instance object back onto the free_instances list.
>
> Signed-off-by: Jiang Liu <jiang.liu@huawei.com>
> Acked-by: Jim Keniston <jkenisto@us.ibm.com>
> Acked-by: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
Thank you Jiang. I think the correct ID for stable is now
stable@vger.kernel.org.
> ---
> kernel/kprobes.c | 6 +++++-
> 1 files changed, 5 insertions(+), 1 deletions(-)
>
> diff --git a/kernel/kprobes.c b/kernel/kprobes.c
> index e5d8464..2423295 100644
> --- a/kernel/kprobes.c
> +++ b/kernel/kprobes.c
> @@ -1673,8 +1673,12 @@ static int __kprobes pre_handler_kretprobe(struct kprobe *p,
> ri->rp = rp;
> ri->task = current;
>
> - if (rp->entry_handler && rp->entry_handler(ri, regs))
> + if (rp->entry_handler && rp->entry_handler(ri, regs)) {
> + spin_lock_irqsave(&rp->lock, flags);
> + hlist_add_head(&ri->hlist, &rp->free_instances);
> + spin_unlock_irqrestore(&rp->lock, flags);
> return 0;
> + }
>
> arch_prepare_kretprobe(ri, regs);
>
> --
> 1.7.5.4
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] kprobes: fix a memory leak in function pre_handler_kretprobe()
@ 2012-01-11 15:21 Jiang Liu
2012-01-11 16:12 ` Ananth N Mavinakayanahalli
0 siblings, 1 reply; 5+ messages in thread
From: Jiang Liu @ 2012-01-11 15:21 UTC (permalink / raw)
To: linux-kernel
Cc: Jiang Liu, Ananth N Mavinakayanahalli, Anil S Keshavamurthy,
David S . Miller, Masami Hiramatsu, Jim Keniston, Jun Ma, stable,
Jiang Liu
From: Jiang Liu <liuj97@gmail.com>
In function pre_handler_kretprobe(), the allocated kretprobe_instance object
will be leaked if the entry_handler callback returns non-zero. This may cause
all the preallocated kretprobe_instance objects exhausted. This issue could be
reproduced by changing samples/kprobes/kretprobe_example.c to probe
"mutex_unlock". And the fix is straight forward, just put the allocated
kretprobe_instance object back onto the free_instances list.
Signed-off-by: Jiang Liu <jiang.liu@huawei.com>
Acked-by: Jim Keniston <jkenisto@us.ibm.com>
Acked-by: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
---
kernel/kprobes.c | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/kernel/kprobes.c b/kernel/kprobes.c
index e5d8464..2423295 100644
--- a/kernel/kprobes.c
+++ b/kernel/kprobes.c
@@ -1673,8 +1673,12 @@ static int __kprobes pre_handler_kretprobe(struct kprobe *p,
ri->rp = rp;
ri->task = current;
- if (rp->entry_handler && rp->entry_handler(ri, regs))
+ if (rp->entry_handler && rp->entry_handler(ri, regs)) {
+ spin_lock_irqsave(&rp->lock, flags);
+ hlist_add_head(&ri->hlist, &rp->free_instances);
+ spin_unlock_irqrestore(&rp->lock, flags);
return 0;
+ }
arch_prepare_kretprobe(ri, regs);
--
1.7.5.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-01-31 21:35 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-01-30 16:10 [PATCH] kprobes: fix a memory leak in function pre_handler_kretprobe() Jiang Liu
2012-01-31 21:35 ` Andrew Morton
-- strict thread matches above, loose matches on Subject: below --
2012-01-11 15:21 Jiang Liu
2012-01-11 16:12 ` Ananth N Mavinakayanahalli
2012-01-11 16:59 ` Greg KH
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).