Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1210988
| From | Ingo Molnar <mingo@kernel.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH v10 03/20] x86/stackvalidate: Compile-time stack validation |
| Date | 2015-08-21 10:00 +0200 |
| Message-ID | <pZPp0-5LS-27@gated-at.bofh.it> (permalink) |
| References | (1 earlier) <pXdHb-6tK-1@gated-at.bofh.it> <pXE4G-2Wa-3@gated-at.bofh.it> <pXJ4m-1DC-3@gated-at.bofh.it> <pZ8tI-2KG-5@gated-at.bofh.it> <pZpkS-1Os-9@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
* Josh Poimboeuf <jpoimboe@redhat.com> wrote: > +Why do we need stack validation? > +-------------------------------- > + > +Here are some of the benefits of validating stack metadata: > + > +a) More reliable stack traces for frame pointer enabled kernels > + > + Frame pointers are used for debugging purposes. They allow runtime > + code and debug tools to be able to walk the stack to determine the > + chain of function call sites that led to the currently executing > + code. > + > + For some architectures, frame pointers are enabled by > + CONFIG_FRAME_POINTER. For some other architectures they may be > + required by the ABI (sometimes referred to as "backchain pointers"). > + > + For C code, gcc automatically generates instructions for setting up > + frame pointers when the -fno-omit-frame-pointer option is used. > + > + But for asm code, the frame setup instructions have to be written by > + hand, which most people don't do. So the end result is that > + CONFIG_FRAME_POINTER is honored for C code but not for most asm code. > + > + For stack traces based on frame pointers to be reliable, all > + functions which call other functions must first create a stack frame > + and update the frame pointer. If a first function doesn't properly > + create a stack frame before calling a second function, the *caller* > + of the first function will be skipped on the stack trace. > + > + The benefit of stackvalidate here is that it ensures that *all* > + functions honor CONFIG_FRAME_POINTER. As a result, no functions will > + ever [*] be skipped on a stack trace. > + > + [*] unless an interrupt or exception has occurred at the very > + beginning of a function before the stack frame has been created, > + or at the very end of the function after the stack frame has been > + destroyed. This is an inherent limitation of frame pointers. What this section does not point out is the actual effects of missing frame pointer annotations. I.e. how about quoting a before/after stack backtrace to demonstrate it? Thanks, Ingo -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Re: [PATCH v10 03/20] x86/stackvalidate: Compile-time stack validation Josh Poimboeuf <jpoimboe@redhat.com> - 2015-08-20 06:10 +0200
Re: [PATCH v10 03/20] x86/stackvalidate: Compile-time stack validation Ingo Molnar <mingo@kernel.org> - 2015-08-21 10:00 +0200
Re: [PATCH v10 03/20] x86/stackvalidate: Compile-time stack validation Josh Poimboeuf <jpoimboe@redhat.com> - 2015-08-21 15:40 +0200
Re: [PATCH v10 03/20] x86/stackvalidate: Compile-time stack validation Ingo Molnar <mingo@kernel.org> - 2015-08-22 11:20 +0200
csiph-web