Blame SOURCES/0137-Implement-testing-framework-for-pidns.patch

9a4987
From 4362ddaba8634a5ac6b4add0eaf25eec5f7315f5 Mon Sep 17 00:00:00 2001
9a4987
From: =?UTF-8?q?=C3=81kos=20Uzonyi?= <uzonyi.akos@gmail.com>
9a4987
Date: Fri, 26 Jun 2020 20:13:28 +0200
9a4987
Subject: [PATCH 137/138] Implement testing framework for pidns
9a4987
9a4987
* tests/pidns.c: New file.
9a4987
* tests/pidns.h: New file.
9a4987
* tests/Makefile.am (libtests_a_SOURCES): Add pidns.c, pidns.h.
9a4987
* tests/init.sh (test_pidns, test_pidns_run_strace): New functions.
9a4987
---
9a4987
 tests/Makefile.am |   2 +
9a4987
 tests/init.sh     |  30 +++++++
9a4987
 tests/pidns.c     | 237 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
9a4987
 tests/pidns.h     |  56 +++++++++++++
9a4987
 4 files changed, 325 insertions(+)
9a4987
 create mode 100644 tests/pidns.c
9a4987
 create mode 100644 tests/pidns.h
9a4987
9a4987
Index: strace-5.7/tests/Makefile.am
9a4987
===================================================================
9a4987
--- strace-5.7.orig/tests/Makefile.am	2020-09-09 19:32:50.846965498 +0200
9a4987
+++ strace-5.7/tests/Makefile.am	2020-09-09 19:49:54.008575349 +0200
9a4987
@@ -44,6 +44,8 @@
9a4987
 	libsocketcall.c \
9a4987
 	lock_file.c \
9a4987
 	overflowuid.c \
9a4987
+	pidns.c \
9a4987
+	pidns.h \
9a4987
 	pipe_maxfd.c \
9a4987
 	print_quoted_string.c \
9a4987
 	print_time.c \
9a4987
Index: strace-5.7/tests/init.sh
9a4987
===================================================================
9a4987
--- strace-5.7.orig/tests/init.sh	2020-09-09 19:32:50.846965498 +0200
9a4987
+++ strace-5.7/tests/init.sh	2020-09-09 19:49:54.008575349 +0200
9a4987
@@ -387,6 +387,36 @@
9a4987
 	test_pure_prog_set "$@" < "$srcdir/$NAME.in"
9a4987
 }
9a4987
 
9a4987
+test_pidns_run_strace()
9a4987
+{
9a4987
+	local parent_pid init_pid
9a4987
+
9a4987
+	check_prog tail
9a4987
+	check_prog cut
9a4987
+	check_prog grep
9a4987
+
9a4987
+	run_prog > /dev/null
9a4987
+	run_strace --pidns-translation -f $@ $args > "$EXP"
9a4987
+
9a4987
+	# filter out logs made by the parent or init process of the pidns test
9a4987
+	parent_pid="$(tail -n 2 $LOG | head -n 1 | cut -d' ' -f1)"
9a4987
+	init_pid="$(tail -n 1 $LOG | cut -d' ' -f1)"
9a4987
+	grep -E -v "^($parent_pid|$init_pid) " "$LOG" > "$OUT"
9a4987
+	match_diff "$OUT" "$EXP"
9a4987
+}
9a4987
+
9a4987
+test_pidns()
9a4987
+{
9a4987
+	check_prog unshare
9a4987
+	unshare -Urpf true || framework_skip_ "unshare -Urpf true failed"
9a4987
+
9a4987
+	test_pidns_run_strace "$@"
9a4987
+
9a4987
+	# test PID translation when /proc is mounted from an other namespace
9a4987
+	STRACE="unshare -Urpf $STRACE"
9a4987
+	test_pidns_run_strace "$@"
9a4987
+}
9a4987
+
9a4987
 check_prog cat
9a4987
 check_prog rm
9a4987
 
