aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/pidfd/pidfd_wait.c
blob: 7079f8eef792ec2c9c03e9f93491af6c17f4974f (plain) (blame)
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
/* SPDX-License-Identifier: GPL-2.0 */

#define _GNU_SOURCE
#include <errno.h>
#include <linux/sched.h>
#include <linux/types.h>
#include <signal.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <sched.h>
#include <string.h>
#include <sys/resource.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>

#include "pidfd.h"
#include "../kselftest.h"

#define ptr_to_u64(ptr) ((__u64)((uintptr_t)(ptr)))

static pid_t sys_clone3(struct clone_args *args)
{
	return syscall(__NR_clone3, args, sizeof(struct clone_args));
}

static int sys_waitid(int which, pid_t pid, siginfo_t *info, int options,
		      struct rusage *ru)
{
	return syscall(__NR_waitid, which, pid, info, options, ru);
}

static int test_pidfd_wait_simple(void)
{
	const char *test_name = "pidfd wait simple";
	int pidfd = -1, status = 0;
	pid_t parent_tid = -1;
	struct clone_args args = {
		.parent_tid = ptr_to_u64(&parent_tid),
		.pidfd = ptr_to_u64(&pidfd),
		.flags = CLONE_PIDFD | CLONE_PARENT_SETTID,
		.exit_signal = SIGCHLD,
	};
	int ret;
	pid_t pid;
	siginfo_t info = {
		.si_signo = 0,
	};

	pidfd = open("/proc/self", O_DIRECTORY | O_RDONLY | O_CLOEXEC);
	if (pidfd < 0)
		ksft_exit_fail_msg("%s test: failed to open /proc/self %s\n",
				   test_name, strerror(errno));

	pid = sys_waitid(P_PIDFD, pidfd, &info, WEXITED, NULL);
	if (pid == 0)
		ksft_exit_fail_msg(
			"%s test: succeeded to wait on invalid pidfd %s\n",
			test_name, strerror(errno));
	close(pidfd);
	pidfd = -1;

	pidfd = open("/dev/null", O_RDONLY | O_CLOEXEC);
	if (pidfd == 0)
		ksft_exit_fail_msg("%s test: failed to open /dev/null %s\n",
				   test_name, strerror(errno));

	pid = sys_waitid(P_PIDFD, pidfd, &info, WEXITED, NULL);
	if (pid == 0)
		ksft_exit_fail_msg(
			"%s test: succeeded to wait on invalid pidfd %s\n",
			test_name, strerror(errno));
	close(pidfd);
	pidfd = -1;

	pid = sys_clone3(&args);
	if (pid < 0)
		ksft_exit_fail_msg("%s test: failed to create new process %s\n",
				   test_name, strerror(errno));

	if (pid == 0)
		exit(EXIT_SUCCESS);

	pid = sys_waitid(P_PIDFD, pidfd, &info, WEXITED, NULL);
	if (pid < 0)
		ksft_exit_fail_msg(
			"%s test: failed to wait on process with pid %d and pidfd %d: %s\n",
			test_name, parent_tid, pidfd, strerror(errno));

	if (!WIFEXITED(info.si_status) || WEXITSTATUS(info.si_status))
		ksft_exit_fail_msg(
			"%s test: unexpected status received after waiting on process with pid %d and pidfd %d: %s\n",
			test_name, parent_tid, pidfd, strerror(errno));
	close(pidfd);

	if (info.si_signo != SIGCHLD)
		ksft_exit_fail_msg(
			"%s test: unexpected si_signo value %d received after waiting on process with pid %d and pidfd %d: %s\n",
			test_name, info.si_signo, parent_tid, pidfd,
			strerror(errno));

	if (info.si_code != CLD_EXITED)
		ksft_exit_fail_msg(
			"%s test: unexpected si_code value %d received after waiting on process with pid %d and pidfd %d: %s\n",
			test_name, info.si_code, parent_tid, pidfd,
			strerror(errno));

	if (info.si_pid != parent_tid)
		ksft_exit_fail_msg(
			"%s test: unexpected si_pid value %d received after waiting on process with pid %d and pidfd %d: %s\n",
			test_name, info.si_pid, parent_tid, pidfd,
			strerror(errno));

	ksft_test_result_pass("%s test: Passed\n", test_name);
	return 0;
}

