You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
garble/testdata/script
Paul Scheduikat 926f3de60d obfuscate all names used in reflection
Go code can retrieve and use field and method names via the `reflect` package.
For that reason, historically we did not obfuscate names of fields and methods
underneath types that we detected as used for reflection, via e.g. `reflect.TypeOf`.

However, that caused a number of issues. Since we obfuscate and build one package
at a time, we could only detect when types were used for reflection in their own package
or in upstream packages. Use of reflection in downstream packages would be detected
too late, causing one package to obfuscate the names and the other not to, leading to a build failure.

A different approach is implemented here. All names are obfuscated now, but we collect
those types used for reflection, and at the end of a build in `package main`,
we inject a function into the runtime's `internal/abi` package to reverse the obfuscation
for those names which can be used for reflection.

This does mean that the obfuscation for these names is very weak, as the binary
contains a one-to-one mapping to their original names, but they cannot be obfuscated
without breaking too many Go packages out in the wild. There is also some amount
of overhead in `internal/abi` due to this, but we aim to make the overhead insignificant.

Fixes #884, #799, #817, #881, #858, #843, #842

Closes #406
4 months ago
..
asm.txtar drop Go 1.22 and require Go 1.23.0 or later (#876) 5 months ago
atomic.txtar drop Go 1.22 and require Go 1.23.0 or later (#876) 5 months ago
basic.txtar drop Go 1.22 and require Go 1.23.0 or later (#876) 5 months ago
cache.txtar drop Go 1.22 and require Go 1.23.0 or later (#876) 5 months ago
cgo.txtar drop Go 1.22 and require Go 1.23.0 or later (#876) 5 months ago
crossbuild.txtar drop Go 1.22 and require Go 1.23.0 or later (#876) 5 months ago
ctrlflow.txtar drop Go 1.22 and require Go 1.23.0 or later (#876) 5 months ago
debugdir.txtar drop Go 1.22 and require Go 1.23.0 or later (#876) 5 months ago
embed.txtar drop Go 1.22 and require Go 1.23.0 or later (#876) 5 months ago
goenv.txtar drop Go 1.22 and require Go 1.23.0 or later (#876) 5 months ago
gogarble.txtar clarify and test that runtime.GOROOT is not available 4 months ago
goversion.txtar drop Go 1.22 and require Go 1.23.0 or later (#876) 5 months ago
help.txtar drop Go 1.22 and require Go 1.23.0 or later (#876) 5 months ago
implement.txtar drop Go 1.22 and require Go 1.23.0 or later (#876) 5 months ago
imports.txtar drop Go 1.22 and require Go 1.23.0 or later (#876) 5 months ago
init.txtar drop Go 1.22 and require Go 1.23.0 or later (#876) 5 months ago
ldflags.txtar drop Go 1.22 and require Go 1.23.0 or later (#876) 5 months ago
linker.txtar drop Go 1.22 and require Go 1.23.0 or later (#876) 5 months ago
linkname.txtar drop Go 1.22 and require Go 1.23.0 or later (#876) 5 months ago
list_error.txtar drop Go 1.22 and require Go 1.23.0 or later (#876) 5 months ago
literals.txtar drop Go 1.22 and require Go 1.23.0 or later (#876) 5 months ago
modinfo.txtar drop Go 1.22 and require Go 1.23.0 or later (#876) 5 months ago
plugin.txtar drop Go 1.22 and require Go 1.23.0 or later (#876) 5 months ago
position.txtar drop Go 1.22 and require Go 1.23.0 or later (#876) 5 months ago
reflect.txtar obfuscate all names used in reflection 4 months ago
reverse.txtar drop Go 1.22 and require Go 1.23.0 or later (#876) 5 months ago
run.txtar drop Go 1.22 and require Go 1.23.0 or later (#876) 5 months ago
seed-cache.txtar drop Go 1.22 and require Go 1.23.0 or later (#876) 5 months ago
seed.txtar drop Go 1.22 and require Go 1.23.0 or later (#876) 5 months ago
syntax.txtar drop Go 1.22 and require Go 1.23.0 or later (#876) 5 months ago
test.txtar drop Go 1.22 and require Go 1.23.0 or later (#876) 5 months ago
tiny.txtar drop Go 1.22 and require Go 1.23.0 or later (#876) 5 months ago
typeparams.txtar drop Go 1.22 and require Go 1.23.0 or later (#876) 5 months ago