9a4987
Index: strace-5.7/tests/pidns.c
9a4987
===================================================================
9a4987
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
9a4987
+++ strace-5.7/tests/pidns.c	2020-09-09 19:49:54.009575350 +0200
9a4987
@@ -0,0 +1,237 @@
9a4987
+/*
9a4987
+ * Testing framework for PID namespace translation
9a4987
+ *
9a4987
+ * Copyright (c) 2020 Ákos Uzonyi <uzonyi.akos@gmail.com>
9a4987
+ * All rights reserved.
9a4987
+ *
9a4987
+ * SPDX-License-Identifier: LGPL-2.1-or-later
9a4987
+ */
9a4987
+#include "tests.h"
9a4987
+#include "pidns.h"
9a4987
+#include "nsfs.h"
9a4987
+
9a4987
+#include <errno.h>
9a4987
+#include <stdio.h>
9a4987
+#include <string.h>
9a4987
+#include <sys/types.h>
9a4987
+#include <signal.h>
9a4987
+#include <stdlib.h>
9a4987
+#include <sched.h>
9a4987
+#include <unistd.h>
9a4987
+#include <sys/wait.h>
9a4987
+#include <linux/sched.h>
9a4987
+#include <fcntl.h>
9a4987
+#include <sys/ioctl.h>
9a4987
+
9a4987
+#ifndef CLONE_NEWUSER
9a4987
+# define CLONE_NEWUSER 0x10000000
9a4987
+#endif
9a4987
+
9a4987
+#ifndef CLONE_NEWPID
9a4987
+# define CLONE_NEWPID 0x20000000
9a4987
+#endif
9a4987
+
9a4987
+static bool pidns_translation = false;
9a4987
+static bool pidns_unshared = false;
9a4987
+
9a4987
+/* Our PIDs in strace's namespace */
9a4987
+static pid_t pidns_strace_ids[PT_COUNT];
9a4987
+
9a4987
+void
9a4987
+pidns_print_leader(void)
9a4987
+{
9a4987
+	if (pidns_translation)
9a4987
+		printf("%-5d ", pidns_strace_ids[PT_TID]);
9a4987
+}
9a4987
+
9a4987
+const char *
9a4987
+pidns_pid2str(enum pid_type type)
9a4987
+{
9a4987
+	static const char format[] = " /* %d in strace's PID NS */";
9a4987
+	static char buf[PT_COUNT][sizeof(format) + sizeof(int) * 3];
9a4987
+
9a4987
+	if (type < 0 || type >= PT_COUNT)
9a4987
+		return "";
9a4987
+
9a4987
+	if (!pidns_unshared || !pidns_strace_ids[type])
9a4987
+		return "";
9a4987
+
9a4987
+	snprintf(buf[type], sizeof(buf[type]), format, pidns_strace_ids[type]);
9a4987
+	return buf[type];
9a4987
+}
9a4987
+
9a4987
+/**
9a4987
+ * This function is like fork, but does a few more things. It sets up the
9a4987
+ * child's PGID and SID according to the parameters. Also it fills the
9a4987
+ * pidns_strace_ids array in the child's memory with the PIDs of the child in
9a4987
+ * parent's PID namespace. In the parent it waits for the child to terminate
9a4987
+ * (but leaves the zombie to use it later as a process group). If the child
9a4987
+ * terminates with nonzero exit status, the test is failed.
9a4987
+ *
9a4987
+ * @param pgid     The process group the child should be moved to. It's expected
9a4987
+ *                 to be a PID of a zombie process (will be reaped). If
9a4987
+ *                 negative, leave the child in the process group of the parent.
9a4987
+ *                 If 0, move the process to its own process group.
9a4987
+ * @param new_sid  Wheather child should be moved to a new session.
9a4987
+ */
9a4987
+static pid_t
9a4987
+pidns_fork(pid_t pgid, bool new_sid)
9a4987
+{
9a4987
+	int strace_ids_pipe[2];
9a4987
+	if (pipe(strace_ids_pipe) < 0)
9a4987
+		perror_msg_and_fail("pipe");
9a4987
+
9a4987
+	fflush(stdout);
9a4987
+	pid_t pid = fork();
9a4987
+	if (pid < 0)
9a4987
+		perror_msg_and_fail("fork");
9a4987
+
9a4987
+	if (!pid) {
9a4987
+		close(strace_ids_pipe[1]);
9a4987
+
9a4987
+		ssize_t len = read(strace_ids_pipe[0], pidns_strace_ids,
9a4987
+				sizeof(pidns_strace_ids));
9a4987
+		if (len < 0)
9a4987
+			perror_msg_and_fail("read");
9a4987
+		if (len != sizeof(pidns_strace_ids))
9a4987
+			error_msg_and_fail("read returned < sizeof(pidns_strace_ids)");
9a4987
+
9a4987
+		close(strace_ids_pipe[0]);
9a4987
+
9a4987
+		if (pidns_strace_ids[PT_SID])
9a4987
+			setsid();
9a4987
+
9a4987
+		return 0;
9a4987
+	}
9a4987
+
9a4987
+	pidns_strace_ids[PT_TID] = pid;
9a4987
+	pidns_strace_ids[PT_TGID] = pid;
9a4987
+	pidns_strace_ids[PT_PGID] = 0;
9a4987
+	pidns_strace_ids[PT_SID] = 0;
9a4987
+
9a4987
+	if (!pgid)
9a4987
+		pgid = pid;
9a4987
+
9a4987
+	if (pgid > 0) {
9a4987
+		if (setpgid(pid, pgid) < 0)
9a4987
+			perror_msg_and_fail("setpgid");
9a4987
+
9a4987
+		pidns_strace_ids[PT_PGID] = pgid;
9a4987
+	}
9a4987
+
9a4987
+	/* Reap group leader to test PGID decoding */
9a4987
+	if (pgid > 0 && pgid != pid) {
9a4987
+		int ret = waitpid(pgid, NULL, WNOHANG);
9a4987
+		if (ret < 0)
9a4987
+			perror_msg_and_fail("wait");
9a4987
+		if (!ret)
9a4987
+			error_msg_and_fail("could not reap group leader");
9a4987
+	}
9a4987
+
9a4987
+	if (new_sid) {
9a4987
+		pidns_strace_ids[PT_SID] = pid;
9a4987
+		pidns_strace_ids[PT_PGID] = pid;
9a4987
+	}
9a4987
+
9a4987
+	ssize_t len = write(strace_ids_pipe[1], pidns_strace_ids,
9a4987
+	                     sizeof(pidns_strace_ids));
9a4987
+	if (len < 0)
9a4987
+		perror_msg_and_fail("write");
9a4987
+	if (len != sizeof(pidns_strace_ids))
9a4987
+		error_msg_and_fail("write returned < sizeof(pidns_strace_ids)");
9a4987
+
9a4987
+	close(strace_ids_pipe[0]);
9a4987
+	close(strace_ids_pipe[1]);
9a4987
+
9a4987
+	/* WNOWAIT: leave the zombie, to be able to use it as a process group */
9a4987
+	siginfo_t siginfo;
9a4987
+	if (waitid(P_PID, pid, &siginfo, WEXITED | WNOWAIT) < 0)
9a4987
+		perror_msg_and_fail("wait");
9a4987
+	if (siginfo.si_code != CLD_EXITED || siginfo.si_status)
9a4987
+		error_msg_and_fail("child terminated with nonzero exit status");
9a4987
+
9a4987
+	return pid;
9a4987
+}
9a4987
+
9a4987
+static void
9a4987
+create_init_process(void)
9a4987
+{
9a4987
+	int child_pipe[2];
9a4987
+	if (pipe(child_pipe) < 0)
9a4987
+		perror_msg_and_fail("pipe");
9a4987
+
9a4987
+	pid_t pid = fork();
9a4987
+	if (pid < 0)
9a4987
+		perror_msg_and_fail("fork");
9a4987
+
9a4987
+	if (!pid) {
9a4987
+		close(child_pipe[1]);
9a4987
+		if (read(child_pipe[0], &child_pipe[1], sizeof(int)) != 0)
9a4987
+			_exit(1);
9a4987
+		_exit(0);
9a4987
+	}
9a4987
+
9a4987
+	close(child_pipe[0]);
9a4987
+}
9a4987
+
9a4987
+void
9a4987
+check_ns_ioctl(void)
9a4987
+{
9a4987
+	int fd = open("/proc/self/ns/pid", O_RDONLY);
9a4987
+	if (fd < 0) {
9a4987
+		if (errno == ENOENT)
9a4987
+			perror_msg_and_skip("opening /proc/self/ns/pid");
9a4987
+		else
9a4987
+			perror_msg_and_fail("opening /proc/self/ns/pid");
9a4987
+	}
9a4987
+
9a4987
+	int userns_fd = ioctl(fd, NS_GET_USERNS);
9a4987
+	if (userns_fd < 0) {
9a4987
+		if (errno == ENOTTY)
9a4987
+			error_msg_and_skip("NS_* ioctl commands are not "
9a4987
+			                   "supported by the kernel");
9a4987
+		else
9a4987
+			perror_msg_and_fail("ioctl(NS_GET_USERNS)");
9a4987
+	}
9a4987
+
9a4987
+	close(userns_fd);
9a4987
+	close(fd);
9a4987
+}
9a4987
+
9a4987
+void
9a4987
+pidns_test_init(void)
9a4987
+{
9a4987
+	pidns_translation = true;
9a4987
+
9a4987
+	check_ns_ioctl();
9a4987
+
9a4987
+	if (!pidns_fork(-1, false))
9a4987
+		return;
9a4987
+
9a4987
+	/* Unshare user namespace too, so we do not need to be root */
9a4987
+	if (unshare(CLONE_NEWUSER | CLONE_NEWPID) < 0) {
9a4987
+		if (errno == EPERM)
9a4987
+			perror_msg_and_skip("unshare");
9a4987
+
9a4987
+		perror_msg_and_fail("unshare");
9a4987
+	}
9a4987
+
9a4987
+	pidns_unshared = true;
9a4987
+
9a4987
+	create_init_process();
9a4987
+
9a4987
+	if (!pidns_fork(-1, false))
9a4987
+		return;
9a4987
+
9a4987
+	if (!pidns_fork(-1, true))
9a4987
+		return;
9a4987
+
9a4987
+	pid_t pgid;
9a4987
+	if (!(pgid = pidns_fork(0, false)))
9a4987
+		return;
9a4987
+
9a4987
+	if (!pidns_fork(pgid, false))
9a4987
+		return;
9a4987
+
9a4987
+	exit(0);
9a4987
+}
9a4987
Index: strace-5.7/tests/pidns.h
9a4987
===================================================================
9a4987
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
9a4987
+++ strace-5.7/tests/pidns.h	2020-09-09 19:49:54.009575350 +0200
9a4987
@@ -0,0 +1,56 @@
9a4987
+/*
9a4987
+ * Test PID namespace translation
9a4987
+ *
9a4987
+ * Copyright (c) 2020 Ákos Uzonyi <uzonyi.akos@gmail.com>
9a4987
+ * All rights reserved.
9a4987
+ *
9a4987
+ * SPDX-License-Identifier: LGPL-2.1-or-later
9a4987
+ */
9a4987
+#ifndef STRACE_PIDNS_H
9a4987
+#define STRACE_PIDNS_H
9a4987
+
9a4987
+#ifdef PIDNS_TRANSLATION
9a4987
+# define PIDNS_TEST_INIT pidns_test_init()
9a4987
+#else
9a4987
+# define PIDNS_TEST_INIT
9a4987
+#endif
9a4987
+
9a4987
+#include <sys/types.h>
9a4987
+
9a4987
+enum pid_type {
9a4987
+	PT_TID,
9a4987
+	PT_TGID,
9a4987
+	PT_PGID,
9a4987
+	PT_SID,
9a4987
+
9a4987
+	PT_COUNT,
9a4987
+	PT_NONE = -1
9a4987
+};
9a4987
+
9a4987
+/* Prints leader (process tid) if pidns_test_init was called */
9a4987
+void pidns_print_leader(void);
9a4987
+
9a4987
+/*
9a4987
+ * Returns a static buffer containing the translation string of our PID.
9a4987
+ */
9a4987
+const char *pidns_pid2str(enum pid_type type);
9a4987
+
9a4987
+/**
9a4987
+ * Skips the test if NS_* ioctl commands are not supported by the kernel.
9a4987
+ */
9a4987
+void check_ns_ioctl(void);
9a4987
+
9a4987
+/**
9a4987
+ * Init pidns testing.
9a4987
+ *
9a4987
+ * Should be called at the beginning of the test's main function
9a4987
+ *
9a4987
+ * This function calls fork a couple of times, and returns in the child
9a4987
+ * processes. These child processes are in a new PID namespace with different
9a4987
+ * PID configurations (group leader, session leader, ...). If any child
9a4987
+ * terminates with nonzero exit status the test is failed. Otherwise the test is
9a4987
+ * succesful, and the parent process exits with 0.
9a4987
+ */
9a4987
+void pidns_test_init(void);
9a4987
+
9a4987
+#endif
9a4987
\ No newline at end of file
9a4987
Index: strace-5.7/tests-m32/Makefile.am
9a4987
===================================================================
9a4987
--- strace-5.7.orig/tests-m32/Makefile.am	2020-09-09 19:32:50.846965498 +0200
9a4987
+++ strace-5.7/tests-m32/Makefile.am	2020-09-09 19:49:54.009575350 +0200
9a4987
@@ -7,14 +7,14 @@
9a4987
 # SPDX-License-Identifier: GPL-2.0-or-later
