@ -137,19 +137,6 @@ func obfuscatedTypesPackage(path string) *types.Package {
panic ( "called obfuscatedTypesPackage on the current package?" )
panic ( "called obfuscatedTypesPackage on the current package?" )
}
}
entry , ok := importCfgEntries [ path ]
entry , ok := importCfgEntries [ path ]
// A "test/bar_test [test/bar.test]" package can try to look at
// "test/bar [test/bar.test]", for some reason.
// That really shouldn't happen, because external test packages are
// meant to just import the original non-test package.
// For now, correct for this weirdness by stripping the suffix.
// Without this change, test.txt fails.
// TODO(mvdan): figure out the cause of this.
if ! ok && strings . HasSuffix ( path , ".test]" ) {
path = path [ : strings . IndexByte ( path , ' ' ) ]
entry , ok = importCfgEntries [ path ]
}
if ! ok {
if ! ok {
// Handle the case where the name is defined in an indirectly
// Handle the case where the name is defined in an indirectly
// imported package. Since only direct imports show up in our
// imported package. Since only direct imports show up in our
@ -281,6 +268,7 @@ func goVersionOK() bool {
startDateIdx := strings . IndexByte ( commitAndDate , ' ' ) + 1
startDateIdx := strings . IndexByte ( commitAndDate , ' ' ) + 1
if startDateIdx < 0 {
if startDateIdx < 0 {
// Custom version; assume the user knows what they're doing.
// Custom version; assume the user knows what they're doing.
// TODO: cover this in a test
return true
return true
}
}
@ -510,11 +498,7 @@ func transformAsm(args []string) ([]string, error) {
flags = flagSetValue ( flags , "-p" , curPkg . obfuscatedImportPath ( ) )
flags = flagSetValue ( flags , "-p" , curPkg . obfuscatedImportPath ( ) )
}
}
var err error
flags = alterTrimpath ( flags )
flags , err = alterTrimpath ( flags )
if err != nil {
return nil , err
}
// We need to replace all function references with their obfuscated name
// We need to replace all function references with their obfuscated name
// counterparts.
// counterparts.
@ -643,10 +627,7 @@ func transformCompile(args []string) ([]string, error) {
}
}
}
}
flags , err = alterTrimpath ( flags )
flags = alterTrimpath ( flags )
if err != nil {
return nil , err
}
newImportCfg , err := processImportCfg ( flags )
newImportCfg , err := processImportCfg ( flags )
if err != nil {
if err != nil {
@ -1253,27 +1234,25 @@ func (tf *transformer) transformGo(file *ast.File) *ast.File {
// If the struct of this field was not obfuscated, do not obfuscate
// If the struct of this field was not obfuscated, do not obfuscate
// any of that struct's fields.
// any of that struct's fields.
if ! obj . Embedded ( ) {
parent , ok := cursor . Parent ( ) . ( * ast . SelectorExpr )
parent , ok := cursor . Parent ( ) . ( * ast . SelectorExpr )
if ! ok {
if ! ok {
break
break
}
}
named := namedType ( tf . info . TypeOf ( parent . X ) )
named := namedType ( tf . info . TypeOf ( parent . X ) )
if named == nil {
if named == nil {
break // TODO(mvdan): add a test
break // TODO(mvdan): add a test
}
}
if name := named . Obj ( ) . Name ( ) ; strings . HasPrefix ( name , "_Ctype" ) {
if name := named . Obj ( ) . Name ( ) ; strings . HasPrefix ( name , "_Ctype" ) {
// A field accessor on a cgo type, such as a C struct.
// A field accessor on a cgo type, such as a C struct.
// We're not obfuscating cgo names.
// We're not obfuscating cgo names.
return true
}
if path != curPkg . ImportPath {
obfPkg := obfuscatedTypesPackage ( path )
if obfPkg . Scope ( ) . Lookup ( named . Obj ( ) . Name ( ) ) != nil {
tf . recordIgnore ( named , path )
return true
return true
}
}
if path != curPkg . ImportPath {
obfPkg := obfuscatedTypesPackage ( path )
if obfPkg . Scope ( ) . Lookup ( named . Obj ( ) . Name ( ) ) != nil {
tf . recordIgnore ( named , path )
return true
}
}
}
}
case * types . TypeName :
case * types . TypeName :
if parentScope != pkg . Scope ( ) {
if parentScope != pkg . Scope ( ) {
@ -1306,17 +1285,6 @@ func (tf *transformer) transformGo(file *ast.File) *ast.File {
if strings . HasPrefix ( node . Name , "Test" ) && isTestSignature ( sign ) {
if strings . HasPrefix ( node . Name , "Test" ) && isTestSignature ( sign ) {
return true // don't break tests
return true // don't break tests
}
}
// If this is an imported func that was linknamed to a
// different symbol name, the imported package did not
// obfuscate the original func name.
// Don't do it here either.
if path != curPkg . ImportPath {
obfPkg := obfuscatedTypesPackage ( path )
if obfPkg . Scope ( ) . Lookup ( obj . Name ( ) ) != nil {
return true
}
}
default :
default :
return true // we only want to rename the above
return true // we only want to rename the above
}
}
@ -1511,19 +1479,15 @@ func splitFlagsFromArgs(all []string) (flags, args []string) {
return all , nil
return all , nil
}
}
func alterTrimpath ( flags [ ] string ) ( [] string , error ) {
func alterTrimpath ( flags [ ] string ) [] string {
// If the value of -trimpath doesn't contain the separator ';', the 'go
// If the value of -trimpath doesn't contain the separator ';', the 'go
// build' command is most likely not using '-trimpath'.
// build' command is most likely not using '-trimpath'.
trimpath := flagValue ( flags , "-trimpath" )
trimpath := flagValue ( flags , "-trimpath" )
if ! strings . Contains ( trimpath , ";" ) {
return nil , fmt . Errorf ( "-toolexec=garble should be used alongside -trimpath" )
}
// Add our temporary dir to the beginning of -trimpath, so that we don't
// Add our temporary dir to the beginning of -trimpath, so that we don't
// leak temporary dirs. Needs to be at the beginning, since there may be
// leak temporary dirs. Needs to be at the beginning, since there may be
// shorter prefixes later in the list, such as $PWD if TMPDIR=$PWD/tmp.
// shorter prefixes later in the list, such as $PWD if TMPDIR=$PWD/tmp.
flags = flagSetValue ( flags , "-trimpath" , sharedTempDir + "=>;" + trimpath )
return flagSetValue ( flags , "-trimpath" , sharedTempDir + "=>;" + trimpath )
return flags , nil
}
}
// buildFlags is obtained from 'go help build' as of Go 1.15.
// buildFlags is obtained from 'go help build' as of Go 1.15.