static int test_pidfd_wait_states(void)
{
	const char *test_name = "pidfd wait states";
	int pidfd = -1, status = 0;
	pid_t parent_tid = -1;
	struct clone_args args = {
		.parent_tid = ptr_to_u64(&parent_tid),
		.pidfd = ptr_to_u64(&pidfd),
		.flags = CLONE_PIDFD | CLONE_PARENT_SETTID,
		.exit_signal = SIGCHLD,
	};
	int ret;
	pid_t pid;
	siginfo_t info = {
		.si_signo = 0,
	};

	pid = sys_clone3(&args);
	if (pid < 0)
		ksft_exit_fail_msg("%s test: failed to create new process %s\n",
				   test_name, strerror(errno));

	if (pid == 0) {
		kill(getpid(), SIGSTOP);
		kill(getpid(), SIGSTOP);
		exit(EXIT_SUCCESS);
	}

	ret = sys_waitid(P_PIDFD, pidfd, &info, WSTOPPED, NULL);
	if (ret < 0)
		ksft_exit_fail_msg(
			"%s test: failed to wait on WSTOPPED process with pid %d and pidfd %d: %s\n",
			test_name, parent_tid, pidfd, strerror(errno));

	if (info.si_signo != SIGCHLD)
		ksft_exit_fail_msg(
			"%s test: unexpected si_signo value %d received after waiting on process with pid %d and pidfd %d: %s\n",
			test_name, info.si_signo, parent_tid, pidfd,
			strerror(errno));

	if (info.si_code != CLD_STOPPED)
		ksft_exit_fail_msg(
			"%s test: unexpected si_code value %d received after waiting on process with pid %d and pidfd %d: %s\n",
			test_name, info.si_code, parent_tid, pidfd,
			strerror(errno));

	if (info.si_pid != parent_tid)
		ksft_exit_fail_msg(
			"%s test: unexpected si_pid value %d received after waiting on process with pid %d and pidfd %d: %s\n",
			test_name, info.si_pid, parent_tid, pidfd,
			strerror(errno));

	ret = sys_pidfd_send_signal(pidfd, SIGCONT, NULL, 0);
	if (ret < 0)
		ksft_exit_fail_msg(
			"%s test: failed to send signal to process with pid %d and pidfd %d: %s\n",
			test_name, parent_tid, pidfd, strerror(errno));

	ret = sys_waitid(P_PIDFD, pidfd, &info, WCONTINUED, NULL);
	if (ret < 0)
		ksft_exit_fail_msg(
			"%s test: failed to wait WCONTINUED on process with pid %d and pidfd %d: %s\n",
			test_name, parent_tid, pidfd, strerror(errno));

	if (info.si_signo != SIGCHLD)
		ksft_exit_fail_msg(
			"%s test: unexpected si_signo value %d received after waiting on process with pid %d and pidfd %d: %s\n",
			test_name, info.si_signo, parent_tid, pidfd,
			strerror(errno));

	if (info.si_code != CLD_CONTINUED)
		ksft_exit_fail_msg(
			"%s test: unexpected si_code value %d received after waiting on process with pid %d and pidfd %d: %s\n",
			test_name, info.si_code, parent_tid, pidfd,
			strerror(errno));

	if (info.si_pid != parent_tid)
		ksft_exit_fail_msg(
			"%s test: unexpected si_pid value %d received after waiting on process with pid %d and pidfd %d: %s\n",
			test_name, info.si_pid, parent_tid, pidfd,
			strerror(errno));

	ret = sys_waitid(P_PIDFD, pidfd, &info, WUNTRACED, NULL);
	if (ret < 0)
		ksft_exit_fail_msg(
			"%s test: failed to wait on WUNTRACED process with pid %d and pidfd %d: %s\n",
			test_name, parent_tid, pidfd, strerror(errno));

	if (info.si_signo != SIGCHLD)
		ksft_exit_fail_msg(
			"%s test: unexpected si_signo value %d received after waiting on process with pid %d and pidfd %d: %s\n",
			test_name, info.si_signo, parent_tid, pidfd,
			strerror(errno));

	if (info.si_code != CLD_STOPPED)
		ksft_exit_fail_msg(
			"%s test: unexpected si_code value %d received after waiting on process with pid %d and pidfd %d: %s\n",
			test_name, info.si_code, parent_tid, pidfd,
			strerror(errno));

	if (info.si_pid != parent_tid)
		ksft_exit_fail_msg(
			"%s test: unexpected si_pid value %d received after waiting on process with pid %d and pidfd %d: %s\n",
			test_name, info.si_pid, parent_tid, pidfd,
			strerror(errno));

	ret = sys_pidfd_send_signal(pidfd, SIGKILL, NULL, 0);
	if (ret < 0)
		ksft_exit_fail_msg(
			"%s test: failed to send SIGKILL to process with pid %d and pidfd %d: %s\n",
			test_name, parent_tid, pidfd, strerror(errno));

	ret = sys_waitid(P_PIDFD, pidfd, &info, WEXITED, NULL);
	if (ret < 0)
		ksft_exit_fail_msg(
			"%s test: failed to wait on WEXITED process with pid %d and pidfd %d: %s\n",
			test_name, parent_tid, pidfd, strerror(errno));

	if (info.si_signo != SIGCHLD)
		ksft_exit_fail_msg(
			"%s test: unexpected si_signo value %d received after waiting on process with pid %d and pidfd %d: %s\n",
			test_name, info.si_signo, parent_tid, pidfd,
			strerror(errno));

	if (info.si_code != CLD_KILLED)
		ksft_exit_fail_msg(
			"%s test: unexpected si_code value %d received after waiting on process with pid %d and pidfd %d: %s\n",
			test_name, info.si_code, parent_tid, pidfd,
			strerror(errno));

	if (info.si_pid != parent_tid)
		ksft_exit_fail_msg(
			"%s test: unexpected si_pid value %d received after waiting on process with pid %d and pidfd %d: %s\n",
			test_name, info.si_pid, parent_tid, pidfd,
			strerror(errno));

	close(pidfd);

	ksft_test_result_pass("%s test: Passed\n", test_name);
	return 0;
}

int main(int argc, char **argv)
{
	ksft_print_header();
	ksft_set_plan(2);

	test_pidfd_wait_simple();
	test_pidfd_wait_states();

	return ksft_exit_pass();
}