linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] kernel/kprobes: add re-register safe check for register_kretprobe()
@ 2017-12-01 12:09 JianKang Chen
  2017-12-04  8:35 ` Masami Hiramatsu
  0 siblings, 1 reply; 2+ messages in thread
From: JianKang Chen @ 2017-12-01 12:09 UTC (permalink / raw)
  To: ananth, anil.s.keshavamurthy, davem, mhiramat, linux-kernel
  Cc: xieyisheng1, wangkefeng.wang, chenjiankang1

From: Jiankang Chen <chenjiankang1@huawei.com>

When there are two same struct kretprobe rp, the INIT_HLIST_HEAD()
will result in a empty list table rp->free_instances. The memory leak
will happen. So it needs to add re-register safe check by
__get_valid_kprobe().

However, current this is not safe for multi-threadings, because
there is still a chance to re-register kretprobe concurrently.
So I add a kretprobe_mutex lock to protect the INIT_LIST_HEAD

And we use rcu read lock to protect the rcu list for __get_valid_kprobe

Signed-off-by: Jiankang Chen <chenjiankang1@huawei.com>
---
 kernel/kprobes.c | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/kernel/kprobes.c b/kernel/kprobes.c
index a1606a4..f8f027a 100644
--- a/kernel/kprobes.c
+++ b/kernel/kprobes.c
@@ -67,6 +67,7 @@
 
 /* This protects kprobe_table and optimizing_list */
 static DEFINE_MUTEX(kprobe_mutex);
+static DEFINE_MUTEX(kretprobe_mutex);
 static DEFINE_PER_CPU(struct kprobe *, kprobe_instance) = NULL;
 static struct {
 	raw_spinlock_t lock ____cacheline_aligned_in_smp;
@@ -1919,6 +1920,7 @@ int register_kretprobe(struct kretprobe *rp)
 	struct kretprobe_instance *inst;
 	int i;
 	void *addr;
+	struct kprobe *kp;
 
 	if (!kprobe_on_func_entry(rp->kp.addr, rp->kp.symbol_name, rp->kp.offset))
 		return -EINVAL;
@@ -1947,6 +1949,15 @@ int register_kretprobe(struct kretprobe *rp)
 		rp->maxactive = num_possible_cpus();
 #endif
 	}
+
+	mutex_lock(&kretprobe_mutex);
+	rcu_read_lock();
+	kp = __get_valid_kprobe(&rp->kp);
+	rcu_read_unlock();
+	if (kp) {
+		ret = -EINVAL;
+		goto out;
+	}
 	raw_spin_lock_init(&rp->lock);
 	INIT_HLIST_HEAD(&rp->free_instances);
 	for (i = 0; i < rp->maxactive; i++) {
@@ -1954,7 +1965,8 @@ int register_kretprobe(struct kretprobe *rp)
 			       rp->data_size, GFP_KERNEL);
 		if (inst == NULL) {
 			free_rp_inst(rp);
-			return -ENOMEM;
+			ret = -ENOMEM;
+			goto out;
 		}
 		INIT_HLIST_NODE(&inst->hlist);
 		hlist_add_head(&inst->hlist, &rp->free_instances);
@@ -1965,6 +1977,8 @@ int register_kretprobe(struct kretprobe *rp)
 	ret = register_kprobe(&rp->kp);
 	if (ret != 0)
 		free_rp_inst(rp);
+out:
+	mutex_unlock(&kretprobe_mutex);
 	return ret;
 }
 EXPORT_SYMBOL_GPL(register_kretprobe);
-- 
1.7.12.4

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH v2] kernel/kprobes: add re-register safe check for register_kretprobe()
  2017-12-01 12:09 [PATCH v2] kernel/kprobes: add re-register safe check for register_kretprobe() JianKang Chen
@ 2017-12-04  8:35 ` Masami Hiramatsu
  0 siblings, 0 replies; 2+ messages in thread
From: Masami Hiramatsu @ 2017-12-04  8:35 UTC (permalink / raw)
  To: JianKang Chen
  Cc: ananth, anil.s.keshavamurthy, davem, linux-kernel, xieyisheng1,
	wangkefeng.wang

