• Russ Cox's avatar
    runtime: avoid gentraceback of self on user goroutine stack · 39bcbb35
    Russ Cox authored
    Gentraceback may grow the stack.
    One of the gentraceback wrappers may grow the stack.
    One of the gentraceback callback calls may grow the stack.
    Various stack pointers are stored in various stack locations
    as type uintptr during the execution of these calls.
    If the stack does grow, these stack pointers will not be
    updated and will start trying to decode stack memory that
    is no longer valid.
    
    It may be possible to change the type of the stack pointer
    variables to be unsafe.Pointer, but that's pretty subtle and
    may still have problems, even if we catch every last one.
    An easier, more obviously correct fix is to require that
    gentraceback of the currently running goroutine must run
    on the g0 stack, not on the goroutine's own stack.
    
    Not doing this causes faults when you set
            StackFromSystem = 1
            StackFaultOnFree = 1
    
    The new check in gentraceback will catch future lapses.
    
    The more general problem is calling getcallersp but then
    calling a function that might relocate the stack, which would
    invalidate the result of getcallersp. Add note to stubs.go
    declaration of getcallersp explaining the problem, and
    check all existing calls to getcallersp. Most needed fixes.
    
    This affects Callers, Stack, and nearly all the runtime
    profiling routines. It does not affect stack copying directly
    nor garbage collection.
    
    LGTM=khr
    R=khr, bradfitz
    CC=golang-codereviews, r
    https://golang.org/cl/167060043
    39bcbb35
Name
Last commit
Last update
api Loading commit data...
doc Loading commit data...
include Loading commit data...
lib Loading commit data...
misc Loading commit data...
src Loading commit data...
test Loading commit data...
.hgignore Loading commit data...
.hgtags Loading commit data...
AUTHORS Loading commit data...
CONTRIBUTORS Loading commit data...
LICENSE Loading commit data...
PATENTS Loading commit data...
README Loading commit data...
favicon.ico Loading commit data...
robots.txt Loading commit data...