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

1.75    ! nicm        1: /* $OpenBSD: server.c,v 1.74 2009/11/05 08:50:32 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>
1.66      nicm       27: #include <event.h>
1.1       nicm       28: #include <fcntl.h>
1.5       nicm       29: #include <paths.h>
1.1       nicm       30: #include <signal.h>
                     31: #include <stdio.h>
                     32: #include <stdlib.h>
                     33: #include <string.h>
                     34: #include <syslog.h>
                     35: #include <termios.h>
                     36: #include <time.h>
                     37: #include <unistd.h>
                     38:
                     39: #include "tmux.h"
                     40:
                     41: /*
                     42:  * Main server functions.
                     43:  */
                     44:
                     45: /* Client list. */
                     46: struct clients  clients;
1.31      nicm       47: struct clients  dead_clients;
1.1       nicm       48:
1.66      nicm       49: int             server_fd;
                     50: int             server_shutdown;
                     51: struct event    server_ev_accept;
                     52: struct event    server_ev_sigterm;
                     53: struct event    server_ev_sigusr1;
                     54: struct event    server_ev_sigchld;
                     55: struct event    server_ev_second;
1.45      nicm       56:
1.1       nicm       57: int             server_create_socket(void);
1.66      nicm       58: void            server_loop(void);
1.42      nicm       59: int             server_should_shutdown(void);
1.66      nicm       60: void            server_send_shutdown(void);
                     61: void            server_clean_dead(void);
                     62: void            server_accept_callback(int, short, void *);
                     63: void            server_signal_callback(int, short, void *);
1.1       nicm       64: void            server_child_signal(void);
1.66      nicm       65: void            server_child_exited(pid_t, int);
                     66: void            server_child_stopped(pid_t, int);
                     67: void            server_second_callback(int, short, void *);
1.46      nicm       68: void            server_lock_server(void);
                     69: void            server_lock_sessions(void);
1.45      nicm       70:
1.60      nicm       71: /* Create server socket. */
                     72: int
                     73: server_create_socket(void)
1.1       nicm       74: {
1.60      nicm       75:        struct sockaddr_un      sa;
                     76:        size_t                  size;
                     77:        mode_t                  mask;
                     78:        int                     fd, mode;
                     79:
                     80:        memset(&sa, 0, sizeof sa);
                     81:        sa.sun_family = AF_UNIX;
                     82:        size = strlcpy(sa.sun_path, socket_path, sizeof sa.sun_path);
                     83:        if (size >= sizeof sa.sun_path) {
                     84:                errno = ENAMETOOLONG;
                     85:                fatal("socket failed");
                     86:        }
                     87:        unlink(sa.sun_path);
                     88:
                     89:        if ((fd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1)
                     90:                fatal("socket failed");
                     91:
                     92:        mask = umask(S_IXUSR|S_IRWXG|S_IRWXO);
                     93:        if (bind(fd, (struct sockaddr *) &sa, SUN_LEN(&sa)) == -1)
                     94:                fatal("bind failed");
                     95:        umask(mask);
                     96:
                     97:        if (listen(fd, 16) == -1)
                     98:                fatal("listen failed");
1.1       nicm       99:
                    100:        if ((mode = fcntl(fd, F_GETFL)) == -1)
                    101:                fatal("fcntl failed");
                    102:        if (fcntl(fd, F_SETFL, mode|O_NONBLOCK) == -1)
                    103:                fatal("fcntl failed");
                    104:        if (fcntl(fd, F_SETFD, FD_CLOEXEC) == -1)
                    105:                fatal("fcntl failed");
                    106:
1.75    ! nicm      107:        server_update_socket();
        !           108:
1.60      nicm      109:        return (fd);
                    110: }
                    111:
1.1       nicm      112: /* Fork new server. */
                    113: int
                    114: server_start(char *path)
                    115: {
1.16      nicm      116:        struct client   *c;
1.66      nicm      117:        int              pair[2];
                    118:        char            *cause, rpathbuf[MAXPATHLEN];
                    119:        struct timeval   tv;
1.1       nicm      120:
                    121:        /* The first client is special and gets a socketpair; create it. */
                    122:        if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, pair) != 0)
                    123:                fatal("socketpair failed");
                    124:
                    125:        switch (fork()) {
                    126:        case -1:
                    127:                fatal("fork failed");
                    128:        case 0:
                    129:                break;
                    130:        default:
                    131:                close(pair[1]);
                    132:                return (pair[0]);
                    133:        }
                    134:        close(pair[0]);
                    135:
                    136:        /*
                    137:         * Must daemonise before loading configuration as the PID changes so
                    138:         * $TMUX would be wrong for sessions created in the config file.
                    139:         */
