#!/bin/sh # Copyright 2022 Helmut Grohne # SPDX-License-Identifier: MIT # shellcheck disable=SC2016 # Intentional quoting technique : <<'POD2MAN' =head1 NAME debvm-create - Create a VM image for various Debian releases and architectures =head1 SYNOPSIS B [B<-a> I] [B<-h> I] [B<-k> F] [B<-o> F] [B<-r> I] [B<-s> ] [B<-z> I] [B<--> I] =head1 DESCRIPTION B is essentially a thin wrapper around B for creating a raw ext4 filesystem image for booting with B. The purpose of these images primarily is testing the different releases and architectures without access to a physical machine of that architecture. Beyond essential packages, the image will contain B, an init system and a suitable kernel package. Notably absent is a bootloader and a partition table. In order to boot such an image, one is supposed to extract the kernel and initrd from the image and pass it to a suitable bootloader. No user account is created and root can login without specifying a password. =head1 OPTIONS =over 8 =item B<-a> I, B<--architecture>=I Specify a Debian architecture name. By default, the native architecture is being used. A suitable kernel image is automatically selected and installed into the image. =item B<-h> I, B<--hostname>=I Set the hostname of the virtual machine. By default, the hostname is B. =item B<--initsystem>=B | B | B | B | B Select an init system to be used. The default is B independently of the Debian release. Note that when selecting B, the resulting image will not be bootable unless something else takes care of creating F. Automatic customizations that are specific to a particular init system will be skipped when a different init system is selected. =item B<-k> F, B<--sshkey>=F Install the given ssh public key file into the virtual machine image for the root user. This option also causes the ssh server to be installed. By default, no key or server is installed. To connect to the vm, pass a port number to B with the B<-s> option. =item B<-o> F, B<--output>=F Specify the file name of the resulting virtual machine image. By default, it is written to F. =item B<-r> I, B<--release>=I Use the given Debian release. By default, B is being used. =item B<-s> I, B<--skip>=I Skip a particular task or feature. The option may be specified multiple times or list multiple tasks to be skipped by separating them with a comma. By default, no tasks are skipped. The following tasks may be skipped. =over 4 =item B Skips adding a the customize-autologin.sh to B that configures automatic root login on a serial console and also parses the C kernel cmdline and passes it as C to B. This is specific to using B, B or B as init system. =item B Internally, B creates a tar archive first and converts that to ext2, which is then upgraded to ext4. This option causes the conversion to ext2 and further steps to be skipped and the output image will be a tar archive instead. Such a tar archive is not suitable for being booted by B. =item B skips installing B configuration to automatically configure wired interfaces. This is specific to using B or B as init system. =item B skips installing an init system. This is equivalent to specifying B<--initsystem=none>. =item B skips installing a linux kernel image. This can be useful to install a kernel without a package. If a kernel is installed via B option C<--include>, automtatic kernel installation is automatically skipped. =item B reduces the package lists inside the image. The B database for B is not created. The package lists used by B are deleted. This generally produces a smaller image, but you need to run B before installing packages and B does not work. =item B skips installing B as well as automatic network configuration via B. This is specific to using B as init system. =item B By default B adds a hook to enable merged-/usr without the B package given a sufficiently recent Debian release. Without the hook, dependencies will pull the B package as needed, which may result in a larger installation. =back =item B<-z> I, B<--size>=I Specify the minimum image size as an integer and optional unit (example: 10K is 10*1024). Units are K,M,G,T,P,E,Z,Y (powers of 1024) or KB,MB,... (powers of 1000). The resulting image will be grown as a sparse file to this size if necessary. The default is 1 GB. =item B<--> I All options beyond a double dash are passed to B after the suite and target specification. This can be used to provide additional hooks for image customization. You can also request additional packages to be installed into the image using B's B<--include> option. Any positional arguments passed here will be treated as mirror specifications by B. =back =head1 EXAMPLES In order to create images for Debian ports architectures, you can pass two options to mmdebstrap: debvm-create ... -- http://deb.debian.org/debian-ports --keyring=/usr/share/keyrings/debian-ports-archive-keyring.gpg =head1 SEE ALSO debvm-run(1) mmdebstrap(1) =cut POD2MAN set -u ARCHITECTURE=$(dpkg --print-architecture) IMAGE=rootfs.ext4 INITSYSTEM=systemd SIZE=1G SKIP=, SSHKEY= SUITE=unstable VMNAME=testvm SHARE_DIR="${0%/*}/../share" nth_arg() { shift "$1" printf "%s" "$1" } die() { echo "$*" 1>&2 exit 1 } usage() { die "usage: $0 [-a architecture] [-h hostname] [-k sshkey] [-o output] [-r release] [-s task] [-z size] [-- mmdebstrap options]" } usage_error() { echo "error: $*" 1>&2 usage } opt_architecture() { ARCHITECTURE=$1 } opt_hostname() { VMNAME=$1 } opt_initsystem() { case "$1" in busybox|none|runit|systemd|sysv) ;; *) die "value for --initsystem must be one of systemd, busybox, none, runit or sysv" ;; esac INITSYSTEM=$1 } opt_skip() { if test "$1" = initsystem; then opt_initsystem none else SKIP="$SKIP$1," fi } opt_sshkey() { SSHKEY=$1 } opt_output() { IMAGE=$1 test "${IMAGE#-}" = "$IMAGE" || IMAGE="./$IMAGE" } opt_release() { SUITE=$1 } opt_size() { SIZE=$1 } while getopts :a:h:k:o:r:s:z:-: OPTCHAR; do case "$OPTCHAR" in a) opt_architecture "$OPTARG" ;; h) opt_hostname "$OPTARG" ;; k) opt_sshkey "$OPTARG" ;; o) opt_output "$OPTARG" ;; r) opt_release "$OPTARG" ;; s) opt_skip "$OPTARG" ;; z) opt_size "$OPTARG" ;; -) case "$OPTARG" in help) usage ;; architecture|hostname|initsystem|output|release|size|skip|sshkey) test "$OPTIND" -gt "$#" && usage_error "missing argument for --$OPTARG" "opt_$OPTARG" "$(nth_arg "$OPTIND" "$@")" OPTIND=$((OPTIND+1)) ;; architecture=*|hostname=*|initsystem=*|output=*|release=*|size=*|skip=*|sshkey=*) "opt_${OPTARG%%=*}" "${OPTARG#*=}" ;; *) usage_error "unrecognized option --$OPTARG" ;; esac ;; :) usage_error "missing argument for -$OPTARG" ;; '?') usage_error "unrecognized option -$OPTARG" ;; *) die "internal error while parsing command options, please report a bug" ;; esac done shift "$((OPTIND - 1))" if test -n "$SSHKEY" && ! test -f "$SSHKEY"; then die "error: ssh keyfile '$SSHKEY' not found" fi check_skip() { case "$SKIP" in *",$1,"*) return 0 ;; *) return 1 ;; esac } if ! check_skip kernel; then set -- "--customize-hook=$SHARE_DIR/customize-kernel.sh" "$@" fi MMFORMAT=ext2 # output a tarball if the ext4 step is skipped if check_skip ext4; then MMFORMAT=tar fi # construct mmdebstrap options as $@: set -- \ --verbose \ --variant=apt \ "--format=$MMFORMAT" \ "--architecture=$ARCHITECTURE" \ '--customize-hook=echo "LABEL=debvm / ext4 defaults 0 0" >"$1/etc/fstab"' \ "$@" case "$INITSYSTEM" in busybox) set -- \ --include=busybox \ '--customize-hook=ln -s /bin/busybox $1/sbin/init' \ "$@" SKIP="${SKIP}autologin," ;; none) SKIP="${SKIP}autologin," ;; runit) set -- --include=runit-init,passwd "$@" ;; systemd) set -- --include=systemd-sysv "$@" ;; sysv) set -- \ --include=sysvinit-core \ '--include=?not(?virtual)?exact-name(orphan-sysvinit-scripts)' \ "$@" ;; esac # set up a hostname set -- \ "--customize-hook=echo $VMNAME >"'"$1/etc/hostname"' \ "--customize-hook=echo 127.0.0.1 localhost $VMNAME >"'"$1/etc/hosts"' \ "$@" # allow password-less root login set -- '--customize-hook=passwd --root "$1" --delete root' "$@" if test "$INITSYSTEM" = systemd && ! check_skip systemdnetwork; then # dhcp on all network interfaces, and add a dns resolver set -- \ "--customize-hook=$SHARE_DIR/customize-networkd.sh" \ '--include=?not(?virtual)?exact-name(libnss-resolve)' \ "--customize-hook=$SHARE_DIR/customize-resolved.sh" \ "$@" elif test "$INITSYSTEM" = sysv -o "$INITSYSTEM" = runit && ! check_skip ifupdown; then set -- \ '--include=ifupdown,isc-dhcp-client' \ "--customize-hook=$SHARE_DIR/customize-ifupdown.sh" \ "$@" fi # add ssh key for root if test -n "$SSHKEY"; then set -- \ --include=openssh-server \ '--customize-hook=mkdir -m700 -p "$1/root/.ssh"' \ "--customize-hook=upload $SSHKEY /root/.ssh/authorized_keys" \ "$@" fi if ! check_skip packagelists; then set -- --skip=cleanup/apt/lists "$@" set -- "--customize-hook=$SHARE_DIR/customize-dpkgavailable.sh" "$@" fi if test "$SUITE" = jessie; then # Use obsolete and expired keys. set -- '--keyring=/usr/share/keyrings/debian-archive-removed-keys.gpg' "$@" set -- --aptopt='Apt::Key::gpgvcommand "/usr/libexec/mmdebstrap/gpgvnoexpkeysig"' "$@" set -- --hook-dir=/usr/share/mmdebstrap/hooks/jessie-or-older "$@" fi if ! check_skip usrmerge; then # Avoid the usrmerge package set -- --hook-dir=/usr/share/mmdebstrap/hooks/maybe-merged-usr "$@" fi if ! check_skip autologin; then set -- "--customize-hook=$SHARE_DIR/customize-autologin.sh" "$@" fi set -- "$SUITE" "$IMAGE" "$@" set -ex mmdebstrap "$@" { set +x; } 2>/dev/null check_skip ext4 && exit set -x truncate -s ">$SIZE" "$IMAGE" /sbin/resize2fs "$IMAGE" /sbin/tune2fs -L debvm -c 0 -i 0 -O dir_index,dir_nlink,extents,extra_isize,flex_bg,has_journal,huge_file "$IMAGE" /sbin/resize2fs -b "$IMAGE" # Must fsck after tune2fs: https://ext4.wiki.kernel.org/index.php/UpgradeToExt4 /sbin/fsck.ext4 -fDp "$IMAGE"