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

1.23    ! nicm        1: /* $OpenBSD: server.c,v 1.22 2009/08/18 21:14:24 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:                }
                    191:        } else if (load_cfg(SYSTEM_CFG, &cause) != 0)
                    192:                goto error;
                    193:        if (cfg_file != NULL && load_cfg(cfg_file, &cause) != 0)
                    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.16      nicm      205:        server_shutdown();
                    206:        c->flags |= CLIENT_BAD;
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;
                    307:                if (sigterm || server_update_socket() != 0)
                    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:                        c->flags |= CLIENT_BAD;
                    424:                }
1.1       nicm      425:        }
                    426: }
                    427:
                    428: /* Handle SIGCHLD. */
                    429: void
                    430: server_child_signal(void)
                    431: {
                    432:        struct window           *w;
                    433:        struct window_pane      *wp;
                    434:        int                      status;
                    435:        pid_t                    pid;
                    436:        u_int                    i;
                    437:
                    438:        for (;;) {
                    439:                switch (pid = waitpid(WAIT_ANY, &status, WNOHANG|WUNTRACED)) {
                    440:                case -1:
                    441:                        if (errno == ECHILD)
                    442:                                return;
                    443:                        fatal("waitpid");
                    444:                case 0:
                    445:                        return;
                    446:                }
                    447:                if (!WIFSTOPPED(status))
                    448:                        continue;
                    449:                if (WSTOPSIG(status) == SIGTTIN || WSTOPSIG(status) == SIGTTOU)
                    450:                        continue;
                    451:
                    452:                for (i = 0; i < ARRAY_LENGTH(&windows); i++) {
                    453:                        w = ARRAY_ITEM(&windows, i);
                    454:                        if (w == NULL)
                    455:                                continue;
                    456:                        TAILQ_FOREACH(wp, &w->panes, entry) {
                    457:                                if (wp->pid == pid) {
                    458:                                        if (killpg(pid, SIGCONT) != 0)
                    459:                                                kill(pid, SIGCONT);
                    460:                                }
                    461:                        }
                    462:                }
                    463:        }
                    464: }
                    465:
                    466: /* Fill window pollfds. */
                    467: void
                    468: server_fill_windows(struct pollfd **pfd)
                    469: {
                    470:        struct window           *w;
                    471:        struct window_pane      *wp;
                    472:        u_int                    i;
                    473:
                    474:        for (i = 0; i < ARRAY_LENGTH(&windows); i++) {
                    475:                w = ARRAY_ITEM(&windows, i);
                    476:                if (w == NULL)
                    477:                        continue;
                    478:
                    479:                TAILQ_FOREACH(wp, &w->panes, entry) {
                    480:                        (*pfd)->fd = wp->fd;
                    481:                        if (wp->fd != -1) {
                    482:                                (*pfd)->events = POLLIN;
                    483:                                if (BUFFER_USED(wp->out) > 0)
                    484:                                        (*pfd)->events |= POLLOUT;
                    485:                        }
                    486:                        (*pfd)++;
                    487:                }
                    488:        }
                    489: }
                    490:
                    491: /* Handle window pollfds. */
                    492: void
                    493: server_handle_windows(struct pollfd **pfd)
                    494: {
                    495:        struct window           *w;
                    496:        struct window_pane      *wp;
                    497:        u_int                    i;
                    498:
                    499:        for (i = 0; i < ARRAY_LENGTH(&windows); i++) {
                    500:                w = ARRAY_ITEM(&windows, i);
                    501:                if (w == NULL)
                    502:                        continue;
                    503:
                    504:                TAILQ_FOREACH(wp, &w->panes, entry) {
                    505:                        if (wp->fd != -1) {
                    506:                                if (buffer_poll(*pfd, wp->in, wp->out) != 0) {
                    507:                                        close(wp->fd);
                    508:                                        wp->fd = -1;
                    509:                                } else
                    510:                                        server_handle_window(w, wp);
                    511:                        }
                    512:                        (*pfd)++;
                    513:                }
                    514:
                    515:                server_check_window(w);
                    516:        }
                    517: }
                    518:
                    519: /* Check for general redraw on client. */
                    520: void
                    521: server_check_redraw(struct client *c)
                    522: {
                    523:        struct session          *s;
                    524:        struct window_pane      *wp;
                    525:        char                     title[512];
                    526:        int                      flags, redraw;
                    527:
                    528:        if (c == NULL || c->session == NULL)
                    529:                return;
                    530:        s = c->session;
                    531:
                    532:        flags = c->tty.flags & TTY_FREEZE;
                    533:        c->tty.flags &= ~TTY_FREEZE;
                    534:
                    535:        if (options_get_number(&s->options, "set-titles")) {
                    536:                xsnprintf(title, sizeof title, "%s:%u:%s - \"%s\"",
                    537:                    s->name, s->curw->idx, s->curw->window->name,
                    538:                    s->curw->window->active->screen->title);
                    539:                if (c->title == NULL || strcmp(title, c->title) != 0) {
                    540:                        if (c->title != NULL)
                    541:                                xfree(c->title);
                    542:                        c->title = xstrdup(title);
                    543:                        tty_set_title(&c->tty, c->title);
                    544:                }
                    545:        }
                    546:
                    547:        if (c->flags & (CLIENT_REDRAW|CLIENT_STATUS)) {
                    548:                if (c->message_string != NULL)
                    549:                        redraw = status_message_redraw(c);
                    550:                else if (c->prompt_string != NULL)
                    551:                        redraw = status_prompt_redraw(c);
                    552:                else
                    553:                        redraw = status_redraw(c);
                    554:                if (!redraw)
                    555:                        c->flags &= ~CLIENT_STATUS;
                    556:        }
                    557:
                    558:        if (c->flags & CLIENT_REDRAW) {
                    559:                if (server_locked)
                    560:                        server_redraw_locked(c);
                    561:                else
1.9       nicm      562:                        screen_redraw_screen(c, 0);
1.1       nicm      563:                c->flags &= ~CLIENT_STATUS;
                    564:        } else {
                    565:                TAILQ_FOREACH(wp, &c->session->curw->window->panes, entry) {
                    566:                        if (wp->flags & PANE_REDRAW)
                    567:                                screen_redraw_pane(c, wp);
                    568:                }
                    569:        }
                    570:
                    571:        if (c->flags & CLIENT_STATUS)
1.9       nicm      572:                screen_redraw_screen(c, 1);
1.1       nicm      573:
                    574:        c->tty.flags |= flags;
                    575:
                    576:        c->flags &= ~(CLIENT_REDRAW|CLIENT_STATUS);
                    577: }
                    578:
                    579: /* Redraw client when locked. */
                    580: void
                    581: server_redraw_locked(struct client *c)
                    582: {
                    583:        struct screen_write_ctx ctx;
                    584:        struct screen           screen;
1.12      nicm      585:        struct grid_cell        gc;
1.1       nicm      586:        u_int                   colour, xx, yy, i;
                    587:        int                     style;
                    588:
                    589:        xx = c->tty.sx;
                    590:        yy = c->tty.sy - 1;
                    591:        if (xx == 0 || yy == 0)
                    592:                return;
1.6       nicm      593:        colour = options_get_number(&global_w_options, "clock-mode-colour");
                    594:        style = options_get_number(&global_w_options, "clock-mode-style");
1.1       nicm      595:
1.12      nicm      596:        memcpy(&gc, &grid_default_cell, sizeof gc);
                    597:        gc.fg = colour;
                    598:        gc.attr |= GRID_ATTR_BRIGHT;
                    599:
1.1       nicm      600:        screen_init(&screen, xx, yy, 0);
                    601:
                    602:        screen_write_start(&ctx, NULL, &screen);
                    603:        clock_draw(&ctx, colour, style);
1.12      nicm      604:
                    605:        if (password_failures != 0) {
                    606:                screen_write_cursormove(&ctx, 0, 0);
                    607:                screen_write_puts(
                    608:                    &ctx, &gc, "%u failed attempts", password_failures);
                    609:        }
                    610:
1.1       nicm      611:        screen_write_stop(&ctx);
                    612:
                    613:        for (i = 0; i < screen_size_y(&screen); i++)
                    614:                tty_draw_line(&c->tty, &screen, i, 0, 0);
1.9       nicm      615:        screen_redraw_screen(c, 1);
1.1       nicm      616:
                    617:        screen_free(&screen);
                    618: }
                    619:
                    620: /* Check for timers on client. */
                    621: void
                    622: server_check_timers(struct client *c)
                    623: {
                    624:        struct session  *s;
                    625:        struct timeval   tv;
                    626:        u_int            interval;
                    627:
                    628:        if (c == NULL || c->session == NULL)
                    629:                return;
                    630:        s = c->session;
                    631:
                    632:        if (gettimeofday(&tv, NULL) != 0)
                    633:                fatal("gettimeofday");
                    634:
                    635:        if (c->message_string != NULL && timercmp(&tv, &c->message_timer, >))
                    636:                status_message_clear(c);
                    637:
                    638:        if (c->message_string != NULL || c->prompt_string != NULL) {
                    639:                /*
                    640:                 * Don't need timed redraw for messages/prompts so bail now.
                    641:                 * The status timer isn't reset when they are redrawn anyway.
                    642:                 */
                    643:                return;
                    644:        }
                    645:        if (!options_get_number(&s->options, "status"))
                    646:                return;
                    647:
                    648:        /* Check timer; resolution is only a second so don't be too clever. */
                    649:        interval = options_get_number(&s->options, "status-interval");
                    650:        if (interval == 0)
                    651:                return;
                    652:        if (tv.tv_sec < c->status_timer.tv_sec ||
                    653:            ((u_int) tv.tv_sec) - c->status_timer.tv_sec >= interval)
                    654:                c->flags |= CLIENT_STATUS;
                    655: }
                    656:
                    657: /* Fill client pollfds. */
                    658: void
                    659: server_fill_clients(struct pollfd **pfd)
                    660: {
                    661:        struct client           *c;
                    662:        struct window           *w;
                    663:        struct window_pane      *wp;
                    664:        u_int                    i;
                    665:
                    666:        for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                    667:                c = ARRAY_ITEM(&clients, i);
                    668:
                    669:                server_check_timers(c);
                    670:                server_check_redraw(c);
                    671:
                    672:                if (c == NULL)
                    673:                        (*pfd)->fd = -1;
                    674:                else {
1.18      nicm      675:                        (*pfd)->fd = c->ibuf.fd;
1.16      nicm      676:                        if (!(c->flags & CLIENT_BAD))
1.18      nicm      677:                                (*pfd)->events |= POLLIN;
                    678:                        if (c->ibuf.w.queued > 0)
1.1       nicm      679:                                (*pfd)->events |= POLLOUT;
                    680:                }
                    681:                (*pfd)++;
                    682:
                    683:                if (c == NULL || c->flags & CLIENT_SUSPENDED ||
                    684:                    c->tty.fd == -1 || c->session == NULL)
                    685:                        (*pfd)->fd = -1;
                    686:                else {
                    687:                        (*pfd)->fd = c->tty.fd;
                    688:                        (*pfd)->events = POLLIN;
                    689:                        if (BUFFER_USED(c->tty.out) > 0)
                    690:                                (*pfd)->events |= POLLOUT;
                    691:                }
                    692:                (*pfd)++;
                    693:        }
                    694:
                    695:        /*
                    696:         * Clear any window redraw flags (will have been redrawn as part of
                    697:         * client).
                    698:         */
                    699:        for (i = 0; i < ARRAY_LENGTH(&windows); i++) {
                    700:                w = ARRAY_ITEM(&windows, i);
                    701:                if (w == NULL)
                    702:                        continue;
                    703:
                    704:                w->flags &= ~WINDOW_REDRAW;
                    705:                TAILQ_FOREACH(wp, &w->panes, entry)
                    706:                        wp->flags &= ~PANE_REDRAW;
                    707:        }
                    708: }
                    709:
                    710: /* Handle client pollfds. */
                    711: void
                    712: server_handle_clients(struct pollfd **pfd)
                    713: {
                    714:        struct client   *c;
                    715:        u_int            i;
                    716:
                    717:        for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                    718:                c = ARRAY_ITEM(&clients, i);
                    719:
                    720:                if (c != NULL) {
1.18      nicm      721:                        if ((*pfd)->revents & (POLLERR|POLLNVAL|POLLHUP)) {
1.1       nicm      722:                                server_lost_client(c);
                    723:                                (*pfd) += 2;
                    724:                                continue;
1.18      nicm      725:                        }
                    726:
                    727:                        if ((*pfd)->revents & POLLOUT) {
                    728:                                if (msgbuf_write(&c->ibuf.w) < 0) {
                    729:                                        server_lost_client(c);
                    730:                                        (*pfd) += 2;
                    731:                                        continue;
                    732:                                }
                    733:                        }
                    734:
                    735:                        if (c->flags & CLIENT_BAD) {
                    736:                                if (c->ibuf.w.queued == 0)
1.16      nicm      737:                                        server_lost_client(c);
                    738:                                (*pfd) += 2;
1.18      nicm      739:                                continue;
                    740:                        } else if ((*pfd)->revents & POLLIN) {
                    741:                                if (server_msg_dispatch(c) != 0) {
                    742:                                        server_lost_client(c);
                    743:                                        (*pfd) += 2;
                    744:                                        continue;
                    745:                                }
                    746:                        }
1.1       nicm      747:                }
                    748:                (*pfd)++;
                    749:
                    750:                if (c != NULL && !(c->flags & CLIENT_SUSPENDED) &&
                    751:                    c->tty.fd != -1 && c->session != NULL) {
                    752:                        if (buffer_poll(*pfd, c->tty.in, c->tty.out) != 0)
                    753:                                server_lost_client(c);
                    754:                        else
                    755:                                server_handle_client(c);
                    756:                }
                    757:                (*pfd)++;
                    758:        }
                    759: }
                    760:
                    761: /* accept(2) and create new client. */