1.16      nicm      140:        if (daemon(1, 0) != 0)
1.1       nicm      141:                fatal("daemon failed");
                    142:
1.16      nicm      143:        logfile("server");
                    144:        log_debug("server started, pid %ld", (long) getpid());
                    145:
1.1       nicm      146:        ARRAY_INIT(&windows);
                    147:        ARRAY_INIT(&clients);
1.31      nicm      148:        ARRAY_INIT(&dead_clients);
1.1       nicm      149:        ARRAY_INIT(&sessions);
1.31      nicm      150:        ARRAY_INIT(&dead_sessions);
1.47      nicm      151:        TAILQ_INIT(&session_groups);
1.15      nicm      152:        mode_key_init_trees();
1.1       nicm      153:        key_bindings_init();
                    154:        utf8_build();
                    155:
                    156:        start_time = time(NULL);
                    157:        socket_path = path;
                    158:
1.16      nicm      159:        if (realpath(socket_path, rpathbuf) == NULL)
                    160:                strlcpy(rpathbuf, socket_path, sizeof rpathbuf);
                    161:        log_debug("socket path %s", socket_path);
                    162:        setproctitle("server (%s)", rpathbuf);
                    163:
1.71      nicm      164:        event_init();
                    165:
1.66      nicm      166:        server_fd = server_create_socket();
1.60      nicm      167:        server_client_create(pair[1]);
1.16      nicm      168:
1.64      nicm      169:        if (access(SYSTEM_CFG, R_OK) == 0) {
                    170:                if (load_cfg(SYSTEM_CFG, NULL, &cause) != 0)
1.16      nicm      171:                        goto error;
1.64      nicm      172:        } else if (errno != ENOENT) {
                    173:                xasprintf(&cause, "%s: %s", strerror(errno), SYSTEM_CFG);
1.16      nicm      174:                goto error;
1.64      nicm      175:        }
1.24      nicm      176:        if (cfg_file != NULL && load_cfg(cfg_file, NULL, &cause) != 0)
1.16      nicm      177:                goto error;
1.66      nicm      178:
                    179:        event_set(&server_ev_accept,
                    180:            server_fd, EV_READ|EV_PERSIST, server_accept_callback, NULL);
                    181:        event_add(&server_ev_accept, NULL);
                    182:
                    183:        memset(&tv, 0, sizeof tv);
                    184:        tv.tv_sec = 1;
                    185:        evtimer_set(&server_ev_second, server_second_callback, NULL);
                    186:        evtimer_add(&server_ev_second, &tv);
                    187:
                    188:        server_signal_set();
                    189:        server_loop();
                    190:        exit(0);
1.1       nicm      191:
1.16      nicm      192: error:
                    193:        /* Write the error and shutdown the server. */
                    194:        c = ARRAY_FIRST(&clients);
1.1       nicm      195:
1.16      nicm      196:        server_write_error(c, cause);
1.70      nicm      197:        server_write_client(c, MSG_EXIT, NULL, 0);
1.16      nicm      198:        xfree(cause);
1.1       nicm      199:
1.66      nicm      200:        server_shutdown = 1;
1.1       nicm      201:
1.66      nicm      202:        server_signal_set();
                    203:        server_loop();
                    204:        exit(1);
