actually remove temporary directories after obfuscation
Back in February 2021, we changed the obfuscation logic so that the
entire `garble build` process would use one shared temporary directory
across all package builds, reducing the amount of files we created in
the top-level system temporary directory.
However, we made one mistake: we didn't swap os.Remove for os.RemoveAll.
Ever since then, we've been leaving temporary files behind.
Add regression tests, which failed before the fix, and fix the bug.
Note that we need to test `garble reverse` as well, as it calls
toolexecCmd separately, so it needs its own cleanup as well.
The cleanup happens via the env var, which doesn't feel worse than
having toolexecCmd return an extra string or cleanup func.
While here, also test that we support TMPDIRs with special characters.
3 years ago
|
|
|
# Ensure that we support temporary directories with spaces and quotes.
|
|
|
|
env TMPDIR=${WORK}/'.temp ''quotes'' and spaces'
|
|
|
|
mkdir ${TMPDIR}
|
|
|
|
|
|
|
|
# Unfortunately, due to https://go.dev/issue/22315, cp + exec is racy.
|
|
|
|
# Since we run multiple test scripts in parallel as goroutines,
|
|
|
|
# if one thread performs a cp while another is forking, the other may keep the
|
|
|
|
# file open slightly longer than we think, causing the fork to fail due to the
|
|
|
|
# file still being open for writing.
|
|
|
|
# Until the root problem is fixed, add a sleep to try to make that narrow window
|
|
|
|
# of time less likely to cause problems.
|
|
|
|
# TODO(mvdan): remove the sleeps once cp + exec isn't racy anymore.
|
|
|
|
env CP_EXEC_SLEEP=10ms
|
|
|
|
|
|
|
|
# We need to properly quote the path to garble for toolexec.
|
|
|
|
# If we don't, characters like spaces or quotes will result in errors.
|
|
|
|
# EXEC_PATH is the test binary's os.Executable.
|
|
|
|
# Copying it to a path with basename "garble" makes testscript run our main func.
|
|
|
|
# Note that double quotes are not allowed in Windows filenames.
|
|
|
|
env NAME='with spaces'
|
|
|
|
mkdir $NAME
|
|
|
|
cp $EXEC_PATH $NAME/garble$exe
|
|
|
|
sleep $CP_EXEC_SLEEP
|
actually remove temporary directories after obfuscation
Back in February 2021, we changed the obfuscation logic so that the
entire `garble build` process would use one shared temporary directory
across all package builds, reducing the amount of files we created in
the top-level system temporary directory.
However, we made one mistake: we didn't swap os.Remove for os.RemoveAll.
Ever since then, we've been leaving temporary files behind.
Add regression tests, which failed before the fix, and fix the bug.
Note that we need to test `garble reverse` as well, as it calls
toolexecCmd separately, so it needs its own cleanup as well.
The cleanup happens via the env var, which doesn't feel worse than
having toolexecCmd return an extra string or cleanup func.
While here, also test that we support TMPDIRs with special characters.
3 years ago
|
|
|
exec $NAME/garble$exe build
|
|
|
|
|
|
|
|
# Ensure that we cleaned up the temporary files.
|
|
|
|
! grepfiles ${TMPDIR} 'garble|importcfg|cache\.gob|\.go'
|
|
|
|
|
|
|
|
[!windows] env NAME='with"double"quotes'
|
|
|
|
[!windows] mkdir $NAME
|
|
|
|
[!windows] cp $EXEC_PATH $NAME/garble$exe
|
|
|
|
[!windows] sleep $CP_EXEC_SLEEP
|
actually remove temporary directories after obfuscation
Back in February 2021, we changed the obfuscation logic so that the
entire `garble build` process would use one shared temporary directory
across all package builds, reducing the amount of files we created in
the top-level system temporary directory.
However, we made one mistake: we didn't swap os.Remove for os.RemoveAll.
Ever since then, we've been leaving temporary files behind.
Add regression tests, which failed before the fix, and fix the bug.
Note that we need to test `garble reverse` as well, as it calls
toolexecCmd separately, so it needs its own cleanup as well.
The cleanup happens via the env var, which doesn't feel worse than
having toolexecCmd return an extra string or cleanup func.
While here, also test that we support TMPDIRs with special characters.
3 years ago
|
|
|
[!windows] exec $NAME/garble$exe build
|
|
|
|
|
|
|
|
env NAME='with''single''quotes'
|
|
|
|
mkdir $NAME
|
|
|
|
cp $EXEC_PATH $NAME/garble$exe
|
actually remove temporary directories after obfuscation
Back in February 2021, we changed the obfuscation logic so that the
entire `garble build` process would use one shared temporary directory
across all package builds, reducing the amount of files we created in
the top-level system temporary directory.
However, we made one mistake: we didn't swap os.Remove for os.RemoveAll.
Ever since then, we've been leaving temporary files behind.
Add regression tests, which failed before the fix, and fix the bug.
Note that we need to test `garble reverse` as well, as it calls
toolexecCmd separately, so it needs its own cleanup as well.
The cleanup happens via the env var, which doesn't feel worse than
having toolexecCmd return an extra string or cleanup func.
While here, also test that we support TMPDIRs with special characters.
3 years ago
|
|
|
exec $NAME/garble$exe build
|
|
|
|
|
|
|
|
[!windows] env NAME='with"both''quotes'
|
|
|
|
[!windows] mkdir $NAME
|
|
|
|
[!windows] cp $EXEC_PATH $NAME/garble$exe
|
|
|
|
[!windows] sleep $CP_EXEC_SLEEP
|
actually remove temporary directories after obfuscation
Back in February 2021, we changed the obfuscation logic so that the
entire `garble build` process would use one shared temporary directory
across all package builds, reducing the amount of files we created in
the top-level system temporary directory.
However, we made one mistake: we didn't swap os.Remove for os.RemoveAll.
Ever since then, we've been leaving temporary files behind.
Add regression tests, which failed before the fix, and fix the bug.
Note that we need to test `garble reverse` as well, as it calls
toolexecCmd separately, so it needs its own cleanup as well.
The cleanup happens via the env var, which doesn't feel worse than
having toolexecCmd return an extra string or cleanup func.
While here, also test that we support TMPDIRs with special characters.
3 years ago
|
|
|
[!windows] ! exec $NAME/garble$exe build
|
|
|
|
[!windows] stderr 'cannot be quoted'
|
actually remove temporary directories after obfuscation
Back in February 2021, we changed the obfuscation logic so that the
entire `garble build` process would use one shared temporary directory
across all package builds, reducing the amount of files we created in
the top-level system temporary directory.
However, we made one mistake: we didn't swap os.Remove for os.RemoveAll.
Ever since then, we've been leaving temporary files behind.
Add regression tests, which failed before the fix, and fix the bug.
Note that we need to test `garble reverse` as well, as it calls
toolexecCmd separately, so it needs its own cleanup as well.
The cleanup happens via the env var, which doesn't feel worse than
having toolexecCmd return an extra string or cleanup func.
While here, also test that we support TMPDIRs with special characters.
3 years ago
|
|
|
-- go.mod --
|
|
|
|
module test/main
|
|
|
|
|
|
|
|
go 1.23
|
|
|
|
-- main.go --
|
|
|
|
package main
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
println("hello world")
|
|
|
|
}
|