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

Annotation of src/usr.bin/tmux/server-client.c, Revision 1.227

1.227   ! nicm        1: /* $OpenBSD: server-client.c,v 1.226 2017/04/21 22:23:24 nicm Exp $ */
1.1       nicm        2:
                      3: /*
1.181     nicm        4:  * Copyright (c) 2009 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.92      nicm       20: #include <sys/ioctl.h>
1.162     nicm       21: #include <sys/uio.h>
1.1       nicm       22:
1.114     benno      23: #include <errno.h>
1.12      nicm       24: #include <event.h>
1.1       nicm       25: #include <fcntl.h>
1.162     nicm       26: #include <imsg.h>
1.98      nicm       27: #include <paths.h>
                     28: #include <stdlib.h>
1.1       nicm       29: #include <string.h>
1.4       nicm       30: #include <time.h>
1.1       nicm       31: #include <unistd.h>
                     32:
                     33: #include "tmux.h"
                     34:
1.190     nicm       35: static void    server_client_free(int, short, void *);
                     36: static void    server_client_check_focus(struct window_pane *);
                     37: static void    server_client_check_resize(struct window_pane *);
                     38: static key_code        server_client_check_mouse(struct client *);
                     39: static void    server_client_repeat_timer(int, short, void *);
1.192     nicm       40: static void    server_client_click_timer(int, short, void *);
1.190     nicm       41: static void    server_client_check_exit(struct client *);
                     42: static void    server_client_check_redraw(struct client *);
                     43: static void    server_client_set_title(struct client *);
                     44: static void    server_client_reset_state(struct client *);
                     45: static int     server_client_assume_paste(struct session *);
                     46:
                     47: static void    server_client_dispatch(struct imsg *, void *);
                     48: static void    server_client_dispatch_command(struct client *, struct imsg *);
                     49: static void    server_client_dispatch_identify(struct client *, struct imsg *);
                     50: static void    server_client_dispatch_shell(struct client *);
1.140     nicm       51:
1.220     nicm       52: /* Identify mode callback. */
1.214     nicm       53: static void
                     54: server_client_callback_identify(__unused int fd, __unused short events, void *data)
                     55: {
                     56:        server_client_clear_identify(data, NULL);
                     57: }
                     58:
                     59: /* Set identify mode on client. */
                     60: void
                     61: server_client_set_identify(struct client *c)
                     62: {
                     63:        struct timeval  tv;
                     64:        int             delay;
                     65:
                     66:        delay = options_get_number(c->session->options, "display-panes-time");
                     67:        tv.tv_sec = delay / 1000;
                     68:        tv.tv_usec = (delay % 1000) * 1000L;
                     69:
                     70:        if (event_initialized(&c->identify_timer))
                     71:                evtimer_del(&c->identify_timer);
                     72:        evtimer_set(&c->identify_timer, server_client_callback_identify, c);
                     73:        evtimer_add(&c->identify_timer, &tv);
                     74:
                     75:        c->flags |= CLIENT_IDENTIFY;
                     76:        c->tty.flags |= (TTY_FREEZE|TTY_NOCURSOR);
                     77:        server_redraw_client(c);
                     78: }
                     79:
                     80: /* Clear identify mode on client. */
                     81: void
                     82: server_client_clear_identify(struct client *c, struct window_pane *wp)
                     83: {
                     84:        if (~c->flags & CLIENT_IDENTIFY)
                     85:                return;
                     86:        c->flags &= ~CLIENT_IDENTIFY;
                     87:
                     88:        if (c->identify_callback != NULL)
                     89:                c->identify_callback(c, wp);
                     90:
                     91:        c->tty.flags &= ~(TTY_FREEZE|TTY_NOCURSOR);
                     92:        server_redraw_client(c);
                     93: }
                     94:
1.140     nicm       95: /* Check if this client is inside this server. */
                     96: int
                     97: server_client_check_nested(struct client *c)
                     98: {
                     99:        struct environ_entry    *envent;
                    100:        struct window_pane      *wp;
                    101:
1.164     nicm      102:        envent = environ_find(c->environ, "TMUX");
1.140     nicm      103:        if (envent == NULL || *envent->value == '\0')
                    104:                return (0);
                    105:
                    106:        RB_FOREACH(wp, window_pane_tree, &all_window_panes) {
1.216     nicm      107:                if (strcmp(wp->tty, c->ttyname) == 0)
1.140     nicm      108:                        return (1);
                    109:        }
                    110:        return (0);
                    111: }
1.1       nicm      112:
1.132     nicm      113: /* Set client key table. */
                    114: void
1.178     nicm      115: server_client_set_key_table(struct client *c, const char *name)
1.132     nicm      116: {
1.178     nicm      117:        if (name == NULL)
                    118:                name = server_client_get_key_table(c);
                    119:
1.132     nicm      120:        key_bindings_unref_table(c->keytable);
                    121:        c->keytable = key_bindings_get_table(name, 1);
                    122:        c->keytable->references++;
                    123: }
                    124:
1.178     nicm      125: /* Get default key table. */
                    126: const char *
                    127: server_client_get_key_table(struct client *c)
                    128: {
                    129:        struct session  *s = c->session;
                    130:        const char      *name;
                    131:
                    132:        if (s == NULL)
                    133:                return ("root");
                    134:
                    135:        name = options_get_string(s->options, "key-table");
                    136:        if (*name == '\0')
                    137:                return ("root");
                    138:        return (name);
                    139: }
                    140:
1.223     nicm      141: /* Is this table the default key table? */
                    142: static int
                    143: server_client_is_default_key_table(struct client *c, struct key_table *table)
1.191     nicm      144: {
1.223     nicm      145:        return (strcmp(table->name, server_client_get_key_table(c)) == 0);
1.191     nicm      146: }
                    147:
1.1       nicm      148: /* Create a new client. */
                    149: void
                    150: server_client_create(int fd)
                    151: {
                    152:        struct client   *c;
                    153:
1.49      nicm      154:        setblocking(fd, 0);
1.1       nicm      155:
                    156:        c = xcalloc(1, sizeof *c);
1.141     nicm      157:        c->references = 1;
1.162     nicm      158:        c->peer = proc_add_peer(server_proc, fd, server_client_dispatch, c);
1.25      nicm      159:
1.10      nicm      160:        if (gettimeofday(&c->creation_time, NULL) != 0)
1.1       nicm      161:                fatal("gettimeofday failed");
1.11      nicm      162:        memcpy(&c->activity_time, &c->creation_time, sizeof c->activity_time);
1.111     nicm      163:
1.164     nicm      164:        c->environ = environ_create();
1.1       nicm      165:
1.146     nicm      166:        c->fd = -1;
1.165     nicm      167:        c->cwd = NULL;
1.145     nicm      168:
1.194     nicm      169:        TAILQ_INIT(&c->queue);
1.94      nicm      170:
1.116     nicm      171:        c->stdin_data = evbuffer_new();
                    172:        c->stdout_data = evbuffer_new();
                    173:        c->stderr_data = evbuffer_new();
1.33      nicm      174:
1.1       nicm      175:        c->tty.fd = -1;
                    176:        c->title = NULL;
                    177:
                    178:        c->session = NULL;
1.45      nicm      179:        c->last_session = NULL;
1.1       nicm      180:        c->tty.sx = 80;
                    181:        c->tty.sy = 24;
                    182:
                    183:        screen_init(&c->status, c->tty.sx, 1, 0);
                    184:
                    185:        c->message_string = NULL;
1.136     nicm      186:        TAILQ_INIT(&c->message_log);
1.1       nicm      187:
                    188:        c->prompt_string = NULL;
                    189:        c->prompt_buffer = NULL;
                    190:        c->prompt_index = 0;
                    191:
1.93      nicm      192:        c->flags |= CLIENT_FOCUSED;
                    193:
1.132     nicm      194:        c->keytable = key_bindings_get_table("root", 1);
                    195:        c->keytable->references++;
                    196:
1.17      nicm      197:        evtimer_set(&c->repeat_timer, server_client_repeat_timer, c);
1.192     nicm      198:        evtimer_set(&c->click_timer, server_client_click_timer, c);
1.17      nicm      199:
1.135     nicm      200:        TAILQ_INSERT_TAIL(&clients, c, entry);
1.157     nicm      201:        log_debug("new client %p", c);
1.72      nicm      202: }
                    203:
                    204: /* Open client terminal if needed. */
                    205: int
1.119     nicm      206: server_client_open(struct client *c, char **cause)
1.72      nicm      207: {
1.75      nicm      208:        if (c->flags & CLIENT_CONTROL)
                    209:                return (0);
1.120     nicm      210:
                    211:        if (strcmp(c->ttyname, "/dev/tty") == 0) {
                    212:                *cause = xstrdup("can't use /dev/tty");
                    213:                return (-1);
                    214:        }
1.75      nicm      215:
1.72      nicm      216:        if (!(c->flags & CLIENT_TERMINAL)) {
1.116     nicm      217:                *cause = xstrdup("not a terminal");
1.72      nicm      218:                return (-1);
                    219:        }
                    220:
1.119     nicm      221:        if (tty_open(&c->tty, cause) != 0)
1.72      nicm      222:                return (-1);
                    223:
                    224:        return (0);
1.1       nicm      225: }
                    226:
                    227: /* Lost a client. */
                    228: void
                    229: server_client_lost(struct client *c)
                    230: {
1.136     nicm      231:        struct message_entry    *msg, *msg1;
1.1       nicm      232:
1.141     nicm      233:        c->flags |= CLIENT_DEAD;
                    234:
1.214     nicm      235:        server_client_clear_identify(c, NULL);
1.141     nicm      236:        status_prompt_clear(c);
                    237:        status_message_clear(c);
                    238:
                    239:        if (c->stdin_callback != NULL)
                    240:                c->stdin_callback(c, 1, c->stdin_callback_data);
                    241:
1.135     nicm      242:        TAILQ_REMOVE(&clients, c, entry);
1.157     nicm      243:        log_debug("lost client %p", c);
1.1       nicm      244:
                    245:        /*
                    246:         * If CLIENT_TERMINAL hasn't been set, then tty_init hasn't been called
                    247:         * and tty_free might close an unrelated fd.
                    248:         */
                    249:        if (c->flags & CLIENT_TERMINAL)
                    250:                tty_free(&c->tty);
1.109     nicm      251:        free(c->ttyname);
                    252:        free(c->term);
1.1       nicm      253:
1.113     nicm      254:        evbuffer_free(c->stdin_data);
                    255:        evbuffer_free(c->stdout_data);
1.97      nicm      256:        if (c->stderr_data != c->stdout_data)
1.126     nicm      257:                evbuffer_free(c->stderr_data);
1.33      nicm      258:
1.148     nicm      259:        if (event_initialized(&c->status_timer))
                    260:                evtimer_del(&c->status_timer);
1.1       nicm      261:        screen_free(&c->status);
                    262:
1.77      nicm      263:        free(c->title);
1.165     nicm      264:        free((void *)c->cwd);
1.1       nicm      265:
1.17      nicm      266:        evtimer_del(&c->repeat_timer);
1.192     nicm      267:        evtimer_del(&c->click_timer);
1.17      nicm      268:
1.132     nicm      269:        key_bindings_unref_table(c->keytable);
                    270:
1.69      nicm      271:        if (event_initialized(&c->identify_timer))
                    272:                evtimer_del(&c->identify_timer);
1.15      nicm      273:
1.77      nicm      274:        free(c->message_string);
1.116     nicm      275:        if (event_initialized(&c->message_timer))
1.69      nicm      276:                evtimer_del(&c->message_timer);
1.136     nicm      277:        TAILQ_FOREACH_SAFE(msg, &c->message_log, entry, msg1) {
1.77      nicm      278:                free(msg->msg);
1.136     nicm      279:                TAILQ_REMOVE(&c->message_log, msg, entry);
                    280:                free(msg);
1.21      nicm      281:        }
1.1       nicm      282:
1.77      nicm      283:        free(c->prompt_string);
                    284:        free(c->prompt_buffer);
1.61      nicm      285:
1.164     nicm      286:        environ_free(c->environ);
1.1       nicm      287:
1.162     nicm      288:        proc_remove_peer(c->peer);
                    289:        c->peer = NULL;
1.13      nicm      290:
1.142     nicm      291:        server_client_unref(c);
1.71      nicm      292:
                    293:        server_add_accept(0); /* may be more file descriptors now */
1.1       nicm      294:
                    295:        recalculate_sizes();
1.41      nicm      296:        server_check_unattached();
1.19      nicm      297:        server_update_socket();
1.141     nicm      298: }
                    299:
                    300: /* Remove reference from a client. */
                    301: void
