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

1.20    ! nicm        1: /* $OpenBSD: server.c,v 1.19 2009/08/11 19:32:25 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:
                    882:        /* Ensure cursor position and mode settings. */
                    883:        status = options_get_number(&c->session->options, "status");
1.17      nicm      884:        tty_region(&c->tty, 0, c->tty.sy - 1, 0);
1.11      nicm      885:        if (!window_pane_visible(wp) || wp->yoff + s->cy >= c->tty.sy - status)
                    886:                tty_cursor(&c->tty, 0, 0, 0, 0);
                    887:        else
1.1       nicm      888:                tty_cursor(&c->tty, s->cx, s->cy, wp->xoff, wp->yoff);
                    889:
                    890:        mode = s->mode;
                    891:        if (server_locked)
                    892:                mode &= ~TTY_NOCURSOR;
                    893:        tty_update_mode(&c->tty, mode);
                    894: }
                    895:
                    896: /* Lost a client. */
                    897: void
                    898: server_lost_client(struct client *c)
                    899: {
                    900:        u_int   i;
                    901:
                    902:        for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                    903:                if (ARRAY_ITEM(&clients, i) == c)
                    904:                        ARRAY_SET(&clients, i, NULL);
                    905:        }
1.20    ! nicm      906:        log_debug("lost client %d", c->ibuf.fd);
1.1       nicm      907:
1.19      nicm      908:        tty_free(&c->tty);
1.1       nicm      909:
                    910:        screen_free(&c->status);
                    911:
                    912:        if (c->title != NULL)
                    913:                xfree(c->title);
                    914:
                    915:        if (c->message_string != NULL)
                    916:                xfree(c->message_string);
                    917:
                    918:        if (c->prompt_string != NULL)
                    919:                xfree(c->prompt_string);
                    920:        if (c->prompt_buffer != NULL)
                    921:                xfree(c->prompt_buffer);
                    922:        for (i = 0; i < ARRAY_LENGTH(&c->prompt_hdata); i++)
                    923:                xfree(ARRAY_ITEM(&c->prompt_hdata, i));
                    924:        ARRAY_FREE(&c->prompt_hdata);
                    925:
                    926:        if (c->cwd != NULL)
                    927:                xfree(c->cwd);
                    928:
1.18      nicm      929:        close(c->ibuf.fd);
                    930:        imsg_clear(&c->ibuf);
1.1       nicm      931:        xfree(c);
                    932:
                    933:        recalculate_sizes();
                    934: }
                    935:
                    936: /* Handle window data. */
                    937: void
                    938: server_handle_window(struct window *w, struct window_pane *wp)
                    939: {
                    940:        struct session  *s;
                    941:        u_int            i;
                    942:        int              update;
                    943:
                    944:        window_pane_parse(wp);
                    945:
                    946:        if ((w->flags & (WINDOW_BELL|WINDOW_ACTIVITY|WINDOW_CONTENT)) == 0)
                    947:                return;
                    948:
                    949:        update = 0;
                    950:        for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
                    951:                s = ARRAY_ITEM(&sessions, i);
                    952:                if (s == NULL || !session_has(s, w))
                    953:                        continue;
                    954:
1.10      nicm      955:                update += server_check_window_bell(s, w);
1.1       nicm      956:                update += server_check_window_activity(s, w);
                    957:                update += server_check_window_content(s, w, wp);
                    958:        }
                    959:        if (update)
                    960:                server_status_window(w);
                    961:
                    962:        w->flags &= ~(WINDOW_BELL|WINDOW_ACTIVITY|WINDOW_CONTENT);
                    963: }
                    964:
                    965: int
