2020-03-04 12:35:06 +03:00
#!/usr/bin/env bash
2021-10-17 19:13:06 +03:00
# SPDX-License-Identifier: LGPL-2.1-or-later
2021-03-05 12:36:04 +03:00
# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
# ex: ts=8 sw=4 sts=4 et filetype=sh
2021-04-09 20:39:41 +03:00
set -eux
2019-03-07 08:47:43 +03:00
set -o pipefail
2021-09-30 15:14:19 +03:00
ARGS = ( )
if [ [ -v ASAN_OPTIONS || -v UBSAN_OPTIONS ] ] ; then
# If we're running under sanitizers, we need to use a less restrictive
# profile, otherwise LSan syscall would get blocked by seccomp
ARGS += ( --profile= trusted)
fi
2021-11-23 18:34:40 +03:00
systemd-dissect --no-pager /usr/share/minimal_0.raw | grep -q '✓ portable service'
systemd-dissect --no-pager /usr/share/minimal_1.raw | grep -q '✓ portable service'
systemd-dissect --no-pager /usr/share/app0.raw | grep -q '✓ extension for portable service'
systemd-dissect --no-pager /usr/share/app1.raw | grep -q '✓ extension for portable service'
2021-03-05 12:36:04 +03:00
export SYSTEMD_LOG_LEVEL = debug
2021-07-22 22:41:34 +03:00
mkdir -p /run/systemd/system/systemd-portabled.service.d/
cat <<EOF >/run/systemd/system/systemd-portabled.service.d/override.conf
[ Service]
Environment = SYSTEMD_LOG_LEVEL = debug
EOF
2019-03-07 08:47:43 +03:00
2022-01-27 17:07:20 +03:00
portablectl " ${ ARGS [@] } " attach --now --runtime /usr/share/minimal_0.raw minimal-app0
2019-03-07 08:47:43 +03:00
2022-01-27 17:07:20 +03:00
systemctl is-active minimal-app0.service
systemctl is-active minimal-app0-foo.service
2021-03-05 12:36:04 +03:00
set +o pipefail
set +e
2022-01-27 17:07:20 +03:00
systemctl is-active minimal-app0-bar.service && exit 1
2021-03-05 12:36:04 +03:00
set -e
set -o pipefail
2022-01-27 17:07:20 +03:00
portablectl " ${ ARGS [@] } " reattach --now --runtime /usr/share/minimal_1.raw minimal-app0
2021-03-05 12:36:04 +03:00
2022-01-27 17:07:20 +03:00
systemctl is-active minimal-app0.service
systemctl is-active minimal-app0-bar.service
2021-03-05 12:36:04 +03:00
set +o pipefail
set +e
2022-01-27 17:07:20 +03:00
systemctl is-active minimal-app0-foo.service && exit 1
2021-03-05 12:36:04 +03:00
set -e
set -o pipefail
2019-03-07 08:47:43 +03:00
2021-03-05 12:36:04 +03:00
portablectl list | grep -q -F "minimal_1"
2019-03-07 08:47:43 +03:00
2022-01-27 17:07:20 +03:00
portablectl detach --now --runtime /usr/share/minimal_1.raw minimal-app0
2019-03-07 08:47:43 +03:00
2021-03-05 12:36:04 +03:00
portablectl list | grep -q -F "No images."
2019-03-07 08:47:43 +03:00
2021-03-05 12:36:04 +03:00
# portablectl also works with directory paths rather than images
2019-03-07 08:47:43 +03:00
2021-03-05 12:36:04 +03:00
unsquashfs -dest /tmp/minimal_0 /usr/share/minimal_0.raw
unsquashfs -dest /tmp/minimal_1 /usr/share/minimal_1.raw
2019-03-07 08:47:43 +03:00
2022-01-27 17:07:20 +03:00
portablectl " ${ ARGS [@] } " attach --copy= symlink --now --runtime /tmp/minimal_0 minimal-app0
2019-03-07 08:47:43 +03:00
2022-01-27 17:07:20 +03:00
systemctl is-active minimal-app0.service
systemctl is-active minimal-app0-foo.service
2021-03-05 12:36:04 +03:00
set +o pipefail
set +e
2022-01-27 17:07:20 +03:00
systemctl is-active minimal-app0-bar.service && exit 1
2021-03-05 12:36:04 +03:00
set -e
set -o pipefail
2022-01-27 17:07:20 +03:00
portablectl " ${ ARGS [@] } " reattach --now --enable --runtime /tmp/minimal_1 minimal-app0
2021-03-05 12:36:04 +03:00
2022-01-27 17:07:20 +03:00
systemctl is-active minimal-app0.service
systemctl is-active minimal-app0-bar.service
2021-03-05 12:36:04 +03:00
set +o pipefail
set +e
2022-01-27 17:07:20 +03:00
systemctl is-active minimal-app0-foo.service && exit 1
2021-03-05 12:36:04 +03:00
set -e
set -o pipefail
2019-03-07 08:47:43 +03:00
2021-03-05 12:36:04 +03:00
portablectl list | grep -q -F "minimal_1"
2020-09-14 09:44:30 +03:00
2022-01-27 17:07:20 +03:00
portablectl detach --now --enable --runtime /tmp/minimal_1 minimal-app0
2020-09-14 09:44:30 +03:00
2021-03-05 12:36:04 +03:00
portablectl list | grep -q -F "No images."
2020-09-14 09:44:30 +03:00
2021-09-30 15:14:19 +03:00
portablectl " ${ ARGS [@] } " attach --now --runtime --extension /usr/share/app0.raw /usr/share/minimal_0.raw app0
2020-06-23 15:09:42 +03:00
2021-07-22 22:41:34 +03:00
systemctl is-active app0.service
2022-01-24 20:42:32 +03:00
status = " $( portablectl is-attached --extension app0 minimal_0) "
[ [ " ${ status } " = = "running-runtime" ] ]
2021-07-22 22:41:34 +03:00
2021-09-30 15:14:19 +03:00
portablectl " ${ ARGS [@] } " reattach --now --runtime --extension /usr/share/app0.raw /usr/share/minimal_1.raw app0
2021-07-22 22:41:34 +03:00
systemctl is-active app0.service
2022-01-24 20:42:32 +03:00
status = " $( portablectl is-attached --extension app0 minimal_1) "
[ [ " ${ status } " = = "running-runtime" ] ]
2021-07-22 22:41:34 +03:00
portablectl detach --now --runtime --extension /usr/share/app0.raw /usr/share/minimal_1.raw app0
2021-09-30 15:14:19 +03:00
portablectl " ${ ARGS [@] } " attach --now --runtime --extension /usr/share/app1.raw /usr/share/minimal_0.raw app1
2020-06-23 15:09:42 +03:00
systemctl is-active app1.service
2022-01-24 20:42:32 +03:00
status = " $( portablectl is-attached --extension app1 minimal_0) "
[ [ " ${ status } " = = "running-runtime" ] ]
2020-06-23 15:09:42 +03:00
2021-09-30 15:14:19 +03:00
portablectl " ${ ARGS [@] } " reattach --now --runtime --extension /usr/share/app1.raw /usr/share/minimal_1.raw app1
2020-06-23 15:09:42 +03:00
systemctl is-active app1.service
2022-01-24 20:42:32 +03:00
status = " $( portablectl is-attached --extension app1 minimal_1) "
[ [ " ${ status } " = = "running-runtime" ] ]
2020-06-23 15:09:42 +03:00
2021-07-22 22:41:34 +03:00
portablectl detach --now --runtime --extension /usr/share/app1.raw /usr/share/minimal_1.raw app1
2020-06-23 15:09:42 +03:00
# portablectl also works with directory paths rather than images
2022-01-22 04:53:54 +03:00
mkdir /tmp/rootdir /tmp/app0 /tmp/app1 /tmp/overlay /tmp/os-release-fix /tmp/os-release-fix/etc
mount /usr/share/app0.raw /tmp/app0
2021-07-22 22:41:34 +03:00
mount /usr/share/app1.raw /tmp/app1
mount /usr/share/minimal_0.raw /tmp/rootdir
2021-11-23 18:34:40 +03:00
# Fix up os-release to drop the valid PORTABLE_SERVICES field (because we are
# bypassing the sysext logic in portabled here it will otherwise not see the
# extensions additional valid prefix)
grep -v "^PORTABLE_PREFIXES=" /tmp/rootdir/etc/os-release > /tmp/os-release-fix/etc/os-release
mount -t overlay overlay -o lowerdir = /tmp/os-release-fix:/tmp/app1:/tmp/rootdir /tmp/overlay
grep . /tmp/overlay/usr/lib/extension-release.d/*
grep . /tmp/overlay/etc/os-release
2020-06-23 15:09:42 +03:00
2021-09-30 15:14:19 +03:00
portablectl " ${ ARGS [@] } " attach --copy= symlink --now --runtime /tmp/overlay app1
2020-06-23 15:09:42 +03:00
systemctl is-active app1.service
portablectl detach --now --runtime overlay app1
umount /tmp/overlay
2022-01-22 04:53:54 +03:00
portablectl " ${ ARGS [@] } " attach --copy= symlink --now --runtime --extension /tmp/app0 --extension /tmp/app1 /tmp/rootdir app0 app1
systemctl is-active app0.service
systemctl is-active app1.service
2022-01-25 18:49:22 +03:00
portablectl inspect --cat --extension app0 --extension app1 rootdir app0 app1 | grep -q -f /tmp/rootdir/usr/lib/os-release
portablectl inspect --cat --extension app0 --extension app1 rootdir app0 app1 | grep -q -f /tmp/app0/usr/lib/extension-release.d/extension-release.app0
portablectl inspect --cat --extension app0 --extension app1 rootdir app0 app1 | grep -q -f /tmp/app1/usr/lib/extension-release.d/extension-release.app2
portablectl inspect --cat --extension app0 --extension app1 rootdir app0 app1 | grep -q -f /tmp/app1/usr/lib/systemd/system/app1.service
portablectl inspect --cat --extension app0 --extension app1 rootdir app0 app1 | grep -q -f /tmp/app0/usr/lib/systemd/system/app0.service
2022-01-22 04:53:54 +03:00
portablectl detach --now --runtime --extension /tmp/app0 --extension /tmp/app1 /tmp/rootdir app0 app1
2020-06-23 15:09:42 +03:00
umount /tmp/rootdir
2022-01-22 04:53:54 +03:00
umount /tmp/app0
2020-06-23 15:09:42 +03:00
umount /tmp/app1
2021-04-08 01:09:55 +03:00
echo OK >/testok
2019-03-07 08:47:43 +03:00
exit 0