Dmitry V. Levin | 38a34c9 | 2015-12-17 17:56:48 +0000 | [diff] [blame] | 1 | /* |
Dmitry V. Levin | 2f5786c | 2016-01-05 23:03:26 +0000 | [diff] [blame] | 2 | * Copyright (c) 2013-2016 Dmitry V. Levin <ldv@altlinux.org> |
Dmitry V. Levin | 38a34c9 | 2015-12-17 17:56:48 +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 | |
Dmitry V. Levin | 2f5786c | 2016-01-05 23:03:26 +0000 | [diff] [blame] | 28 | #include "tests.h" |
Dmitry V. Levin | 47b0dcc | 2013-05-07 23:32:01 +0000 | [diff] [blame] | 29 | #include <assert.h> |
Dmitry V. Levin | 56ef5ef | 2013-05-08 14:03:38 +0000 | [diff] [blame] | 30 | #include <stddef.h> |
Dmitry V. Levin | 47b0dcc | 2013-05-07 23:32:01 +0000 | [diff] [blame] | 31 | #include <string.h> |
Dmitry V. Levin | da66e25 | 2015-03-05 17:30:23 +0000 | [diff] [blame] | 32 | #include <signal.h> |
Dmitry V. Levin | 47b0dcc | 2013-05-07 23:32:01 +0000 | [diff] [blame] | 33 | #include <unistd.h> |
| 34 | #include <sys/wait.h> |
| 35 | #include <sys/socket.h> |
| 36 | #include <sys/un.h> |
| 37 | |
Dmitry V. Levin | da66e25 | 2015-03-05 17:30:23 +0000 | [diff] [blame] | 38 | static void |
| 39 | handler(int sig) |
| 40 | { |
| 41 | assert(close(1) == 0); |
| 42 | _exit(0); |
| 43 | } |
| 44 | |
| 45 | int |
| 46 | main(int ac, const char **av) |
Dmitry V. Levin | 47b0dcc | 2013-05-07 23:32:01 +0000 | [diff] [blame] | 47 | { |
| 48 | struct sockaddr_un addr = { |
| 49 | .sun_family = AF_UNIX, |
Dmitry V. Levin | 47b0dcc | 2013-05-07 23:32:01 +0000 | [diff] [blame] | 50 | }; |
Dmitry V. Levin | c9cc4cb | 2015-01-07 20:14:19 +0000 | [diff] [blame] | 51 | socklen_t len; |
Dmitry V. Levin | 47b0dcc | 2013-05-07 23:32:01 +0000 | [diff] [blame] | 52 | |
Dmitry V. Levin | c9cc4cb | 2015-01-07 20:14:19 +0000 | [diff] [blame] | 53 | assert(ac == 2); |
| 54 | assert(strlen(av[1]) > 0); |
Dmitry V. Levin | c9cc4cb | 2015-01-07 20:14:19 +0000 | [diff] [blame] | 55 | |
Dmitry V. Levin | c9e2418 | 2015-01-29 15:19:21 +0000 | [diff] [blame] | 56 | strncpy(addr.sun_path, av[1], sizeof(addr.sun_path)); |
Dmitry V. Levin | c9cc4cb | 2015-01-07 20:14:19 +0000 | [diff] [blame] | 57 | len = offsetof(struct sockaddr_un, sun_path) + strlen(av[1]) + 1; |
Dmitry V. Levin | c9e2418 | 2015-01-29 15:19:21 +0000 | [diff] [blame] | 58 | if (len > sizeof(addr)) |
| 59 | len = sizeof(addr); |
Dmitry V. Levin | c9cc4cb | 2015-01-07 20:14:19 +0000 | [diff] [blame] | 60 | |
| 61 | unlink(av[1]); |
Dmitry V. Levin | 47b0dcc | 2013-05-07 23:32:01 +0000 | [diff] [blame] | 62 | close(0); |
| 63 | close(1); |
| 64 | |
Dmitry V. Levin | 71fe62e | 2016-04-04 01:35:28 +0000 | [diff] [blame] | 65 | if (socket(AF_LOCAL, SOCK_STREAM, 0)) |
Dmitry V. Levin | 2f5786c | 2016-01-05 23:03:26 +0000 | [diff] [blame] | 66 | perror_msg_and_skip("socket"); |
| 67 | if (bind(0, (struct sockaddr *) &addr, len)) |
| 68 | perror_msg_and_skip("bind"); |
| 69 | if (listen(0, 5)) |
| 70 | perror_msg_and_skip("listen"); |
Dmitry V. Levin | 47b0dcc | 2013-05-07 23:32:01 +0000 | [diff] [blame] | 71 | |
| 72 | memset(&addr, 0, sizeof addr); |
| 73 | assert(getsockname(0, (struct sockaddr *) &addr, &len) == 0); |
Dmitry V. Levin | c9e2418 | 2015-01-29 15:19:21 +0000 | [diff] [blame] | 74 | if (len > sizeof(addr)) |
| 75 | len = sizeof(addr); |
Dmitry V. Levin | 47b0dcc | 2013-05-07 23:32:01 +0000 | [diff] [blame] | 76 | |
| 77 | pid_t pid = fork(); |
Dmitry V. Levin | 2f5786c | 2016-01-05 23:03:26 +0000 | [diff] [blame] | 78 | if (pid < 0) |
| 79 | perror_msg_and_fail("fork"); |
Dmitry V. Levin | 47b0dcc | 2013-05-07 23:32:01 +0000 | [diff] [blame] | 80 | |
| 81 | if (pid) { |
| 82 | assert(accept(0, (struct sockaddr *) &addr, &len) == 1); |
| 83 | assert(close(0) == 0); |
Dmitry V. Levin | da66e25 | 2015-03-05 17:30:23 +0000 | [diff] [blame] | 84 | assert(kill(pid, SIGUSR1) == 0); |
Dmitry V. Levin | 47b0dcc | 2013-05-07 23:32:01 +0000 | [diff] [blame] | 85 | int status; |
| 86 | assert(waitpid(pid, &status, 0) == pid); |
| 87 | assert(status == 0); |
| 88 | assert(close(1) == 0); |
| 89 | } else { |
Dmitry V. Levin | da66e25 | 2015-03-05 17:30:23 +0000 | [diff] [blame] | 90 | sigset_t set; |
| 91 | sigemptyset(&set); |
| 92 | sigaddset(&set, SIGUSR1); |
| 93 | |
| 94 | assert(sigprocmask(SIG_BLOCK, &set, NULL) == 0); |
| 95 | assert(signal(SIGUSR1, handler) != SIG_ERR); |
Dmitry V. Levin | 71fe62e | 2016-04-04 01:35:28 +0000 | [diff] [blame] | 96 | assert(socket(AF_LOCAL, SOCK_STREAM, 0) == 1); |
Dmitry V. Levin | 47b0dcc | 2013-05-07 23:32:01 +0000 | [diff] [blame] | 97 | assert(close(0) == 0); |
Dmitry V. Levin | 56ef5ef | 2013-05-08 14:03:38 +0000 | [diff] [blame] | 98 | assert(connect(1, (struct sockaddr *) &addr, len) == 0); |
Dmitry V. Levin | da66e25 | 2015-03-05 17:30:23 +0000 | [diff] [blame] | 99 | assert(sigprocmask(SIG_UNBLOCK, &set, NULL) == 0); |
| 100 | assert(pause() == 99); |
| 101 | return 1; |
Dmitry V. Levin | 47b0dcc | 2013-05-07 23:32:01 +0000 | [diff] [blame] | 102 | } |
| 103 | |
Dmitry V. Levin | c9cc4cb | 2015-01-07 20:14:19 +0000 | [diff] [blame] | 104 | unlink(av[1]); |
Dmitry V. Levin | 47b0dcc | 2013-05-07 23:32:01 +0000 | [diff] [blame] | 105 | return 0; |
| 106 | } |