Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1602081
| From | Masami Hiramatsu <mhiramat@kernel.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [RFC][PATCH 4/5] ftrace/x86_32: Clean up ftrace_regs_caller |
| Date | 2017-03-16 09:40 +0100 |
| Message-ID | <tlz6W-42c-31@gated-at.bofh.it> (permalink) |
| References | <tlnyN-4i6-3@gated-at.bofh.it> <tlnyP-4i6-41@gated-at.bofh.it> <tlouR-4Xh-15@gated-at.bofh.it> <tlqn0-6ih-9@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Wed, 15 Mar 2017 19:11:24 -0400 Steven Rostedt <rostedt@goodmis.org> wrote: > On Wed, 15 Mar 2017 16:13:43 -0500 > Josh Poimboeuf <jpoimboe@redhat.com> wrote: > > > On Wed, Mar 15, 2017 at 03:55:31PM -0400, Steven Rostedt wrote: > > > From: "Steven Rostedt (VMware)" <rostedt@goodmis.org> > > > > > > When ftrace_regs_caller was created, it was designed to preserve flags as > > > much as possible as it needed to act just like a breakpoint triggered on the > > > same location. But the design is over complicated as it treated all > > > operations as modifying flags. But push, mov and lea do not modify flags. > > > This means the code can become more simplified by allowing flags to be > > > stored further down. > > > > > > Making ftrace_regs_caller simpler will also be useful in implementing fentry > > > logic. > > > > > > Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org> > > > --- > > > arch/x86/kernel/ftrace_32.S | 45 +++++++++++++++++++++++++-------------------- > > > 1 file changed, 25 insertions(+), 20 deletions(-) > > > > > > diff --git a/arch/x86/kernel/ftrace_32.S b/arch/x86/kernel/ftrace_32.S > > > index 73d61a62649d..8ca33d9806ac 100644 > > > --- a/arch/x86/kernel/ftrace_32.S > > > +++ b/arch/x86/kernel/ftrace_32.S > > > @@ -55,23 +55,30 @@ WEAK(ftrace_stub) > > > END(ftrace_caller) > > > > > > ENTRY(ftrace_regs_caller) > > > - pushf /* push flags before compare (in cs location) */ > > > - > > > /* > > > * i386 does not save SS and ESP when coming from kernel. > > > * Instead, to get sp, ®s->sp is used (see ptrace.h). > > > * Unfortunately, that means eflags must be at the same location > > > * as the current return ip is. We move the return ip into the > > > - * ip location, and move flags into the return ip location. > > > - */ > > > - pushl 4(%esp) /* save return ip into ip slot */ > > > + * regs->ip location, and move flags into the return ip location. > > > + */ > > > + pushl $__KERNEL_CS > > > + pushl 4(%esp) /* Save the return ip */ > > > + > > > + /* temporarily save flags in the orig_ax location */ > > > + pushf > > > > > > - pushl $0 /* Load 0 into orig_ax */ > > > pushl %gs > > > pushl %fs > > > pushl %es > > > pushl %ds > > > pushl %eax > > > + > > > + /* move flags into the location of where the return ip was */ > > > + movl 5*4(%esp), %eax > > > + movl $0, (%esp) /* Load 0 into orig_ax */ > > > > This writes a 0 into regs->ax instead of regs->orig_ax. > > > > Ouch, I'm surprised this didn't crash my box. Thanks for catching it. Since mcount/fentry is just "called", %eax (caller-saved register) will be ignored :) Of course for kprobes and livepatch, this should be critical. Except for the above point, it seems good to me. Reviewed-by: Masami Hiramatsu <mhiramat@kernel.org> Thanks, -- Masami Hiramatsu <mhiramat@kernel.org>
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[RFC][PATCH 0/5] ftrace/x86_32: Ftrace cleanup and add support for -mfentry Steven Rostedt <rostedt@goodmis.org> - 2017-03-15 21:20 +0100
[RFC][PATCH 2/5] ftrace/x86-32: Move the ftrace specific code out of entry_32.S Steven Rostedt <rostedt@goodmis.org> - 2017-03-15 21:20 +0100
[RFC][PATCH 5/5] ftrace/x86-32: Add -mfentry support to x86_32 with DYNAMIC_FTRACE set Steven Rostedt <rostedt@goodmis.org> - 2017-03-15 21:20 +0100
Re: [RFC][PATCH 5/5] ftrace/x86-32: Add -mfentry support to x86_32 with DYNAMIC_FTRACE set Josh Poimboeuf <jpoimboe@redhat.com> - 2017-03-15 23:00 +0100
Re: [RFC][PATCH 5/5] ftrace/x86-32: Add -mfentry support to x86_32 with DYNAMIC_FTRACE set Steven Rostedt <rostedt@goodmis.org> - 2017-03-16 00:20 +0100
Re: [RFC][PATCH 5/5] ftrace/x86-32: Add -mfentry support to x86_32 with DYNAMIC_FTRACE set Masami Hiramatsu <mhiramat@kernel.org> - 2017-03-16 10:30 +0100
Re: [RFC][PATCH 5/5] ftrace/x86-32: Add -mfentry support to x86_32 with DYNAMIC_FTRACE set Steven Rostedt <rostedt@goodmis.org> - 2017-03-16 14:10 +0100
[RFC][PATCH 4/5] ftrace/x86_32: Clean up ftrace_regs_caller Steven Rostedt <rostedt@goodmis.org> - 2017-03-15 21:20 +0100
Re: [RFC][PATCH 4/5] ftrace/x86_32: Clean up ftrace_regs_caller Josh Poimboeuf <jpoimboe@redhat.com> - 2017-03-15 22:20 +0100
Re: [RFC][PATCH 4/5] ftrace/x86_32: Clean up ftrace_regs_caller Steven Rostedt <rostedt@goodmis.org> - 2017-03-16 00:20 +0100
Re: [RFC][PATCH 4/5] ftrace/x86_32: Clean up ftrace_regs_caller Masami Hiramatsu <mhiramat@kernel.org> - 2017-03-16 09:40 +0100
csiph-web