9a4987
 
9a4987
 OS = linux
9a4987
-CC = @CC_FOR_M32@
9a4987
-ARCH = @arch_m32@
9a4987
+CC = @CC@
9a4987
+ARCH = @arch@
9a4987
 NATIVE_ARCH = @arch_native@
9a4987
-SIZEOF_KERNEL_LONG_T = 4
9a4987
-SIZEOF_LONG = 4
9a4987
-MPERS_NAME = m32
9a4987
-MPERS_CC_FLAGS = @CFLAGS_FOR_M32@ @cc_flags_m32@
9a4987
-ARCH_MFLAGS = -DMPERS_IS_$(MPERS_NAME) $(MPERS_CC_FLAGS)
9a4987
+SIZEOF_KERNEL_LONG_T = @SIZEOF_KERNEL_LONG_T@
9a4987
+SIZEOF_LONG = @SIZEOF_LONG@
9a4987
+MPERS_NAME =
9a4987
+MPERS_CC_FLAGS =
9a4987
+ARCH_MFLAGS =
9a4987
 AM_CFLAGS = $(WARN_CFLAGS)
9a4987
 AM_CPPFLAGS = $(ARCH_MFLAGS) \
9a4987
 	      -I$(builddir) \
9a4987
@@ -44,6 +44,8 @@
9a4987
 	libsocketcall.c \
9a4987
 	lock_file.c \
9a4987
 	overflowuid.c \
9a4987
+	pidns.c \
9a4987
+	pidns.h \
9a4987
 	pipe_maxfd.c \
9a4987
 	print_quoted_string.c \
9a4987
 	print_time.c \
9a4987
Index: strace-5.7/tests-m32/init.sh
9a4987
===================================================================
9a4987
--- strace-5.7.orig/tests-m32/init.sh	2020-09-09 19:32:50.846965498 +0200
9a4987
+++ strace-5.7/tests-m32/init.sh	2020-09-09 19:49:54.009575350 +0200
9a4987
@@ -387,6 +387,36 @@
9a4987
 	test_pure_prog_set "$@" < "$srcdir/$NAME.in"
9a4987
 }
9a4987
 
9a4987
+test_pidns_run_strace()
9a4987
+{
9a4987
+	local parent_pid init_pid
9a4987
+
9a4987
+	check_prog tail
9a4987
+	check_prog cut
9a4987
+	check_prog grep
9a4987
+
9a4987
+	run_prog > /dev/null
9a4987
+	run_strace --pidns-translation -f $@ $args > "$EXP"
9a4987
+
9a4987
+	# filter out logs made by the parent or init process of the pidns test
9a4987
+	parent_pid="$(tail -n 2 $LOG | head -n 1 | cut -d' ' -f1)"
9a4987
+	init_pid="$(tail -n 1 $LOG | cut -d' ' -f1)"
9a4987
+	grep -E -v "^($parent_pid|$init_pid) " "$LOG" > "$OUT"
9a4987
+	match_diff "$OUT" "$EXP"
9a4987
+}
9a4987
+
9a4987
+test_pidns()
9a4987
+{
9a4987
+	check_prog unshare
9a4987
+	unshare -Urpf true || framework_skip_ "unshare -Urpf true failed"
9a4987
+
9a4987
+	test_pidns_run_strace "$@"
9a4987
+
9a4987
+	# test PID translation when /proc is mounted from an other namespace
9a4987
+	STRACE="unshare -Urpf $STRACE"
9a4987
+	test_pidns_run_strace "$@"
9a4987
+}
9a4987
+
9a4987
 check_prog cat
9a4987
 check_prog rm
9a4987
 
