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

Annotation of src/usr.bin/tmux/tmux.c, Revision 1.137

1.137   ! nicm        1: /* $OpenBSD: tmux.c,v 1.136 2015/06/04 20:34:22 jmc 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/stat.h>
                     21:
                     22: #include <errno.h>
1.55      nicm       23: #include <event.h>
1.91      nicm       24: #include <fcntl.h>
1.132     nicm       25: #include <getopt.h>
1.119     nicm       26: #include <locale.h>
1.1       nicm       27: #include <paths.h>
                     28: #include <pwd.h>
                     29: #include <stdlib.h>
                     30: #include <string.h>
                     31: #include <unistd.h>
                     32:
                     33: #include "tmux.h"
                     34:
                     35: #ifdef DEBUG
1.54      nicm       36: extern char    *malloc_options;
1.1       nicm       37: #endif
                     38:
1.63      nicm       39: struct options  global_options;        /* server options */
1.12      nicm       40: struct options  global_s_options;      /* session options */
                     41: struct options  global_w_options;      /* window options */
1.29      nicm       42: struct environ  global_environ;
1.1       nicm       43:
1.78      nicm       44: struct event_base *ev_base;
                     45:
1.92      nicm       46: char           *cfg_file;
                     47: char           *shell_cmd;
1.1       nicm       48: int             debug_level;
                     49: time_t          start_time;
1.132     nicm       50: char            socket_path[PATH_MAX];
1.41      nicm       51: int             login_shell;
1.92      nicm       52: char           *environ_path;
1.70      nicm       53:
1.1       nicm       54: __dead void     usage(void);
1.92      nicm       55: char           *makesocketpath(const char *);
1.55      nicm       56:
1.1       nicm       57: __dead void
                     58: usage(void)
                     59: {
1.4       sobrado    60:        fprintf(stderr,
1.136     jmc        61:            "usage: %s [-2Cluv] [-c shell-command] [-f file] [-L socket-name]\n"
1.41      nicm       62:            "            [-S socket-path] [command [flags]]\n",
1.1       nicm       63:            __progname);
                     64:        exit(1);
                     65: }
                     66:
                     67: void
                     68: logfile(const char *name)
                     69: {
                     70:        char    *path;
                     71:
                     72:        if (debug_level > 0) {
1.32      nicm       73:                xasprintf(&path, "tmux-%s-%ld.log", name, (long) getpid());
1.130     nicm       74:                log_open(path);
1.112     nicm       75:                free(path);
1.1       nicm       76:        }
                     77: }
                     78:
1.39      nicm       79: const char *
                     80: getshell(void)
                     81: {
                     82:        struct passwd   *pw;
                     83:        const char      *shell;
                     84:
                     85:        shell = getenv("SHELL");
                     86:        if (checkshell(shell))
                     87:                return (shell);
                     88:
                     89:        pw = getpwuid(getuid());
                     90:        if (pw != NULL && checkshell(pw->pw_shell))
                     91:                return (pw->pw_shell);
                     92:
                     93:        return (_PATH_BSHELL);
                     94: }
                     95:
                     96: int
                     97: checkshell(const char *shell)
                     98: {
1.105     nicm       99:        if (shell == NULL || *shell == '\0' || *shell != '/')
                    100:                return (0);
                    101:        if (areshell(shell))
1.39      nicm      102:                return (0);
                    103:        if (access(shell, X_OK) != 0)
                    104:                return (0);
                    105:        return (1);
                    106: }
                    107:
                    108: int
                    109: areshell(const char *shell)
                    110: {
                    111:        const char      *progname, *ptr;
                    112:
                    113:        if ((ptr = strrchr(shell, '/')) != NULL)
                    114:                ptr++;
                    115:        else
                    116:                ptr = shell;
                    117:        progname = __progname;
                    118:        if (*progname == '-')
                    119:                progname++;
                    120:        if (strcmp(ptr, progname) == 0)
                    121:                return (1);
                    122:        return (0);
1.107     nicm      123: }
                    124:
