2017-05-02 13:09:35 +00:00
|
|
|
source common.sh
|
|
|
|
|
2021-07-26 04:54:55 +00:00
|
|
|
needLocalStore "the sandbox only runs on the builder side, so it makes no sense to test it with the daemon"
|
|
|
|
|
2017-05-02 13:09:35 +00:00
|
|
|
clearStore
|
|
|
|
|
2023-03-16 20:00:20 +00:00
|
|
|
requireSandboxSupport
|
2017-05-02 13:09:35 +00:00
|
|
|
|
|
|
|
# Note: we need to bind-mount $SHELL into the chroot. Currently we
|
|
|
|
# only support the case where $SHELL is in the Nix store, because
|
|
|
|
# otherwise things get complicated (e.g. if it's in /bin, do we need
|
|
|
|
# /lib as well?).
|
2023-03-16 20:00:20 +00:00
|
|
|
if [[ ! $SHELL =~ /nix/store ]]; then skipTest "Shell is not from Nix store"; fi
|
2023-05-23 07:59:49 +00:00
|
|
|
# An alias to automatically bind-mount the $SHELL on nix-build invocations
|
|
|
|
nix-sandbox-build () { nix-build --no-out-link --sandbox-paths /nix/store "$@"; }
|
2017-05-02 13:09:35 +00:00
|
|
|
|
|
|
|
chmod -R u+w $TEST_ROOT/store0 || true
|
|
|
|
rm -rf $TEST_ROOT/store0
|
|
|
|
|
|
|
|
export NIX_STORE_DIR=/my/store
|
2017-10-24 13:16:18 +00:00
|
|
|
export NIX_REMOTE=$TEST_ROOT/store0
|
2017-05-02 13:09:35 +00:00
|
|
|
|
2023-05-23 07:59:49 +00:00
|
|
|
outPath=$(nix-sandbox-build dependencies.nix)
|
2017-05-02 13:09:35 +00:00
|
|
|
|
|
|
|
[[ $outPath =~ /my/store/.*-dependencies ]]
|
|
|
|
|
|
|
|
nix path-info -r $outPath | grep input-2
|
|
|
|
|
2020-07-24 18:42:24 +00:00
|
|
|
nix store ls -R -l $outPath | grep foobar
|
2017-05-02 13:09:35 +00:00
|
|
|
|
2020-07-24 18:42:24 +00:00
|
|
|
nix store cat $outPath/foobar | grep FOOBAR
|
2019-05-12 14:46:21 +00:00
|
|
|
|
|
|
|
# Test --check without hash rewriting.
|
2023-05-23 07:59:49 +00:00
|
|
|
nix-sandbox-build dependencies.nix --check
|
2019-02-17 19:34:31 +00:00
|
|
|
|
|
|
|
# Test that sandboxed builds with --check and -K can move .check directory to store
|
2023-05-23 07:59:49 +00:00
|
|
|
nix-sandbox-build check.nix -A nondeterministic
|
2019-02-17 19:34:31 +00:00
|
|
|
|
2023-06-22 18:23:25 +00:00
|
|
|
# `100 + 4` means non-determinstic, see doc/manual/src/command-ref/status-build-failure.md
|
2023-05-23 07:59:49 +00:00
|
|
|
expectStderr 104 nix-sandbox-build check.nix -A nondeterministic --check -K > $TEST_ROOT/log
|
|
|
|
grepQuietInverse 'error: renaming' $TEST_ROOT/log
|
|
|
|
grepQuiet 'may not be deterministic' $TEST_ROOT/log
|
2023-02-14 11:03:34 +00:00
|
|
|
|
|
|
|
# Test that sandboxed builds cannot write to /etc easily
|
2023-06-22 18:23:25 +00:00
|
|
|
# `100` means build failure without extra info, see doc/manual/src/command-ref/status-build-failure.md
|
2023-05-23 07:59:49 +00:00
|
|
|
expectStderr 100 nix-sandbox-build -E 'with import ./config.nix; mkDerivation { name = "etc-write"; buildCommand = "echo > /etc/test"; }' |
|
|
|
|
grepQuiet "/etc/test: Permission denied"
|
2023-05-22 00:32:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
## Test mounting of SSL certificates into the sandbox
|
|
|
|
testCert () {
|
2023-05-22 21:39:31 +00:00
|
|
|
expectation=$1 # "missing" | "present"
|
|
|
|
mode=$2 # "normal" | "fixed-output"
|
|
|
|
certFile=$3 # a string that can be the path to a cert file
|
2023-06-22 18:23:25 +00:00
|
|
|
# `100` means build failure without extra info, see doc/manual/src/command-ref/status-build-failure.md
|
2023-05-22 21:39:31 +00:00
|
|
|
[ "$mode" == fixed-output ] && ret=1 || ret=100
|
2023-05-23 07:59:49 +00:00
|
|
|
expectStderr $ret nix-sandbox-build linux-sandbox-cert-test.nix --argstr mode "$mode" --option ssl-cert-file "$certFile" |
|
|
|
|
grepQuiet "CERT_${expectation}_IN_SANDBOX"
|
2023-05-22 00:32:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nocert=$TEST_ROOT/no-cert-file.pem
|
|
|
|
cert=$TEST_ROOT/some-cert-file.pem
|
|
|
|
echo -n "CERT_CONTENT" > $cert
|
|
|
|
|
|
|
|
# No cert in sandbox when not a fixed-output derivation
|
|
|
|
testCert missing normal "$cert"
|
|
|
|
|
|
|
|
# No cert in sandbox when ssl-cert-file is empty
|
|
|
|
testCert missing fixed-output ""
|
|
|
|
|
|
|
|
# No cert in sandbox when ssl-cert-file is a nonexistent file
|
|
|
|
testCert missing fixed-output "$nocert"
|
|
|
|
|
|
|
|
# Cert in sandbox when ssl-cert-file is set to an existing file
|
|
|
|
testCert present fixed-output "$cert"
|