|
|
|
# Past garble versions might not properly patch cmd/link with "git apply"
|
|
|
|
# when running inside a git repository. Skip the extra check with -short.
|
|
|
|
[!short] [exec:git] exec git init -q
|
|
|
|
[!short] [exec:git] env GARBLE_CACHE_DIR=$WORK/linker-cache
|
|
|
|
|
patch and rebuild cmd/link to modify the magic value in pclntab
This value is hard-coded in the linker and written in a header.
We could rewrite the final binary, like we used to do with import paths,
but that would require once again maintaining libraries to do so.
Instead, we're now modifying the linker to do what we want.
It's not particularly hard, as every Go install has its source code,
and rebuilding a slightly modified linker only takes a few seconds at most.
Thanks to `go build -overlay`, we only need to copy the files we modify,
and right now we're just modifying one file in the toolchain.
We use a git patch, as the change is fairly static and small,
and the patch is easier to understand and maintain.
The other side of this change is in the runtime,
as it also hard-codes the magic value when loading information.
We modify the code via syntax trees in that case, like `-tiny` does,
because the change is tiny (one literal) and the affected lines of code
are modified regularly between major Go releases.
Since rebuilding a slightly modified linker can take a few seconds,
and Go's build cache does not cache linked binaries,
we keep our own cached version of the rebuilt binary in `os.UserCacheDir`.
The feature isn't perfect, and will be improved in the future.
See the TODOs about the added dependency on `git`,
or how we are currently only able to cache one linker binary at once.
Fixes #622.
2 years ago
|
|
|
garble build
|
|
|
|
exec ./main
|
|
|
|
! cmp stderr main.stderr
|
|
|
|
|
|
|
|
[short] stop # no need to verify this with -short
|
|
|
|
|
|
|
|
go build
|
|
|
|
exec ./main
|
|
|
|
cmp stderr main.stderr
|
|
|
|
-- go.mod --
|
|
|
|
module test/main
|
|
|
|
|
|
|
|
go 1.20
|
patch and rebuild cmd/link to modify the magic value in pclntab
This value is hard-coded in the linker and written in a header.
We could rewrite the final binary, like we used to do with import paths,
but that would require once again maintaining libraries to do so.
Instead, we're now modifying the linker to do what we want.
It's not particularly hard, as every Go install has its source code,
and rebuilding a slightly modified linker only takes a few seconds at most.
Thanks to `go build -overlay`, we only need to copy the files we modify,
and right now we're just modifying one file in the toolchain.
We use a git patch, as the change is fairly static and small,
and the patch is easier to understand and maintain.
The other side of this change is in the runtime,
as it also hard-codes the magic value when loading information.
We modify the code via syntax trees in that case, like `-tiny` does,
because the change is tiny (one literal) and the affected lines of code
are modified regularly between major Go releases.
Since rebuilding a slightly modified linker can take a few seconds,
and Go's build cache does not cache linked binaries,
we keep our own cached version of the rebuilt binary in `os.UserCacheDir`.
The feature isn't perfect, and will be improved in the future.
See the TODOs about the added dependency on `git`,
or how we are currently only able to cache one linker binary at once.
Fixes #622.
2 years ago
|
|
|
-- main.go --
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
_ "unsafe"
|
|
|
|
)
|
|
|
|
|
|
|
|
type fakeModuleData struct {
|
|
|
|
pcHeader *struct {
|
|
|
|
magic uint32
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//go:linkname activeModules runtime.activeModules
|
|
|
|
func activeModules() []*fakeModuleData
|
|
|
|
|
|
|
|
// genericMagicValue returns magic value without last digit
|
|
|
|
func genericMagicValue() string {
|
|
|
|
mod := activeModules()[0]
|
|
|
|
magicValHex := strings.ToUpper(strconv.FormatUint(uint64(mod.pcHeader.magic), 16))
|
|
|
|
return "0x" + magicValHex[:len(magicValHex)-1] + "?"
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
println(genericMagicValue())
|
|
|
|
}
|
|
|
|
|
|
|
|
-- main.stderr --
|
|
|
|
0xFFFFFFF?
|