[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.41

1.41    ! nicm        1: /* $OpenBSD: client.c,v 1.40 2010/06/05 16:29:45 nicm Exp $ */
1.1       nicm        2:
                      3: /*
                      4:  * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
                      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>
                     20: #include <sys/socket.h>
                     21: #include <sys/stat.h>
                     22: #include <sys/un.h>
                     23: #include <sys/wait.h>
                     24:
                     25: #include <errno.h>
1.30      nicm       26: #include <event.h>
1.1       nicm       27: #include <fcntl.h>
                     28: #include <pwd.h>
                     29: #include <stdlib.h>
                     30: #include <string.h>
                     31: #include <syslog.h>
                     32: #include <unistd.h>
                     33:
                     34: #include "tmux.h"
                     35:
1.25      nicm       36: struct imsgbuf client_ibuf;
1.30      nicm       37: struct event   client_event;
1.25      nicm       38: const char     *client_exitmsg;
1.32      nicm       39: int            client_exitval;
1.1       nicm       40:
1.30      nicm       41: void           client_send_identify(int);
                     42: void           client_send_environ(void);
                     43: void           client_write_server(enum msgtype, void *, size_t);
1.31      nicm       44: void           client_update_event(void);
1.30      nicm       45: void           client_signal(int, short, void *);
                     46: void           client_callback(int, short, void *);
                     47: int            client_dispatch(void);
1.25      nicm       48:
                     49: struct imsgbuf *
                     50: client_init(char *path, int cmdflags, int flags)
1.1       nicm       51: {
1.26      nicm       52:        struct sockaddr_un      sa;
                     53:        size_t                  size;
                     54:        int                     fd, mode;
                     55:        char                    rpathbuf[MAXPATHLEN];
1.2       nicm       56:
                     57:        if (realpath(path, rpathbuf) == NULL)
                     58:                strlcpy(rpathbuf, path, sizeof rpathbuf);
                     59:        setproctitle("client (%s)", rpathbuf);
1.1       nicm       60:
                     61:        memset(&sa, 0, sizeof sa);
                     62:        sa.sun_family = AF_UNIX;
                     63:        size = strlcpy(sa.sun_path, path, sizeof sa.sun_path);
                     64:        if (size >= sizeof sa.sun_path) {
                     65:                errno = ENAMETOOLONG;
                     66:                goto not_found;
                     67:        }
                     68:
1.10      nicm       69:        if ((fd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1)
1.18      nicm       70:                fatal("socket failed");
1.1       nicm       71:
1.10      nicm       72:        if (connect(fd, (struct sockaddr *) &sa, SUN_LEN(&sa)) == -1) {
1.28      nicm       73:                if (!(cmdflags & CMD_STARTSERVER))
                     74:                        goto not_found;
                     75:                switch (errno) {
                     76:                case ECONNREFUSED:
                     77:                        if (unlink(path) != 0)
1.1       nicm       78:                                goto not_found;
1.28      nicm       79:                        /* FALLTHROUGH */
                     80:                case ENOENT:
1.10      nicm       81:                        if ((fd = server_start(path)) == -1)
1.1       nicm       82:                                goto start_failed;
                     83:                        goto server_started;
                     84:                }
                     85:                goto not_found;
                     86:        }
                     87:
                     88: server_started:
1.10      nicm       89:        if ((mode = fcntl(fd, F_GETFL)) == -1)
1.1       nicm       90:                fatal("fcntl failed");
1.10      nicm       91:        if (fcntl(fd, F_SETFL, mode|O_NONBLOCK) == -1)
1.22      nicm       92:                fatal("fcntl failed");
                     93:        if (fcntl(fd, F_SETFD, FD_CLOEXEC) == -1)
1.1       nicm       94:                fatal("fcntl failed");
1.25      nicm       95:        imsg_init(&client_ibuf, fd);
1.1       nicm       96:
1.11      nicm       97:        if (cmdflags & CMD_SENDENVIRON)
1.25      nicm       98:                client_send_environ();
1.26      nicm       99:        if (isatty(STDIN_FILENO))
                    100:                client_send_identify(flags);
1.1       nicm      101:
1.25      nicm      102:        return (&client_ibuf);
1.1       nicm      103:
                    104: start_failed:
                    105:        log_warnx("server failed to start");
1.25      nicm      106:        return (NULL);
1.1       nicm      107:
                    108: not_found:
                    109:        log_warn("server not found");
1.25      nicm      110:        return (NULL);
1.1       nicm      111: }
                    112:
1.11      nicm      113: void
1.26      nicm      114: client_send_identify(int flags)
                    115: {
                    116:        struct msg_identify_data        data;
                    117:        char                           *term;
                    118:        int                             fd;
                    119:
                    120:        data.flags = flags;
                    121:
                    122:        if (getcwd(data.cwd, sizeof data.cwd) == NULL)
                    123:                *data.cwd = '\0';
1.35      nicm      124:
1.26      nicm      125:        term = getenv("TERM");
                    126:        if (term == NULL ||
                    127:            strlcpy(data.term, term, sizeof data.term) >= sizeof data.term)
                    128:                *data.term = '\0';
                    129:
                    130:        if ((fd = dup(STDIN_FILENO)) == -1)
                    131:                fatal("dup failed");
                    132:        imsg_compose(&client_ibuf,
                    133:            MSG_IDENTIFY, PROTOCOL_VERSION, -1, fd, &data, sizeof data);
                    134: }
                    135:
                    136: void
1.25      nicm      137: client_send_environ(void)
1.11      nicm      138: {
1.26      nicm      139:        struct msg_environ_data data;
1.11      nicm      140:        char                  **var;
                    141:
1.35      nicm      142:        for (var = environ; *var != NULL; var++) {
1.11      nicm      143:                if (strlcpy(data.var, *var, sizeof data.var) >= sizeof data.var)
                    144:                        continue;
1.25      nicm      145:                client_write_server(MSG_ENVIRON, &data, sizeof data);
1.11      nicm      146:        }
                    147: }
                    148:
1.25      nicm      149: void
                    150: client_write_server(enum msgtype type, void *buf, size_t len)
                    151: {
1.35      nicm      152:        imsg_compose(&client_ibuf, type, PROTOCOL_VERSION, -1, -1, buf, len);
1.25      nicm      153: }
                    154:
1.31      nicm      155: void
                    156: client_update_event(void)
                    157: {
                    158:        short   events;
                    159:
                    160:        event_del(&client_event);
                    161:        events = EV_READ;
                    162:        if (client_ibuf.w.queued > 0)
                    163:                events |= EV_WRITE;
                    164:        event_set(&client_event, client_ibuf.fd, events, client_callback, NULL);
                    165:        event_add(&client_event, NULL);
                    166: }
                    167:
1.25      nicm      168: __dead void
                    169: client_main(void)
1.1       nicm      170: {
1.30      nicm      171:        logfile("client");
                    172:
                    173:        /* Note: event_init() has already been called. */
                    174:
1.35      nicm      175:        /* Set up signals. */
1.38      nicm      176:        set_signals(client_signal);
1.41    ! nicm      177:
        !           178:        /*
        !           179:         * Send a resize message immediately in case the terminal size has
        !           180:         * changed between the identify message to the server and the MSG_READY
        !           181:         * telling us to move into the client code.
        !           182:         */
        !           183:         client_write_server(MSG_RESIZE, NULL, 0);
1.1       nicm      184:
1.17      nicm      185:        /*
                    186:         * imsg_read in the first client poll loop (before the terminal has
1.30      nicm      187:         * been initialised) may have read messages into the buffer after the
                    188:         * MSG_READY switched to here. Process anything outstanding now to
                    189:         * avoid hanging waiting for messages that have already arrived.
1.17      nicm      190:         */
1.25      nicm      191:        if (client_dispatch() != 0)
1.17      nicm      192:                goto out;
                    193:
1.31      nicm      194:        /* Set the event and dispatch. */
1.32      nicm      195:        client_update_event();
1.30      nicm      196:        event_dispatch();
1.17      nicm      197:
                    198: out:
1.25      nicm      199:        /* Print the exit message, if any, and exit. */
1.32      nicm      200:        if (client_exitmsg != NULL && !login_shell)
                    201:                printf("[%s]\n", client_exitmsg);
                    202:        exit(client_exitval);
1.9       nicm      203: }
                    204:
1.34      nicm      205: /* ARGSUSED */
1.30      nicm      206: void
1.31      nicm      207: client_signal(int sig, unused short events, unused void *data)
1.30      nicm      208: {
                    209:        struct sigaction        sigact;
                    210:
                    211:        switch (sig) {
1.39      jsing     212:        case SIGHUP:
                    213:                client_exitmsg = "lost tty";
                    214:                client_exitval = 1;
                    215:                client_write_server(MSG_EXITING, NULL, 0);
                    216:                break;
1.30      nicm      217:        case SIGTERM:
                    218:                client_exitmsg = "terminated";
1.32      nicm      219:                client_exitval = 1;
1.30      nicm      220:                client_write_server(MSG_EXITING, NULL, 0);
                    221:                break;
                    222:        case SIGWINCH:
                    223:                client_write_server(MSG_RESIZE, NULL, 0);
                    224:                break;
                    225:        case SIGCONT:
                    226:                memset(&sigact, 0, sizeof sigact);
                    227:                sigemptyset(&sigact.sa_mask);
                    228:                sigact.sa_flags = SA_RESTART;
                    229:                sigact.sa_handler = SIG_IGN;
                    230:                if (sigaction(SIGTSTP, &sigact, NULL) != 0)
                    231:                        fatal("sigaction failed");
                    232:                client_write_server(MSG_WAKEUP, NULL, 0);
                    233:                break;
                    234:        }
                    235:
1.31      nicm      236:        client_update_event();
1.30      nicm      237: }
                    238:
1.34      nicm      239: /* ARGSUSED */
1.30      nicm      240: void
                    241: client_callback(unused int fd, short events, unused void *data)
                    242: {
1.33      nicm      243:        ssize_t n;
1.30      nicm      244:
                    245:        if (events & EV_READ) {
                    246:                if ((n = imsg_read(&client_ibuf)) == -1 || n == 0)
                    247:                        goto lost_server;
                    248:                if (client_dispatch() != 0) {
                    249:                        event_loopexit(NULL);
                    250:                        return;
1.35      nicm      251:                }
1.30      nicm      252:        }
1.35      nicm      253:
1.30      nicm      254:        if (events & EV_WRITE) {
                    255:                if (msgbuf_write(&client_ibuf.w) < 0)
                    256:                        goto lost_server;
                    257:        }
                    258:
1.31      nicm      259:        client_update_event();
1.30      nicm      260:        return;
                    261:
                    262: lost_server:
                    263:        client_exitmsg = "lost server";
1.32      nicm      264:        client_exitval = 1;
1.30      nicm      265:        event_loopexit(NULL);
                    266: }
                    267:
1.9       nicm      268: int
1.25      nicm      269: client_dispatch(void)
1.9       nicm      270: {
1.30      nicm      271:        struct imsg             imsg;
                    272:        struct msg_lock_data    lockdata;
                    273:        struct sigaction        sigact;
                    274:        ssize_t                 n, datalen;
1.9       nicm      275:
                    276:        for (;;) {
1.25      nicm      277:                if ((n = imsg_get(&client_ibuf, &imsg)) == -1)
1.12      nicm      278:                        fatalx("imsg_get failed");
                    279:                if (n == 0)
1.9       nicm      280:                        return (0);
1.12      nicm      281:                datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
1.9       nicm      282:
1.30      nicm      283:                log_debug("client got %d", imsg.hdr.type);
1.12      nicm      284:                switch (imsg.hdr.type) {
1.9       nicm      285:                case MSG_DETACH:
1.12      nicm      286:                        if (datalen != 0)
1.9       nicm      287:                                fatalx("bad MSG_DETACH size");
                    288:
1.25      nicm      289:                        client_write_server(MSG_EXITING, NULL, 0);
                    290:                        client_exitmsg = "detached";
1.9       nicm      291:                        break;
                    292:                case MSG_EXIT:
1.12      nicm      293:                        if (datalen != 0)
1.9       nicm      294:                                fatalx("bad MSG_EXIT size");
1.12      nicm      295:
1.25      nicm      296:                        client_write_server(MSG_EXITING, NULL, 0);
                    297:                        client_exitmsg = "exited";
1.9       nicm      298:                        break;
                    299:                case MSG_EXITED:
1.12      nicm      300:                        if (datalen != 0)
1.9       nicm      301:                                fatalx("bad MSG_EXITED size");
                    302:
1.12      nicm      303:                        imsg_free(&imsg);
1.9       nicm      304:                        return (-1);
                    305:                case MSG_SHUTDOWN:
1.12      nicm      306:                        if (datalen != 0)
1.9       nicm      307:                                fatalx("bad MSG_SHUTDOWN size");
                    308:
1.25      nicm      309:                        client_write_server(MSG_EXITING, NULL, 0);
                    310:                        client_exitmsg = "server exited";
1.32      nicm      311:                        client_exitval = 1;
1.9       nicm      312:                        break;
                    313:                case MSG_SUSPEND:
1.12      nicm      314:                        if (datalen != 0)
1.9       nicm      315:                                fatalx("bad MSG_SUSPEND size");
                    316:
1.30      nicm      317:                        memset(&sigact, 0, sizeof sigact);
                    318:                        sigemptyset(&sigact.sa_mask);
                    319:                        sigact.sa_flags = SA_RESTART;
                    320:                        sigact.sa_handler = SIG_DFL;
                    321:                        if (sigaction(SIGTSTP, &sigact, NULL) != 0)
                    322:                                fatal("sigaction failed");
                    323:                        kill(getpid(), SIGTSTP);
1.21      nicm      324:                        break;
                    325:                case MSG_LOCK:
                    326:                        if (datalen != sizeof lockdata)
                    327:                                fatalx("bad MSG_LOCK size");
                    328:                        memcpy(&lockdata, imsg.data, sizeof lockdata);
1.35      nicm      329:
1.21      nicm      330:                        lockdata.cmd[(sizeof lockdata.cmd) - 1] = '\0';
                    331:                        system(lockdata.cmd);
1.25      nicm      332:                        client_write_server(MSG_UNLOCK, NULL, 0);
1.9       nicm      333:                        break;
                    334:                default:
                    335:                        fatalx("unexpected message");
                    336:                }
1.12      nicm      337:
                    338:                imsg_free(&imsg);
1.9       nicm      339:        }
1.1       nicm      340: }