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

Annotation of src/usr.bin/tmux/server.c, Revision 1.28

1.28    ! nicm        1: /* $OpenBSD: server.c,v 1.27 2009/09/02 21:25:57 nicm Exp $ */
1.1       nicm        2:
                      3: /*
                      4:  * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
                      5:  *
                      6:  * Permission to use, copy, modify, and distribute this software for any
                      7:  * purpose with or without fee is hereby granted, provided that the above
                      8:  * copyright notice and this permission notice appear in all copies.
                      9:  *
                     10:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
                     11:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
                     12:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
                     13:  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
                     14:  * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
                     15:  * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
                     16:  * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
                     17:  */
                     18:
                     19: #include <sys/types.h>
                     20: #include <sys/ioctl.h>
                     21: #include <sys/socket.h>
                     22: #include <sys/stat.h>
                     23: #include <sys/un.h>
                     24: #include <sys/wait.h>
                     25:
                     26: #include <errno.h>
                     27: #include <fcntl.h>
1.5       nicm       28: #include <paths.h>
1.1       nicm       29: #include <signal.h>
                     30: #include <stdio.h>
                     31: #include <stdlib.h>
                     32: #include <string.h>
                     33: #include <syslog.h>
                     34: #include <termios.h>
                     35: #include <time.h>
                     36: #include <unistd.h>
                     37:
                     38: #include "tmux.h"
                     39:
                     40: /*
                     41:  * Main server functions.
                     42:  */
                     43:
                     44: /* Client list. */
                     45: struct clients  clients;
                     46:
1.13      nicm       47: void            server_create_client(int);
1.1       nicm       48: int             server_create_socket(void);
                     49: int             server_main(int);
                     50: void            server_shutdown(void);
                     51: void            server_child_signal(void);
                     52: void            server_fill_windows(struct pollfd **);
                     53: void            server_handle_windows(struct pollfd **);
                     54: void            server_fill_clients(struct pollfd **);
                     55: void            server_handle_clients(struct pollfd **);
1.13      nicm       56: void            server_accept_client(int);
1.1       nicm       57: void            server_handle_client(struct client *);
                     58: void            server_handle_window(struct window *, struct window_pane *);
1.10      nicm       59: int             server_check_window_bell(struct session *, struct window *);
1.1       nicm       60: int             server_check_window_activity(struct session *,
                     61:                      struct window *);
                     62: int             server_check_window_content(struct session *, struct window *,
                     63:                      struct window_pane *);
                     64: void            server_lost_client(struct client *);
                     65: void            server_check_window(struct window *);
                     66: void            server_check_redraw(struct client *);
                     67: void            server_redraw_locked(struct client *);
                     68: void            server_check_timers(struct client *);
                     69: void            server_second_timers(void);
                     70: int             server_update_socket(void);
                     71:
                     72: /* Create a new client. */
1.13      nicm       73: void
1.1       nicm       74: server_create_client(int fd)
                     75: {
                     76:        struct client   *c;
                     77:        int              mode;
                     78:        u_int            i;
                     79:
                     80:        if ((mode = fcntl(fd, F_GETFL)) == -1)
                     81:                fatal("fcntl failed");
                     82:        if (fcntl(fd, F_SETFL, mode|O_NONBLOCK) == -1)
                     83:                fatal("fcntl failed");
                     84:        if (fcntl(fd, F_SETFD, FD_CLOEXEC) == -1)
                     85:                fatal("fcntl failed");
                     86:
                     87:        c = xcalloc(1, sizeof *c);
1.18      nicm       88:        imsg_init(&c->ibuf, fd);
1.1       nicm       89:
                     90:        ARRAY_INIT(&c->prompt_hdata);
                     91:
                     92:        c->tty.fd = -1;
                     93:        c->title = NULL;
                     94:
                     95:        c->session = NULL;
                     96:        c->tty.sx = 80;
                     97:        c->tty.sy = 25;
                     98:        screen_init(&c->status, c->tty.sx, 1, 0);
                     99:
                    100:        c->message_string = NULL;
                    101:
                    102:        c->prompt_string = NULL;
                    103:        c->prompt_buffer = NULL;
                    104:        c->prompt_index = 0;
                    105:
                    106:        for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                    107:                if (ARRAY_ITEM(&clients, i) == NULL) {
                    108:                        ARRAY_SET(&clients, i, c);
1.13      nicm      109:                        return;
1.1       nicm      110:                }
                    111:        }
                    112:        ARRAY_ADD(&clients, c);
1.20      nicm      113:        log_debug("new client %d", fd);
1.1       nicm      114: }
                    115:
                    116: /* Find client index. */
                    117: int
                    118: server_client_index(struct client *c)
                    119: {
                    120:        u_int   i;
                    121:
                    122:        for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                    123:                if (c == ARRAY_ITEM(&clients, i))
                    124:                        return (i);
                    125:        }
                    126:        return (-1);
                    127: }
                    128:
                    129: /* Fork new server. */
                    130: int
                    131: server_start(char *path)
                    132: {
1.16      nicm      133:        struct client   *c;
                    134:        int              pair[2], srv_fd;
                    135:        char            *cause;
                    136:        char             rpathbuf[MAXPATHLEN];
1.1       nicm      137:
                    138:        /* The first client is special and gets a socketpair; create it. */
                    139:        if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, pair) != 0)
                    140:                fatal("socketpair failed");
                    141:
                    142:        switch (fork()) {
                    143:        case -1:
                    144:                fatal("fork failed");
                    145:        case 0:
                    146:                break;
                    147:        default:
                    148:                close(pair[1]);
                    149:                return (pair[0]);
                    150:        }
                    151:        close(pair[0]);
                    152:
                    153:        /*
                    154:         * Must daemonise before loading configuration as the PID changes so
                    155:         * $TMUX would be wrong for sessions created in the config file.
                    156:         */
1.16      nicm      157:        if (daemon(1, 0) != 0)
1.1       nicm      158:                fatal("daemon failed");
                    159:
1.16      nicm      160:        logfile("server");
                    161:        log_debug("server started, pid %ld", (long) getpid());
                    162:
1.1       nicm      163:        ARRAY_INIT(&windows);
                    164:        ARRAY_INIT(&clients);
                    165:        ARRAY_INIT(&sessions);
1.15      nicm      166:        mode_key_init_trees();
1.1       nicm      167:        key_bindings_init();
                    168:        utf8_build();
                    169:
                    170:        server_locked = 0;
                    171:        server_password = NULL;
                    172:        server_activity = time(NULL);
                    173:
                    174:        start_time = time(NULL);
                    175:        socket_path = path;
                    176:
