@ -21,7 +21,6 @@ import (
"os"
"os"
"os/exec"
"os/exec"
"path/filepath"
"path/filepath"
"reflect"
"runtime"
"runtime"
"runtime/debug"
"runtime/debug"
"strconv"
"strconv"
@ -757,10 +756,6 @@ func (tf *transformer) handleDirectives(comments []*ast.CommentGroup) {
if ! lpkg . Private {
if ! lpkg . Private {
continue // ignore non-private symbols
continue // ignore non-private symbols
}
}
obfPkg := obfuscatedTypesPackage ( pkgPath )
if obfPkg != nil && obfPkg . Scope ( ) . Lookup ( name ) != nil {
continue // the name exists and was not obfuscated
}
// The name exists and was obfuscated; replace the
// The name exists and was obfuscated; replace the
// comment with the obfuscated name.
// comment with the obfuscated name.
@ -1089,33 +1084,32 @@ func (tf *transformer) transformGo(file *ast.File) *ast.File {
// log.Printf("%#v %T", node, obj)
// log.Printf("%#v %T", node, obj)
parentScope := obj . Parent ( )
parentScope := obj . Parent ( )
switch x := obj . ( type ) {
switch obj := obj . ( type ) {
case * types . Var :
case * types . Var :
if parentScope != nil && parentScope != pkg . Scope ( ) {
if parentScope != nil && parentScope != pkg . Scope ( ) {
// i dentifiers of non-global variables never show up in the binary
// I dentifiers of non-global variables never show up in the binary.
return true
return true
}
}
// i f the struct of this field was not obfuscated, do not obfuscate
// I f the struct of this field was not obfuscated, do not obfuscate
// any of that struct's fields
// any of that struct's fields .
if parentScope != tf . pkg . Scope ( ) && x. IsField ( ) && ! x . Embedded ( ) {
if parentScope != tf . pkg . Scope ( ) && obj. IsField ( ) && ! obj . Embedded ( ) {
parent , ok := cursor . Parent ( ) . ( * ast . SelectorExpr )
parent , ok := cursor . Parent ( ) . ( * ast . SelectorExpr )
if ! ok {
if ! ok {
break
break
}
}
parentType := tf . info . TypeOf ( parent . X )
named := namedType ( tf . info . TypeOf ( parent . X ) )
if parentType == nil {
break
}
named := namedType ( parentType )
if named == nil {
if named == nil {
break
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
return true
}
}
// If the type originates from an indirect import,
// it's possible for obfPkg to be nil here.
// TODO(mvdan): add a test and think how to fix this
if obfPkg := obfuscatedTypesPackage ( path ) ; obfPkg != nil {
if obfPkg := obfuscatedTypesPackage ( path ) ; obfPkg != nil {
if obfPkg . Scope ( ) . Lookup ( named . Obj ( ) . Name ( ) ) != nil {
if obfPkg . Scope ( ) . Lookup ( named . Obj ( ) . Name ( ) ) != nil {
recordStruct ( named , tf . ignoreObjects )
recordStruct ( named , tf . ignoreObjects )
@ -1125,22 +1119,22 @@ func (tf *transformer) transformGo(file *ast.File) *ast.File {
}
}
case * types . TypeName :
case * types . TypeName :
if parentScope != pkg . Scope ( ) {
if parentScope != pkg . Scope ( ) {
// i dentifiers of non-global types never show up in the binary
// I dentifiers of non-global types never show up in the binary.
return true
return true
}
}
// i f the type was not obfuscated in the package were it was defined,
// I f the type was not obfuscated in the package were it was defined,
// do not obfuscate it here
// do not obfuscate it here .
if parentScope != tf . pkg . Scope ( ) {
if parentScope != tf . pkg . Scope ( ) {
named := namedType ( x . Type ( ) )
named := namedType ( obj . Type ( ) )
if named == nil {
if named == nil {
break
break // TODO(mvdan): add a test
}
}
if obfPkg := obfuscatedTypesPackage ( path ) ; obfPkg != nil {
// The type is directly referenced by name,
if obfPkg . Scope ( ) . Lookup ( x . Name ( ) ) != nil {
// so obfuscatedTypesPackage can't return nil.
recordStruct ( named , tf . ignoreObjects )
if obfuscatedTypesPackage ( path ) . Scope ( ) . Lookup ( obj . Name ( ) ) != nil {
return true
recordStruct ( named , tf . ignoreObjects )
}
return true
}
}
}
}
case * types . Func :
case * types . Func :
@ -1159,20 +1153,6 @@ func (tf *transformer) transformGo(file *ast.File) *ast.File {
return true // we only want to rename the above
return true // we only want to rename the above
}
}
obfPkg := obfuscatedTypesPackage ( path )
// Check if the imported name wasn't obfuscated.
// If the object returned from the obfuscated package's scope has a
// different type as the object we're searching for, they are
// most likely two separate objects with the same name, so ok to
// obfuscate.
if obfPkg == nil {
// TODO(mvdan): This is probably a bug.
// Add a test case where an indirect package has a name
// that we did not obfuscate.
} else if o := obfPkg . Scope ( ) . Lookup ( obj . Name ( ) ) ; o != nil && reflect . TypeOf ( o ) == reflect . TypeOf ( obj ) {
return true
}
origName := node . Name
origName := node . Name
_ = origName // used for debug prints below
_ = origName // used for debug prints below