1.10      nicm      966: server_check_window_bell(struct session *s, struct window *w)
1.1       nicm      967: {
                    968:        struct client   *c;
                    969:        u_int            i;
1.10      nicm      970:        int              action, visual;
1.1       nicm      971:
                    972:        if (!(w->flags & WINDOW_BELL))
                    973:                return (0);
                    974:        if (session_alert_has_window(s, w, WINDOW_BELL))
                    975:                return (0);
                    976:        session_alert_add(s, w, WINDOW_BELL);
                    977:
                    978:        action = options_get_number(&s->options, "bell-action");
                    979:        switch (action) {
                    980:        case BELL_ANY:
                    981:                if (s->flags & SESSION_UNATTACHED)
                    982:                        break;
1.10      nicm      983:                visual = options_get_number(&s->options, "visual-bell");
1.1       nicm      984:                for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                    985:                        c = ARRAY_ITEM(&clients, i);
1.10      nicm      986:                        if (c == NULL || c->session != s)
                    987:                                continue;
                    988:                        if (!visual) {
1.1       nicm      989:                                tty_putcode(&c->tty, TTYC_BEL);
1.10      nicm      990:                                continue;
                    991:                        }
                    992:                        if (c->session->curw->window == w) {
                    993:                                status_message_set(c, "Bell in current window");
                    994:                                continue;
                    995:                        }
                    996:                        status_message_set(c, "Bell in window %u",
                    997:                            winlink_find_by_window(&s->windows, w)->idx);
1.1       nicm      998:                }
                    999:                break;
                   1000:        case BELL_CURRENT:
1.10      nicm     1001:                if (s->flags & SESSION_UNATTACHED)
1.1       nicm     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 (c->session->curw->window != w)
                   1009:                                continue;
                   1010:                        if (!visual) {
1.1       nicm     1011:                                tty_putcode(&c->tty, TTYC_BEL);
1.10      nicm     1012:                                continue;
                   1013:                        }
                   1014:                        status_message_set(c, "Bell in current window");
1.1       nicm     1015:                }
                   1016:                break;
                   1017:        }
                   1018:        return (1);
                   1019: }
                   1020:
                   1021: int
                   1022: server_check_window_activity(struct session *s, struct window *w)
                   1023: {
1.10      nicm     1024:        struct client   *c;
                   1025:        u_int            i;
                   1026:
1.1       nicm     1027:        if (!(w->flags & WINDOW_ACTIVITY))
                   1028:                return (0);
1.10      nicm     1029:
1.1       nicm     1030:        if (!options_get_number(&w->options, "monitor-activity"))
                   1031:                return (0);
1.10      nicm     1032:
1.1       nicm     1033:        if (session_alert_has_window(s, w, WINDOW_ACTIVITY))
                   1034:                return (0);
1.10      nicm     1035:        if (s->curw->window == w)
                   1036:                return (0);
                   1037:
1.1       nicm     1038:        session_alert_add(s, w, WINDOW_ACTIVITY);
1.10      nicm     1039:        if (s->flags & SESSION_UNATTACHED)
                   1040:                return (0);
                   1041:        if (options_get_number(&s->options, "visual-activity")) {
                   1042:                for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                   1043:                        c = ARRAY_ITEM(&clients, i);
                   1044:                        if (c == NULL || c->session != s)
                   1045:                                continue;
                   1046:                        status_message_set(c, "Activity in window %u",
                   1047:                            winlink_find_by_window(&s->windows, w)->idx);
                   1048:                }
                   1049:        }
                   1050:
1.1       nicm     1051:        return (1);
                   1052: }
                   1053:
                   1054: int
                   1055: server_check_window_content(
                   1056:     struct session *s, struct window *w, struct window_pane *wp)
                   1057: {
1.10      nicm     1058:        struct client   *c;
                   1059:        u_int            i;
                   1060:        char            *found, *ptr;
                   1061:
                   1062:        if (!(w->flags & WINDOW_ACTIVITY))      /* activity for new content */
                   1063:                return (0);
1.1       nicm     1064:
1.10      nicm     1065:        ptr = options_get_string(&w->options, "monitor-content");
                   1066:        if (ptr == NULL || *ptr == '\0')
1.1       nicm     1067:                return (0);
1.10      nicm     1068:
                   1069:        if (session_alert_has_window(s, w, WINDOW_CONTENT))
1.1       nicm     1070:                return (0);
1.10      nicm     1071:        if (s->curw->window == w)
1.1       nicm     1072:                return (0);
1.10      nicm     1073:
1.3       nicm     1074:        if ((found = window_pane_search(wp, ptr, NULL)) == NULL)
1.1       nicm     1075:                return (0);
1.10      nicm     1076:        xfree(found);
                   1077:
1.1       nicm     1078:        session_alert_add(s, w, WINDOW_CONTENT);
1.10      nicm     1079:        if (s->flags & SESSION_UNATTACHED)
                   1080:                return (0);
                   1081:        if (options_get_number(&s->options, "visual-content")) {
                   1082:                for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                   1083:                        c = ARRAY_ITEM(&clients, i);
                   1084:                        if (c == NULL || c->session != s)
                   1085:                                continue;
                   1086:                        status_message_set(c, "Content in window %u",
                   1087:                            winlink_find_by_window(&s->windows, w)->idx);
                   1088:                }
                   1089:        }
                   1090:
1.1       nicm     1091:        return (1);
                   1092: }
                   1093:
1.2       nicm     1094: /* Check if window still exists. */
1.1       nicm     1095: void
                   1096: server_check_window(struct window *w)
                   1097: {
                   1098:        struct window_pane      *wp, *wq;
                   1099:        struct client           *c;
                   1100:        struct session          *s;
                   1101:        struct winlink          *wl;
                   1102:        u_int                    i, j;
                   1103:        int                      destroyed, flag;
                   1104:
                   1105:        flag = options_get_number(&w->options, "remain-on-exit");
                   1106:
                   1107:        destroyed = 1;
                   1108:
                   1109:        wp = TAILQ_FIRST(&w->panes);
                   1110:        while (wp != NULL) {
                   1111:                wq = TAILQ_NEXT(wp, entry);
1.2       nicm     1112:                /*
                   1113:                 * If the pane has died and the remain-on-exit flag is not set,
                   1114:                 * remove the pane; otherwise, if the flag is set, don't allow
                   1115:                 * the window to be destroyed (or it'll close when the last
                   1116:                 * pane dies).
                   1117:                 */
                   1118:                if (wp->fd == -1 && !flag) {
1.11      nicm     1119:                        layout_close_pane(wp);
1.1       nicm     1120:                        window_remove_pane(w, wp);
                   1121:                        server_redraw_window(w);
1.2       nicm     1122:                } else
                   1123:                        destroyed = 0;
1.1       nicm     1124:                wp = wq;
                   1125:        }
                   1126:
                   1127:        if (!destroyed)
                   1128:                return;
                   1129:
                   1130:        for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
                   1131:                s = ARRAY_ITEM(&sessions, i);
                   1132:                if (s == NULL)
                   1133:                        continue;
                   1134:                if (!session_has(s, w))
                   1135:                        continue;
                   1136:
                   1137:        restart:
                   1138:                /* Detach window and either redraw or kill clients. */
                   1139:                RB_FOREACH(wl, winlinks, &s->windows) {
                   1140:                        if (wl->window != w)
                   1141:                                continue;
                   1142:                        destroyed = session_detach(s, wl);
                   1143:                        for (j = 0; j < ARRAY_LENGTH(&clients); j++) {
                   1144:                                c = ARRAY_ITEM(&clients, j);
                   1145:                                if (c == NULL || c->session != s)
                   1146:                                        continue;
                   1147:                                if (!destroyed) {
                   1148:                                        server_redraw_client(c);
                   1149:                                        continue;
                   1150:                                }
                   1151:                                c->session = NULL;
                   1152:                                server_write_client(c, MSG_EXIT, NULL, 0);
                   1153:                        }
                   1154:                        /* If the session was destroyed, bail now. */
                   1155:                        if (destroyed)
                   1156:                                break;
                   1157:                        goto restart;
                   1158:                }
                   1159:        }
                   1160:
                   1161:        recalculate_sizes();
                   1162: }
                   1163:
                   1164: /* Call any once-per-second timers. */
                   1165: void
                   1166: server_second_timers(void)
                   1167: {
                   1168:        struct window           *w;
                   1169:        struct window_pane      *wp;
                   1170:        u_int                    i;
                   1171:        int                      xtimeout;
                   1172:        struct tm                now, then;
                   1173:        static time_t            last_t = 0;
                   1174:        time_t                   t;
                   1175:
                   1176:        t = time(NULL);
1.6       nicm     1177:        xtimeout = options_get_number(&global_s_options, "lock-after-time");
1.1       nicm     1178:        if (xtimeout > 0 && t > server_activity + xtimeout)
                   1179:                server_lock();
                   1180:
                   1181:        for (i = 0; i < ARRAY_LENGTH(&windows); i++) {
                   1182:                w = ARRAY_ITEM(&windows, i);
                   1183:                if (w == NULL)
                   1184:                        continue;
                   1185:
                   1186:                TAILQ_FOREACH(wp, &w->panes, entry) {
                   1187:                        if (wp->mode != NULL && wp->mode->timer != NULL)
                   1188:                                wp->mode->timer(wp);
                   1189:                }
                   1190:        }
                   1191:
                   1192:        /* Check for a minute having passed. */
                   1193:        gmtime_r(&t, &now);
                   1194:        gmtime_r(&last_t, &then);
                   1195:        if (now.tm_min == then.tm_min)
                   1196:                return;
                   1197:        last_t = t;
                   1198:
                   1199:        /* If locked, redraw all clients. */
                   1200:        if (server_locked) {
                   1201:                for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                   1202:                        if (ARRAY_ITEM(&clients, i) != NULL)
                   1203:                                server_redraw_client(ARRAY_ITEM(&clients, i));
                   1204:                }
                   1205:        }
                   1206: }
                   1207:
                   1208: /* Update socket execute permissions based on whether sessions are attached. */
                   1209: int
                   1210: server_update_socket(void)
                   1211: {
                   1212:        struct session  *s;
                   1213:        u_int            i;
                   1214:        static int       last = -1;
                   1215:        int              n;
                   1216:
                   1217:        n = 0;
                   1218:        for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
                   1219:                s = ARRAY_ITEM(&sessions, i);
                   1220:                if (s != NULL && !(s->flags & SESSION_UNATTACHED)) {
                   1221:                        n++;
                   1222:                        break;
                   1223:                }
                   1224:        }
                   1225:
                   1226:        if (n != last) {
                   1227:                last = n;
                   1228:                if (n != 0)
                   1229:                        chmod(socket_path, S_IRWXU);
                   1230:                else
                   1231:                        chmod(socket_path, S_IRUSR|S_IWUSR);
                   1232:        }
                   1233:
                   1234:        return (n);
                   1235: }