From: Kiran Rangoon Date: Fri, 16 Jan 2026 17:06:48 +0000 (-0500) Subject: tests: add tests for unshare --forward-signals X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0fbf7c4cb5d7c694ccd8867c5474044fd75f181d;p=thirdparty%2Futil-linux.git tests: add tests for unshare --forward-signals Add two test cases for the new --forward-signals option: - forward-signals: verifies SIGTERM is forwarded to child - forward-signals-kill-child: verifies compatibility with --kill-child Both tests use test_sigreceive which exits with the signal number received, confirming proper signal forwarding. Signed-off-by: Kiran Rangoon --- diff --git a/tests/expected/unshare/forward-signals b/tests/expected/unshare/forward-signals new file mode 100644 index 000000000..868dab6e1 --- /dev/null +++ b/tests/expected/unshare/forward-signals @@ -0,0 +1 @@ +SIGTERM forwarded successfully diff --git a/tests/expected/unshare/forward-signals-kill-child b/tests/expected/unshare/forward-signals-kill-child new file mode 100644 index 000000000..d4e1224da --- /dev/null +++ b/tests/expected/unshare/forward-signals-kill-child @@ -0,0 +1 @@ +SIGTERM forwarded successfully with kill-child diff --git a/tests/ts/unshare/forward-signals b/tests/ts/unshare/forward-signals new file mode 100755 index 000000000..042ee0a58 --- /dev/null +++ b/tests/ts/unshare/forward-signals @@ -0,0 +1,73 @@ +#!/bin/bash + +# +# Copyright (C) 2026 util-linux contributors +# +# This file is part of util-linux. +# +# This file is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This file is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +TS_TOPDIR="${0%/*}/../.." +TS_DESC="forward signals to child" + +. "$TS_TOPDIR/functions.sh" +ts_init "$*" + +ts_check_test_command "$TS_CMD_UNSHARE" +ts_check_test_command "$TS_HELPER_SIGRECEIVE" + +ts_skip_nonroot + +# Verify that user namespaces work +"$TS_CMD_UNSHARE" --user --map-root-user /bin/true &> /dev/null || \ + ts_skip "user namespaces not supported" + +# Start unshare with --forward-signals and a child process that exits +# with the signal number it receives +"$TS_CMD_UNSHARE" --user --map-root-user \ + --pid --mount-proc \ + --fork --forward-signals \ + "$TS_HELPER_SIGRECEIVE" < /dev/null >> $TS_OUTPUT 2>> $TS_ERRLOG & + +UNSHARE_PID=$! + +# Wait for child to be ready - poll for up to 10 seconds +# The child process tree should exist +TIMEOUT=10 +ELAPSED=0 +while [ $ELAPSED -lt $TIMEOUT ]; do + # Check if the process still exists + if ! kill -0 $UNSHARE_PID 2>/dev/null; then + ts_skip "unshare process died prematurely" + fi + # Give it a bit more time to set up namespaces and signal handlers + if [ $ELAPSED -ge 2 ]; then + break + fi + sleep 0.5 + ELAPSED=$((ELAPSED + 1)) +done + +# Send SIGTERM to parent unshare process +kill -TERM $UNSHARE_PID 2>/dev/null + +# Wait for completion with timeout +wait $UNSHARE_PID +EXIT_CODE=$? + +# test_sigreceive exits with the signal number it receives (15 = SIGTERM) +if [ $EXIT_CODE -eq 15 ]; then + echo "SIGTERM forwarded successfully" >> $TS_OUTPUT +else + echo "UNEXPECTED EXIT CODE: $EXIT_CODE" >> $TS_OUTPUT +fi + +ts_finalize diff --git a/tests/ts/unshare/forward-signals-kill-child b/tests/ts/unshare/forward-signals-kill-child new file mode 100755 index 000000000..766f9fe56 --- /dev/null +++ b/tests/ts/unshare/forward-signals-kill-child @@ -0,0 +1,74 @@ +#!/bin/bash + +# +# Copyright (C) 2026 util-linux contributors +# +# This file is part of util-linux. +# +# This file is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This file is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +TS_TOPDIR="${0%/*}/../.." +TS_DESC="forward signals with kill-child" + +. "$TS_TOPDIR/functions.sh" +ts_init "$*" + +ts_check_test_command "$TS_CMD_UNSHARE" +ts_check_test_command "$TS_HELPER_SIGRECEIVE" + +ts_skip_nonroot + +# Verify that user namespaces work +"$TS_CMD_UNSHARE" --user --map-root-user /bin/true &> /dev/null || \ + ts_skip "user namespaces not supported" + +# Start unshare with both --forward-signals and --kill-child +# The child should receive SIGTERM from forwarding first +"$TS_CMD_UNSHARE" --user --map-root-user \ + --pid --mount-proc \ + --fork --forward-signals --kill-child \ + "$TS_HELPER_SIGRECEIVE" < /dev/null >> $TS_OUTPUT 2>> $TS_ERRLOG & + +UNSHARE_PID=$! + +# Wait for child to be ready - poll for up to 10 seconds +# The child process tree should exist +TIMEOUT=10 +ELAPSED=0 +while [ $ELAPSED -lt $TIMEOUT ]; do + # Check if the process still exists + if ! kill -0 $UNSHARE_PID 2>/dev/null; then + ts_skip "unshare process died prematurely" + fi + # Give it a bit more time to set up namespaces and signal handlers + if [ $ELAPSED -ge 2 ]; then + break + fi + sleep 0.5 + ELAPSED=$((ELAPSED + 1)) +done + +# Send SIGTERM to parent unshare process +kill -TERM $UNSHARE_PID 2>/dev/null + +# Wait for completion with timeout +wait $UNSHARE_PID +EXIT_CODE=$? + +# test_sigreceive exits with the signal number it receives (15 = SIGTERM) +# With --kill-child, it should still receive SIGTERM first via forwarding +if [ $EXIT_CODE -eq 15 ]; then + echo "SIGTERM forwarded successfully with kill-child" >> $TS_OUTPUT +else + echo "UNEXPECTED EXIT CODE: $EXIT_CODE" >> $TS_OUTPUT +fi + +ts_finalize