1.16      nicm      177:        if (realpath(socket_path, rpathbuf) == NULL)
                    178:                strlcpy(rpathbuf, socket_path, sizeof rpathbuf);
                    179:        log_debug("socket path %s", socket_path);
                    180:        setproctitle("server (%s)", rpathbuf);
                    181:
                    182:        srv_fd = server_create_socket();
                    183:        server_create_client(pair[1]);
                    184:
1.7       nicm      185:        if (access(SYSTEM_CFG, R_OK) != 0) {
                    186:                if (errno != ENOENT) {
1.16      nicm      187:                        xasprintf(
                    188:                            &cause, "%s: %s", strerror(errno), SYSTEM_CFG);
                    189:                        goto error;
                    190:                }
1.24      nicm      191:        } else if (load_cfg(SYSTEM_CFG, NULL, &cause) != 0)
1.16      nicm      192:                goto error;
1.24      nicm      193:        if (cfg_file != NULL && load_cfg(cfg_file, NULL, &cause) != 0)
1.16      nicm      194:                goto error;
1.5       nicm      195:
1.16      nicm      196:        exit(server_main(srv_fd));
1.1       nicm      197:
1.16      nicm      198: error:
                    199:        /* Write the error and shutdown the server. */
                    200:        c = ARRAY_FIRST(&clients);
1.1       nicm      201:
1.16      nicm      202:        server_write_error(c, cause);
                    203:        xfree(cause);
1.1       nicm      204:
1.27      nicm      205:        sigterm = 1;
1.16      nicm      206:        server_shutdown();
1.1       nicm      207:
                    208:        exit(server_main(srv_fd));
                    209: }
                    210:
                    211: /* Create server socket. */
                    212: int
                    213: server_create_socket(void)
                    214: {
                    215:        struct sockaddr_un      sa;
                    216:        size_t                  size;
                    217:        mode_t                  mask;
                    218:        int                     fd, mode;
                    219:
                    220:        memset(&sa, 0, sizeof sa);
                    221:        sa.sun_family = AF_UNIX;
                    222:        size = strlcpy(sa.sun_path, socket_path, sizeof sa.sun_path);
                    223:        if (size >= sizeof sa.sun_path) {
                    224:                errno = ENAMETOOLONG;
                    225:                fatal("socket failed");
                    226:        }
                    227:        unlink(sa.sun_path);
                    228:
                    229:        if ((fd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1)
                    230:                fatal("socket failed");
                    231:
                    232:        mask = umask(S_IXUSR|S_IRWXG|S_IRWXO);
                    233:        if (bind(fd, (struct sockaddr *) &sa, SUN_LEN(&sa)) == -1)
                    234:                fatal("bind failed");
                    235:        umask(mask);
                    236:
                    237:        if (listen(fd, 16) == -1)
                    238:                fatal("listen failed");
                    239:
                    240:        if ((mode = fcntl(fd, F_GETFL)) == -1)
                    241:                fatal("fcntl failed");
                    242:        if (fcntl(fd, F_SETFL, mode|O_NONBLOCK) == -1)
                    243:                fatal("fcntl failed");
                    244:        if (fcntl(fd, F_SETFD, FD_CLOEXEC) == -1)
                    245:                fatal("fcntl failed");
                    246:
                    247:        return (fd);
                    248: }
                    249:
                    250: /* Main server loop. */
                    251: int
                    252: server_main(int srv_fd)
                    253: {
                    254:        struct window   *w;
                    255:        struct pollfd   *pfds, *pfd;
                    256:        int              nfds, xtimeout;
                    257:        u_int            i, n;
                    258:        time_t           now, last;
                    259:
                    260:        siginit();
1.20      nicm      261:        log_debug("server socket is %d", srv_fd);
1.1       nicm      262:
                    263:        last = time(NULL);
                    264:
                    265:        pfds = NULL;
                    266:        for (;;) {
                    267:                /* If sigterm, kill all windows and clients. */
                    268:                if (sigterm)
                    269:                        server_shutdown();
                    270:
                    271:                /* Handle child exit. */
                    272:                if (sigchld) {
                    273:                        server_child_signal();
                    274:                        sigchld = 0;
                    275:                }
                    276:
                    277:                /* Recreate socket on SIGUSR1. */
                    278:                if (sigusr1) {
                    279:                        close(srv_fd);
                    280:                        srv_fd = server_create_socket();
                    281:                        sigusr1 = 0;
                    282:                }
                    283:
                    284:                /* Initialise pollfd array. */
                    285:                nfds = 1;
                    286:                for (i = 0; i < ARRAY_LENGTH(&windows); i++) {
                    287:                        w = ARRAY_ITEM(&windows, i);
                    288:                        if (w != NULL)
                    289:                                nfds += window_count_panes(w);
                    290:                }
                    291:                nfds += ARRAY_LENGTH(&clients) * 2;
                    292:                pfds = xrealloc(pfds, nfds, sizeof *pfds);
                    293:                memset(pfds, 0, nfds * sizeof *pfds);
                    294:                pfd = pfds;
                    295:
                    296:                /* Fill server socket. */
                    297:                pfd->fd = srv_fd;
                    298:                pfd->events = POLLIN;
                    299:                pfd++;
                    300:
                    301:                /* Fill window and client sockets. */
                    302:                server_fill_windows(&pfd);
                    303:                server_fill_clients(&pfd);
                    304:
                    305:                /* Update socket permissions. */
                    306:                xtimeout = INFTIM;
1.27      nicm      307:                if (server_update_socket() != 0)
1.1       nicm      308:                        xtimeout = POLL_TIMEOUT;
                    309:
                    310:                /* Do the poll. */
1.4       nicm      311:                if (poll(pfds, nfds, xtimeout) == -1) {
1.1       nicm      312:                        if (errno == EAGAIN || errno == EINTR)
                    313:                                continue;
                    314:                        fatal("poll failed");
                    315:                }
                    316:                pfd = pfds;
                    317:
                    318:                /* Handle server socket. */
                    319:                if (pfd->revents & (POLLERR|POLLNVAL|POLLHUP))
                    320:                        fatalx("lost server socket");
                    321:                if (pfd->revents & POLLIN) {
                    322:                        server_accept_client(srv_fd);
                    323:                        continue;
                    324:                }
                    325:                pfd++;
                    326:
                    327:                /* Call second-based timers. */
                    328:                now = time(NULL);
                    329:                if (now != last) {
                    330:                        last = now;
                    331:                        server_second_timers();
                    332:                }
                    333:
                    334:                /* Set window names. */
                    335:                set_window_names();
                    336:
                    337:                /*
                    338:                 * Handle window and client sockets. Clients can create
                    339:                 * windows, so windows must come first to avoid messing up by
                    340:                 * increasing the array size.
                    341:                 */
                    342:                server_handle_windows(&pfd);
                    343:                server_handle_clients(&pfd);
                    344:
1.8       nicm      345:                /* Collect any unset key bindings. */
                    346:                key_bindings_clean();
                    347:
1.1       nicm      348:                /*
                    349:                 * If we have no sessions and clients left, let's get out
                    350:                 * of here...
                    351:                 */
                    352:                n = 0;
                    353:                for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
                    354:                        if (ARRAY_ITEM(&sessions, i) != NULL)
                    355:                                n++;
                    356:                }
                    357:                for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                    358:                        if (ARRAY_ITEM(&clients, i) != NULL)
                    359:                                n++;
                    360:                }
                    361:                if (n == 0)
                    362:                        break;
                    363:        }
                    364:        if (pfds != NULL)
                    365:                xfree(pfds);
                    366:
                    367:        for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
                    368:                if (ARRAY_ITEM(&sessions, i) != NULL)
                    369:                        session_destroy(ARRAY_ITEM(&sessions, i));
                    370:        }
                    371:        ARRAY_FREE(&sessions);
                    372:
                    373:        for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                    374:                if (ARRAY_ITEM(&clients, i) != NULL)
                    375:                        server_lost_client(ARRAY_ITEM(&clients, i));
                    376:        }
                    377:        ARRAY_FREE(&clients);
                    378:
1.15      nicm      379:        mode_key_free_trees();
1.1       nicm      380:        key_bindings_free();
                    381:
                    382:        close(srv_fd);
                    383:
                    384:        unlink(socket_path);
                    385:        xfree(socket_path);
                    386:
1.6       nicm      387:        options_free(&global_s_options);
                    388:        options_free(&global_w_options);
1.1       nicm      389:        if (server_password != NULL)
                    390:                xfree(server_password);
                    391:
                    392:        return (0);
                    393: }
                    394:
                    395: /* Kill all clients. */
                    396: void
                    397: server_shutdown(void)
                    398: {
                    399:        struct session  *s;
                    400:        struct client   *c;
                    401:        u_int            i, j;
                    402:
                    403:        for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
                    404:                s = ARRAY_ITEM(&sessions, i);
                    405:                for (j = 0; j < ARRAY_LENGTH(&clients); j++) {
                    406:                        c = ARRAY_ITEM(&clients, j);
                    407:                        if (c != NULL && c->session == s) {
                    408:                                s = NULL;
                    409:                                break;
                    410:                        }
                    411:                }
                    412:                if (s != NULL)
                    413:                        session_destroy(s);
                    414:        }
                    415:
                    416:        for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                    417:                c = ARRAY_ITEM(&clients, i);
1.16      nicm      418:                if (c != NULL) {
                    419:                        if (c->flags & CLIENT_BAD)
                    420:                                server_lost_client(c);
                    421:                        else
                    422:                                server_write_client(c, MSG_SHUTDOWN, NULL, 0);
                    423:                }