1.142     nicm      302: server_client_unref(struct client *c)
1.141     nicm      303: {
1.157     nicm      304:        log_debug("unref client %p (%d references)", c, c->references);
1.141     nicm      305:
                    306:        c->references--;
                    307:        if (c->references == 0)
                    308:                event_once(-1, EV_TIMEOUT, server_client_free, c, NULL);
                    309: }
                    310:
                    311: /* Free dead client. */
1.190     nicm      312: static void
1.170     nicm      313: server_client_free(__unused int fd, __unused short events, void *arg)
1.141     nicm      314: {
                    315:        struct client   *c = arg;
                    316:
1.157     nicm      317:        log_debug("free client %p (%d references)", c, c->references);
1.141     nicm      318:
1.194     nicm      319:        if (!TAILQ_EMPTY(&c->queue))
                    320:                fatalx("queue not empty");
                    321:
1.216     nicm      322:        if (c->references == 0) {
                    323:                free((void *)c->name);
1.141     nicm      324:                free(c);
1.216     nicm      325:        }
1.9       nicm      326: }
                    327:
1.220     nicm      328: /* Suspend a client. */
                    329: void
                    330: server_client_suspend(struct client *c)
                    331: {
                    332:        struct session  *s = c->session;
                    333:
                    334:        if (s == NULL || (c->flags & CLIENT_DETACHING))
                    335:                return;
                    336:
                    337:        tty_stop_tty(&c->tty);
                    338:        c->flags |= CLIENT_SUSPENDED;
                    339:        proc_send(c->peer, MSG_SUSPEND, -1, NULL, 0);
                    340: }
                    341:
1.174     nicm      342: /* Detach a client. */
                    343: void
                    344: server_client_detach(struct client *c, enum msgtype msgtype)
                    345: {
1.220     nicm      346:        struct session  *s = c->session;
1.174     nicm      347:
1.220     nicm      348:        if (s == NULL || (c->flags & CLIENT_DETACHING))
1.174     nicm      349:                return;
                    350:
1.220     nicm      351:        c->flags |= CLIENT_DETACHING;
1.196     nicm      352:        notify_client("client-detached", c);
1.174     nicm      353:        proc_send_s(c->peer, msgtype, s->name);
1.207     nicm      354: }
                    355:
1.208     nicm      356: /* Execute command to replace a client. */
1.207     nicm      357: void
                    358: server_client_exec(struct client *c, const char *cmd)
                    359: {
                    360:        struct session  *s = c->session;
1.208     nicm      361:        char            *msg;
                    362:        const char      *shell;
1.207     nicm      363:        size_t           cmdsize, shellsize;
                    364:
                    365:        if (*cmd == '\0')
                    366:                return;
                    367:        cmdsize = strlen(cmd) + 1;
                    368:
                    369:        if (s != NULL)
                    370:                shell = options_get_string(s->options, "default-shell");
                    371:        else
                    372:                shell = options_get_string(global_s_options, "default-shell");
                    373:        shellsize = strlen(shell) + 1;
                    374:
                    375:        msg = xmalloc(cmdsize + shellsize);
                    376:        memcpy(msg, cmd, cmdsize);
                    377:        memcpy(msg + cmdsize, shell, shellsize);
                    378:
                    379:        proc_send(c->peer, MSG_EXEC, -1, msg, cmdsize + shellsize);
                    380:        free(msg);
1.174     nicm      381: }
                    382:
1.66      nicm      383: /* Check for mouse keys. */
1.190     nicm      384: static key_code
1.131     nicm      385: server_client_check_mouse(struct client *c)
1.66      nicm      386: {
1.192     nicm      387:        struct session          *s = c->session;
                    388:        struct mouse_event      *m = &c->tty.mouse;
                    389:        struct window           *w;
                    390:        struct window_pane      *wp;
                    391:        u_int                    x, y, b;
                    392:        int                      flag;
                    393:        key_code                 key;
                    394:        struct timeval           tv;
1.209     nicm      395:        enum { NOTYPE, MOVE, DOWN, UP, DRAG, WHEEL, DOUBLE, TRIPLE } type;
                    396:        enum { NOWHERE, PANE, STATUS, BORDER } where;
                    397:
                    398:        type = NOTYPE;
                    399:        where = NOWHERE;
1.131     nicm      400:
                    401:        log_debug("mouse %02x at %u,%u (last %u,%u) (%d)", m->b, m->x, m->y,
                    402:            m->lx, m->ly, c->tty.mouse_drag_flag);
                    403:
                    404:        /* What type of event is this? */
1.209     nicm      405:        if ((m->sgr_type != ' ' &&
                    406:            MOUSE_DRAG(m->sgr_b) &&
                    407:            MOUSE_BUTTONS(m->sgr_b) == 3) ||
                    408:            (m->sgr_type == ' ' &&
                    409:            MOUSE_DRAG(m->b) &&
                    410:            MOUSE_BUTTONS(m->b) == 3 &&
                    411:            MOUSE_BUTTONS(m->lb) == 3)) {
                    412:                type = MOVE;
                    413:                x = m->x, y = m->y, b = 0;
                    414:                log_debug("move at %u,%u", x, y);
                    415:        } else if (MOUSE_DRAG(m->b)) {
1.131     nicm      416:                type = DRAG;
                    417:                if (c->tty.mouse_drag_flag) {
                    418:                        x = m->x, y = m->y, b = m->b;
                    419:                        log_debug("drag update at %u,%u", x, y);
                    420:                } else {
                    421:                        x = m->lx, y = m->ly, b = m->lb;
                    422:                        log_debug("drag start at %u,%u", x, y);
                    423:                }
                    424:        } else if (MOUSE_WHEEL(m->b)) {
                    425:                type = WHEEL;
                    426:                x = m->x, y = m->y, b = m->b;
                    427:                log_debug("wheel at %u,%u", x, y);
1.200     nicm      428:        } else if (MOUSE_RELEASE(m->b)) {
1.131     nicm      429:                type = UP;
                    430:                x = m->x, y = m->y, b = m->lb;
                    431:                log_debug("up at %u,%u", x, y);
                    432:        } else {
1.192     nicm      433:                if (c->flags & CLIENT_DOUBLECLICK) {
                    434:                        evtimer_del(&c->click_timer);
                    435:                        c->flags &= ~CLIENT_DOUBLECLICK;
                    436:                        if (m->b == c->click_button) {
                    437:                                type = DOUBLE;
                    438:                                x = m->x, y = m->y, b = m->b;
                    439:                                log_debug("double-click at %u,%u", x, y);
                    440:                                flag = CLIENT_TRIPLECLICK;
                    441:                                goto add_timer;
                    442:                        }
                    443:                } else if (c->flags & CLIENT_TRIPLECLICK) {
                    444:                        evtimer_del(&c->click_timer);
                    445:                        c->flags &= ~CLIENT_TRIPLECLICK;
                    446:                        if (m->b == c->click_button) {
                    447:                                type = TRIPLE;
                    448:                                x = m->x, y = m->y, b = m->b;
                    449:                                log_debug("triple-click at %u,%u", x, y);
                    450:                                goto have_event;
                    451:                        }
                    452:                }
                    453:
1.131     nicm      454:                type = DOWN;
                    455:                x = m->x, y = m->y, b = m->b;
                    456:                log_debug("down at %u,%u", x, y);
1.192     nicm      457:                flag = CLIENT_DOUBLECLICK;
                    458:
                    459:        add_timer:
                    460:                if (KEYC_CLICK_TIMEOUT != 0) {
                    461:                        c->flags |= flag;
                    462:                        c->click_button = m->b;
                    463:
                    464:                        tv.tv_sec = KEYC_CLICK_TIMEOUT / 1000;
                    465:                        tv.tv_usec = (KEYC_CLICK_TIMEOUT % 1000) * 1000L;
                    466:                        evtimer_del(&c->click_timer);
                    467:                        evtimer_add(&c->click_timer, &tv);
                    468:                }
1.131     nicm      469:        }
1.192     nicm      470:
                    471: have_event:
1.131     nicm      472:        if (type == NOTYPE)
1.177     nicm      473:                return (KEYC_UNKNOWN);
1.131     nicm      474:
                    475:        /* Always save the session. */
                    476:        m->s = s->id;
                    477:
                    478:        /* Is this on the status line? */
                    479:        m->statusat = status_at_line(c);
                    480:        if (m->statusat != -1 && y == (u_int)m->statusat) {
                    481:                w = status_get_window_at(c, x);
                    482:                if (w == NULL)
1.177     nicm      483:                        return (KEYC_UNKNOWN);
1.131     nicm      484:                m->w = w->id;
                    485:                where = STATUS;
                    486:        } else
                    487:                m->w = -1;
                    488:
                    489:        /* Not on status line. Adjust position and check for border or pane. */
                    490:        if (where == NOWHERE) {
                    491:                if (m->statusat == 0 && y > 0)
                    492:                        y--;
                    493:                else if (m->statusat > 0 && y >= (u_int)m->statusat)
                    494:                        y = m->statusat - 1;
                    495:
                    496:                TAILQ_FOREACH(wp, &s->curw->window->panes, entry) {
                    497:                        if ((wp->xoff + wp->sx == x &&
                    498:                            wp->yoff <= 1 + y &&
                    499:                            wp->yoff + wp->sy >= y) ||
                    500:                            (wp->yoff + wp->sy == y &&
                    501:                            wp->xoff <= 1 + x &&
                    502:                            wp->xoff + wp->sx >= x))
                    503:                                break;
                    504:                }
                    505:                if (wp != NULL)
                    506:                        where = BORDER;
                    507:                else {
                    508:                        wp = window_get_active_at(s->curw->window, x, y);
1.173     nicm      509:                        if (wp != NULL) {
1.131     nicm      510:                                where = PANE;
1.173     nicm      511:                                log_debug("mouse at %u,%u is on pane %%%u",
                    512:                                    x, y, wp->id);
                    513:                        }
1.131     nicm      514:                }
                    515:                if (where == NOWHERE)
1.177     nicm      516:                        return (KEYC_UNKNOWN);
1.131     nicm      517:                m->wp = wp->id;
                    518:                m->w = wp->window->id;
                    519:        } else
                    520:                m->wp = -1;
                    521:
                    522:        /* Stop dragging if needed. */
1.200     nicm      523:        if (type != DRAG && type != WHEEL && c->tty.mouse_drag_flag) {
1.131     nicm      524:                if (c->tty.mouse_drag_release != NULL)
                    525:                        c->tty.mouse_drag_release(c, m);
                    526:
                    527:                c->tty.mouse_drag_update = NULL;
                    528:                c->tty.mouse_drag_release = NULL;
                    529:
1.182     nicm      530:                /*
1.183     nicm      531:                 * End a mouse drag by passing a MouseDragEnd key corresponding
                    532:                 * to the button that started the drag.
1.182     nicm      533:                 */
                    534:                switch (c->tty.mouse_drag_flag) {
                    535:                case 1:
                    536:                        if (where == PANE)
1.183     nicm      537:                                key = KEYC_MOUSEDRAGEND1_PANE;
1.182     nicm      538:                        if (where == STATUS)
1.183     nicm      539:                                key = KEYC_MOUSEDRAGEND1_STATUS;
1.182     nicm      540:                        if (where == BORDER)
1.183     nicm      541:                                key = KEYC_MOUSEDRAGEND1_BORDER;
1.182     nicm      542:                        break;
                    543:                case 2:
                    544:                        if (where == PANE)
1.183     nicm      545:                                key = KEYC_MOUSEDRAGEND2_PANE;
1.182     nicm      546:                        if (where == STATUS)
1.183     nicm      547:                                key = KEYC_MOUSEDRAGEND2_STATUS;
1.182     nicm      548:                        if (where == BORDER)
1.183     nicm      549:                                key = KEYC_MOUSEDRAGEND2_BORDER;
1.182     nicm      550:                        break;
                    551:                case 3:
                    552:                        if (where == PANE)
1.183     nicm      553:                                key = KEYC_MOUSEDRAGEND3_PANE;
1.182     nicm      554:                        if (where == STATUS)
1.183     nicm      555:                                key = KEYC_MOUSEDRAGEND3_STATUS;
1.182     nicm      556:                        if (where == BORDER)
1.183     nicm      557:                                key = KEYC_MOUSEDRAGEND3_BORDER;
1.182     nicm      558:                        break;
                    559:                default:
                    560:                        key = KEYC_MOUSE;
                    561:                        break;
                    562:                }
1.131     nicm      563:                c->tty.mouse_drag_flag = 0;
1.182     nicm      564:
                    565:                return (key);
1.131     nicm      566:        }
                    567:
                    568:        /* Convert to a key binding. */
1.177     nicm      569:        key = KEYC_UNKNOWN;
1.131     nicm      570:        switch (type) {
                    571:        case NOTYPE:
                    572:                break;
1.209     nicm      573:        case MOVE:
                    574:                if (where == PANE)
                    575:                        key = KEYC_MOUSEMOVE_PANE;
                    576:                if (where == STATUS)
                    577:                        key = KEYC_MOUSEMOVE_STATUS;
                    578:                if (where == BORDER)
                    579:                        key = KEYC_MOUSEMOVE_BORDER;
                    580:                break;
1.131     nicm      581:        case DRAG:
1.204     nicm      582:                if (c->tty.mouse_drag_update != NULL)
                    583:                        key = KEYC_DRAGGING;
                    584:                else {
1.131     nicm      585:                        switch (MOUSE_BUTTONS(b)) {
                    586:                        case 0:
                    587:                                if (where == PANE)
                    588:                                        key = KEYC_MOUSEDRAG1_PANE;
                    589:                                if (where == STATUS)
                    590:                                        key = KEYC_MOUSEDRAG1_STATUS;
                    591:                                if (where == BORDER)
                    592:                                        key = KEYC_MOUSEDRAG1_BORDER;
                    593:                                break;
                    594:                        case 1:
                    595:                                if (where == PANE)
                    596:                                        key = KEYC_MOUSEDRAG2_PANE;
                    597:                                if (where == STATUS)
                    598:                                        key = KEYC_MOUSEDRAG2_STATUS;
                    599:                                if (where == BORDER)
                    600:                                        key = KEYC_MOUSEDRAG2_BORDER;
                    601:                                break;
                    602:                        case 2:
                    603:                                if (where == PANE)
                    604:                                        key = KEYC_MOUSEDRAG3_PANE;
                    605:                                if (where == STATUS)
                    606:                                        key = KEYC_MOUSEDRAG3_STATUS;
                    607:                                if (where == BORDER)
                    608:                                        key = KEYC_MOUSEDRAG3_BORDER;
                    609:                                break;
                    610:                        }
                    611:                }
1.66      nicm      612:
1.182     nicm      613:                /*
                    614:                 * Begin a drag by setting the flag to a non-zero value that
                    615:                 * corresponds to the mouse button in use.
                    616:                 */
                    617:                c->tty.mouse_drag_flag = MOUSE_BUTTONS(b) + 1;
1.131     nicm      618:                break;
                    619:        case WHEEL:
                    620:                if (MOUSE_BUTTONS(b) == MOUSE_WHEEL_UP) {
                    621:                        if (where == PANE)
                    622:                                key = KEYC_WHEELUP_PANE;
                    623:                        if (where == STATUS)
                    624:                                key = KEYC_WHEELUP_STATUS;
                    625:                        if (where == BORDER)
                    626:                                key = KEYC_WHEELUP_BORDER;
                    627:                } else {
                    628:                        if (where == PANE)
                    629:                                key = KEYC_WHEELDOWN_PANE;
                    630:                        if (where == STATUS)
                    631:                                key = KEYC_WHEELDOWN_STATUS;
                    632:                        if (where == BORDER)
                    633:                                key = KEYC_WHEELDOWN_BORDER;
                    634:                }
                    635:                break;
                    636:        case UP:
                    637:                switch (MOUSE_BUTTONS(b)) {
                    638:                case 0:
                    639:                        if (where == PANE)
                    640:                                key = KEYC_MOUSEUP1_PANE;
                    641:                        if (where == STATUS)
                    642:                                key = KEYC_MOUSEUP1_STATUS;
                    643:                        if (where == BORDER)
                    644:                                key = KEYC_MOUSEUP1_BORDER;
                    645:                        break;
                    646:                case 1:
                    647:                        if (where == PANE)
                    648:                                key = KEYC_MOUSEUP2_PANE;
                    649:                        if (where == STATUS)
                    650:                                key = KEYC_MOUSEUP2_STATUS;
                    651:                        if (where == BORDER)
                    652:                                key = KEYC_MOUSEUP2_BORDER;
                    653:                        break;
                    654:                case 2:
                    655:                        if (where == PANE)
                    656:                                key = KEYC_MOUSEUP3_PANE;
                    657:                        if (where == STATUS)
                    658:                                key = KEYC_MOUSEUP3_STATUS;
                    659:                        if (where == BORDER)
                    660:                                key = KEYC_MOUSEUP3_BORDER;
                    661:                        break;
                    662:                }
                    663:                break;
                    664:        case DOWN:
                    665:                switch (MOUSE_BUTTONS(b)) {
                    666:                case 0:
                    667:                        if (where == PANE)
                    668:                                key = KEYC_MOUSEDOWN1_PANE;
                    669:                        if (where == STATUS)
                    670:                                key = KEYC_MOUSEDOWN1_STATUS;
                    671:                        if (where == BORDER)
                    672:                                key = KEYC_MOUSEDOWN1_BORDER;
                    673:                        break;
                    674:                case 1:
                    675:                        if (where == PANE)
                    676:                                key = KEYC_MOUSEDOWN2_PANE;
                    677:                        if (where == STATUS)
                    678:                                key = KEYC_MOUSEDOWN2_STATUS;
                    679:                        if (where == BORDER)
                    680:                                key = KEYC_MOUSEDOWN2_BORDER;
                    681:                        break;
                    682:                case 2:
                    683:                        if (where == PANE)
                    684:                                key = KEYC_MOUSEDOWN3_PANE;
                    685:                        if (where == STATUS)
                    686:                                key = KEYC_MOUSEDOWN3_STATUS;
                    687:                        if (where == BORDER)
                    688:                                key = KEYC_MOUSEDOWN3_BORDER;
                    689:                        break;
1.66      nicm      690:                }
1.131     nicm      691:                break;
1.192     nicm      692:        case DOUBLE:
                    693:                switch (MOUSE_BUTTONS(b)) {
                    694:                case 0:
                    695:                        if (where == PANE)
                    696:                                key = KEYC_DOUBLECLICK1_PANE;
                    697:                        if (where == STATUS)
                    698:                                key = KEYC_DOUBLECLICK1_STATUS;
                    699:                        if (where == BORDER)
                    700:                                key = KEYC_DOUBLECLICK1_BORDER;
                    701:                        break;
                    702:                case 1:
                    703:                        if (where == PANE)
                    704:                                key = KEYC_DOUBLECLICK2_PANE;
                    705:                        if (where == STATUS)
                    706:                                key = KEYC_DOUBLECLICK2_STATUS;
                    707:                        if (where == BORDER)
                    708:                                key = KEYC_DOUBLECLICK2_BORDER;
                    709:                        break;
                    710:                case 2:
                    711:                        if (where == PANE)
                    712:                                key = KEYC_DOUBLECLICK3_PANE;
                    713:                        if (where == STATUS)
                    714:                                key = KEYC_DOUBLECLICK3_STATUS;
                    715:                        if (where == BORDER)
                    716:                                key = KEYC_DOUBLECLICK3_BORDER;
                    717:                        break;
                    718:                }
                    719:                break;
                    720:        case TRIPLE:
                    721:                switch (MOUSE_BUTTONS(b)) {
                    722:                case 0:
                    723:                        if (where == PANE)
                    724:                                key = KEYC_TRIPLECLICK1_PANE;
                    725:                        if (where == STATUS)
                    726:                                key = KEYC_TRIPLECLICK1_STATUS;
                    727:                        if (where == BORDER)
                    728:                                key = KEYC_TRIPLECLICK1_BORDER;
                    729:                        break;
                    730:                case 1:
                    731:                        if (where == PANE)
                    732:                                key = KEYC_TRIPLECLICK2_PANE;
                    733:                        if (where == STATUS)
                    734:                                key = KEYC_TRIPLECLICK2_STATUS;
                    735:                        if (where == BORDER)
                    736:                                key = KEYC_TRIPLECLICK2_BORDER;
                    737:                        break;
                    738:                case 2:
                    739:                        if (where == PANE)
                    740:                                key = KEYC_TRIPLECLICK3_PANE;
                    741:                        if (where == STATUS)
                    742:                                key = KEYC_TRIPLECLICK3_STATUS;
                    743:                        if (where == BORDER)
                    744:                                key = KEYC_TRIPLECLICK3_BORDER;
                    745:                        break;
                    746:                }
                    747:                break;
1.66      nicm      748:        }
1.177     nicm      749:        if (key == KEYC_UNKNOWN)
                    750:                return (KEYC_UNKNOWN);
1.66      nicm      751:
1.131     nicm      752:        /* Apply modifiers if any. */
                    753:        if (b & MOUSE_MASK_META)
                    754:                key |= KEYC_ESCAPE;
                    755:        if (b & MOUSE_MASK_CTRL)
                    756:                key |= KEYC_CTRL;
                    757:        if (b & MOUSE_MASK_SHIFT)
                    758:                key |= KEYC_SHIFT;
1.66      nicm      759:
1.131     nicm      760:        return (key);
1.66      nicm      761: }
                    762:
1.82      nicm      763: /* Is this fast enough to probably be a paste? */
1.190     nicm      764: static int
1.82      nicm      765: server_client_assume_paste(struct session *s)
                    766: {
                    767:        struct timeval  tv;
1.84      nicm      768:        int             t;
1.82      nicm      769:
1.163     nicm      770:        if ((t = options_get_number(s->options, "assume-paste-time")) == 0)
1.83      nicm      771:                return (0);
1.82      nicm      772:
                    773:        timersub(&s->activity_time, &s->last_activity_time, &tv);
1.171     nicm      774:        if (tv.tv_sec == 0 && tv.tv_usec < t * 1000) {
                    775:                log_debug("session %s pasting (flag %d)", s->name,
                    776:                    !!(s->flags & SESSION_PASTING));
                    777:                if (s->flags & SESSION_PASTING)
                    778:                        return (1);
                    779:                s->flags |= SESSION_PASTING;
                    780:                return (0);
                    781:        }
                    782:        log_debug("session %s not pasting", s->name);
                    783:        s->flags &= ~SESSION_PASTING;
1.83      nicm      784:        return (0);
1.82      nicm      785: }
                    786:
1.18      nicm      787: /* Handle data key input from client. */
                    788: void
1.168     nicm      789: server_client_handle_key(struct client *c, key_code key)
1.18      nicm      790: {
1.131     nicm      791:        struct mouse_event      *m = &c->tty.mouse;
1.132     nicm      792:        struct session          *s = c->session;
1.18      nicm      793:        struct window           *w;
                    794:        struct window_pane      *wp;
                    795:        struct timeval           tv;
1.223     nicm      796:        struct key_table        *table, *first;
1.132     nicm      797:        struct key_binding       bd_find, *bd;
                    798:        int                      xtimeout;
1.201     nicm      799:        struct cmd_find_state    fs;
1.18      nicm      800:
                    801:        /* Check the client is good to accept input. */
1.132     nicm      802:        if (s == NULL || (c->flags & (CLIENT_DEAD|CLIENT_SUSPENDED)) != 0)
1.18      nicm      803:                return;
1.132     nicm      804:        w = s->curw->window;
1.18      nicm      805:
                    806:        /* Update the activity timer. */
                    807:        if (gettimeofday(&c->activity_time, NULL) != 0)
                    808:                fatal("gettimeofday failed");
1.149     nicm      809:        session_update_activity(s, &c->activity_time);
1.18      nicm      810:
1.132     nicm      811:        /* Number keys jump to pane in identify mode. */
1.25      nicm      812:        if (c->flags & CLIENT_IDENTIFY && key >= '0' && key <= '9') {
1.30      nicm      813:                if (c->flags & CLIENT_READONLY)
                    814:                        return;
1.95      nicm      815:                window_unzoom(w);
1.18      nicm      816:                wp = window_pane_at_index(w, key - '0');
1.187     nicm      817:                if (wp != NULL && !window_pane_visible(wp))
                    818:                        wp = NULL;
1.214     nicm      819:                server_client_clear_identify(c, wp);
1.18      nicm      820:                return;
                    821:        }
                    822:
                    823:        /* Handle status line. */
1.30      nicm      824:        if (!(c->flags & CLIENT_READONLY)) {
                    825:                status_message_clear(c);
1.214     nicm      826:                server_client_clear_identify(c, NULL);
1.30      nicm      827:        }
1.18      nicm      828:        if (c->prompt_string != NULL) {
1.193     nicm      829:                if (c->flags & CLIENT_READONLY)
                    830:                        return;
                    831:                if (status_prompt_key(c, key) == 0)
                    832:                        return;
1.18      nicm      833:        }
                    834:
                    835:        /* Check for mouse keys. */
1.204     nicm      836:        m->valid = 0;
1.18      nicm      837:        if (key == KEYC_MOUSE) {
1.30      nicm      838:                if (c->flags & CLIENT_READONLY)
                    839:                        return;
1.131     nicm      840:                key = server_client_check_mouse(c);
1.177     nicm      841:                if (key == KEYC_UNKNOWN)
1.131     nicm      842:                        return;
                    843:
                    844:                m->valid = 1;
                    845:                m->key = key;
1.203     nicm      846:
                    847:                /*
1.204     nicm      848:                 * Mouse drag is in progress, so fire the callback (now that
                    849:                 * the mouse event is valid).
1.203     nicm      850:                 */
1.204     nicm      851:                if (key == KEYC_DRAGGING) {
                    852:                        c->tty.mouse_drag_update(c, m);
1.203     nicm      853:                        return;
1.204     nicm      854:                }
1.131     nicm      855:        } else
                    856:                m->valid = 0;
1.18      nicm      857:
1.202     nicm      858:        /* Find affected pane. */
1.227   ! nicm      859:        if (!KEYC_IS_MOUSE(key) || cmd_find_from_mouse(&fs, m) != 0)
        !           860:                cmd_find_from_session(&fs, s);
        !           861:        wp = fs.wp;
1.202     nicm      862:
                    863:        /* Forward mouse keys if disabled. */
1.206     nicm      864:        if (KEYC_IS_MOUSE(key) && !options_get_number(s->options, "mouse"))
1.202     nicm      865:                goto forward;
                    866:
1.132     nicm      867:        /* Treat everything as a regular key when pasting is detected. */
1.161     nicm      868:        if (!KEYC_IS_MOUSE(key) && server_client_assume_paste(s))
                    869:                goto forward;
1.18      nicm      870:
1.191     nicm      871:        /*
                    872:         * Work out the current key table. If the pane is in a mode, use
                    873:         * the mode table instead of the default key table.
                    874:         */
1.223     nicm      875:        if (server_client_is_default_key_table(c, c->keytable) &&
                    876:            wp != NULL &&
                    877:            wp->mode != NULL &&
                    878:            wp->mode->key_table != NULL)
                    879:                table = key_bindings_get_table(wp->mode->key_table(wp), 1);
                    880:        else
1.191     nicm      881:                table = c->keytable;
1.223     nicm      882:        first = table;
1.191     nicm      883:
1.205     nicm      884:        /*
                    885:         * The prefix always takes precedence and forces a switch to the prefix
                    886:         * table, unless we are already there.
                    887:         */
                    888:        if ((key == (key_code)options_get_number(s->options, "prefix") ||
                    889:            key == (key_code)options_get_number(s->options, "prefix2")) &&
                    890:            strcmp(table->name, "prefix") != 0) {
                    891:                server_client_set_key_table(c, "prefix");
                    892:                server_status_client(c);
                    893:                return;
                    894:        }
                    895:
1.223     nicm      896: retry:
                    897:        /* Log key table. */
                    898:        if (wp == NULL)
                    899:                log_debug("key table %s (no pane)", table->name);
                    900:        else
                    901:                log_debug("key table %s (pane %%%u)", table->name, wp->id);
1.225     nicm      902:        if (c->flags & CLIENT_REPEAT)
                    903:                log_debug("currently repeating");
1.223     nicm      904:
1.132     nicm      905:        /* Try to see if there is a key binding in the current table. */
                    906:        bd_find.key = key;
1.191     nicm      907:        bd = RB_FIND(key_bindings, &table->key_bindings, &bd_find);
1.132     nicm      908:        if (bd != NULL) {
                    909:                /*
                    910:                 * Key was matched in this table. If currently repeating but a
                    911:                 * non-repeating binding was found, stop repeating and try
                    912:                 * again in the root table.
                    913:                 */
1.222     nicm      914:                if ((c->flags & CLIENT_REPEAT) &&
                    915:                    (~bd->flags & KEY_BINDING_REPEAT)) {
1.178     nicm      916:                        server_client_set_key_table(c, NULL);
1.132     nicm      917:                        c->flags &= ~CLIENT_REPEAT;
1.85      nicm      918:                        server_status_client(c);
1.223     nicm      919:                        table = c->keytable;
1.132     nicm      920:                        goto retry;
1.18      nicm      921:                }
1.223     nicm      922:                log_debug("found in key table %s", table->name);
1.82      nicm      923:
1.132     nicm      924:                /*
                    925:                 * Take a reference to this table to make sure the key binding
                    926:                 * doesn't disappear.
                    927:                 */
                    928:                table->references++;
                    929:
                    930:                /*
                    931:                 * If this is a repeating key, start the timer. Otherwise reset
                    932:                 * the client back to the root table.
                    933:                 */
1.163     nicm      934:                xtimeout = options_get_number(s->options, "repeat-time");
1.222     nicm      935:                if (xtimeout != 0 && (bd->flags & KEY_BINDING_REPEAT)) {
1.132     nicm      936:                        c->flags |= CLIENT_REPEAT;
                    937:
                    938:                        tv.tv_sec = xtimeout / 1000;
                    939:                        tv.tv_usec = (xtimeout % 1000) * 1000L;
                    940:                        evtimer_del(&c->repeat_timer);
                    941:                        evtimer_add(&c->repeat_timer, &tv);
                    942:                } else {
1.18      nicm      943:                        c->flags &= ~CLIENT_REPEAT;
1.178     nicm      944:                        server_client_set_key_table(c, NULL);
1.18      nicm      945:                }
1.132     nicm      946:                server_status_client(c);
                    947:
1.227   ! nicm      948:                /* Execute the key binding. */
        !           949:                key_bindings_dispatch(bd, c, m, &fs);
1.132     nicm      950:                key_bindings_unref_table(table);
1.18      nicm      951:                return;
                    952:        }
                    953:
1.132     nicm      954:        /*
1.223     nicm      955:         * No match in this table. If not in the root table or if repeating,
                    956:         * switch the client back to the root table and try again.
1.132     nicm      957:         */
1.223     nicm      958:        log_debug("not found in key table %s", table->name);
                    959:        if (!server_client_is_default_key_table(c, table) ||
                    960:            (c->flags & CLIENT_REPEAT)) {
1.178     nicm      961:                server_client_set_key_table(c, NULL);
1.18      nicm      962:                c->flags &= ~CLIENT_REPEAT;
1.132     nicm      963:                server_status_client(c);
1.223     nicm      964:                table = c->keytable;
1.132     nicm      965:                goto retry;
1.18      nicm      966:        }
                    967:
1.223     nicm      968:        /*
                    969:         * No match in the root table either. If this wasn't the first table
                    970:         * tried, don't pass the key to the pane.
                    971:         */
                    972:        if (first != table) {
1.178     nicm      973:                server_client_set_key_table(c, NULL);
1.132     nicm      974:                server_status_client(c);
1.161     nicm      975:                return;
                    976:        }
                    977:
                    978: forward:
                    979:        if (c->flags & CLIENT_READONLY)
                    980:                return;
                    981:        if (wp != NULL)
1.132     nicm      982:                window_pane_key(wp, c, s, key, m);
1.18      nicm      983: }
                    984:
1.2       nicm      985: /* Client functions that need to happen every loop. */
                    986: void
                    987: server_client_loop(void)
                    988: {
                    989:        struct client           *c;
                    990:        struct window           *w;
                    991:        struct window_pane      *wp;
1.197     nicm      992:        int                      focus;
1.2       nicm      993:
1.135     nicm      994:        TAILQ_FOREACH(c, &clients, entry) {
1.36      nicm      995:                server_client_check_exit(c);
                    996:                if (c->session != NULL) {
                    997:                        server_client_check_redraw(c);
                    998:                        server_client_reset_state(c);
                    999:                }
1.2       nicm     1000:        }
                   1001:
                   1002:        /*
                   1003:         * Any windows will have been redrawn as part of clients, so clear
1.92      nicm     1004:         * their flags now. Also check pane focus and resize.
1.2       nicm     1005:         */
1.197     nicm     1006:        focus = options_get_number(global_options, "focus-events");
1.134     nicm     1007:        RB_FOREACH(w, windows, &windows) {
1.91      nicm     1008:                TAILQ_FOREACH(wp, &w->panes, entry) {
1.101     nicm     1009:                        if (wp->fd != -1) {
1.197     nicm     1010:                                if (focus)
                   1011:                                        server_client_check_focus(wp);
1.101     nicm     1012:                                server_client_check_resize(wp);
                   1013:                        }
1.2       nicm     1014:                        wp->flags &= ~PANE_REDRAW;
1.91      nicm     1015:                }
1.150     nicm     1016:                check_window_name(w);
1.2       nicm     1017:        }
1.92      nicm     1018: }
                   1019:
1.211     nicm     1020: /* Resize timer event. */
1.188     nicm     1021: static void
                   1022: server_client_resize_event(__unused int fd, __unused short events, void *data)
1.92      nicm     1023: {
1.188     nicm     1024:        struct window_pane      *wp = data;
                   1025:        struct winsize           ws;
                   1026:
                   1027:        evtimer_del(&wp->resize_timer);
1.92      nicm     1028:
1.101     nicm     1029:        if (!(wp->flags & PANE_RESIZE))
1.92      nicm     1030:                return;
                   1031:
                   1032:        memset(&ws, 0, sizeof ws);
                   1033:        ws.ws_col = wp->sx;
                   1034:        ws.ws_row = wp->sy;
                   1035:
1.100     nicm     1036:        if (ioctl(wp->fd, TIOCSWINSZ, &ws) == -1)
1.92      nicm     1037:                fatal("ioctl failed");
                   1038:
                   1039:        wp->flags &= ~PANE_RESIZE;
1.188     nicm     1040: }
                   1041:
                   1042: /* Check if pane should be resized. */
1.190     nicm     1043: static void
1.188     nicm     1044: server_client_check_resize(struct window_pane *wp)
                   1045: {
                   1046:        struct timeval   tv = { .tv_usec = 250000 };
                   1047:
                   1048:        if (!(wp->flags & PANE_RESIZE))
                   1049:                return;
                   1050:
                   1051:        if (!event_initialized(&wp->resize_timer))
                   1052:                evtimer_set(&wp->resize_timer, server_client_resize_event, wp);
                   1053:
                   1054:        /*
                   1055:         * The first resize should happen immediately, so if the timer is not
                   1056:         * running, do it now.
                   1057:         */
                   1058:        if (!evtimer_pending(&wp->resize_timer, NULL))
                   1059:                server_client_resize_event(-1, 0, wp);
                   1060:
                   1061:        /*
                   1062:         * If the pane is in the alternate screen, let the timer expire and
                   1063:         * resize to give the application a chance to redraw. If not, keep
                   1064:         * pushing the timer back.
                   1065:         */
                   1066:        if (wp->saved_grid != NULL && evtimer_pending(&wp->resize_timer, NULL))
                   1067:                return;
                   1068:        evtimer_del(&wp->resize_timer);
                   1069:        evtimer_add(&wp->resize_timer, &tv);
1.91      nicm     1070: }
                   1071:
                   1072: /* Check whether pane should be focused. */
1.190     nicm     1073: static void
1.91      nicm     1074: server_client_check_focus(struct window_pane *wp)
                   1075: {
1.93      nicm     1076:        struct client   *c;
1.102     nicm     1077:        int              push;
                   1078:
                   1079:        /* Do we need to push the focus state? */
                   1080:        push = wp->flags & PANE_FOCUSPUSH;
                   1081:        wp->flags &= ~PANE_FOCUSPUSH;
1.91      nicm     1082:
                   1083:        /* If we don't care about focus, forget it. */
                   1084:        if (!(wp->base.mode & MODE_FOCUSON))
                   1085:                return;
                   1086:
                   1087:        /* If we're not the active pane in our window, we're not focused. */
                   1088:        if (wp->window->active != wp)
                   1089:                goto not_focused;
                   1090:
                   1091:        /* If we're in a mode, we're not focused. */
                   1092:        if (wp->screen != &wp->base)
                   1093:                goto not_focused;
                   1094:
                   1095:        /*
1.93      nicm     1096:         * If our window is the current window in any focused clients with an
                   1097:         * attached session, we're focused.
1.91      nicm     1098:         */
1.135     nicm     1099:        TAILQ_FOREACH(c, &clients, entry) {
                   1100:                if (c->session == NULL || !(c->flags & CLIENT_FOCUSED))
1.91      nicm     1101:                        continue;
1.93      nicm     1102:                if (c->session->flags & SESSION_UNATTACHED)
                   1103:                        continue;
                   1104:
                   1105:                if (c->session->curw->window == wp->window)
1.91      nicm     1106:                        goto focused;
                   1107:        }
                   1108:
                   1109: not_focused:
1.102     nicm     1110:        if (push || (wp->flags & PANE_FOCUSED))
1.91      nicm     1111:                bufferevent_write(wp->event, "\033[O", 3);
                   1112:        wp->flags &= ~PANE_FOCUSED;
                   1113:        return;
                   1114:
                   1115: focused:
1.102     nicm     1116:        if (push || !(wp->flags & PANE_FOCUSED))
1.91      nicm     1117:                bufferevent_write(wp->event, "\033[I", 3);
                   1118:        wp->flags |= PANE_FOCUSED;
1.2       nicm     1119: }
                   1120:
1.18      nicm     1121: /*
                   1122:  * Update cursor position and mode settings. The scroll region and attributes
                   1123:  * are cleared when idle (waiting for an event) as this is the most likely time
                   1124:  * a user may interrupt tmux, for example with ~^Z in ssh(1). This is a
                   1125:  * compromise between excessive resets and likelihood of an interrupt.
                   1126:  *
                   1127:  * tty_region/tty_reset/tty_update_mode already take care of not resetting
                   1128:  * things that are already in their default state.
                   1129:  */
