From: Luca Boccassi Date: Thu, 11 Sep 2025 12:16:26 +0000 (+0100) Subject: test: PR_DEATHSIG is reset after changing id/gid X-Git-Tag: v258~24^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F38875%2Fhead;p=thirdparty%2Fsystemd.git test: PR_DEATHSIG is reset after changing id/gid Child processes are left hanging on abort() as these child procs freeze(), so test suites hang as well when test-namespace fails, and processes are leaked. From the docs: The parent-death signal setting is also cleared upon changes to any of the following thread credentials: effective user ID, effective group ID, filesystem user ID, or filesystem group ID. Set the deathsig again after changing id. Follow-up for 2ade8218598afba0802b1007535b5c8deaeceb58 --- diff --git a/src/test/test-namespace.c b/src/test/test-namespace.c index 79c94310889..83d47d62b0c 100644 --- a/src/test/test-namespace.c +++ b/src/test/test-namespace.c @@ -1,8 +1,10 @@ /* SPDX-License-Identifier: LGPL-2.1-or-later */ #include +#include #include #include +#include #include #include #include @@ -311,6 +313,10 @@ TEST(process_is_owned_by_uid) { if (r == 0) { p[0] = safe_close(p[0]); ASSERT_OK(fully_set_uid_gid(1, 1, NULL, 0)); + + /* After successfully changing id/gid DEATHSIG is reset, so it has to be set again */ + ASSERT_OK_ERRNO(prctl(PR_SET_PDEATHSIG, SIGKILL)); + ASSERT_OK_EQ_ERRNO(write(p[1], &(const char[]) { 'x' }, 1), 1); p[1] = safe_close(p[1]); freeze(); @@ -346,6 +352,9 @@ TEST(process_is_owned_by_uid) { ASSERT_OK(reset_uid_gid()); + /* After successfully changing id/gid DEATHSIG is reset, so it has to be set again */ + ASSERT_OK_ERRNO(prctl(PR_SET_PDEATHSIG, SIGKILL)); + ASSERT_OK_EQ_ERRNO(write(p[1], &(const char[]) { 'x' }, 1), 1); p[1] = safe_close(p[1]); freeze();