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
Daniel Martí 23c8641855 propagate "uses reflection" through SSA stores
Up until now, the new SSA reflection detection relied on call sites
to propagate which objects (named types, struct fields) used reflection.
For example, given the code:

    json.Marshal(new(T))

we would first record that json.Marshal calls reflect.TypeOf,
and then that the user's code called json.Marshal with the type *T.

However, this would not catch a slight variation on the above:

    var t T
    reflect.TypeOf(t)
    t.foo = struct{bar int}{}

Here, type T's fields such as "foo" and "bar" are not obfuscated,
since our logic sees the call site and marks the type T recursively.
However, the unnamed `struct{bar int}` type was still obfuscated,
causing errors such as:

    cannot use struct{uKGvcJvD24 int}{} (value of type struct{uKGvcJvD24 int}) as struct{bar int} value in assignment

The solution is to teach the analysis about *ssa.Store instructions
in a similar way to how it already knows about *ssa.Call instructions.
If we see a store where the destination type is marked for reflection,
then we mark the source type as well, fixing the bug above.

This fixes obfuscating github.com/gogo/protobuf/proto.
A number of other Go modules fail with similar errors,
and they look like very similar bugs,
but this particular fix doesn't apply to them.
Future incremental fixes will try to deal with those extra cases.

Fixes #685.
2 years ago
..
asm.txtar set testscript's RequireExplicitExec and RequireUniqueNames 2 years ago
atomic.txtar set testscript's RequireExplicitExec and RequireUniqueNames 2 years ago
basic.txtar set testscript's RequireExplicitExec and RequireUniqueNames 2 years ago
cache.txtar support computing missing pkgCache entries 2 years ago
cgo.txtar set testscript's RequireExplicitExec and RequireUniqueNames 2 years ago
crossbuild.txtar set testscript's RequireExplicitExec and RequireUniqueNames 2 years ago
ctrlflow.txtar add "max" flag value and limits for control flow obfuscation parameters 2 years ago
debugdir.txtar set testscript's RequireExplicitExec and RequireUniqueNames 2 years ago
embed.txtar set testscript's RequireExplicitExec and RequireUniqueNames 2 years ago
goenv.txtar drop support for Go 1.19 2 years ago
gogarble.txtar avoid go:linkname warnings when building on tip 2 years ago
goversion.txtar suggest a command when asking the user to rebuild garble 2 years ago
help.txtar adapt to tip's error message change from "GOROOT" to "std" 2 years ago
implement.txtar set testscript's RequireExplicitExec and RequireUniqueNames 2 years ago
imports.txtar use go:build in script/imports.txtar 2 years ago
init.txtar set testscript's RequireExplicitExec and RequireUniqueNames 2 years ago
ldflags.txtar set testscript's RequireExplicitExec and RequireUniqueNames 2 years ago
linker.txtar internal/linker: place files under GARBLE_CACHE 2 years ago
linkname.txtar set testscript's RequireExplicitExec and RequireUniqueNames 2 years ago
list_error.txtar simplify our handling of "go list" errors 2 years ago
literals.txtar set testscript's RequireExplicitExec and RequireUniqueNames 2 years ago
modinfo.txtar set testscript's RequireExplicitExec and RequireUniqueNames 2 years ago
plugin.txtar set testscript's RequireExplicitExec and RequireUniqueNames 2 years ago
position.txtar set testscript's RequireExplicitExec and RequireUniqueNames 2 years ago
reflect.txtar propagate "uses reflection" through SSA stores 2 years ago
reverse.txtar set testscript's RequireExplicitExec and RequireUniqueNames 2 years ago
run.txtar set testscript's RequireExplicitExec and RequireUniqueNames 2 years ago
seed-cache.txtar set testscript's RequireExplicitExec and RequireUniqueNames 2 years ago
seed.txtar set testscript's RequireExplicitExec and RequireUniqueNames 2 years ago
syntax.txtar set testscript's RequireExplicitExec and RequireUniqueNames 2 years ago
test.txtar set testscript's RequireExplicitExec and RequireUniqueNames 2 years ago
tiny.txtar set testscript's RequireExplicitExec and RequireUniqueNames 2 years ago
typeparams.txtar set testscript's RequireExplicitExec and RequireUniqueNames 2 years ago