1 /* Test framework for wait3 and wait4.
2 Copyright (C) 2020-2022 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, see
17 <https://www.gnu.org/licenses/>. */
24 #include <sys/resource.h>
27 #include <stdatomic.h>
30 #include <support/xsignal.h>
31 #include <support/xunistd.h>
32 #include <support/check.h>
33 #include <support/process_state.h>
38 /* First thing, we stop ourselves. */
41 /* Hey, we got continued! */
49 # define WSTOPPED WUNTRACED
52 /* Set with only SIGCHLD on do_test_waitid. */
53 static sigset_t chldset
;
57 sigchld (int signo
, siginfo_t
*info
, void *ctx
)
63 check_sigchld (int code
, int status
, pid_t pid
)
67 TEST_COMPARE (sigwaitinfo (&chldset
, &siginfo
), SIGCHLD
);
69 TEST_COMPARE (siginfo
.si_signo
, SIGCHLD
);
70 TEST_COMPARE (siginfo
.si_code
, code
);
71 TEST_COMPARE (siginfo
.si_status
, status
);
72 TEST_COMPARE (siginfo
.si_pid
, pid
);
77 do_test_wait (pid_t pid
)
79 /* Adding process_state_tracing_stop ('t') allows the test to work under
80 trace programs such as ptrace. */
81 enum support_process_state stop_state
= support_process_state_stopped
82 | support_process_state_tracing_stop
;
84 support_process_state_wait (pid
, stop_state
);
86 check_sigchld (CLD_STOPPED
, SIGSTOP
, pid
);
92 ret
= WAIT_CALL (pid
, &wstatus
, WUNTRACED
|WCONTINUED
|WNOHANG
, NULL
);
93 if (ret
== -1 && errno
== ENOTSUP
)
94 FAIL_RET ("waitid WNOHANG on stopped: %m");
95 TEST_COMPARE (ret
, pid
);
96 TEST_VERIFY (WIFSTOPPED (wstatus
));
98 /* Issue again but with struct rusage input. */
99 ret
= WAIT_CALL (pid
, &wstatus
, WUNTRACED
|WCONTINUED
|WNOHANG
, &rusage
);
100 /* With WNOHANG and WUNTRACED, if the children has not changes its state
101 since previous call the expected result it 0. */
102 TEST_COMPARE (ret
, 0);
104 /* Some sanity tests to check if 'wtatus' and 'rusage' possible
106 ret
= WAIT_CALL (pid
, NULL
, WUNTRACED
|WCONTINUED
|WNOHANG
, &rusage
);
107 TEST_COMPARE (ret
, 0);
108 ret
= WAIT_CALL (pid
, NULL
, WUNTRACED
|WCONTINUED
|WNOHANG
, NULL
);
109 TEST_COMPARE (ret
, 0);
111 if (kill (pid
, SIGCONT
) != 0)
112 FAIL_RET ("kill (%d, SIGCONT): %m\n", pid
);
114 /* Wait for the child to have continued. */
115 support_process_state_wait (pid
, support_process_state_sleeping
);
118 check_sigchld (CLD_CONTINUED
, SIGCONT
, pid
);
120 ret
= WAIT_CALL (pid
, &wstatus
, WCONTINUED
|WNOHANG
, NULL
);
121 TEST_COMPARE (ret
, pid
);
122 TEST_VERIFY (WIFCONTINUED (wstatus
));
124 /* Issue again but with struct rusage input. */
125 ret
= WAIT_CALL (pid
, &wstatus
, WUNTRACED
|WCONTINUED
|WNOHANG
, &rusage
);
126 /* With WNOHANG and WUNTRACED, if the children has not changes its state
127 since previous call the expected result it 0. */
128 TEST_COMPARE (ret
, 0);
130 /* Now stop him again and test waitpid with WCONTINUED. */
131 if (kill (pid
, SIGSTOP
) != 0)
132 FAIL_RET ("kill (%d, SIGSTOP): %m\n", pid
);
134 /* Wait the child stop. The waitid call below will block until it has
135 stopped, but if we are real quick and enter the waitid system call
136 before the SIGCHLD has been generated, then it will be discarded and
138 support_process_state_wait (pid
, stop_state
);
140 ret
= WAIT_CALL (pid
, &wstatus
, WUNTRACED
|WNOHANG
, &rusage
);
141 TEST_COMPARE (ret
, pid
);
143 check_sigchld (CLD_STOPPED
, SIGSTOP
, pid
);
145 if (kill (pid
, SIGCONT
) != 0)
146 FAIL_RET ("kill (%d, SIGCONT): %m\n", pid
);
148 /* Wait for the child to have continued. */
149 support_process_state_wait (pid
, support_process_state_sleeping
);
151 check_sigchld (CLD_CONTINUED
, SIGCONT
, pid
);
153 ret
= WAIT_CALL (pid
, &wstatus
, WCONTINUED
|WNOHANG
, NULL
);
154 TEST_COMPARE (ret
, pid
);
155 TEST_VERIFY (WIFCONTINUED (wstatus
));
158 /* Die, child, die! */
159 if (kill (pid
, SIGKILL
) != 0)
160 FAIL_RET ("kill (%d, SIGKILL): %m\n", pid
);
162 support_process_state_wait (pid
, support_process_state_zombie
);
164 ret
= WAIT_CALL (pid
, &wstatus
, 0, &rusage
);
165 TEST_COMPARE (ret
, pid
);
166 TEST_VERIFY (WIFSIGNALED (wstatus
));
167 TEST_VERIFY (WTERMSIG (wstatus
) == SIGKILL
);
169 check_sigchld (CLD_KILLED
, SIGKILL
, pid
);
180 sa
.sa_flags
= SA_SIGINFO
| SA_RESTART
;
181 sa
.sa_sigaction
= sigchld
;
182 sigemptyset (&sa
.sa_mask
);
183 xsigaction (SIGCHLD
, &sa
, NULL
);
187 sigemptyset (&chldset
);
188 sigaddset (&chldset
, SIGCHLD
);
190 /* The SIGCHLD shall has blocked at the time of the call to sigwait;
191 otherwise, the behavior is undefined. */
192 sigprocmask (SIG_BLOCK
, &chldset
, NULL
);
194 pid_t pid
= xfork ();
203 xsignal (SIGCHLD
, SIG_IGN
);
204 kill (pid
, SIGKILL
); /* Make sure it's dead if we bailed early. */
209 #include <support/test-driver.c>