2009-02-08 16:11:26 +00:00
|
|
|
/* $Id: tmux.c,v 1.105 2009-02-08 16:11:26 nicm 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>
|
|
|
|
|
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>
|
|
|
|
|
2008-06-18 19:34:50 +00:00
|
|
|
#ifndef NO_PATHS_H
|
|
|
|
#include <paths.h>
|
|
|
|
#endif
|
|
|
|
|
2007-07-09 19:04:12 +00:00
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
#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;
|
2008-06-03 21:42:37 +00:00
|
|
|
|
2008-06-02 18:08:17 +00:00
|
|
|
char *cfg_file;
|
2008-06-03 21:42:37 +00:00
|
|
|
struct options global_options;
|
2008-12-08 16:19:51 +00:00
|
|
|
struct options global_window_options;
|
2008-06-03 21:42:37 +00:00
|
|
|
|
2009-01-11 00:48:42 +00:00
|
|
|
int server_locked;
|
|
|
|
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-01-10 01:30:38 +00:00
|
|
|
const char *socket_path;
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2008-06-02 21:08:36 +00:00
|
|
|
__dead void usage(void);
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2008-06-18 20:11:25 +00:00
|
|
|
#ifdef NO_PROGNAME
|
|
|
|
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
|
|
|
{
|
2008-09-26 06:45:28 +00:00
|
|
|
fprintf(stderr, "usage: "
|
|
|
|
"%s [-2dquVv] [-f file] [-S socket-path] [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;
|
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(SIGUSR1, &act, NULL) != 0)
|
2007-09-26 13:43:15 +00:00
|
|
|
fatal("sigaction failed");
|
2007-08-28 09:36:33 +00:00
|
|
|
if (sigaction(SIGUSR2, &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");
|
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
|
|
|
}
|
|
|
|
|
|
|
|
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-03 12:34:16 +00:00
|
|
|
const char *shell;
|
2007-10-20 09:57:08 +00:00
|
|
|
struct passwd *pw;
|
2009-01-11 00:48:42 +00:00
|
|
|
char *path, *cause, *home, *pass = NULL;
|
2009-01-10 19:37:35 +00:00
|
|
|
char rpath[MAXPATHLEN], 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;
|
2008-06-23 16:58:49 +00:00
|
|
|
path = NULL;
|
2009-01-11 00:48:42 +00:00
|
|
|
while ((opt = getopt(argc, argv, "2df:qS:uUVv")) != -1) {
|
2007-09-26 13:43:15 +00:00
|
|
|
switch (opt) {
|
2008-09-25 20:08:57 +00:00
|
|
|
case '2':
|
|
|
|
flags |= IDENTIFY_256COLOURS;
|
|
|
|
break;
|
2008-06-02 18:08:17 +00:00
|
|
|
case 'f':
|
|
|
|
cfg_file = xstrdup(optarg);
|
2007-11-16 21:12:31 +00:00
|
|
|
break;
|
2007-09-26 19:38:42 +00:00
|
|
|
case 'S':
|
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-11-09 11:03:35 +00:00
|
|
|
case 'V':
|
|
|
|
printf("%s " BUILD "\n", __progname);
|
|
|
|
exit(0);
|
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
|
|
|
|
2008-06-03 21:42:37 +00:00
|
|
|
options_init(&global_options, NULL);
|
|
|
|
options_set_number(&global_options, "bell-action", BELL_ANY);
|
2009-01-11 00:48:42 +00:00
|
|
|
options_set_number(&global_options, "buffer-limit", 9);
|
2008-06-19 23:20:45 +00:00
|
|
|
options_set_number(&global_options, "display-time", 750);
|
2009-01-11 00:48:42 +00:00
|
|
|
options_set_number(&global_options, "history-limit", 2000);
|
|
|
|
options_set_number(&global_options, "message-bg", 3);
|
|
|
|
options_set_number(&global_options, "message-fg", 0);
|
Allow status, mode and message attributes to be changed by three new options: status-attr, mode-attr, message-attr. A comma-separataed list is accepted containing: bright, dim, underscore, blink, reverse, hidden, italics, for example: set -g status-attr bright,blink
From Josh Elsasser, thanks!
2009-01-27 20:22:33 +00:00
|
|
|
options_set_number(&global_options, "message-attr", GRID_ATTR_REVERSE);
|
2008-06-23 07:41:21 +00:00
|
|
|
options_set_number(&global_options, "prefix", META);
|
2009-01-14 22:13:30 +00:00
|
|
|
options_set_number(&global_options, "repeat-time", 500);
|
2009-01-11 00:48:42 +00:00
|
|
|
options_set_number(&global_options, "set-titles", 1);
|
2009-01-14 18:41:55 +00:00
|
|
|
options_set_number(&global_options, "lock-after-time", 0);
|
2009-01-11 00:48:42 +00:00
|
|
|
options_set_number(&global_options, "status", 1);
|
|
|
|
options_set_number(&global_options, "status-bg", 2);
|
|
|
|
options_set_number(&global_options, "status-fg", 0);
|
Allow status, mode and message attributes to be changed by three new options: status-attr, mode-attr, message-attr. A comma-separataed list is accepted containing: bright, dim, underscore, blink, reverse, hidden, italics, for example: set -g status-attr bright,blink
From Josh Elsasser, thanks!
2009-01-27 20:22:33 +00:00
|
|
|
options_set_number(&global_options, "status-attr", GRID_ATTR_REVERSE);
|
2009-01-11 00:48:42 +00:00
|
|
|
options_set_number(&global_options, "status-interval", 15);
|
|
|
|
options_set_number(&global_options, "status-left-length", 10);
|
|
|
|
options_set_number(&global_options, "status-right-length", 40);
|
2009-01-15 23:42:21 +00:00
|
|
|
options_set_string(&global_options, "status-left", "[#S]");
|
2008-06-04 05:40:35 +00:00
|
|
|
options_set_string(
|
2008-12-05 20:04:06 +00:00
|
|
|
&global_options, "status-right", "\"#24T\" %%H:%%M %%d-%%b-%%y");
|
2008-12-08 16:19:51 +00:00
|
|
|
options_init(&global_window_options, NULL);
|
|
|
|
options_set_number(&global_window_options, "aggressive-resize", 0);
|
2009-01-10 19:35:40 +00:00
|
|
|
options_set_number(&global_window_options, "clock-mode-colour", 4);
|
|
|
|
options_set_number(&global_window_options, "clock-mode-style", 1);
|
2009-01-11 00:48:42 +00:00
|
|
|
options_set_number(&global_window_options, "force-height", 0);
|
|
|
|
options_set_number(&global_window_options, "force-width", 0);
|
2009-01-20 19:35:03 +00:00
|
|
|
options_set_number(&global_window_options, "automatic-rename", 1);
|
2009-01-11 00:48:42 +00:00
|
|
|
options_set_number(&global_window_options, "mode-bg", 3);
|
|
|
|
options_set_number(&global_window_options, "mode-fg", 0);
|
2009-01-30 00:24:49 +00:00
|
|
|
options_set_number(
|
|
|
|
&global_window_options, "mode-attr", GRID_ATTR_REVERSE);
|
2009-01-11 00:48:42 +00:00
|
|
|
options_set_number(&global_window_options, "mode-keys", MODEKEY_EMACS);
|
|
|
|
options_set_number(&global_window_options, "monitor-activity", 0);
|
|
|
|
options_set_number(&global_window_options, "utf8", 0);
|
|
|
|
options_set_number(&global_window_options, "xterm-keys", 0);
|
|
|
|
options_set_number(&global_window_options, "remain-on-exit", 0);
|
2009-01-30 00:24:49 +00:00
|
|
|
options_set_number(&global_window_options, "window-status-bg", 8);
|
|
|
|
options_set_number(&global_window_options, "window-status-fg", 8);
|
|
|
|
options_set_number(&global_window_options, "window-status-attr", 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;
|
|
|
|
endpwent();
|
|
|
|
}
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2007-11-12 15:12:08 +00:00
|
|
|
if (path == NULL) {
|
|
|
|
xasprintf(&path,
|
|
|
|
"%s/%s-%lu", _PATH_TMP, __progname, (u_long) getuid());
|
|
|
|
}
|
|
|
|
if (realpath(path, rpath) == NULL) {
|
2007-11-20 12:59:27 +00:00
|
|
|
if (errno != ENOENT) {
|
|
|
|
log_warn("%s", path);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Linux appears to fill in the buffer fine but then returns
|
|
|
|
* ENOENT if the file doesn't exist. But since it returns an
|
|
|
|
* error, we can't rely on the buffer. Grr.
|
|
|
|
*/
|
|
|
|
if (strlcpy(rpath, path, sizeof rpath) >= sizeof rpath) {
|
|
|
|
log_warnx("%s: %s", path, strerror(ENAMETOOLONG));
|
|
|
|
exit(1);
|
|
|
|
}
|
2007-11-12 15:12:08 +00:00
|
|
|
}
|
|
|
|
xfree(path);
|
|
|
|
|
2007-10-03 12:34:16 +00:00
|
|
|
shell = getenv("SHELL");
|
2007-10-20 09:57:08 +00:00
|
|
|
if (shell == NULL || *shell == '\0') {
|
|
|
|
pw = getpwuid(getuid());
|
|
|
|
if (pw != NULL)
|
|
|
|
shell = pw->pw_shell;
|
|
|
|
endpwent();
|
|
|
|
if (shell == NULL || *shell == '\0')
|
|
|
|
shell = _PATH_BSHELL;
|
|
|
|
}
|
2008-06-03 21:42:37 +00:00
|
|
|
options_set_string(
|
|
|
|
&global_options, "default-command", "exec %s", shell);
|
2009-01-10 19:35:40 +00:00
|
|
|
|
2007-10-03 12:34:16 +00:00
|
|
|
|
2009-01-10 19:37:35 +00:00
|
|
|
if (getcwd(cwd, sizeof cwd) == NULL) {
|
|
|
|
log_warn("getcwd");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
options_set_string(&global_options, "default-path", "%s", cwd);
|
|
|
|
|
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-01-11 00:48:42 +00:00
|
|
|
|
|
|
|
memset(&cctx, 0, sizeof cctx);
|
|
|
|
if (client_init(rpath, &cctx, start_server, flags) != 0)
|
2007-10-03 21:31:07 +00:00
|
|
|
exit(1);
|
|
|
|
|
2009-01-11 00:48:42 +00:00
|
|
|
b = buffer_create(BUFSIZ);
|
|
|
|
if (unlock) {
|
|
|
|
cmd_send_string(b, pass);
|
|
|
|
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)
|
|
|
|
fatalx("lost server");
|
|
|
|
|
|
|
|
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:
|
2008-06-03 21:42:37 +00:00
|
|
|
options_free(&global_options);
|
2008-12-08 16:19:51 +00:00
|
|
|
options_free(&global_window_options);
|
2007-10-24 11:42:03 +00:00
|
|
|
|
|
|
|
close(cctx.srv_fd);
|
|
|
|
buffer_destroy(cctx.srv_in);
|
|
|
|
buffer_destroy(cctx.srv_out);
|
|
|
|
|
2007-10-04 11:52:03 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
xmalloc_report(getpid(), "client");
|
|
|
|
#endif
|
2009-01-23 16:19:56 +00:00
|
|
|
return (retcode);
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|