1.13      nicm      762: void
1.1       nicm      763: server_accept_client(int srv_fd)
                    764: {
                    765:        struct sockaddr_storage sa;
                    766:        socklen_t               slen = sizeof sa;
                    767:        int                     fd;
                    768:
                    769:        fd = accept(srv_fd, (struct sockaddr *) &sa, &slen);
                    770:        if (fd == -1) {
                    771:                if (errno == EAGAIN || errno == EINTR || errno == ECONNABORTED)
1.13      nicm      772:                        return;
1.1       nicm      773:                fatal("accept failed");
                    774:        }
                    775:        if (sigterm) {
                    776:                close(fd);
1.13      nicm      777:                return;
1.1       nicm      778:        }
1.13      nicm      779:        server_create_client(fd);
1.1       nicm      780: }
                    781:
                    782: /* Input data from client. */
                    783: void
                    784: server_handle_client(struct client *c)
                    785: {
                    786:        struct window_pane      *wp;
                    787:        struct screen           *s;
                    788:        struct timeval           tv;
                    789:        struct key_binding      *bd;
                    790:        int                      key, prefix, status, xtimeout;
                    791:        int                      mode;
                    792:        u_char                   mouse[3];
                    793:
                    794:        xtimeout = options_get_number(&c->session->options, "repeat-time");
                    795:        if (xtimeout != 0 && c->flags & CLIENT_REPEAT) {
                    796:                if (gettimeofday(&tv, NULL) != 0)
                    797:                        fatal("gettimeofday");
                    798:                if (timercmp(&tv, &c->repeat_timer, >))
                    799:                        c->flags &= ~(CLIENT_PREFIX|CLIENT_REPEAT);
                    800:        }
                    801:
                    802:        /* Process keys. */
                    803:        prefix = options_get_number(&c->session->options, "prefix");
                    804:        while (tty_keys_next(&c->tty, &key, mouse) == 0) {
                    805:                server_activity = time(NULL);
                    806:
                    807:                if (c->session == NULL)
                    808:                        return;
                    809:                wp = c->session->curw->window->active;  /* could die */
                    810:
                    811:                status_message_clear(c);
                    812:                if (c->prompt_string != NULL) {
                    813:                        status_prompt_key(c, key);
                    814:                        continue;
                    815:                }
                    816:                if (server_locked)
                    817:                        continue;
                    818:
                    819:                /* Check for mouse keys. */
                    820:                if (key == KEYC_MOUSE) {
                    821:                        window_pane_mouse(wp, c, mouse[0], mouse[1], mouse[2]);
                    822:                        continue;
                    823:                }
                    824:
                    825:                /* No previous prefix key. */
                    826:                if (!(c->flags & CLIENT_PREFIX)) {
                    827:                        if (key == prefix)
                    828:                                c->flags |= CLIENT_PREFIX;
1.14      nicm      829:                        else {
                    830:                                /* Try as a non-prefix key binding. */
                    831:                                if ((bd = key_bindings_lookup(key)) == NULL)
                    832:                                        window_pane_key(wp, c, key);
                    833:                                else
                    834:                                        key_bindings_dispatch(bd, c);
                    835:                        }
1.1       nicm      836:                        continue;
                    837:                }
                    838:
                    839:                /* Prefix key already pressed. Reset prefix and lookup key. */
                    840:                c->flags &= ~CLIENT_PREFIX;
1.14      nicm      841:                if ((bd = key_bindings_lookup(key | KEYC_PREFIX)) == NULL) {
1.1       nicm      842:                        /* If repeating, treat this as a key, else ignore. */
                    843:                        if (c->flags & CLIENT_REPEAT) {
                    844:                                c->flags &= ~CLIENT_REPEAT;
                    845:                                if (key == prefix)
                    846:                                        c->flags |= CLIENT_PREFIX;
                    847:                                else
                    848:                                        window_pane_key(wp, c, key);
                    849:                        }
                    850:                        continue;
                    851:                }
                    852:
                    853:                /* If already repeating, but this key can't repeat, skip it. */
                    854:                if (c->flags & CLIENT_REPEAT && !bd->can_repeat) {
                    855:                        c->flags &= ~CLIENT_REPEAT;
                    856:                        if (key == prefix)
                    857:                                c->flags |= CLIENT_PREFIX;
                    858:                        else
                    859:                                window_pane_key(wp, c, key);
                    860:                        continue;
                    861:                }
                    862:
                    863:                /* If this key can repeat, reset the repeat flags and timer. */
                    864:                if (xtimeout != 0 && bd->can_repeat) {
                    865:                        c->flags |= CLIENT_PREFIX|CLIENT_REPEAT;
                    866:
                    867:                        tv.tv_sec = xtimeout / 1000;
                    868:                        tv.tv_usec = (xtimeout % 1000) * 1000L;
                    869:                        if (gettimeofday(&c->repeat_timer, NULL) != 0)
                    870:                                fatal("gettimeofday");
                    871:                        timeradd(&c->repeat_timer, &tv, &c->repeat_timer);
                    872:                }
                    873:
                    874:                /* Dispatch the command. */
                    875:                key_bindings_dispatch(bd, c);
                    876:        }
                    877:        if (c->session == NULL)
                    878:                return;
                    879:        wp = c->session->curw->window->active;  /* could die - do each loop */
                    880:        s = wp->screen;
                    881:
1.21      nicm      882:        /*
                    883:         * Update cursor position and mode settings. The scroll region and
                    884:         * attributes are cleared across poll(2) as this is the most likely
                    885:         * time a user may interrupt tmux, for example with ~^Z in ssh(1). This
                    886:         * is a compromise between excessive resets and likelihood of an
                    887:         * interrupt.
                    888:         *
                    889:         * tty_region/tty_reset/tty_update_mode already take care of not
                    890:         * resetting things that are already in their default state.
                    891:         */
1.1       nicm      892:        status = options_get_number(&c->session->options, "status");
1.17      nicm      893:        tty_region(&c->tty, 0, c->tty.sy - 1, 0);
1.11      nicm      894:        if (!window_pane_visible(wp) || wp->yoff + s->cy >= c->tty.sy - status)
                    895:                tty_cursor(&c->tty, 0, 0, 0, 0);
                    896:        else
1.1       nicm      897:                tty_cursor(&c->tty, s->cx, s->cy, wp->xoff, wp->yoff);
                    898:
                    899:        mode = s->mode;
                    900:        if (server_locked)
                    901:                mode &= ~TTY_NOCURSOR;
                    902:        tty_update_mode(&c->tty, mode);
1.21      nicm      903:        tty_reset(&c->tty);
1.1       nicm      904: }
                    905:
                    906: /* Lost a client. */
                    907: void
                    908: server_lost_client(struct client *c)
                    909: {
                    910:        u_int   i;
                    911:
                    912:        for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                    913:                if (ARRAY_ITEM(&clients, i) == c)
                    914:                        ARRAY_SET(&clients, i, NULL);
                    915:        }
