Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1452042 > unrolled thread

Re: [PATCH] ftrace/jprobes/s390: Fix conflict between jprobes and function graph tracing

Started bySteven Rostedt <rostedt@goodmis.org>
First post2016-07-28 20:40 +0200
Last post2016-07-31 16:00 +0200
Articles 3 — 3 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: [PATCH] ftrace/jprobes/s390: Fix conflict between jprobes and  function graph tracing Steven Rostedt <rostedt@goodmis.org> - 2016-07-28 20:40 +0200
    Re: [PATCH] ftrace/jprobes/s390: Fix conflict between jprobes and  function graph tracing Jiri Olsa <jolsa@redhat.com> - 2016-07-31 14:30 +0200
      Re: [PATCH] ftrace/jprobes/s390: Fix conflict between jprobes and  function graph tracing Martin Schwidefsky <schwidefsky@de.ibm.com> - 2016-07-31 16:00 +0200

#1452042 — Re: [PATCH] ftrace/jprobes/s390: Fix conflict between jprobes and function graph tracing

FromSteven Rostedt <rostedt@goodmis.org>
Date2016-07-28 20:40 +0200
SubjectRe: [PATCH] ftrace/jprobes/s390: Fix conflict between jprobes and function graph tracing
Message-ID<rZYnT-1zx-3@gated-at.bofh.it>
On Mon, 18 Jul 2016 15:26:41 +0200
Jiri Olsa <jolsa@kernel.org> wrote:

> This fixes the same issue Steven already fixed for x86
> in following commit:
> 
>   237d28db036e ftrace/jprobes/x86: Fix conflict between jprobes and function graph tracing
> 
> It fixes the crash, that happens when function graph tracing
> and jprobes are used simultaneously. Please refer to above
> commit for details.

I'm guessing that this should go in via the s390 tree.

Acked-by: Steven Rostedt <rostedt@goodmis.org>

-- Steve

> 
> Signed-off-by: Jiri Olsa <jolsa@kernel.org>
> ---
>  arch/s390/kernel/kprobes.c | 12 ++++++++++++
>  1 file changed, 12 insertions(+)
> 
> diff --git a/arch/s390/kernel/kprobes.c b/arch/s390/kernel/kprobes.c
> index 250f5972536a..dd6306c51bd6 100644
> --- a/arch/s390/kernel/kprobes.c
> +++ b/arch/s390/kernel/kprobes.c
> @@ -690,6 +690,15 @@ int setjmp_pre_handler(struct kprobe *p, struct pt_regs *regs)
>  	stack = (unsigned long) regs->gprs[15];
>  
>  	memcpy(kcb->jprobes_stack, (void *) stack, MIN_STACK_SIZE(stack));
> +
> +	/*
> +	 * jprobes use jprobe_return() which skips the normal return
> +	 * path of the function, and this messes up the accounting of the
> +	 * function graph tracer to get messed up.
> +	 *
> +	 * Pause function graph tracing while performing the jprobe function.
> +	 */
> +	pause_graph_tracing();
>  	return 1;
>  }
>  NOKPROBE_SYMBOL(setjmp_pre_handler);
> @@ -705,6 +714,9 @@ int longjmp_break_handler(struct kprobe *p, struct pt_regs *regs)
>  	struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
>  	unsigned long stack;
>  
> +	/* It's OK to start function graph tracing again */
> +	unpause_graph_tracing();
> +
>  	stack = (unsigned long) kcb->jprobe_saved_regs.gprs[15];
>  
>  	/* Put the regs back */

[toc] | [next] | [standalone]


#1452822

