• Russ Cox's avatar
    liblink, runtime: diagnose and fix C code running on Go stack · c81a0ed3
    Russ Cox authored
    This CL contains compiler+runtime changes that detect C code
    running on Go (not g0, not gsignal) stacks, and it contains
    corrections for what it detected.
    
    The detection works by changing the C prologue to use a different
    stack guard word in the G than Go prologue does. On the g0 and
    gsignal stacks, that stack guard word is set to the usual
    stack guard value. But on ordinary Go stacks, that stack
    guard word is set to ^0, which will make any stack split
    check fail. The C prologue then calls morestackc instead
    of morestack, and morestackc aborts the program with
    a message about running C code on a Go stack.
    
    This check catches all C code running on the Go stack
    except NOSPLIT code. The NOSPLIT code is allowed,
    so the check is complete. Since it is a dynamic check,
    the code must execute to be caught. But unlike the static
    checks we've been using in cmd/ld, the dynamic check
    works with function pointers and other indirect calls.
    For example it caught sigpanic being pushed onto Go
    stacks in the signal handlers.
    
    Fixes #8667.
    
    LGTM=khr, iant
    R=golang-codereviews, khr, iant
    CC=golang-codereviews, r
    https://golang.org/cl/133700043
    c81a0ed3
Name
Last commit
Last update
..
archive Loading commit data...
bufio Loading commit data...
builtin Loading commit data...
bytes Loading commit data...
cmd Loading commit data...
compress Loading commit data...
container Loading commit data...
crypto Loading commit data...
database/sql Loading commit data...
debug Loading commit data...
encoding Loading commit data...
errors Loading commit data...
expvar Loading commit data...
flag Loading commit data...
fmt Loading commit data...
go Loading commit data...
hash Loading commit data...
html Loading commit data...
image Loading commit data...
index/suffixarray Loading commit data...
internal/syscall Loading commit data...
io Loading commit data...
lib9 Loading commit data...
libbio Loading commit data...
liblink Loading commit data...
log Loading commit data...
math Loading commit data...
mime Loading commit data...
net Loading commit data...
os Loading commit data...
path Loading commit data...
reflect Loading commit data...
regexp Loading commit data...
runtime Loading commit data...
sort Loading commit data...
strconv Loading commit data...
strings Loading commit data...
sync Loading commit data...
syscall Loading commit data...
testing Loading commit data...
text Loading commit data...
time Loading commit data...
unicode Loading commit data...
unsafe Loading commit data...
Make.dist Loading commit data...
all.bash Loading commit data...
all.bat Loading commit data...
all.rc Loading commit data...
androidtest.bash Loading commit data...
clean.bash Loading commit data...
clean.bat Loading commit data...
clean.rc Loading commit data...
make.bash Loading commit data...
make.bat Loading commit data...
make.rc Loading commit data...
nacltest.bash Loading commit data...
race.bash Loading commit data...
race.bat Loading commit data...
run.bash Loading commit data...
run.bat Loading commit data...
run.rc Loading commit data...
sudo.bash Loading commit data...