1.20      nicm      916:        log_debug("lost client %d", c->ibuf.fd);
1.1       nicm      917:
1.19      nicm      918:        tty_free(&c->tty);
1.1       nicm      919:
                    920:        screen_free(&c->status);
                    921:
                    922:        if (c->title != NULL)
                    923:                xfree(c->title);
                    924:
                    925:        if (c->message_string != NULL)
                    926:                xfree(c->message_string);
                    927:
                    928:        if (c->prompt_string != NULL)
                    929:                xfree(c->prompt_string);
                    930:        if (c->prompt_buffer != NULL)
                    931:                xfree(c->prompt_buffer);
                    932:        for (i = 0; i < ARRAY_LENGTH(&c->prompt_hdata); i++)
                    933:                xfree(ARRAY_ITEM(&c->prompt_hdata, i));
                    934:        ARRAY_FREE(&c->prompt_hdata);
                    935:
                    936:        if (c->cwd != NULL)
                    937:                xfree(c->cwd);
                    938:
1.18      nicm      939:        close(c->ibuf.fd);
                    940:        imsg_clear(&c->ibuf);
1.1       nicm      941:        xfree(c);
                    942:
                    943:        recalculate_sizes();
                    944: }
                    945:
                    946: /* Handle window data. */
                    947: void
                    948: server_handle_window(struct window *w, struct window_pane *wp)
                    949: {
                    950:        struct session  *s;
                    951:        u_int            i;
                    952:        int              update;
                    953:
                    954:        window_pane_parse(wp);
                    955:
                    956:        if ((w->flags & (WINDOW_BELL|WINDOW_ACTIVITY|WINDOW_CONTENT)) == 0)
                    957:                return;
                    958:
                    959:        update = 0;
                    960:        for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
                    961:                s = ARRAY_ITEM(&sessions, i);
                    962:                if (s == NULL || !session_has(s, w))
                    963:                        continue;
                    964:
1.10      nicm      965:                update += server_check_window_bell(s, w);
1.1       nicm      966:                update += server_check_window_activity(s, w);
                    967:                update += server_check_window_content(s, w, wp);
                    968:        }
                    969:        if (update)
                    970:                server_status_window(w);
                    971:
                    972:        w->flags &= ~(WINDOW_BELL|WINDOW_ACTIVITY|WINDOW_CONTENT);
                    973: }
                    974:
                    975: int
