2015-05-05 04:23:28 +01:00
|
|
|
|
# Builds an ext4 image containing a populated /nix/store with the closure
|
2019-06-02 02:06:03 +01:00
|
|
|
|
# of store paths passed in the storePaths parameter, in addition to the
|
|
|
|
|
# contents of a directory that can be populated with commands. The
|
|
|
|
|
# generated image is sized to only fit its contents, with the expectation
|
|
|
|
|
# that a script resizes the filesystem at boot time.
|
2015-05-05 04:23:28 +01:00
|
|
|
|
{ pkgs
|
2019-12-13 07:14:04 +00:00
|
|
|
|
, lib
|
2019-06-02 02:06:03 +01:00
|
|
|
|
# List of derivations to be included
|
2015-05-05 04:23:28 +01:00
|
|
|
|
, storePaths
|
2019-12-13 07:14:04 +00:00
|
|
|
|
# Whether or not to compress the resulting image with zstd
|
|
|
|
|
, compressImage ? false, zstd
|
2019-06-02 02:06:03 +01:00
|
|
|
|
# Shell commands to populate the ./files directory.
|
|
|
|
|
# All files in that directory are copied to the root of the FS.
|
|
|
|
|
, populateImageCommands ? ""
|
2015-05-05 04:23:28 +01:00
|
|
|
|
, volumeLabel
|
2018-07-07 04:59:19 +01:00
|
|
|
|
, uuid ? "44444444-4444-4444-8888-888888888888"
|
2018-06-05 08:18:11 +01:00
|
|
|
|
, e2fsprogs
|
|
|
|
|
, libfaketime
|
|
|
|
|
, perl
|
2018-12-24 09:20:46 +00:00
|
|
|
|
, lkl
|
2015-05-05 04:23:28 +01:00
|
|
|
|
}:
|
|
|
|
|
|
2018-04-09 20:24:01 +01:00
|
|
|
|
let
|
2018-06-05 08:18:11 +01:00
|
|
|
|
sdClosureInfo = pkgs.buildPackages.closureInfo { rootPaths = storePaths; };
|
2018-04-09 20:24:01 +01:00
|
|
|
|
in
|
2015-05-05 04:23:28 +01:00
|
|
|
|
pkgs.stdenv.mkDerivation {
|
2019-12-13 07:14:04 +00:00
|
|
|
|
name = "ext4-fs.img${lib.optionalString compressImage ".zst"}";
|
2015-05-05 04:23:28 +01:00
|
|
|
|
|
2019-12-13 07:14:04 +00:00
|
|
|
|
nativeBuildInputs = [ e2fsprogs.bin libfaketime perl lkl ]
|
|
|
|
|
++ lib.optional compressImage zstd;
|
2015-05-05 04:23:28 +01:00
|
|
|
|
|
|
|
|
|
buildCommand =
|
|
|
|
|
''
|
2019-12-13 07:14:04 +00:00
|
|
|
|
${if compressImage then "img=temp.img" else "img=$out"}
|
2019-06-02 02:06:03 +01:00
|
|
|
|
(
|
|
|
|
|
mkdir -p ./files
|
|
|
|
|
${populateImageCommands}
|
|
|
|
|
)
|
2019-12-13 07:14:04 +00:00
|
|
|
|
|
2015-05-05 04:23:28 +01:00
|
|
|
|
# Add the closures of the top-level store objects.
|
2018-04-09 20:24:01 +01:00
|
|
|
|
storePaths=$(cat ${sdClosureInfo}/store-paths)
|
2015-05-05 04:23:28 +01:00
|
|
|
|
|
|
|
|
|
# Make a crude approximation of the size of the target image.
|
|
|
|
|
# If the script starts failing, increase the fudge factors here.
|
2019-06-02 02:06:03 +01:00
|
|
|
|
numInodes=$(find $storePaths ./files | wc -l)
|
|
|
|
|
numDataBlocks=$(du -s -c -B 4096 --apparent-size $storePaths ./files | tail -1 | awk '{ print int($1 * 1.03) }')
|
2015-05-05 04:23:28 +01:00
|
|
|
|
bytes=$((2 * 4096 * $numInodes + 4096 * $numDataBlocks))
|
|
|
|
|
echo "Creating an EXT4 image of $bytes bytes (numInodes=$numInodes, numDataBlocks=$numDataBlocks)"
|
|
|
|
|
|
2019-12-13 07:14:04 +00:00
|
|
|
|
truncate -s $bytes $img
|
|
|
|
|
faketime -f "1970-01-01 00:00:01" mkfs.ext4 -L ${volumeLabel} -U ${uuid} $img
|
2015-05-05 04:23:28 +01:00
|
|
|
|
|
2018-12-24 09:20:46 +00:00
|
|
|
|
# Also include a manifest of the closures in a format suitable for nix-store --load-db.
|
|
|
|
|
cp ${sdClosureInfo}/registration nix-path-registration
|
2019-12-13 07:14:04 +00:00
|
|
|
|
cptofs -t ext4 -i $img nix-path-registration /
|
2015-05-05 04:23:28 +01:00
|
|
|
|
|
2018-12-24 09:20:46 +00:00
|
|
|
|
# Create nix/store before copying paths
|
|
|
|
|
faketime -f "1970-01-01 00:00:01" mkdir -p nix/store
|
2019-12-13 07:14:04 +00:00
|
|
|
|
cptofs -t ext4 -i $img nix /
|
2015-05-05 04:23:28 +01:00
|
|
|
|
|
2018-12-24 09:20:46 +00:00
|
|
|
|
echo "copying store paths to image..."
|
2019-12-13 07:14:04 +00:00
|
|
|
|
cptofs -t ext4 -i $img $storePaths /nix/store/
|
2018-05-05 17:02:50 +01:00
|
|
|
|
|
2019-06-02 02:06:03 +01:00
|
|
|
|
echo "copying files to image..."
|
2019-12-13 07:14:04 +00:00
|
|
|
|
cptofs -t ext4 -i $img ./files/* /
|
|
|
|
|
|
2019-06-02 02:06:03 +01:00
|
|
|
|
|
2018-05-05 17:02:50 +01:00
|
|
|
|
# I have ended up with corrupted images sometimes, I suspect that happens when the build machine's disk gets full during the build.
|
2019-12-13 07:14:04 +00:00
|
|
|
|
if ! fsck.ext4 -n -f $img; then
|
2018-05-05 17:02:50 +01:00
|
|
|
|
echo "--- Fsck failed for EXT4 image of $bytes bytes (numInodes=$numInodes, numDataBlocks=$numDataBlocks) ---"
|
|
|
|
|
cat errorlog
|
|
|
|
|
return 1
|
|
|
|
|
fi
|
2018-11-29 03:10:15 +00:00
|
|
|
|
|
|
|
|
|
(
|
|
|
|
|
# Resizes **snugly** to its actual limits (or closer to)
|
2019-12-13 07:14:04 +00:00
|
|
|
|
free=$(dumpe2fs $img | grep '^Free blocks:')
|
|
|
|
|
blocksize=$(dumpe2fs $img | grep '^Block size:')
|
|
|
|
|
blocks=$(dumpe2fs $img | grep '^Block count:')
|
2018-11-29 03:10:15 +00:00
|
|
|
|
blocks=$((''${blocks##*:})) # format the number.
|
|
|
|
|
blocksize=$((''${blocksize##*:})) # format the number.
|
|
|
|
|
# System can't boot with 0 blocks free.
|
|
|
|
|
# Add 16MiB of free space
|
|
|
|
|
fudge=$(( 16 * 1024 * 1024 / blocksize ))
|
|
|
|
|
size=$(( blocks - ''${free##*:} + fudge ))
|
|
|
|
|
|
|
|
|
|
echo "Resizing from $blocks blocks to $size blocks. (~ $((size*blocksize/1024/1024))MiB)"
|
2019-12-13 07:14:04 +00:00
|
|
|
|
EXT2FS_NO_MTAB_OK=yes resize2fs $img -f $size
|
2018-11-29 03:10:15 +00:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
# And a final fsck, because of the previous truncating.
|
2019-12-13 07:14:04 +00:00
|
|
|
|
fsck.ext4 -n -f $img
|
|
|
|
|
|
|
|
|
|
if [ ${builtins.toString compressImage} ]; then
|
|
|
|
|
echo "Compressing image"
|
|
|
|
|
zstd -v --no-progress ./$img -o $out
|
|
|
|
|
fi
|
2015-05-05 04:23:28 +01:00
|
|
|
|
'';
|
|
|
|
|
}
|