9a4987
Index: strace-5.7/tests-m32/pidns.c
9a4987
===================================================================
9a4987
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
9a4987
+++ strace-5.7/tests-m32/pidns.c	2020-09-09 19:49:54.009575350 +0200
9a4987
@@ -0,0 +1,237 @@
9a4987
+/*
9a4987
+ * Testing framework for PID namespace translation
9a4987
+ *
9a4987
+ * Copyright (c) 2020 Ákos Uzonyi <uzonyi.akos@gmail.com>
9a4987
+ * All rights reserved.
9a4987
+ *
9a4987
+ * SPDX-License-Identifier: LGPL-2.1-or-later
9a4987
+ */
9a4987
+#include "tests.h"
9a4987
+#include "pidns.h"
9a4987
+#include "nsfs.h"
9a4987
+
9a4987
+#include <errno.h>
9a4987
+#include <stdio.h>
9a4987
+#include <string.h>
9a4987
+#include <sys/types.h>
9a4987
+#include <signal.h>
9a4987
+#include <stdlib.h>
9a4987
+#include <sched.h>
9a4987
+#include <unistd.h>
9a4987
+#include <sys/wait.h>
9a4987
+#include <linux/sched.h>
9a4987
+#include <fcntl.h>
9a4987
+#include <sys/ioctl.h>
9a4987
+
9a4987
+#ifndef CLONE_NEWUSER
9a4987
+# define CLONE_NEWUSER 0x10000000
9a4987
+#endif
9a4987
+
9a4987
+#ifndef CLONE_NEWPID
9a4987
+# define CLONE_NEWPID 0x20000000
9a4987
+#endif
9a4987
+
9a4987
+static bool pidns_translation = false;
9a4987
+static bool pidns_unshared = false;
9a4987
+
9a4987
+/* Our PIDs in strace's namespace */
9a4987
+static pid_t pidns_strace_ids[PT_COUNT];
9a4987
+
9a4987
+void
9a4987
+pidns_print_leader(void)
9a4987
+{
9a4987
+	if (pidns_translation)
9a4987
+		printf("%-5d ", pidns_strace_ids[PT_TID]);
9a4987
+}
9a4987
+
9a4987
+const char *
9a4987
+pidns_pid2str(enum pid_type type)
9a4987
+{
9a4987
+	static const char format[] = " /* %d in strace's PID NS */";
9a4987
+	static char buf[PT_COUNT][sizeof(format) + sizeof(int) * 3];
9a4987
+
9a4987
+	if (type < 0 || type >= PT_COUNT)
9a4987
+		return "";
9a4987
+
9a4987
+	if (!pidns_unshared || !pidns_strace_ids[type])
9a4987
+		return "";
9a4987
+
9a4987
+	snprintf(buf[type], sizeof(buf[type]), format, pidns_strace_ids[type]);
9a4987
+	return buf[type];
9a4987
+}
9a4987
+
9a4987
+/**
9a4987
+ * This function is like fork, but does a few more things. It sets up the
9a4987
+ * child's PGID and SID according to the parameters. Also it fills the
9a4987
+ * pidns_strace_ids array in the child's memory with the PIDs of the child in
9a4987
+ * parent's PID namespace. In the parent it waits for the child to terminate
9a4987
+ * (but leaves the zombie to use it later as a process group). If the child
9a4987
+ * terminates with nonzero exit status, the test is failed.
9a4987
+ *
9a4987
+ * @param pgid     The process group the child should be moved to. It's expected
9a4987
+ *                 to be a PID of a zombie process (will be reaped). If
9a4987
+ *                 negative, leave the child in the process group of the parent.
9a4987
+ *                 If 0, move the process to its own process group.
9a4987
+ * @param new_sid  Wheather child should be moved to a new session.
9a4987
+ */
9a4987
+static pid_t
9a4987
+pidns_fork(pid_t pgid, bool new_sid)
9a4987
+{
9a4987
+	int strace_ids_pipe[2];
9a4987
+	if (pipe(strace_ids_pipe) < 0)
9a4987
+		perror_msg_and_fail("pipe");
9a4987
+
9a4987
+	fflush(stdout);
9a4987
+	pid_t pid = fork();
9a4987
+	if (pid < 0)
9a4987
+		perror_msg_and_fail("fork");
9a4987
+
9a4987
+	if (!pid) {
9a4987
+		close(strace_ids_pipe[1]);
9a4987
+
9a4987
+		ssize_t len = read(strace_ids_pipe[0], pidns_strace_ids,
9a4987
+				sizeof(pidns_strace_ids));
9a4987
+		if (len < 0)
9a4987
+			perror_msg_and_fail("read");
9a4987
+		if (len != sizeof(pidns_strace_ids))
9a4987
+			error_msg_and_fail("read returned < sizeof(pidns_strace_ids)");
9a4987
+
9a4987
+		close(strace_ids_pipe[0]);
9a4987
+
9a4987
+		if (pidns_strace_ids[PT_SID])
9a4987
+			setsid();
9a4987
+
9a4987
+		return 0;
9a4987
+	}
9a4987
+
9a4987
+	pidns_strace_ids[PT_TID] = pid;
9a4987
+	pidns_strace_ids[PT_TGID] = pid;
9a4987
+	pidns_strace_ids[PT_PGID] = 0;
9a4987
+	pidns_strace_ids[PT_SID] = 0;
9a4987
+
9a4987
+	if (!pgid)
9a4987
+		pgid = pid;
9a4987
+
9a4987
+	if (pgid > 0) {
9a4987
+		if (setpgid(pid, pgid) < 0)
9a4987
+			perror_msg_and_fail("setpgid");
9a4987
+
9a4987
+		pidns_strace_ids[PT_PGID] = pgid;
9a4987
+	}
9a4987
+
9a4987
+	/* Reap group leader to test PGID decoding */
9a4987
+	if (pgid > 0 && pgid != pid) {
9a4987
+		int ret = waitpid(pgid, NULL, WNOHANG);
9a4987
+		if (ret < 0)
9a4987
+			perror_msg_and_fail("wait");
9a4987
+		if (!ret)
9a4987
+			error_msg_and_fail("could not reap group leader");
9a4987
+	}
9a4987
+
9a4987
+	if (new_sid) {
9a4987
+		pidns_strace_ids[PT_SID] = pid;
9a4987
+		pidns_strace_ids[PT_PGID] = pid;
9a4987
+	}
9a4987
+
9a4987
+	ssize_t len = write(strace_ids_pipe[1], pidns_strace_ids,
9a4987
+	                     sizeof(pidns_strace_ids));
9a4987
+	if (len < 0)
9a4987
+		perror_msg_and_fail("write");
9a4987
+	if (len != sizeof(pidns_strace_ids))
9a4987
+		error_msg_and_fail("write returned < sizeof(pidns_strace_ids)");
9a4987
+
9a4987
+	close(strace_ids_pipe[0]);
9a4987
+	close(strace_ids_pipe[1]);
9a4987
+
9a4987
+	/* WNOWAIT: leave the zombie, to be able to use it as a process group */
9a4987
+	siginfo_t siginfo;
9a4987
+	if (waitid(P_PID, pid, &siginfo, WEXITED | WNOWAIT) < 0)
9a4987
+		perror_msg_and_fail("wait");
9a4987
+	if (siginfo.si_code != CLD_EXITED || siginfo.si_status)
9a4987
+		error_msg_and_fail("child terminated with nonzero exit status");
9a4987
+
9a4987
+	return pid;
9a4987
+}
9a4987
+
9a4987
+static void
9a4987
+create_init_process(void)
9a4987
+{
9a4987
+	int child_pipe[2];
9a4987
+	if (pipe(child_pipe) < 0)
9a4987
+		perror_msg_and_fail("pipe");
9a4987
+
9a4987
+	pid_t pid = fork();
9a4987
+	if (pid < 0)
9a4987
+		perror_msg_and_fail("fork");
9a4987
+
9a4987
+	if (!pid) {
9a4987
+		close(child_pipe[1]);
9a4987
+		if (read(child_pipe[0], &child_pipe[1], sizeof(int)) != 0)
9a4987
+			_exit(1);
9a4987
+		_exit(0);
9a4987
+	}
9a4987
+
9a4987
+	close(child_pipe[0]);
9a4987
+}
9a4987
+
9a4987
+void
9a4987
+check_ns_ioctl(void)
9a4987
+{
9a4987
+	int fd = open("/proc/self/ns/pid", O_RDONLY);
9a4987
+	if (fd < 0) {
9a4987
+		if (errno == ENOENT)
9a4987
+			perror_msg_and_skip("opening /proc/self/ns/pid");
9a4987
+		else
9a4987
+			perror_msg_and_fail("opening /proc/self/ns/pid");
9a4987
+	}
9a4987
+
9a4987
+	int userns_fd = ioctl(fd, NS_GET_USERNS);
9a4987
+	if (userns_fd < 0) {
9a4987
+		if (errno == ENOTTY)
9a4987
+			error_msg_and_skip("NS_* ioctl commands are not "
9a4987
+			                   "supported by the kernel");
9a4987
+		else
9a4987
+			perror_msg_and_fail("ioctl(NS_GET_USERNS)");
9a4987
+	}
9a4987
+
9a4987
+	close(userns_fd);
9a4987
+	close(fd);
9a4987
+}
9a4987
+
9a4987
+void
9a4987
+pidns_test_init(void)
9a4987
+{
9a4987
+	pidns_translation = true;
9a4987
+
9a4987
+	check_ns_ioctl();
9a4987
+
9a4987
+	if (!pidns_fork(-1, false))
9a4987
+		return;
9a4987
+
9a4987
+	/* Unshare user namespace too, so we do not need to be root */
9a4987
+	if (unshare(CLONE_NEWUSER | CLONE_NEWPID) < 0) {
9a4987
+		if (errno == EPERM)
9a4987
+			perror_msg_and_skip("unshare");
9a4987
+
9a4987
+		perror_msg_and_fail("unshare");
9a4987
+	}
9a4987
+
9a4987
+	pidns_unshared = true;
9a4987
+
9a4987
+	create_init_process();
9a4987
+
9a4987
+	if (!pidns_fork(-1, false))
9a4987
+		return;
9a4987
+
9a4987
+	if (!pidns_fork(-1, true))
9a4987
+		return;
9a4987
+
9a4987
+	pid_t pgid;
9a4987
+	if (!(pgid = pidns_fork(0, false)))
9a4987
+		return;
9a4987
+
9a4987
+	if (!pidns_fork(pgid, false))
9a4987
+		return;
9a4987
+
9a4987
+	exit(0);
9a4987
+}
9a4987
Index: strace-5.7/tests-m32/pidns.h
9a4987
===================================================================
9a4987
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
9a4987
+++ strace-5.7/tests-m32/pidns.h	2020-09-09 19:49:54.010575350 +0200
9a4987
@@ -0,0 +1,56 @@
9a4987
+/*
9a4987
+ * Test PID namespace translation
9a4987
+ *
9a4987
+ * Copyright (c) 2020 Ákos Uzonyi <uzonyi.akos@gmail.com>
9a4987
+ * All rights reserved.
9a4987
+ *
9a4987
+ * SPDX-License-Identifier: LGPL-2.1-or-later
9a4987
+ */
9a4987
+#ifndef STRACE_PIDNS_H
9a4987
+#define STRACE_PIDNS_H
9a4987
+
9a4987
+#ifdef PIDNS_TRANSLATION
9a4987
+# define PIDNS_TEST_INIT pidns_test_init()
9a4987
+#else
9a4987
+# define PIDNS_TEST_INIT
9a4987
+#endif
9a4987
+
9a4987
+#include <sys/types.h>
9a4987
+
9a4987
+enum pid_type {
9a4987
+	PT_TID,
9a4987
+	PT_TGID,
9a4987
+	PT_PGID,
9a4987
+	PT_SID,
9a4987
+
9a4987
+	PT_COUNT,
9a4987
+	PT_NONE = -1
9a4987
+};
9a4987
+
9a4987
+/* Prints leader (process tid) if pidns_test_init was called */
9a4987
+void pidns_print_leader(void);
9a4987
+
9a4987
+/*
9a4987
+ * Returns a static buffer containing the translation string of our PID.
9a4987
+ */
9a4987
+const char *pidns_pid2str(enum pid_type type);
9a4987
+
9a4987
+/**
9a4987
+ * Skips the test if NS_* ioctl commands are not supported by the kernel.
9a4987
+ */
9a4987
+void check_ns_ioctl(void);
9a4987
+
9a4987
+/**
9a4987
+ * Init pidns testing.
9a4987
+ *
9a4987
+ * Should be called at the beginning of the test's main function
9a4987
+ *
9a4987
+ * This function calls fork a couple of times, and returns in the child
9a4987
+ * processes. These child processes are in a new PID namespace with different
9a4987
+ * PID configurations (group leader, session leader, ...). If any child
9a4987
+ * terminates with nonzero exit status the test is failed. Otherwise the test is
9a4987
+ * succesful, and the parent process exits with 0.
9a4987
+ */
9a4987
+void pidns_test_init(void);
9a4987
+
9a4987
+#endif
9a4987
\ No newline at end of file
9a4987
Index: strace-5.7/tests-mx32/Makefile.am
9a4987
===================================================================
9a4987
--- strace-5.7.orig/tests-mx32/Makefile.am	2020-09-09 19:32:50.846965498 +0200
9a4987
+++ strace-5.7/tests-mx32/Makefile.am	2020-09-09 19:49:54.010575350 +0200
9a4987
@@ -7,14 +7,14 @@
9a4987
 # SPDX-License-Identifier: GPL-2.0-or-later
