obfuscate fewer std packages (#196)
Previously, we were never obfuscating runtime and its direct dependencies. Unfortunately, due to linkname, the runtime package is actually closely related to dozens of other std packages as well. Until we can obfuscate the runtime and properly support go:linkname directives, obfuscating fewer std packages is a better outcome than breaking and not producing any obfuscated code at all. The added test case is building runtime/pprof, which used to cause failures: # runtime/pprof /go/src/runtime/pprof/label.go:27:21: undefined: context.Context /go/src/runtime/pprof/label.go:59:21: undefined: context.Context /go/src/runtime/pprof/label.go:93:16: undefined: context.Context /go/src/runtime/pprof/label.go:101:20: undefined: context.Context The net package was also very close to obfuscating properly thanks to this change, so its test is now run as well. The only other remaining fix was to not obfuscate fields on cgo types, since those aren't obfuscated at the moment. The map is pretty long, but it's only a temporary solution and the command to obtain the list again is included. Never obfuscating the entire std library is also an option, but it's a bit unnecessary. Fixes #134.pull/198/head
parent
6857aa1426
commit
c9deff810b
@ -0,0 +1,19 @@
|
||||
#!/bin/bash
|
||||
|
||||
# This script is hacky, but lets us list all packages depended on by runtime, or
|
||||
# related to runtime via go:linkname.
|
||||
#
|
||||
# Once we can obfuscate the runtime package, this script can probably be
|
||||
# deleted.
|
||||
|
||||
go version
|
||||
echo
|
||||
|
||||
for GOOS in linux darwin windows; do
|
||||
skip="macos"
|
||||
if [[ $GOOS == "darwin" ]]; then
|
||||
skip=""
|
||||
fi
|
||||
|
||||
GOOS=$GOOS go list -deps $(sed -rn 's@//go:linkname .* ([^.]*)\.[^.]*@\1@p' $(go env GOROOT)/src/runtime/*.go | grep -v '^main\|\.\|js\|'$skip) runtime || exit 1
|
||||
done | sort -u
|
Loading…
Reference in New Issue