summaryrefslogtreecommitdiffstats
path: root/mkinitcpio
diff options
context:
space:
mode:
authorDaniel Edgecumbe <git@esotericnonsense.com>2019-09-07 12:15:26 +0200
committerDaniel Edgecumbe <git@esotericnonsense.com>2019-09-09 16:49:41 +0200
commitca8f13e11d422fa01bc031ff0610442b82ea6b65 (patch)
tree9288416157205c37f7a6a25f09b3472cb8b88fa1 /mkinitcpio
parenta3cb799a8f63186b843db6a57da12d74a9320686 (diff)
downloadmkinitcpio-ca8f13e11d422fa01bc031ff0610442b82ea6b65.tar.gz
mkinitcpio-ca8f13e11d422fa01bc031ff0610442b82ea6b65.tar.xz
mkinitcpio: Produce reproducible initramfs images
We achieve this by stripping timestamps from within the filesystem, and by using a pipeline to strip inodes from the cpio archive. It functions for at least the 'gzip', 'xz', 'bzip2', 'lz4' and 'cat' compressors. The 'lzop' compressor embeds a runtime timestamp. Motivation: https://reproducible-builds.org Signed-off-by: Daniel Edgecumbe <git@esotericnonsense.com>
Diffstat (limited to 'mkinitcpio')
-rwxr-xr-xmkinitcpio23
1 files changed, 13 insertions, 10 deletions
diff --git a/mkinitcpio b/mkinitcpio
index 5583d07..db7a61a 100755
--- a/mkinitcpio
+++ b/mkinitcpio
@@ -211,25 +211,28 @@ build_image() {
;;
esac
- cpio_opts=('-0' '-o' '-H' 'newc')
- (( _optquiet )) && cpio_opts+=('--quiet')
- if (( EUID != 0 )); then
- warning 'Not building as root, ownership cannot be preserved'
- cpio_opts+=('-R' '0:0')
- fi
-
pushd "$BUILDROOT" >/dev/null
- find . -mindepth 1 -printf '%P\0' |
- LANG=C bsdcpio "${cpio_opts[@]}" |
+
+ # Reproducibility: set all timestamps to 0
+ find . -mindepth 1 -execdir touch -hcd "@0" "{}" +
+
+ find . -mindepth 1 -printf '%P\0' | sort -z |
+ LANG=C bsdtar --null -cnf - -T - |
+ LANG=C bsdtar --uid 0 --gid 0 --null -cf - --format=newc @- |
$compress "${COMPRESSION_OPTIONS[@]}" > "$out"
+
pipesave=("${PIPESTATUS[@]}") # save immediately
popd >/dev/null
if (( pipesave[0] )); then
errmsg="find reported an error"
elif (( pipesave[1] )); then
- errmsg="bsdcpio reported an error"
+ errmsg="sort reported an error"
elif (( pipesave[2] )); then
+ errmsg="bsdtar (step 1) reported an error"
+ elif (( pipesave[3] )); then
+ errmsg="bsdtar (step 2) reported an error"
+ elif (( pipesave[4] )); then
errmsg="$compress reported an error"
fi