2007-09-26 19:38:42 +00:00
|
|
|
/* $Id: tmux.c,v 1.13 2007-09-26 19:38:42 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>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
|
|
|
|
#include <paths.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <syslog.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
const char *malloc_options = "AFGJPX";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
volatile sig_atomic_t sigwinch;
|
|
|
|
volatile sig_atomic_t sigterm;
|
|
|
|
int debug_level;
|
|
|
|
|
2007-09-26 13:43:15 +00:00
|
|
|
void sighandler(int);
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-09-26 13:43:15 +00:00
|
|
|
struct op {
|
2007-09-26 19:09:30 +00:00
|
|
|
const char *cmd;
|
|
|
|
const char *alias;
|
2007-09-26 13:43:15 +00:00
|
|
|
int (*fn)(char *, int, char **);
|
|
|
|
};
|
|
|
|
struct op op_table[] = {
|
2007-09-26 19:09:30 +00:00
|
|
|
{ "attach", NULL, op_attach },
|
|
|
|
{ "list-sessions", "ls", op_list },
|
|
|
|
{ "new-session", "new", op_new },
|
2007-09-26 13:43:15 +00:00
|
|
|
};
|
|
|
|
#define NOP (sizeof op_table / sizeof op_table[0])
|
2007-08-27 13:45:26 +00:00
|
|
|
|
2007-09-26 13:43:15 +00:00
|
|
|
int
|
|
|
|
usage(const char *s)
|
|
|
|
{
|
|
|
|
if (s == NULL)
|
2007-09-26 14:08:16 +00:00
|
|
|
s = "command [flags]";
|
2007-09-26 19:38:42 +00:00
|
|
|
fprintf(stderr, "usage: %s [-v] [-S path] %s\n", __progname, s);
|
2007-09-26 13:43:15 +00:00
|
|
|
return (1);
|
|
|
|
}
|
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
|
|
|
FILE *f;
|
|
|
|
char *path;
|
|
|
|
|
|
|
|
log_close();
|
|
|
|
if (debug_level > 0) {
|
|
|
|
xasprintf(
|
|
|
|
&path, "%s-%s-%ld.log", __progname, name, (long) getpid());
|
|
|
|
f = fopen(path, "w");
|
|
|
|
log_open(f, LOG_DAEMON, debug_level);
|
|
|
|
xfree(path);
|
|
|
|
}
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
sighandler(int sig)
|
|
|
|
{
|
|
|
|
switch (sig) {
|
|
|
|
case SIGWINCH:
|
|
|
|
sigwinch = 1;
|
|
|
|
break;
|
|
|
|
case SIGTERM:
|
|
|
|
sigterm = 1;
|
|
|
|
break;
|
|
|
|
case SIGCHLD:
|
|
|
|
waitpid(WAIT_ANY, NULL, WNOHANG);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
memset(&act, 0, sizeof act);
|
|
|
|
sigemptyset(&act.sa_mask);
|
|
|
|
|
|
|
|
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-09-26 13:43:15 +00:00
|
|
|
struct op *op;
|
|
|
|
char *path;
|
|
|
|
int opt;
|
|
|
|
u_int i;
|
2007-08-27 13:45:26 +00:00
|
|
|
|
2007-09-26 13:43:15 +00:00
|
|
|
path = NULL;
|
2007-09-26 19:38:42 +00:00
|
|
|
while ((opt = getopt(argc, argv, "S:v?")) != EOF) {
|
2007-09-26 13:43:15 +00:00
|
|
|
switch (opt) {
|
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;
|
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
|
|
|
case '?':
|
|
|
|
default:
|
|
|
|
exit(usage(NULL));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
if (argc == 0)
|
|
|
|
exit(usage(NULL));
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-09-26 13:43:15 +00:00
|
|
|
log_open(stderr, LOG_USER, debug_level);
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-09-26 13:43:15 +00:00
|
|
|
for (i = 0; i < NOP; i++) {
|
|
|
|
op = op_table + i;
|
2007-09-26 19:09:30 +00:00
|
|
|
if (strncmp(argv[0], op->cmd, strlen(op->cmd)) == 0 ||
|
|
|
|
(op->alias != NULL && strcmp(argv[0], op->alias) == 0))
|
2007-09-26 13:43:15 +00:00
|
|
|
exit(op->fn(path, argc, argv));
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
|
|
|
|
2007-09-26 13:43:15 +00:00
|
|
|
exit(usage(NULL));
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|