2004-09-12 Roland McGrath <roland@frob.com>
[glibc.git] / posix / tst-waitid.c
blob3e81d7a0ac0cc30602efb6568df08754d58f1349
1 /* Tests for waitid.
2 Copyright (C) 2004 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
20 #include <errno.h>
21 #include <error.h>
22 #include <stdlib.h>
23 #include <unistd.h>
24 #include <sys/wait.h>
25 #include <signal.h>
27 #define TIMEOUT 15
29 static void
30 test_child (void)
32 /* Wait a second to be sure the parent set his variables before we
33 produce a SIGCHLD. */
34 sleep (1);
36 /* First thing, we stop ourselves. */
37 raise (SIGSTOP);
39 /* Hey, we got continued! */
40 while (1)
41 pause ();
44 #ifndef WEXITED
45 # define WEXITED 0
46 # define WCONTINUED 0
47 # define WSTOPPED WUNTRACED
48 #endif
50 static sig_atomic_t expecting_sigchld, spurious_sigchld;
51 #ifdef SA_SIGINFO
52 static siginfo_t sigchld_info;
54 static void
55 sigchld (int signo, siginfo_t *info, void *ctx)
57 if (signo != SIGCHLD)
59 error (0, 0, "SIGCHLD handler got signal %d instead!", signo);
60 _exit (EXIT_FAILURE);
63 if (! expecting_sigchld)
65 spurious_sigchld = 1;
66 error (0, 0,
67 "spurious SIGCHLD: signo %d code %d status %d pid %d\n",
68 info->si_signo, info->si_code, info->si_status, info->si_pid);
70 else
72 sigchld_info = *info;
73 expecting_sigchld = 0;
77 static void
78 check_sigchld (const char *phase, int *ok, int code, int status, pid_t pid)
80 if (expecting_sigchld)
82 error (0, 0, "missing SIGCHLD on %s", phase);
83 *ok = EXIT_FAILURE;
84 expecting_sigchld = 0;
85 return;
88 if (sigchld_info.si_signo != SIGCHLD)
90 error (0, 0, "SIGCHLD for %s signal %d", phase, sigchld_info.si_signo);
91 *ok = EXIT_FAILURE;
93 if (sigchld_info.si_code != code)
95 error (0, 0, "SIGCHLD for %s code %d", phase, sigchld_info.si_code);
96 *ok = EXIT_FAILURE;
98 if (sigchld_info.si_status != status)
100 error (0, 0, "SIGCHLD for %s status %d", phase, sigchld_info.si_status);
101 *ok = EXIT_FAILURE;
103 if (sigchld_info.si_pid != pid)
105 error (0, 0, "SIGCHLD for %s pid %d", phase, sigchld_info.si_pid);
106 *ok = EXIT_FAILURE;
109 # define CHECK_SIGCHLD(phase, code_check, status_check) \
110 check_sigchld ((phase), &status, (code_check), (status_check), pid)
111 #else
112 # define CHECK_SIGCHLD(phase, code, status) ((void) 0)
113 #endif
115 static int
116 do_test (int argc, char *argv[])
118 #ifdef SA_SIGINFO
119 struct sigaction sa;
120 sa.sa_flags = SA_SIGINFO|SA_RESTART;
121 sa.sa_sigaction = &sigchld;
122 if (sigemptyset (&sa.sa_mask) < 0 || sigaction (SIGCHLD, &sa, NULL) < 0)
124 error (0, errno, "setting SIGCHLD handler");
125 return EXIT_FAILURE;
127 #endif
129 expecting_sigchld = 1;
131 pid_t pid = fork ();
132 if (pid < 0)
134 error (0, errno, "fork");
135 return EXIT_FAILURE;
137 else if (pid == 0)
139 test_child ();
140 _exit (127);
143 int status = EXIT_SUCCESS;
144 #define RETURN(ok) \
145 do { if (status == EXIT_SUCCESS) status = (ok); goto out; } while (0)
147 /* Give the child a chance to stop. */
148 sleep (3);
150 CHECK_SIGCHLD ("stopped", CLD_STOPPED, SIGSTOP);
152 /* Now try a wait that should not succeed. */
153 siginfo_t info;
154 info.si_signo = 0; /* A successful call sets it to SIGCHLD. */
155 int fail = waitid (P_PID, pid, &info, WEXITED|WCONTINUED|WNOHANG);
156 switch (fail)
158 default:
159 error (0, 0, "waitid returned bogus value %d\n", fail);
160 RETURN (EXIT_FAILURE);
161 case -1:
162 error (0, errno, "waitid WNOHANG on stopped");
163 RETURN (errno == ENOTSUP ? EXIT_SUCCESS : EXIT_FAILURE);
164 case 0:
165 if (info.si_signo == 0)
166 break;
167 if (info.si_signo == SIGCHLD)
168 error (0, 0, "waitid WNOHANG on stopped status %d\n", info.si_status);
169 else
170 error (0, 0, "waitid WNOHANG on stopped signal %d\n", info.si_signo);
171 RETURN (EXIT_FAILURE);
174 /* Next the wait that should succeed right away. */
175 info.si_signo = 0; /* A successful call sets it to SIGCHLD. */
176 info.si_pid = -1;
177 info.si_status = -1;
178 fail = waitid (P_PID, pid, &info, WSTOPPED|WNOHANG);
179 switch (fail)
181 default:
182 error (0, 0, "waitid WSTOPPED|WNOHANG returned bogus value %d\n", fail);
183 RETURN (EXIT_FAILURE);
184 case -1:
185 error (0, errno, "waitid WSTOPPED|WNOHANG on stopped");
186 RETURN (errno == ENOTSUP ? EXIT_SUCCESS : EXIT_FAILURE);
187 case 0:
188 if (info.si_signo != SIGCHLD)
190 error (0, 0, "waitid WSTOPPED|WNOHANG on stopped signal %d\n",
191 info.si_signo);
192 RETURN (EXIT_FAILURE);
194 if (info.si_code != CLD_STOPPED)
196 error (0, 0, "waitid WSTOPPED|WNOHANG on stopped code %d\n",
197 info.si_code);
198 RETURN (EXIT_FAILURE);
200 if (info.si_status != SIGSTOP)
202 error (0, 0, "waitid WSTOPPED|WNOHANG on stopped status %d\n",
203 info.si_status);
204 RETURN (EXIT_FAILURE);
206 if (info.si_pid != pid)
208 error (0, 0, "waitid WSTOPPED|WNOHANG on stopped pid %d != %d\n",
209 info.si_pid, pid);
210 RETURN (EXIT_FAILURE);
214 expecting_sigchld = WCONTINUED != 0;
216 if (kill (pid, SIGCONT) != 0)
218 error (0, errno, "kill (%d, SIGCONT)", pid);
219 RETURN (EXIT_FAILURE);
222 /* Wait for the child to have continued. */
223 sleep (2);
225 #if WCONTINUED != 0
226 if (expecting_sigchld)
228 error (0, 0, "no SIGCHLD seen for SIGCONT (optional)");
229 expecting_sigchld = 0;
231 else
232 CHECK_SIGCHLD ("continued", CLD_CONTINUED, SIGCONT);
234 info.si_signo = 0; /* A successful call sets it to SIGCHLD. */
235 info.si_pid = -1;
236 info.si_status = -1;
237 fail = waitid (P_PID, pid, &info, WCONTINUED|WNOWAIT);
238 switch (fail)
240 default:
241 error (0, 0,
242 "waitid WCONTINUED|WNOWAIT returned bogus value %d\n", fail);
243 RETURN (EXIT_FAILURE);
244 case -1:
245 error (0, errno, "waitid WCONTINUED|WNOWAIT on continued");
246 RETURN (errno == ENOTSUP ? EXIT_SUCCESS : EXIT_FAILURE);
247 case 0:
248 if (info.si_signo != SIGCHLD)
250 error (0, 0, "waitid WCONTINUED|WNOWAIT on continued signal %d\n",
251 info.si_signo);
252 RETURN (EXIT_FAILURE);
254 if (info.si_code != CLD_CONTINUED)
256 error (0, 0, "waitid WCONTINUED|WNOWAIT on continued code %d\n",
257 info.si_code);
258 RETURN (EXIT_FAILURE);
260 if (info.si_status != SIGCONT)
262 error (0, 0, "waitid WCONTINUED|WNOWAIT on continued status %d\n",
263 info.si_status);
264 RETURN (EXIT_FAILURE);
266 if (info.si_pid != pid)
268 error (0, 0, "waitid WCONTINUED|WNOWAIT on continued pid %d != %d\n",
269 info.si_pid, pid);
270 RETURN (EXIT_FAILURE);
274 /* That should leave the CLD_CONTINUED state waiting to be seen again. */
275 info.si_signo = 0; /* A successful call sets it to SIGCHLD. */
276 info.si_pid = -1;
277 info.si_status = -1;
278 fail = waitid (P_PID, pid, &info, WCONTINUED);
279 switch (fail)
281 default:
282 error (0, 0, "waitid WCONTINUED returned bogus value %d\n", fail);
283 RETURN (EXIT_FAILURE);
284 case -1:
285 error (0, errno, "waitid WCONTINUED on continued");
286 RETURN (errno == ENOTSUP ? EXIT_SUCCESS : EXIT_FAILURE);
287 case 0:
288 if (info.si_signo != SIGCHLD)
290 error (0, 0, "waitid WCONTINUED on continued signal %d\n",
291 info.si_signo);
292 RETURN (EXIT_FAILURE);
294 if (info.si_code != CLD_CONTINUED)
296 error (0, 0, "waitid WCONTINUED on continued code %d\n",
297 info.si_code);
298 RETURN (EXIT_FAILURE);
300 if (info.si_status != SIGCONT)
302 error (0, 0, "waitid WCONTINUED on continued status %d\n",
303 info.si_status);
304 RETURN (EXIT_FAILURE);
306 if (info.si_pid != pid)
308 error (0, 0, "waitid WCONTINUED on continued pid %d != %d\n",
309 info.si_pid, pid);
310 RETURN (EXIT_FAILURE);
314 /* Now try a wait that should not succeed. */
315 info.si_signo = 0; /* A successful call sets it to SIGCHLD. */
316 fail = waitid (P_PID, pid, &info, WCONTINUED|WNOHANG);
317 switch (fail)
319 default:
320 error (0, 0, "waitid returned bogus value %d\n", fail);
321 RETURN (EXIT_FAILURE);
322 case -1:
323 error (0, errno, "waitid WCONTINUED|WNOHANG on waited continued");
324 RETURN (errno == ENOTSUP ? EXIT_SUCCESS : EXIT_FAILURE);
325 case 0:
326 if (info.si_signo == 0)
327 break;
328 if (info.si_signo == SIGCHLD)
329 error (0, 0,
330 "waitid WCONTINUED|WNOHANG on waited continued status %d\n",
331 info.si_status);
332 else
333 error (0, 0,
334 "waitid WCONTINUED|WNOHANG on waited continued signal %d\n",
335 info.si_signo);
336 RETURN (EXIT_FAILURE);
338 #endif
340 expecting_sigchld = 1;
342 /* Die, child, die! */
343 if (kill (pid, SIGKILL) != 0)
345 error (0, errno, "kill (%d, SIGKILL)", pid);
346 RETURN (EXIT_FAILURE);
349 #ifdef WNOWAIT
350 info.si_signo = 0; /* A successful call sets it to SIGCHLD. */
351 info.si_pid = -1;
352 info.si_status = -1;
353 fail = waitid (P_PID, pid, &info, WEXITED|WNOWAIT);
354 switch (fail)
356 default:
357 error (0, 0, "waitid WNOWAIT returned bogus value %d\n", fail);
358 RETURN (EXIT_FAILURE);
359 case -1:
360 error (0, errno, "waitid WNOWAIT on killed");
361 RETURN (errno == ENOTSUP ? EXIT_SUCCESS : EXIT_FAILURE);
362 case 0:
363 if (info.si_signo != SIGCHLD)
365 error (0, 0, "waitid WNOWAIT on killed signal %d\n",
366 info.si_signo);
367 RETURN (EXIT_FAILURE);
369 if (info.si_code != CLD_KILLED)
371 error (0, 0, "waitid WNOWAIT on killed code %d\n",
372 info.si_code);
373 RETURN (EXIT_FAILURE);
375 if (info.si_status != SIGKILL)
377 error (0, 0, "waitid WNOWAIT on killed status %d\n",
378 info.si_status);
379 RETURN (EXIT_FAILURE);
381 if (info.si_pid != pid)
383 error (0, 0, "waitid WNOWAIT on killed pid %d != %d\n",
384 info.si_pid, pid);
385 RETURN (EXIT_FAILURE);
388 #else
389 /* Allow enough time to be sure the child died; we didn't synchronize. */
390 sleep (2);
391 #endif
393 CHECK_SIGCHLD ("killed", CLD_KILLED, SIGKILL);
395 info.si_signo = 0; /* A successful call sets it to SIGCHLD. */
396 info.si_pid = -1;
397 info.si_status = -1;
398 fail = waitid (P_PID, pid, &info, WEXITED|WNOHANG);
399 switch (fail)
401 default:
402 error (0, 0, "waitid WNOHANG returned bogus value %d\n", fail);
403 RETURN (EXIT_FAILURE);
404 case -1:
405 error (0, errno, "waitid WNOHANG on killed");
406 RETURN (EXIT_FAILURE);
407 case 0:
408 if (info.si_signo != SIGCHLD)
410 error (0, 0, "waitid WNOHANG on killed signal %d\n",
411 info.si_signo);
412 RETURN (EXIT_FAILURE);
414 if (info.si_code != CLD_KILLED)
416 error (0, 0, "waitid WNOHANG on killed code %d\n",
417 info.si_code);
418 RETURN (EXIT_FAILURE);
420 if (info.si_status != SIGKILL)
422 error (0, 0, "waitid WNOHANG on killed status %d\n",
423 info.si_status);
424 RETURN (EXIT_FAILURE);
426 if (info.si_pid != pid)
428 error (0, 0, "waitid WNOHANG on killed pid %d != %d\n",
429 info.si_pid, pid);
430 RETURN (EXIT_FAILURE);
434 fail = waitid (P_PID, pid, &info, WEXITED);
435 if (fail == -1)
437 if (errno != ECHILD)
439 error (0, errno, "waitid WEXITED on killed");
440 RETURN (EXIT_FAILURE);
443 else
445 error (0, 0, "waitid WEXITED returned bogus value %d\n", fail);
446 RETURN (EXIT_FAILURE);
449 #undef RETURN
450 out:
451 if (spurious_sigchld)
452 status = EXIT_FAILURE;
453 signal (SIGCHLD, SIG_IGN);
454 kill (pid, SIGKILL); /* Make sure it's dead if we bailed early. */
455 return status;
458 #include "../test-skeleton.c"