1.1       nicm      424:        }
                    425: }
                    426:
                    427: /* Handle SIGCHLD. */
                    428: void
                    429: server_child_signal(void)
                    430: {
                    431:        struct window           *w;
                    432:        struct window_pane      *wp;
                    433:        int                      status;
                    434:        pid_t                    pid;
                    435:        u_int                    i;
                    436:
                    437:        for (;;) {
                    438:                switch (pid = waitpid(WAIT_ANY, &status, WNOHANG|WUNTRACED)) {
                    439:                case -1:
                    440:                        if (errno == ECHILD)
                    441:                                return;
                    442:                        fatal("waitpid");
                    443:                case 0:
                    444:                        return;
                    445:                }
                    446:                if (!WIFSTOPPED(status))
                    447:                        continue;
                    448:                if (WSTOPSIG(status) == SIGTTIN || WSTOPSIG(status) == SIGTTOU)
                    449:                        continue;
                    450:
                    451:                for (i = 0; i < ARRAY_LENGTH(&windows); i++) {
                    452:                        w = ARRAY_ITEM(&windows, i);
                    453:                        if (w == NULL)
                    454:                                continue;
                    455:                        TAILQ_FOREACH(wp, &w->panes, entry) {
                    456:                                if (wp->pid == pid) {
                    457:                                        if (killpg(pid, SIGCONT) != 0)
                    458:                                                kill(pid, SIGCONT);
                    459:                                }
                    460:                        }
                    461:                }
                    462:        }
                    463: }
                    464:
                    465: /* Fill window pollfds. */
                    466: void
                    467: server_fill_windows(struct pollfd **pfd)
                    468: {
                    469:        struct window           *w;
                    470:        struct window_pane      *wp;
                    471:        u_int                    i;
                    472:
                    473:        for (i = 0; i < ARRAY_LENGTH(&windows); i++) {
                    474:                w = ARRAY_ITEM(&windows, i);
                    475:                if (w == NULL)
                    476:                        continue;
                    477:
                    478:                TAILQ_FOREACH(wp, &w->panes, entry) {
                    479:                        (*pfd)->fd = wp->fd;
                    480:                        if (wp->fd != -1) {
                    481:                                (*pfd)->events = POLLIN;
                    482:                                if (BUFFER_USED(wp->out) > 0)
                    483:                                        (*pfd)->events |= POLLOUT;
                    484:                        }
                    485:                        (*pfd)++;
                    486:                }
                    487:        }
                    488: }
                    489:
                    490: /* Handle window pollfds. */
                    491: void
                    492: server_handle_windows(struct pollfd **pfd)
                    493: {
                    494:        struct window           *w;
                    495:        struct window_pane      *wp;
                    496:        u_int                    i;
                    497:
                    498:        for (i = 0; i < ARRAY_LENGTH(&windows); i++) {
                    499:                w = ARRAY_ITEM(&windows, i);
                    500:                if (w == NULL)
                    501:                        continue;
                    502:
                    503:                TAILQ_FOREACH(wp, &w->panes, entry) {
                    504:                        if (wp->fd != -1) {
                    505:                                if (buffer_poll(*pfd, wp->in, wp->out) != 0) {
                    506:                                        close(wp->fd);
                    507:                                        wp->fd = -1;
                    508:                                } else
                    509:                                        server_handle_window(w, wp);
                    510:                        }
                    511:                        (*pfd)++;
                    512:                }
                    513:
                    514:                server_check_window(w);
                    515:        }
                    516: }
                    517:
                    518: /* Check for general redraw on client. */
                    519: void
                    520: server_check_redraw(struct client *c)
                    521: {
                    522:        struct session          *s;
                    523:        struct window_pane      *wp;
                    524:        char                     title[512];
                    525:        int                      flags, redraw;
                    526:
                    527:        if (c == NULL || c->session == NULL)
                    528:                return;
                    529:        s = c->session;
                    530:
                    531:        flags = c->tty.flags & TTY_FREEZE;
                    532:        c->tty.flags &= ~TTY_FREEZE;
                    533:
                    534:        if (options_get_number(&s->options, "set-titles")) {
                    535:                xsnprintf(title, sizeof title, "%s:%u:%s - \"%s\"",
                    536:                    s->name, s->curw->idx, s->curw->window->name,
                    537:                    s->curw->window->active->screen->title);
                    538:                if (c->title == NULL || strcmp(title, c->title) != 0) {
                    539:                        if (c->title != NULL)
                    540:                                xfree(c->title);
                    541:                        c->title = xstrdup(title);
                    542:                        tty_set_title(&c->tty, c->title);
                    543:                }
                    544:        }
                    545:
                    546:        if (c->flags & (CLIENT_REDRAW|CLIENT_STATUS)) {
                    547:                if (c->message_string != NULL)
                    548:                        redraw = status_message_redraw(c);
                    549:                else if (c->prompt_string != NULL)
                    550:                        redraw = status_prompt_redraw(c);
                    551:                else
                    552:                        redraw = status_redraw(c);
                    553:                if (!redraw)
                    554:                        c->flags &= ~CLIENT_STATUS;
                    555:        }
                    556:
                    557:        if (c->flags & CLIENT_REDRAW) {
                    558:                if (server_locked)
                    559:                        server_redraw_locked(c);
                    560:                else
1.9       nicm      561:                        screen_redraw_screen(c, 0);
1.1       nicm      562:                c->flags &= ~CLIENT_STATUS;
                    563:        } else {
                    564:                TAILQ_FOREACH(wp, &c->session->curw->window->panes, entry) {
                    565:                        if (wp->flags & PANE_REDRAW)
                    566:                                screen_redraw_pane(c, wp);
                    567:                }
                    568:        }
                    569:
                    570:        if (c->flags & CLIENT_STATUS)
1.9       nicm      571:                screen_redraw_screen(c, 1);
1.1       nicm      572:
                    573:        c->tty.flags |= flags;
                    574:
                    575:        c->flags &= ~(CLIENT_REDRAW|CLIENT_STATUS);
                    576: }
                    577:
                    578: /* Redraw client when locked. */
                    579: void
                    580: server_redraw_locked(struct client *c)
                    581: {
                    582:        struct screen_write_ctx ctx;
                    583:        struct screen           screen;
1.12      nicm      584:        struct grid_cell        gc;
1.1       nicm      585:        u_int                   colour, xx, yy, i;
                    586:        int                     style;
                    587:
                    588:        xx = c->tty.sx;
                    589:        yy = c->tty.sy - 1;
                    590:        if (xx == 0 || yy == 0)
                    591:                return;
1.6       nicm      592:        colour = options_get_number(&global_w_options, "clock-mode-colour");
                    593:        style = options_get_number(&global_w_options, "clock-mode-style");
1.1       nicm      594:
1.12      nicm      595:        memcpy(&gc, &grid_default_cell, sizeof gc);
                    596:        gc.fg = colour;
                    597:        gc.attr |= GRID_ATTR_BRIGHT;
                    598:
1.1       nicm      599:        screen_init(&screen, xx, yy, 0);
                    600:
                    601:        screen_write_start(&ctx, NULL, &screen);
                    602:        clock_draw(&ctx, colour, style);
1.12      nicm      603:
                    604:        if (password_failures != 0) {
                    605:                screen_write_cursormove(&ctx, 0, 0);
                    606:                screen_write_puts(
                    607:                    &ctx, &gc, "%u failed attempts", password_failures);
1.28    ! nicm      608:                if (time(NULL) < password_backoff)
        !           609:                        screen_write_puts(&ctx, &gc, "; sleeping");
1.12      nicm      610:        }
                    611:
1.1       nicm      612:        screen_write_stop(&ctx);
                    613:
                    614:        for (i = 0; i < screen_size_y(&screen); i++)
                    615:                tty_draw_line(&c->tty, &screen, i, 0, 0);
1.9       nicm      616:        screen_redraw_screen(c, 1);
1.1       nicm      617:
                    618:        screen_free(&screen);
                    619: }
                    620:
                    621: /* Check for timers on client. */
                    622: void
                    623: server_check_timers(struct client *c)
                    624: {
                    625:        struct session  *s;
                    626:        struct timeval   tv;
                    627:        u_int            interval;
                    628:
                    629:        if (c == NULL || c->session == NULL)
                    630:                return;
                    631:        s = c->session;
                    632:
                    633:        if (gettimeofday(&tv, NULL) != 0)
                    634:                fatal("gettimeofday");
                    635:
1.26      nicm      636:        if (c->flags & CLIENT_IDENTIFY && timercmp(&tv, &c->identify_timer, >))
                    637:                server_clear_identify(c);
                    638:
1.1       nicm      639:        if (c->message_string != NULL && timercmp(&tv, &c->message_timer, >))
                    640:                status_message_clear(c);
                    641:
                    642:        if (c->message_string != NULL || c->prompt_string != NULL) {
                    643:                /*
                    644:                 * Don't need timed redraw for messages/prompts so bail now.
                    645:                 * The status timer isn't reset when they are redrawn anyway.
                    646:                 */
                    647:                return;
                    648:        }
                    649:        if (!options_get_number(&s->options, "status"))
                    650:                return;
                    651:
                    652:        /* Check timer; resolution is only a second so don't be too clever. */
                    653:        interval = options_get_number(&s->options, "status-interval");
                    654:        if (interval == 0)
                    655:                return;
                    656:        if (tv.tv_sec < c->status_timer.tv_sec ||
                    657:            ((u_int) tv.tv_sec) - c->status_timer.tv_sec >= interval)
                    658:                c->flags |= CLIENT_STATUS;
                    659: }
                    660:
                    661: /* Fill client pollfds. */
                    662: void
                    663: server_fill_clients(struct pollfd **pfd)
                    664: {
                    665:        struct client           *c;
                    666:        struct window           *w;
                    667:        struct window_pane      *wp;
                    668:        u_int                    i;
                    669:
                    670:        for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                    671:                c = ARRAY_ITEM(&clients, i);
                    672:
                    673:                server_check_timers(c);
                    674:                server_check_redraw(c);
                    675:
                    676:                if (c == NULL)
                    677:                        (*pfd)->fd = -1;
                    678:                else {
1.18      nicm      679:                        (*pfd)->fd = c->ibuf.fd;
1.16      nicm      680:                        if (!(c->flags & CLIENT_BAD))
1.18      nicm      681:                                (*pfd)->events |= POLLIN;
                    682:                        if (c->ibuf.w.queued > 0)
1.1       nicm      683:                                (*pfd)->events |= POLLOUT;
                    684:                }
                    685:                (*pfd)++;
                    686:
                    687:                if (c == NULL || c->flags & CLIENT_SUSPENDED ||
                    688:                    c->tty.fd == -1 || c->session == NULL)
                    689:                        (*pfd)->fd = -1;
                    690:                else {
                    691:                        (*pfd)->fd = c->tty.fd;
                    692:                        (*pfd)->events = POLLIN;
                    693:                        if (BUFFER_USED(c->tty.out) > 0)
                    694:                                (*pfd)->events |= POLLOUT;
                    695:                }
                    696:                (*pfd)++;
                    697:        }
                    698:
                    699:        /*
                    700:         * Clear any window redraw flags (will have been redrawn as part of
                    701:         * client).
                    702:         */
                    703:        for (i = 0; i < ARRAY_LENGTH(&windows); i++) {
                    704:                w = ARRAY_ITEM(&windows, i);
                    705:                if (w == NULL)
                    706:                        continue;
                    707:
                    708:                w->flags &= ~WINDOW_REDRAW;
                    709:                TAILQ_FOREACH(wp, &w->panes, entry)
                    710:                        wp->flags &= ~PANE_REDRAW;
                    711:        }
                    712: }
                    713:
                    714: /* Handle client pollfds. */
                    715: void
                    716: server_handle_clients(struct pollfd **pfd)
                    717: {
                    718:        struct client   *c;
                    719:        u_int            i;
                    720:
                    721:        for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                    722:                c = ARRAY_ITEM(&clients, i);
                    723:
                    724:                if (c != NULL) {
1.18      nicm      725:                        if ((*pfd)->revents & (POLLERR|POLLNVAL|POLLHUP)) {
1.1       nicm      726:                                server_lost_client(c);
                    727:                                (*pfd) += 2;
                    728:                                continue;
1.18      nicm      729:                        }
                    730:
                    731:                        if ((*pfd)->revents & POLLOUT) {
                    732:                                if (msgbuf_write(&c->ibuf.w) < 0) {
                    733:                                        server_lost_client(c);
                    734:                                        (*pfd) += 2;
                    735:                                        continue;
                    736:                                }
                    737:                        }
                    738:
                    739:                        if (c->flags & CLIENT_BAD) {
                    740:                                if (c->ibuf.w.queued == 0)
1.16      nicm      741:                                        server_lost_client(c);
                    742:                                (*pfd) += 2;
1.18      nicm      743:                                continue;
                    744:                        } else if ((*pfd)->revents & POLLIN) {
                    745:                                if (server_msg_dispatch(c) != 0) {
                    746:                                        server_lost_client(c);
                    747:                                        (*pfd) += 2;
                    748:                                        continue;
                    749:                                }
                    750:                        }
1.1       nicm      751:                }
                    752:                (*pfd)++;
                    753:
                    754:                if (c != NULL && !(c->flags & CLIENT_SUSPENDED) &&
                    755:                    c->tty.fd != -1 && c->session != NULL) {
                    756:                        if (buffer_poll(*pfd, c->tty.in, c->tty.out) != 0)
                    757:                                server_lost_client(c);
                    758:                        else
                    759:                                server_handle_client(c);
                    760:                }
                    761:                (*pfd)++;
                    762:        }
                    763: }
                    764:
                    765: /* accept(2) and create new client. */
