Dmitry V. Levin | 77a1b6b | 2015-09-15 02:14:38 +0000 | [diff] [blame] | 1 | /* |
Dmitry V. Levin | 8d2674e | 2016-01-05 22:55:05 +0000 | [diff] [blame] | 2 | * Copyright (c) 2015-2016 Dmitry V. Levin <ldv@altlinux.org> |
Dmitry V. Levin | 6c528f5 | 2015-09-18 17:05:35 +0000 | [diff] [blame] | 3 | * All rights reserved. |
| 4 | * |
| 5 | * Redistribution and use in source and binary forms, with or without |
| 6 | * modification, are permitted provided that the following conditions |
| 7 | * are met: |
| 8 | * 1. Redistributions of source code must retain the above copyright |
| 9 | * notice, this list of conditions and the following disclaimer. |
| 10 | * 2. Redistributions in binary form must reproduce the above copyright |
| 11 | * notice, this list of conditions and the following disclaimer in the |
| 12 | * documentation and/or other materials provided with the distribution. |
| 13 | * 3. The name of the author may not be used to endorse or promote products |
| 14 | * derived from this software without specific prior written permission. |
| 15 | * |
| 16 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 17 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 18 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 19 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 20 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 21 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 22 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 23 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 25 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 26 | */ |
| 27 | |
| 28 | /* |
Dmitry V. Levin | 77a1b6b | 2015-09-15 02:14:38 +0000 | [diff] [blame] | 29 | * Based on test by Dr. David Alan Gilbert <dave@treblig.org> |
| 30 | */ |
Dmitry V. Levin | 8d2674e | 2016-01-05 22:55:05 +0000 | [diff] [blame] | 31 | |
| 32 | #include "tests.h" |
| 33 | #include <assert.h> |
Dmitry V. Levin | 77a1b6b | 2015-09-15 02:14:38 +0000 | [diff] [blame] | 34 | #include <stdio.h> |
Dmitry V. Levin | 77a1b6b | 2015-09-15 02:14:38 +0000 | [diff] [blame] | 35 | #include <signal.h> |
| 36 | #include <unistd.h> |
| 37 | #include <sys/select.h> |
Dmitry V. Levin | 5d98310 | 2015-09-18 21:20:56 +0000 | [diff] [blame] | 38 | #include <sys/syscall.h> |
Dmitry V. Levin | 6c528f5 | 2015-09-18 17:05:35 +0000 | [diff] [blame] | 39 | #include <sys/time.h> |
Dmitry V. Levin | 77a1b6b | 2015-09-15 02:14:38 +0000 | [diff] [blame] | 40 | |
Dmitry V. Levin | 5d98310 | 2015-09-18 21:20:56 +0000 | [diff] [blame] | 41 | #ifdef __NR_pselect6 |
| 42 | |
Dmitry V. Levin | 77a1b6b | 2015-09-15 02:14:38 +0000 | [diff] [blame] | 43 | #ifndef NSIG |
| 44 | # warning NSIG is not defined, using 32 |
| 45 | # define NSIG 32 |
| 46 | #endif |
| 47 | |
| 48 | static fd_set set[3][0x1000000 / sizeof(fd_set)]; |
| 49 | |
Dmitry V. Levin | 6c528f5 | 2015-09-18 17:05:35 +0000 | [diff] [blame] | 50 | static void |
| 51 | handler(int signo) |
| 52 | { |
| 53 | } |
| 54 | |
Dmitry V. Levin | 77a1b6b | 2015-09-15 02:14:38 +0000 | [diff] [blame] | 55 | int main(int ac, char **av) |
| 56 | { |
| 57 | int fds[2]; |
Dmitry V. Levin | 5d98310 | 2015-09-18 21:20:56 +0000 | [diff] [blame] | 58 | struct { |
| 59 | struct timespec ts; |
| 60 | int pad[2]; |
Dmitry V. Levin | 81ea4bf | 2015-09-18 21:20:56 +0000 | [diff] [blame] | 61 | } tm_in = { |
| 62 | .ts = { .tv_sec = 0xc0de1, .tv_nsec = 0xc0de2 }, |
Dmitry V. Levin | 5d98310 | 2015-09-18 21:20:56 +0000 | [diff] [blame] | 63 | .pad = { 0xdeadbeef, 0xbadc0ded } |
Dmitry V. Levin | 81ea4bf | 2015-09-18 21:20:56 +0000 | [diff] [blame] | 64 | }, tm = tm_in; |
Dmitry V. Levin | 77a1b6b | 2015-09-15 02:14:38 +0000 | [diff] [blame] | 65 | sigset_t mask; |
Dmitry V. Levin | 6c528f5 | 2015-09-18 17:05:35 +0000 | [diff] [blame] | 66 | const struct sigaction act = { .sa_handler = handler }; |
| 67 | const struct itimerval itv = { .it_value.tv_usec = 111111 }; |
Dmitry V. Levin | 77a1b6b | 2015-09-15 02:14:38 +0000 | [diff] [blame] | 68 | |
| 69 | sigemptyset(&mask); |
| 70 | sigaddset(&mask, SIGHUP); |
| 71 | sigaddset(&mask, SIGCHLD); |
| 72 | |
Dmitry V. Levin | 5d98310 | 2015-09-18 21:20:56 +0000 | [diff] [blame] | 73 | if (pipe(fds)) |
Dmitry V. Levin | 8d2674e | 2016-01-05 22:55:05 +0000 | [diff] [blame] | 74 | perror_msg_and_fail("pipe"); |
Dmitry V. Levin | 77a1b6b | 2015-09-15 02:14:38 +0000 | [diff] [blame] | 75 | |
| 76 | /* |
| 77 | * Start with a nice simple pselect. |
| 78 | */ |
| 79 | FD_SET(fds[0], set[0]); |
| 80 | FD_SET(fds[1], set[0]); |
| 81 | FD_SET(fds[0], set[1]); |
| 82 | FD_SET(fds[1], set[1]); |
| 83 | FD_SET(1, set[2]); |
| 84 | FD_SET(2, set[2]); |
Dmitry V. Levin | 8d2674e | 2016-01-05 22:55:05 +0000 | [diff] [blame] | 85 | int rc = pselect(fds[1] + 1, set[0], set[1], set[2], NULL, NULL); |
| 86 | if (rc < 0) |
| 87 | perror_msg_and_skip("pselect"); |
| 88 | assert(rc == 1); |
Dmitry V. Levin | 77a1b6b | 2015-09-15 02:14:38 +0000 | [diff] [blame] | 89 | printf("pselect6(%d, [%d %d], [%d %d], [1 2], NULL, {NULL, %u}) " |
| 90 | "= 1 (out [%d])\n", |
| 91 | fds[1] + 1, fds[0], fds[1], |
| 92 | fds[0], fds[1], |
| 93 | NSIG / 8, fds[1]); |
| 94 | |
| 95 | /* |
Dmitry V. Levin | 81ea4bf | 2015-09-18 21:20:56 +0000 | [diff] [blame] | 96 | * Another simple one, with a timeout. |
| 97 | */ |
| 98 | FD_SET(1, set[1]); |
| 99 | FD_SET(2, set[1]); |
| 100 | FD_SET(fds[0], set[1]); |
| 101 | FD_SET(fds[1], set[1]); |
Dmitry V. Levin | 8d2674e | 2016-01-05 22:55:05 +0000 | [diff] [blame] | 102 | assert(syscall(__NR_pselect6, fds[1] + 1, NULL, set[1], NULL, &tm.ts, NULL) == 3); |
Dmitry V. Levin | e67c8e4 | 2015-12-16 00:07:16 +0000 | [diff] [blame] | 103 | printf("pselect6(%d, NULL, [1 2 %d %d], NULL, {%lld, %lld}, NULL)" |
| 104 | " = 3 (out [1 2 %d], left {%lld, %lld})\n", |
Dmitry V. Levin | 81ea4bf | 2015-09-18 21:20:56 +0000 | [diff] [blame] | 105 | fds[1] + 1, fds[0], fds[1], |
| 106 | (long long) tm_in.ts.tv_sec, (long long) tm_in.ts.tv_nsec, |
| 107 | fds[1], |
| 108 | (long long) tm.ts.tv_sec, (long long) tm.ts.tv_nsec); |
| 109 | |
| 110 | /* |
Dmitry V. Levin | 77a1b6b | 2015-09-15 02:14:38 +0000 | [diff] [blame] | 111 | * Now the crash case that trinity found, negative nfds |
| 112 | * but with a pointer to a large chunk of valid memory. |
| 113 | */ |
| 114 | FD_ZERO(set[0]); |
| 115 | FD_SET(fds[1],set[0]); |
Dmitry V. Levin | 8d2674e | 2016-01-05 22:55:05 +0000 | [diff] [blame] | 116 | assert(pselect(-1, NULL, set[0], NULL, NULL, &mask) == -1); |
Dmitry V. Levin | 77a1b6b | 2015-09-15 02:14:38 +0000 | [diff] [blame] | 117 | printf("pselect6(-1, NULL, %p, NULL, NULL, {[HUP CHLD], %u}) " |
Dmitry V. Levin | 8d2674e | 2016-01-05 22:55:05 +0000 | [diff] [blame] | 118 | "= -1 EINVAL (%m)\n", set[0], NSIG / 8); |
Dmitry V. Levin | 77a1b6b | 2015-09-15 02:14:38 +0000 | [diff] [blame] | 119 | |
| 120 | /* |
| 121 | * Another variant, with nfds exceeding FD_SETSIZE limit. |
| 122 | */ |
| 123 | FD_ZERO(set[0]); |
| 124 | FD_SET(fds[0],set[0]); |
| 125 | FD_ZERO(set[1]); |
Dmitry V. Levin | 81ea4bf | 2015-09-18 21:20:56 +0000 | [diff] [blame] | 126 | tm.ts.tv_sec = 0; |
| 127 | tm.ts.tv_nsec = 123; |
Dmitry V. Levin | 8d2674e | 2016-01-05 22:55:05 +0000 | [diff] [blame] | 128 | assert(pselect(FD_SETSIZE + 1, set[0], set[1], NULL, &tm.ts, &mask) == 0); |
Dmitry V. Levin | 5d98310 | 2015-09-18 21:20:56 +0000 | [diff] [blame] | 129 | printf("pselect6(%d, [%d], [], NULL, {0, 123}, {[HUP CHLD], %u}) " |
Dmitry V. Levin | 77a1b6b | 2015-09-15 02:14:38 +0000 | [diff] [blame] | 130 | "= 0 (Timeout)\n", FD_SETSIZE + 1, fds[0], NSIG / 8); |
| 131 | |
Dmitry V. Levin | 6c528f5 | 2015-09-18 17:05:35 +0000 | [diff] [blame] | 132 | /* |
| 133 | * See how timeouts are decoded. |
| 134 | */ |
Dmitry V. Levin | 8d2674e | 2016-01-05 22:55:05 +0000 | [diff] [blame] | 135 | assert(sigaction(SIGALRM, &act, NULL) == 0); |
| 136 | assert(setitimer(ITIMER_REAL, &itv, NULL) == 0); |
Dmitry V. Levin | 6c528f5 | 2015-09-18 17:05:35 +0000 | [diff] [blame] | 137 | |
Dmitry V. Levin | 5d98310 | 2015-09-18 21:20:56 +0000 | [diff] [blame] | 138 | tm.ts.tv_nsec = 222222222; |
Dmitry V. Levin | 8d2674e | 2016-01-05 22:55:05 +0000 | [diff] [blame] | 139 | assert(pselect(0, NULL, NULL, NULL, &tm.ts, &mask) == -1); |
Dmitry V. Levin | bcdd204 | 2016-04-18 00:03:09 +0000 | [diff] [blame] | 140 | printf("pselect6(0, NULL, NULL, NULL, {0, 222222222}, {[HUP CHLD], %u})" |
| 141 | " = ? ERESTARTNOHAND (To be restarted if no handler)\n", |
| 142 | NSIG / 8); |
Dmitry V. Levin | 6c528f5 | 2015-09-18 17:05:35 +0000 | [diff] [blame] | 143 | puts("--- SIGALRM {si_signo=SIGALRM, si_code=SI_KERNEL} ---"); |
| 144 | |
Dmitry V. Levin | 77a1b6b | 2015-09-15 02:14:38 +0000 | [diff] [blame] | 145 | puts("+++ exited with 0 +++"); |
| 146 | return 0; |
| 147 | } |
Dmitry V. Levin | 5d98310 | 2015-09-18 21:20:56 +0000 | [diff] [blame] | 148 | |
| 149 | #else |
| 150 | |
Dmitry V. Levin | 8d2674e | 2016-01-05 22:55:05 +0000 | [diff] [blame] | 151 | SKIP_MAIN_UNDEFINED("__NR_pselect6") |
Dmitry V. Levin | 5d98310 | 2015-09-18 21:20:56 +0000 | [diff] [blame] | 152 | |
| 153 | #endif |