On Fri, 1 Dec 2017 20:09:06 +0800
JianKang Chen <chenjiankang1@huawei.com> wrote:

> From: Jiankang Chen <chenjiankang1@huawei.com>
> 
> When there are two same struct kretprobe rp, the INIT_HLIST_HEAD()
> will result in a empty list table rp->free_instances. The memory leak
> will happen. So it needs to add re-register safe check by
> __get_valid_kprobe().
> 
> However, current this is not safe for multi-threadings, because
> there is still a chance to re-register kretprobe concurrently.
> So I add a kretprobe_mutex lock to protect the INIT_LIST_HEAD
> 
> And we use rcu read lock to protect the rcu list for __get_valid_kprobe

Looks good to me :)

Acked-by: Masami Hiramatsu <mhiramat@kernel.org>

Thank you!

> 
> Signed-off-by: Jiankang Chen <chenjiankang1@huawei.com>
> ---
>  kernel/kprobes.c | 16 +++++++++++++++-
>  1 file changed, 15 insertions(+), 1 deletion(-)
> 
> diff --git a/kernel/kprobes.c b/kernel/kprobes.c
> index a1606a4..f8f027a 100644
> --- a/kernel/kprobes.c
> +++ b/kernel/kprobes.c
> @@ -67,6 +67,7 @@
>  
>  /* This protects kprobe_table and optimizing_list */
>  static DEFINE_MUTEX(kprobe_mutex);
> +static DEFINE_MUTEX(kretprobe_mutex);
>  static DEFINE_PER_CPU(struct kprobe *, kprobe_instance) = NULL;
>  static struct {
>  	raw_spinlock_t lock ____cacheline_aligned_in_smp;
> @@ -1919,6 +1920,7 @@ int register_kretprobe(struct kretprobe *rp)
>  	struct kretprobe_instance *inst;
>  	int i;
>  	void *addr;
> +	struct kprobe *kp;
>  
>  	if (!kprobe_on_func_entry(rp->kp.addr, rp->kp.symbol_name, rp->kp.offset))
>  		return -EINVAL;
> @@ -1947,6 +1949,15 @@ int register_kretprobe(struct kretprobe *rp)
>  		rp->maxactive = num_possible_cpus();
>  #endif
>  	}
> +
> +	mutex_lock(&kretprobe_mutex);
> +	rcu_read_lock();
> +	kp = __get_valid_kprobe(&rp->kp);
> +	rcu_read_unlock();
> +	if (kp) {
> +		ret = -EINVAL;
> +		goto out;
> +	}
>  	raw_spin_lock_init(&rp->lock);
>  	INIT_HLIST_HEAD(&rp->free_instances);
>  	for (i = 0; i < rp->maxactive; i++) {
> @@ -1954,7 +1965,8 @@ int register_kretprobe(struct kretprobe *rp)
>  			       rp->data_size, GFP_KERNEL);
>  		if (inst == NULL) {
>  			free_rp_inst(rp);
> -			return -ENOMEM;
> +			ret = -ENOMEM;
> +			goto out;
>  		}
>  		INIT_HLIST_NODE(&inst->hlist);
>  		hlist_add_head(&inst->hlist, &rp->free_instances);
> @@ -1965,6 +1977,8 @@ int register_kretprobe(struct kretprobe *rp)
>  	ret = register_kprobe(&rp->kp);
>  	if (ret != 0)
>  		free_rp_inst(rp);
> +out:
> +	mutex_unlock(&kretprobe_mutex);
>  	return ret;
>  }
>  EXPORT_SYMBOL_GPL(register_kretprobe);
> -- 
> 1.7.12.4
> 


-- 
Masami Hiramatsu <mhiramat@kernel.org>

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-12-04  8:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-01 12:09 [PATCH v2] kernel/kprobes: add re-register safe check for register_kretprobe() JianKang Chen
2017-12-04  8:35 ` Masami Hiramatsu

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).