1.13      nicm      766: void
1.1       nicm      767: server_accept_client(int srv_fd)
                    768: {
                    769:        struct sockaddr_storage sa;
                    770:        socklen_t               slen = sizeof sa;
                    771:        int                     fd;
                    772:
                    773:        fd = accept(srv_fd, (struct sockaddr *) &sa, &slen);
                    774:        if (fd == -1) {
                    775:                if (errno == EAGAIN || errno == EINTR || errno == ECONNABORTED)
1.13      nicm      776:                        return;
1.1       nicm      777:                fatal("accept failed");
                    778:        }
                    779:        if (sigterm) {
                    780:                close(fd);
1.13      nicm      781:                return;
1.1       nicm      782:        }
1.13      nicm      783:        server_create_client(fd);
1.1       nicm      784: }
                    785:
                    786: /* Input data from client. */
                    787: void
                    788: server_handle_client(struct client *c)
                    789: {
                    790:        struct window_pane      *wp;
                    791:        struct screen           *s;
                    792:        struct timeval           tv;
                    793:        struct key_binding      *bd;
                    794:        int                      key, prefix, status, xtimeout;
                    795:        int                      mode;
                    796:        u_char                   mouse[3];
                    797:
                    798:        xtimeout = options_get_number(&c->session->options, "repeat-time");
                    799:        if (xtimeout != 0 && c->flags & CLIENT_REPEAT) {
                    800:                if (gettimeofday(&tv, NULL) != 0)
                    801:                        fatal("gettimeofday");
                    802:                if (timercmp(&tv, &c->repeat_timer, >))
                    803:                        c->flags &= ~(CLIENT_PREFIX|CLIENT_REPEAT);
                    804:        }
                    805:
                    806:        /* Process keys. */
                    807:        prefix = options_get_number(&c->session->options, "prefix");
                    808:        while (tty_keys_next(&c->tty, &key, mouse) == 0) {
                    809:                server_activity = time(NULL);
                    810:
                    811:                if (c->session == NULL)
                    812:                        return;
                    813:                wp = c->session->curw->window->active;  /* could die */
                    814:
                    815:                status_message_clear(c);
1.26      nicm      816:                server_clear_identify(c);
1.1       nicm      817:                if (c->prompt_string != NULL) {
                    818:                        status_prompt_key(c, key);
                    819:                        continue;
                    820:                }
                    821:                if (server_locked)
                    822:                        continue;
                    823:
                    824:                /* Check for mouse keys. */
                    825:                if (key == KEYC_MOUSE) {
                    826:                        window_pane_mouse(wp, c, mouse[0], mouse[1], mouse[2]);
                    827:                        continue;
                    828:                }
                    829:
                    830:                /* No previous prefix key. */
                    831:                if (!(c->flags & CLIENT_PREFIX)) {
                    832:                        if (key == prefix)
                    833:                                c->flags |= CLIENT_PREFIX;
1.14      nicm      834:                        else {
                    835:                                /* Try as a non-prefix key binding. */
                    836:                                if ((bd = key_bindings_lookup(key)) == NULL)
                    837:                                        window_pane_key(wp, c, key);
                    838:                                else
                    839:                                        key_bindings_dispatch(bd, c);
                    840:                        }
1.1       nicm      841:                        continue;
                    842:                }
                    843:
                    844:                /* Prefix key already pressed. Reset prefix and lookup key. */
                    845:                c->flags &= ~CLIENT_PREFIX;
1.14      nicm      846:                if ((bd = key_bindings_lookup(key | KEYC_PREFIX)) == NULL) {
1.1       nicm      847:                        /* If repeating, treat this as a key, else ignore. */
                    848:                        if (c->flags & CLIENT_REPEAT) {
                    849:                                c->flags &= ~CLIENT_REPEAT;
                    850:                                if (key == prefix)
                    851:                                        c->flags |= CLIENT_PREFIX;
                    852:                                else
                    853:                                        window_pane_key(wp, c, key);
                    854:                        }
                    855:                        continue;
                    856:                }
                    857:
                    858:                /* If already repeating, but this key can't repeat, skip it. */
                    859:                if (c->flags & CLIENT_REPEAT && !bd->can_repeat) {
                    860:                        c->flags &= ~CLIENT_REPEAT;
                    861:                        if (key == prefix)
                    862:                                c->flags |= CLIENT_PREFIX;
                    863:                        else
                    864:                                window_pane_key(wp, c, key);
                    865:                        continue;
                    866:                }
                    867:
                    868:                /* If this key can repeat, reset the repeat flags and timer. */
                    869:                if (xtimeout != 0 && bd->can_repeat) {
                    870:                        c->flags |= CLIENT_PREFIX|CLIENT_REPEAT;
                    871:
                    872:                        tv.tv_sec = xtimeout / 1000;
                    873:                        tv.tv_usec = (xtimeout % 1000) * 1000L;
                    874:                        if (gettimeofday(&c->repeat_timer, NULL) != 0)
                    875:                                fatal("gettimeofday");
                    876:                        timeradd(&c->repeat_timer, &tv, &c->repeat_timer);
                    877:                }
                    878:
                    879:                /* Dispatch the command. */
                    880:                key_bindings_dispatch(bd, c);
                    881:        }
                    882:        if (c->session == NULL)
                    883:                return;
                    884:        wp = c->session->curw->window->active;  /* could die - do each loop */
                    885:        s = wp->screen;
                    886:
1.21      nicm      887:        /*
                    888:         * Update cursor position and mode settings. The scroll region and
                    889:         * attributes are cleared across poll(2) as this is the most likely
                    890:         * time a user may interrupt tmux, for example with ~^Z in ssh(1). This
                    891:         * is a compromise between excessive resets and likelihood of an
                    892:         * interrupt.
                    893:         *
                    894:         * tty_region/tty_reset/tty_update_mode already take care of not
                    895:         * resetting things that are already in their default state.
                    896:         */
1.1       nicm      897:        status = options_get_number(&c->session->options, "status");
1.17      nicm      898:        tty_region(&c->tty, 0, c->tty.sy - 1, 0);
1.11      nicm      899:        if (!window_pane_visible(wp) || wp->yoff + s->cy >= c->tty.sy - status)
                    900:                tty_cursor(&c->tty, 0, 0, 0, 0);
                    901:        else
1.1       nicm      902:                tty_cursor(&c->tty, s->cx, s->cy, wp->xoff, wp->yoff);
                    903:
                    904:        mode = s->mode;
                    905:        if (server_locked)
                    906:                mode &= ~TTY_NOCURSOR;
                    907:        tty_update_mode(&c->tty, mode);
1.21      nicm      908:        tty_reset(&c->tty);
1.1       nicm      909: }
                    910:
                    911: /* Lost a client. */
                    912: void
                    913: server_lost_client(struct client *c)
                    914: {
                    915:        u_int   i;
                    916:
                    917:        for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                    918:                if (ARRAY_ITEM(&clients, i) == c)
                    919:                        ARRAY_SET(&clients, i, NULL);
                    920:        }