FromJiri Olsa <jolsa@redhat.com>
Date2016-07-31 14:30 +0200
Message-ID<s0Y2u-8tu-1@gated-at.bofh.it>
In reply to#1452042
On Thu, Jul 28, 2016 at 02:39:33PM -0400, Steven Rostedt wrote:
> On Mon, 18 Jul 2016 15:26:41 +0200
> Jiri Olsa <jolsa@kernel.org> wrote:
> 
> > This fixes the same issue Steven already fixed for x86
> > in following commit:
> > 
> >   237d28db036e ftrace/jprobes/x86: Fix conflict between jprobes and function graph tracing
> > 
> > It fixes the crash, that happens when function graph tracing
> > and jprobes are used simultaneously. Please refer to above
> > commit for details.
> 
> I'm guessing that this should go in via the s390 tree.

oops, I forgot to CC s390 mailing list.. CC-ing now

I can repost if needed

thanks,
jirka

> 
> Acked-by: Steven Rostedt <rostedt@goodmis.org>
> 
> -- Steve
> 
> > 
> > Signed-off-by: Jiri Olsa <jolsa@kernel.org>
> > ---
> >  arch/s390/kernel/kprobes.c | 12 ++++++++++++
> >  1 file changed, 12 insertions(+)
> > 
> > diff --git a/arch/s390/kernel/kprobes.c b/arch/s390/kernel/kprobes.c
> > index 250f5972536a..dd6306c51bd6 100644
> > --- a/arch/s390/kernel/kprobes.c
> > +++ b/arch/s390/kernel/kprobes.c
> > @@ -690,6 +690,15 @@ int setjmp_pre_handler(struct kprobe *p, struct pt_regs *regs)
> >  	stack = (unsigned long) regs->gprs[15];
> >  
> >  	memcpy(kcb->jprobes_stack, (void *) stack, MIN_STACK_SIZE(stack));
> > +
> > +	/*
> > +	 * jprobes use jprobe_return() which skips the normal return
> > +	 * path of the function, and this messes up the accounting of the
> > +	 * function graph tracer to get messed up.
> > +	 *
> > +	 * Pause function graph tracing while performing the jprobe function.
> > +	 */
> > +	pause_graph_tracing();
> >  	return 1;
> >  }
> >  NOKPROBE_SYMBOL(setjmp_pre_handler);
> > @@ -705,6 +714,9 @@ int longjmp_break_handler(struct kprobe *p, struct pt_regs *regs)
> >  	struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
> >  	unsigned long stack;
> >  
> > +	/* It's OK to start function graph tracing again */
> > +	unpause_graph_tracing();
> > +
> >  	stack = (unsigned long) kcb->jprobe_saved_regs.gprs[15];
> >  
> >  	/* Put the regs back */
> 

[toc] | [prev] | [next] | [standalone]


#1452829

FromMartin Schwidefsky <schwidefsky@de.ibm.com>
Date2016-07-31 16:00 +0200
Message-ID<s0Zrz-Qb-5@gated-at.bofh.it>
In reply to#1452822
On Sun, 31 Jul 2016 14:21:14 +0200
Jiri Olsa <jolsa@redhat.com> wrote:

> On Thu, Jul 28, 2016 at 02:39:33PM -0400, Steven Rostedt wrote:
> > On Mon, 18 Jul 2016 15:26:41 +0200
> > Jiri Olsa <jolsa@kernel.org> wrote:
> > 
> > > This fixes the same issue Steven already fixed for x86
> > > in following commit:
> > > 
> > >   237d28db036e ftrace/jprobes/x86: Fix conflict between jprobes and function graph tracing
> > > 
> > > It fixes the crash, that happens when function graph tracing
> > > and jprobes are used simultaneously. Please refer to above
> > > commit for details.
> > 
> > I'm guessing that this should go in via the s390 tree.
> 
> oops, I forgot to CC s390 mailing list.. CC-ing now
> 
> I can repost if needed

This is not necessary. I have seen your original patch and could test
it now. As expected it crashes without the patch and works find with
your patch.

Applied to linux-s390. Thanks.

-- 
blue skies,
   Martin.

"Reality continues to ruin my life." - Calvin.

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web