aboutsummaryrefslogtreecommitdiff
path: root/testcases/kernel/containers/pidns/pidns17.c
blob: 4633ec14b4651f30b6ce2258dde4441502e84827 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * Copyright (c) International Business Machines Corp., 2007
 *               13/11/08  Gowrishankar M <gowrishankar.m@in.ibm.com>
 * Copyright (C) 2022 SUSE LLC Andrea Cervesato <andrea.cervesato@suse.com>
 */

/*\
 * [Description]
 *
 * Clone a process with CLONE_NEWPID flag and spawn many children inside the
 * container. Then terminate all children and check if they were signaled.
 */

#include <sys/wait.h>
#include "tst_test.h"
#include "lapi/sched.h"

#define CHILDREN_NUM 10

static void child_func(void)
{
	int children[CHILDREN_NUM], status;
	unsigned int i;
	pid_t cpid, ppid;

	cpid = tst_getpid();
	ppid = getppid();

	TST_EXP_EQ_LI(cpid, 1);
	TST_EXP_EQ_LI(ppid, 0);

	tst_res(TINFO, "Spawning %d children", CHILDREN_NUM);

	for (i = 0; i < CHILDREN_NUM; i++) {
		children[i] = SAFE_FORK();
		if (!children[i]) {
			pause();
			return;
		}
	}

	tst_res(TINFO, "Terminate children with SIGUSR1");

	SAFE_KILL(-1, SIGUSR1);

	for (i = 0; i < CHILDREN_NUM; i++) {
		SAFE_WAITPID(children[i], &status, 0);

		TST_EXP_EQ_LI(WIFSIGNALED(status), 1);
		TST_EXP_EQ_LI(WTERMSIG(status), SIGUSR1);
	}
}

static void run(void)
{
	const struct tst_clone_args args = {
		.flags = CLONE_NEWPID,
		.exit_signal = SIGCHLD,
	};

	if (!SAFE_CLONE(&args)) {
		child_func();
		return;
	}
}

static struct tst_test test = {
	.test_all = run,
	.needs_root = 1,
	.forks_child = 1,
};