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>
33 #if defined(DEBUG) && defined(__OpenBSD__)
34 extern char *malloc_options
;
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
;
48 char socket_path
[MAXPATHLEN
];
52 __dead
void usage(void);
53 char *makesocketpath(const char *);
55 #ifndef HAVE___PROGNAME
56 char *__progname
= (char *) "tmux";
63 "usage: %s [-2lquvV] [-c shell-command] [-f file] [-L socket-name]\n"
64 " [-S socket-path] [command [flags]]\n",
70 logfile(const char *name
)
74 if (debug_level
> 0) {
75 xasprintf(&path
, "tmux-%s-%ld.log", name
, (long) getpid());
76 log_open(debug_level
, path
);
87 shell
= getenv("SHELL");
88 if (checkshell(shell
))
91 pw
= getpwuid(getuid());
92 if (pw
!= NULL
&& checkshell(pw
->pw_shell
))
93 return (pw
->pw_shell
);
95 return (_PATH_BSHELL
);
99 checkshell(const char *shell
)
101 if (shell
== NULL
|| *shell
== '\0' || *shell
!= '/')
105 if (access(shell
, X_OK
) != 0)
111 areshell(const char *shell
)
113 const char *progname
, *ptr
;
115 if ((ptr
= strrchr(shell
, '/')) != NULL
)
119 progname
= __progname
;
120 if (*progname
== '-')
122 if (strcmp(ptr
, progname
) == 0)
128 makesocketpath(const char *label
)
130 char base
[MAXPATHLEN
], realbase
[MAXPATHLEN
], *path
, *s
;
135 if ((s
= getenv("TMUX_TMPDIR")) != NULL
&& *s
!= '\0')
136 xsnprintf(base
, sizeof base
, "%s/", s
);
137 else if ((s
= getenv("TMPDIR")) != NULL
&& *s
!= '\0')
138 xsnprintf(base
, sizeof base
, "%s/tmux-%u", s
, uid
);
140 xsnprintf(base
, sizeof base
, "%s/tmux-%u", _PATH_TMP
, uid
);
142 if (mkdir(base
, S_IRWXU
) != 0 && errno
!= EEXIST
)
145 if (lstat(base
, &sb
) != 0)
147 if (!S_ISDIR(sb
.st_mode
)) {
151 if (sb
.st_uid
!= uid
|| (!S_ISDIR(sb
.st_mode
) &&
152 sb
.st_mode
& (S_IRWXG
|S_IRWXO
)) != 0) {
157 if (realpath(base
, realbase
) == NULL
)
158 strlcpy(realbase
, base
, sizeof realbase
);
160 xasprintf(&path
, "%s/%s", realbase
, label
);
165 setblocking(int fd
, int state
)
169 if ((mode
= fcntl(fd
, F_GETFL
)) != -1) {
174 fcntl(fd
, F_SETFL
, mode
);
179 shell_exec(const char *shell
, const char *shellcmd
)
181 const char *shellname
, *ptr
;
184 ptr
= strrchr(shell
, '/');
185 if (ptr
!= NULL
&& *(ptr
+ 1) != '\0')
190 xasprintf(&argv0
, "-%s", shellname
);
192 xasprintf(&argv0
, "%s", shellname
);
193 setenv("SHELL", shell
, 1);
195 setblocking(STDIN_FILENO
, 1);
196 setblocking(STDOUT_FILENO
, 1);
197 setblocking(STDERR_FILENO
, 1);
198 closefrom(STDERR_FILENO
+ 1);
200 execl(shell
, argv0
, "-c", shellcmd
, (char *) NULL
);
201 fatal("execl failed");
210 * Make sure the standard file descriptors are populated, so we
211 * don't end up forwarding (for example) the event descriptor
212 * instead of stdin to the server.
215 while ((fd
= open("/dev/null", O_RDWR
)) <= 2)
221 main(int argc
, char **argv
)
224 char *s
, *path
, *label
, **var
, tmp
[MAXPATHLEN
];
228 int opt
, flags
, quiet
, keys
, session
;
230 #if defined(DEBUG) && defined(__OpenBSD__)
231 malloc_options
= (char *) "AFGJPX";
234 setlocale(LC_TIME
, "");
238 login_shell
= (**argv
== '-');
239 while ((opt
= getopt(argc
, argv
, "2c:Cdf:lL:qS:uUVv")) != -1) {
242 flags
|= CLIENT_256COLOURS
;
246 shell_cmd
= xstrdup(optarg
);
249 if (flags
& CLIENT_CONTROL
)
250 flags
|= CLIENT_CONTROLCONTROL
;
252 flags
|= CLIENT_CONTROL
;
255 printf("%s %s\n", __progname
, VERSION
);
259 cfg_file
= xstrdup(optarg
);
266 label
= xstrdup(optarg
);
273 path
= xstrdup(optarg
);
276 flags
|= CLIENT_UTF8
;
288 if (shell_cmd
!= NULL
&& argc
!= 0)
293 if (!(flags
& CLIENT_UTF8
)) {
295 * If the user has set whichever of LC_ALL, LC_CTYPE or LANG
296 * exist (in that order) to contain UTF-8, it is a safe
297 * assumption that either they are using a UTF-8 terminal, or
298 * if not they know that output from UTF-8-capable programs may
301 if ((s
= getenv("LC_ALL")) == NULL
|| *s
== '\0') {
302 if ((s
= getenv("LC_CTYPE")) == NULL
|| *s
== '\0')
305 if (s
!= NULL
&& (strcasestr(s
, "UTF-8") != NULL
||
306 strcasestr(s
, "UTF8") != NULL
))
307 flags
|= CLIENT_UTF8
;
310 environ_init(&global_environ
);
311 for (var
= environ
; *var
!= NULL
; var
++)
312 environ_put(&global_environ
, *var
);
313 if (getcwd(tmp
, sizeof tmp
) != NULL
)
314 environ_set(&global_environ
, "PWD", tmp
);
316 options_init(&global_options
, NULL
);
317 options_table_populate_tree(server_options_table
, &global_options
);
318 options_set_number(&global_options
, "quiet", quiet
);
320 options_init(&global_s_options
, NULL
);
321 options_table_populate_tree(session_options_table
, &global_s_options
);
322 options_set_string(&global_s_options
, "default-shell", "%s", getshell());
324 options_init(&global_w_options
, NULL
);
325 options_table_populate_tree(window_options_table
, &global_w_options
);
327 /* Enable UTF-8 if the first client is on UTF-8 terminal. */
328 if (flags
& CLIENT_UTF8
) {
329 options_set_number(&global_s_options
, "status-utf8", 1);
330 options_set_number(&global_s_options
, "mouse-utf8", 1);
331 options_set_number(&global_w_options
, "utf8", 1);
334 /* Override keys to vi if VISUAL or EDITOR are set. */
335 if ((s
= getenv("VISUAL")) != NULL
|| (s
= getenv("EDITOR")) != NULL
) {
336 if (strrchr(s
, '/') != NULL
)
337 s
= strrchr(s
, '/') + 1;
338 if (strstr(s
, "vi") != NULL
)
341 keys
= MODEKEY_EMACS
;
342 options_set_number(&global_s_options
, "status-keys", keys
);
343 options_set_number(&global_w_options
, "mode-keys", keys
);
346 /* Locate the configuration file. */
347 if (cfg_file
== NULL
) {
348 home
= getenv("HOME");
349 if (home
== NULL
|| *home
== '\0') {
350 pw
= getpwuid(getuid());
357 xasprintf(&cfg_file
, "%s/.tmux.conf", home
);
358 if (access(cfg_file
, R_OK
) != 0 && errno
== ENOENT
) {
365 /* Get path from environment. */
367 if (s
!= NULL
&& sscanf(s
, "%255[^,],%lld,%d", in
, &pid
, &session
) == 3)
368 environ_path
= xstrdup(in
);
371 * Figure out the socket path. If specified on the command-line with -S
372 * or -L, use it, otherwise try $TMUX or assume -L default.
375 /* If no -L, use the environment. */
377 if (environ_path
!= NULL
)
378 path
= xstrdup(environ_path
);
380 label
= xstrdup("default");
383 /* -L or default set. */
385 if ((path
= makesocketpath(label
)) == NULL
) {
386 fprintf(stderr
, "can't create socket: %s\n",
394 if (strlcpy(socket_path
, path
, sizeof socket_path
) >= sizeof socket_path
) {
395 fprintf(stderr
, "socket path too long: %s\n", path
);
400 #ifdef HAVE_SETPROCTITLE
401 /* Set process title. */
402 setproctitle("%s (%s)", __progname
, socket_path
);
405 /* Pass control to the client. */
406 ev_base
= osdep_event_init();
407 exit(client_main(argc
, argv
, flags
));