Re: [RFC] Merging ftrace_stack, perf_callchain, oprofile->backtrace and stack_trace
Aleksa Sarai <[email protected]> Tue, 23 Oct 2018 02:26:12 +1100
| Newsgroups | gmane.linux.kernel,gmane.linux.oprofile |
|---|---|
| Message-ID | <20181022152612.ex5hkipgm5uzjrt5@ryuk> |
On 2018-10-21, Peter Zijlstra <[email protected]> wrote: > > Hi all, > > > > I'm currently working on a patchset to make kretprobes produce > > reasonable stack traces[1], and it appears this is a generic problem > > across the entire kernel -- you can see the same kretprobe_trampoline() > > issue when using ftrace just as much as bpf_trace. > > > > However, in working on this patch, I've noticed that there appear to be > > several different implementations of "get the stack trace from this > > pt_regs" which all appear quite similar. Namely: > > > > * struct ftrace_stack; > > * struct perf_callchain_entry; [**] > > * struct stack_trace; > > the perf thing also does userspace stack, where the others do not afaik. Ah right, I forgot about that. Though I wonder whether there would be a strong argument against extending 'struct stack_trace' to contain the ustack so we could use it then. > And for the kernel part it already uses the regular kernel unwinder. > I'm not sure what you're proposing. They do use the kernel unwinder, but they are both implemented per-architecture and use different structures to store and represent the stack trace (even though at the end of the day they are just an array of longs). oprofile for instance (appears to) reimplement the following code per-architecture: struct stack_trace trace; save_stack_trace(&trace); print_stack_trace(&trace, 0); The same applies for perf_callchain_entry which is all implemented per-architecture even though get_perf_callchain_kernel() could just re-use save_stack_trace_regs(). But after looking at this a bit more, I think I'll write a patch which does this the "silly" way and then I'll see whether maintainers prefer it to be refactored. -- Aleksa Sarai Senior Software Engineer (Containers) SUSE Linux GmbH <https://www.cyphar.com/>
signature.asc
(application/pgp-signature, 833 B)
-----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEXzbGxhtUYBJKdfWmnhiqJn3bjbQFAlvN7BMACgkQnhiqJn3b jbSM7g//QbG1AvVQCwBpkR4KFSyFIN80VeTSTmbSgRm0zJutZmEL2Swd2RIMi5i1 f/Ymd3SDbE3T91MLFNum1zb6rMB0sPNkbZez87WUI9ow8KIn8Q1Kb61Pp30sjJMG 7grfIV93cG3pNhY9Cuq10AnOUvEgIIxmqOMlx+5qJppGcrvSAZ4HsB+cgHh8kgp1 WNJe0PcfpUxFqetT2qdJESyPwTROdxG6mBXfM46LpYthbW0DNCU5XXaUzx3IPNAa wax+8ll1+UAdrpWTXmdKyN9RgYQFVwm9M9vwVfFNK7Wf7yJQXgAjqJDRXW0EuYAa G3fhKg9DkYsbnESxoG/XM6XWkTTIGj1qXSC49ieOhzv5Bi4JxIW2+PUjSddG5iBB QB9bJx32bWK5CScSUVb8SV9ZFxUX9N0LcOSRRAR6r4d3h9cLUythi2XcnRYPiUea vYb46751qiiqZjBTX+cTia/vUACevoFhIb5xEtKlHaCE4SlBhialOH2tmTOfpcgr faJe4SRliSA0mR8JK6H9/wBFuV3BsS24FaNepjvB3DW3PCzvxCNUNSI8bpJ9I5fY WgMqfp3BNJYg9sz8jpEIzgHDl9q2bxkat67j3qvr2smSgz22FM26LT/kBr40tvrQ HU9fGTu53y7uR+FyR81ZuWniTrONZ7ErkG2D+tYMXPDknodpOqQ= =YvRk -----END PGP SIGNATURE-----