lkml.org 
[lkml]   [2019]   [Oct]   [21]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    /
    Date
    From
    SubjectRe: [PATCH 00/18] add support for Clang's Shadow Call Stack
    Hi,

    On Fri, 18 Oct 2019 09:10:15 -0700
    Sami Tolvanen <samitolvanen@google.com> wrote:

    > This patch series adds support for Clang's Shadow Call Stack (SCS)
    > mitigation, which uses a separately allocated shadow stack to protect
    > against return address overwrites. More information can be found here:
    >
    > https://clang.llvm.org/docs/ShadowCallStack.html

    Looks interesting, and like what function-graph tracing does...

    >
    > SCS is currently supported only on arm64, where the compiler requires
    > the x18 register to be reserved for holding the current task's shadow
    > stack pointer. Because of this, the series includes four patches from
    > Ard to remove x18 usage from assembly code and to reserve the register
    > from general allocation.
    >
    > With -fsanitize=shadow-call-stack, the compiler injects instructions
    > to all non-leaf C functions to store the return address to the shadow
    > stack and unconditionally load it again before returning. As a result,
    > SCS is incompatible with features that rely on modifying function
    > return addresses to alter control flow, such as function graph tracing
    > and kretprobes. A copy of the return address is still kept in the
    > kernel stack for compatibility with stack unwinding, for example.

    Is it possible that kretprobes and function graph tracing modify the
    SCS directly instead of changing real stack in that case?

    Thank you,

    --
    Masami Hiramatsu <mhiramat@kernel.org>

    \
     
     \ /
      Last update: 2019-10-21 11:29    [W:8.734 / U:0.016 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site