9a4987
 
9a4987
 OS = linux
9a4987
-CC = @CC_FOR_MX32@
9a4987
-ARCH = @arch_mx32@
9a4987
+CC = @CC@
9a4987
+ARCH = @arch@
9a4987
 NATIVE_ARCH = @arch_native@
9a4987
 SIZEOF_KERNEL_LONG_T = @SIZEOF_KERNEL_LONG_T@
9a4987
-SIZEOF_LONG = 4
9a4987
-MPERS_NAME = mx32
9a4987
-MPERS_CC_FLAGS = @CFLAGS_FOR_MX32@ @cc_flags_mx32@
9a4987
-ARCH_MFLAGS = -DMPERS_IS_$(MPERS_NAME) $(MPERS_CC_FLAGS)
9a4987
+SIZEOF_LONG = @SIZEOF_LONG@
9a4987
+MPERS_NAME =
9a4987
+MPERS_CC_FLAGS =
9a4987
+ARCH_MFLAGS =
9a4987
 AM_CFLAGS = $(WARN_CFLAGS)
9a4987
 AM_CPPFLAGS = $(ARCH_MFLAGS) \
9a4987
 	      -I$(builddir) \
9a4987
@@ -44,6 +44,8 @@
9a4987
 	libsocketcall.c \
9a4987
 	lock_file.c \
9a4987
 	overflowuid.c \
9a4987
+	pidns.c \
9a4987
+	pidns.h \
9a4987
 	pipe_maxfd.c \
9a4987
 	print_quoted_string.c \
9a4987
 	print_time.c \
9a4987
Index: strace-5.7/tests-mx32/init.sh
9a4987
===================================================================
9a4987
--- strace-5.7.orig/tests-mx32/init.sh	2020-09-09 19:32:50.846965498 +0200
9a4987
+++ strace-5.7/tests-mx32/init.sh	2020-09-09 19:49:54.010575350 +0200
9a4987
@@ -387,6 +387,36 @@
9a4987
 	test_pure_prog_set "$@" < "$srcdir/$NAME.in"
9a4987
 }
9a4987
 
9a4987
+test_pidns_run_strace()
9a4987
+{
9a4987
+	local parent_pid init_pid
9a4987
+
9a4987
+	check_prog tail
9a4987
+	check_prog cut
9a4987
+	check_prog grep
9a4987
+
9a4987
+	run_prog > /dev/null
9a4987
+	run_strace --pidns-translation -f $@ $args > "$EXP"
9a4987
+
9a4987
+	# filter out logs made by the parent or init process of the pidns test
9a4987
+	parent_pid="$(tail -n 2 $LOG | head -n 1 | cut -d' ' -f1)"
9a4987
+	init_pid="$(tail -n 1 $LOG | cut -d' ' -f1)"
9a4987
+	grep -E -v "^($parent_pid|$init_pid) " "$LOG" > "$OUT"
9a4987
+	match_diff "$OUT" "$EXP"
9a4987
+}
9a4987
+
9a4987
+test_pidns()
9a4987
+{
9a4987
+	check_prog unshare
9a4987
+	unshare -Urpf true || framework_skip_ "unshare -Urpf true failed"
9a4987
+
9a4987
+	test_pidns_run_strace "$@"
9a4987
+
9a4987
+	# test PID translation when /proc is mounted from an other namespace
9a4987
+	STRACE="unshare -Urpf $STRACE"
9a4987
+	test_pidns_run_strace "$@"
9a4987
+}
9a4987
+
9a4987
 check_prog cat
9a4987
 check_prog rm
9a4987
 