1.1       nicm      125: char *
1.92      nicm      126: makesocketpath(const char *label)
1.1       nicm      127: {
1.132     nicm      128:        char            base[PATH_MAX], realbase[PATH_MAX], *path, *s;
1.1       nicm      129:        struct stat     sb;
                    130:        u_int           uid;
                    131:
                    132:        uid = getuid();
1.118     nicm      133:        if ((s = getenv("TMUX_TMPDIR")) != NULL && *s != '\0')
1.135     nicm      134:                xsnprintf(base, sizeof base, "%s/tmux-%u", s, uid);
1.118     nicm      135:        else if ((s = getenv("TMPDIR")) != NULL && *s != '\0')
                    136:                xsnprintf(base, sizeof base, "%s/tmux-%u", s, uid);
                    137:        else
1.102     nicm      138:                xsnprintf(base, sizeof base, "%s/tmux-%u", _PATH_TMP, uid);
1.1       nicm      139:
                    140:        if (mkdir(base, S_IRWXU) != 0 && errno != EEXIST)
                    141:                return (NULL);
                    142:
                    143:        if (lstat(base, &sb) != 0)
                    144:                return (NULL);
                    145:        if (!S_ISDIR(sb.st_mode)) {
                    146:                errno = ENOTDIR;
                    147:                return (NULL);
                    148:        }
1.134     nicm      149:        if (sb.st_uid != uid || (sb.st_mode & S_IRWXO) != 0) {
1.1       nicm      150:                errno = EACCES;
                    151:                return (NULL);
                    152:        }
                    153:
1.113     nicm      154:        if (realpath(base, realbase) == NULL)
                    155:                strlcpy(realbase, base, sizeof realbase);
                    156:
                    157:        xasprintf(&path, "%s/%s", realbase, label);
1.1       nicm      158:        return (path);
                    159: }
                    160:
1.101     nicm      161: void
                    162: setblocking(int fd, int state)
                    163: {
                    164:        int mode;
                    165:
                    166:        if ((mode = fcntl(fd, F_GETFL)) != -1) {
                    167:                if (!state)
                    168:                        mode |= O_NONBLOCK;
                    169:                else
                    170:                        mode &= ~O_NONBLOCK;
                    171:                fcntl(fd, F_SETFL, mode);
                    172:        }
                    173: }
                    174:
1.55      nicm      175: __dead void
                    176: shell_exec(const char *shell, const char *shellcmd)
                    177: {
                    178:        const char      *shellname, *ptr;
                    179:        char            *argv0;
                    180:
                    181:        ptr = strrchr(shell, '/');
                    182:        if (ptr != NULL && *(ptr + 1) != '\0')
                    183:                shellname = ptr + 1;
                    184:        else
                    185:                shellname = shell;
                    186:        if (login_shell)
                    187:                xasprintf(&argv0, "-%s", shellname);
                    188:        else
                    189:                xasprintf(&argv0, "%s", shellname);
                    190:        setenv("SHELL", shell, 1);
1.90      nicm      191:
1.101     nicm      192:        setblocking(STDIN_FILENO, 1);
                    193:        setblocking(STDOUT_FILENO, 1);
                    194:        setblocking(STDERR_FILENO, 1);
1.90      nicm      195:        closefrom(STDERR_FILENO + 1);
1.55      nicm      196:
                    197:        execl(shell, argv0, "-c", shellcmd, (char *) NULL);
                    198:        fatal("execl failed");
                    199: }
                    200:
1.137   ! nicm      201: const char*
        !           202: find_home(void)
        !           203: {
        !           204:        struct passwd   *pw;
        !           205:        const char      *home;
        !           206:
        !           207:        home = getenv("HOME");
        !           208:        if (home == NULL || *home == '\0') {
        !           209:                pw = getpwuid(getuid());
        !           210:                if (pw != NULL)
        !           211:                        home = pw->pw_dir;
        !           212:                else
        !           213:                        home = NULL;
        !           214:        }
        !           215:
        !           216:        return home;
        !           217: }
        !           218:
1.1       nicm      219: int
                    220: main(int argc, char **argv)
                    221: {
1.132     nicm      222:        char            *s, *path, *label, **var, tmp[PATH_MAX];
1.126     nicm      223:        char             in[256];
1.128     nicm      224:        const char      *home;
1.126     nicm      225:        long long        pid;
1.131     nicm      226:        int              opt, flags, keys, session;
1.54      nicm      227:
                    228: #ifdef DEBUG
                    229:        malloc_options = (char *) "AFGJPX";
                    230: #endif
1.119     nicm      231:
                    232:        setlocale(LC_TIME, "");
1.1       nicm      233:
1.131     nicm      234:        flags = 0;
1.92      nicm      235:        label = path = NULL;
1.41      nicm      236:        login_shell = (**argv == '-');
1.117     nicm      237:        while ((opt = getopt(argc, argv, "2c:Cdf:lL:qS:uUv")) != -1) {
1.41      nicm      238:                switch (opt) {
1.1       nicm      239:                case '2':
1.124     nicm      240:                        flags |= CLIENT_256COLOURS;
1.1       nicm      241:                        break;
1.46      nicm      242:                case 'c':
1.112     nicm      243:                        free(shell_cmd);
1.92      nicm      244:                        shell_cmd = xstrdup(optarg);
1.111     nicm      245:                        break;
                    246:                case 'C':
1.124     nicm      247:                        if (flags & CLIENT_CONTROL)
                    248:                                flags |= CLIENT_CONTROLCONTROL;
1.111     nicm      249:                        else
1.124     nicm      250:                                flags |= CLIENT_CONTROL;
1.37      nicm      251:                        break;
1.1       nicm      252:                case 'f':
1.112     nicm      253:                        free(cfg_file);
1.1       nicm      254:                        cfg_file = xstrdup(optarg);
1.41      nicm      255:                        break;
                    256:                case 'l':
                    257:                        login_shell = 1;
1.1       nicm      258:                        break;
                    259:                case 'L':
1.112     nicm      260:                        free(label);
1.1       nicm      261:                        label = xstrdup(optarg);
                    262:                        break;
1.37      nicm      263:                case 'q':
                    264:                        break;
1.1       nicm      265:                case 'S':
1.112     nicm      266:                        free(path);
1.1       nicm      267:                        path = xstrdup(optarg);
                    268:                        break;
                    269:                case 'u':
1.124     nicm      270:                        flags |= CLIENT_UTF8;
1.1       nicm      271:                        break;
                    272:                case 'v':
                    273:                        debug_level++;
                    274:                        break;
1.53      deraadt   275:                default:
1.1       nicm      276:                        usage();
1.53      deraadt   277:                }
                    278:        }
1.1       nicm      279:        argc -= optind;
                    280:        argv += optind;
                    281:
1.92      nicm      282:        if (shell_cmd != NULL && argc != 0)
1.46      nicm      283:                usage();
                    284:
1.124     nicm      285:        if (!(flags & CLIENT_UTF8)) {
1.15      nicm      286:                /*
                    287:                 * If the user has set whichever of LC_ALL, LC_CTYPE or LANG
                    288:                 * exist (in that order) to contain UTF-8, it is a safe
                    289:                 * assumption that either they are using a UTF-8 terminal, or
                    290:                 * if not they know that output from UTF-8-capable programs may
                    291:                 * be wrong.
                    292:                 */
1.106     nicm      293:                if ((s = getenv("LC_ALL")) == NULL || *s == '\0') {
                    294:                        if ((s = getenv("LC_CTYPE")) == NULL || *s == '\0')
1.15      nicm      295:                                s = getenv("LANG");
                    296:                }
1.26      nicm      297:                if (s != NULL && (strcasestr(s, "UTF-8") != NULL ||
                    298:                    strcasestr(s, "UTF8") != NULL))
1.124     nicm      299:                        flags |= CLIENT_UTF8;
1.15      nicm      300:        }
                    301:
1.42      nicm      302:        environ_init(&global_environ);
1.62      nicm      303:        for (var = environ; *var != NULL; var++)
1.42      nicm      304:                environ_put(&global_environ, *var);
1.125     nicm      305:        if (getcwd(tmp, sizeof tmp) != NULL)
                    306:                environ_set(&global_environ, "PWD", tmp);
1.63      nicm      307:
                    308:        options_init(&global_options, NULL);
1.99      nicm      309:        options_table_populate_tree(server_options_table, &global_options);
1.42      nicm      310:
1.12      nicm      311:        options_init(&global_s_options, NULL);
1.99      nicm      312:        options_table_populate_tree(session_options_table, &global_s_options);
1.131     nicm      313:        options_set_string(&global_s_options, "default-shell", "%s",
                    314:            getshell());
1.44      nicm      315:
1.99      nicm      316:        options_init(&global_w_options, NULL);
                    317:        options_table_populate_tree(window_options_table, &global_w_options);
1.42      nicm      318:
1.99      nicm      319:        /* Enable UTF-8 if the first client is on UTF-8 terminal. */
1.124     nicm      320:        if (flags & CLIENT_UTF8) {
1.99      nicm      321:                options_set_number(&global_s_options, "status-utf8", 1);
1.100     nicm      322:                options_set_number(&global_s_options, "mouse-utf8", 1);
1.99      nicm      323:                options_set_number(&global_w_options, "utf8", 1);
1.42      nicm      324:        }
1.94      nicm      325:
1.99      nicm      326:        /* Override keys to vi if VISUAL or EDITOR are set. */
1.94      nicm      327:        if ((s = getenv("VISUAL")) != NULL || (s = getenv("EDITOR")) != NULL) {
                    328:                if (strrchr(s, '/') != NULL)
                    329:                        s = strrchr(s, '/') + 1;
                    330:                if (strstr(s, "vi") != NULL)
                    331:                        keys = MODEKEY_VI;
1.99      nicm      332:                else
                    333:                        keys = MODEKEY_EMACS;
                    334:                options_set_number(&global_s_options, "status-keys", keys);
                    335:                options_set_number(&global_w_options, "mode-keys", keys);
1.94      nicm      336:        }
1.1       nicm      337:
1.92      nicm      338:        /* Locate the configuration file. */
1.1       nicm      339:        if (cfg_file == NULL) {
1.137   ! nicm      340:                home = find_home();
1.128     nicm      341:                if (home != NULL) {
                    342:                        xasprintf(&cfg_file, "%s/.tmux.conf", home);
                    343:                        if (access(cfg_file, R_OK) != 0 && errno == ENOENT) {
                    344:                                free(cfg_file);
                    345:                                cfg_file = NULL;
                    346:                        }
1.1       nicm      347:                }
                    348:        }
1.62      nicm      349:
1.126     nicm      350:        /* Get path from environment. */
                    351:        s = getenv("TMUX");
                    352:        if (s != NULL && sscanf(s, "%255[^,],%lld,%d", in, &pid, &session) == 3)
                    353:                environ_path = xstrdup(in);
                    354:
1.68      nicm      355:        /*
1.92      nicm      356:         * Figure out the socket path. If specified on the command-line with -S
                    357:         * or -L, use it, otherwise try $TMUX or assume -L default.
1.68      nicm      358:         */
                    359:        if (path == NULL) {
1.92      nicm      360:                /* If no -L, use the environment. */
1.68      nicm      361:                if (label == NULL) {
1.92      nicm      362:                        if (environ_path != NULL)
                    363:                                path = xstrdup(environ_path);
                    364:                        else
1.68      nicm      365:                                label = xstrdup("default");
                    366:                }
                    367:
                    368:                /* -L or default set. */
                    369:                if (label != NULL) {
1.92      nicm      370:                        if ((path = makesocketpath(label)) == NULL) {
1.123     nicm      371:                                fprintf(stderr, "can't create socket: %s\n",
                    372:                                        strerror(errno));
1.68      nicm      373:                                exit(1);
                    374:                        }
                    375:                }
1.1       nicm      376:        }
1.112     nicm      377:        free(label);
1.127     nicm      378:
                    379:        if (strlcpy(socket_path, path, sizeof socket_path) >= sizeof socket_path) {
                    380:                fprintf(stderr, "socket path too long: %s\n", path);
                    381:                exit(1);
                    382:        }
1.112     nicm      383:        free(path);
1.1       nicm      384:
1.92      nicm      385:        /* Set process title. */
                    386:        setproctitle("%s (%s)", __progname, socket_path);
1.1       nicm      387:
1.92      nicm      388:        /* Pass control to the client. */
1.78      nicm      389:        ev_base = event_init();
1.92      nicm      390:        exit(client_main(argc, argv, flags));
1.1       nicm      391: }