X-Git-Url: https://git.rrq.au/?a=blobdiff_plain;f=functions;h=8d2d5f3661a786943df9d1f20ed028ac6984690c;hb=149999f53b48159be4e3f5efb19e33fe4d96ed51;hp=45a634a1e575395e86c8457b342e3b2a39d5cc98;hpb=f86ce1827c0f74b3ac15598946b41477dd5a4066;p=rrq%2Foverlay-boot.git diff --git a/functions b/functions index 45a634a..8d2d5f3 100644 --- a/functions +++ b/functions @@ -3,12 +3,18 @@ # Rerun with sudo if needed [ $(id -u) = 0 ] || exec sudo $0 $@ +export ACTION="$(basename $0)" + # Function to write a message and exit with error code die() { echo "$*" >&2 exit 1 } +beginswith() { + [ "$1" != "${1#$2}" ] +} + # Function to setup subhost name and log file subhost_name() { CONFIG="$1" @@ -86,6 +92,9 @@ EOF # Setup the network namespace for the given $CABLES # $1=netns ( $2="br=mac" .. ) +# br is optional, mac is optional. +# If mac is .N then it's taken as vlan tag on prior outer interface +# (with ifup configuration) and the inner interface is left alone. setup_veth_cables() { local NETNS BR IF MAC C i ADD NETNS="$1" @@ -94,12 +103,21 @@ setup_veth_cables() { for C in "$@" ; do IF=$NETNS$i MAC="${C#*=}" - [ -z "$MAC" ] || MAC="address $MAC" - ip link add $IF type veth peer name eth$i $MAC netns $NETNS + if [ -z "$MAC" ] ; then + # set up veth with "random" mac address + ip link add $IF type veth peer name eth$i netns $NETNS + elif [ -z "${MAC%%.*}" ] ; then + # set up a host vlan with specified tag on previous eth + i=$((i-1)) + IF=$NETNS$i$MAC + ifup $IF + else + # set up veth with specified mac address + ip link add $IF type veth peer name eth$i address $MAC netns $NETNS + fi ip link set $IF up BR="${C%=*}" if [ -z "$BR" ] ; then - ip link set $IF ifup $IF else brctl addif $BR $IF @@ -148,6 +166,17 @@ setup_overlay() { mount --bind $UPPER $LOWER fi + grep ^SHARE= "$CONFIG" | while read A ; do + B="$(echo ${A#SHARE=})" + D="$(realpath "$B")" + [ "$D" = "$LOWER" ] && continue + if [ -d "$D" ] ; then + echo bind mount $D onto $LIVE$B + mkdir -p $LIVE$D + mount --bind $D $LIVE$B + fi + done + env CONFIG="$CONFIG" $POSTMOUNT "LIVE" "$UPPER" } @@ -164,3 +193,14 @@ is_live() { list_running() { pgrep -a overlay-boot | awk '{print $4}' } + +# Start cgroup v2 cpuset accounting if enabled. +# Needs manual enabling, with: +# mount -t cgroup2 cgroup2 /sys/fs/cgroup +setup_cgroup2_accounting() { + local NAME="$1" ME="$2" + local ACCDIR="$(awk '$3 == "cgroup2" {print $2; exit}' /proc/mounts)" + [ -z "$ACCDIR" ] && return 0 + mkdir -p "$ACCDIR/$NAME" + echo "$ME" > $ACCDIR/$NAME/cgroup.procs +}