2009-07-20 16:07:23 +00:00
|
|
|
/* $Id: tmux.c,v 1.147 2009-07-20 16:07:23 tcunha Exp $ */
|
2007-07-09 19:04:12 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
|
|
|
|
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
2009-03-27 15:57:10 +00:00
|
|
|
#include <sys/stat.h>
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-10-03 21:31:07 +00:00
|
|
|
#include <errno.h>
|
2007-10-20 09:57:08 +00:00
|
|
|
#include <pwd.h>
|
2007-07-09 19:04:12 +00:00
|
|
|
#include <signal.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <syslog.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2009-05-13 23:27:00 +00:00
|
|
|
#include "tmux.h"
|
|
|
|
|
2007-07-09 19:04:12 +00:00
|
|
|
#ifdef DEBUG
|
2008-11-27 18:55:47 +00:00
|
|
|
/* DragonFly uses an OpenBSD-like malloc() since 1.6 */
|
|
|
|
#if defined(__OpenBSD__) || defined(__DragonFly__)
|
2007-07-09 19:04:12 +00:00
|
|
|
const char *malloc_options = "AFGJPX";
|
|
|
|
#endif
|
2007-12-06 18:28:55 +00:00
|
|
|
#ifdef __FreeBSD__
|
|
|
|
const char *_malloc_options = "AJX";
|
|
|
|
#endif
|
|
|
|
#endif
|
2007-07-09 19:04:12 +00:00
|
|
|
|
|
|
|
volatile sig_atomic_t sigwinch;
|
|
|
|
volatile sig_atomic_t sigterm;
|
2009-01-18 12:09:42 +00:00
|
|
|
volatile sig_atomic_t sigcont;
|
2009-02-08 16:11:26 +00:00
|
|
|
volatile sig_atomic_t sigchld;
|
2009-05-16 10:02:51 +00:00
|
|
|
volatile sig_atomic_t sigusr1;
|
|
|
|
volatile sig_atomic_t sigusr2;
|
2008-06-03 21:42:37 +00:00
|
|
|
|
2008-06-02 18:08:17 +00:00
|
|
|
char *cfg_file;
|
2009-07-08 18:01:31 +00:00
|
|
|
struct options global_s_options; /* session options */
|
|
|
|
struct options global_w_options; /* window options */
|
2008-06-03 21:42:37 +00:00
|
|
|
|
2009-01-11 00:48:42 +00:00
|
|
|
int server_locked;
|
2009-07-20 16:07:23 +00:00
|
|
|
u_int password_failures;
|
2009-01-11 00:48:42 +00:00
|
|
|
char *server_password;
|
|
|
|
time_t server_activity;
|
|
|
|
|
2007-07-09 19:04:12 +00:00
|
|
|
int debug_level;
|
2008-06-16 17:35:40 +00:00
|
|
|
int be_quiet;
|
2009-01-09 23:57:42 +00:00
|
|
|
time_t start_time;
|
2009-03-27 15:57:10 +00:00
|
|
|
char *socket_path;
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2008-06-02 21:08:36 +00:00
|
|
|
__dead void usage(void);
|
2009-03-27 15:57:10 +00:00
|
|
|
char *makesockpath(const char *);
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2009-05-13 23:27:00 +00:00
|
|
|
#ifndef HAVE_PROGNAME
|
2008-06-18 20:11:25 +00:00
|
|
|
const char *__progname = "tmux";
|
2008-06-18 22:21:51 +00:00
|
|
|
#endif
|
2008-06-18 20:11:25 +00:00
|
|
|
|
2008-06-02 21:08:36 +00:00
|
|
|
__dead void
|
|
|
|
usage(void)
|
2007-09-26 13:43:15 +00:00
|
|
|
{
|
2009-06-25 15:44:44 +00:00
|
|
|
fprintf(stderr,
|
|
|
|
"usage: %s [-28dqUuv] [-f file] [-L socket-name] [-S socket-path]\n"
|
|
|
|
" [command [flags]]\n",
|
2008-06-02 21:08:36 +00:00
|
|
|
__progname);
|
|
|
|
exit(1);
|
2007-09-26 13:43:15 +00:00
|
|
|
}
|
2007-08-27 13:45:26 +00:00
|
|
|
|
2007-09-26 13:43:15 +00:00
|
|
|
void
|
|
|
|
logfile(const char *name)
|
2007-07-09 19:04:12 +00:00
|
|
|
{
|
2007-09-26 13:43:15 +00:00
|
|
|
char *path;
|
|
|
|
|
|
|
|
log_close();
|
|
|
|
if (debug_level > 0) {
|
|
|
|
xasprintf(
|
|
|
|
&path, "%s-%s-%ld.log", __progname, name, (long) getpid());
|
2008-08-08 17:35:42 +00:00
|
|
|
log_open_file(debug_level, path);
|
2007-09-26 13:43:15 +00:00
|
|
|
xfree(path);
|
|
|
|
}
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
sighandler(int sig)
|
|
|
|
{
|
2007-10-24 11:21:29 +00:00
|
|
|
int saved_errno;
|
|
|
|
|
|
|
|
saved_errno = errno;
|
2007-07-09 19:04:12 +00:00
|
|
|
switch (sig) {
|
|
|
|
case SIGWINCH:
|
|
|
|
sigwinch = 1;
|
|
|
|
break;
|
|
|
|
case SIGTERM:
|
|
|
|
sigterm = 1;
|
|
|
|
break;
|
|
|
|
case SIGCHLD:
|
2009-02-08 16:11:26 +00:00
|
|
|
sigchld = 1;
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2009-01-18 12:09:42 +00:00
|
|
|
case SIGCONT:
|
|
|
|
sigcont = 1;
|
|
|
|
break;
|
2009-05-16 10:02:51 +00:00
|
|
|
case SIGUSR1:
|
|
|
|
sigusr1 = 1;
|
|
|
|
break;
|
|
|
|
case SIGUSR2:
|
|
|
|
sigusr2 = 1;
|
|
|
|
break;
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
2007-10-24 11:21:29 +00:00
|
|
|
errno = saved_errno;
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
|
|
|
|
2007-09-26 13:43:15 +00:00
|
|
|
void
|
|
|
|
siginit(void)
|
2007-07-09 19:04:12 +00:00
|
|
|
{
|
|
|
|
struct sigaction act;
|
|
|
|
|
2007-09-20 09:43:33 +00:00
|
|
|
memset(&act, 0, sizeof act);
|
2007-08-28 09:36:33 +00:00
|
|
|
sigemptyset(&act.sa_mask);
|
|
|
|
act.sa_flags = SA_RESTART;
|
|
|
|
|
|
|
|
act.sa_handler = SIG_IGN;
|
|
|
|
if (sigaction(SIGPIPE, &act, NULL) != 0)
|
2007-09-26 13:43:15 +00:00
|
|
|
fatal("sigaction failed");
|
2007-08-28 09:36:33 +00:00
|
|
|
if (sigaction(SIGINT, &act, NULL) != 0)
|
2007-09-26 13:43:15 +00:00
|
|
|
fatal("sigaction failed");
|
2007-08-28 09:36:33 +00:00
|
|
|
if (sigaction(SIGTSTP, &act, NULL) != 0)
|
2007-09-26 13:43:15 +00:00
|
|
|
fatal("sigaction failed");
|
2007-08-28 09:36:33 +00:00
|
|
|
if (sigaction(SIGQUIT, &act, NULL) != 0)
|
2007-09-26 13:43:15 +00:00
|
|
|
fatal("sigaction failed");
|
2007-08-28 09:36:33 +00:00
|
|
|
|
|
|
|
act.sa_handler = sighandler;
|
|
|
|
if (sigaction(SIGWINCH, &act, NULL) != 0)
|
2007-09-26 13:43:15 +00:00
|
|
|
fatal("sigaction failed");
|
2007-08-28 09:36:33 +00:00
|
|
|
if (sigaction(SIGTERM, &act, NULL) != 0)
|
2007-09-26 13:43:15 +00:00
|
|
|
fatal("sigaction failed");
|
2007-08-28 09:36:33 +00:00
|
|
|
if (sigaction(SIGCHLD, &act, NULL) != 0)
|
2007-09-26 13:43:15 +00:00
|
|
|
fatal("sigaction failed");
|
2009-05-16 10:02:51 +00:00
|
|
|
if (sigaction(SIGUSR1, &act, NULL) != 0)
|
|
|
|
fatal("sigaction failed");
|
|
|
|
if (sigaction(SIGUSR2, &act, NULL) != 0)
|
|
|
|
fatal("sigaction failed");
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
|
|
|
|
2007-08-27 13:45:26 +00:00
|
|
|
void
|
2007-09-26 13:43:15 +00:00
|
|
|
sigreset(void)
|
2007-08-27 13:45:26 +00:00
|
|
|
{
|
2007-09-26 13:43:15 +00:00
|
|
|
struct sigaction act;
|
2007-12-06 09:46:23 +00:00
|
|
|
|
2007-09-26 13:43:15 +00:00
|
|
|
memset(&act, 0, sizeof act);
|
|
|
|
sigemptyset(&act.sa_mask);
|
2007-12-06 09:46:23 +00:00
|
|
|
|
2007-09-26 13:43:15 +00:00
|
|
|
act.sa_handler = SIG_DFL;
|
|
|
|
if (sigaction(SIGPIPE, &act, NULL) != 0)
|
|
|
|
fatal("sigaction failed");
|
|
|
|
if (sigaction(SIGUSR1, &act, NULL) != 0)
|
|
|
|
fatal("sigaction failed");
|
|
|
|
if (sigaction(SIGUSR2, &act, NULL) != 0)
|
|
|
|
fatal("sigaction failed");
|
|
|
|
if (sigaction(SIGINT, &act, NULL) != 0)
|
|
|
|
fatal("sigaction failed");
|
|
|
|
if (sigaction(SIGTSTP, &act, NULL) != 0)
|
|
|
|
fatal("sigaction failed");
|
|
|
|
if (sigaction(SIGQUIT, &act, NULL) != 0)
|
|
|
|
fatal("sigaction failed");
|
|
|
|
if (sigaction(SIGWINCH, &act, NULL) != 0)
|
|
|
|
fatal("sigaction failed");
|
|
|
|
if (sigaction(SIGTERM, &act, NULL) != 0)
|
|
|
|
fatal("sigaction failed");
|
|
|
|
if (sigaction(SIGCHLD, &act, NULL) != 0)
|
|
|
|
fatal("sigaction failed");
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
|
|
|
|
2009-03-27 15:57:10 +00:00
|
|
|
char *
|
|
|
|
makesockpath(const char *label)
|
|
|
|
{
|
|
|
|
char base[MAXPATHLEN], *path;
|
|
|
|
struct stat sb;
|
|
|
|
u_int uid;
|
|
|
|
|
|
|
|
uid = getuid();
|
|
|
|
xsnprintf(base, MAXPATHLEN, "%s/%s-%d", _PATH_TMP, __progname, uid);
|
|
|
|
|
|
|
|
if (mkdir(base, S_IRWXU) != 0 && errno != EEXIST)
|
|
|
|
return (NULL);
|
|
|
|
|
|
|
|
if (lstat(base, &sb) != 0)
|
|
|
|
return (NULL);
|
2009-04-01 20:15:48 +00:00
|
|
|
if (!S_ISDIR(sb.st_mode)) {
|
|
|
|
errno = ENOTDIR;
|
2009-03-27 15:57:10 +00:00
|
|
|
return (NULL);
|
|
|
|
}
|
2009-04-01 20:15:48 +00:00
|
|
|
if (sb.st_uid != uid || (sb.st_mode & (S_IRWXG|S_IRWXO)) != 0) {
|
2009-03-27 15:57:10 +00:00
|
|
|
errno = EACCES;
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
xasprintf(&path, "%s/%s", base, label);
|
|
|
|
return (path);
|
|
|
|
}
|
|
|
|
|
2007-07-09 19:04:12 +00:00
|
|
|
int
|
2007-09-26 13:43:15 +00:00
|
|
|
main(int argc, char **argv)
|
2007-07-09 19:04:12 +00:00
|
|
|
{
|
2007-10-03 21:31:07 +00:00
|
|
|
struct client_ctx cctx;
|
2009-01-11 00:48:42 +00:00
|
|
|
struct msg_command_data cmddata;
|
2007-10-03 21:31:07 +00:00
|
|
|
struct buffer *b;
|
2009-01-19 18:23:40 +00:00
|
|
|
struct cmd_list *cmdlist;
|
|
|
|
struct cmd *cmd;
|
2007-10-03 21:31:07 +00:00
|
|
|
struct pollfd pfd;
|
|
|
|
struct hdr hdr;
|
2007-10-20 09:57:08 +00:00
|
|
|
struct passwd *pw;
|
2009-05-19 16:03:18 +00:00
|
|
|
char *s, *path, *label, *cause, *home, *pass = NULL;
|
2009-04-01 18:21:42 +00:00
|
|
|
char cwd[MAXPATHLEN];
|
2009-01-23 16:19:56 +00:00
|
|
|
int retcode, opt, flags, unlock, start_server;
|
2007-08-27 13:45:26 +00:00
|
|
|
|
2009-01-11 00:48:42 +00:00
|
|
|
unlock = flags = 0;
|
2009-03-27 15:57:10 +00:00
|
|
|
label = path = NULL;
|
2009-06-25 16:56:08 +00:00
|
|
|
while ((opt = getopt(argc, argv, "28df:L:qS:uUv")) != -1) {
|
2007-09-26 13:43:15 +00:00
|
|
|
switch (opt) {
|
2008-09-25 20:08:57 +00:00
|
|
|
case '2':
|
|
|
|
flags |= IDENTIFY_256COLOURS;
|
2009-03-07 10:29:06 +00:00
|
|
|
flags &= ~IDENTIFY_88COLOURS;
|
|
|
|
break;
|
|
|
|
case '8':
|
|
|
|
flags |= IDENTIFY_88COLOURS;
|
|
|
|
flags &= ~IDENTIFY_256COLOURS;
|
2008-09-25 20:08:57 +00:00
|
|
|
break;
|
2008-06-02 18:08:17 +00:00
|
|
|
case 'f':
|
2009-06-25 15:42:35 +00:00
|
|
|
if (cfg_file)
|
|
|
|
xfree(cfg_file);
|
2008-06-02 18:08:17 +00:00
|
|
|
cfg_file = xstrdup(optarg);
|
2007-11-16 21:12:31 +00:00
|
|
|
break;
|
2009-03-27 15:57:10 +00:00
|
|
|
case 'L':
|
|
|
|
if (label != NULL)
|
|
|
|
xfree(label);
|
|
|
|
label = xstrdup(optarg);
|
|
|
|
break;
|
2007-09-26 19:38:42 +00:00
|
|
|
case 'S':
|
2009-03-27 15:57:10 +00:00
|
|
|
if (path != NULL)
|
|
|
|
xfree(path);
|
2007-09-26 13:43:15 +00:00
|
|
|
path = xstrdup(optarg);
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2008-06-16 17:35:40 +00:00
|
|
|
case 'q':
|
|
|
|
be_quiet = 1;
|
|
|
|
break;
|
2008-09-09 22:16:37 +00:00
|
|
|
case 'u':
|
|
|
|
flags |= IDENTIFY_UTF8;
|
|
|
|
break;
|
2009-01-11 00:48:42 +00:00
|
|
|
case 'U':
|
|
|
|
unlock = 1;
|
|
|
|
break;
|
2008-09-25 20:08:57 +00:00
|
|
|
case 'd':
|
|
|
|
flags |= IDENTIFY_HASDEFAULTS;
|
|
|
|
break;
|
2007-09-26 13:43:15 +00:00
|
|
|
case 'v':
|
|
|
|
debug_level++;
|
2007-07-09 19:04:12 +00:00
|
|
|
break;
|
2007-09-26 13:43:15 +00:00
|
|
|
default:
|
2008-06-02 21:08:36 +00:00
|
|
|
usage();
|
2007-09-26 13:43:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2008-08-08 17:35:42 +00:00
|
|
|
log_open_tty(debug_level);
|
2007-10-12 17:52:41 +00:00
|
|
|
siginit();
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2009-07-18 11:05:13 +00:00
|
|
|
if (!(flags & IDENTIFY_UTF8)) {
|
|
|
|
/*
|
|
|
|
* If the user has set whichever of LC_ALL, LC_CTYPE or LANG
|
|
|
|
* exist (in that order) to contain UTF-8, it is a safe
|
|
|
|
* assumption that either they are using a UTF-8 terminal, or
|
|
|
|
* if not they know that output from UTF-8-capable programs may
|
|
|
|
* be wrong.
|
|
|
|
*/
|
|
|
|
if ((s = getenv("LC_ALL")) == NULL) {
|
|
|
|
if ((s = getenv("LC_CTYPE")) == NULL)
|
|
|
|
s = getenv("LANG");
|
|
|
|
}
|
|
|
|
if (s != NULL && strcasestr(s, "UTF-8") != NULL)
|
|
|
|
flags |= IDENTIFY_UTF8;
|
|
|
|
}
|
|
|
|
|
2009-07-08 18:01:31 +00:00
|
|
|
options_init(&global_s_options, NULL);
|
|
|
|
options_set_number(&global_s_options, "bell-action", BELL_ANY);
|
|
|
|
options_set_number(&global_s_options, "buffer-limit", 9);
|
2009-07-08 18:12:57 +00:00
|
|
|
options_set_string(&global_s_options, "default-command", "%s", "");
|
2009-07-12 17:07:58 +00:00
|
|
|
options_set_string(&global_s_options, "default-terminal", "screen");
|
2009-07-08 18:01:31 +00:00
|
|
|
options_set_number(&global_s_options, "display-time", 750);
|
|
|
|
options_set_number(&global_s_options, "history-limit", 2000);
|
|
|
|
options_set_number(&global_s_options, "lock-after-time", 0);
|
|
|
|
options_set_number(&global_s_options, "message-attr", GRID_ATTR_REVERSE);
|
|
|
|
options_set_number(&global_s_options, "message-bg", 3);
|
|
|
|
options_set_number(&global_s_options, "message-fg", 0);
|
|
|
|
options_set_number(&global_s_options, "prefix", '\002');
|
|
|
|
options_set_number(&global_s_options, "repeat-time", 500);
|
|
|
|
options_set_number(&global_s_options, "set-remain-on-exit", 0);
|
|
|
|
options_set_number(&global_s_options, "set-titles", 0);
|
|
|
|
options_set_number(&global_s_options, "status", 1);
|
|
|
|
options_set_number(&global_s_options, "status-attr", GRID_ATTR_REVERSE);
|
|
|
|
options_set_number(&global_s_options, "status-bg", 2);
|
|
|
|
options_set_number(&global_s_options, "status-fg", 0);
|
|
|
|
options_set_number(&global_s_options, "status-interval", 15);
|
|
|
|
options_set_number(&global_s_options, "status-keys", MODEKEY_EMACS);
|
2009-07-20 16:01:07 +00:00
|
|
|
options_set_number(&global_s_options, "status-justify", 0);
|
2009-07-08 18:01:31 +00:00
|
|
|
options_set_number(&global_s_options, "status-left-length", 10);
|
|
|
|
options_set_number(&global_s_options, "status-right-length", 40);
|
|
|
|
options_set_string(&global_s_options, "status-left", "[#S]");
|
|
|
|
options_set_string(
|
|
|
|
&global_s_options, "status-right", "\"#24T\" %%H:%%M %%d-%%b-%%y");
|
2009-07-18 11:05:13 +00:00
|
|
|
if (flags & IDENTIFY_UTF8)
|
|
|
|
options_set_number(&global_s_options, "status-utf8", 1);
|
|
|
|
else
|
|
|
|
options_set_number(&global_s_options, "status-utf8", 0);
|
2009-07-19 14:35:56 +00:00
|
|
|
options_set_number(&global_s_options, "visual-activity", 0);
|
|
|
|
options_set_number(&global_s_options, "visual-bell", 0);
|
|
|
|
options_set_number(&global_s_options, "visual-content", 0);
|
2009-07-08 18:01:31 +00:00
|
|
|
|
|
|
|
options_init(&global_w_options, NULL);
|
|
|
|
options_set_number(&global_w_options, "aggressive-resize", 0);
|
|
|
|
options_set_number(&global_w_options, "automatic-rename", 1);
|
|
|
|
options_set_number(&global_w_options, "clock-mode-colour", 4);
|
|
|
|
options_set_number(&global_w_options, "clock-mode-style", 1);
|
|
|
|
options_set_number(&global_w_options, "force-height", 0);
|
|
|
|
options_set_number(&global_w_options, "force-width", 0);
|
|
|
|
options_set_number(&global_w_options, "mode-attr", GRID_ATTR_REVERSE);
|
|
|
|
options_set_number(&global_w_options, "main-pane-width", 81);
|
|
|
|
options_set_number(&global_w_options, "main-pane-height", 24);
|
|
|
|
options_set_number(&global_w_options, "mode-bg", 3);
|
|
|
|
options_set_number(&global_w_options, "mode-fg", 0);
|
|
|
|
options_set_number(&global_w_options, "mode-keys", MODEKEY_EMACS);
|
|
|
|
options_set_number(&global_w_options, "monitor-activity", 0);
|
|
|
|
options_set_string(&global_w_options, "monitor-content", "%s", "");
|
2009-07-18 11:05:13 +00:00
|
|
|
if (flags & IDENTIFY_UTF8)
|
|
|
|
options_set_number(&global_w_options, "utf8", 1);
|
|
|
|
else
|
|
|
|
options_set_number(&global_w_options, "utf8", 0);
|
2009-07-08 18:01:31 +00:00
|
|
|
options_set_number(&global_w_options, "window-status-attr", 0);
|
|
|
|
options_set_number(&global_w_options, "window-status-bg", 8);
|
|
|
|
options_set_number(&global_w_options, "window-status-fg", 8);
|
2009-07-20 15:57:05 +00:00
|
|
|
options_set_number(&global_w_options, "window-status-current-attr", 0);
|
|
|
|
options_set_number(&global_w_options, "window-status-current-bg", 8);
|
|
|
|
options_set_number(&global_w_options, "window-status-current-fg", 8);
|
2009-07-08 18:01:31 +00:00
|
|
|
options_set_number(&global_w_options, "xterm-keys", 0);
|
|
|
|
options_set_number(&global_w_options, "remain-on-exit", 0);
|
2007-11-23 12:48:20 +00:00
|
|
|
|
2008-06-02 18:08:17 +00:00
|
|
|
if (cfg_file == NULL) {
|
|
|
|
home = getenv("HOME");
|
|
|
|
if (home == NULL || *home == '\0') {
|
|
|
|
pw = getpwuid(getuid());
|
|
|
|
if (pw != NULL)
|
|
|
|
home = pw->pw_dir;
|
|
|
|
}
|
|
|
|
xasprintf(&cfg_file, "%s/%s", home, DEFAULT_CFG);
|
|
|
|
if (access(cfg_file, R_OK) != 0) {
|
|
|
|
xfree(cfg_file);
|
|
|
|
cfg_file = NULL;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (access(cfg_file, R_OK) != 0) {
|
|
|
|
log_warn("%s", cfg_file);
|
|
|
|
exit(1);
|
2008-06-18 22:21:51 +00:00
|
|
|
}
|
2008-06-02 18:08:17 +00:00
|
|
|
}
|
|
|
|
|
2009-03-27 15:57:10 +00:00
|
|
|
if (label == NULL)
|
|
|
|
label = xstrdup("default");
|
|
|
|
if (path == NULL && (path = makesockpath(label)) == NULL) {
|
|
|
|
log_warn("can't create socket");
|
|
|
|
exit(1);
|
2007-11-12 15:12:08 +00:00
|
|
|
}
|
2009-03-27 15:57:10 +00:00
|
|
|
xfree(label);
|
2007-11-12 15:12:08 +00:00
|
|
|
|
2009-01-10 19:37:35 +00:00
|
|
|
if (getcwd(cwd, sizeof cwd) == NULL) {
|
2009-06-25 16:11:12 +00:00
|
|
|
pw = getpwuid(getuid());
|
|
|
|
if (pw->pw_dir != NULL && *pw->pw_dir != '\0')
|
|
|
|
strlcpy(cwd, pw->pw_dir, sizeof cwd);
|
|
|
|
else
|
|
|
|
strlcpy(cwd, "/", sizeof cwd);
|
2009-01-10 19:37:35 +00:00
|
|
|
}
|
2009-07-08 18:01:31 +00:00
|
|
|
options_set_string(&global_s_options, "default-path", "%s", cwd);
|
2009-01-10 19:37:35 +00:00
|
|
|
|
2009-01-11 00:48:42 +00:00
|
|
|
if (unlock) {
|
|
|
|
if (argc != 0) {
|
|
|
|
log_warnx("can't specify a command when unlocking");
|
|
|
|
exit(1);
|
|
|
|
}
|
2009-01-19 18:23:40 +00:00
|
|
|
cmdlist = NULL;
|
2009-01-11 00:48:42 +00:00
|
|
|
if ((pass = getpass("Password: ")) == NULL)
|
|
|
|
exit(1);
|
|
|
|
start_server = 0;
|
|
|
|
} else {
|
|
|
|
if (argc == 0) {
|
|
|
|
cmd = xmalloc(sizeof *cmd);
|
|
|
|
cmd->entry = &cmd_new_session_entry;
|
|
|
|
cmd->entry->init(cmd, 0);
|
2009-01-19 18:23:40 +00:00
|
|
|
|
|
|
|
cmdlist = xmalloc(sizeof *cmdlist);
|
|
|
|
TAILQ_INIT(cmdlist);
|
|
|
|
TAILQ_INSERT_HEAD(cmdlist, cmd, qentry);
|
|
|
|
} else {
|
|
|
|
cmdlist = cmd_list_parse(argc, argv, &cause);
|
|
|
|
if (cmdlist == NULL) {
|
|
|
|
log_warnx("%s", cause);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
start_server = 0;
|
|
|
|
TAILQ_FOREACH(cmd, cmdlist, qentry) {
|
|
|
|
if (cmd->entry->flags & CMD_STARTSERVER) {
|
|
|
|
start_server = 1;
|
|
|
|
break;
|
|
|
|
}
|
2009-01-11 00:48:42 +00:00
|
|
|
}
|
2007-10-03 21:31:07 +00:00
|
|
|
}
|
2009-05-04 17:58:27 +00:00
|
|
|
|
2009-01-11 00:48:42 +00:00
|
|
|
memset(&cctx, 0, sizeof cctx);
|
2009-03-27 15:57:10 +00:00
|
|
|
if (client_init(path, &cctx, start_server, flags) != 0)
|
2007-10-03 21:31:07 +00:00
|
|
|
exit(1);
|
2009-03-27 15:57:10 +00:00
|
|
|
xfree(path);
|
2007-10-03 21:31:07 +00:00
|
|
|
|
2009-01-11 00:48:42 +00:00
|
|
|
b = buffer_create(BUFSIZ);
|
|
|
|
if (unlock) {
|
|
|
|
cmd_send_string(b, pass);
|
2009-06-25 15:56:25 +00:00
|
|
|
memset(pass, 0, strlen(pass));
|
2009-01-11 00:48:42 +00:00
|
|
|
client_write_server(
|
|
|
|
&cctx, MSG_UNLOCK, BUFFER_OUT(b), BUFFER_USED(b));
|
|
|
|
} else {
|
2009-01-19 18:23:40 +00:00
|
|
|
cmd_list_send(cmdlist, b);
|
|
|
|
cmd_list_free(cmdlist);
|
2009-01-11 00:48:42 +00:00
|
|
|
client_fill_session(&cmddata);
|
|
|
|
client_write_server2(&cctx, MSG_COMMAND,
|
|
|
|
&cmddata, sizeof cmddata, BUFFER_OUT(b), BUFFER_USED(b));
|
|
|
|
}
|
2007-10-03 21:31:07 +00:00
|
|
|
buffer_destroy(b);
|
2007-10-24 11:42:03 +00:00
|
|
|
|
2009-01-23 16:19:56 +00:00
|
|
|
retcode = 0;
|
2007-10-03 21:31:07 +00:00
|
|
|
for (;;) {
|
|
|
|
pfd.fd = cctx.srv_fd;
|
|
|
|
pfd.events = POLLIN;
|
|
|
|
if (BUFFER_USED(cctx.srv_out) > 0)
|
|
|
|
pfd.events |= POLLOUT;
|
2007-12-06 09:46:23 +00:00
|
|
|
|
2007-10-03 21:31:07 +00:00
|
|
|
if (poll(&pfd, 1, INFTIM) == -1) {
|
|
|
|
if (errno == EAGAIN || errno == EINTR)
|
|
|
|
continue;
|
|
|
|
fatal("poll failed");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (buffer_poll(&pfd, cctx.srv_in, cctx.srv_out) != 0)
|
2009-02-08 16:26:43 +00:00
|
|
|
goto out;
|
2007-10-03 21:31:07 +00:00
|
|
|
|
|
|
|
restart:
|
|
|
|
if (BUFFER_USED(cctx.srv_in) < sizeof hdr)
|
|
|
|
continue;
|
|
|
|
memcpy(&hdr, BUFFER_OUT(cctx.srv_in), sizeof hdr);
|
|
|
|
if (BUFFER_USED(cctx.srv_in) < (sizeof hdr) + hdr.size)
|
|
|
|
continue;
|
|
|
|
buffer_remove(cctx.srv_in, sizeof hdr);
|
|
|
|
|
|
|
|
switch (hdr.type) {
|
|
|
|
case MSG_EXIT:
|
2009-01-21 22:47:31 +00:00
|
|
|
case MSG_SHUTDOWN:
|
2007-10-04 11:52:03 +00:00
|
|
|
goto out;
|
2009-01-19 18:23:40 +00:00
|
|
|
case MSG_ERROR:
|
2009-01-23 16:19:56 +00:00
|
|
|
retcode = 1;
|
|
|
|
/* FALLTHROUGH */
|
2007-10-03 21:31:07 +00:00
|
|
|
case MSG_PRINT:
|
|
|
|
if (hdr.size > INT_MAX - 1)
|
|
|
|
fatalx("bad MSG_PRINT size");
|
2007-10-03 22:32:24 +00:00
|
|
|
log_info("%.*s",
|
|
|
|
(int) hdr.size, BUFFER_OUT(cctx.srv_in));
|
2009-01-10 14:43:43 +00:00
|
|
|
if (hdr.size != 0)
|
|
|
|
buffer_remove(cctx.srv_in, hdr.size);
|
2007-10-03 21:31:07 +00:00
|
|
|
goto restart;
|
|
|
|
case MSG_READY:
|
2009-01-23 16:19:56 +00:00
|
|
|
retcode = client_main(&cctx);
|
2007-10-04 11:52:03 +00:00
|
|
|
goto out;
|
2007-10-03 21:31:07 +00:00
|
|
|
default:
|
|
|
|
fatalx("unexpected command");
|
2007-10-02 17:35:00 +00:00
|
|
|
}
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
2007-10-04 11:52:03 +00:00
|
|
|
|
|
|
|
out:
|
2009-07-08 18:01:31 +00:00
|
|
|
options_free(&global_s_options);
|
|
|
|
options_free(&global_w_options);
|
2007-10-24 11:42:03 +00:00
|
|
|
|
|
|
|
close(cctx.srv_fd);
|
|
|
|
buffer_destroy(cctx.srv_in);
|
|
|
|
buffer_destroy(cctx.srv_out);
|
|
|
|
|
2009-01-23 16:19:56 +00:00
|
|
|
return (retcode);
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|