1.10      nicm      976: server_check_window_bell(struct session *s, struct window *w)
1.1       nicm      977: {
                    978:        struct client   *c;
                    979:        u_int            i;
1.10      nicm      980:        int              action, visual;
1.1       nicm      981:
                    982:        if (!(w->flags & WINDOW_BELL))
                    983:                return (0);
                    984:        if (session_alert_has_window(s, w, WINDOW_BELL))
                    985:                return (0);
                    986:        session_alert_add(s, w, WINDOW_BELL);
                    987:
                    988:        action = options_get_number(&s->options, "bell-action");
                    989:        switch (action) {
                    990:        case BELL_ANY:
                    991:                if (s->flags & SESSION_UNATTACHED)
                    992:                        break;
1.10      nicm      993:                visual = options_get_number(&s->options, "visual-bell");
1.1       nicm      994:                for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                    995:                        c = ARRAY_ITEM(&clients, i);
1.10      nicm      996:                        if (c == NULL || c->session != s)
                    997:                                continue;
                    998:                        if (!visual) {
1.1       nicm      999:                                tty_putcode(&c->tty, TTYC_BEL);
1.10      nicm     1000:                                continue;
                   1001:                        }
                   1002:                        if (c->session->curw->window == w) {
                   1003:                                status_message_set(c, "Bell in current window");
                   1004:                                continue;
                   1005:                        }
                   1006:                        status_message_set(c, "Bell in window %u",
                   1007:                            winlink_find_by_window(&s->windows, w)->idx);
1.1       nicm     1008:                }
                   1009:                break;
                   1010:        case BELL_CURRENT:
1.10      nicm     1011:                if (s->flags & SESSION_UNATTACHED)
1.1       nicm     1012:                        break;
1.10      nicm     1013:                visual = options_get_number(&s->options, "visual-bell");
1.1       nicm     1014:                for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                   1015:                        c = ARRAY_ITEM(&clients, i);
1.10      nicm     1016:                        if (c == NULL || c->session != s)
                   1017:                                continue;
                   1018:                        if (c->session->curw->window != w)
                   1019:                                continue;
                   1020:                        if (!visual) {
1.1       nicm     1021:                                tty_putcode(&c->tty, TTYC_BEL);
1.10      nicm     1022:                                continue;
                   1023:                        }
                   1024:                        status_message_set(c, "Bell in current window");
1.1       nicm     1025:                }
                   1026:                break;
                   1027:        }
                   1028:        return (1);
                   1029: }
                   1030:
                   1031: int
                   1032: server_check_window_activity(struct session *s, struct window *w)
                   1033: {
1.10      nicm     1034:        struct client   *c;
                   1035:        u_int            i;
                   1036:
1.1       nicm     1037:        if (!(w->flags & WINDOW_ACTIVITY))
                   1038:                return (0);
1.10      nicm     1039:
1.1       nicm     1040:        if (!options_get_number(&w->options, "monitor-activity"))
                   1041:                return (0);
1.10      nicm     1042:
1.1       nicm     1043:        if (session_alert_has_window(s, w, WINDOW_ACTIVITY))
                   1044:                return (0);
1.10      nicm     1045:        if (s->curw->window == w)
                   1046:                return (0);
                   1047:
1.1       nicm     1048:        session_alert_add(s, w, WINDOW_ACTIVITY);
1.10      nicm     1049:        if (s->flags & SESSION_UNATTACHED)
                   1050:                return (0);
                   1051:        if (options_get_number(&s->options, "visual-activity")) {
                   1052:                for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                   1053:                        c = ARRAY_ITEM(&clients, i);
                   1054:                        if (c == NULL || c->session != s)
                   1055:                                continue;
                   1056:                        status_message_set(c, "Activity in window %u",
                   1057:                            winlink_find_by_window(&s->windows, w)->idx);
                   1058:                }
                   1059:        }
                   1060:
1.1       nicm     1061:        return (1);
                   1062: }
                   1063:
                   1064: int
                   1065: server_check_window_content(
                   1066:     struct session *s, struct window *w, struct window_pane *wp)
                   1067: {
1.10      nicm     1068:        struct client   *c;
                   1069:        u_int            i;
                   1070:        char            *found, *ptr;
                   1071:
                   1072:        if (!(w->flags & WINDOW_ACTIVITY))      /* activity for new content */
                   1073:                return (0);
1.1       nicm     1074:
1.10      nicm     1075:        ptr = options_get_string(&w->options, "monitor-content");
                   1076:        if (ptr == NULL || *ptr == '\0')
1.1       nicm     1077:                return (0);
1.10      nicm     1078:
                   1079:        if (session_alert_has_window(s, w, WINDOW_CONTENT))
1.1       nicm     1080:                return (0);
1.10      nicm     1081:        if (s->curw->window == w)
1.1       nicm     1082:                return (0);
1.10      nicm     1083:
1.3       nicm     1084:        if ((found = window_pane_search(wp, ptr, NULL)) == NULL)
1.1       nicm     1085:                return (0);
1.10      nicm     1086:        xfree(found);
                   1087:
1.1       nicm     1088:        session_alert_add(s, w, WINDOW_CONTENT);
1.10      nicm     1089:        if (s->flags & SESSION_UNATTACHED)
                   1090:                return (0);
                   1091:        if (options_get_number(&s->options, "visual-content")) {
                   1092:                for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                   1093:                        c = ARRAY_ITEM(&clients, i);
                   1094:                        if (c == NULL || c->session != s)
                   1095:                                continue;
                   1096:                        status_message_set(c, "Content in window %u",
                   1097:                            winlink_find_by_window(&s->windows, w)->idx);
                   1098:                }
                   1099:        }
                   1100:
1.1       nicm     1101:        return (1);
                   1102: }
                   1103:
1.2       nicm     1104: /* Check if window still exists. */
1.1       nicm     1105: void
                   1106: server_check_window(struct window *w)
                   1107: {
                   1108:        struct window_pane      *wp, *wq;
1.22      nicm     1109:        struct options          *oo = &w->options;
1.1       nicm     1110:        struct client           *c;
                   1111:        struct session          *s;
                   1112:        struct winlink          *wl;
                   1113:        u_int                    i, j;
1.22      nicm     1114:        int                      destroyed;
1.1       nicm     1115:
                   1116:        destroyed = 1;
                   1117:
                   1118:        wp = TAILQ_FIRST(&w->panes);
                   1119:        while (wp != NULL) {
                   1120:                wq = TAILQ_NEXT(wp, entry);
1.2       nicm     1121:                /*
                   1122:                 * If the pane has died and the remain-on-exit flag is not set,
                   1123:                 * remove the pane; otherwise, if the flag is set, don't allow
                   1124:                 * the window to be destroyed (or it'll close when the last
                   1125:                 * pane dies).
                   1126:                 */
1.23    ! nicm     1127:                if (wp->fd == -1 && !options_get_number(oo, "remain-on-exit")) {
1.11      nicm     1128:                        layout_close_pane(wp);
1.1       nicm     1129:                        window_remove_pane(w, wp);
                   1130:                        server_redraw_window(w);
1.2       nicm     1131:                } else
                   1132:                        destroyed = 0;
1.1       nicm     1133:                wp = wq;
                   1134:        }
                   1135:
                   1136:        if (!destroyed)
                   1137:                return;
                   1138:
                   1139:        for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
                   1140:                s = ARRAY_ITEM(&sessions, i);
                   1141:                if (s == NULL)
                   1142:                        continue;
                   1143:                if (!session_has(s, w))
                   1144:                        continue;
                   1145:
                   1146:        restart:
                   1147:                /* Detach window and either redraw or kill clients. */
                   1148:                RB_FOREACH(wl, winlinks, &s->windows) {
                   1149:                        if (wl->window != w)
                   1150:                                continue;
                   1151:                        destroyed = session_detach(s, wl);
                   1152:                        for (j = 0; j < ARRAY_LENGTH(&clients); j++) {
                   1153:                                c = ARRAY_ITEM(&clients, j);
                   1154:                                if (c == NULL || c->session != s)
                   1155:                                        continue;
                   1156:                                if (!destroyed) {
                   1157:                                        server_redraw_client(c);
                   1158:                                        continue;
                   1159:                                }
                   1160:                                c->session = NULL;
                   1161:                                server_write_client(c, MSG_EXIT, NULL, 0);
                   1162:                        }
                   1163:                        /* If the session was destroyed, bail now. */
                   1164:                        if (destroyed)
                   1165:                                break;
                   1166:                        goto restart;
                   1167:                }
                   1168:        }
                   1169:
                   1170:        recalculate_sizes();
                   1171: }
                   1172:
                   1173: /* Call any once-per-second timers. */
                   1174: void
                   1175: server_second_timers(void)
                   1176: {
                   1177:        struct window           *w;
                   1178:        struct window_pane      *wp;
                   1179:        u_int                    i;
                   1180:        int                      xtimeout;
                   1181:        struct tm                now, then;
                   1182:        static time_t            last_t = 0;
                   1183:        time_t                   t;
                   1184:
                   1185:        t = time(NULL);
1.6       nicm     1186:        xtimeout = options_get_number(&global_s_options, "lock-after-time");
1.1       nicm     1187:        if (xtimeout > 0 && t > server_activity + xtimeout)
                   1188:                server_lock();
                   1189:
                   1190:        for (i = 0; i < ARRAY_LENGTH(&windows); i++) {
                   1191:                w = ARRAY_ITEM(&windows, i);
                   1192:                if (w == NULL)
                   1193:                        continue;
                   1194:
                   1195:                TAILQ_FOREACH(wp, &w->panes, entry) {
                   1196:                        if (wp->mode != NULL && wp->mode->timer != NULL)
                   1197:                                wp->mode->timer(wp);
                   1198:                }
                   1199:        }
                   1200:
                   1201:        /* Check for a minute having passed. */
                   1202:        gmtime_r(&t, &now);
                   1203:        gmtime_r(&last_t, &then);
                   1204:        if (now.tm_min == then.tm_min)
                   1205:                return;
                   1206:        last_t = t;
                   1207:
                   1208:        /* If locked, redraw all clients. */
                   1209:        if (server_locked) {
                   1210:                for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                   1211:                        if (ARRAY_ITEM(&clients, i) != NULL)
                   1212:                                server_redraw_client(ARRAY_ITEM(&clients, i));
                   1213:                }
                   1214:        }
                   1215: }
                   1216:
                   1217: /* Update socket execute permissions based on whether sessions are attached. */
                   1218: int
                   1219: server_update_socket(void)
                   1220: {
                   1221:        struct session  *s;
                   1222:        u_int            i;
                   1223:        static int       last = -1;
                   1224:        int              n;
                   1225:
                   1226:        n = 0;
                   1227:        for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
                   1228:                s = ARRAY_ITEM(&sessions, i);
                   1229:                if (s != NULL && !(s->flags & SESSION_UNATTACHED)) {
                   1230:                        n++;
                   1231:                        break;
                   1232:                }
                   1233:        }
                   1234:
                   1235:        if (n != last) {
                   1236:                last = n;
                   1237:                if (n != 0)
                   1238:                        chmod(socket_path, S_IRWXU);
                   1239:                else
                   1240:                        chmod(socket_path, S_IRUSR|S_IWUSR);
                   1241:        }
                   1242:
                   1243:        return (n);
                   1244: }