9a4987
Index: strace-5.7/tests-mx32/pidns.c
9a4987
===================================================================
9a4987
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
9a4987
+++ strace-5.7/tests-mx32/pidns.c	2020-09-09 19:49:54.010575350 +0200
9a4987
@@ -0,0 +1,237 @@
9a4987
+/*
9a4987
+ * Testing framework for PID namespace translation
9a4987
+ *
9a4987
+ * Copyright (c) 2020 Ákos Uzonyi <uzonyi.akos@gmail.com>
9a4987
+ * All rights reserved.
9a4987
+ *
9a4987
+ * SPDX-License-Identifier: LGPL-2.1-or-later
9a4987
+ */
9a4987
+#include "tests.h"
9a4987
+#include "pidns.h"
9a4987
+#include "nsfs.h"
9a4987
+
9a4987
+#include <errno.h>
9a4987
+#include <stdio.h>
9a4987
+#include <string.h>
9a4987
+#include <sys/types.h>
9a4987
+#include <signal.h>
9a4987
+#include <stdlib.h>
9a4987
+#include <sched.h>
9a4987
+#include <unistd.h>
9a4987
+#include <sys/wait.h>
9a4987
+#include <linux/sched.h>
9a4987
+#include <fcntl.h>
9a4987
+#include <sys/ioctl.h>
9a4987
+
9a4987
+#ifndef CLONE_NEWUSER
9a4987
+# define CLONE_NEWUSER 0x10000000
9a4987
+#endif
9a4987
+
9a4987
+#ifndef CLONE_NEWPID
9a4987
+# define CLONE_NEWPID 0x20000000
9a4987
+#endif
9a4987
+
9a4987
+static bool pidns_translation = false;
9a4987
+static bool pidns_unshared = false;
9a4987
+
9a4987
+/* Our PIDs in strace's namespace */
9a4987
+static pid_t pidns_strace_ids[PT_COUNT];
9a4987
+
9a4987
+void
9a4987
+pidns_print_leader(void)
9a4987
+{
9a4987
+	if (pidns_translation)
9a4987
+		printf("%-5d ", pidns_strace_ids[PT_TID]);
9a4987
+}
9a4987
+
9a4987
+const char *
9a4987
+pidns_pid2str(enum pid_type type)
9a4987
+{
9a4987
+	static const char format[] = " /* %d in strace's PID NS */";
9a4987
+	static char buf[PT_COUNT][sizeof(format) + sizeof(int) * 3];
9a4987
+
9a4987
+	if (type < 0 || type >= PT_COUNT)
9a4987
+		return "";
9a4987
+
9a4987
+	if (!pidns_unshared || !pidns_strace_ids[type])
9a4987
+		return "";
9a4987
+
9a4987
+	snprintf(buf[type], sizeof(buf[type]), format, pidns_strace_ids[type]);
9a4987
+	return buf[type];
9a4987
+}
9a4987
+
9a4987
+/**
9a4987
+ * This function is like fork, but does a few more things. It sets up the
9a4987
+ * child's PGID and SID according to the parameters. Also it fills the
9a4987
+ * pidns_strace_ids array in the child's memory with the PIDs of the child in
9a4987
+ * parent's PID namespace. In the parent it waits for the child to terminate
9a4987
+ * (but leaves the zombie to use it later as a process group). If the child
9a4987
+ * terminates with nonzero exit status, the test is failed.
9a4987
+ *
9a4987
+ * @param pgid     The process group the child should be moved to. It's expected
9a4987
+ *                 to be a PID of a zombie process (will be reaped). If
9a4987
+ *                 negative, leave the child in the process group of the parent.
9a4987
+ *                 If 0, move the process to its own process group.
9a4987
+ * @param new_sid  Wheather child should be moved to a new session.
9a4987
+ */
9a4987
+static pid_t
9a4987
+pidns_fork(pid_t pgid, bool new_sid)
9a4987
+{
9a4987
+	int strace_ids_pipe[2];
9a4987
+	if (pipe(strace_ids_pipe) < 0)
9a4987
+		perror_msg_and_fail("pipe");
9a4987
+
9a4987
+	fflush(stdout);
9a4987
+	pid_t pid = fork();
9a4987
+	if (pid < 0)
9a4987
+		perror_msg_and_fail("fork");
9a4987
+
9a4987
+	if (!pid) {
9a4987
+		close(strace_ids_pipe[1]);
9a4987
+
9a4987
+		ssize_t len = read(strace_ids_pipe[0], pidns_strace_ids,
9a4987
+				sizeof(pidns_strace_ids));
9a4987
+		if (len < 0)
9a4987
+			perror_msg_and_fail("read");
9a4987
+		if (len != sizeof(pidns_strace_ids))
9a4987
+			error_msg_and_fail("read returned < sizeof(pidns_strace_ids)");
9a4987
+
9a4987
+		close(strace_ids_pipe[0]);
9a4987
+
9a4987
+		if (pidns_strace_ids[PT_SID])
9a4987
+			setsid();
9a4987
+
9a4987
+		return 0;
9a4987
+	}
9a4987
+
9a4987
+	pidns_strace_ids[PT_TID] = pid;
9a4987
+	pidns_strace_ids[PT_TGID] = pid;
9a4987
+	pidns_strace_ids[PT_PGID] = 0;
9a4987
+	pidns_strace_ids[PT_SID] = 0;
9a4987
+
9a4987
+	if (!pgid)
9a4987
+		pgid = pid;
9a4987
+
9a4987
+	if (pgid > 0) {
9a4987
+		if (setpgid(pid, pgid) < 0)
9a4987
+			perror_msg_and_fail("setpgid");
9a4987
+
9a4987
+		pidns_strace_ids[PT_PGID] = pgid;
9a4987
+	}
9a4987
+
9a4987
+	/* Reap group leader to test PGID decoding */
9a4987
+	if (pgid > 0 && pgid != pid) {
9a4987
+		int ret = waitpid(pgid, NULL, WNOHANG);
9a4987
+		if (ret < 0)
9a4987
+			perror_msg_and_fail("wait");
9a4987
+		if (!ret)
9a4987
+			error_msg_and_fail("could not reap group leader");
9a4987
+	}
9a4987
+
9a4987
+	if (new_sid) {
9a4987
+		pidns_strace_ids[PT_SID] = pid;
9a4987
+		pidns_strace_ids[PT_PGID] = pid;
9a4987
+	}
9a4987
+
9a4987
+	ssize_t len = write(strace_ids_pipe[1], pidns_strace_ids,
9a4987
+	                     sizeof(pidns_strace_ids));
9a4987
+	if (len < 0)
9a4987
+		perror_msg_and_fail("write");
9a4987
+	if (len != sizeof(pidns_strace_ids))
9a4987
+		error_msg_and_fail("write returned < sizeof(pidns_strace_ids)");
9a4987
+
9a4987
+	close(strace_ids_pipe[0]);
9a4987
+	close(strace_ids_pipe[1]);
9a4987
+
9a4987
+	/* WNOWAIT: leave the zombie, to be able to use it as a process group */
9a4987
+	siginfo_t siginfo;
9a4987
+	if (waitid(P_PID, pid, &siginfo, WEXITED | WNOWAIT) < 0)
9a4987
+		perror_msg_and_fail("wait");
9a4987
+	if (siginfo.si_code != CLD_EXITED || siginfo.si_status)
9a4987
+		error_msg_and_fail("child terminated with nonzero exit status");
9a4987
+
9a4987
+	return pid;
9a4987
+}
9a4987
+
9a4987
+static void
9a4987
+create_init_process(void)
9a4987
+{
9a4987
+	int child_pipe[2];
9a4987
+	if (pipe(child_pipe) < 0)
9a4987
+		perror_msg_and_fail("pipe");
9a4987
+
9a4987
+	pid_t pid = fork();
9a4987
+	if (pid < 0)
9a4987
+		perror_msg_and_fail("fork");
9a4987
+
9a4987
+	if (!pid) {
9a4987
+		close(child_pipe[1]);
9a4987
+		if (read(child_pipe[0], &child_pipe[1], sizeof(int)) != 0)
9a4987
+			_exit(1);
9a4987
+		_exit(0);
9a4987
+	}
9a4987
+
9a4987
+	close(child_pipe[0]);
9a4987
+}
9a4987
+
9a4987
+void
9a4987
+check_ns_ioctl(void)
9a4987
+{
9a4987
+	int fd = open("/proc/self/ns/pid", O_RDONLY);
9a4987
+	if (fd < 0) {
9a4987
+		if (errno == ENOENT)
9a4987
+			perror_msg_and_skip("opening /proc/self/ns/pid");
9a4987
+		else
9a4987
+			perror_msg_and_fail("opening /proc/self/ns/pid");
9a4987
+	}
9a4987
+
9a4987
+	int userns_fd = ioctl(fd, NS_GET_USERNS);
9a4987
+	if (userns_fd < 0) {
9a4987
+		if (errno == ENOTTY)
9a4987
+			error_msg_and_skip("NS_* ioctl commands are not "
9a4987
+			                   "supported by the kernel");
9a4987
+		else
9a4987
+			perror_msg_and_fail("ioctl(NS_GET_USERNS)");
9a4987
+	}
9a4987
+
9a4987
+	close(userns_fd);
9a4987
+	close(fd);
9a4987
+}
9a4987
+
9a4987
+void
9a4987
+pidns_test_init(void)
9a4987
+{
9a4987
+	pidns_translation = true;
9a4987
+
9a4987
+	check_ns_ioctl();
9a4987
+
9a4987
+	if (!pidns_fork(-1, false))
9a4987
+		return;
9a4987
+
9a4987
+	/* Unshare user namespace too, so we do not need to be root */
9a4987
+	if (unshare(CLONE_NEWUSER | CLONE_NEWPID) < 0) {
9a4987
+		if (errno == EPERM)
9a4987
+			perror_msg_and_skip("unshare");
9a4987
+
9a4987
+		perror_msg_and_fail("unshare");
9a4987
+	}
9a4987
+
9a4987
+	pidns_unshared = true;
9a4987
+
9a4987
+	create_init_process();
9a4987
+
9a4987
+	if (!pidns_fork(-1, false))
9a4987
+		return;
9a4987
+
9a4987
+	if (!pidns_fork(-1, true))
9a4987
+		return;
9a4987
+
9a4987
+	pid_t pgid;
9a4987
+	if (!(pgid = pidns_fork(0, false)))
9a4987
+		return;
9a4987
+
9a4987
+	if (!pidns_fork(pgid, false))
9a4987
+		return;
9a4987
+
9a4987
+	exit(0);
9a4987
+}
9a4987
Index: strace-5.7/tests-mx32/pidns.h
9a4987
===================================================================
9a4987
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
9a4987
+++ strace-5.7/tests-mx32/pidns.h	2020-09-09 19:49:54.010575350 +0200
9a4987
@@ -0,0 +1,56 @@
9a4987
+/*
9a4987
+ * Test PID namespace translation
9a4987
+ *
9a4987
+ * Copyright (c) 2020 Ákos Uzonyi <uzonyi.akos@gmail.com>
9a4987
+ * All rights reserved.
9a4987
+ *
9a4987
+ * SPDX-License-Identifier: LGPL-2.1-or-later
9a4987
+ */
9a4987
+#ifndef STRACE_PIDNS_H
9a4987
+#define STRACE_PIDNS_H
9a4987
+
9a4987
+#ifdef PIDNS_TRANSLATION
9a4987
+# define PIDNS_TEST_INIT pidns_test_init()
9a4987
+#else
9a4987
+# define PIDNS_TEST_INIT
9a4987
+#endif
9a4987
+
9a4987
+#include <sys/types.h>
9a4987
+
9a4987
+enum pid_type {
9a4987
+	PT_TID,
9a4987
+	PT_TGID,
9a4987
+	PT_PGID,
9a4987
+	PT_SID,
9a4987
+
9a4987
+	PT_COUNT,
9a4987
+	PT_NONE = -1
9a4987
+};
9a4987
+
9a4987
+/* Prints leader (process tid) if pidns_test_init was called */
9a4987
+void pidns_print_leader(void);
9a4987
+
9a4987
+/*
9a4987
+ * Returns a static buffer containing the translation string of our PID.
9a4987
+ */
9a4987
+const char *pidns_pid2str(enum pid_type type);
9a4987
+
9a4987
+/**
9a4987
+ * Skips the test if NS_* ioctl commands are not supported by the kernel.
9a4987
+ */
9a4987
+void check_ns_ioctl(void);
9a4987
+
9a4987
+/**
9a4987
+ * Init pidns testing.
9a4987
+ *
9a4987
+ * Should be called at the beginning of the test's main function
9a4987
+ *
9a4987
+ * This function calls fork a couple of times, and returns in the child
9a4987
+ * processes. These child processes are in a new PID namespace with different
9a4987
+ * PID configurations (group leader, session leader, ...). If any child
9a4987
+ * terminates with nonzero exit status the test is failed. Otherwise the test is
9a4987
+ * succesful, and the parent process exits with 0.
9a4987
+ */
9a4987
+void pidns_test_init(void);
9a4987
+
9a4987
+#endif
9a4987
\ No newline at end of file
9a4987
Index: strace-5.7/tests/Makefile.in
9a4987
===================================================================
9a4987
--- strace-5.7.orig/tests/Makefile.in	2020-09-09 19:46:24.904450714 +0200
9a4987
+++ strace-5.7/tests/Makefile.in	2020-09-09 19:51:23.607628754 +0200
9a4987
@@ -531,7 +531,7 @@
9a4987
 	libtests_a-libmmsg.$(OBJEXT) \
