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;
52 int environ_session_id
= -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
)
73 if (debug_level
> 0) {
74 xasprintf(&path
, "tmux-%s-%ld.log", name
, (long) getpid());
75 log_open(debug_level
, path
);
86 shell
= getenv("SHELL");
87 if (checkshell(shell
))
90 pw
= getpwuid(getuid());
91 if (pw
!= NULL
&& checkshell(pw
->pw_shell
))
92 return (pw
->pw_shell
);
94 return (_PATH_BSHELL
);
98 checkshell(const char *shell
)
100 if (shell
== NULL
|| *shell
== '\0' || *shell
!= '/')
104 if (access(shell
, X_OK
) != 0)
110 areshell(const char *shell
)
112 const char *progname
, *ptr
;
114 if ((ptr
= strrchr(shell
, '/')) != NULL
)
118 progname
= __progname
;
119 if (*progname
== '-')
121 if (strcmp(ptr
, progname
) == 0)
127 get_full_path(const char *wd
, const char *path
)
129 static char newpath
[MAXPATHLEN
];
130 char oldpath
[MAXPATHLEN
];
132 if (getcwd(oldpath
, sizeof oldpath
) == NULL
)
136 if (realpath(path
, newpath
) != 0)
143 parseenvironment(void)
145 char *env
, path
[256];
149 if ((env
= getenv("TMUX")) == NULL
)
152 if (sscanf(env
, "%255[^,],%ld,%d", path
, &pid
, &id
) != 3)
154 environ_path
= xstrdup(path
);
156 environ_session_id
= id
;
160 makesocketpath(const char *label
)
162 char base
[MAXPATHLEN
], realbase
[MAXPATHLEN
], *path
, *s
;
167 if ((s
= getenv("TMUX_TMPDIR")) != NULL
&& *s
!= '\0')
168 xsnprintf(base
, sizeof base
, "%s/", s
);
169 else if ((s
= getenv("TMPDIR")) != NULL
&& *s
!= '\0')
170 xsnprintf(base
, sizeof base
, "%s/tmux-%u", s
, uid
);
172 xsnprintf(base
, sizeof base
, "%s/tmux-%u", _PATH_TMP
, uid
);
174 if (mkdir(base
, S_IRWXU
) != 0 && errno
!= EEXIST
)
177 if (lstat(base
, &sb
) != 0)
179 if (!S_ISDIR(sb
.st_mode
)) {
183 if (sb
.st_uid
!= uid
|| (sb
.st_mode
& (S_IRWXG
|S_IRWXO
)) != 0) {
188 if (realpath(base
, realbase
) == NULL
)
189 strlcpy(realbase
, base
, sizeof realbase
);
191 xasprintf(&path
, "%s/%s", realbase
, label
);
196 setblocking(int fd
, int state
)
200 if ((mode
= fcntl(fd
, F_GETFL
)) != -1) {
205 fcntl(fd
, F_SETFL
, mode
);
210 shell_exec(const char *shell
, const char *shellcmd
)
212 const char *shellname
, *ptr
;
215 ptr
= strrchr(shell
, '/');
216 if (ptr
!= NULL
&& *(ptr
+ 1) != '\0')
221 xasprintf(&argv0
, "-%s", shellname
);
223 xasprintf(&argv0
, "%s", shellname
);
224 setenv("SHELL", shell
, 1);
226 setblocking(STDIN_FILENO
, 1);
227 setblocking(STDOUT_FILENO
, 1);
228 setblocking(STDERR_FILENO
, 1);
229 closefrom(STDERR_FILENO
+ 1);
231 execl(shell
, argv0
, "-c", shellcmd
, (char *) NULL
);
232 fatal("execl failed");
236 main(int argc
, char **argv
)
239 char *s
, *path
, *label
, *home
, **var
;
240 int opt
, flags
, quiet
, keys
;
243 malloc_options
= (char *) "AFGJPX";
248 login_shell
= (**argv
== '-');
249 while ((opt
= getopt(argc
, argv
, "2c:Cdf:lL:qS:uUv")) != -1) {
252 flags
|= IDENTIFY_256COLOURS
;
256 shell_cmd
= xstrdup(optarg
);
259 if (flags
& IDENTIFY_CONTROL
)
260 flags
|= IDENTIFY_TERMIOS
;
262 flags
|= IDENTIFY_CONTROL
;
266 cfg_file
= xstrdup(optarg
);
273 label
= xstrdup(optarg
);
280 path
= xstrdup(optarg
);
283 flags
|= IDENTIFY_UTF8
;
295 if (shell_cmd
!= NULL
&& argc
!= 0)
298 if (!(flags
& IDENTIFY_UTF8
)) {
300 * If the user has set whichever of LC_ALL, LC_CTYPE or LANG
301 * exist (in that order) to contain UTF-8, it is a safe
302 * assumption that either they are using a UTF-8 terminal, or
303 * if not they know that output from UTF-8-capable programs may
306 if ((s
= getenv("LC_ALL")) == NULL
|| *s
== '\0') {
307 if ((s
= getenv("LC_CTYPE")) == NULL
|| *s
== '\0')
310 if (s
!= NULL
&& (strcasestr(s
, "UTF-8") != NULL
||
311 strcasestr(s
, "UTF8") != NULL
))
312 flags
|= IDENTIFY_UTF8
;
315 environ_init(&global_environ
);
316 for (var
= environ
; *var
!= NULL
; var
++)
317 environ_put(&global_environ
, *var
);
319 options_init(&global_options
, NULL
);
320 options_table_populate_tree(server_options_table
, &global_options
);
321 options_set_number(&global_options
, "quiet", quiet
);
323 options_init(&global_s_options
, NULL
);
324 options_table_populate_tree(session_options_table
, &global_s_options
);
325 options_set_string(&global_s_options
, "default-shell", "%s", getshell());
327 options_init(&global_w_options
, NULL
);
328 options_table_populate_tree(window_options_table
, &global_w_options
);
330 /* Enable UTF-8 if the first client is on UTF-8 terminal. */
331 if (flags
& IDENTIFY_UTF8
) {
332 options_set_number(&global_s_options
, "status-utf8", 1);
333 options_set_number(&global_s_options
, "mouse-utf8", 1);
334 options_set_number(&global_w_options
, "utf8", 1);
337 /* Override keys to vi if VISUAL or EDITOR are set. */
338 if ((s
= getenv("VISUAL")) != NULL
|| (s
= getenv("EDITOR")) != NULL
) {
339 if (strrchr(s
, '/') != NULL
)
340 s
= strrchr(s
, '/') + 1;
341 if (strstr(s
, "vi") != NULL
)
344 keys
= MODEKEY_EMACS
;
345 options_set_number(&global_s_options
, "status-keys", keys
);
346 options_set_number(&global_w_options
, "mode-keys", keys
);
349 /* Locate the configuration file. */
350 if (cfg_file
== NULL
) {
351 home
= getenv("HOME");
352 if (home
== NULL
|| *home
== '\0') {
353 pw
= getpwuid(getuid());
357 xasprintf(&cfg_file
, "%s/%s", home
, DEFAULT_CFG
);
358 if (access(cfg_file
, R_OK
) != 0 && errno
== ENOENT
) {
365 * Figure out the socket path. If specified on the command-line with -S
366 * or -L, use it, otherwise try $TMUX or assume -L default.
370 /* If no -L, use the environment. */
372 if (environ_path
!= NULL
)
373 path
= xstrdup(environ_path
);
375 label
= xstrdup("default");
378 /* -L or default set. */
380 if ((path
= makesocketpath(label
)) == NULL
) {
381 fprintf(stderr
, "can't create socket\n");
387 strlcpy(socket_path
, path
, sizeof socket_path
);
390 /* Set process title. */
391 setproctitle("%s (%s)", __progname
, socket_path
);
393 /* Pass control to the client. */
394 ev_base
= event_init();
395 exit(client_main(argc
, argv
, flags
));