diff --git a/main.go b/main.go index f108288..5a07aa2 100644 --- a/main.go +++ b/main.go @@ -9,6 +9,7 @@ import ( "os" "os/exec" "path/filepath" + "strings" ) var flagSet = flag.NewFlagSet("garble", flag.ContinueOnError) @@ -38,10 +39,10 @@ func main1() int { _, tool := filepath.Split(args[0]) // TODO: trim ".exe" for windows? transformed := args[1:] - switch tool { - case "compile": + // fmt.Fprintln(os.Stderr, tool, transformed) + if transform := transformFuncs[tool]; transform != nil { var err error - transformed, err = transformCompile(args[1:]) + transformed, err = transform(transformed) if err != nil { fmt.Fprintln(os.Stderr, err) return 1 @@ -57,6 +58,46 @@ func main1() int { return 0 } +var transformFuncs = map[string]func([]string) ([]string, error){ + "compile": transformCompile, + "link": transformLink, +} + func transformCompile(args []string) ([]string, error) { + flags, files := splitFlagsFromFiles(args, ".go") + if len(files) == 0 { + // Nothing to transform; probably just ["-V=full"]. + return args, nil + } + + // TODO: find a way to do this. -trimpath is always present for some reason. + // trimpath := false + // for _, flag := range flags { + // if strings.HasPrefix(flag, "-trimpath") { + // trimpath = true + // } + // } + // if !trimpath { + // return nil, fmt.Errorf("-toolexec=garble should be used alongside -trimpath") + // } + return append(flags, files...), nil +} + +func transformLink(args []string) ([]string, error) { + flags, files := splitFlagsFromFiles(args, ".a") + if len(files) == 0 { + // Nothing to transform; probably just ["-V=full"]. + return args, nil + } + flags = append(flags, "-w", "-s") + return append(flags, files...), nil +} + +func splitFlagsFromFiles(args []string, ext string) (flags, files []string) { + for i, arg := range args { + if !strings.HasPrefix(arg, "-") && strings.HasSuffix(arg, ext) { + return args[:i:i], args[i:] + } + } return args, nil } diff --git a/testdata/scripts/basic.txt b/testdata/scripts/basic.txt index 99fb66d..0fb3ad5 100644 --- a/testdata/scripts/basic.txt +++ b/testdata/scripts/basic.txt @@ -6,13 +6,34 @@ # correctly run garble thanks to go-internal/testscript. mkdir .bin symlink .bin/garble$exe -> $TESTBIN -env PATH=.bin${:}$PATH +env PATH=$WORK/.bin${:}$PATH env TESTSCRIPT_COMMAND=garble -exec go build -toolexec=garble main.go -exists main +# Check that the program works as expected without garble. +exec go build main.go exec ./main cmp stderr main.stderr +grep $WORK main + +# The default compilation includes DWARF and the symbol table. +exec readelf --section-details --symbols main +stdout 'debug_info$' +stdout 'globalVar' + +# TODO +# Check that we fail if the user forgot -trimpath. +# ! exec go build -a -toolexec=garble main.go + +# Check that the simplest use of garble works. +exec go build -a -trimpath -toolexec=garble main.go +exec ./main +cmp stderr main.stderr + +exec readelf --section-details --symbols main +! stdout 'debug_info$' +! stdout 'globalVar' + +# ! grep $WORK main # TODO # ! grep 'globalVar' main # ! grep 'globalFunc' main