Change the way the working directory for new processes is discovered. If
[tmux-openbsd.git] / tmux.c
blobcab9d54e5e78961039f9335149470de1a29f4bbf
1 /* $OpenBSD$ */
3 /*
4 * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
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.
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.
19 #include <sys/types.h>
20 #include <sys/stat.h>
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>
31 #include "tmux.h"
33 #ifdef DEBUG
34 extern char *malloc_options;
35 #endif
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;
42 struct event_base *ev_base;
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;
54 __dead void usage(void);
55 void parseenvironment(void);
56 char *makesocketpath(const char *);
58 __dead void
59 usage(void)
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);
68 void
69 logfile(const char *name)
71 char *path;
73 log_close();
74 if (debug_level > 0) {
75 xasprintf(&path, "tmux-%s-%ld.log", name, (long) getpid());
76 log_open_file(debug_level, path);
77 xfree(path);
81 const char *
82 getshell(void)
84 struct passwd *pw;
85 const char *shell;
87 shell = getenv("SHELL");
88 if (checkshell(shell))
89 return (shell);
91 pw = getpwuid(getuid());
92 if (pw != NULL && checkshell(pw->pw_shell))
93 return (pw->pw_shell);
95 return (_PATH_BSHELL);
98 int
99 checkshell(const char *shell)
101 if (shell == NULL || *shell == '\0' || *shell != '/')
102 return (0);
103 if (areshell(shell))
104 return (0);
105 if (access(shell, X_OK) != 0)
106 return (0);
107 return (1);
111 areshell(const char *shell)
113 const char *progname, *ptr;
115 if ((ptr = strrchr(shell, '/')) != NULL)
116 ptr++;
117 else
118 ptr = shell;
119 progname = __progname;
120 if (*progname == '-')
121 progname++;
122 if (strcmp(ptr, progname) == 0)
123 return (1);
124 return (0);
127 const char*
128 get_full_path(const char *wd, const char *path)
130 static char newpath[MAXPATHLEN];
131 char oldpath[MAXPATHLEN];
133 if (getcwd(oldpath, sizeof oldpath) == NULL)
134 return (NULL);
135 if (chdir(wd) != 0)
136 return (NULL);
137 if (realpath(path, newpath) != 0)
138 return (NULL);
139 chdir(oldpath);
140 return (newpath);
143 void
144 parseenvironment(void)
146 char *env, path[256];
147 long pid;
148 int idx;
150 if ((env = getenv("TMUX")) == NULL)
151 return;
153 if (sscanf(env, "%255[^,],%ld,%d", path, &pid, &idx) != 3)
154 return;
155 environ_path = xstrdup(path);
156 environ_pid = pid;
157 environ_idx = idx;
160 char *
161 makesocketpath(const char *label)
163 char base[MAXPATHLEN], *path, *s;
164 struct stat sb;
165 u_int uid;
167 uid = getuid();
168 if ((s = getenv("TMPDIR")) == NULL || *s == '\0')
169 xsnprintf(base, sizeof base, "%s/tmux-%u", _PATH_TMP, uid);
170 else
171 xsnprintf(base, sizeof base, "%s/tmux-%u", s, uid);
173 if (mkdir(base, S_IRWXU) != 0 && errno != EEXIST)
174 return (NULL);
176 if (lstat(base, &sb) != 0)
177 return (NULL);
178 if (!S_ISDIR(sb.st_mode)) {
179 errno = ENOTDIR;
180 return (NULL);
182 if (sb.st_uid != uid || (sb.st_mode & (S_IRWXG|S_IRWXO)) != 0) {
183 errno = EACCES;
184 return (NULL);
187 xasprintf(&path, "%s/%s", base, label);
188 return (path);
191 void
192 setblocking(int fd, int state)
194 int mode;
196 if ((mode = fcntl(fd, F_GETFL)) != -1) {
197 if (!state)
198 mode |= O_NONBLOCK;
199 else
200 mode &= ~O_NONBLOCK;
201 fcntl(fd, F_SETFL, mode);
205 __dead void
206 shell_exec(const char *shell, const char *shellcmd)
208 const char *shellname, *ptr;
209 char *argv0;
211 ptr = strrchr(shell, '/');
212 if (ptr != NULL && *(ptr + 1) != '\0')
213 shellname = ptr + 1;
214 else
215 shellname = shell;
216 if (login_shell)
217 xasprintf(&argv0, "-%s", shellname);
218 else
219 xasprintf(&argv0, "%s", shellname);
220 setenv("SHELL", shell, 1);
222 setblocking(STDIN_FILENO, 1);
223 setblocking(STDOUT_FILENO, 1);
224 setblocking(STDERR_FILENO, 1);
225 closefrom(STDERR_FILENO + 1);
227 execl(shell, argv0, "-c", shellcmd, (char *) NULL);
228 fatal("execl failed");
232 main(int argc, char **argv)
234 struct passwd *pw;
235 struct keylist *keylist;
236 char *s, *path, *label, *home, **var;
237 int opt, flags, quiet, keys;
239 #ifdef DEBUG
240 malloc_options = (char *) "AFGJPX";
241 #endif
243 quiet = flags = 0;
244 label = path = NULL;
245 login_shell = (**argv == '-');
246 while ((opt = getopt(argc, argv, "28c:df:lL:qS:uUv")) != -1) {
247 switch (opt) {
248 case '2':
249 flags |= IDENTIFY_256COLOURS;
250 flags &= ~IDENTIFY_88COLOURS;
251 break;
252 case '8':
253 flags |= IDENTIFY_88COLOURS;
254 flags &= ~IDENTIFY_256COLOURS;
255 break;
256 case 'c':
257 if (shell_cmd != NULL)
258 xfree(shell_cmd);
259 shell_cmd = xstrdup(optarg);
260 break;
261 case 'f':
262 if (cfg_file != NULL)
263 xfree(cfg_file);
264 cfg_file = xstrdup(optarg);
265 break;
266 case 'l':
267 login_shell = 1;
268 break;
269 case 'L':
270 if (label != NULL)
271 xfree(label);
272 label = xstrdup(optarg);
273 break;
274 case 'q':
275 quiet = 1;
276 break;
277 case 'S':
278 if (path != NULL)
279 xfree(path);
280 path = xstrdup(optarg);
281 break;
282 case 'u':
283 flags |= IDENTIFY_UTF8;
284 break;
285 case 'v':
286 debug_level++;
287 break;
288 default:
289 usage();
292 argc -= optind;
293 argv += optind;
295 if (shell_cmd != NULL && argc != 0)
296 usage();
298 log_open_tty(debug_level);
300 if (!(flags & IDENTIFY_UTF8)) {
302 * If the user has set whichever of LC_ALL, LC_CTYPE or LANG
303 * exist (in that order) to contain UTF-8, it is a safe
304 * assumption that either they are using a UTF-8 terminal, or
305 * if not they know that output from UTF-8-capable programs may
306 * be wrong.
308 if ((s = getenv("LC_ALL")) == NULL || *s == '\0') {
309 if ((s = getenv("LC_CTYPE")) == NULL || *s == '\0')
310 s = getenv("LANG");
312 if (s != NULL && (strcasestr(s, "UTF-8") != NULL ||
313 strcasestr(s, "UTF8") != NULL))
314 flags |= IDENTIFY_UTF8;
317 environ_init(&global_environ);
318 for (var = environ; *var != NULL; var++)
319 environ_put(&global_environ, *var);
321 options_init(&global_options, NULL);
322 options_table_populate_tree(server_options_table, &global_options);
323 options_set_number(&global_options, "quiet", quiet);
325 options_init(&global_s_options, NULL);
326 options_table_populate_tree(session_options_table, &global_s_options);
327 options_set_string(&global_s_options, "default-shell", "%s", getshell());
329 options_init(&global_w_options, NULL);
330 options_table_populate_tree(window_options_table, &global_w_options);
332 /* Set the prefix option (its a list, so not in the table). */
333 keylist = xmalloc(sizeof *keylist);
334 ARRAY_INIT(keylist);
335 ARRAY_ADD(keylist, '\002');
336 options_set_data(&global_s_options, "prefix", keylist, xfree);
338 /* Enable UTF-8 if the first client is on UTF-8 terminal. */
339 if (flags & IDENTIFY_UTF8) {
340 options_set_number(&global_s_options, "status-utf8", 1);
341 options_set_number(&global_s_options, "mouse-utf8", 1);
342 options_set_number(&global_w_options, "utf8", 1);
345 /* Override keys to vi if VISUAL or EDITOR are set. */
346 if ((s = getenv("VISUAL")) != NULL || (s = getenv("EDITOR")) != NULL) {
347 if (strrchr(s, '/') != NULL)
348 s = strrchr(s, '/') + 1;
349 if (strstr(s, "vi") != NULL)
350 keys = MODEKEY_VI;
351 else
352 keys = MODEKEY_EMACS;
353 options_set_number(&global_s_options, "status-keys", keys);
354 options_set_number(&global_w_options, "mode-keys", keys);
357 /* Locate the configuration file. */
358 if (cfg_file == NULL) {
359 home = getenv("HOME");
360 if (home == NULL || *home == '\0') {
361 pw = getpwuid(getuid());
362 if (pw != NULL)
363 home = pw->pw_dir;
365 xasprintf(&cfg_file, "%s/%s", home, DEFAULT_CFG);
366 if (access(cfg_file, R_OK) != 0 && errno == ENOENT) {
367 xfree(cfg_file);
368 cfg_file = NULL;
373 * Figure out the socket path. If specified on the command-line with -S
374 * or -L, use it, otherwise try $TMUX or assume -L default.
376 parseenvironment();
377 if (path == NULL) {
378 /* If no -L, use the environment. */
379 if (label == NULL) {
380 if (environ_path != NULL)
381 path = xstrdup(environ_path);
382 else
383 label = xstrdup("default");
386 /* -L or default set. */
387 if (label != NULL) {
388 if ((path = makesocketpath(label)) == NULL) {
389 log_warn("can't create socket");
390 exit(1);
394 if (label != NULL)
395 xfree(label);
396 if (realpath(path, socket_path) == NULL)
397 strlcpy(socket_path, path, sizeof socket_path);
398 xfree(path);
400 /* Set process title. */
401 setproctitle("%s (%s)", __progname, socket_path);
403 /* Pass control to the client. */
404 ev_base = event_init();
405 exit(client_main(argc, argv, flags));