1.190     nicm     1130: static void
1.18      nicm     1131: server_client_reset_state(struct client *c)
1.1       nicm     1132: {
1.18      nicm     1133:        struct window           *w = c->session->curw->window;
1.209     nicm     1134:        struct window_pane      *wp = w->active, *loop;
1.18      nicm     1135:        struct screen           *s = wp->screen;
1.163     nicm     1136:        struct options          *oo = c->session->options;
1.66      nicm     1137:        int                      status, mode, o;
1.60      nicm     1138:
1.186     nicm     1139:        if (c->flags & (CLIENT_CONTROL|CLIENT_SUSPENDED))
1.86      nicm     1140:                return;
                   1141:
1.199     nicm     1142:        tty_region_off(&c->tty);
                   1143:        tty_margin_off(&c->tty);
1.1       nicm     1144:
                   1145:        status = options_get_number(oo, "status");
                   1146:        if (!window_pane_visible(wp) || wp->yoff + s->cy >= c->tty.sy - status)
                   1147:                tty_cursor(&c->tty, 0, 0);
1.66      nicm     1148:        else {
1.126     nicm     1149:                o = status && options_get_number(oo, "status-position") == 0;
1.66      nicm     1150:                tty_cursor(&c->tty, wp->xoff + s->cx, o + wp->yoff + s->cy);
                   1151:        }
1.1       nicm     1152:
1.50      nicm     1153:        /*
1.131     nicm     1154:         * Set mouse mode if requested. To support dragging, always use button
                   1155:         * mode.
1.57      nicm     1156:         */
                   1157:        mode = s->mode;
1.209     nicm     1158:        if (options_get_number(oo, "mouse")) {
                   1159:                mode &= ~ALL_MOUSE_MODES;
                   1160:                TAILQ_FOREACH(loop, &w->panes, entry) {
                   1161:                        if (loop->screen->mode & MODE_MOUSE_ALL)
                   1162:                                mode |= MODE_MOUSE_ALL;
                   1163:                }
                   1164:                if (~mode & MODE_MOUSE_ALL)
                   1165:                        mode |= MODE_MOUSE_BUTTON;
                   1166:        }
1.215     nicm     1167:
                   1168:        /* Clear bracketed paste mode if at the prompt. */
                   1169:        if (c->prompt_string != NULL)
                   1170:                mode &= ~MODE_BRACKETPASTE;
1.48      nicm     1171:
                   1172:        /* Set the terminal mode and reset attributes. */
1.59      nicm     1173:        tty_update_mode(&c->tty, mode, s);
1.1       nicm     1174:        tty_reset(&c->tty);
1.17      nicm     1175: }
                   1176:
                   1177: /* Repeat time callback. */
1.190     nicm     1178: static void
1.170     nicm     1179: server_client_repeat_timer(__unused int fd, __unused short events, void *data)
1.17      nicm     1180: {
                   1181:        struct client   *c = data;
                   1182:
1.85      nicm     1183:        if (c->flags & CLIENT_REPEAT) {
1.178     nicm     1184:                server_client_set_key_table(c, NULL);
1.132     nicm     1185:                c->flags &= ~CLIENT_REPEAT;
                   1186:                server_status_client(c);
1.85      nicm     1187:        }
1.192     nicm     1188: }
                   1189:
                   1190: /* Double-click callback. */
                   1191: static void
                   1192: server_client_click_timer(__unused int fd, __unused short events, void *data)
                   1193: {
                   1194:        struct client   *c = data;
                   1195:
                   1196:        c->flags &= ~(CLIENT_DOUBLECLICK|CLIENT_TRIPLECLICK);
1.1       nicm     1197: }
                   1198:
1.36      nicm     1199: /* Check if client should be exited. */
1.190     nicm     1200: static void
1.36      nicm     1201: server_client_check_exit(struct client *c)
                   1202: {
                   1203:        if (!(c->flags & CLIENT_EXIT))
                   1204:                return;
                   1205:
1.73      nicm     1206:        if (EVBUFFER_LENGTH(c->stdin_data) != 0)
                   1207:                return;
                   1208:        if (EVBUFFER_LENGTH(c->stdout_data) != 0)
1.36      nicm     1209:                return;
1.73      nicm     1210:        if (EVBUFFER_LENGTH(c->stderr_data) != 0)
1.36      nicm     1211:                return;
                   1212:
1.162     nicm     1213:        proc_send(c->peer, MSG_EXIT, -1, &c->retval, sizeof c->retval);
1.36      nicm     1214:        c->flags &= ~CLIENT_EXIT;
1.38      nicm     1215: }
                   1216:
1.218     nicm     1217: /* Redraw timer callback. */
                   1218: static void
                   1219: server_client_redraw_timer(__unused int fd, __unused short events,
                   1220:     __unused void* data)
                   1221: {
                   1222:        log_debug("redraw timer fired");
                   1223: }
                   1224:
1.1       nicm     1225: /* Check for client redraws. */
1.190     nicm     1226: static void
1.1       nicm     1227: server_client_check_redraw(struct client *c)
                   1228: {
                   1229:        struct session          *s = c->session;
1.137     nicm     1230:        struct tty              *tty = &c->tty;
1.1       nicm     1231:        struct window_pane      *wp;
1.218     nicm     1232:        int                      needed, flags, masked;
                   1233:        struct timeval           tv = { .tv_usec = 1000 };
                   1234:        static struct event      ev;
                   1235:        size_t                   left;
1.1       nicm     1236:
1.86      nicm     1237:        if (c->flags & (CLIENT_CONTROL|CLIENT_SUSPENDED))
1.79      nicm     1238:                return;
1.218     nicm     1239:
                   1240:        /*
                   1241:         * If there is outstanding data, defer the redraw until it has been
                   1242:         * consumed. We can just add a timer to get out of the event loop and
                   1243:         * end up back here.
                   1244:         */
                   1245:        needed = 0;
                   1246:        if (c->flags & CLIENT_REDRAW)
                   1247:                needed = 1;
                   1248:        else {
                   1249:                TAILQ_FOREACH(wp, &c->session->curw->window->panes, entry) {
                   1250:                        if (wp->flags & PANE_REDRAW) {
                   1251:                                needed = 1;
                   1252:                                break;
                   1253:                        }
                   1254:                }
                   1255:        }
                   1256:        if (needed) {
                   1257:                left = EVBUFFER_LENGTH(tty->out);
                   1258:                if (left != 0) {
                   1259:                        log_debug("%s: redraw deferred (%zu left)", c->name, left);
                   1260:                        if (evtimer_initialized(&ev) && evtimer_pending(&ev, NULL))
                   1261:                                return;
                   1262:                        log_debug("redraw timer started");
                   1263:                        evtimer_set(&ev, server_client_redraw_timer, NULL);
                   1264:                        evtimer_add(&ev, &tv);
                   1265:
                   1266:                        /*
                   1267:                         * We may have got here for a single pane redraw, but
                   1268:                         * force a full redraw next time in case other panes
                   1269:                         * have been updated.
                   1270:                         */
                   1271:                        c->flags |= CLIENT_REDRAW;
                   1272:                        return;
                   1273:                }
                   1274:                if (evtimer_initialized(&ev))
                   1275:                        evtimer_del(&ev);
                   1276:                log_debug("%s: redraw needed", c->name);
                   1277:        }
1.79      nicm     1278:
1.1       nicm     1279:        if (c->flags & (CLIENT_REDRAW|CLIENT_STATUS)) {
1.163     nicm     1280:                if (options_get_number(s->options, "set-titles"))
1.1       nicm     1281:                        server_client_set_title(c);
1.189     nicm     1282:                screen_redraw_update(c); /* will adjust flags */
1.1       nicm     1283:        }
                   1284:
1.219     nicm     1285:        flags = tty->flags & (TTY_BLOCK|TTY_FREEZE|TTY_NOCURSOR);
                   1286:        tty->flags = (tty->flags & ~(TTY_BLOCK|TTY_FREEZE)) | TTY_NOCURSOR;
1.137     nicm     1287:
1.1       nicm     1288:        if (c->flags & CLIENT_REDRAW) {
1.137     nicm     1289:                tty_update_mode(tty, tty->mode, NULL);
1.115     nicm     1290:                screen_redraw_screen(c, 1, 1, 1);
1.27      nicm     1291:                c->flags &= ~(CLIENT_STATUS|CLIENT_BORDERS);
1.1       nicm     1292:        } else {
                   1293:                TAILQ_FOREACH(wp, &c->session->curw->window->panes, entry) {
1.137     nicm     1294:                        if (wp->flags & PANE_REDRAW) {
                   1295:                                tty_update_mode(tty, tty->mode, NULL);
1.1       nicm     1296:                                screen_redraw_pane(c, wp);
1.137     nicm     1297:                        }
1.1       nicm     1298:                }
                   1299:        }
                   1300:
1.185     nicm     1301:        masked = c->flags & (CLIENT_BORDERS|CLIENT_STATUS);
                   1302:        if (masked != 0)
1.137     nicm     1303:                tty_update_mode(tty, tty->mode, NULL);
1.185     nicm     1304:        if (masked == CLIENT_BORDERS)
1.115     nicm     1305:                screen_redraw_screen(c, 0, 0, 1);
1.185     nicm     1306:        else if (masked == CLIENT_STATUS)
1.115     nicm     1307:                screen_redraw_screen(c, 0, 1, 0);
1.185     nicm     1308:        else if (masked != 0)
                   1309:                screen_redraw_screen(c, 0, 1, 1);
1.1       nicm     1310:
1.137     nicm     1311:        tty->flags = (tty->flags & ~(TTY_FREEZE|TTY_NOCURSOR)) | flags;
                   1312:        tty_update_mode(tty, tty->mode, NULL);
1.1       nicm     1313:
1.153     nicm     1314:        c->flags &= ~(CLIENT_REDRAW|CLIENT_BORDERS|CLIENT_STATUS|
                   1315:            CLIENT_STATUSFORCE);
1.1       nicm     1316: }
                   1317:
                   1318: /* Set client title. */
1.190     nicm     1319: static void
1.1       nicm     1320: server_client_set_title(struct client *c)
                   1321: {
1.128     nicm     1322:        struct session          *s = c->session;
                   1323:        const char              *template;
                   1324:        char                    *title;
                   1325:        struct format_tree      *ft;
1.1       nicm     1326:
1.163     nicm     1327:        template = options_get_string(s->options, "set-titles-string");
1.25      nicm     1328:
1.210     nicm     1329:        ft = format_create(NULL, FORMAT_NONE, 0);
1.128     nicm     1330:        format_defaults(ft, c, NULL, NULL, NULL);
                   1331:
                   1332:        title = format_expand_time(ft, template, time(NULL));
1.1       nicm     1333:        if (c->title == NULL || strcmp(title, c->title) != 0) {
1.77      nicm     1334:                free(c->title);
1.1       nicm     1335:                c->title = xstrdup(title);
                   1336:                tty_set_title(&c->tty, c->title);
                   1337:        }
1.77      nicm     1338:        free(title);
1.128     nicm     1339:
                   1340:        format_free(ft);
1.1       nicm     1341: }
                   1342:
                   1343: /* Dispatch message from client. */
