2016-04-14 13:24:06 +00:00
|
|
|
source common.sh
|
|
|
|
|
|
|
|
clearStore
|
|
|
|
|
2017-11-20 16:50:49 +00:00
|
|
|
nix-instantiate --restrict-eval --eval -E '1 + 2'
|
2018-01-16 17:50:38 +00:00
|
|
|
(! nix-instantiate --restrict-eval ./restricted.nix)
|
|
|
|
(! nix-instantiate --eval --restrict-eval <(echo '1 + 2'))
|
2017-11-20 16:50:49 +00:00
|
|
|
nix-instantiate --restrict-eval ./simple.nix -I src=.
|
|
|
|
nix-instantiate --restrict-eval ./simple.nix -I src1=simple.nix -I src2=config.nix -I src3=./simple.builder.sh
|
2016-04-14 13:24:06 +00:00
|
|
|
|
2017-11-20 16:50:49 +00:00
|
|
|
(! nix-instantiate --restrict-eval --eval -E 'builtins.readFile ./simple.nix')
|
|
|
|
nix-instantiate --restrict-eval --eval -E 'builtins.readFile ./simple.nix' -I src=..
|
2016-04-14 13:24:06 +00:00
|
|
|
|
2018-03-14 18:01:22 +00:00
|
|
|
(! nix-instantiate --restrict-eval --eval -E 'builtins.readDir ../src/nix-channel')
|
|
|
|
nix-instantiate --restrict-eval --eval -E 'builtins.readDir ../src/nix-channel' -I src=../src
|
2016-04-14 13:24:06 +00:00
|
|
|
|
2017-11-20 16:50:49 +00:00
|
|
|
(! nix-instantiate --restrict-eval --eval -E 'let __nixPath = [ { prefix = "foo"; path = ./.; } ]; in <foo>')
|
|
|
|
nix-instantiate --restrict-eval --eval -E 'let __nixPath = [ { prefix = "foo"; path = ./.; } ]; in <foo>' -I src=.
|
2016-04-14 13:24:06 +00:00
|
|
|
|
2019-11-26 23:05:30 +00:00
|
|
|
p=$(nix eval --raw --expr "builtins.fetchurl file://$(pwd)/restricted.sh" --impure --restrict-eval --allowed-uris "file://$(pwd)")
|
2017-10-30 11:39:59 +00:00
|
|
|
cmp $p restricted.sh
|
|
|
|
|
2019-11-26 23:05:30 +00:00
|
|
|
(! nix eval --raw --expr "builtins.fetchurl file://$(pwd)/restricted.sh" --impure --restrict-eval)
|
2017-10-30 11:39:59 +00:00
|
|
|
|
2019-11-26 23:05:30 +00:00
|
|
|
(! nix eval --raw --expr "builtins.fetchurl file://$(pwd)/restricted.sh" --impure --restrict-eval --allowed-uris "file://$(pwd)/restricted.sh/")
|
2017-10-30 11:39:59 +00:00
|
|
|
|
2019-11-26 23:05:30 +00:00
|
|
|
nix eval --raw --expr "builtins.fetchurl file://$(pwd)/restricted.sh" --impure --restrict-eval --allowed-uris "file://$(pwd)/restricted.sh"
|
2017-10-30 11:39:59 +00:00
|
|
|
|
2019-11-26 23:05:30 +00:00
|
|
|
(! nix eval --raw --expr "builtins.fetchurl https://github.com/NixOS/patchelf/archive/master.tar.gz" --impure --restrict-eval)
|
|
|
|
(! nix eval --raw --expr "builtins.fetchTarball https://github.com/NixOS/patchelf/archive/master.tar.gz" --impure --restrict-eval)
|
|
|
|
(! nix eval --raw --expr "fetchGit git://github.com/NixOS/patchelf.git" --impure --restrict-eval)
|
2018-01-16 17:50:38 +00:00
|
|
|
|
|
|
|
ln -sfn $(pwd)/restricted.nix $TEST_ROOT/restricted.nix
|
|
|
|
[[ $(nix-instantiate --eval $TEST_ROOT/restricted.nix) == 3 ]]
|
|
|
|
(! nix-instantiate --eval --restrict-eval $TEST_ROOT/restricted.nix)
|
|
|
|
(! nix-instantiate --eval --restrict-eval $TEST_ROOT/restricted.nix -I $TEST_ROOT)
|
|
|
|
(! nix-instantiate --eval --restrict-eval $TEST_ROOT/restricted.nix -I .)
|
|
|
|
nix-instantiate --eval --restrict-eval $TEST_ROOT/restricted.nix -I $TEST_ROOT -I .
|
2018-02-06 14:38:45 +00:00
|
|
|
|
2019-11-26 23:05:30 +00:00
|
|
|
[[ $(nix eval --raw --impure --restrict-eval -I . --expr 'builtins.readFile "${import ./simple.nix}/hello"') == 'Hello World!' ]]
|
2018-08-03 04:24:57 +00:00
|
|
|
|
|
|
|
# Check whether we can leak symlink information through directory traversal.
|
|
|
|
traverseDir="$(pwd)/restricted-traverse-me"
|
|
|
|
ln -sfn "$(pwd)/restricted-secret" "$(pwd)/restricted-innocent"
|
|
|
|
mkdir -p "$traverseDir"
|
|
|
|
goUp="..$(echo "$traverseDir" | sed -e 's,[^/]\+,..,g')"
|
|
|
|
output="$(nix eval --raw --restrict-eval -I "$traverseDir" \
|
2019-11-26 23:05:30 +00:00
|
|
|
--expr "builtins.readFile \"$traverseDir/$goUp$(pwd)/restricted-innocent\"" \
|
2018-08-03 04:24:57 +00:00
|
|
|
2>&1 || :)"
|
|
|
|
echo "$output" | grep "is forbidden"
|
|
|
|
! echo "$output" | grep -F restricted-secret
|