1.20      nicm      921:        log_debug("lost client %d", c->ibuf.fd);
1.1       nicm      922:
1.25      nicm      923:        /*
                    924:         * If CLIENT_TERMINAL hasn't been set, then tty_init hasn't been called
                    925:         * and tty_free might close an unrelated fd.
                    926:         */
                    927:        if (c->flags & CLIENT_TERMINAL)
                    928:                tty_free(&c->tty);
1.1       nicm      929:
                    930:        screen_free(&c->status);
                    931:
                    932:        if (c->title != NULL)
                    933:                xfree(c->title);
                    934:
                    935:        if (c->message_string != NULL)
                    936:                xfree(c->message_string);
                    937:
                    938:        if (c->prompt_string != NULL)
                    939:                xfree(c->prompt_string);
                    940:        if (c->prompt_buffer != NULL)
                    941:                xfree(c->prompt_buffer);
                    942:        for (i = 0; i < ARRAY_LENGTH(&c->prompt_hdata); i++)
                    943:                xfree(ARRAY_ITEM(&c->prompt_hdata, i));
                    944:        ARRAY_FREE(&c->prompt_hdata);
                    945:
                    946:        if (c->cwd != NULL)
                    947:                xfree(c->cwd);
                    948:
1.18      nicm      949:        close(c->ibuf.fd);
                    950:        imsg_clear(&c->ibuf);