1.1       nicm      205: }
                    206:
                    207: /* Main server loop. */
1.66      nicm      208: void
                    209: server_loop(void)
1.1       nicm      210: {
1.66      nicm      211:        while (!server_should_shutdown()) {
                    212:                event_loop(EVLOOP_ONCE);
1.1       nicm      213:
1.60      nicm      214:                server_window_loop();
                    215:                server_client_loop();
1.1       nicm      216:
1.8       nicm      217:                key_bindings_clean();
1.66      nicm      218:                server_clean_dead();
                    219:        }
                    220: }
1.31      nicm      221:
1.66      nicm      222: /* Check if the server should be shutting down (no more clients or windows). */
                    223: int
                    224: server_should_shutdown(void)
                    225: {
                    226:        u_int   i;
1.1       nicm      227:
                    228:        for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
                    229:                if (ARRAY_ITEM(&sessions, i) != NULL)
1.66      nicm      230:                        return (0);
1.1       nicm      231:        }
                    232:        for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                    233:                if (ARRAY_ITEM(&clients, i) != NULL)
1.66      nicm      234:                        return (0);
1.1       nicm      235:        }
1.66      nicm      236:        return (1);
1.1       nicm      237: }
                    238:
1.66      nicm      239: /* Shutdown the server by killing all clients and windows. */
1.1       nicm      240: void
1.66      nicm      241: server_send_shutdown(void)
1.1       nicm      242: {
1.66      nicm      243:        struct client   *c;
1.1       nicm      244:        struct session  *s;
1.66      nicm      245:        u_int            i;
1.1       nicm      246:
1.42      nicm      247:        for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                    248:                c = ARRAY_ITEM(&clients, i);
                    249:                if (c != NULL) {
                    250:                        if (c->flags & (CLIENT_BAD|CLIENT_SUSPENDED))
1.60      nicm      251:                                server_client_lost(c);
1.42      nicm      252:                        else
                    253:                                server_write_client(c, MSG_SHUTDOWN, NULL, 0);
1.66      nicm      254:                        c->session = NULL;
1.42      nicm      255:                }
                    256:        }
                    257:
1.1       nicm      258:        for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
1.66      nicm      259:                if ((s = ARRAY_ITEM(&sessions, i)) != NULL)
1.1       nicm      260:                        session_destroy(s);
                    261:        }
1.42      nicm      262: }
                    263:
1.66      nicm      264: /* Free dead, unreferenced clients and sessions. */
                    265: void
                    266: server_clean_dead(void)
                    267: {
                    268:        struct session  *s;
                    269:        struct client   *c;
                    270:        u_int            i;
                    271:
                    272:        for (i = 0; i < ARRAY_LENGTH(&dead_sessions); i++) {
                    273:                s = ARRAY_ITEM(&dead_sessions, i);
                    274:                if (s == NULL || s->references != 0)
                    275:                        continue;
                    276:                ARRAY_SET(&dead_sessions, i, NULL);
                    277:                xfree(s);
                    278:        }
                    279:
                    280:        for (i = 0; i < ARRAY_LENGTH(&dead_clients); i++) {
                    281:                c = ARRAY_ITEM(&dead_clients, i);
                    282:                if (c == NULL || c->references != 0)
                    283:                        continue;
                    284:                ARRAY_SET(&dead_clients, i, NULL);
                    285:                xfree(c);
                    286:        }
                    287: }
                    288:
                    289: /* Update socket execute permissions based on whether sessions are attached. */
