From 84ba444b7c7628ccd30919f860936ff406357f38 Mon Sep 17 00:00:00 2001 From: lu4p Date: Fri, 13 May 2022 15:48:09 +0200 Subject: [PATCH] Disable seed obfuscator (#535) The seed obfuscator uses a type declaration in order to declare a function, which returns a function with the same type. This breaks when obfuscating literals inside generic functions, because type declarations inside generic functions are not currently supported. Therefore the obfuscator gets disabled until https://github.com/golang/go/issues/47631 is fixed. --- internal/literals/obfuscators.go | 2 +- testdata/scripts/literals.txt | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/internal/literals/obfuscators.go b/internal/literals/obfuscators.go index 62c57c3..6948020 100644 --- a/internal/literals/obfuscators.go +++ b/internal/literals/obfuscators.go @@ -21,7 +21,7 @@ var obfuscators = []obfuscator{ swap{}, split{}, shuffle{}, - seed{}, + // seed{}, TODO: re-enable once https://github.com/golang/go/issues/47631 is fixed } // If math/rand.Seed() is not called, the generator behaves as if seeded by rand.Seed(1), diff --git a/testdata/scripts/literals.txt b/testdata/scripts/literals.txt index 9453a3d..7902d32 100644 --- a/testdata/scripts/literals.txt +++ b/testdata/scripts/literals.txt @@ -46,8 +46,9 @@ grep '^\s+\w+ \^= \w+ \* \w+$' debug1/test/main/extra_literals.go # Note that the line obfuscator adds an inline comment before the call. grep '^\s+\w+ = .*\bappend\(\w+,(\s+\w+\[\d+\][\^\-+]\w+\[\d+\],?)+\)$' debug1/test/main/extra_literals.go +# TODO: re-enable once https://github.com/golang/go/issues/47631 is fixed # XorSeed obfuscator. Detect type decFunc func(byte) decFunc -grep '^\s+type \w+ func\(byte\) \w+$' debug1/test/main/extra_literals.go +# grep '^\s+type \w+ func\(byte\) \w+$' debug1/test/main/extra_literals.go # Finally, sanity check that we can build all of std with -literals. # Analogous to gogarble.txt.