[BACK]Return to client.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Annotation of src/usr.bin/tmux/client.c, Revision 1.115

1.115   ! nicm        1: /* $OpenBSD: client.c,v 1.114 2016/10/03 22:52:11 nicm Exp $ */
1.1       nicm        2:
                      3: /*
1.113     nicm        4:  * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
1.1       nicm        5:  *
                      6:  * Permission to use, copy, modify, and distribute this software for any
                      7:  * purpose with or without fee is hereby granted, provided that the above
                      8:  * copyright notice and this permission notice appear in all copies.
                      9:  *
                     10:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
                     11:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
                     12:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
                     13:  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
                     14:  * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
                     15:  * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
                     16:  * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
                     17:  */
                     18:
                     19: #include <sys/types.h>
1.51      nicm       20: #include <sys/file.h>
1.1       nicm       21: #include <sys/socket.h>
                     22: #include <sys/stat.h>
                     23: #include <sys/un.h>
                     24: #include <sys/wait.h>
                     25:
                     26: #include <errno.h>
1.30      nicm       27: #include <event.h>
1.80      nicm       28: #include <fcntl.h>
1.99      nicm       29: #include <imsg.h>
1.85      nicm       30: #include <signal.h>
1.1       nicm       31: #include <stdlib.h>
                     32: #include <string.h>
                     33: #include <unistd.h>
                     34:
                     35: #include "tmux.h"
                     36:
1.114     nicm       37: static struct tmuxproc *client_proc;
                     38: static struct tmuxpeer *client_peer;
                     39: static int              client_flags;
                     40: static struct event     client_stdin;
                     41: static enum {
1.52      nicm       42:        CLIENT_EXIT_NONE,
                     43:        CLIENT_EXIT_DETACHED,
                     44:        CLIENT_EXIT_DETACHED_HUP,
                     45:        CLIENT_EXIT_LOST_TTY,
                     46:        CLIENT_EXIT_TERMINATED,
                     47:        CLIENT_EXIT_LOST_SERVER,
                     48:        CLIENT_EXIT_EXITED,
                     49:        CLIENT_EXIT_SERVER_EXITED,
                     50: } client_exitreason = CLIENT_EXIT_NONE;
1.114     nicm       51: static int              client_exitval;
                     52: static enum msgtype     client_exittype;
                     53: static const char      *client_exitsession;
1.115   ! nicm       54: static const char      *client_execshell;
        !            55: static const char      *client_execcmd;
1.114     nicm       56: static int              client_attached;
                     57:
                     58: static __dead void      client_exec(const char *,const char *);
                     59: static int              client_get_lock(char *);
                     60: static int              client_connect(struct event_base *, const char *, int);
                     61: static void             client_send_identify(const char *, const char *);
                     62: static void             client_stdin_callback(int, short, void *);
                     63: static void             client_write(int, const char *, size_t);
                     64: static void             client_signal(int);
                     65: static void             client_dispatch(struct imsg *, void *);
                     66: static void             client_dispatch_attached(struct imsg *);
                     67: static void             client_dispatch_wait(struct imsg *, const char *);
                     68: static const char      *client_exit_message(void);
1.25      nicm       69:
1.49      nicm       70: /*
                     71:  * Get server create lock. If already held then server start is happening in
1.110     nicm       72:  * another client, so block until the lock is released and return -2 to
                     73:  * retry. Return -1 on failure to continue and start the server anyway.
1.49      nicm       74:  */
1.114     nicm       75: static int
1.49      nicm       76: client_get_lock(char *lockfile)
                     77: {
                     78:        int lockfd;
                     79:
1.110     nicm       80:        log_debug("lock file is %s", lockfile);
                     81:
1.109     nicm       82:        if ((lockfd = open(lockfile, O_WRONLY|O_CREAT, 0600)) == -1) {
1.110     nicm       83:                log_debug("open failed: %s", strerror(errno));
                     84:                return (-1);
1.109     nicm       85:        }
1.49      nicm       86:
1.82      nicm       87:        if (flock(lockfd, LOCK_EX|LOCK_NB) == -1) {
                     88:                log_debug("flock failed: %s", strerror(errno));
                     89:                if (errno != EAGAIN)
                     90:                        return (lockfd);
                     91:                while (flock(lockfd, LOCK_EX) == -1 && errno == EINTR)
1.49      nicm       92:                        /* nothing */;
                     93:                close(lockfd);
1.110     nicm       94:                return (-2);
1.49      nicm       95:        }
1.82      nicm       96:        log_debug("flock succeeded");
1.49      nicm       97:
                     98:        return (lockfd);
                     99: }
                    100:
1.46      nicm      101: /* Connect client to server. */
1.114     nicm      102: static int
1.108     nicm      103: client_connect(struct event_base *base, const char *path, int start_server)
1.1       nicm      104: {
1.26      nicm      105:        struct sockaddr_un      sa;
                    106:        size_t                  size;
1.82      nicm      107:        int                     fd, lockfd = -1, locked = 0;
                    108:        char                   *lockfile = NULL;
1.1       nicm      109:
                    110:        memset(&sa, 0, sizeof sa);
                    111:        sa.sun_family = AF_UNIX;
                    112:        size = strlcpy(sa.sun_path, path, sizeof sa.sun_path);
                    113:        if (size >= sizeof sa.sun_path) {
                    114:                errno = ENAMETOOLONG;
1.46      nicm      115:                return (-1);
1.1       nicm      116:        }
1.82      nicm      117:        log_debug("socket is %s", path);
1.1       nicm      118:
1.49      nicm      119: retry:
1.10      nicm      120:        if ((fd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1)
1.109     nicm      121:                return (-1);
1.1       nicm      122:
1.82      nicm      123:        log_debug("trying connect");
1.109     nicm      124:        if (connect(fd, (struct sockaddr *)&sa, sizeof sa) == -1) {
1.82      nicm      125:                log_debug("connect failed: %s", strerror(errno));
1.49      nicm      126:                if (errno != ECONNREFUSED && errno != ENOENT)
                    127:                        goto failed;
1.46      nicm      128:                if (!start_server)
                    129:                        goto failed;
1.49      nicm      130:                close(fd);
                    131:
1.82      nicm      132:                if (!locked) {
                    133:                        xasprintf(&lockfile, "%s.lock", path);
1.110     nicm      134:                        if ((lockfd = client_get_lock(lockfile)) < 0) {
                    135:                                log_debug("didn't get lock (%d)", lockfd);
                    136:
1.82      nicm      137:                                free(lockfile);
1.110     nicm      138:                                lockfile = NULL;
                    139:
                    140:                                if (lockfd == -2)
                    141:                                        goto retry;
1.82      nicm      142:                        }
1.110     nicm      143:                        log_debug("got lock (%d)", lockfd);
1.82      nicm      144:
                    145:                        /*
                    146:                         * Always retry at least once, even if we got the lock,
                    147:                         * because another client could have taken the lock,
                    148:                         * started the server and released the lock between our
                    149:                         * connect() and flock().
                    150:                         */
                    151:                        locked = 1;
1.49      nicm      152:                        goto retry;
1.78      nicm      153:                }
1.82      nicm      154:
1.110     nicm      155:                if (lockfd >= 0 && unlink(path) != 0 && errno != ENOENT) {
1.78      nicm      156:                        free(lockfile);
                    157:                        close(lockfd);
1.49      nicm      158:                        return (-1);
1.78      nicm      159:                }
1.92      nicm      160:                fd = server_start(base, lockfd, lockfile);
1.82      nicm      161:        }
1.95      nicm      162:
1.110     nicm      163:        if (locked && lockfd >= 0) {
1.58      nicm      164:                free(lockfile);
1.49      nicm      165:                close(lockfd);
1.1       nicm      166:        }
1.47      nicm      167:        setblocking(fd, 0);
1.46      nicm      168:        return (fd);
                    169:
                    170: failed:
1.95      nicm      171:        if (locked) {
                    172:                free(lockfile);
                    173:                close(lockfd);
                    174:        }
1.46      nicm      175:        close(fd);
                    176:        return (-1);
                    177: }
                    178:
1.52      nicm      179: /* Get exit string from reason number. */
                    180: const char *
                    181: client_exit_message(void)
                    182: {
1.73      nicm      183:        static char msg[256];
                    184:
1.52      nicm      185:        switch (client_exitreason) {
                    186:        case CLIENT_EXIT_NONE:
                    187:                break;
                    188:        case CLIENT_EXIT_DETACHED:
1.73      nicm      189:                if (client_exitsession != NULL) {
                    190:                        xsnprintf(msg, sizeof msg, "detached "
                    191:                            "(from session %s)", client_exitsession);
                    192:                        return (msg);
                    193:                }
1.52      nicm      194:                return ("detached");
                    195:        case CLIENT_EXIT_DETACHED_HUP:
1.73      nicm      196:                if (client_exitsession != NULL) {
                    197:                        xsnprintf(msg, sizeof msg, "detached and SIGHUP "
                    198:                            "(from session %s)", client_exitsession);
                    199:                        return (msg);
                    200:                }
1.52      nicm      201:                return ("detached and SIGHUP");
                    202:        case CLIENT_EXIT_LOST_TTY:
                    203:                return ("lost tty");
                    204:        case CLIENT_EXIT_TERMINATED:
                    205:                return ("terminated");
                    206:        case CLIENT_EXIT_LOST_SERVER:
                    207:                return ("lost server");
                    208:        case CLIENT_EXIT_EXITED:
                    209:                return ("exited");
                    210:        case CLIENT_EXIT_SERVER_EXITED:
                    211:                return ("server exited");
                    212:        }
                    213:        return ("unknown reason");
                    214: }
                    215:
1.46      nicm      216: /* Client main loop. */
                    217: int
1.111     nicm      218: client_main(struct event_base *base, int argc, char **argv, int flags,
                    219:     const char *shellcmd)
1.46      nicm      220: {
                    221:        struct cmd              *cmd;
                    222:        struct cmd_list         *cmdlist;
1.70      nicm      223:        struct msg_command_data *data;
1.98      nicm      224:        int                      cmdflags, fd, i;
                    225:        const char              *ttynam, *cwd;
1.48      nicm      226:        pid_t                    ppid;
1.46      nicm      227:        enum msgtype             msg;
1.98      nicm      228:        char                    *cause, path[PATH_MAX];
1.56      nicm      229:        struct termios           tio, saved_tio;
1.70      nicm      230:        size_t                   size;
1.46      nicm      231:
1.99      nicm      232:        /* Ignore SIGCHLD now or daemon() in the server will leave a zombie. */
                    233:        signal(SIGCHLD, SIG_IGN);
                    234:
1.93      nicm      235:        /* Save the flags. */
                    236:        client_flags = flags;
                    237:
1.46      nicm      238:        /* Set up the initial command. */
                    239:        cmdflags = 0;
1.111     nicm      240:        if (shellcmd != NULL) {
1.46      nicm      241:                msg = MSG_SHELL;
                    242:                cmdflags = CMD_STARTSERVER;
                    243:        } else if (argc == 0) {
                    244:                msg = MSG_COMMAND;
1.89      nicm      245:                cmdflags = CMD_STARTSERVER;
1.46      nicm      246:        } else {
                    247:                msg = MSG_COMMAND;
                    248:
                    249:                /*
                    250:                 * It sucks parsing the command string twice (in client and
                    251:                 * later in server) but it is necessary to get the start server
                    252:                 * flag.
                    253:                 */
1.62      nicm      254:                cmdlist = cmd_list_parse(argc, argv, NULL, 0, &cause);
                    255:                if (cmdlist == NULL) {
1.59      nicm      256:                        fprintf(stderr, "%s\n", cause);
1.46      nicm      257:                        return (1);
                    258:                }
                    259:                cmdflags &= ~CMD_STARTSERVER;
                    260:                TAILQ_FOREACH(cmd, &cmdlist->list, qentry) {
                    261:                        if (cmd->entry->flags & CMD_STARTSERVER)
                    262:                                cmdflags |= CMD_STARTSERVER;
                    263:                }
                    264:                cmd_list_free(cmdlist);
                    265:        }
                    266:
1.109     nicm      267:        /* Create client process structure (starts logging). */
                    268:        client_proc = proc_start("client", base, 0, client_signal);
                    269:
1.82      nicm      270:        /* Initialize the client socket and start the server. */
1.92      nicm      271:        fd = client_connect(base, socket_path, cmdflags & CMD_STARTSERVER);
1.46      nicm      272:        if (fd == -1) {
1.87      nicm      273:                if (errno == ECONNREFUSED) {
                    274:                        fprintf(stderr, "no server running on %s\n",
                    275:                            socket_path);
                    276:                } else {
                    277:                        fprintf(stderr, "error connecting to %s (%s)\n",
                    278:                            socket_path, strerror(errno));
                    279:                }
1.46      nicm      280:                return (1);
                    281:        }
1.111     nicm      282:        client_peer = proc_add_peer(client_proc, fd, client_dispatch,
                    283:            (void *)shellcmd);
1.99      nicm      284:
1.97      nicm      285:        /* Save these before pledge(). */
1.102     nicm      286:        if ((cwd = getcwd(path, sizeof path)) == NULL) {
                    287:                if ((cwd = find_home()) == NULL)
                    288:                        cwd = "/";
                    289:        }
1.97      nicm      290:        if ((ttynam = ttyname(STDIN_FILENO)) == NULL)
                    291:                ttynam = "";
                    292:
                    293:        /*
                    294:         * Drop privileges for client. "proc exec" is needed for -c and for
                    295:         * locking (which uses system(3)).
                    296:         *
                    297:         * "tty" is needed to restore termios(4) and also for some reason -CC
                    298:         * does not work properly without it (input is not recognised).
                    299:         *
                    300:         * "sendfd" is dropped later in client_dispatch_wait().
                    301:         */
1.105     nicm      302:        if (pledge("stdio unix sendfd proc exec tty", NULL) != 0)
1.97      nicm      303:                fatal("pledge failed");
                    304:
                    305:        /* Free stuff that is not used in the client. */
1.100     nicm      306:        options_free(global_options);
                    307:        options_free(global_s_options);
                    308:        options_free(global_w_options);
1.101     nicm      309:        environ_free(global_environ);
1.46      nicm      310:
1.54      nicm      311:        /* Create stdin handler. */
                    312:        setblocking(STDIN_FILENO, 0);
                    313:        event_set(&client_stdin, STDIN_FILENO, EV_READ|EV_PERSIST,
                    314:            client_stdin_callback, NULL);
1.93      nicm      315:        if (client_flags & CLIENT_CONTROLCONTROL) {
1.107     nicm      316:                if (tcgetattr(STDIN_FILENO, &saved_tio) != 0)
                    317:                        fatal("tcgetattr failed");
1.56      nicm      318:                cfmakeraw(&tio);
                    319:                tio.c_iflag = ICRNL|IXANY;
                    320:                tio.c_oflag = OPOST|ONLCR;
                    321:                tio.c_lflag = NOKERNINFO;
                    322:                tio.c_cflag = CREAD|CS8|HUPCL;
                    323:                tio.c_cc[VMIN] = 1;
                    324:                tio.c_cc[VTIME] = 0;
                    325:                cfsetispeed(&tio, cfgetispeed(&saved_tio));
                    326:                cfsetospeed(&tio, cfgetospeed(&saved_tio));
                    327:                tcsetattr(STDIN_FILENO, TCSANOW, &tio);
                    328:        }
1.1       nicm      329:
1.71      nicm      330:        /* Send identify messages. */
1.98      nicm      331:        client_send_identify(ttynam, cwd);
1.1       nicm      332:
1.46      nicm      333:        /* Send first command. */
                    334:        if (msg == MSG_COMMAND) {
1.70      nicm      335:                /* How big is the command? */
                    336:                size = 0;
                    337:                for (i = 0; i < argc; i++)
                    338:                        size += strlen(argv[i]) + 1;
                    339:                data = xmalloc((sizeof *data) + size);
1.46      nicm      340:
                    341:                /* Prepare command for server. */
1.70      nicm      342:                data->argc = argc;
1.83      nicm      343:                if (cmd_pack_argv(argc, argv, (char *)(data + 1), size) != 0) {
1.55      nicm      344:                        fprintf(stderr, "command too long\n");
1.70      nicm      345:                        free(data);
1.46      nicm      346:                        return (1);
                    347:                }
1.70      nicm      348:                size += sizeof *data;
1.46      nicm      349:
1.70      nicm      350:                /* Send the command. */
1.99      nicm      351:                if (proc_send(client_peer, msg, -1, data, size) != 0) {
1.70      nicm      352:                        fprintf(stderr, "failed to send command\n");
                    353:                        free(data);
                    354:                        return (1);
                    355:                }
                    356:                free(data);
1.46      nicm      357:        } else if (msg == MSG_SHELL)
1.99      nicm      358:                proc_send(client_peer, msg, -1, NULL, 0);
1.1       nicm      359:
1.99      nicm      360:        /* Start main loop. */
                    361:        proc_loop(client_proc, NULL);
1.46      nicm      362:
1.115   ! nicm      363:        /* Run command if user requested exec, instead of exiting. */
        !           364:        if (client_exittype == MSG_EXEC) {
        !           365:                if (client_flags & CLIENT_CONTROLCONTROL)
        !           366:                        tcsetattr(STDOUT_FILENO, TCSAFLUSH, &saved_tio);
        !           367:                clear_signals(0);
        !           368:                client_exec(client_execshell, client_execcmd);
        !           369:        }
        !           370:
1.46      nicm      371:        /* Print the exit message, if any, and exit. */
1.48      nicm      372:        if (client_attached) {
1.93      nicm      373:                if (client_exitreason != CLIENT_EXIT_NONE)
1.52      nicm      374:                        printf("[%s]\n", client_exit_message());
1.48      nicm      375:
                    376:                ppid = getppid();
                    377:                if (client_exittype == MSG_DETACHKILL && ppid > 1)
                    378:                        kill(ppid, SIGHUP);
1.93      nicm      379:        } else if (client_flags & CLIENT_CONTROLCONTROL) {
1.68      nicm      380:                if (client_exitreason != CLIENT_EXIT_NONE)
                    381:                        printf("%%exit %s\n", client_exit_message());
                    382:                else
                    383:                        printf("%%exit\n");
                    384:                printf("\033\\");
1.56      nicm      385:                tcsetattr(STDOUT_FILENO, TCSAFLUSH, &saved_tio);
1.112     nicm      386:        } else if (client_exitreason != CLIENT_EXIT_NONE)
1.109     nicm      387:                fprintf(stderr, "%s\n", client_exit_message());
1.54      nicm      388:        setblocking(STDIN_FILENO, 1);
1.46      nicm      389:        return (client_exitval);
1.1       nicm      390: }
                    391:
1.71      nicm      392: /* Send identify messages to server. */
1.114     nicm      393: static void
1.98      nicm      394: client_send_identify(const char *ttynam, const char *cwd)
1.26      nicm      395: {
1.90      nicm      396:        const char       *s;
1.71      nicm      397:        char            **ss;
1.91      nicm      398:        size_t            sslen;
1.93      nicm      399:        int               fd, flags = client_flags;
1.90      nicm      400:        pid_t             pid;
1.71      nicm      401:
1.99      nicm      402:        proc_send(client_peer, MSG_IDENTIFY_FLAGS, -1, &flags, sizeof flags);
1.71      nicm      403:
                    404:        if ((s = getenv("TERM")) == NULL)
                    405:                s = "";
1.99      nicm      406:        proc_send(client_peer, MSG_IDENTIFY_TERM, -1, s, strlen(s) + 1);
1.71      nicm      407:
1.107     nicm      408:        proc_send(client_peer, MSG_IDENTIFY_TTYNAME, -1, ttynam,
                    409:            strlen(ttynam) + 1);
1.99      nicm      410:        proc_send(client_peer, MSG_IDENTIFY_CWD, -1, cwd, strlen(cwd) + 1);
1.26      nicm      411:
1.50      nicm      412:        if ((fd = dup(STDIN_FILENO)) == -1)
                    413:                fatal("dup failed");
1.99      nicm      414:        proc_send(client_peer, MSG_IDENTIFY_STDIN, fd, NULL, 0);
1.90      nicm      415:
                    416:        pid = getpid();
1.99      nicm      417:        proc_send(client_peer, MSG_IDENTIFY_CLIENTPID, -1, &pid, sizeof pid);
1.26      nicm      418:
1.91      nicm      419:        for (ss = environ; *ss != NULL; ss++) {
                    420:                sslen = strlen(*ss) + 1;
1.107     nicm      421:                if (sslen > MAX_IMSGSIZE - IMSG_HEADER_SIZE)
                    422:                        continue;
                    423:                proc_send(client_peer, MSG_IDENTIFY_ENVIRON, -1, *ss, sslen);
1.91      nicm      424:        }
1.75      nicm      425:
1.99      nicm      426:        proc_send(client_peer, MSG_IDENTIFY_DONE, -1, NULL, 0);
1.30      nicm      427: }
                    428:
1.54      nicm      429: /* Callback for client stdin read events. */
1.114     nicm      430: static void
1.106     nicm      431: client_stdin_callback(__unused int fd, __unused short events,
                    432:     __unused void *arg)
1.54      nicm      433: {
                    434:        struct msg_stdin_data   data;
                    435:
                    436:        data.size = read(STDIN_FILENO, data.data, sizeof data.data);
                    437:        if (data.size < 0 && (errno == EINTR || errno == EAGAIN))
                    438:                return;
                    439:
1.99      nicm      440:        proc_send(client_peer, MSG_STDIN, -1, &data, sizeof data);
1.54      nicm      441:        if (data.size <= 0)
                    442:                event_del(&client_stdin);
                    443: }
                    444:
1.57      nicm      445: /* Force write to file descriptor. */
1.114     nicm      446: static void
1.57      nicm      447: client_write(int fd, const char *data, size_t size)
                    448: {
                    449:        ssize_t used;
                    450:
                    451:        while (size != 0) {
                    452:                used = write(fd, data, size);
                    453:                if (used == -1) {
                    454:                        if (errno == EINTR || errno == EAGAIN)
                    455:                                continue;
                    456:                        break;
                    457:                }
                    458:                data += used;
                    459:                size -= used;
                    460:        }
                    461: }
                    462:
1.93      nicm      463: /* Run command in shell; used for -c. */
1.114     nicm      464: static __dead void
1.111     nicm      465: client_exec(const char *shell, const char *shellcmd)
1.93      nicm      466: {
                    467:        const char      *name, *ptr;
                    468:        char            *argv0;
                    469:
1.111     nicm      470:        log_debug("shell %s, command %s", shell, shellcmd);
1.93      nicm      471:
                    472:        ptr = strrchr(shell, '/');
                    473:        if (ptr != NULL && *(ptr + 1) != '\0')
                    474:                name = ptr + 1;
                    475:        else
                    476:                name = shell;
                    477:        if (client_flags & CLIENT_LOGIN)
                    478:                xasprintf(&argv0, "-%s", name);
                    479:        else
                    480:                xasprintf(&argv0, "%s", name);
                    481:        setenv("SHELL", shell, 1);
                    482:
                    483:        setblocking(STDIN_FILENO, 1);
                    484:        setblocking(STDOUT_FILENO, 1);
                    485:        setblocking(STDERR_FILENO, 1);
                    486:        closefrom(STDERR_FILENO + 1);
                    487:
1.111     nicm      488:        execl(shell, argv0, "-c", shellcmd, (char *) NULL);
1.93      nicm      489:        fatal("execl failed");
                    490: }
                    491:
1.99      nicm      492: /* Callback to handle signals in the client. */
1.114     nicm      493: static void
1.99      nicm      494: client_signal(int sig)
                    495: {
                    496:        struct sigaction sigact;
                    497:        int              status;
                    498:
                    499:        if (sig == SIGCHLD)
                    500:                waitpid(WAIT_ANY, &status, WNOHANG);
                    501:        else if (!client_attached) {
                    502:                if (sig == SIGTERM)
                    503:                        proc_exit(client_proc);
                    504:        } else {
                    505:                switch (sig) {
                    506:                case SIGHUP:
                    507:                        client_exitreason = CLIENT_EXIT_LOST_TTY;
                    508:                        client_exitval = 1;
                    509:                        proc_send(client_peer, MSG_EXITING, -1, NULL, 0);
                    510:                        break;
                    511:                case SIGTERM:
                    512:                        client_exitreason = CLIENT_EXIT_TERMINATED;
                    513:                        client_exitval = 1;
                    514:                        proc_send(client_peer, MSG_EXITING, -1, NULL, 0);
                    515:                        break;
                    516:                case SIGWINCH:
                    517:                        proc_send(client_peer, MSG_RESIZE, -1, NULL, 0);
                    518:                        break;
                    519:                case SIGCONT:
                    520:                        memset(&sigact, 0, sizeof sigact);
                    521:                        sigemptyset(&sigact.sa_mask);
                    522:                        sigact.sa_flags = SA_RESTART;
                    523:                        sigact.sa_handler = SIG_IGN;
                    524:                        if (sigaction(SIGTSTP, &sigact, NULL) != 0)
                    525:                                fatal("sigaction failed");
                    526:                        proc_send(client_peer, MSG_WAKEUP, -1, NULL, 0);
                    527:                        break;
                    528:                }
                    529:        }
                    530: }
                    531:
                    532: /* Callback for client read events. */
1.114     nicm      533: static void
1.111     nicm      534: client_dispatch(struct imsg *imsg, void *arg)
1.99      nicm      535: {
                    536:        if (imsg == NULL) {
                    537:                client_exitreason = CLIENT_EXIT_LOST_SERVER;
                    538:                client_exitval = 1;
1.109     nicm      539:                proc_exit(client_proc);
                    540:                return;
                    541:        }
                    542:
                    543:        if (client_attached)
1.99      nicm      544:                client_dispatch_attached(imsg);
                    545:        else
1.111     nicm      546:                client_dispatch_wait(imsg, arg);
1.99      nicm      547: }
                    548:
1.46      nicm      549: /* Dispatch imsgs when in wait state (before MSG_READY). */
1.114     nicm      550: static void
1.111     nicm      551: client_dispatch_wait(struct imsg *imsg, const char *shellcmd)
1.46      nicm      552: {
1.69      nicm      553:        char                    *data;
1.99      nicm      554:        ssize_t                  datalen;
1.69      nicm      555:        struct msg_stdout_data   stdoutdata;
                    556:        struct msg_stderr_data   stderrdata;
                    557:        int                      retval;
1.97      nicm      558:        static int               pledge_applied;
                    559:
                    560:        /*
                    561:         * "sendfd" is no longer required once all of the identify messages
                    562:         * have been sent. We know the server won't send us anything until that
                    563:         * point (because we don't ask it to), so we can drop "sendfd" once we
                    564:         * get the first message from the server.
                    565:         */
                    566:        if (!pledge_applied) {
1.105     nicm      567:                if (pledge("stdio unix proc exec tty", NULL) != 0)
1.97      nicm      568:                        fatal("pledge failed");
                    569:                pledge_applied = 1;
                    570:        };
1.46      nicm      571:
1.99      nicm      572:        data = imsg->data;
                    573:        datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
1.60      nicm      574:
1.99      nicm      575:        switch (imsg->hdr.type) {
                    576:        case MSG_EXIT:
                    577:        case MSG_SHUTDOWN:
                    578:                if (datalen != sizeof retval && datalen != 0)
                    579:                        fatalx("bad MSG_EXIT size");
                    580:                if (datalen == sizeof retval) {
                    581:                        memcpy(&retval, data, sizeof retval);
                    582:                        client_exitval = retval;
                    583:                }
                    584:                proc_exit(client_proc);
                    585:                break;
                    586:        case MSG_READY:
                    587:                if (datalen != 0)
                    588:                        fatalx("bad MSG_READY size");
1.54      nicm      589:
1.99      nicm      590:                event_del(&client_stdin);
                    591:                client_attached = 1;
                    592:                proc_send(client_peer, MSG_RESIZE, -1, NULL, 0);
                    593:                break;
                    594:        case MSG_STDIN:
                    595:                if (datalen != 0)
                    596:                        fatalx("bad MSG_STDIN size");
1.54      nicm      597:
1.99      nicm      598:                event_add(&client_stdin, NULL);
                    599:                break;
                    600:        case MSG_STDOUT:
                    601:                if (datalen != sizeof stdoutdata)
                    602:                        fatalx("bad MSG_STDOUT size");
                    603:                memcpy(&stdoutdata, data, sizeof stdoutdata);
1.46      nicm      604:
1.99      nicm      605:                client_write(STDOUT_FILENO, stdoutdata.data,
                    606:                    stdoutdata.size);
                    607:                break;
                    608:        case MSG_STDERR:
                    609:                if (datalen != sizeof stderrdata)
                    610:                        fatalx("bad MSG_STDERR size");
                    611:                memcpy(&stderrdata, data, sizeof stderrdata);
1.46      nicm      612:
1.99      nicm      613:                client_write(STDERR_FILENO, stderrdata.data,
                    614:                    stderrdata.size);
                    615:                break;
                    616:        case MSG_VERSION:
                    617:                if (datalen != 0)
                    618:                        fatalx("bad MSG_VERSION size");
                    619:
                    620:                fprintf(stderr, "protocol version mismatch "
                    621:                    "(client %d, server %u)\n", PROTOCOL_VERSION,
1.103     nicm      622:                    imsg->hdr.peerid & 0xff);
1.99      nicm      623:                client_exitval = 1;
                    624:                proc_exit(client_proc);
                    625:                break;
                    626:        case MSG_SHELL:
                    627:                if (datalen == 0 || data[datalen - 1] != '\0')
                    628:                        fatalx("bad MSG_SHELL string");
                    629:
                    630:                clear_signals(0);
1.111     nicm      631:                client_exec(data, shellcmd);
1.99      nicm      632:                /* NOTREACHED */
                    633:        case MSG_DETACH:
                    634:        case MSG_DETACHKILL:
                    635:                proc_send(client_peer, MSG_EXITING, -1, NULL, 0);
                    636:                break;
                    637:        case MSG_EXITED:
                    638:                proc_exit(client_proc);
                    639:                break;
1.46      nicm      640:        }
                    641: }
                    642:
                    643: /* Dispatch imsgs in attached state (after MSG_READY). */
1.114     nicm      644: static void
1.99      nicm      645: client_dispatch_attached(struct imsg *imsg)
1.9       nicm      646: {
1.69      nicm      647:        struct sigaction         sigact;
                    648:        char                    *data;
1.99      nicm      649:        ssize_t                  datalen;
1.9       nicm      650:
1.99      nicm      651:        data = imsg->data;
                    652:        datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
1.12      nicm      653:
1.99      nicm      654:        switch (imsg->hdr.type) {
                    655:        case MSG_DETACH:
                    656:        case MSG_DETACHKILL:
                    657:                if (datalen == 0 || data[datalen - 1] != '\0')
                    658:                        fatalx("bad MSG_DETACH string");
                    659:
                    660:                client_exitsession = xstrdup(data);
                    661:                client_exittype = imsg->hdr.type;
                    662:                if (imsg->hdr.type == MSG_DETACHKILL)
                    663:                        client_exitreason = CLIENT_EXIT_DETACHED_HUP;
                    664:                else
                    665:                        client_exitreason = CLIENT_EXIT_DETACHED;
1.115   ! nicm      666:                proc_send(client_peer, MSG_EXITING, -1, NULL, 0);
        !           667:                break;
        !           668:        case MSG_EXEC:
        !           669:                if (datalen == 0 || data[datalen - 1] != '\0' ||
        !           670:                    strlen(data) + 1 == (size_t)datalen)
        !           671:                        fatalx("bad MSG_EXEC string");
        !           672:                client_execcmd = xstrdup(data);
        !           673:                client_execshell = xstrdup(data + strlen(data) + 1);
        !           674:
        !           675:                client_exittype = imsg->hdr.type;
1.99      nicm      676:                proc_send(client_peer, MSG_EXITING, -1, NULL, 0);
                    677:                break;
                    678:        case MSG_EXIT:
                    679:                if (datalen != 0 && datalen != sizeof (int))
                    680:                        fatalx("bad MSG_EXIT size");
1.9       nicm      681:
1.99      nicm      682:                proc_send(client_peer, MSG_EXITING, -1, NULL, 0);
                    683:                client_exitreason = CLIENT_EXIT_EXITED;
                    684:                break;
                    685:        case MSG_EXITED:
                    686:                if (datalen != 0)
                    687:                        fatalx("bad MSG_EXITED size");
1.9       nicm      688:
1.99      nicm      689:                proc_exit(client_proc);
                    690:                break;
                    691:        case MSG_SHUTDOWN:
                    692:                if (datalen != 0)
                    693:                        fatalx("bad MSG_SHUTDOWN size");
                    694:
                    695:                proc_send(client_peer, MSG_EXITING, -1, NULL, 0);
                    696:                client_exitreason = CLIENT_EXIT_SERVER_EXITED;
                    697:                client_exitval = 1;
                    698:                break;
                    699:        case MSG_SUSPEND:
                    700:                if (datalen != 0)
                    701:                        fatalx("bad MSG_SUSPEND size");
                    702:
                    703:                memset(&sigact, 0, sizeof sigact);
                    704:                sigemptyset(&sigact.sa_mask);
                    705:                sigact.sa_flags = SA_RESTART;
                    706:                sigact.sa_handler = SIG_DFL;
                    707:                if (sigaction(SIGTSTP, &sigact, NULL) != 0)
                    708:                        fatal("sigaction failed");
                    709:                kill(getpid(), SIGTSTP);
                    710:                break;
                    711:        case MSG_LOCK:
                    712:                if (datalen == 0 || data[datalen - 1] != '\0')
                    713:                        fatalx("bad MSG_LOCK string");
1.9       nicm      714:
1.99      nicm      715:                system(data);
                    716:                proc_send(client_peer, MSG_UNLOCK, -1, NULL, 0);
                    717:                break;
1.9       nicm      718:        }
1.1       nicm      719: }