1.1       nicm      951:        xfree(c);
                    952:
                    953:        recalculate_sizes();
                    954: }
                    955:
                    956: /* Handle window data. */
                    957: void
                    958: server_handle_window(struct window *w, struct window_pane *wp)
                    959: {
                    960:        struct session  *s;
                    961:        u_int            i;
                    962:        int              update;
                    963:
                    964:        window_pane_parse(wp);
                    965:
                    966:        if ((w->flags & (WINDOW_BELL|WINDOW_ACTIVITY|WINDOW_CONTENT)) == 0)
                    967:                return;
                    968:
                    969:        update = 0;
                    970:        for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
                    971:                s = ARRAY_ITEM(&sessions, i);
                    972:                if (s == NULL || !session_has(s, w))
                    973:                        continue;
                    974:
1.10      nicm      975:                update += server_check_window_bell(s, w);
1.1       nicm      976:                update += server_check_window_activity(s, w);
                    977:                update += server_check_window_content(s, w, wp);
                    978:        }
                    979:        if (update)
                    980:                server_status_window(w);
                    981:
                    982:        w->flags &= ~(WINDOW_BELL|WINDOW_ACTIVITY|WINDOW_CONTENT);
                    983: }
                    984:
                    985: int
1.10      nicm      986: server_check_window_bell(struct session *s, struct window *w)
1.1       nicm      987: {
                    988:        struct client   *c;
                    989:        u_int            i;
1.10      nicm      990:        int              action, visual;
1.1       nicm      991:
                    992:        if (!(w->flags & WINDOW_BELL))
                    993:                return (0);
                    994:        if (session_alert_has_window(s, w, WINDOW_BELL))
                    995:                return (0);
                    996:        session_alert_add(s, w, WINDOW_BELL);
                    997:
                    998:        action = options_get_number(&s->options, "bell-action");
                    999:        switch (action) {
                   1000:        case BELL_ANY:
                   1001:                if (s->flags & SESSION_UNATTACHED)
                   1002:                        break;
1.10      nicm     1003:                visual = options_get_number(&s->options, "visual-bell");
1.1       nicm     1004:                for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                   1005:                        c = ARRAY_ITEM(&clients, i);
1.10      nicm     1006:                        if (c == NULL || c->session != s)
                   1007:                                continue;
                   1008:                        if (!visual) {
1.1       nicm     1009:                                tty_putcode(&c->tty, TTYC_BEL);
1.10      nicm     1010:                                continue;
                   1011:                        }
                   1012:                        if (c->session->curw->window == w) {
                   1013:                                status_message_set(c, "Bell in current window");
                   1014:                                continue;
                   1015:                        }
                   1016:                        status_message_set(c, "Bell in window %u",
                   1017:                            winlink_find_by_window(&s->windows, w)->idx);
1.1       nicm     1018:                }
                   1019:                break;
                   1020:        case BELL_CURRENT:
1.10      nicm     1021:                if (s->flags & SESSION_UNATTACHED)
1.1       nicm     1022:                        break;
1.10      nicm     1023:                visual = options_get_number(&s->options, "visual-bell");
1.1       nicm     1024:                for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                   1025:                        c = ARRAY_ITEM(&clients, i);
1.10      nicm     1026:                        if (c == NULL || c->session != s)
                   1027:                                continue;
                   1028:                        if (c->session->curw->window != w)
                   1029:                                continue;
                   1030:                        if (!visual) {
1.1       nicm     1031:                                tty_putcode(&c->tty, TTYC_BEL);
1.10      nicm     1032:                                continue;
                   1033:                        }
                   1034:                        status_message_set(c, "Bell in current window");
1.1       nicm     1035:                }
                   1036:                break;
                   1037:        }
                   1038:        return (1);
                   1039: }
                   1040:
                   1041: int
                   1042: server_check_window_activity(struct session *s, struct window *w)
                   1043: {
1.10      nicm     1044:        struct client   *c;
                   1045:        u_int            i;
                   1046:
1.1       nicm     1047:        if (!(w->flags & WINDOW_ACTIVITY))
                   1048:                return (0);
1.10      nicm     1049:
1.1       nicm     1050:        if (!options_get_number(&w->options, "monitor-activity"))
                   1051:                return (0);
1.10      nicm     1052:
1.1       nicm     1053:        if (session_alert_has_window(s, w, WINDOW_ACTIVITY))
                   1054:                return (0);
1.10      nicm     1055:        if (s->curw->window == w)
                   1056:                return (0);
                   1057:
1.1       nicm     1058:        session_alert_add(s, w, WINDOW_ACTIVITY);
1.10      nicm     1059:        if (s->flags & SESSION_UNATTACHED)
                   1060:                return (0);
                   1061:        if (options_get_number(&s->options, "visual-activity")) {
                   1062:                for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                   1063:                        c = ARRAY_ITEM(&clients, i);
                   1064:                        if (c == NULL || c->session != s)
                   1065:                                continue;
                   1066:                        status_message_set(c, "Activity in window %u",
                   1067:                            winlink_find_by_window(&s->windows, w)->idx);
                   1068:                }
                   1069:        }
                   1070:
1.1       nicm     1071:        return (1);
                   1072: }
                   1073:
                   1074: int
                   1075: server_check_window_content(
                   1076:     struct session *s, struct window *w, struct window_pane *wp)
                   1077: {
1.10      nicm     1078:        struct client   *c;
                   1079:        u_int            i;
                   1080:        char            *found, *ptr;
                   1081:
                   1082:        if (!(w->flags & WINDOW_ACTIVITY))      /* activity for new content */
                   1083:                return (0);
1.1       nicm     1084:
1.10      nicm     1085:        ptr = options_get_string(&w->options, "monitor-content");
                   1086:        if (ptr == NULL || *ptr == '\0')
1.1       nicm     1087:                return (0);
1.10      nicm     1088:
                   1089:        if (session_alert_has_window(s, w, WINDOW_CONTENT))
1.1       nicm     1090:                return (0);
1.10      nicm     1091:        if (s->curw->window == w)
1.1       nicm     1092:                return (0);
1.10      nicm     1093:
1.3       nicm     1094:        if ((found = window_pane_search(wp, ptr, NULL)) == NULL)
1.1       nicm     1095:                return (0);
1.10      nicm     1096:        xfree(found);
                   1097:
1.1       nicm     1098:        session_alert_add(s, w, WINDOW_CONTENT);
1.10      nicm     1099:        if (s->flags & SESSION_UNATTACHED)
                   1100:                return (0);
                   1101:        if (options_get_number(&s->options, "visual-content")) {
                   1102:                for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                   1103:                        c = ARRAY_ITEM(&clients, i);
                   1104:                        if (c == NULL || c->session != s)
                   1105:                                continue;
                   1106:                        status_message_set(c, "Content in window %u",
                   1107:                            winlink_find_by_window(&s->windows, w)->idx);
                   1108:                }
                   1109:        }
                   1110:
1.1       nicm     1111:        return (1);
                   1112: }
                   1113:
1.2       nicm     1114: /* Check if window still exists. */
1.1       nicm     1115: void
                   1116: server_check_window(struct window *w)
                   1117: {
                   1118:        struct window_pane      *wp, *wq;
1.22      nicm     1119:        struct options          *oo = &w->options;
1.1       nicm     1120:        struct client           *c;
                   1121:        struct session          *s;
                   1122:        struct winlink          *wl;
                   1123:        u_int                    i, j;
1.22      nicm     1124:        int                      destroyed;
1.1       nicm     1125:
                   1126:        destroyed = 1;
                   1127:
                   1128:        wp = TAILQ_FIRST(&w->panes);
                   1129:        while (wp != NULL) {
                   1130:                wq = TAILQ_NEXT(wp, entry);
1.2       nicm     1131:                /*
                   1132:                 * If the pane has died and the remain-on-exit flag is not set,
                   1133:                 * remove the pane; otherwise, if the flag is set, don't allow
                   1134:                 * the window to be destroyed (or it'll close when the last
                   1135:                 * pane dies).
                   1136:                 */
1.23      nicm     1137:                if (wp->fd == -1 && !options_get_number(oo, "remain-on-exit")) {
1.11      nicm     1138:                        layout_close_pane(wp);
1.1       nicm     1139:                        window_remove_pane(w, wp);
                   1140:                        server_redraw_window(w);
1.2       nicm     1141:                } else
                   1142:                        destroyed = 0;
1.1       nicm     1143:                wp = wq;
                   1144:        }
                   1145:
                   1146:        if (!destroyed)
                   1147:                return;
                   1148:
                   1149:        for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
                   1150:                s = ARRAY_ITEM(&sessions, i);
                   1151:                if (s == NULL)
                   1152:                        continue;
                   1153:                if (!session_has(s, w))
                   1154:                        continue;
                   1155:
                   1156:        restart:
                   1157:                /* Detach window and either redraw or kill clients. */
                   1158:                RB_FOREACH(wl, winlinks, &s->windows) {
                   1159:                        if (wl->window != w)
                   1160:                                continue;
                   1161:                        destroyed = session_detach(s, wl);
                   1162:                        for (j = 0; j < ARRAY_LENGTH(&clients); j++) {
                   1163:                                c = ARRAY_ITEM(&clients, j);
                   1164:                                if (c == NULL || c->session != s)
                   1165:                                        continue;
                   1166:                                if (!destroyed) {
                   1167:                                        server_redraw_client(c);
                   1168:                                        continue;
                   1169:                                }
                   1170:                                c->session = NULL;
                   1171:                                server_write_client(c, MSG_EXIT, NULL, 0);
                   1172:                        }
                   1173:                        /* If the session was destroyed, bail now. */
                   1174:                        if (destroyed)
                   1175:                                break;
                   1176:                        goto restart;
                   1177:                }
                   1178:        }
                   1179:
                   1180:        recalculate_sizes();
                   1181: }
                   1182:
                   1183: /* Call any once-per-second timers. */
                   1184: void
                   1185: server_second_timers(void)
                   1186: {
                   1187:        struct window           *w;
1.28    ! nicm     1188:        struct client           *c;
1.1       nicm     1189:        struct window_pane      *wp;
                   1190:        u_int                    i;
                   1191:        int                      xtimeout;
                   1192:        struct tm                now, then;
                   1193:        static time_t            last_t = 0;
                   1194:        time_t                   t;
                   1195:
                   1196:        t = time(NULL);
1.28    ! nicm     1197:
1.6       nicm     1198:        xtimeout = options_get_number(&global_s_options, "lock-after-time");
1.1       nicm     1199:        if (xtimeout > 0 && t > server_activity + xtimeout)
                   1200:                server_lock();
                   1201:
                   1202:        for (i = 0; i < ARRAY_LENGTH(&windows); i++) {
                   1203:                w = ARRAY_ITEM(&windows, i);
                   1204:                if (w == NULL)
                   1205:                        continue;
                   1206:
                   1207:                TAILQ_FOREACH(wp, &w->panes, entry) {
                   1208:                        if (wp->mode != NULL && wp->mode->timer != NULL)
                   1209:                                wp->mode->timer(wp);
1.28    ! nicm     1210:                }
        !          1211:        }
        !          1212:
        !          1213:        if (t > password_backoff) {
        !          1214:                for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
        !          1215:                        if ((c = ARRAY_ITEM(&clients, i)) != NULL)
        !          1216:                                server_redraw_client(c);
1.1       nicm     1217:                }
                   1218:        }
                   1219:
                   1220:        /* Check for a minute having passed. */
                   1221:        gmtime_r(&t, &now);
                   1222:        gmtime_r(&last_t, &then);
                   1223:        if (now.tm_min == then.tm_min)
                   1224:                return;
                   1225:        last_t = t;
                   1226:
                   1227:        /* If locked, redraw all clients. */
                   1228:        if (server_locked) {
                   1229:                for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                   1230:                        if (ARRAY_ITEM(&clients, i) != NULL)
                   1231:                                server_redraw_client(ARRAY_ITEM(&clients, i));
                   1232:                }
                   1233:        }
                   1234: }
                   1235:
                   1236: /* Update socket execute permissions based on whether sessions are attached. */
                   1237: int
                   1238: server_update_socket(void)
                   1239: {
                   1240:        struct session  *s;
                   1241:        u_int            i;
                   1242:        static int       last = -1;
                   1243:        int              n;
                   1244:
                   1245:        n = 0;
                   1246:        for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
                   1247:                s = ARRAY_ITEM(&sessions, i);
                   1248:                if (s != NULL && !(s->flags & SESSION_UNATTACHED)) {
                   1249:                        n++;
                   1250:                        break;
                   1251:                }
                   1252:        }
                   1253:
                   1254:        if (n != last) {
                   1255:                last = n;
                   1256:                if (n != 0)
                   1257:                        chmod(socket_path, S_IRWXU);
                   1258:                else
                   1259:                        chmod(socket_path, S_IRUSR|S_IWUSR);
                   1260:        }
                   1261:
                   1262:        return (n);
                   1263: }