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

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