On Fri, 16 Apr 2021 12:48:34 -0400 Steven Rostedt <rostedt@xxxxxxxxxxx> wrote: > On Sat, 17 Apr 2021 00:03:04 +0900 > Masami Hiramatsu <mhiramat@xxxxxxxxxx> wrote: > > > > Anyway, IIRC, Masami wasn't sure that the full regs was ever needed for the > > > return (who cares about the registers on return, except for the return > > > value?) > > > > I think kretprobe and ftrace are for a bit different usage. kretprobe can be > > used for something like debugger. In that case, accessing full regs stack > > will be more preferrable. (BTW, what the not "full regs" means? Does that > > save partial registers?) > > When the REGS flag is not set in the ftrace_ops (where kprobes uses the > REGS flags), the regs parameter is not a full set of regs, but holds just > enough to get access to the parameters. This just happened to be what was > saved in the mcount/fentry trampoline, anyway, because tracing the start of > the program, you had to save the arguments before calling the trace code, > otherwise you would corrupt the parameters of the function being traced. Yes, if we trace the function as a blackbox, it is correct. It should trace the parameter at the entry and trace result at the exit. > I just tweaked it so that by default, the ftrace callbacks now have access > to the saved regs (call ftrace_regs, to not let a callback get confused and > think it has full regs when it does not). Ah, I got it. kretprobe allows user to set a custom region in its instance so that the user handler can store the parameter at entry point. Sometimes such "saved regs" is not enough because if the parameter passed via pointer, actual data can be changed. Anyway, for the kprobe event, that can be integrated seemlessly. But for the low-level kretprobe, I think if we integrate it, we should better to update kretprobe handler interface. > Now for the exit of a function, what does having the full pt_regs give you? It may allow user to debug kernel function if the user thinks any suspicious behavior does/doesn't come from the compiler issue. (I would like to recommend them to use kprobe for that purpose, but there is kretprobe already ...) > Besides the information to get the return value, the rest of the regs are > pretty much meaningless. Is there any example that someone wants access to > the regs at the end of a function besides getting the return value? Yes, as far as we can confident that the code is not corrupted. But, for example, if user would like to make sure the collee saved register (or some flags) is correctly saved and restored, ensuring raw register access will be helpful. (Yeah, but I know it is very rare case.) Thank you, -- Masami Hiramatsu <mhiramat@xxxxxxxxxx>