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