Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #include <string.h> |
| 18 | #include <sys/types.h> |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 19 | #include <sys/socket.h> |
Rom Lemarchand | b58a822 | 2013-01-09 21:31:25 -0800 | [diff] [blame] | 20 | #include <signal.h> |
| 21 | #include <poll.h> |
Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 22 | #include <sys/wait.h> |
| 23 | #include <stdio.h> |
| 24 | #include <stdlib.h> |
| 25 | #include <unistd.h> |
| 26 | #include <errno.h> |
| 27 | #include <fcntl.h> |
| 28 | #include <libgen.h> |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 29 | #include <stdbool.h> |
Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 30 | |
| 31 | #include <logwrap/logwrap.h> |
| 32 | #include "private/android_filesystem_config.h" |
| 33 | #include "cutils/log.h" |
| 34 | |
Rom Lemarchand | b58a822 | 2013-01-09 21:31:25 -0800 | [diff] [blame] | 35 | #define ARRAY_SIZE(x) (sizeof(x) / sizeof(*(x))) |
| 36 | |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 37 | static int signal_fd_write; |
| 38 | |
Rom Lemarchand | 2a46bfa | 2013-01-29 11:44:59 -0800 | [diff] [blame^] | 39 | #define ERROR(fmt, args...) \ |
Rom Lemarchand | 99e1966 | 2013-01-07 15:50:02 -0800 | [diff] [blame] | 40 | do { \ |
Rom Lemarchand | 2a46bfa | 2013-01-29 11:44:59 -0800 | [diff] [blame^] | 41 | fprintf(stderr, fmt, ## args); \ |
| 42 | ALOG(LOG_ERROR, "logwrapper", fmt, ## args); \ |
Rom Lemarchand | 99e1966 | 2013-01-07 15:50:02 -0800 | [diff] [blame] | 43 | } while(0) |
| 44 | |
Rom Lemarchand | 2a46bfa | 2013-01-29 11:44:59 -0800 | [diff] [blame^] | 45 | #define FATAL_CHILD(fmt, args...) \ |
Rom Lemarchand | 99e1966 | 2013-01-07 15:50:02 -0800 | [diff] [blame] | 46 | do { \ |
Rom Lemarchand | 2a46bfa | 2013-01-29 11:44:59 -0800 | [diff] [blame^] | 47 | ERROR(fmt, ## args); \ |
Rom Lemarchand | 99e1966 | 2013-01-07 15:50:02 -0800 | [diff] [blame] | 48 | _exit(-1); \ |
| 49 | } while(0) |
Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 50 | |
Rom Lemarchand | b58a822 | 2013-01-09 21:31:25 -0800 | [diff] [blame] | 51 | static int parent(const char *tag, int parent_read, int signal_fd, pid_t pid, |
Rom Lemarchand | 2a46bfa | 2013-01-29 11:44:59 -0800 | [diff] [blame^] | 52 | int *chld_sts, bool logwrap) { |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 53 | int status = 0; |
Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 54 | char buffer[4096]; |
Rom Lemarchand | b58a822 | 2013-01-09 21:31:25 -0800 | [diff] [blame] | 55 | struct pollfd poll_fds[] = { |
| 56 | [0] = { |
Rom Lemarchand | b58a822 | 2013-01-09 21:31:25 -0800 | [diff] [blame] | 57 | .fd = signal_fd, |
| 58 | .events = POLLIN, |
| 59 | }, |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 60 | [1] = { |
| 61 | .fd = parent_read, |
| 62 | .events = POLLIN, |
| 63 | }, |
Rom Lemarchand | b58a822 | 2013-01-09 21:31:25 -0800 | [diff] [blame] | 64 | }; |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 65 | int rc = 0; |
| 66 | sigset_t chldset; |
Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 67 | |
| 68 | int a = 0; // start index of unprocessed data |
| 69 | int b = 0; // end index of unprocessed data |
| 70 | int sz; |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 71 | bool remote_hung = false; |
| 72 | bool found_child = false; |
Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 73 | |
| 74 | char *btag = basename(tag); |
| 75 | if (!btag) btag = (char*) tag; |
| 76 | |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 77 | sigemptyset(&chldset); |
| 78 | sigaddset(&chldset, SIGCHLD); |
Rom Lemarchand | ed179d2 | 2013-01-16 15:07:30 -0800 | [diff] [blame] | 79 | pthread_sigmask(SIG_UNBLOCK, &chldset, NULL); |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 80 | |
| 81 | while (!found_child) { |
| 82 | if (poll(poll_fds, remote_hung ? 1 : 2, -1) < 0) { |
| 83 | if (errno == EINTR) |
| 84 | continue; |
Rom Lemarchand | 2a46bfa | 2013-01-29 11:44:59 -0800 | [diff] [blame^] | 85 | ERROR("poll failed\n"); |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 86 | rc = -1; |
| 87 | goto err_poll; |
Rom Lemarchand | b58a822 | 2013-01-09 21:31:25 -0800 | [diff] [blame] | 88 | } |
Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 89 | |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 90 | if (!remote_hung) { |
| 91 | if (poll_fds[1].revents & POLLIN) { |
| 92 | sz = read(parent_read, &buffer[b], sizeof(buffer) - 1 - b); |
Rom Lemarchand | b58a822 | 2013-01-09 21:31:25 -0800 | [diff] [blame] | 93 | |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 94 | sz += b; |
| 95 | // Log one line at a time |
| 96 | for (b = 0; b < sz; b++) { |
| 97 | if (buffer[b] == '\r') { |
| 98 | buffer[b] = '\0'; |
| 99 | } else if (buffer[b] == '\n') { |
| 100 | buffer[b] = '\0'; |
Rom Lemarchand | 2a46bfa | 2013-01-29 11:44:59 -0800 | [diff] [blame^] | 101 | if (logwrap) |
Rom Lemarchand | f5200c0 | 2013-01-24 10:57:44 -0800 | [diff] [blame] | 102 | ALOG(LOG_INFO, btag, "%s", &buffer[a]); |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 103 | a = b + 1; |
| 104 | } |
| 105 | } |
| 106 | |
| 107 | if (a == 0 && b == sizeof(buffer) - 1) { |
| 108 | // buffer is full, flush |
Rom Lemarchand | b58a822 | 2013-01-09 21:31:25 -0800 | [diff] [blame] | 109 | buffer[b] = '\0'; |
Rom Lemarchand | 2a46bfa | 2013-01-29 11:44:59 -0800 | [diff] [blame^] | 110 | if (logwrap) |
Rom Lemarchand | f5200c0 | 2013-01-24 10:57:44 -0800 | [diff] [blame] | 111 | ALOG(LOG_INFO, btag, "%s", &buffer[a]); |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 112 | b = 0; |
| 113 | } else if (a != b) { |
| 114 | // Keep left-overs |
| 115 | b -= a; |
| 116 | memmove(buffer, &buffer[a], b); |
| 117 | a = 0; |
| 118 | } else { |
| 119 | a = 0; |
| 120 | b = 0; |
Rom Lemarchand | b58a822 | 2013-01-09 21:31:25 -0800 | [diff] [blame] | 121 | } |
| 122 | } |
| 123 | |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 124 | if (poll_fds[1].revents & POLLHUP) { |
| 125 | remote_hung = true; |
Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 126 | } |
| 127 | } |
| 128 | |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 129 | if (poll_fds[0].revents & POLLIN) { |
| 130 | char tmp[32]; |
| 131 | int ret; |
Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 132 | |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 133 | read(signal_fd, tmp, sizeof(tmp)); |
| 134 | while (!found_child) { |
| 135 | do { |
| 136 | ret = waitpid(-1, &status, WNOHANG); |
| 137 | } while (ret < 0 && errno == EINTR); |
| 138 | |
| 139 | if (ret <= 0) |
| 140 | break; |
| 141 | |
| 142 | found_child = (pid == ret); |
Rom Lemarchand | b58a822 | 2013-01-09 21:31:25 -0800 | [diff] [blame] | 143 | } |
Rom Lemarchand | b58a822 | 2013-01-09 21:31:25 -0800 | [diff] [blame] | 144 | } |
Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 145 | } |
Rom Lemarchand | b58a822 | 2013-01-09 21:31:25 -0800 | [diff] [blame] | 146 | |
Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 147 | // Flush remaining data |
| 148 | if (a != b) { |
| 149 | buffer[b] = '\0'; |
Rom Lemarchand | 2a46bfa | 2013-01-29 11:44:59 -0800 | [diff] [blame^] | 150 | if (logwrap) |
Rom Lemarchand | f5200c0 | 2013-01-24 10:57:44 -0800 | [diff] [blame] | 151 | ALOG(LOG_INFO, btag, "%s", &buffer[a]); |
Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 152 | } |
| 153 | |
Rom Lemarchand | 2a46bfa | 2013-01-29 11:44:59 -0800 | [diff] [blame^] | 154 | if (WIFEXITED(status)) { |
| 155 | if (WEXITSTATUS(status)) |
| 156 | ALOG(LOG_INFO, "logwrapper", "%s terminated by exit(%d)", btag, |
| 157 | WEXITSTATUS(status)); |
| 158 | } else if (WIFSIGNALED(status)) { |
| 159 | ALOG(LOG_INFO, "logwrapper", "%s terminated by signal %d", btag, |
| 160 | WTERMSIG(status)); |
| 161 | } else if (WIFSTOPPED(status)) { |
| 162 | ALOG(LOG_INFO, "logwrapper", "%s stopped by signal %d", btag, |
| 163 | WSTOPSIG(status)); |
Rom Lemarchand | b58a822 | 2013-01-09 21:31:25 -0800 | [diff] [blame] | 164 | } |
| 165 | if (chld_sts != NULL) |
| 166 | *chld_sts = status; |
| 167 | |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 168 | err_poll: |
| 169 | return rc; |
Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 170 | } |
| 171 | |
Rom Lemarchand | 2a46bfa | 2013-01-29 11:44:59 -0800 | [diff] [blame^] | 172 | static void child(int argc, char* argv[], bool logwrap) { |
Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 173 | // create null terminated argv_child array |
| 174 | char* argv_child[argc + 1]; |
| 175 | memcpy(argv_child, argv, argc * sizeof(char *)); |
| 176 | argv_child[argc] = NULL; |
| 177 | |
| 178 | if (execvp(argv_child[0], argv_child)) { |
Rom Lemarchand | 2a46bfa | 2013-01-29 11:44:59 -0800 | [diff] [blame^] | 179 | FATAL_CHILD("executing %s failed: %s\n", argv_child[0], |
Rom Lemarchand | 99e1966 | 2013-01-07 15:50:02 -0800 | [diff] [blame] | 180 | strerror(errno)); |
Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 181 | } |
| 182 | } |
| 183 | |
Rom Lemarchand | 2a46bfa | 2013-01-29 11:44:59 -0800 | [diff] [blame^] | 184 | static void sigchld_handler(int sig) { |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 185 | write(signal_fd_write, &sig, 1); |
| 186 | } |
| 187 | |
Rom Lemarchand | 2a46bfa | 2013-01-29 11:44:59 -0800 | [diff] [blame^] | 188 | int android_fork_execvp(int argc, char* argv[], int *status, bool ignore_int_quit, |
| 189 | bool logwrap) { |
Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 190 | pid_t pid; |
Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 191 | int parent_ptty; |
| 192 | int child_ptty; |
| 193 | char *child_devname = NULL; |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 194 | struct sigaction chldact; |
| 195 | struct sigaction oldchldact; |
Rom Lemarchand | 75c289a | 2013-01-09 10:20:25 -0800 | [diff] [blame] | 196 | struct sigaction intact; |
| 197 | struct sigaction quitact; |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 198 | sigset_t blockset; |
| 199 | sigset_t oldset; |
| 200 | int sockets[2]; |
| 201 | int rc = 0; |
Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 202 | |
| 203 | /* Use ptty instead of socketpair so that STDOUT is not buffered */ |
| 204 | parent_ptty = open("/dev/ptmx", O_RDWR); |
| 205 | if (parent_ptty < 0) { |
Rom Lemarchand | 2a46bfa | 2013-01-29 11:44:59 -0800 | [diff] [blame^] | 206 | ERROR("Cannot create parent ptty\n"); |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 207 | rc = -1; |
| 208 | goto err_open; |
Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 209 | } |
| 210 | |
| 211 | if (grantpt(parent_ptty) || unlockpt(parent_ptty) || |
| 212 | ((child_devname = (char*)ptsname(parent_ptty)) == 0)) { |
Rom Lemarchand | 2a46bfa | 2013-01-29 11:44:59 -0800 | [diff] [blame^] | 213 | ERROR("Problem with /dev/ptmx\n"); |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 214 | rc = -1; |
| 215 | goto err_ptty; |
Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 216 | } |
| 217 | |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 218 | sigemptyset(&blockset); |
Rom Lemarchand | 75c289a | 2013-01-09 10:20:25 -0800 | [diff] [blame] | 219 | sigaddset(&blockset, SIGINT); |
| 220 | sigaddset(&blockset, SIGQUIT); |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 221 | sigaddset(&blockset, SIGCHLD); |
Rom Lemarchand | ed179d2 | 2013-01-16 15:07:30 -0800 | [diff] [blame] | 222 | pthread_sigmask(SIG_BLOCK, &blockset, &oldset); |
Rom Lemarchand | b58a822 | 2013-01-09 21:31:25 -0800 | [diff] [blame] | 223 | |
Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 224 | pid = fork(); |
| 225 | if (pid < 0) { |
Rom Lemarchand | 2a46bfa | 2013-01-29 11:44:59 -0800 | [diff] [blame^] | 226 | ERROR("Failed to fork\n"); |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 227 | rc = -1; |
| 228 | goto err_fork; |
Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 229 | } else if (pid == 0) { |
Rom Lemarchand | ed179d2 | 2013-01-16 15:07:30 -0800 | [diff] [blame] | 230 | pthread_sigmask(SIG_SETMASK, &oldset, NULL); |
Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 231 | close(parent_ptty); |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 232 | |
Rom Lemarchand | b58a822 | 2013-01-09 21:31:25 -0800 | [diff] [blame] | 233 | child_ptty = open(child_devname, O_RDWR); |
Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 234 | if (child_ptty < 0) { |
Rom Lemarchand | 2a46bfa | 2013-01-29 11:44:59 -0800 | [diff] [blame^] | 235 | FATAL_CHILD("Problem with child ptty\n"); |
Rom Lemarchand | f5200c0 | 2013-01-24 10:57:44 -0800 | [diff] [blame] | 236 | return -1; |
Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 237 | } |
| 238 | |
| 239 | // redirect stdout and stderr |
| 240 | dup2(child_ptty, 1); |
| 241 | dup2(child_ptty, 2); |
| 242 | close(child_ptty); |
| 243 | |
Rom Lemarchand | 2a46bfa | 2013-01-29 11:44:59 -0800 | [diff] [blame^] | 244 | child(argc, argv, logwrap); |
Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 245 | } else { |
Rom Lemarchand | 75c289a | 2013-01-09 10:20:25 -0800 | [diff] [blame] | 246 | struct sigaction ignact; |
| 247 | |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 248 | memset(&chldact, 0, sizeof(chldact)); |
| 249 | chldact.sa_handler = sigchld_handler; |
| 250 | chldact.sa_flags = SA_NOCLDSTOP; |
Rom Lemarchand | b58a822 | 2013-01-09 21:31:25 -0800 | [diff] [blame] | 251 | |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 252 | sigaction(SIGCHLD, &chldact, &oldchldact); |
| 253 | if ((!(oldchldact.sa_flags & SA_SIGINFO) && |
| 254 | oldchldact.sa_handler != SIG_DFL && |
| 255 | oldchldact.sa_handler != SIG_IGN) || |
| 256 | ((oldchldact.sa_flags & SA_SIGINFO) && |
| 257 | oldchldact.sa_sigaction != NULL)) { |
| 258 | ALOG(LOG_WARN, "logwrapper", "logwrap replaced the SIGCHLD " |
| 259 | "handler and might cause interaction issues"); |
| 260 | } |
| 261 | |
Rom Lemarchand | 75c289a | 2013-01-09 10:20:25 -0800 | [diff] [blame] | 262 | if (ignore_int_quit) { |
| 263 | memset(&ignact, 0, sizeof(ignact)); |
| 264 | ignact.sa_handler = SIG_IGN; |
| 265 | sigaction(SIGINT, &ignact, &intact); |
| 266 | sigaction(SIGQUIT, &ignact, &quitact); |
| 267 | } |
| 268 | |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 269 | rc = socketpair(AF_UNIX, SOCK_STREAM, 0, sockets); |
| 270 | if (rc == -1) { |
Rom Lemarchand | 2a46bfa | 2013-01-29 11:44:59 -0800 | [diff] [blame^] | 271 | ERROR("socketpair failed: %s\n", strerror(errno)); |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 272 | goto err_socketpair; |
Rom Lemarchand | b58a822 | 2013-01-09 21:31:25 -0800 | [diff] [blame] | 273 | } |
| 274 | |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 275 | fcntl(sockets[0], F_SETFD, FD_CLOEXEC); |
| 276 | fcntl(sockets[0], F_SETFL, O_NONBLOCK); |
| 277 | fcntl(sockets[1], F_SETFD, FD_CLOEXEC); |
| 278 | fcntl(sockets[1], F_SETFL, O_NONBLOCK); |
| 279 | |
| 280 | signal_fd_write = sockets[0]; |
| 281 | |
Rom Lemarchand | 2a46bfa | 2013-01-29 11:44:59 -0800 | [diff] [blame^] | 282 | rc = parent(argv[0], parent_ptty, sockets[1], pid, status, logwrap); |
Rom Lemarchand | b58a822 | 2013-01-09 21:31:25 -0800 | [diff] [blame] | 283 | } |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 284 | |
| 285 | close(sockets[0]); |
| 286 | close(sockets[1]); |
| 287 | err_socketpair: |
Rom Lemarchand | 75c289a | 2013-01-09 10:20:25 -0800 | [diff] [blame] | 288 | if (ignore_int_quit) { |
| 289 | sigaction(SIGINT, &intact, NULL); |
| 290 | sigaction(SIGQUIT, &quitact, NULL); |
| 291 | } |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 292 | sigaction(SIGCHLD, &oldchldact, NULL); |
| 293 | err_fork: |
Rom Lemarchand | ed179d2 | 2013-01-16 15:07:30 -0800 | [diff] [blame] | 294 | pthread_sigmask(SIG_SETMASK, &oldset, NULL); |
Rom Lemarchand | 0cc2cab | 2013-01-16 12:08:04 -0800 | [diff] [blame] | 295 | err_ptty: |
| 296 | close(parent_ptty); |
| 297 | err_open: |
| 298 | return rc; |
Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 299 | } |