Skip to content
Snippets Groups Projects
Commit c617c67f authored by Pierre Schmitz's avatar Pierre Schmitz
Browse files

mkarchroot: Use systemd's nspawn if available

* If we are running systemd use nspawn instead of our own chroot setup
* Use pacstrap to setup our chroot environment
* Make sure the common trap is still called
* Bind resolve.conf, timezone and lcoaltime from the host if nspawn is not used
* Run ldconfig within the chroot
parent 7228cc00
No related branches found
No related tags found
No related merge requests found
...@@ -79,41 +79,51 @@ fi ...@@ -79,41 +79,51 @@ fi
# {{{ functions # {{{ functions
chroot_mount() { chroot_mount() {
[[ -e "${working_dir}/sys" ]] || mkdir "${working_dir}/sys" trap 'trap_chroot_umount' EXIT INT QUIT TERM HUP
mount -o bind /sys "${working_dir}/sys"
mount -o remount,ro,bind "${working_dir}/sys" if (( ! have_nspawn )); then
[[ -e "${working_dir}/sys" ]] || mkdir "${working_dir}/sys"
[[ -e "${working_dir}/proc" ]] || mkdir "${working_dir}/proc" mount -o bind /sys "${working_dir}/sys"
mount -t proc proc -o nosuid,noexec,nodev "${working_dir}/proc" mount -o remount,ro,bind "${working_dir}/sys"
mount -o bind /proc/sys "${working_dir}/proc/sys"
mount -o remount,ro,bind "${working_dir}/proc/sys" [[ -e "${working_dir}/proc" ]] || mkdir "${working_dir}/proc"
mount -t proc proc -o nosuid,noexec,nodev "${working_dir}/proc"
[[ -e "${working_dir}/dev" ]] || mkdir "${working_dir}/dev" mount -o bind /proc/sys "${working_dir}/proc/sys"
mount -t tmpfs dev "${working_dir}/dev" -o mode=0755,size=10M,nosuid,strictatime mount -o remount,ro,bind "${working_dir}/proc/sys"
mknod -m 666 "${working_dir}/dev/null" c 1 3
mknod -m 666 "${working_dir}/dev/zero" c 1 5 [[ -e "${working_dir}/dev" ]] || mkdir "${working_dir}/dev"
mknod -m 600 "${working_dir}/dev/console" c 5 1 mount -t tmpfs dev "${working_dir}/dev" -o mode=0755,size=10M,nosuid,strictatime
mknod -m 644 "${working_dir}/dev/random" c 1 8 mknod -m 666 "${working_dir}/dev/null" c 1 3
mknod -m 644 "${working_dir}/dev/urandom" c 1 9 mknod -m 666 "${working_dir}/dev/zero" c 1 5
mknod -m 666 "${working_dir}/dev/tty" c 5 0 mknod -m 600 "${working_dir}/dev/console" c 5 1
mknod -m 666 "${working_dir}/dev/ptmx" c 5 2 mknod -m 644 "${working_dir}/dev/random" c 1 8
mknod -m 666 "${working_dir}/dev/tty0" c 4 0 mknod -m 644 "${working_dir}/dev/urandom" c 1 9
mknod -m 666 "${working_dir}/dev/full" c 1 7 mknod -m 666 "${working_dir}/dev/tty" c 5 0
mknod -m 666 "${working_dir}/dev/rtc0" c 254 0 mknod -m 666 "${working_dir}/dev/ptmx" c 5 2
ln -s /proc/kcore "${working_dir}/dev/core" mknod -m 666 "${working_dir}/dev/tty0" c 4 0
ln -s /proc/self/fd "${working_dir}/dev/fd" mknod -m 666 "${working_dir}/dev/full" c 1 7
ln -s /proc/self/fd/0 "${working_dir}/dev/stdin" mknod -m 666 "${working_dir}/dev/rtc0" c 254 0
ln -s /proc/self/fd/1 "${working_dir}/dev/stdout" ln -s /proc/kcore "${working_dir}/dev/core"
ln -s /proc/self/fd/2 "${working_dir}/dev/stderr" ln -s /proc/self/fd "${working_dir}/dev/fd"
ln -s /proc/self/fd/0 "${working_dir}/dev/stdin"
[[ -e "${working_dir}/dev/shm" ]] || mkdir "${working_dir}/dev/shm" ln -s /proc/self/fd/1 "${working_dir}/dev/stdout"
mount -t tmpfs shm "${working_dir}/dev/shm" -o nodev,nosuid,size=128M ln -s /proc/self/fd/2 "${working_dir}/dev/stderr"
[[ -e "${working_dir}/dev/pts" ]] || mkdir "${working_dir}/dev/pts" [[ -e "${working_dir}/dev/shm" ]] || mkdir "${working_dir}/dev/shm"
mount -o bind /dev/pts "${working_dir}/dev/pts" mount -t tmpfs shm "${working_dir}/dev/shm" -o nodev,nosuid,size=128M
[[ -e "${working_dir}/run" ]] || mkdir "${working_dir}/run" [[ -e "${working_dir}/dev/pts" ]] || mkdir "${working_dir}/dev/pts"
mount -t tmpfs tmpfs "${working_dir}/run" -o mode=0755,nodev,nosuid,strictatime,size=64M mount -o bind /dev/pts "${working_dir}/dev/pts"
[[ -e "${working_dir}/run" ]] || mkdir "${working_dir}/run"
mount -t tmpfs tmpfs "${working_dir}/run" -o mode=0755,nodev,nosuid,strictatime,size=64M
for host_config in resolv.conf timezone localtime; do
[[ -e "${working_dir}/etc/${host_config}" ]] || touch "${working_dir}/etc/${host_config}"
mount -o bind /etc/${host_config} "${working_dir}/etc/${host_config}"
mount -o remount,ro,bind "${working_dir}/etc/${host_config}"
done
fi
if [[ -n $host_mirror_path ]]; then if [[ -n $host_mirror_path ]]; then
[[ -e "${working_dir}/${host_mirror_path}" ]] || mkdir -p "${working_dir}/${host_mirror_path}" [[ -e "${working_dir}/${host_mirror_path}" ]] || mkdir -p "${working_dir}/${host_mirror_path}"
...@@ -132,12 +142,9 @@ chroot_mount() { ...@@ -132,12 +142,9 @@ chroot_mount() {
cache_dir_first=false cache_dir_first=false
fi fi
done done
trap 'chroot_umount' EXIT INT QUIT TERM HUP
} }
copy_hostconf () { copy_hostconf () {
cp /etc/resolv.conf "${working_dir}/etc/resolv.conf"
cp -a /etc/pacman.d/gnupg "${working_dir}/etc/pacman.d" cp -a /etc/pacman.d/gnupg "${working_dir}/etc/pacman.d"
echo "Server = ${host_mirror}" > ${working_dir}/etc/pacman.d/mirrorlist echo "Server = ${host_mirror}" > ${working_dir}/etc/pacman.d/mirrorlist
...@@ -152,19 +159,26 @@ copy_hostconf () { ...@@ -152,19 +159,26 @@ copy_hostconf () {
sed -r "s|^#?\\s*CacheDir.+|CacheDir = $(echo -n ${cache_dirs[@]})|g" -i ${working_dir}/etc/pacman.conf sed -r "s|^#?\\s*CacheDir.+|CacheDir = $(echo -n ${cache_dirs[@]})|g" -i ${working_dir}/etc/pacman.conf
} }
chroot_umount () { trap_chroot_umount () {
trap - EXIT INT QUIT TERM HUP trap 'trap_exit' EXIT INT QUIT TERM HUP
umount "${working_dir}/proc/sys"
umount "${working_dir}/proc"
umount "${working_dir}/sys"
umount "${working_dir}/dev/pts"
umount "${working_dir}/dev/shm"
umount "${working_dir}/dev"
umount "${working_dir}/run"
for cache_dir in ${cache_dirs[@]}; do for cache_dir in ${cache_dirs[@]}; do
umount "${working_dir}/${cache_dir}" umount "${working_dir}/${cache_dir}"
done done
[[ -n $host_mirror_path ]] && umount "${working_dir}/${host_mirror_path}" [[ -n $host_mirror_path ]] && umount "${working_dir}/${host_mirror_path}"
if (( ! have_nspawn )); then
for host_config in resolv.conf timezone localtime; do
umount "${working_dir}/etc/${host_config}"
done
umount "${working_dir}/proc/sys"
umount "${working_dir}/proc"
umount "${working_dir}/sys"
umount "${working_dir}/dev/pts"
umount "${working_dir}/dev/shm"
umount "${working_dir}/dev"
umount "${working_dir}/run"
fi
} }
chroot_lock () { chroot_lock () {
...@@ -180,8 +194,24 @@ chroot_lock () { ...@@ -180,8 +194,24 @@ chroot_lock () {
stat_done stat_done
fi fi
} }
chroot_run() {
local dir=$1
shift
if (( have_nspawn)); then
eval systemd-nspawn -D "${dir}" -- ${@} 2>/dev/null
else
eval unshare -mui -- chroot "${dir}" ${@}
fi
}
# }}} # }}}
# use systemd-nspawn if we have it available and systemd is running
if type -P systemd-nspawn >/dev/null && mountpoint -q /sys/fs/cgroup/systemd; then
have_nspawn=1
fi
umask 0022 umask 0022
if [[ -n $RUN ]]; then if [[ -n $RUN ]]; then
# run chroot {{{ # run chroot {{{
...@@ -196,7 +226,7 @@ if [[ -n $RUN ]]; then ...@@ -196,7 +226,7 @@ if [[ -n $RUN ]]; then
chroot_mount chroot_mount
copy_hostconf copy_hostconf
eval unshare -mui -- chroot "${working_dir}" ${RUN} chroot_run "${working_dir}" ${RUN}
# }}} # }}}
else else
...@@ -209,37 +239,31 @@ else ...@@ -209,37 +239,31 @@ else
chmod 0755 "${working_dir}" chmod 0755 "${working_dir}"
fi fi
mkdir -p "${working_dir}/var/lib/pacman/sync"
mkdir -p "${working_dir}/etc/"
chroot_lock chroot_lock
chroot_mount chroot_mount
pacargs="--noconfirm --root=${working_dir} ${cache_dirs[@]/#/--cachedir=}" pacargs="${cache_dirs[@]/#/--cachedir=}"
if [[ -n $pac_conf ]]; then if [[ -n $pac_conf ]]; then
pacargs="$pacargs --config=${pac_conf}" pacargs="$pacargs --config=${pac_conf}"
fi fi
if (( $# != 0 )); then if (( $# != 0 )); then
op='-Sy'
if [[ $FORCE = 'y' ]]; then if [[ $FORCE = 'y' ]]; then
op="${op}f" pacargs="$pacargs --force"
fi fi
if ! pacman ${op} ${pacargs} $@; then if ! pacstrap -GMcd "${working_dir}" ${pacargs} $@; then
die 'Failed to install all packages' die 'Failed to install all packages'
fi fi
fi fi
if [[ -d "${working_dir}/lib/modules" ]]; then if [[ -d "${working_dir}/lib/modules" ]]; then
ldconfig -r "${working_dir}" chroot_run "${working_dir}" ldconfig
fi fi
if [[ -e "${working_dir}/etc/locale.gen" ]]; then if [[ -e "${working_dir}/etc/locale.gen" ]]; then
sed -i 's@^#\(en_US\|de_DE\)\(\.UTF-8\)@\1\2@' "${working_dir}/etc/locale.gen" sed -i 's@^#\(en_US\|de_DE\)\(\.UTF-8\)@\1\2@' "${working_dir}/etc/locale.gen"
chroot "${working_dir}" /usr/sbin/locale-gen chroot_run "${working_dir}" locale-gen
fi fi
echo 'UTC' > "${working_dir}/etc/timezone"
ln -s /usr/share/zoneinfo/UTC "${working_dir}/etc/localtime"
echo 'LANG=C' > "${working_dir}/etc/locale.conf" echo 'LANG=C' > "${working_dir}/etc/locale.conf"
copy_hostconf copy_hostconf
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment