2009-11-02 21:39:34 +00:00
|
|
|
/* $Id: server.c,v 1.215 2009-11-02 21:39:34 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>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/un.h>
|
2009-02-08 16:11:26 +00:00
|
|
|
#include <sys/wait.h>
|
2007-07-09 19:04:12 +00:00
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <syslog.h>
|
|
|
|
#include <termios.h>
|
2008-06-06 17:20:30 +00:00
|
|
|
#include <time.h>
|
2007-07-09 19:04:12 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Main server functions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Client list. */
|
|
|
|
struct clients clients;
|
2009-09-07 23:59:19 +00:00
|
|
|
struct clients dead_clients;
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2009-10-11 23:25:44 +00:00
|
|
|
/* Mapping of a pollfd to an fd independent of its position in the array. */
|
|
|
|
struct poll_item {
|
2009-10-23 17:49:47 +00:00
|
|
|
int fd;
|
|
|
|
int events;
|
|
|
|
|
|
|
|
void (*fn)(int, int, void *);
|
|
|
|
void *data;
|
2009-10-11 23:25:44 +00:00
|
|
|
|
|
|
|
RB_ENTRY(poll_item) entry;
|
|
|
|
};
|
|
|
|
RB_HEAD(poll_items, poll_item) poll_items;
|
|
|
|
|
|
|
|
int server_poll_cmp(struct poll_item *, struct poll_item *);
|
2009-10-23 17:49:47 +00:00
|
|
|
struct poll_item*server_poll_lookup(int);
|
2009-10-11 23:25:44 +00:00
|
|
|
struct pollfd *server_poll_flatten(int *);
|
2009-10-23 17:49:47 +00:00
|
|
|
void server_poll_dispatch(struct pollfd *, int);
|
2009-10-11 23:25:44 +00:00
|
|
|
void server_poll_reset(void);
|
|
|
|
RB_PROTOTYPE(poll_items, poll_item, entry, server_poll_cmp);
|
|
|
|
RB_GENERATE(poll_items, poll_item, entry, server_poll_cmp);
|
|
|
|
|
2009-05-16 10:02:51 +00:00
|
|
|
int server_create_socket(void);
|
2009-10-23 17:49:47 +00:00
|
|
|
void server_callback(int, int, void *);
|
2009-03-27 15:57:10 +00:00
|
|
|
int server_main(int);
|
2009-01-21 22:47:31 +00:00
|
|
|
void server_shutdown(void);
|
2009-09-23 15:10:37 +00:00
|
|
|
int server_should_shutdown(void);
|
2009-02-08 16:11:26 +00:00
|
|
|
void server_child_signal(void);
|
2009-09-07 23:59:19 +00:00
|
|
|
void server_clean_dead(void);
|
2009-10-23 17:49:47 +00:00
|
|
|
void server_second_timers(void);
|
2009-10-11 23:30:28 +00:00
|
|
|
void server_lock_server(void);
|
|
|
|
void server_lock_sessions(void);
|
2009-03-27 15:57:10 +00:00
|
|
|
int server_update_socket(void);
|
2007-09-26 18:09:23 +00:00
|
|
|
|
2009-10-11 23:25:44 +00:00
|
|
|
int
|
|
|
|
server_poll_cmp(struct poll_item *pitem1, struct poll_item *pitem2)
|
|
|
|
{
|
2009-10-23 17:49:47 +00:00
|
|
|
return (pitem1->fd - pitem2->fd);
|
2009-10-11 23:25:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-10-23 17:49:47 +00:00
|
|
|
server_poll_add(int fd, int events, void (*fn)(int, int, void *), void *data)
|
2009-10-11 23:25:44 +00:00
|
|
|
{
|
|
|
|
struct poll_item *pitem;
|
|
|
|
|
|
|
|
pitem = xmalloc(sizeof *pitem);
|
2009-10-23 17:49:47 +00:00
|
|
|
pitem->fd = fd;
|
|
|
|
pitem->events = events;
|
|
|
|
|
|
|
|
pitem->fn = fn;
|
|
|
|
pitem->data = data;
|
|
|
|
|
2009-10-11 23:25:44 +00:00
|
|
|
RB_INSERT(poll_items, &poll_items, pitem);
|
|
|
|
}
|
|
|
|
|
2009-10-23 17:49:47 +00:00
|
|
|
struct poll_item *
|
|
|
|
server_poll_lookup(int fd)
|
|
|
|
{
|
|
|
|
struct poll_item pitem;
|
|
|
|
|
|
|
|
pitem.fd = fd;
|
|
|
|
return (RB_FIND(poll_items, &poll_items, &pitem));
|
|
|
|
}
|
|
|
|
|
2009-10-11 23:25:44 +00:00
|
|
|
struct pollfd *
|
|
|
|
server_poll_flatten(int *nfds)
|
|
|
|
{
|
|
|
|
struct poll_item *pitem;
|
|
|
|
struct pollfd *pfds;
|
|
|
|
|
|
|
|
pfds = NULL;
|
|
|
|
*nfds = 0;
|
|
|
|
RB_FOREACH(pitem, poll_items, &poll_items) {
|
|
|
|
pfds = xrealloc(pfds, (*nfds) + 1, sizeof *pfds);
|
2009-10-23 17:49:47 +00:00
|
|
|
pfds[*nfds].fd = pitem->fd;
|
|
|
|
pfds[*nfds].events = pitem->events;
|
2009-10-11 23:25:44 +00:00
|
|
|
(*nfds)++;
|
|
|
|
}
|
|
|
|
return (pfds);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-10-23 17:49:47 +00:00
|
|
|
server_poll_dispatch(struct pollfd *pfds, int nfds)
|
2009-10-11 23:25:44 +00:00
|
|
|
{
|
|
|
|
struct poll_item *pitem;
|
2009-10-23 17:49:47 +00:00
|
|
|
struct pollfd *pfd;
|
2009-10-11 23:25:44 +00:00
|
|
|
|
2009-10-23 17:49:47 +00:00
|
|
|
while (nfds > 0) {
|
|
|
|
pfd = &pfds[--nfds];
|
|
|
|
if (pfd->revents != 0) {
|
|
|
|
pitem = server_poll_lookup(pfd->fd);
|
|
|
|
pitem->fn(pitem->fd, pfd->revents, pitem->data);
|
|
|
|
}
|
2009-10-11 23:25:44 +00:00
|
|
|
}
|
|
|
|
xfree(pfds);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
server_poll_reset(void)
|
|
|
|
{
|
|
|
|
struct poll_item *pitem;
|
|
|
|
|
|
|
|
while (!RB_EMPTY(&poll_items)) {
|
|
|
|
pitem = RB_ROOT(&poll_items);
|
|
|
|
RB_REMOVE(poll_items, &poll_items, pitem);
|
|
|
|
xfree(pitem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-23 17:49:47 +00:00
|
|
|
/* Create server socket. */
|
|
|
|
int
|
|
|
|
server_create_socket(void)
|
2009-01-19 17:16:09 +00:00
|
|
|
{
|
2009-10-23 17:49:47 +00:00
|
|
|
struct sockaddr_un sa;
|
|
|
|
size_t size;
|
|
|
|
mode_t mask;
|
|
|
|
int fd, mode;
|
|
|
|
|
|
|
|
memset(&sa, 0, sizeof sa);
|
|
|
|
sa.sun_family = AF_UNIX;
|
|
|
|
size = strlcpy(sa.sun_path, socket_path, sizeof sa.sun_path);
|
|
|
|
if (size >= sizeof sa.sun_path) {
|
|
|
|
errno = ENAMETOOLONG;
|
|
|
|
fatal("socket failed");
|
|
|
|
}
|
|
|
|
unlink(sa.sun_path);
|
|
|
|
|
|
|
|
if ((fd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1)
|
|
|
|
fatal("socket failed");
|
|
|
|
|
|
|
|
mask = umask(S_IXUSR|S_IRWXG|S_IRWXO);
|
|
|
|
if (bind(fd, (struct sockaddr *) &sa, SUN_LEN(&sa)) == -1)
|
|
|
|
fatal("bind failed");
|
|
|
|
umask(mask);
|
|
|
|
|
|
|
|
if (listen(fd, 16) == -1)
|
|
|
|
fatal("listen failed");
|
2009-01-19 17:16:09 +00:00
|
|
|
|
|
|
|
if ((mode = fcntl(fd, F_GETFL)) == -1)
|
|
|
|
fatal("fcntl failed");
|
|
|
|
if (fcntl(fd, F_SETFL, mode|O_NONBLOCK) == -1)
|
|
|
|
fatal("fcntl failed");
|
2009-03-31 22:20:42 +00:00
|
|
|
if (fcntl(fd, F_SETFD, FD_CLOEXEC) == -1)
|
|
|
|
fatal("fcntl failed");
|
2009-01-19 17:16:09 +00:00
|
|
|
|
2009-10-23 17:49:47 +00:00
|
|
|
return (fd);
|
|
|
|
}
|
2009-01-19 17:16:09 +00:00
|
|
|
|
2009-10-23 17:49:47 +00:00
|
|
|
/* Callback for server socket. */
|
|
|
|
void
|
|
|
|
server_callback(int fd, int events, unused void *data)
|
|
|
|
{
|
|
|
|
struct sockaddr_storage sa;
|
|
|
|
socklen_t slen = sizeof sa;
|
|
|
|
int newfd;
|
2009-01-19 17:16:09 +00:00
|
|
|
|
2009-10-23 17:49:47 +00:00
|
|
|
if (events & (POLLERR|POLLNVAL|POLLHUP))
|
|
|
|
fatalx("lost server socket");
|
|
|
|
if (!(events & POLLIN))
|
|
|
|
return;
|
2009-01-19 17:16:09 +00:00
|
|
|
|
2009-10-23 17:49:47 +00:00
|
|
|
newfd = accept(fd, (struct sockaddr *) &sa, &slen);
|
|
|
|
if (newfd == -1) {
|
|
|
|
if (errno == EAGAIN || errno == EINTR || errno == ECONNABORTED)
|
2009-07-22 17:46:53 +00:00
|
|
|
return;
|
2009-10-23 17:49:47 +00:00
|
|
|
fatal("accept failed");
|
2009-01-19 17:16:09 +00:00
|
|
|
}
|
2009-10-23 17:49:47 +00:00
|
|
|
if (sigterm) {
|
|
|
|
close(newfd);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
server_client_create(newfd);
|
2009-01-19 17:16:09 +00:00
|
|
|
}
|
|
|
|
|
2007-09-26 18:09:23 +00:00
|
|
|
/* Fork new server. */
|
2008-06-07 07:27:28 +00:00
|
|
|
int
|
2009-03-27 17:04:04 +00:00
|
|
|
server_start(char *path)
|
2007-07-09 19:04:12 +00:00
|
|
|
{
|
2009-08-09 17:19:18 +00:00
|
|
|
struct client *c;
|
|
|
|
int pair[2], srv_fd;
|
|
|
|
char *cause;
|
2009-05-13 23:27:00 +00:00
|
|
|
#ifdef HAVE_SETPROCTITLE
|
2009-08-09 17:19:18 +00:00
|
|
|
char rpathbuf[MAXPATHLEN];
|
2009-03-27 15:57:10 +00:00
|
|
|
#endif
|
2008-06-07 07:27:28 +00:00
|
|
|
|
2009-01-19 17:16:09 +00:00
|
|
|
/* The first client is special and gets a socketpair; create it. */
|
2008-06-07 07:27:28 +00:00
|
|
|
if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, pair) != 0)
|
|
|
|
fatal("socketpair failed");
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2008-06-07 07:27:28 +00:00
|
|
|
switch (fork()) {
|
2007-07-09 19:04:12 +00:00
|
|
|
case -1:
|
2008-06-07 07:27:28 +00:00
|
|
|
fatal("fork failed");
|
2007-07-09 19:04:12 +00:00
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
default:
|
2008-06-07 07:27:28 +00:00
|
|
|
close(pair[1]);
|
2009-01-19 17:16:09 +00:00
|
|
|
return (pair[0]);
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
2008-06-07 07:27:28 +00:00
|
|
|
close(pair[0]);
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2008-06-18 22:21:51 +00:00
|
|
|
/*
|
2008-06-02 21:16:21 +00:00
|
|
|
* Must daemonise before loading configuration as the PID changes so
|
|
|
|
* $TMUX would be wrong for sessions created in the config file.
|
|
|
|
*/
|
2009-08-09 17:19:18 +00:00
|
|
|
if (daemon(1, 0) != 0)
|
2008-06-02 21:16:21 +00:00
|
|
|
fatal("daemon failed");
|
|
|
|
|
2009-08-09 17:19:18 +00:00
|
|
|
logfile("server");
|
|
|
|
log_debug("server started, pid %ld", (long) getpid());
|
|
|
|
|
2008-06-02 21:08:36 +00:00
|
|
|
ARRAY_INIT(&windows);
|
|
|
|
ARRAY_INIT(&clients);
|
2009-09-07 23:59:19 +00:00
|
|
|
ARRAY_INIT(&dead_clients);
|
2008-06-02 21:08:36 +00:00
|
|
|
ARRAY_INIT(&sessions);
|
2009-09-07 23:59:19 +00:00
|
|
|
ARRAY_INIT(&dead_sessions);
|
2009-10-11 23:38:16 +00:00
|
|
|
TAILQ_INIT(&session_groups);
|
2009-07-28 23:11:18 +00:00
|
|
|
mode_key_init_trees();
|
2008-06-02 21:08:36 +00:00
|
|
|
key_bindings_init();
|
2009-04-30 20:54:53 +00:00
|
|
|
utf8_build();
|
2008-06-02 21:08:36 +00:00
|
|
|
|
2009-03-04 17:33:30 +00:00
|
|
|
start_time = time(NULL);
|
|
|
|
socket_path = path;
|
|
|
|
|
2009-05-13 23:27:00 +00:00
|
|
|
#ifdef HAVE_SETPROCTITLE
|
2009-03-27 15:57:10 +00:00
|
|
|
if (realpath(socket_path, rpathbuf) == NULL)
|
|
|
|
strlcpy(rpathbuf, socket_path, sizeof rpathbuf);
|
2009-08-09 17:19:18 +00:00
|
|
|
log_debug("socket path %s", socket_path);
|
2009-03-27 15:57:10 +00:00
|
|
|
setproctitle("server (%s)", rpathbuf);
|
|
|
|
#endif
|
2009-05-04 17:58:27 +00:00
|
|
|
|
2009-05-16 10:02:51 +00:00
|
|
|
srv_fd = server_create_socket();
|
2009-10-23 17:49:47 +00:00
|
|
|
server_client_create(pair[1]);
|
2009-05-16 10:02:51 +00:00
|
|
|
|
2009-11-02 21:39:34 +00:00
|
|
|
if (access(SYSTEM_CFG, R_OK) == 0) {
|
|
|
|
if (load_cfg(SYSTEM_CFG, NULL, &cause) != 0)
|
2009-08-09 17:19:18 +00:00
|
|
|
goto error;
|
2009-11-02 21:39:34 +00:00
|
|
|
} else if (errno != ENOENT) {
|
|
|
|
xasprintf(&cause, "%s: %s", strerror(errno), SYSTEM_CFG);
|
2009-08-09 17:19:18 +00:00
|
|
|
goto error;
|
2009-11-02 21:39:34 +00:00
|
|
|
}
|
2009-08-24 16:27:03 +00:00
|
|
|
if (cfg_file != NULL && load_cfg(cfg_file, NULL, &cause) != 0)
|
2009-08-09 17:19:18 +00:00
|
|
|
goto error;
|
|
|
|
|
|
|
|
exit(server_main(srv_fd));
|
|
|
|
|
|
|
|
error:
|
|
|
|
/* Write the error and shutdown the server. */
|
|
|
|
c = ARRAY_FIRST(&clients);
|
|
|
|
|
|
|
|
server_write_error(c, cause);
|
|
|
|
xfree(cause);
|
|
|
|
|
2009-09-02 21:36:00 +00:00
|
|
|
sigterm = 1;
|
2009-08-09 17:19:18 +00:00
|
|
|
server_shutdown();
|
|
|
|
|
2009-06-25 16:34:50 +00:00
|
|
|
exit(server_main(srv_fd));
|
2009-05-16 10:02:51 +00:00
|
|
|
}
|
|
|
|
|
2007-07-09 19:04:12 +00:00
|
|
|
/* Main server loop. */
|
|
|
|
int
|
2009-03-27 15:57:10 +00:00
|
|
|
server_main(int srv_fd)
|
2007-07-09 19:04:12 +00:00
|
|
|
{
|
2009-10-23 17:49:47 +00:00
|
|
|
struct pollfd *pfds;
|
2008-12-13 18:06:08 +00:00
|
|
|
int nfds, xtimeout;
|
2009-09-23 15:10:37 +00:00
|
|
|
u_int i;
|
2009-01-10 19:35:40 +00:00
|
|
|
time_t now, last;
|
2007-09-26 13:43:15 +00:00
|
|
|
|
|
|
|
siginit();
|
2009-08-14 21:24:46 +00:00
|
|
|
log_debug("server socket is %d", srv_fd);
|
2008-06-18 22:21:51 +00:00
|
|
|
|
2009-01-10 19:35:40 +00:00
|
|
|
last = time(NULL);
|
|
|
|
|
2007-07-09 19:04:12 +00:00
|
|
|
pfds = NULL;
|
2009-01-21 22:47:31 +00:00
|
|
|
for (;;) {
|
|
|
|
/* If sigterm, kill all windows and clients. */
|
|
|
|
if (sigterm)
|
|
|
|
server_shutdown();
|
|
|
|
|
2009-09-23 15:10:37 +00:00
|
|
|
/* Stop if no sessions or clients left. */
|
|
|
|
if (server_should_shutdown())
|
|
|
|
break;
|
|
|
|
|
2009-02-08 16:11:26 +00:00
|
|
|
/* Handle child exit. */
|
|
|
|
if (sigchld) {
|
|
|
|
sigchld = 0;
|
2009-10-28 23:11:07 +00:00
|
|
|
server_child_signal();
|
|
|
|
continue;
|
2009-02-08 16:11:26 +00:00
|
|
|
}
|
2009-05-16 10:02:51 +00:00
|
|
|
|
|
|
|
/* Recreate socket on SIGUSR1. */
|
|
|
|
if (sigusr1) {
|
2009-10-28 23:11:07 +00:00
|
|
|
sigusr1 = 0;
|
2009-05-16 10:02:51 +00:00
|
|
|
close(srv_fd);
|
|
|
|
srv_fd = server_create_socket();
|
2009-10-28 23:11:07 +00:00
|
|
|
continue;
|
2009-05-16 10:02:51 +00:00
|
|
|
}
|
2009-02-08 16:11:26 +00:00
|
|
|
|
2009-10-11 23:25:44 +00:00
|
|
|
/* Initialise pollfd array and add server socket. */
|
|
|
|
server_poll_reset();
|
2009-10-23 17:49:47 +00:00
|
|
|
server_poll_add(srv_fd, POLLIN, server_callback, NULL);
|
2007-07-09 19:04:12 +00:00
|
|
|
|
|
|
|
/* Fill window and client sockets. */
|
2009-10-28 23:14:15 +00:00
|
|
|
server_job_prepare();
|
|
|
|
server_window_prepare();
|
|
|
|
server_client_prepare();
|
|
|
|
|
2008-12-13 18:06:08 +00:00
|
|
|
/* Update socket permissions. */
|
|
|
|
xtimeout = INFTIM;
|
2009-09-02 21:36:00 +00:00
|
|
|
if (server_update_socket() != 0)
|
2009-05-02 08:34:39 +00:00
|
|
|
xtimeout = POLL_TIMEOUT;
|
2008-12-13 18:06:08 +00:00
|
|
|
|
2007-07-09 19:04:12 +00:00
|
|
|
/* Do the poll. */
|
2009-10-11 23:25:44 +00:00
|
|
|
pfds = server_poll_flatten(&nfds);
|
2009-06-26 15:32:00 +00:00
|
|
|
if (poll(pfds, nfds, xtimeout) == -1) {
|
2007-07-09 19:04:12 +00:00
|
|
|
if (errno == EAGAIN || errno == EINTR)
|
|
|
|
continue;
|
2007-07-25 23:13:18 +00:00
|
|
|
fatal("poll failed");
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
2009-10-23 17:49:47 +00:00
|
|
|
server_poll_dispatch(pfds, nfds);
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2009-01-11 00:48:42 +00:00
|
|
|
/* Call second-based timers. */
|
2009-01-10 19:35:40 +00:00
|
|
|
now = time(NULL);
|
|
|
|
if (now != last) {
|
|
|
|
last = now;
|
|
|
|
server_second_timers();
|
|
|
|
}
|
|
|
|
|
2009-10-23 17:49:47 +00:00
|
|
|
/* Run once-per-loop events. */
|
|
|
|
server_job_loop();
|
|
|
|
server_window_loop();
|
|
|
|
server_client_loop();
|
2008-06-06 17:55:27 +00:00
|
|
|
|
2009-07-14 06:39:25 +00:00
|
|
|
/* Collect any unset key bindings. */
|
|
|
|
key_bindings_clean();
|
2009-09-07 23:59:19 +00:00
|
|
|
|
|
|
|
/* Collect dead clients and sessions. */
|
|
|
|
server_clean_dead();
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
2009-10-11 23:25:44 +00:00
|
|
|
server_poll_reset();
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-10-24 11:05:59 +00:00
|
|
|
for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
|
|
|
|
if (ARRAY_ITEM(&sessions, i) != NULL)
|
|
|
|
session_destroy(ARRAY_ITEM(&sessions, i));
|
|
|
|
}
|
|
|
|
ARRAY_FREE(&sessions);
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
|
|
|
|
if (ARRAY_ITEM(&clients, i) != NULL)
|
2009-10-23 17:49:47 +00:00
|
|
|
server_client_lost(ARRAY_ITEM(&clients, i));
|
2007-10-24 11:05:59 +00:00
|
|
|
}
|
|
|
|
ARRAY_FREE(&clients);
|
|
|
|
|
2009-07-28 23:11:18 +00:00
|
|
|
mode_key_free_trees();
|
2007-10-03 21:31:07 +00:00
|
|
|
key_bindings_free();
|
2007-10-03 11:26:34 +00:00
|
|
|
|
2007-07-09 19:04:12 +00:00
|
|
|
close(srv_fd);
|
2009-03-27 15:57:10 +00:00
|
|
|
|
|
|
|
unlink(socket_path);
|
|
|
|
xfree(socket_path);
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2009-07-08 18:01:31 +00:00
|
|
|
options_free(&global_s_options);
|
|
|
|
options_free(&global_w_options);
|
2009-02-16 19:29:17 +00:00
|
|
|
|
2007-07-09 19:04:12 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2009-01-21 22:47:31 +00:00
|
|
|
/* Kill all clients. */
|
|
|
|
void
|
|
|
|
server_shutdown(void)
|
|
|
|
{
|
|
|
|
struct session *s;
|
|
|
|
struct client *c;
|
2009-01-29 20:13:12 +00:00
|
|
|
u_int i, j;
|
2009-01-21 22:47:31 +00:00
|
|
|
|
2009-09-23 15:10:37 +00:00
|
|
|
for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
|
|
|
|
c = ARRAY_ITEM(&clients, i);
|
|
|
|
if (c != NULL) {
|
|
|
|
if (c->flags & (CLIENT_BAD|CLIENT_SUSPENDED))
|
2009-10-23 17:49:47 +00:00
|
|
|
server_client_lost(c);
|
2009-09-23 15:10:37 +00:00
|
|
|
else
|
|
|
|
server_write_client(c, MSG_SHUTDOWN, NULL, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-21 22:47:31 +00:00
|
|
|
for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
|
|
|
|
s = ARRAY_ITEM(&sessions, i);
|
2009-01-29 20:13:12 +00:00
|
|
|
for (j = 0; j < ARRAY_LENGTH(&clients); j++) {
|
|
|
|
c = ARRAY_ITEM(&clients, j);
|
2009-01-21 22:47:31 +00:00
|
|
|
if (c != NULL && c->session == s) {
|
|
|
|
s = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (s != NULL)
|
|
|
|
session_destroy(s);
|
|
|
|
}
|
2009-09-23 15:10:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if the server should be shutting down (no more clients or windows). */
|
|
|
|
int
|
|
|
|
server_should_shutdown(void)
|
|
|
|
{
|
|
|
|
u_int i;
|
2009-01-21 22:47:31 +00:00
|
|
|
|
2009-09-23 15:10:37 +00:00
|
|
|
for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
|
|
|
|
if (ARRAY_ITEM(&sessions, i) != NULL)
|
|
|
|
return (0);
|
|
|
|
}
|
2009-01-21 22:47:31 +00:00
|
|
|
for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
|
2009-09-23 15:10:37 +00:00
|
|
|
if (ARRAY_ITEM(&clients, i) != NULL)
|
|
|
|
return (0);
|
2009-01-21 22:47:31 +00:00
|
|
|
}
|
2009-09-23 15:10:37 +00:00
|
|
|
return (1);
|
2009-01-21 22:47:31 +00:00
|
|
|
}
|
2009-02-08 16:11:26 +00:00
|
|
|
|
|
|
|
/* Handle SIGCHLD. */
|
|
|
|
void
|
|
|
|
server_child_signal(void)
|
|
|
|
{
|
|
|
|
struct window *w;
|
|
|
|
struct window_pane *wp;
|
2009-10-12 00:21:08 +00:00
|
|
|
struct job *job;
|
2009-02-08 16:11:26 +00:00
|
|
|
int status;
|
|
|
|
pid_t pid;
|
|
|
|
u_int i;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
switch (pid = waitpid(WAIT_ANY, &status, WNOHANG|WUNTRACED)) {
|
|
|
|
case -1:
|
|
|
|
if (errno == ECHILD)
|
|
|
|
return;
|
2009-09-20 22:11:27 +00:00
|
|
|
fatal("waitpid failed");
|
2009-02-08 16:11:26 +00:00
|
|
|
case 0:
|
|
|
|
return;
|
|
|
|
}
|
2009-10-12 00:21:08 +00:00
|
|
|
if (!WIFSTOPPED(status)) {
|
|
|
|
SLIST_FOREACH(job, &all_jobs, lentry) {
|
|
|
|
if (pid == job->pid) {
|
|
|
|
job->pid = -1;
|
|
|
|
job->status = status;
|
|
|
|
}
|
|
|
|
}
|
2009-02-08 16:11:26 +00:00
|
|
|
continue;
|
2009-10-12 00:21:08 +00:00
|
|
|
}
|
2009-02-08 16:11:26 +00:00
|
|
|
if (WSTOPSIG(status) == SIGTTIN || WSTOPSIG(status) == SIGTTOU)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_LENGTH(&windows); i++) {
|
|
|
|
w = ARRAY_ITEM(&windows, i);
|
|
|
|
if (w == NULL)
|
|
|
|
continue;
|
|
|
|
TAILQ_FOREACH(wp, &w->panes, entry) {
|
|
|
|
if (wp->pid == pid) {
|
|
|
|
if (killpg(pid, SIGCONT) != 0)
|
|
|
|
kill(pid, SIGCONT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-05-04 17:58:27 +00:00
|
|
|
|
2009-09-07 23:59:19 +00:00
|
|
|
/* Free dead, unreferenced clients and sessions. */
|
|
|
|
void
|
|
|
|
server_clean_dead(void)
|
|
|
|
{
|
|
|
|
struct session *s;
|
|
|
|
struct client *c;
|
|
|
|
u_int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_LENGTH(&dead_sessions); i++) {
|
|
|
|
s = ARRAY_ITEM(&dead_sessions, i);
|
|
|
|
if (s == NULL || s->references != 0)
|
|
|
|
continue;
|
|
|
|
ARRAY_SET(&dead_sessions, i, NULL);
|
|
|
|
xfree(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_LENGTH(&dead_clients); i++) {
|
|
|
|
c = ARRAY_ITEM(&dead_clients, i);
|
|
|
|
if (c == NULL || c->references != 0)
|
|
|
|
continue;
|
|
|
|
ARRAY_SET(&dead_clients, i, NULL);
|
|
|
|
xfree(c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-23 17:49:47 +00:00
|
|
|
/* Call any once-per-second timers. */
|
2009-01-14 19:29:32 +00:00
|
|
|
void
|
2009-10-23 17:49:47 +00:00
|
|
|
server_second_timers(void)
|
2007-07-09 19:04:12 +00:00
|
|
|
{
|
2009-10-23 17:49:47 +00:00
|
|
|
struct window *w;
|
|
|
|
struct window_pane *wp;
|
2009-09-13 20:43:21 +00:00
|
|
|
u_int i;
|
2009-01-14 19:29:32 +00:00
|
|
|
|
2009-10-23 17:49:47 +00:00
|
|
|
if (options_get_number(&global_s_options, "lock-server"))
|
|
|
|
server_lock_server();
|
|
|
|
else
|
|
|
|
server_lock_sessions();
|
2008-06-29 07:04:31 +00:00
|
|
|
|
2009-10-23 17:49:47 +00:00
|
|
|
for (i = 0; i < ARRAY_LENGTH(&windows); i++) {
|
|
|
|
w = ARRAY_ITEM(&windows, i);
|
|
|
|
if (w == NULL)
|
2007-08-27 12:05:15 +00:00
|
|
|
continue;
|
|
|
|
|
2009-10-23 17:49:47 +00:00
|
|
|
TAILQ_FOREACH(wp, &w->panes, entry) {
|
|
|
|
if (wp->mode != NULL && wp->mode->timer != NULL)
|
|
|
|
wp->mode->timer(wp);
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-11 23:30:28 +00:00
|
|
|
/* Lock the server if ALL sessions have hit the time limit. */
|
|
|
|
void
|
|
|
|
server_lock_server(void)
|
|
|
|
{
|
|
|
|
struct session *s;
|
|
|
|
u_int i;
|
|
|
|
int timeout;
|
|
|
|
time_t t;
|
|
|
|
|
|
|
|
t = time(NULL);
|
|
|
|
for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
|
|
|
|
if ((s = ARRAY_ITEM(&sessions, i)) == NULL)
|
|
|
|
continue;
|
|
|
|
|
2009-10-15 01:43:16 +00:00
|
|
|
if (s->flags & SESSION_UNATTACHED) {
|
|
|
|
s->activity = time(NULL);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-10-11 23:30:28 +00:00
|
|
|
timeout = options_get_number(&s->options, "lock-after-time");
|
|
|
|
if (timeout <= 0 || t <= s->activity + timeout)
|
|
|
|
return; /* not timed out */
|
|
|
|
}
|
|
|
|
|
|
|
|
server_lock();
|
|
|
|
recalculate_sizes();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Lock any sessions which have timed out. */
|
|
|
|
void
|
|
|
|
server_lock_sessions(void)
|
|
|
|
{
|
|
|
|
struct session *s;
|
2009-10-28 23:12:38 +00:00
|
|
|
u_int i;
|
2009-10-11 23:30:28 +00:00
|
|
|
int timeout;
|
2009-10-28 23:12:38 +00:00
|
|
|
time_t t;
|
2009-10-11 23:30:28 +00:00
|
|
|
|
2009-10-28 23:12:38 +00:00
|
|
|
t = time(NULL);
|
|
|
|
for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
|
2009-10-11 23:30:28 +00:00
|
|
|
if ((s = ARRAY_ITEM(&sessions, i)) == NULL)
|
|
|
|
continue;
|
|
|
|
|
2009-10-15 01:43:16 +00:00
|
|
|
if (s->flags & SESSION_UNATTACHED) {
|
|
|
|
s->activity = time(NULL);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-10-11 23:30:28 +00:00
|
|
|
timeout = options_get_number(&s->options, "lock-after-time");
|
|
|
|
if (timeout > 0 && t > s->activity + timeout) {
|
|
|
|
server_lock_session(s);
|
|
|
|
recalculate_sizes();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-10 19:35:40 +00:00
|
|
|
/* Update socket execute permissions based on whether sessions are attached. */
|
2008-12-13 18:06:08 +00:00
|
|
|
int
|
2009-05-19 08:48:49 +00:00
|
|
|
server_update_socket(void)
|
2008-06-08 19:49:04 +00:00
|
|
|
{
|
|
|
|
struct session *s;
|
|
|
|
u_int i;
|
|
|
|
static int last = -1;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
n = 0;
|
|
|
|
for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
|
|
|
|
s = ARRAY_ITEM(&sessions, i);
|
2008-06-17 19:26:19 +00:00
|
|
|
if (s != NULL && !(s->flags & SESSION_UNATTACHED)) {
|
2008-06-08 19:49:04 +00:00
|
|
|
n++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n != last) {
|
|
|
|
last = n;
|
|
|
|
if (n != 0)
|
2009-03-27 15:57:10 +00:00
|
|
|
chmod(socket_path, S_IRWXU);
|
2008-06-08 19:49:04 +00:00
|
|
|
else
|
2009-03-27 15:57:10 +00:00
|
|
|
chmod(socket_path, S_IRUSR|S_IWUSR);
|
2008-06-08 19:49:04 +00:00
|
|
|
}
|
2008-12-13 18:06:08 +00:00
|
|
|
|
|
|
|
return (n);
|
2008-06-08 19:49:04 +00:00
|
|
|
}
|