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>
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
];
51 pid_t environ_pid
= -1;
54 __dead
void usage(void);
55 void parseenvironment(void);
56 char *makesocketpath(const char *);
62 "usage: %s [-28lquv] [-c shell-command] [-f file] [-L socket-name]\n"
63 " [-S socket-path] [command [flags]]\n",
69 logfile(const char *name
)
74 if (debug_level
> 0) {
75 xasprintf(&path
, "tmux-%s-%ld.log", name
, (long) getpid());
76 log_open_file(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' || areshell(shell
))
103 if (access(shell
, X_OK
) != 0)
109 areshell(const char *shell
)
111 const char *progname
, *ptr
;
113 if ((ptr
= strrchr(shell
, '/')) != NULL
)
117 progname
= __progname
;
118 if (*progname
== '-')
120 if (strcmp(ptr
, progname
) == 0)
126 parseenvironment(void)
128 char *env
, path
[256];
132 if ((env
= getenv("TMUX")) == NULL
)
135 if (sscanf(env
, "%255[^,],%ld,%d", path
, &pid
, &idx
) != 3)
137 environ_path
= xstrdup(path
);
143 makesocketpath(const char *label
)
145 char base
[MAXPATHLEN
], *path
, *s
;
150 if ((s
= getenv("TMPDIR")) == NULL
|| *s
== '\0')
151 xsnprintf(base
, sizeof base
, "%s/tmux-%u", _PATH_TMP
, uid
);
153 xsnprintf(base
, sizeof base
, "%s/tmux-%u", s
, uid
);
155 if (mkdir(base
, S_IRWXU
) != 0 && errno
!= EEXIST
)
158 if (lstat(base
, &sb
) != 0)
160 if (!S_ISDIR(sb
.st_mode
)) {
164 if (sb
.st_uid
!= uid
|| (sb
.st_mode
& (S_IRWXG
|S_IRWXO
)) != 0) {
169 xasprintf(&path
, "%s/%s", base
, label
);
174 setblocking(int fd
, int state
)
178 if ((mode
= fcntl(fd
, F_GETFL
)) != -1) {
183 fcntl(fd
, F_SETFL
, mode
);
188 shell_exec(const char *shell
, const char *shellcmd
)
190 const char *shellname
, *ptr
;
193 ptr
= strrchr(shell
, '/');
194 if (ptr
!= NULL
&& *(ptr
+ 1) != '\0')
199 xasprintf(&argv0
, "-%s", shellname
);
201 xasprintf(&argv0
, "%s", shellname
);
202 setenv("SHELL", shell
, 1);
204 setblocking(STDIN_FILENO
, 1);
205 setblocking(STDOUT_FILENO
, 1);
206 setblocking(STDERR_FILENO
, 1);
207 closefrom(STDERR_FILENO
+ 1);
209 execl(shell
, argv0
, "-c", shellcmd
, (char *) NULL
);
210 fatal("execl failed");
214 main(int argc
, char **argv
)
217 struct keylist
*keylist
;
218 char *s
, *path
, *label
, *home
, **var
;
219 int opt
, flags
, quiet
, keys
;
222 malloc_options
= (char *) "AFGJPX";
227 login_shell
= (**argv
== '-');
228 while ((opt
= getopt(argc
, argv
, "28c:df:lL:qS:uUv")) != -1) {
231 flags
|= IDENTIFY_256COLOURS
;
232 flags
&= ~IDENTIFY_88COLOURS
;
235 flags
|= IDENTIFY_88COLOURS
;
236 flags
&= ~IDENTIFY_256COLOURS
;
239 if (shell_cmd
!= NULL
)
241 shell_cmd
= xstrdup(optarg
);
244 if (cfg_file
!= NULL
)
246 cfg_file
= xstrdup(optarg
);
254 label
= xstrdup(optarg
);
262 path
= xstrdup(optarg
);
265 flags
|= IDENTIFY_UTF8
;
277 if (shell_cmd
!= NULL
&& argc
!= 0)
280 log_open_tty(debug_level
);
282 if (!(flags
& IDENTIFY_UTF8
)) {
284 * If the user has set whichever of LC_ALL, LC_CTYPE or LANG
285 * exist (in that order) to contain UTF-8, it is a safe
286 * assumption that either they are using a UTF-8 terminal, or
287 * if not they know that output from UTF-8-capable programs may
290 if ((s
= getenv("LC_ALL")) == NULL
) {
291 if ((s
= getenv("LC_CTYPE")) == NULL
)
294 if (s
!= NULL
&& (strcasestr(s
, "UTF-8") != NULL
||
295 strcasestr(s
, "UTF8") != NULL
))
296 flags
|= IDENTIFY_UTF8
;
299 environ_init(&global_environ
);
300 for (var
= environ
; *var
!= NULL
; var
++)
301 environ_put(&global_environ
, *var
);
303 options_init(&global_options
, NULL
);
304 options_table_populate_tree(server_options_table
, &global_options
);
305 options_set_number(&global_options
, "quiet", quiet
);
307 options_init(&global_s_options
, NULL
);
308 options_table_populate_tree(session_options_table
, &global_s_options
);
309 options_set_string(&global_s_options
, "default-shell", "%s", getshell());
311 options_init(&global_w_options
, NULL
);
312 options_table_populate_tree(window_options_table
, &global_w_options
);
314 /* Set the prefix option (its a list, so not in the table). */
315 keylist
= xmalloc(sizeof *keylist
);
317 ARRAY_ADD(keylist
, '\002');
318 options_set_data(&global_s_options
, "prefix", keylist
, xfree
);
320 /* Enable UTF-8 if the first client is on UTF-8 terminal. */
321 if (flags
& IDENTIFY_UTF8
) {
322 options_set_number(&global_s_options
, "status-utf8", 1);
323 options_set_number(&global_s_options
, "mouse-utf8", 1);
324 options_set_number(&global_w_options
, "utf8", 1);
327 /* Override keys to vi if VISUAL or EDITOR are set. */
328 if ((s
= getenv("VISUAL")) != NULL
|| (s
= getenv("EDITOR")) != NULL
) {
329 if (strrchr(s
, '/') != NULL
)
330 s
= strrchr(s
, '/') + 1;
331 if (strstr(s
, "vi") != NULL
)
334 keys
= MODEKEY_EMACS
;
335 options_set_number(&global_s_options
, "status-keys", keys
);
336 options_set_number(&global_w_options
, "mode-keys", keys
);
339 /* Locate the configuration file. */
340 if (cfg_file
== NULL
) {
341 home
= getenv("HOME");
342 if (home
== NULL
|| *home
== '\0') {
343 pw
= getpwuid(getuid());
347 xasprintf(&cfg_file
, "%s/%s", home
, DEFAULT_CFG
);
348 if (access(cfg_file
, R_OK
) != 0 && errno
== ENOENT
) {
355 * Figure out the socket path. If specified on the command-line with -S
356 * or -L, use it, otherwise try $TMUX or assume -L default.
360 /* If no -L, use the environment. */
362 if (environ_path
!= NULL
)
363 path
= xstrdup(environ_path
);
365 label
= xstrdup("default");
368 /* -L or default set. */
370 if ((path
= makesocketpath(label
)) == NULL
) {
371 log_warn("can't create socket");
378 if (realpath(path
, socket_path
) == NULL
)
379 strlcpy(socket_path
, path
, sizeof socket_path
);
382 /* Set process title. */
383 setproctitle("%s (%s)", __progname
, socket_path
);
385 /* Pass control to the client. */
386 ev_base
= event_init();
387 exit(client_main(argc
, argv
, flags
));