From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S967689AbcHBP4i (ORCPT ); Tue, 2 Aug 2016 11:56:38 -0400 Received: from mail.kernel.org ([198.145.29.136]:42194 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934365AbcHBP4K (ORCPT ); Tue, 2 Aug 2016 11:56:10 -0400 Date: Wed, 3 Aug 2016 00:45:24 +0900 From: Masami Hiramatsu To: Pratyush Anand Cc: linux-kernel@vger.kernel.org, oleg@redhat.com, srikar@linux.vnet.ibm.com, Alexander Shishkin , Arnaldo Carvalho de Melo , Ingo Molnar , Peter Zijlstra Subject: Re: [PATCH] uprobe: Add uprobe_pre/post_sstep_notifier to NOKPROBE_SYMBOL Message-Id: <20160803004524.760a8398c7525852bf26a29d@kernel.org> In-Reply-To: <66dfa2cb82fc306d42e51adf0f5d819b4695644e.1470120173.git.panand@redhat.com> References: <66dfa2cb82fc306d42e51adf0f5d819b4695644e.1470120173.git.panand@redhat.com> X-Mailer: Sylpheed 3.5.0 (GTK+ 2.24.30; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 2 Aug 2016 12:14:06 +0530 Pratyush Anand wrote: > uprobe_pre_sstep_notifier and uprobe_post_sstep_notifier are called from > debug exception handler, so blacklist them for kprobing. Actually, these exception notifers are kicked only if the debug exception is not related to kprobes (at least on x86). In that case, we don't have to take care about that. Or, would you hit any problem on it? IOW, where do we have to prohibit kprobes are, the code path from where right after the breakpoint (debug) exception is occurred, to where right before the kprobe is handled. After that, it should be safe. Thank you, > > Signed-off-by: Pratyush Anand > --- > kernel/events/uprobes.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/kernel/events/uprobes.c b/kernel/events/uprobes.c > index b7a525ab2083..206e594cb65e 100644 > --- a/kernel/events/uprobes.c > +++ b/kernel/events/uprobes.c > @@ -37,6 +37,7 @@ > #include > #include > #include > +#include > > #include > > @@ -1997,6 +1998,7 @@ int uprobe_pre_sstep_notifier(struct pt_regs *regs) > set_thread_flag(TIF_UPROBE); > return 1; > } > +NOKPROBE_SYMBOL(uprobe_pre_sstep_notifier); > > /* > * uprobe_post_sstep_notifier gets called in interrupt context as part of notifier > @@ -2014,6 +2016,7 @@ int uprobe_post_sstep_notifier(struct pt_regs *regs) > set_thread_flag(TIF_UPROBE); > return 1; > } > +NOKPROBE_SYMBOL(uprobe_post_sstep_notifier); > > static struct notifier_block uprobe_exception_nb = { > .notifier_call = arch_uprobe_exception_notify, > -- > 2.5.5 > -- Masami Hiramatsu