1.190     nicm     1344: static void
1.162     nicm     1345: server_client_dispatch(struct imsg *imsg, void *arg)
1.1       nicm     1346: {
1.162     nicm     1347:        struct client           *c = arg;
1.73      nicm     1348:        struct msg_stdin_data    stdindata;
1.108     nicm     1349:        const char              *data;
1.162     nicm     1350:        ssize_t                  datalen;
1.149     nicm     1351:        struct session          *s;
1.1       nicm     1352:
1.162     nicm     1353:        if (c->flags & CLIENT_DEAD)
                   1354:                return;
                   1355:
                   1356:        if (imsg == NULL) {
                   1357:                server_client_lost(c);
                   1358:                return;
                   1359:        }
1.1       nicm     1360:
1.162     nicm     1361:        data = imsg->data;
                   1362:        datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
1.1       nicm     1363:
1.162     nicm     1364:        switch (imsg->hdr.type) {
                   1365:        case MSG_IDENTIFY_FLAGS:
                   1366:        case MSG_IDENTIFY_TERM:
                   1367:        case MSG_IDENTIFY_TTYNAME:
                   1368:        case MSG_IDENTIFY_CWD:
                   1369:        case MSG_IDENTIFY_STDIN:
                   1370:        case MSG_IDENTIFY_ENVIRON:
                   1371:        case MSG_IDENTIFY_CLIENTPID:
                   1372:        case MSG_IDENTIFY_DONE:
                   1373:                server_client_dispatch_identify(c, imsg);
                   1374:                break;
                   1375:        case MSG_COMMAND:
                   1376:                server_client_dispatch_command(c, imsg);
                   1377:                break;
                   1378:        case MSG_STDIN:
                   1379:                if (datalen != sizeof stdindata)
                   1380:                        fatalx("bad MSG_STDIN size");
                   1381:                memcpy(&stdindata, data, sizeof stdindata);
1.36      nicm     1382:
1.162     nicm     1383:                if (c->stdin_callback == NULL)
1.33      nicm     1384:                        break;
1.162     nicm     1385:                if (stdindata.size <= 0)
                   1386:                        c->stdin_closed = 1;
                   1387:                else {
                   1388:                        evbuffer_add(c->stdin_data, stdindata.data,
                   1389:                            stdindata.size);
                   1390:                }
                   1391:                c->stdin_callback(c, c->stdin_closed,
                   1392:                    c->stdin_callback_data);
                   1393:                break;
                   1394:        case MSG_RESIZE:
                   1395:                if (datalen != 0)
                   1396:                        fatalx("bad MSG_RESIZE size");
1.1       nicm     1397:
1.162     nicm     1398:                if (c->flags & CLIENT_CONTROL)
1.1       nicm     1399:                        break;
1.162     nicm     1400:                if (tty_resize(&c->tty)) {
                   1401:                        recalculate_sizes();
                   1402:                        server_redraw_client(c);
                   1403:                }
1.174     nicm     1404:                if (c->session != NULL)
1.196     nicm     1405:                        notify_client("client-resized", c);
1.162     nicm     1406:                break;
                   1407:        case MSG_EXITING:
                   1408:                if (datalen != 0)
                   1409:                        fatalx("bad MSG_EXITING size");
1.1       nicm     1410:
1.162     nicm     1411:                c->session = NULL;
                   1412:                tty_close(&c->tty);
                   1413:                proc_send(c->peer, MSG_EXITED, -1, NULL, 0);
                   1414:                break;
                   1415:        case MSG_WAKEUP:
                   1416:        case MSG_UNLOCK:
                   1417:                if (datalen != 0)
                   1418:                        fatalx("bad MSG_WAKEUP size");
1.121     nicm     1419:
1.162     nicm     1420:                if (!(c->flags & CLIENT_SUSPENDED))
                   1421:                        break;
                   1422:                c->flags &= ~CLIENT_SUSPENDED;
1.10      nicm     1423:
1.162     nicm     1424:                if (c->tty.fd == -1) /* exited in the meantime */
1.1       nicm     1425:                        break;
1.162     nicm     1426:                s = c->session;
1.1       nicm     1427:
1.162     nicm     1428:                if (gettimeofday(&c->activity_time, NULL) != 0)
                   1429:                        fatal("gettimeofday failed");
                   1430:
                   1431:                tty_start_tty(&c->tty);
                   1432:                server_redraw_client(c);
                   1433:                recalculate_sizes();
1.184     nicm     1434:
                   1435:                if (s != NULL)
                   1436:                        session_update_activity(s, &c->activity_time);
1.162     nicm     1437:                break;
                   1438:        case MSG_SHELL:
                   1439:                if (datalen != 0)
                   1440:                        fatalx("bad MSG_SHELL size");
1.1       nicm     1441:
1.162     nicm     1442:                server_client_dispatch_shell(c);
                   1443:                break;
1.1       nicm     1444:        }
                   1445: }
                   1446:
1.194     nicm     1447: /* Callback when command is done. */
                   1448: static enum cmd_retval
1.195     nicm     1449: server_client_command_done(struct cmdq_item *item, __unused void *data)
1.194     nicm     1450: {
1.195     nicm     1451:        struct client   *c = item->client;
1.194     nicm     1452:
                   1453:        if (~c->flags & CLIENT_ATTACHED)
                   1454:                c->flags |= CLIENT_EXIT;
                   1455:        return (CMD_RETURN_NORMAL);
                   1456: }
                   1457:
                   1458: /* Show an error message. */
                   1459: static enum cmd_retval
1.195     nicm     1460: server_client_command_error(struct cmdq_item *item, void *data)
1.194     nicm     1461: {
                   1462:        char    *error = data;
                   1463:
1.195     nicm     1464:        cmdq_error(item, "%s", error);
1.194     nicm     1465:        free(error);
                   1466:
                   1467:        return (CMD_RETURN_NORMAL);
                   1468: }
                   1469:
1.1       nicm     1470: /* Handle command message. */
1.190     nicm     1471: static void
1.162     nicm     1472: server_client_dispatch_command(struct client *c, struct imsg *imsg)
1.1       nicm     1473: {
1.108     nicm     1474:        struct msg_command_data   data;
                   1475:        char                     *buf;
                   1476:        size_t                    len;
                   1477:        struct cmd_list          *cmdlist = NULL;
                   1478:        int                       argc;
                   1479:        char                    **argv, *cause;
                   1480:
                   1481:        if (imsg->hdr.len - IMSG_HEADER_SIZE < sizeof data)
                   1482:                fatalx("bad MSG_COMMAND size");
                   1483:        memcpy(&data, imsg->data, sizeof data);
                   1484:
1.124     nicm     1485:        buf = (char *)imsg->data + sizeof data;
1.108     nicm     1486:        len = imsg->hdr.len  - IMSG_HEADER_SIZE - sizeof data;
                   1487:        if (len > 0 && buf[len - 1] != '\0')
                   1488:                fatalx("bad MSG_COMMAND string");
                   1489:
                   1490:        argc = data.argc;
                   1491:        if (cmd_unpack_argv(buf, len, argc, &argv) != 0) {
1.194     nicm     1492:                cause = xstrdup("command too long");
1.1       nicm     1493:                goto error;
                   1494:        }
                   1495:
                   1496:        if (argc == 0) {
                   1497:                argc = 1;
                   1498:                argv = xcalloc(1, sizeof *argv);
                   1499:                *argv = xstrdup("new-session");
                   1500:        }
                   1501:
1.94      nicm     1502:        if ((cmdlist = cmd_list_parse(argc, argv, NULL, 0, &cause)) == NULL) {
1.1       nicm     1503:                cmd_free_argv(argc, argv);
                   1504:                goto error;
                   1505:        }
                   1506:        cmd_free_argv(argc, argv);
                   1507:
1.194     nicm     1508:        cmdq_append(c, cmdq_get_command(cmdlist, NULL, NULL, 0));
                   1509:        cmdq_append(c, cmdq_get_callback(server_client_command_done, NULL));
1.1       nicm     1510:        cmd_list_free(cmdlist);
                   1511:        return;
                   1512:
                   1513: error:
1.194     nicm     1514:        cmdq_append(c, cmdq_get_callback(server_client_command_error, cause));
                   1515:
1.1       nicm     1516:        if (cmdlist != NULL)
                   1517:                cmd_list_free(cmdlist);
1.88      nicm     1518:
1.36      nicm     1519:        c->flags |= CLIENT_EXIT;
1.1       nicm     1520: }
                   1521:
                   1522: /* Handle identify message. */