1.75    ! nicm      290: void
1.66      nicm      291: server_update_socket(void)
1.42      nicm      292: {
1.66      nicm      293:        struct session  *s;
                    294:        u_int            i;
                    295:        static int       last = -1;
                    296:        int              n;
1.1       nicm      297:
1.66      nicm      298:        n = 0;
1.42      nicm      299:        for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
1.66      nicm      300:                s = ARRAY_ITEM(&sessions, i);
                    301:                if (s != NULL && !(s->flags & SESSION_UNATTACHED)) {
                    302:                        n++;
                    303:                        break;
                    304:                }
                    305:        }
                    306:
                    307:        if (n != last) {
                    308:                last = n;
                    309:                if (n != 0)
                    310:                        chmod(socket_path, S_IRWXU);
                    311:                else
                    312:                        chmod(socket_path, S_IRUSR|S_IWUSR);
                    313:        }
                    314: }
                    315:
                    316: /* Callback for server socket. */
                    317: void
                    318: server_accept_callback(int fd, short events, unused void *data)
                    319: {
                    320:        struct sockaddr_storage sa;
                    321:        socklen_t               slen = sizeof sa;
                    322:        int                     newfd;
                    323:
                    324:        if (!(events & EV_READ))
                    325:                return;
                    326:
                    327:        newfd = accept(fd, (struct sockaddr *) &sa, &slen);
                    328:        if (newfd == -1) {
                    329:                if (errno == EAGAIN || errno == EINTR || errno == ECONNABORTED)
                    330:                        return;
                    331:                fatal("accept failed");
                    332:        }
                    333:        if (server_shutdown) {
                    334:                close(newfd);
                    335:                return;
1.42      nicm      336:        }
1.66      nicm      337:        server_client_create(newfd);
                    338:
                    339: }
                    340:
                    341: /* Set up server signal handling. */
                    342: void
                    343: server_signal_set(void)
                    344: {
                    345:        struct sigaction         sigact;
                    346:
                    347:        memset(&sigact, 0, sizeof sigact);
                    348:        sigemptyset(&sigact.sa_mask);
                    349:        sigact.sa_flags = SA_RESTART;
                    350:        sigact.sa_handler = SIG_IGN;
                    351:        if (sigaction(SIGINT, &sigact, NULL) != 0)
                    352:                fatal("sigaction failed");
                    353:        if (sigaction(SIGPIPE, &sigact, NULL) != 0)
                    354:                fatal("sigaction failed");
                    355:        if (sigaction(SIGUSR2, &sigact, NULL) != 0)
                    356:                fatal("sigaction failed");
                    357:        if (sigaction(SIGTSTP, &sigact, NULL) != 0)
                    358:                fatal("sigaction failed");
                    359:
                    360:        signal_set(&server_ev_sigchld, SIGCHLD, server_signal_callback, NULL);
                    361:        signal_add(&server_ev_sigchld, NULL);
                    362:        signal_set(&server_ev_sigterm, SIGTERM, server_signal_callback, NULL);
                    363:        signal_add(&server_ev_sigterm, NULL);
                    364:        signal_set(&server_ev_sigusr1, SIGUSR1, server_signal_callback, NULL);
                    365:        signal_add(&server_ev_sigusr1, NULL);
                    366: }
                    367:
                    368: /* Destroy server signal events. */
                    369: void
                    370: server_signal_clear(void)
                    371: {
                    372:        struct sigaction         sigact;
                    373:
                    374:        memset(&sigact, 0, sizeof sigact);
                    375:        sigemptyset(&sigact.sa_mask);
                    376:        sigact.sa_flags = SA_RESTART;
                    377:        sigact.sa_handler = SIG_DFL;
                    378:        if (sigaction(SIGINT, &sigact, NULL) != 0)
                    379:                fatal("sigaction failed");
                    380:        if (sigaction(SIGPIPE, &sigact, NULL) != 0)
                    381:                fatal("sigaction failed");
                    382:        if (sigaction(SIGUSR2, &sigact, NULL) != 0)
                    383:                fatal("sigaction failed");
                    384:        if (sigaction(SIGTSTP, &sigact, NULL) != 0)
                    385:                fatal("sigaction failed");
                    386:
                    387:        signal_del(&server_ev_sigchld);
                    388:        signal_del(&server_ev_sigterm);
                    389:        signal_del(&server_ev_sigusr1);
                    390: }
                    391:
                    392: /* Signal handler. */
                    393: void
                    394: server_signal_callback(int sig, unused short events, unused void *data)
                    395: {
                    396:        switch (sig) {
                    397:        case SIGTERM:
                    398:                server_shutdown = 1;
                    399:                server_send_shutdown();
                    400:                break;
                    401:        case SIGCHLD:
                    402:                server_child_signal();
                    403:                break;
                    404:        case SIGUSR1:
                    405:                event_del(&server_ev_accept);
                    406:                close(server_fd);
                    407:                server_fd = server_create_socket();
                    408:                event_set(&server_ev_accept, server_fd,
                    409:                    EV_READ|EV_PERSIST, server_accept_callback, NULL);
                    410:                event_add(&server_ev_accept, NULL);
                    411:                break;
1.1       nicm      412:        }
                    413: }
                    414:
                    415: /* Handle SIGCHLD. */
                    416: void
                    417: server_child_signal(void)
                    418: {
1.66      nicm      419:        int      status;
                    420:        pid_t    pid;
1.1       nicm      421:
                    422:        for (;;) {
                    423:                switch (pid = waitpid(WAIT_ANY, &status, WNOHANG|WUNTRACED)) {
                    424:                case -1:
                    425:                        if (errno == ECHILD)
                    426:                                return;
1.39      nicm      427:                        fatal("waitpid failed");
1.1       nicm      428:                case 0:
                    429:                        return;
                    430:                }
1.66      nicm      431:                if (WIFSTOPPED(status))
                    432:                        server_child_stopped(pid, status);
                    433:                else if (WIFEXITED(status))
                    434:                        server_child_exited(pid, status);
                    435:        }
                    436: }
                    437:
                    438: /* Handle exited children. */
                    439: void
                    440: server_child_exited(pid_t pid, int status)
                    441: {
                    442:        struct window           *w;
                    443:        struct window_pane      *wp;
                    444:        struct job              *job;
                    445:        u_int                    i;
                    446:
                    447:        for (i = 0; i < ARRAY_LENGTH(&windows); i++) {
                    448:                if ((w = ARRAY_ITEM(&windows, i)) == NULL)
                    449:                        continue;
                    450:                TAILQ_FOREACH(wp, &w->panes, entry) {
                    451:                        if (wp->pid == pid) {
                    452:                                close(wp->fd);
                    453:                                wp->fd = -1;
1.53      nicm      454:                        }
                    455:                }
1.66      nicm      456:        }
1.1       nicm      457:
1.66      nicm      458:        SLIST_FOREACH(job, &all_jobs, lentry) {
                    459:                if (pid == job->pid) {
1.67      nicm      460:                        job_died(job, status);  /* might free job */
                    461:                        break;
1.1       nicm      462:                }
1.53      nicm      463:        }
                    464: }
                    465:
1.66      nicm      466: /* Handle stopped children. */
1.31      nicm      467: void
1.66      nicm      468: server_child_stopped(pid_t pid, int status)
1.31      nicm      469: {
1.66      nicm      470:        struct window           *w;
                    471:        struct window_pane      *wp;
                    472:        u_int                    i;
1.31      nicm      473:
1.66      nicm      474:        if (WSTOPSIG(status) == SIGTTIN || WSTOPSIG(status) == SIGTTOU)
                    475:                return;
1.31      nicm      476:
1.66      nicm      477:        for (i = 0; i < ARRAY_LENGTH(&windows); i++) {
                    478:                if ((w = ARRAY_ITEM(&windows, i)) == NULL)
1.31      nicm      479:                        continue;
1.66      nicm      480:                TAILQ_FOREACH(wp, &w->panes, entry) {
                    481:                        if (wp->pid == pid) {
                    482:                                if (killpg(pid, SIGCONT) != 0)
                    483:                                        kill(pid, SIGCONT);
                    484:                        }
                    485:                }
1.31      nicm      486:        }
1.1       nicm      487: }
                    488:
1.66      nicm      489: /* Handle once-per-second timer events. */
1.1       nicm      490: void
1.66      nicm      491: server_second_callback(unused int fd, unused short events, unused void *arg)
1.1       nicm      492: {
1.60      nicm      493:        struct window           *w;
                    494:        struct window_pane      *wp;
1.66      nicm      495:        struct timeval           tv;
1.35      nicm      496:        u_int                    i;
1.1       nicm      497:
1.60      nicm      498:        if (options_get_number(&global_s_options, "lock-server"))
                    499:                server_lock_server();
                    500:        else
                    501:                server_lock_sessions();
1.1       nicm      502:
1.60      nicm      503:        for (i = 0; i < ARRAY_LENGTH(&windows); i++) {
                    504:                w = ARRAY_ITEM(&windows, i);
                    505:                if (w == NULL)
1.1       nicm      506:                        continue;
                    507:
1.60      nicm      508:                TAILQ_FOREACH(wp, &w->panes, entry) {
                    509:                        if (wp->mode != NULL && wp->mode->timer != NULL)
                    510:                                wp->mode->timer(wp);
1.1       nicm      511:                }
                    512:        }
1.72      nicm      513:
                    514:        server_client_status_timer();
1.66      nicm      515:
                    516:        evtimer_del(&server_ev_second);
                    517:        memset(&tv, 0, sizeof tv);
                    518:        tv.tv_sec = 1;
                    519:        evtimer_add(&server_ev_second, &tv);
1.1       nicm      520: }
                    521:
1.46      nicm      522: /* Lock the server if ALL sessions have hit the time limit. */
                    523: void
                    524: server_lock_server(void)
                    525: {
                    526:        struct session  *s;
                    527:        u_int            i;
                    528:        int              timeout;
                    529:        time_t           t;
                    530:
                    531:        t = time(NULL);
                    532:        for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
                    533:                if ((s = ARRAY_ITEM(&sessions, i)) == NULL)
                    534:                        continue;
                    535:
1.59      nicm      536:                if (s->flags & SESSION_UNATTACHED) {
1.65      nicm      537:                        if (gettimeofday(&s->activity_time, NULL) != 0)
                    538:                                fatal("gettimeofday failed");
1.59      nicm      539:                        continue;
                    540:                }
                    541:
1.46      nicm      542:                timeout = options_get_number(&s->options, "lock-after-time");
1.65      nicm      543:                if (timeout <= 0 || t <= s->activity_time.tv_sec + timeout)
1.46      nicm      544:                        return; /* not timed out */
                    545:        }
                    546:
                    547:        server_lock();
                    548:        recalculate_sizes();
                    549: }
                    550:
                    551: /* Lock any sessions which have timed out. */
                    552: void
                    553: server_lock_sessions(void)
                    554: {
                    555:         struct session  *s;
1.62      deraadt   556:        u_int            i;
1.46      nicm      557:        int              timeout;
1.62      deraadt   558:        time_t           t;
1.46      nicm      559:
1.62      deraadt   560:        t = time(NULL);
                    561:        for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
1.46      nicm      562:                if ((s = ARRAY_ITEM(&sessions, i)) == NULL)
                    563:                        continue;
1.59      nicm      564:
                    565:                if (s->flags & SESSION_UNATTACHED) {
1.65      nicm      566:                        if (gettimeofday(&s->activity_time, NULL) != 0)
                    567:                                fatal("gettimeofday failed");
1.59      nicm      568:                        continue;
                    569:                }
1.46      nicm      570:
                    571:                timeout = options_get_number(&s->options, "lock-after-time");
1.65      nicm      572:                if (timeout > 0 && t > s->activity_time.tv_sec + timeout) {
1.46      nicm      573:                        server_lock_session(s);
                    574:                        recalculate_sizes();
1.1       nicm      575:                }
                    576:        }
                    577: }