mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2025-04-28 13:13:39 +00:00

This is purely so that we can do static linking. Linking against libsystemd makes that a challenge because while it's perfectly simple to do, distros tend not to provide a libsystemd.a. Tools that want to (a) link against liblxc and (b) have a statically linked binary to bind into a minimal container are ill served by this. So link against libdbus-1. .github/workflows/build.yml: switch to dbus-1. src/lxc/cgroups/cgfsng.c: replace the unpriv_systemd_create_scope(), start_scope, and enter_scope() systemd code with dbus-1 code. src/tests/oss-fuzz.sh: update from libsystemd-dev to libdbus-1-dev src/tests/oss-fuzz.sh: disable dbus .github/workflows/*: update from libsystemd-dev to libdbus-1-dev meson.build and meson_options.txt: switch from sd_bus to dbus lxc.spec.in: add dbus-1 to BuildRequires Signed-off-by: Serge Hallyn <serge@hallyn.com> Changelog: 03/13: use custom iter type so we can cleanup more easily... Changelog: 03/13: initialize each dbus_iter to { 0 } as mihalicyn suggested.
55 lines
2.0 KiB
Bash
Executable File
55 lines
2.0 KiB
Bash
Executable File
#!/bin/bash
|
|
set -eux
|
|
set -o pipefail
|
|
|
|
export ASAN_OPTIONS=detect_stack_use_after_return=1:check_initialization_order=1:strict_init_order=1:strict_string_checks=1
|
|
|
|
# https://github.com/lxc/lxc/issues/3757
|
|
ASAN_OPTIONS="$ASAN_OPTIONS:detect_odr_violation=0"
|
|
|
|
export UBSAN_OPTIONS=print_stacktrace=1:print_summary=1:halt_on_error=1
|
|
|
|
apt-get update -qq
|
|
apt-get install --yes --no-install-recommends \
|
|
apparmor bash-completion bridge-utils build-essential \
|
|
busybox-static clang cloud-image-utils curl dbus debhelper debootstrap \
|
|
devscripts dnsmasq-base docbook2x doxygen ed fakeroot file gcc graphviz \
|
|
git iptables meson net-tools libapparmor-dev libcap-dev libgnutls28-dev liblua5.2-dev \
|
|
libpam0g-dev libseccomp-dev libselinux1-dev libtool linux-libc-dev \
|
|
llvm lsb-release make openssl pkg-config python3-all-dev \
|
|
python3-setuptools rsync squashfs-tools uidmap unzip uuid-runtime \
|
|
wget xz-utils systemd-coredump libdbus-1-dev
|
|
apt-get remove --yes lxc-utils liblxc-common liblxc1 liblxc-dev
|
|
|
|
ARGS="-Dprefix=/usr -Dtests=true -Dpam-cgroup=false -Dwerror=true -Dio-uring-event-loop=false -Db_lto_mode=default -Db_lundef=false"
|
|
case "$CC" in clang*)
|
|
ARGS="$ARGS -Db_sanitize=address,undefined"
|
|
esac
|
|
meson setup san_build $ARGS
|
|
ninja -C san_build
|
|
ninja -C san_build install
|
|
|
|
cat <<'EOF' >/usr/bin/lxc-test-share-ns
|
|
#!/bin/bash
|
|
printf "The test is skipped due to https://github.com/lxc/lxc/issues/3798.\n"
|
|
EOF
|
|
|
|
mv /usr/bin/{lxc-test-concurrent,test-concurrent.orig}
|
|
cat <<EOF >/usr/bin/lxc-test-concurrent
|
|
#!/bin/bash
|
|
printf "Memory leaks are ignored due to https://github.com/lxc/lxc/issues/3788.\n"
|
|
ASAN_OPTIONS=$ASAN_OPTIONS:detect_leaks=0 UBSAN_OPTIONS=$UBSAN_OPTIONS /usr/bin/test-concurrent.orig
|
|
EOF
|
|
chmod +x /usr/bin/lxc-test-concurrent
|
|
|
|
sed -i 's/USE_LXC_BRIDGE="false"/USE_LXC_BRIDGE="true"/' /etc/default/lxc
|
|
systemctl daemon-reload
|
|
systemctl restart apparmor
|
|
systemctl restart lxc-net
|
|
|
|
# Undo default ACLs from Github
|
|
setfacl -b -R /home
|
|
|
|
git clone --depth=1 https://github.com/lxc/lxc-ci
|
|
timeout 30m bash -x lxc-ci/deps/lxc-exercise
|