1.190     nicm     1523: static void
1.162     nicm     1524: server_client_dispatch_identify(struct client *c, struct imsg *imsg)
1.1       nicm     1525: {
1.165     nicm     1526:        const char      *data, *home;
1.109     nicm     1527:        size_t           datalen;
                   1528:        int              flags;
1.216     nicm     1529:        char            *name;
1.109     nicm     1530:
                   1531:        if (c->flags & CLIENT_IDENTIFIED)
                   1532:                fatalx("out-of-order identify message");
                   1533:
                   1534:        data = imsg->data;
                   1535:        datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
                   1536:
                   1537:        switch (imsg->hdr.type) {
                   1538:        case MSG_IDENTIFY_FLAGS:
                   1539:                if (datalen != sizeof flags)
                   1540:                        fatalx("bad MSG_IDENTIFY_FLAGS size");
                   1541:                memcpy(&flags, data, sizeof flags);
                   1542:                c->flags |= flags;
1.158     nicm     1543:                log_debug("client %p IDENTIFY_FLAGS %#x", c, flags);
1.109     nicm     1544:                break;
                   1545:        case MSG_IDENTIFY_TERM:
1.110     nicm     1546:                if (datalen == 0 || data[datalen - 1] != '\0')
1.109     nicm     1547:                        fatalx("bad MSG_IDENTIFY_TERM string");
                   1548:                c->term = xstrdup(data);
1.158     nicm     1549:                log_debug("client %p IDENTIFY_TERM %s", c, data);
1.109     nicm     1550:                break;
                   1551:        case MSG_IDENTIFY_TTYNAME:
1.110     nicm     1552:                if (datalen == 0 || data[datalen - 1] != '\0')
1.109     nicm     1553:                        fatalx("bad MSG_IDENTIFY_TTYNAME string");
                   1554:                c->ttyname = xstrdup(data);
1.158     nicm     1555:                log_debug("client %p IDENTIFY_TTYNAME %s", c, data);
1.109     nicm     1556:                break;
                   1557:        case MSG_IDENTIFY_CWD:
1.155     nicm     1558:                if (datalen == 0 || data[datalen - 1] != '\0')
                   1559:                        fatalx("bad MSG_IDENTIFY_CWD string");
1.165     nicm     1560:                if (access(data, X_OK) == 0)
                   1561:                        c->cwd = xstrdup(data);
                   1562:                else if ((home = find_home()) != NULL)
                   1563:                        c->cwd = xstrdup(home);
                   1564:                else
                   1565:                        c->cwd = xstrdup("/");
1.158     nicm     1566:                log_debug("client %p IDENTIFY_CWD %s", c, data);
1.109     nicm     1567:                break;
                   1568:        case MSG_IDENTIFY_STDIN:
                   1569:                if (datalen != 0)
                   1570:                        fatalx("bad MSG_IDENTIFY_STDIN size");
                   1571:                c->fd = imsg->fd;
1.158     nicm     1572:                log_debug("client %p IDENTIFY_STDIN %d", c, imsg->fd);
1.109     nicm     1573:                break;
                   1574:        case MSG_IDENTIFY_ENVIRON:
1.110     nicm     1575:                if (datalen == 0 || data[datalen - 1] != '\0')
1.109     nicm     1576:                        fatalx("bad MSG_IDENTIFY_ENVIRON string");
                   1577:                if (strchr(data, '=') != NULL)
1.164     nicm     1578:                        environ_put(c->environ, data);
1.158     nicm     1579:                log_debug("client %p IDENTIFY_ENVIRON %s", c, data);
1.143     nicm     1580:                break;
                   1581:        case MSG_IDENTIFY_CLIENTPID:
                   1582:                if (datalen != sizeof c->pid)
                   1583:                        fatalx("bad MSG_IDENTIFY_CLIENTPID size");
                   1584:                memcpy(&c->pid, data, sizeof c->pid);
1.158     nicm     1585:                log_debug("client %p IDENTIFY_CLIENTPID %ld", c, (long)c->pid);
1.109     nicm     1586:                break;
                   1587:        default:
                   1588:                break;
                   1589:        }
                   1590:
                   1591:        if (imsg->hdr.type != MSG_IDENTIFY_DONE)
                   1592:                return;
                   1593:        c->flags |= CLIENT_IDENTIFIED;
1.75      nicm     1594:
1.216     nicm     1595:        if (*c->ttyname != '\0')
                   1596:                name = xstrdup(c->ttyname);
                   1597:        else
                   1598:                xasprintf(&name, "client-%ld", (long)c->pid);
                   1599:        c->name = name;
                   1600:        log_debug("client %p name is %s", c, c->name);
                   1601:
1.109     nicm     1602:        if (c->flags & CLIENT_CONTROL) {
1.75      nicm     1603:                c->stdin_callback = control_callback;
1.109     nicm     1604:
1.97      nicm     1605:                evbuffer_free(c->stderr_data);
                   1606:                c->stderr_data = c->stdout_data;
1.109     nicm     1607:
                   1608:                if (c->flags & CLIENT_CONTROLCONTROL)
1.96      nicm     1609:                        evbuffer_add_printf(c->stdout_data, "\033P1000p");
1.162     nicm     1610:                proc_send(c->peer, MSG_STDIN, -1, NULL, 0);
1.75      nicm     1611:
                   1612:                c->tty.fd = -1;
                   1613:
1.109     nicm     1614:                close(c->fd);
                   1615:                c->fd = -1;
                   1616:
1.75      nicm     1617:                return;
                   1618:        }
1.1       nicm     1619:
1.109     nicm     1620:        if (c->fd == -1)
1.104     nicm     1621:                return;
1.145     nicm     1622:        if (tty_init(&c->tty, c, c->fd, c->term) != 0) {
1.109     nicm     1623:                close(c->fd);
                   1624:                c->fd = -1;
1.80      nicm     1625:                return;
                   1626:        }
1.109     nicm     1627:        if (c->flags & CLIENT_UTF8)
1.1       nicm     1628:                c->tty.flags |= TTY_UTF8;
1.109     nicm     1629:        if (c->flags & CLIENT_256COLOURS)
1.1       nicm     1630:                c->tty.term_flags |= TERM_256COLOURS;
                   1631:
                   1632:        tty_resize(&c->tty);
                   1633:
1.109     nicm     1634:        if (!(c->flags & CLIENT_CONTROL))
1.86      nicm     1635:                c->flags |= CLIENT_TERMINAL;
1.1       nicm     1636: }
                   1637:
                   1638: /* Handle shell message. */
1.190     nicm     1639: static void
1.162     nicm     1640: server_client_dispatch_shell(struct client *c)
1.1       nicm     1641: {
1.107     nicm     1642:        const char      *shell;
1.25      nicm     1643:
1.163     nicm     1644:        shell = options_get_string(global_s_options, "default-shell");
1.1       nicm     1645:        if (*shell == '\0' || areshell(shell))
                   1646:                shell = _PATH_BSHELL;
1.162     nicm     1647:        proc_send_s(c->peer, MSG_SHELL, shell);
1.25      nicm     1648:
1.162     nicm     1649:        proc_kill_peer(c->peer);
1.169     nicm     1650: }
                   1651:
                   1652: /* Event callback to push more stdout data if any left. */
                   1653: static void
1.170     nicm     1654: server_client_stdout_cb(__unused int fd, __unused short events, void *arg)
1.169     nicm     1655: {
                   1656:        struct client   *c = arg;
                   1657:
                   1658:        if (~c->flags & CLIENT_DEAD)
                   1659:                server_client_push_stdout(c);
                   1660:        server_client_unref(c);
                   1661: }
                   1662:
                   1663: /* Push stdout to client if possible. */
                   1664: void
                   1665: server_client_push_stdout(struct client *c)
                   1666: {
                   1667:        struct msg_stdout_data data;
                   1668:        size_t                 sent, left;
                   1669:
                   1670:        left = EVBUFFER_LENGTH(c->stdout_data);
                   1671:        while (left != 0) {
                   1672:                sent = left;
                   1673:                if (sent > sizeof data.data)
                   1674:                        sent = sizeof data.data;
                   1675:                memcpy(data.data, EVBUFFER_DATA(c->stdout_data), sent);
                   1676:                data.size = sent;
                   1677:
                   1678:                if (proc_send(c->peer, MSG_STDOUT, -1, &data, sizeof data) != 0)
                   1679:                        break;
                   1680:                evbuffer_drain(c->stdout_data, sent);
                   1681:
                   1682:                left = EVBUFFER_LENGTH(c->stdout_data);
                   1683:                log_debug("%s: client %p, sent %zu, left %zu", __func__, c,
                   1684:                    sent, left);
                   1685:        }
                   1686:        if (left != 0) {
                   1687:                c->references++;
                   1688:                event_once(-1, EV_TIMEOUT, server_client_stdout_cb, c, NULL);
                   1689:                log_debug("%s: client %p, queued", __func__, c);
                   1690:        }
                   1691: }
                   1692:
                   1693: /* Event callback to push more stderr data if any left. */
                   1694: static void
1.170     nicm     1695: server_client_stderr_cb(__unused int fd, __unused short events, void *arg)
1.169     nicm     1696: {
                   1697:        struct client   *c = arg;
                   1698:
                   1699:        if (~c->flags & CLIENT_DEAD)
                   1700:                server_client_push_stderr(c);
                   1701:        server_client_unref(c);
                   1702: }
                   1703:
                   1704: /* Push stderr to client if possible. */
                   1705: void
                   1706: server_client_push_stderr(struct client *c)
                   1707: {
                   1708:        struct msg_stderr_data data;
                   1709:        size_t                 sent, left;
                   1710:
                   1711:        if (c->stderr_data == c->stdout_data) {
                   1712:                server_client_push_stdout(c);
                   1713:                return;
                   1714:        }
                   1715:
                   1716:        left = EVBUFFER_LENGTH(c->stderr_data);
                   1717:        while (left != 0) {
                   1718:                sent = left;
                   1719:                if (sent > sizeof data.data)
                   1720:                        sent = sizeof data.data;
                   1721:                memcpy(data.data, EVBUFFER_DATA(c->stderr_data), sent);
                   1722:                data.size = sent;
                   1723:
                   1724:                if (proc_send(c->peer, MSG_STDERR, -1, &data, sizeof data) != 0)
                   1725:                        break;
                   1726:                evbuffer_drain(c->stderr_data, sent);
                   1727:
                   1728:                left = EVBUFFER_LENGTH(c->stderr_data);
                   1729:                log_debug("%s: client %p, sent %zu, left %zu", __func__, c,
                   1730:                    sent, left);
                   1731:        }
                   1732:        if (left != 0) {
                   1733:                c->references++;
                   1734:                event_once(-1, EV_TIMEOUT, server_client_stderr_cb, c, NULL);
                   1735:                log_debug("%s: client %p, queued", __func__, c);
1.212     nicm     1736:        }
                   1737: }
                   1738:
                   1739: /* Add to client message log. */
                   1740: void
                   1741: server_client_add_message(struct client *c, const char *fmt, ...)
                   1742: {
                   1743:        struct message_entry    *msg, *msg1;
                   1744:        char                    *s;
                   1745:        va_list                  ap;
                   1746:        u_int                    limit;
                   1747:
                   1748:        va_start(ap, fmt);
                   1749:        xvasprintf(&s, fmt, ap);
                   1750:        va_end(ap);
                   1751:
1.216     nicm     1752:        log_debug("message %s (client %p)", s, c);
1.212     nicm     1753:
                   1754:        msg = xcalloc(1, sizeof *msg);
                   1755:        msg->msg_time = time(NULL);
                   1756:        msg->msg_num = c->message_next++;
                   1757:        msg->msg = s;
                   1758:        TAILQ_INSERT_TAIL(&c->message_log, msg, entry);
                   1759:
                   1760:        limit = options_get_number(global_options, "message-limit");
                   1761:        TAILQ_FOREACH_SAFE(msg, &c->message_log, entry, msg1) {
                   1762:                if (msg->msg_num + limit >= c->message_next)
                   1763:                        break;
                   1764:                free(msg->msg);
                   1765:                TAILQ_REMOVE(&c->message_log, msg, entry);
                   1766:                free(msg);
1.169     nicm     1767:        }
1.213     nicm     1768: }
                   1769:
                   1770: /* Get client working directory. */
                   1771: const char *
                   1772: server_client_get_cwd(struct client *c)
                   1773: {
                   1774:        struct session  *s;
                   1775:
                   1776:        if (c != NULL && c->session == NULL && c->cwd != NULL)
                   1777:                return (c->cwd);
                   1778:        if (c != NULL && (s = c->session) != NULL && s->cwd != NULL)
                   1779:                return (s->cwd);
                   1780:        return (".");
                   1781: }
                   1782:
                   1783: /* Resolve an absolute path or relative to client working directory. */
                   1784: char *
                   1785: server_client_get_path(struct client *c, const char *file)
                   1786: {
                   1787:        char    *path, resolved[PATH_MAX];
                   1788:
                   1789:        if (*file == '/')
                   1790:                path = xstrdup(file);
                   1791:        else
                   1792:                xasprintf(&path, "%s/%s", server_client_get_cwd(c), file);
                   1793:        if (realpath(path, resolved) == NULL)
                   1794:                return (path);
                   1795:        free(path);
                   1796:        return (xstrdup(resolved));
1.1       nicm     1797: }