1 /* $NetBSD: t_select.c,v 1.3 2012/03/18 07:00:52 jruoho Exp $ */
4 * Copyright (c) 2011 The NetBSD Foundation, Inc.
7 * This code is derived from software contributed to The NetBSD Foundatiom
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
33 #include <sys/types.h>
34 #include <sys/select.h>
47 static sig_atomic_t keep_going
= 1;
50 sig_handler(int signum
)
63 static const char xarray
[] = "0123456789abcdef";
64 assert(n
< sizeof(xarray
));
69 prmask(const sigset_t
*m
, char *buf
, size_t len
)
72 assert(len
>= 3 + sizeof(*m
));
75 #define N(p, a) (((p) >> ((a) * 4)) & 0xf)
76 for (size_t i
= __arraycount(m
->__bits
); i
> 0; i
--) {
77 uint32_t p
= m
->__bits
[i
- 1];
78 for (size_t k
= sizeof(p
); k
> 0; k
--)
79 buf
[j
++] = xtoa(N(p
, k
- 1));
86 child(const struct timespec
*ts
)
89 sigset_t set
, oset
, nset
;
90 char obuf
[sizeof(oset
) + 3], nbuf
[sizeof(nset
) + 3];
93 memset(&sa
, 0, sizeof(sa
));
94 sa
.sa_handler
= sig_handler
;
95 if ((fd
= open("/dev/null", O_RDONLY
)) == -1)
98 if (sigaction(SIGTERM
, &sa
, NULL
) == -1)
102 if (sigprocmask(SIG_BLOCK
, &set
, NULL
) == -1)
103 err(1, "sigprocmask");
105 if (sigprocmask(SIG_BLOCK
, NULL
, &oset
) == -1)
106 err(1, "sigprocmask");
114 if (pselect(1, &rset
, NULL
, NULL
, ts
, &set
) == -1) {
123 if (sigprocmask(SIG_BLOCK
, NULL
, &nset
) == -1)
124 err(1, "sigprocmask");
125 if (memcmp(&oset
, &nset
, sizeof(oset
)) != 0)
126 atf_tc_fail("pselect() masks don't match "
127 "after timeout %s != %s",
128 prmask(&nset
, nbuf
, sizeof(nbuf
)),
129 prmask(&oset
, obuf
, sizeof(obuf
)));
132 ATF_TC(pselect_sigmask
);
133 ATF_TC_HEAD(pselect_sigmask
, tc
)
135 atf_tc_set_md_var(tc
, "descr", "Checks pselect's temporary mask "
136 "setting when a signal is received (PR lib/43625)");
139 ATF_TC_BODY(pselect_sigmask
, tc
)
144 signal(SIGCHLD
, sigchld
);
146 switch (pid
= fork()) {
153 if (kill(pid
, SIGTERM
) == -1)
156 switch (waitpid(pid
, &status
, WNOHANG
)) {
160 if (kill(pid
, SIGKILL
) == -1)
162 atf_tc_fail("pselect() did not receive signal");
170 ATF_TC(pselect_timeout
);
171 ATF_TC_HEAD(pselect_timeout
, tc
)
174 atf_tc_set_md_var(tc
, "descr", "Checks pselect's temporary mask "
175 "setting when a timeout occurs");
178 ATF_TC_BODY(pselect_timeout
, tc
)
182 static const struct timespec zero
= { 0, 0 };
184 signal(SIGCHLD
, sigchld
);
186 switch (pid
= fork()) {
194 switch (waitpid(pid
, &status
, WNOHANG
)) {
198 if (kill(pid
, SIGKILL
) == -1)
200 atf_tc_fail("pselect() did not receive signal");
211 ATF_TP_ADD_TC(tp
, pselect_sigmask
);
212 ATF_TP_ADD_TC(tp
, pselect_timeout
);
214 return atf_no_error();