2023-05-15 22:34:57 +03:00
|
|
|
source ../common.sh
|
|
|
|
|
|
|
|
requireEnvironment () {
|
2023-05-16 06:00:18 +03:00
|
|
|
requireSandboxSupport
|
|
|
|
[[ $busybox =~ busybox ]] || skipTest "no busybox"
|
|
|
|
if [[ $(uname) != Linux ]]; then skipTest "Need Linux for overlayfs"; fi
|
|
|
|
needLocalStore "The test uses --store always so we would just be bypassing the daemon"
|
2023-05-15 22:34:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
setupConfig () {
|
2023-07-18 12:49:44 +03:00
|
|
|
echo "require-drop-supplementary-groups = false" >> "$NIX_CONF_DIR"/nix.conf
|
2023-05-16 06:00:18 +03:00
|
|
|
echo "build-users-group = " >> "$NIX_CONF_DIR"/nix.conf
|
2023-05-15 22:34:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
storeDirs () {
|
2023-07-19 18:46:51 +03:00
|
|
|
storesRoot="$TEST_ROOT/stores"
|
|
|
|
mkdir -p "$storesRoot"
|
|
|
|
mount -t tmpfs tmpfs "$storesRoot"
|
|
|
|
storeA="$storesRoot/store-a"
|
|
|
|
storeBTop="$storesRoot/store-b"
|
|
|
|
storeB="local-overlay?root=$storesRoot/merged-store&lower-store=$storeA&upper-layer=$storeBTop"
|
2023-05-16 06:00:18 +03:00
|
|
|
# Creating testing directories
|
2023-07-19 18:46:51 +03:00
|
|
|
mkdir -p "$storesRoot"/{store-a/nix/store,store-b,merged-store/nix/store,workdir}
|
2023-05-15 22:34:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
# Mounting Overlay Store
|
|
|
|
mountOverlayfs () {
|
2023-07-19 18:46:51 +03:00
|
|
|
mergedStorePath="$storesRoot/merged-store/nix/store"
|
2023-05-15 22:34:57 +03:00
|
|
|
mount -t overlay overlay \
|
|
|
|
-o lowerdir="$storeA/nix/store" \
|
|
|
|
-o upperdir="$storeBTop" \
|
2023-07-19 18:46:51 +03:00
|
|
|
-o workdir="$storesRoot/workdir" \
|
2023-07-19 13:23:54 +03:00
|
|
|
"$mergedStorePath" \
|
2023-05-15 22:34:57 +03:00
|
|
|
|| skipTest "overlayfs is not supported"
|
|
|
|
|
|
|
|
cleanupOverlay () {
|
2023-07-19 18:46:51 +03:00
|
|
|
umount "$storesRoot/merged-store/nix/store"
|
|
|
|
rm -r $storesRoot/workdir
|
2023-05-15 22:34:57 +03:00
|
|
|
}
|
|
|
|
trap cleanupOverlay EXIT
|
|
|
|
}
|
|
|
|
|
2023-07-19 13:23:54 +03:00
|
|
|
remountOverlayfs () {
|
|
|
|
mount -o remount "$mergedStorePath"
|
|
|
|
}
|
|
|
|
|
2023-05-15 22:34:57 +03:00
|
|
|
toRealPath () {
|
|
|
|
storeDir=$1; shift
|
|
|
|
storePath=$1; shift
|
|
|
|
echo $storeDir$(echo $storePath | sed "s^$NIX_STORE_DIR^^")
|
|
|
|
}
|
|
|
|
|
|
|
|
initLowerStore () {
|
|
|
|
# Init lower store with some stuff
|
|
|
|
nix-store --store "$storeA" --add ../dummy
|
|
|
|
|
|
|
|
# Build something in lower store
|
|
|
|
drvPath=$(nix-instantiate --store $storeA ../hermetic.nix --arg busybox "$busybox" --arg seed 1)
|
|
|
|
path=$(nix-store --store "$storeA" --realise $drvPath)
|
|
|
|
}
|
2023-05-16 06:00:18 +03:00
|
|
|
|
|
|
|
execUnshare () {
|
2023-07-19 15:25:37 +03:00
|
|
|
exec unshare --mount --map-root-user "$SHELL" "$@"
|
2023-05-16 06:00:18 +03:00
|
|
|
}
|
2023-07-19 17:09:58 +03:00
|
|
|
|
|
|
|
addTextToStore() {
|
|
|
|
storeDir=$1; shift
|
|
|
|
filename=$1; shift
|
|
|
|
content=$1; shift
|
|
|
|
filePath="$TEST_HOME/$filename"
|
|
|
|
echo "$content" > "$filePath"
|
|
|
|
nix-store --store "$storeDir" --add "$filePath"
|
|
|
|
}
|