@ -34,6 +34,7 @@ import (
"unicode"
"unicode"
"unicode/utf8"
"unicode/utf8"
"golang.org/x/exp/slices"
"golang.org/x/mod/modfile"
"golang.org/x/mod/modfile"
"golang.org/x/mod/semver"
"golang.org/x/mod/semver"
"golang.org/x/tools/go/ast/astutil"
"golang.org/x/tools/go/ast/astutil"
@ -549,16 +550,8 @@ func transformAsm(args []string) ([]string, error) {
// If the assembler is running just for -gensymabis,
// If the assembler is running just for -gensymabis,
// don't obfuscate the source, as we are not assembling yet.
// don't obfuscate the source, as we are not assembling yet.
// The assembler will run again later; obfuscating twice is just wasteful.
// The assembler will run again later; obfuscating twice is just wasteful.
symabis := false
for _ , arg := range args {
if arg == "-gensymabis" {
symabis = true
break
}
}
newPaths := make ( [ ] string , 0 , len ( paths ) )
newPaths := make ( [ ] string , 0 , len ( paths ) )
if ! symabis {
if ! slices . Contains ( args , "-gensymabis" ) {
var newPaths [ ] string
for _ , path := range paths {
for _ , path := range paths {
name := filepath . Base ( path )
name := filepath . Base ( path )
pkgDir := filepath . Join ( sharedTempDir , filepath . FromSlash ( curPkg . ImportPath ) )
pkgDir := filepath . Join ( sharedTempDir , filepath . FromSlash ( curPkg . ImportPath ) )
@ -578,7 +571,6 @@ func transformAsm(args []string) ([]string, error) {
middleDotLen := utf8 . RuneLen ( middleDot )
middleDotLen := utf8 . RuneLen ( middleDot )
for _ , path := range paths {
for _ , path := range paths {
// Read the entire file into memory.
// Read the entire file into memory.
// If we find issues with large files, we can use bufio.
// If we find issues with large files, we can use bufio.
content , err := os . ReadFile ( path )
content , err := os . ReadFile ( path )
@ -899,33 +891,26 @@ func processImportCfg(flags []string) (newImportCfg string, _ error) {
var packagefiles , importmaps [ ] [ 2 ] string
var packagefiles , importmaps [ ] [ 2 ] string
for _ , line := range strings . SplitAfter ( string ( data ) , "\n" ) {
for _ , line := range strings . Split ( string ( data ) , "\n" ) {
line = strings . TrimSpace ( line )
if line == "" || strings . HasPrefix ( line , "#" ) {
if line == "" || strings . HasPrefix ( line , "#" ) {
continue
continue
}
}
i := strings . IndexByte ( line , ' ' )
verb, args , found := strings . Cut ( line , " " )
if i < 0 {
if ! found {
continue
continue
}
}
verb := line [ : i ]
switch verb {
switch verb {
case "importmap" :
case "importmap" :
args := strings . TrimSpace ( line [ i + 1 : ] )
beforePath , afterPath , found := strings . Cut ( args , "=" )
j := strings . IndexByte ( args , '=' )
if ! found {
if j < 0 {
continue
continue
}
}
beforePath , afterPath := args [ : j ] , args [ j + 1 : ]
importmaps = append ( importmaps , [ 2 ] string { beforePath , afterPath } )
importmaps = append ( importmaps , [ 2 ] string { beforePath , afterPath } )
case "packagefile" :
case "packagefile" :
args := strings . TrimSpace ( line [ i + 1 : ] )
importPath , objectPath , found := strings . Cut ( args , "=" )
j := strings . IndexByte ( args , '=' )
if ! found {
if j < 0 {
continue
continue
}
}
importPath , objectPath := args [ : j ] , args [ j + 1 : ]
packagefiles = append ( packagefiles , [ 2 ] string { importPath , objectPath } )
packagefiles = append ( packagefiles , [ 2 ] string { importPath , objectPath } )
}
}
}
}
@ -1187,16 +1172,15 @@ func (tf *transformer) prefillObjectMaps(files []*ast.File) error {
return err
return err
}
}
flagValueIter ( ldflags , "-X" , func ( val string ) {
flagValueIter ( ldflags , "-X" , func ( val string ) {
// val is in the form of " importpath .name=value".
// val is in the form of " foo.com/bar .name=value".
i := strings . IndexByte ( val , '=' )
fullName, stringValue , found := strings . Cut ( val , "=" )
if i < 0 {
if ! found {
return // invalid
return // invalid
}
}
stringValue := val [ i + 1 : ]
val = val [ : i ] // "importpath .name"
// fullName is "foo.com/bar .name"
i = strings . LastIndexByte ( val , '.' )
i := strings . LastIndexByte ( fullName , '.' )
path , name := val[ : i ] , val [ i + 1 : ]
path , name := fullName[ : i ] , fullName [ i + 1 : ]
// -X represents the main package as "main", not its import path.
// -X represents the main package as "main", not its import path.
if path != curPkg . ImportPath && ! ( path == "main" && curPkg . Name == "main" ) {
if path != curPkg . ImportPath && ! ( path == "main" && curPkg . Name == "main" ) {
@ -1793,26 +1777,22 @@ func transformLink(args []string) ([]string, error) {
// To cover both obfuscated and non-obfuscated names,
// To cover both obfuscated and non-obfuscated names,
// duplicate each flag with a obfuscated version.
// duplicate each flag with a obfuscated version.
flagValueIter ( flags , "-X" , func ( val string ) {
flagValueIter ( flags , "-X" , func ( val string ) {
// val is in the form of "pkg.name=str"
// val is in the form of "foo.com/bar.name=value".
i := strings . IndexByte ( val , '=' )
fullName , stringValue , found := strings . Cut ( val , "=" )
if i <= 0 {
if ! found {
return
return // invalid
}
name := val [ : i ]
str := val [ i + 1 : ]
j := strings . LastIndexByte ( name , '.' )
if j <= 0 {
return
}
}
pkg := name [ : j ]
name = name [ j + 1 : ]
// fullName is "foo.com/bar.name"
i := strings . LastIndexByte ( fullName , '.' )
path , name := fullName [ : i ] , fullName [ i + 1 : ]
// If the package path is "main", it's the current top-level
// If the package path is "main", it's the current top-level
// package we are linking.
// package we are linking.
// Otherwise, find it in the cache.
// Otherwise, find it in the cache.
lpkg := curPkg
lpkg := curPkg
if p kg != "main" {
if p ath != "main" {
lpkg = cache . ListedPackages [ p kg ]
lpkg = cache . ListedPackages [ p ath ]
}
}
if lpkg == nil {
if lpkg == nil {
// We couldn't find the package.
// We couldn't find the package.
@ -1821,12 +1801,12 @@ func transformLink(args []string) ([]string, error) {
return
return
}
}
// As before, the main package must remain as "main".
// As before, the main package must remain as "main".
newP kg := pkg
newP ath := path
if p kg != "main" {
if p ath != "main" {
newP kg = lpkg . obfuscatedImportPath ( )
newP ath = lpkg . obfuscatedImportPath ( )
}
}
newName := hashWithPackage ( lpkg , name )
newName := hashWithPackage ( lpkg , name )
flags = append ( flags , fmt . Sprintf ( "-X=%s.%s=%s" , newP kg, newName , str ) )
flags = append ( flags , fmt . Sprintf ( "-X=%s.%s=%s" , newP ath, newName , stringValue ) )
} )
} )
// Starting in Go 1.17, Go's version is implicitly injected by the linker.
// Starting in Go 1.17, Go's version is implicitly injected by the linker.
@ -1938,10 +1918,7 @@ func filterForwardBuildFlags(flags []string) (filtered []string, firstUnknown st
arg = arg [ 1 : ] // "--name" to "-name"; keep the short form
arg = arg [ 1 : ] // "--name" to "-name"; keep the short form
}
}
name := arg
name , _ , _ := strings . Cut ( arg , "=" ) // "-name=value" to "-name"
if i := strings . IndexByte ( arg , '=' ) ; i > 0 {
name = arg [ : i ] // "-name=value" to "-name"
}
buildFlag := forwardBuildFlags [ name ]
buildFlag := forwardBuildFlags [ name ]
if buildFlag {
if buildFlag {