9a4987
 	libtests_a-libsocketcall.$(OBJEXT) \
9a4987
 	libtests_a-lock_file.$(OBJEXT) \
9a4987
-	libtests_a-overflowuid.$(OBJEXT) \
9a4987
+	libtests_a-overflowuid.$(OBJEXT) libtests_a-pidns.$(OBJEXT) \
9a4987
 	libtests_a-pipe_maxfd.$(OBJEXT) \
9a4987
 	libtests_a-print_quoted_string.$(OBJEXT) \
9a4987
 	libtests_a-print_time.$(OBJEXT) \
9a4987
@@ -3899,6 +3899,7 @@
9a4987
 	./$(DEPDIR)/libtests_a-libsocketcall.Po \
9a4987
 	./$(DEPDIR)/libtests_a-lock_file.Po \
9a4987
 	./$(DEPDIR)/libtests_a-overflowuid.Po \
9a4987
+	./$(DEPDIR)/libtests_a-pidns.Po \
9a4987
 	./$(DEPDIR)/libtests_a-pipe_maxfd.Po \
9a4987
 	./$(DEPDIR)/libtests_a-print_quoted_string.Po \
9a4987
 	./$(DEPDIR)/libtests_a-print_time.Po \
9a4987
@@ -5122,6 +5123,8 @@
9a4987
 	libsocketcall.c \
9a4987
 	lock_file.c \
9a4987
 	overflowuid.c \
9a4987
+	pidns.c \
9a4987
+	pidns.h \
9a4987
 	pipe_maxfd.c \
9a4987
 	print_quoted_string.c \
9a4987
 	print_time.c \
9a4987
@@ -9926,6 +9929,7 @@
9a4987
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtests_a-libsocketcall.Po@am__quote@ # am--include-marker
9a4987
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtests_a-lock_file.Po@am__quote@ # am--include-marker
9a4987
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtests_a-overflowuid.Po@am__quote@ # am--include-marker
9a4987
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtests_a-pidns.Po@am__quote@ # am--include-marker
9a4987
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtests_a-pipe_maxfd.Po@am__quote@ # am--include-marker
9a4987
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtests_a-print_quoted_string.Po@am__quote@ # am--include-marker
9a4987
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtests_a-print_time.Po@am__quote@ # am--include-marker
9a4987
@@ -10651,6 +10655,20 @@
9a4987
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9a4987
 @am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libtests_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libtests_a-overflowuid.obj `if test -f 'overflowuid.c'; then $(CYGPATH_W) 'overflowuid.c'; else $(CYGPATH_W) '$(srcdir)/overflowuid.c'; fi`
9a4987
 
9a4987
+libtests_a-pidns.o: pidns.c
9a4987
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libtests_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libtests_a-pidns.o -MD -MP -MF $(DEPDIR)/libtests_a-pidns.Tpo -c -o libtests_a-pidns.o `test -f 'pidns.c' || echo '$(srcdir)/'`pidns.c
9a4987
+@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtests_a-pidns.Tpo $(DEPDIR)/libtests_a-pidns.Po
9a4987
+@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='pidns.c' object='libtests_a-pidns.o' libtool=no @AMDEPBACKSLASH@
9a4987
+@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9a4987
+@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libtests_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libtests_a-pidns.o `test -f 'pidns.c' || echo '$(srcdir)/'`pidns.c
9a4987
+
9a4987
+libtests_a-pidns.obj: pidns.c
9a4987
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libtests_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libtests_a-pidns.obj -MD -MP -MF $(DEPDIR)/libtests_a-pidns.Tpo -c -o libtests_a-pidns.obj `if test -f 'pidns.c'; then $(CYGPATH_W) 'pidns.c'; else $(CYGPATH_W) '$(srcdir)/pidns.c'; fi`
9a4987
+@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtests_a-pidns.Tpo $(DEPDIR)/libtests_a-pidns.Po
9a4987
+@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='pidns.c' object='libtests_a-pidns.obj' libtool=no @AMDEPBACKSLASH@
9a4987
+@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9a4987
+@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libtests_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libtests_a-pidns.obj `if test -f 'pidns.c'; then $(CYGPATH_W) 'pidns.c'; else $(CYGPATH_W) '$(srcdir)/pidns.c'; fi`
9a4987
+
9a4987
 libtests_a-pipe_maxfd.o: pipe_maxfd.c
9a4987
 @am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libtests_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libtests_a-pipe_maxfd.o -MD -MP -MF $(DEPDIR)/libtests_a-pipe_maxfd.Tpo -c -o libtests_a-pipe_maxfd.o `test -f 'pipe_maxfd.c' || echo '$(srcdir)/'`pipe_maxfd.c
9a4987
 @am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtests_a-pipe_maxfd.Tpo $(DEPDIR)/libtests_a-pipe_maxfd.Po
9a4987
@@ -11748,6 +11766,7 @@
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-libsocketcall.Po
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-lock_file.Po
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-overflowuid.Po
9a4987
+	-rm -f ./$(DEPDIR)/libtests_a-pidns.Po
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-pipe_maxfd.Po
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-print_quoted_string.Po
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-print_time.Po
9a4987
@@ -12605,6 +12624,7 @@
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-libsocketcall.Po
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-lock_file.Po
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-overflowuid.Po
9a4987
+	-rm -f ./$(DEPDIR)/libtests_a-pidns.Po
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-pipe_maxfd.Po
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-print_quoted_string.Po
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-print_time.Po
9a4987
Index: strace-5.7/tests-m32/Makefile.in
9a4987
===================================================================
9a4987
--- strace-5.7.orig/tests-m32/Makefile.in	2020-09-09 19:49:34.530563739 +0200
9a4987
+++ strace-5.7/tests-m32/Makefile.in	2020-09-09 19:52:01.333651241 +0200
9a4987
@@ -531,7 +531,7 @@
9a4987
 	libtests_a-libmmsg.$(OBJEXT) \
9a4987
 	libtests_a-libsocketcall.$(OBJEXT) \
9a4987
 	libtests_a-lock_file.$(OBJEXT) \
9a4987
-	libtests_a-overflowuid.$(OBJEXT) \
9a4987
+	libtests_a-overflowuid.$(OBJEXT) libtests_a-pidns.$(OBJEXT) \
9a4987
 	libtests_a-pipe_maxfd.$(OBJEXT) \
9a4987
 	libtests_a-print_quoted_string.$(OBJEXT) \
9a4987
 	libtests_a-print_time.$(OBJEXT) \
9a4987
@@ -3899,6 +3899,7 @@
9a4987
 	./$(DEPDIR)/libtests_a-libsocketcall.Po \
9a4987
 	./$(DEPDIR)/libtests_a-lock_file.Po \
9a4987
 	./$(DEPDIR)/libtests_a-overflowuid.Po \
9a4987
+	./$(DEPDIR)/libtests_a-pidns.Po \
9a4987
 	./$(DEPDIR)/libtests_a-pipe_maxfd.Po \
9a4987
 	./$(DEPDIR)/libtests_a-print_quoted_string.Po \
9a4987
 	./$(DEPDIR)/libtests_a-print_time.Po \
9a4987
@@ -5122,6 +5123,8 @@
9a4987
 	libsocketcall.c \
9a4987
 	lock_file.c \
9a4987
 	overflowuid.c \
9a4987
+	pidns.c \
9a4987
+	pidns.h \
9a4987
 	pipe_maxfd.c \
9a4987
 	print_quoted_string.c \
9a4987
 	print_time.c \
9a4987
@@ -9926,6 +9929,7 @@
9a4987
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtests_a-libsocketcall.Po@am__quote@ # am--include-marker
9a4987
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtests_a-lock_file.Po@am__quote@ # am--include-marker
9a4987
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtests_a-overflowuid.Po@am__quote@ # am--include-marker
9a4987
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtests_a-pidns.Po@am__quote@ # am--include-marker
9a4987
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtests_a-pipe_maxfd.Po@am__quote@ # am--include-marker
9a4987
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtests_a-print_quoted_string.Po@am__quote@ # am--include-marker
9a4987
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtests_a-print_time.Po@am__quote@ # am--include-marker
9a4987
@@ -10651,6 +10655,20 @@
9a4987
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9a4987
 @am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libtests_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libtests_a-overflowuid.obj `if test -f 'overflowuid.c'; then $(CYGPATH_W) 'overflowuid.c'; else $(CYGPATH_W) '$(srcdir)/overflowuid.c'; fi`
9a4987
 
9a4987
+libtests_a-pidns.o: pidns.c
9a4987
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libtests_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libtests_a-pidns.o -MD -MP -MF $(DEPDIR)/libtests_a-pidns.Tpo -c -o libtests_a-pidns.o `test -f 'pidns.c' || echo '$(srcdir)/'`pidns.c
9a4987
+@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtests_a-pidns.Tpo $(DEPDIR)/libtests_a-pidns.Po
9a4987
+@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='pidns.c' object='libtests_a-pidns.o' libtool=no @AMDEPBACKSLASH@
9a4987
+@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9a4987
+@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libtests_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libtests_a-pidns.o `test -f 'pidns.c' || echo '$(srcdir)/'`pidns.c
9a4987
+
9a4987
+libtests_a-pidns.obj: pidns.c
9a4987
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libtests_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libtests_a-pidns.obj -MD -MP -MF $(DEPDIR)/libtests_a-pidns.Tpo -c -o libtests_a-pidns.obj `if test -f 'pidns.c'; then $(CYGPATH_W) 'pidns.c'; else $(CYGPATH_W) '$(srcdir)/pidns.c'; fi`
9a4987
+@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtests_a-pidns.Tpo $(DEPDIR)/libtests_a-pidns.Po
9a4987
+@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='pidns.c' object='libtests_a-pidns.obj' libtool=no @AMDEPBACKSLASH@
9a4987
+@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9a4987
+@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libtests_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libtests_a-pidns.obj `if test -f 'pidns.c'; then $(CYGPATH_W) 'pidns.c'; else $(CYGPATH_W) '$(srcdir)/pidns.c'; fi`
9a4987
+
9a4987
 libtests_a-pipe_maxfd.o: pipe_maxfd.c
9a4987
 @am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libtests_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libtests_a-pipe_maxfd.o -MD -MP -MF $(DEPDIR)/libtests_a-pipe_maxfd.Tpo -c -o libtests_a-pipe_maxfd.o `test -f 'pipe_maxfd.c' || echo '$(srcdir)/'`pipe_maxfd.c
9a4987
 @am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtests_a-pipe_maxfd.Tpo $(DEPDIR)/libtests_a-pipe_maxfd.Po
9a4987
@@ -11748,6 +11766,7 @@
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-libsocketcall.Po
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-lock_file.Po
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-overflowuid.Po
9a4987
+	-rm -f ./$(DEPDIR)/libtests_a-pidns.Po
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-pipe_maxfd.Po
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-print_quoted_string.Po
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-print_time.Po
9a4987
@@ -12605,6 +12624,7 @@
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-libsocketcall.Po
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-lock_file.Po
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-overflowuid.Po
9a4987
+	-rm -f ./$(DEPDIR)/libtests_a-pidns.Po
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-pipe_maxfd.Po
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-print_quoted_string.Po
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-print_time.Po
9a4987
Index: strace-5.7/tests-mx32/Makefile.in
9a4987
===================================================================
9a4987
--- strace-5.7.orig/tests-mx32/Makefile.in	2020-09-09 19:49:39.557566736 +0200
9a4987
+++ strace-5.7/tests-mx32/Makefile.in	2020-09-09 19:52:26.062665980 +0200
9a4987
@@ -531,7 +531,7 @@
9a4987
 	libtests_a-libmmsg.$(OBJEXT) \
9a4987
 	libtests_a-libsocketcall.$(OBJEXT) \
9a4987
 	libtests_a-lock_file.$(OBJEXT) \
9a4987
-	libtests_a-overflowuid.$(OBJEXT) \
9a4987
+	libtests_a-overflowuid.$(OBJEXT) libtests_a-pidns.$(OBJEXT) \
9a4987
 	libtests_a-pipe_maxfd.$(OBJEXT) \
9a4987
 	libtests_a-print_quoted_string.$(OBJEXT) \
9a4987
 	libtests_a-print_time.$(OBJEXT) \
9a4987
@@ -3899,6 +3899,7 @@
9a4987
 	./$(DEPDIR)/libtests_a-libsocketcall.Po \
9a4987
 	./$(DEPDIR)/libtests_a-lock_file.Po \
9a4987
 	./$(DEPDIR)/libtests_a-overflowuid.Po \
9a4987
+	./$(DEPDIR)/libtests_a-pidns.Po \
9a4987
 	./$(DEPDIR)/libtests_a-pipe_maxfd.Po \
9a4987
 	./$(DEPDIR)/libtests_a-print_quoted_string.Po \
9a4987
 	./$(DEPDIR)/libtests_a-print_time.Po \
9a4987
@@ -5122,6 +5123,8 @@
9a4987
 	libsocketcall.c \
9a4987
 	lock_file.c \
9a4987
 	overflowuid.c \
9a4987
+	pidns.c \
9a4987
+	pidns.h \
9a4987
 	pipe_maxfd.c \
9a4987
 	print_quoted_string.c \
9a4987
 	print_time.c \
9a4987
@@ -9926,6 +9929,7 @@
9a4987
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtests_a-libsocketcall.Po@am__quote@ # am--include-marker
9a4987
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtests_a-lock_file.Po@am__quote@ # am--include-marker
9a4987
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtests_a-overflowuid.Po@am__quote@ # am--include-marker
9a4987
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtests_a-pidns.Po@am__quote@ # am--include-marker
9a4987
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtests_a-pipe_maxfd.Po@am__quote@ # am--include-marker
9a4987
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtests_a-print_quoted_string.Po@am__quote@ # am--include-marker
9a4987
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtests_a-print_time.Po@am__quote@ # am--include-marker
9a4987
@@ -10651,6 +10655,20 @@
9a4987
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9a4987
 @am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libtests_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libtests_a-overflowuid.obj `if test -f 'overflowuid.c'; then $(CYGPATH_W) 'overflowuid.c'; else $(CYGPATH_W) '$(srcdir)/overflowuid.c'; fi`
9a4987
 
9a4987
+libtests_a-pidns.o: pidns.c
9a4987
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libtests_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libtests_a-pidns.o -MD -MP -MF $(DEPDIR)/libtests_a-pidns.Tpo -c -o libtests_a-pidns.o `test -f 'pidns.c' || echo '$(srcdir)/'`pidns.c
9a4987
+@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtests_a-pidns.Tpo $(DEPDIR)/libtests_a-pidns.Po
9a4987
+@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='pidns.c' object='libtests_a-pidns.o' libtool=no @AMDEPBACKSLASH@
9a4987
+@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9a4987
+@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libtests_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libtests_a-pidns.o `test -f 'pidns.c' || echo '$(srcdir)/'`pidns.c
9a4987
+
9a4987
+libtests_a-pidns.obj: pidns.c
9a4987
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libtests_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libtests_a-pidns.obj -MD -MP -MF $(DEPDIR)/libtests_a-pidns.Tpo -c -o libtests_a-pidns.obj `if test -f 'pidns.c'; then $(CYGPATH_W) 'pidns.c'; else $(CYGPATH_W) '$(srcdir)/pidns.c'; fi`
9a4987
+@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtests_a-pidns.Tpo $(DEPDIR)/libtests_a-pidns.Po
9a4987
+@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='pidns.c' object='libtests_a-pidns.obj' libtool=no @AMDEPBACKSLASH@
9a4987
+@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9a4987
+@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libtests_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libtests_a-pidns.obj `if test -f 'pidns.c'; then $(CYGPATH_W) 'pidns.c'; else $(CYGPATH_W) '$(srcdir)/pidns.c'; fi`
9a4987
+
9a4987
 libtests_a-pipe_maxfd.o: pipe_maxfd.c
9a4987
 @am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libtests_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libtests_a-pipe_maxfd.o -MD -MP -MF $(DEPDIR)/libtests_a-pipe_maxfd.Tpo -c -o libtests_a-pipe_maxfd.o `test -f 'pipe_maxfd.c' || echo '$(srcdir)/'`pipe_maxfd.c
9a4987
 @am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtests_a-pipe_maxfd.Tpo $(DEPDIR)/libtests_a-pipe_maxfd.Po
9a4987
@@ -11748,6 +11766,7 @@
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-libsocketcall.Po
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-lock_file.Po
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-overflowuid.Po
9a4987
+	-rm -f ./$(DEPDIR)/libtests_a-pidns.Po
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-pipe_maxfd.Po
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-print_quoted_string.Po
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-print_time.Po
9a4987
@@ -12605,6 +12624,7 @@
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-libsocketcall.Po
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-lock_file.Po
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-overflowuid.Po
9a4987
+	-rm -f ./$(DEPDIR)/libtests_a-pidns.Po
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-pipe_maxfd.Po
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-print_quoted_string.Po
9a4987
 	-rm -f ./$(DEPDIR)/libtests_a-print_time.Po