2008-06-02 21:08:36 +00:00
|
|
|
/* $Id: server.c,v 1.47 2008-06-02 21:08:36 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/ioctl.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/un.h>
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
2007-09-26 13:43:15 +00:00
|
|
|
#include <paths.h>
|
2007-07-09 19:04:12 +00:00
|
|
|
#include <poll.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <syslog.h>
|
|
|
|
#include <termios.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Main server functions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Client list. */
|
|
|
|
struct clients clients;
|
|
|
|
|
2007-11-12 15:12:08 +00:00
|
|
|
int server_main(const char *, int);
|
2007-09-26 18:09:23 +00:00
|
|
|
void server_fill_windows(struct pollfd **);
|
|
|
|
void server_handle_windows(struct pollfd **);
|
|
|
|
void server_fill_clients(struct pollfd **);
|
|
|
|
void server_handle_clients(struct pollfd **);
|
|
|
|
struct client *server_accept_client(int);
|
2007-11-27 19:23:34 +00:00
|
|
|
void server_handle_client(struct client *);
|
2007-09-29 09:53:25 +00:00
|
|
|
void server_handle_window(struct window *);
|
2007-09-26 18:09:23 +00:00
|
|
|
void server_lost_client(struct client *);
|
|
|
|
void server_lost_window(struct window *);
|
|
|
|
|
|
|
|
/* Fork new server. */
|
2008-06-02 21:08:36 +00:00
|
|
|
pid_t
|
2007-11-12 15:12:08 +00:00
|
|
|
server_start(const char *path)
|
2007-07-09 19:04:12 +00:00
|
|
|
{
|
|
|
|
struct sockaddr_un sa;
|
2007-10-23 10:25:03 +00:00
|
|
|
size_t size;
|
2007-09-26 18:09:23 +00:00
|
|
|
mode_t mask;
|
2007-10-04 11:52:03 +00:00
|
|
|
int n, fd, mode;
|
2008-06-02 21:08:36 +00:00
|
|
|
pid_t pid;
|
2008-06-02 18:08:17 +00:00
|
|
|
char *cause;
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2008-06-02 21:08:36 +00:00
|
|
|
switch (pid = fork()) {
|
2007-07-09 19:04:12 +00:00
|
|
|
case -1:
|
2007-12-01 11:10:33 +00:00
|
|
|
fatal("fork");
|
2007-07-09 19:04:12 +00:00
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
default:
|
2008-06-02 21:08:36 +00:00
|
|
|
return (pid);
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
|
|
|
|
2007-10-04 21:21:48 +00:00
|
|
|
#ifdef DEBUG
|
2007-10-04 11:52:03 +00:00
|
|
|
xmalloc_clear();
|
2007-10-04 21:21:48 +00:00
|
|
|
#endif
|
2007-10-04 11:52:03 +00:00
|
|
|
|
2008-06-02 21:08:36 +00:00
|
|
|
ARRAY_INIT(&windows);
|
|
|
|
ARRAY_INIT(&clients);
|
|
|
|
ARRAY_INIT(&sessions);
|
|
|
|
key_bindings_init();
|
|
|
|
|
|
|
|
if (cfg_file != NULL && load_cfg(cfg_file, &cause) != 0) {
|
|
|
|
log_warnx("%s", cause);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2007-09-26 13:43:15 +00:00
|
|
|
logfile("server");
|
2007-10-31 14:26:26 +00:00
|
|
|
#ifndef NO_SETPROCTITLE
|
2007-09-26 13:43:15 +00:00
|
|
|
setproctitle("server (%s)", path);
|
2007-10-31 14:26:26 +00:00
|
|
|
#endif
|
2007-07-09 19:04:12 +00:00
|
|
|
log_debug("server started, pid %ld", (long) getpid());
|
|
|
|
|
|
|
|
memset(&sa, 0, sizeof sa);
|
|
|
|
sa.sun_family = AF_UNIX;
|
2007-10-23 10:25:03 +00:00
|
|
|
size = strlcpy(sa.sun_path, path, sizeof sa.sun_path);
|
|
|
|
if (size >= sizeof sa.sun_path) {
|
2007-07-09 19:04:12 +00:00
|
|
|
errno = ENAMETOOLONG;
|
2007-07-25 23:13:18 +00:00
|
|
|
fatal("socket failed");
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
|
|
|
unlink(sa.sun_path);
|
|
|
|
|
|
|
|
if ((fd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1)
|
2007-07-25 23:13:18 +00:00
|
|
|
fatal("socket failed");
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-09-26 18:09:23 +00:00
|
|
|
mask = umask(S_IXUSR|S_IRWXG|S_IRWXO);
|
2007-07-09 19:04:12 +00:00
|
|
|
if (bind(fd, (struct sockaddr *) &sa, SUN_LEN(&sa)) == -1)
|
2007-07-25 23:13:18 +00:00
|
|
|
fatal("bind failed");
|
2007-09-26 18:09:23 +00:00
|
|
|
umask(mask);
|
2007-07-09 19:04:12 +00:00
|
|
|
|
|
|
|
if (listen(fd, 16) == -1)
|
2007-07-25 23:13:18 +00:00
|
|
|
fatal("listen failed");
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-09-26 18:09:23 +00:00
|
|
|
if ((mode = fcntl(fd, F_GETFL)) == -1)
|
|
|
|
fatal("fcntl failed");
|
|
|
|
if (fcntl(fd, F_SETFL, mode|O_NONBLOCK) == -1)
|
|
|
|
fatal("fcntl failed");
|
2007-10-24 11:30:02 +00:00
|
|
|
if (fcntl(fd, F_SETFD, FD_CLOEXEC) == -1)
|
2007-12-06 09:46:23 +00:00
|
|
|
fatal("fcntl failed");
|
2007-09-26 18:09:23 +00:00
|
|
|
|
2007-07-09 19:04:12 +00:00
|
|
|
if (daemon(1, 1) != 0)
|
2007-07-25 23:13:18 +00:00
|
|
|
fatal("daemon failed");
|
2007-07-09 19:04:12 +00:00
|
|
|
log_debug("server daemonised, pid now %ld", (long) getpid());
|
2008-06-02 21:08:36 +00:00
|
|
|
|
2007-10-04 11:52:03 +00:00
|
|
|
n = server_main(path, fd);
|
|
|
|
#ifdef DEBUG
|
|
|
|
xmalloc_report(getpid(), "server");
|
|
|
|
#endif
|
|
|
|
exit(n);
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Main server loop. */
|
|
|
|
int
|
2007-11-12 15:12:08 +00:00
|
|
|
server_main(const char *srv_path, int srv_fd)
|
2007-07-09 19:04:12 +00:00
|
|
|
{
|
2007-09-26 18:09:23 +00:00
|
|
|
struct pollfd *pfds, *pfd;
|
|
|
|
int nfds;
|
2007-10-24 11:05:59 +00:00
|
|
|
u_int i;
|
2007-09-26 13:43:15 +00:00
|
|
|
|
|
|
|
siginit();
|
2008-06-02 18:08:17 +00:00
|
|
|
|
2007-07-09 19:04:12 +00:00
|
|
|
pfds = NULL;
|
|
|
|
while (!sigterm) {
|
|
|
|
/* Initialise pollfd array. */
|
2007-11-27 19:23:34 +00:00
|
|
|
nfds = 1 + ARRAY_LENGTH(&windows) + ARRAY_LENGTH(&clients) * 2;
|
2007-07-09 19:04:12 +00:00
|
|
|
pfds = xrealloc(pfds, nfds, sizeof *pfds);
|
|
|
|
pfd = pfds;
|
|
|
|
|
|
|
|
/* Fill server socket. */
|
|
|
|
pfd->fd = srv_fd;
|
|
|
|
pfd->events = POLLIN;
|
|
|
|
pfd++;
|
|
|
|
|
|
|
|
/* Fill window and client sockets. */
|
2007-09-26 18:09:23 +00:00
|
|
|
server_fill_windows(&pfd);
|
|
|
|
server_fill_clients(&pfd);
|
2007-07-09 19:04:12 +00:00
|
|
|
|
|
|
|
/* Do the poll. */
|
2008-05-31 20:04:15 +00:00
|
|
|
log_debug("polling %d fds", nfds);
|
|
|
|
if ((nfds = poll(pfds, nfds, INFTIM)) == -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
|
|
|
}
|
|
|
|
pfd = pfds;
|
2008-05-31 20:04:15 +00:00
|
|
|
log_debug("poll returned %d", nfds);
|
2007-07-09 19:04:12 +00:00
|
|
|
|
|
|
|
/* Handle server socket. */
|
|
|
|
if (pfd->revents & (POLLERR|POLLNVAL|POLLHUP))
|
2007-07-25 23:13:18 +00:00
|
|
|
fatalx("lost server socket");
|
2007-07-09 19:04:12 +00:00
|
|
|
if (pfd->revents & POLLIN) {
|
2007-09-26 18:09:23 +00:00
|
|
|
server_accept_client(srv_fd);
|
2007-07-09 19:04:12 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
pfd++;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Handle window and client sockets. Clients can create
|
|
|
|
* windows, so windows must come first to avoid messing up by
|
|
|
|
* increasing the array size.
|
|
|
|
*/
|
2007-09-26 18:09:23 +00:00
|
|
|
server_handle_windows(&pfd);
|
|
|
|
server_handle_clients(&pfd);
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
2007-10-24 11:21:29 +00:00
|
|
|
if (pfds != NULL)
|
|
|
|
xfree(pfds);
|
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)
|
|
|
|
server_lost_client(ARRAY_ITEM(&clients, i));
|
|
|
|
}
|
|
|
|
ARRAY_FREE(&clients);
|
|
|
|
|
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);
|
2007-09-26 13:43:15 +00:00
|
|
|
unlink(srv_path);
|
2007-07-09 19:04:12 +00:00
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Fill window pollfds. */
|
|
|
|
void
|
2007-09-26 18:09:23 +00:00
|
|
|
server_fill_windows(struct pollfd **pfd)
|
2007-07-09 19:04:12 +00:00
|
|
|
{
|
|
|
|
struct window *w;
|
|
|
|
u_int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_LENGTH(&windows); i++) {
|
|
|
|
if ((w = ARRAY_ITEM(&windows, i)) == NULL)
|
|
|
|
(*pfd)->fd = -1;
|
|
|
|
else {
|
|
|
|
(*pfd)->fd = w->fd;
|
|
|
|
(*pfd)->events = POLLIN;
|
|
|
|
if (BUFFER_USED(w->out) > 0)
|
|
|
|
(*pfd)->events |= POLLOUT;
|
2008-05-31 20:04:15 +00:00
|
|
|
log_debug("adding window %d (%d)", (*pfd)->fd, w->fd);
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
|
|
|
(*pfd)++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle window pollfds. */
|
|
|
|
void
|
2007-09-26 18:09:23 +00:00
|
|
|
server_handle_windows(struct pollfd **pfd)
|
2007-07-09 19:04:12 +00:00
|
|
|
{
|
|
|
|
struct window *w;
|
|
|
|
u_int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_LENGTH(&windows); i++) {
|
|
|
|
if ((w = ARRAY_ITEM(&windows, i)) != NULL) {
|
2008-05-31 20:04:15 +00:00
|
|
|
log_debug("testing window %d (%d)", (*pfd)->fd, w->fd);
|
2007-10-26 12:29:07 +00:00
|
|
|
if (buffer_poll(*pfd, w->in, w->out) != 0)
|
2007-09-26 18:09:23 +00:00
|
|
|
server_lost_window(w);
|
2007-12-06 09:46:23 +00:00
|
|
|
else
|
2007-09-29 09:53:25 +00:00
|
|
|
server_handle_window(w);
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
|
|
|
(*pfd)++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Fill client pollfds. */
|
|
|
|
void
|
2007-09-26 18:09:23 +00:00
|
|
|
server_fill_clients(struct pollfd **pfd)
|
2007-07-09 19:04:12 +00:00
|
|
|
{
|
|
|
|
struct client *c;
|
|
|
|
u_int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
|
2007-11-27 19:23:34 +00:00
|
|
|
c = ARRAY_ITEM(&clients, i);
|
|
|
|
|
|
|
|
if (c == NULL)
|
2007-07-09 19:04:12 +00:00
|
|
|
(*pfd)->fd = -1;
|
|
|
|
else {
|
|
|
|
(*pfd)->fd = c->fd;
|
|
|
|
(*pfd)->events = POLLIN;
|
|
|
|
if (BUFFER_USED(c->out) > 0)
|
|
|
|
(*pfd)->events |= POLLOUT;
|
2008-05-31 20:04:15 +00:00
|
|
|
log_debug("adding client %d (%d)", (*pfd)->fd, c->fd);
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
|
|
|
(*pfd)++;
|
2007-11-27 19:23:34 +00:00
|
|
|
|
2008-05-31 20:04:15 +00:00
|
|
|
if (c == NULL || c->tty.fd == -1 || c->session == NULL)
|
2007-11-27 19:23:34 +00:00
|
|
|
(*pfd)->fd = -1;
|
|
|
|
else {
|
|
|
|
(*pfd)->fd = c->tty.fd;
|
|
|
|
(*pfd)->events = POLLIN;
|
|
|
|
if (BUFFER_USED(c->tty.out) > 0)
|
|
|
|
(*pfd)->events |= POLLOUT;
|
2008-05-31 20:04:15 +00:00
|
|
|
log_debug("adding tty %d (%d)", (*pfd)->fd, c->tty.fd);
|
2007-11-27 19:23:34 +00:00
|
|
|
}
|
|
|
|
(*pfd)++;
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle client pollfds. */
|
|
|
|
void
|
2007-10-26 12:29:07 +00:00
|
|
|
server_handle_clients(struct pollfd **pfd)
|
2007-07-09 19:04:12 +00:00
|
|
|
{
|
|
|
|
struct client *c;
|
|
|
|
u_int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
|
2007-11-27 19:23:34 +00:00
|
|
|
c = ARRAY_ITEM(&clients, i);
|
|
|
|
|
|
|
|
if (c != NULL) {
|
2008-05-31 20:04:15 +00:00
|
|
|
log_debug("testing client %d (%d)", (*pfd)->fd, c->fd);
|
2007-11-27 19:23:34 +00:00
|
|
|
if (buffer_poll(*pfd, c->in, c->out) != 0) {
|
2007-09-26 18:09:23 +00:00
|
|
|
server_lost_client(c);
|
2007-11-27 19:23:34 +00:00
|
|
|
(*pfd) += 2;
|
|
|
|
continue;
|
|
|
|
} else
|
2007-09-26 10:35:24 +00:00
|
|
|
server_msg_dispatch(c);
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
|
|
|
(*pfd)++;
|
2007-11-27 19:23:34 +00:00
|
|
|
|
2007-11-27 20:01:30 +00:00
|
|
|
if (c != NULL && c->tty.fd != -1 && c->session != NULL) {
|
2008-05-31 20:04:15 +00:00
|
|
|
log_debug("testing tty %d (%d)", (*pfd)->fd, c->tty.fd);
|
2007-11-27 19:23:34 +00:00
|
|
|
if (buffer_poll(*pfd, c->tty.in, c->tty.out) != 0)
|
|
|
|
server_lost_client(c);
|
|
|
|
else
|
|
|
|
server_handle_client(c);
|
|
|
|
}
|
|
|
|
(*pfd)++;
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* accept(2) and create new client. */
|
|
|
|
struct client *
|
2007-09-26 18:09:23 +00:00
|
|
|
server_accept_client(int srv_fd)
|
2007-07-09 19:04:12 +00:00
|
|
|
{
|
|
|
|
struct client *c;
|
|
|
|
struct sockaddr_storage sa;
|
|
|
|
socklen_t slen = sizeof sa;
|
|
|
|
int client_fd, mode;
|
|
|
|
u_int i;
|
|
|
|
|
|
|
|
client_fd = accept(srv_fd, (struct sockaddr *) &sa, &slen);
|
|
|
|
if (client_fd == -1) {
|
|
|
|
if (errno == EAGAIN || errno == EINTR || errno == ECONNABORTED)
|
|
|
|
return (NULL);
|
2007-07-25 23:13:18 +00:00
|
|
|
fatal("accept failed");
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
|
|
|
if ((mode = fcntl(client_fd, F_GETFL)) == -1)
|
2007-07-25 23:13:18 +00:00
|
|
|
fatal("fcntl failed");
|
2007-07-09 19:04:12 +00:00
|
|
|
if (fcntl(client_fd, F_SETFL, mode|O_NONBLOCK) == -1)
|
2007-07-25 23:13:18 +00:00
|
|
|
fatal("fcntl failed");
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-10-03 10:20:33 +00:00
|
|
|
c = xcalloc(1, sizeof *c);
|
2007-07-09 19:04:12 +00:00
|
|
|
c->fd = client_fd;
|
|
|
|
c->in = buffer_create(BUFSIZ);
|
|
|
|
c->out = buffer_create(BUFSIZ);
|
2007-10-04 20:01:10 +00:00
|
|
|
|
2007-11-27 19:23:34 +00:00
|
|
|
c->tty.fd = -1;
|
|
|
|
|
2007-07-09 19:04:12 +00:00
|
|
|
c->session = NULL;
|
2007-10-04 20:01:10 +00:00
|
|
|
c->sx = 80;
|
|
|
|
c->sy = 25;
|
2007-07-09 19:04:12 +00:00
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
|
|
|
|
if (ARRAY_ITEM(&clients, i) == NULL) {
|
|
|
|
ARRAY_SET(&clients, i, c);
|
|
|
|
return (c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ARRAY_ADD(&clients, c);
|
|
|
|
return (c);
|
|
|
|
}
|
|
|
|
|
2007-11-27 19:23:34 +00:00
|
|
|
/* Input data from client. */
|
|
|
|
void
|
|
|
|
server_handle_client(struct client *c)
|
|
|
|
{
|
|
|
|
struct window *w = c->session->curw->window;
|
|
|
|
int key;
|
|
|
|
|
|
|
|
while (tty_keys_next(&c->tty, &key) == 0) {
|
|
|
|
if (c->flags & CLIENT_PREFIX) {
|
|
|
|
key_bindings_dispatch(key, c);
|
|
|
|
c->flags &= ~CLIENT_PREFIX;
|
|
|
|
continue;
|
|
|
|
} else if (key == prefix_key)
|
|
|
|
c->flags |= CLIENT_PREFIX;
|
|
|
|
else
|
|
|
|
window_key(w, key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-09 19:04:12 +00:00
|
|
|
/* Lost a client. */
|
|
|
|
void
|
2007-09-26 18:09:23 +00:00
|
|
|
server_lost_client(struct client *c)
|
2007-07-09 19:04:12 +00:00
|
|
|
{
|
|
|
|
u_int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
|
|
|
|
if (ARRAY_ITEM(&clients, i) == c)
|
|
|
|
ARRAY_SET(&clients, i, NULL);
|
|
|
|
}
|
2007-12-06 09:46:23 +00:00
|
|
|
|
2007-11-27 19:23:34 +00:00
|
|
|
tty_free(&c->tty);
|
|
|
|
|
2007-07-09 19:04:12 +00:00
|
|
|
close(c->fd);
|
|
|
|
buffer_destroy(c->in);
|
|
|
|
buffer_destroy(c->out);
|
|
|
|
xfree(c);
|
2007-10-04 19:03:52 +00:00
|
|
|
|
|
|
|
recalculate_sizes();
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
|
|
|
|
2007-09-29 09:53:25 +00:00
|
|
|
/* Handle window data. */
|
|
|
|
void
|
|
|
|
server_handle_window(struct window *w)
|
|
|
|
{
|
2007-10-12 11:24:15 +00:00
|
|
|
struct session *s;
|
|
|
|
u_int i;
|
2007-09-29 09:53:25 +00:00
|
|
|
|
2007-11-27 19:23:34 +00:00
|
|
|
window_parse(w);
|
2007-09-29 09:53:25 +00:00
|
|
|
|
|
|
|
if (!(w->flags & WINDOW_BELL))
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
|
|
|
|
s = ARRAY_ITEM(&sessions, i);
|
2007-10-12 11:24:15 +00:00
|
|
|
if (s != NULL)
|
|
|
|
session_addbell(s, w);
|
2007-09-29 09:53:25 +00:00
|
|
|
}
|
2007-10-12 11:24:15 +00:00
|
|
|
|
2007-10-19 10:21:36 +00:00
|
|
|
switch (bell_action) {
|
|
|
|
case BELL_ANY:
|
2007-11-27 19:23:34 +00:00
|
|
|
tty_write_window(w, TTY_CHARACTER, '\007');
|
2007-10-19 10:21:36 +00:00
|
|
|
break;
|
|
|
|
case BELL_CURRENT:
|
|
|
|
for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
|
|
|
|
s = ARRAY_ITEM(&sessions, i);
|
2007-10-26 12:29:07 +00:00
|
|
|
if (s != NULL && s->curw->window == w)
|
2007-11-27 19:23:34 +00:00
|
|
|
tty_write_session(s, TTY_CHARACTER, '\007');
|
2007-10-19 10:21:36 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2007-11-27 19:23:34 +00:00
|
|
|
server_status_window(w);
|
2007-10-12 11:24:15 +00:00
|
|
|
|
2007-09-29 09:53:25 +00:00
|
|
|
w->flags &= ~WINDOW_BELL;
|
|
|
|
}
|
|
|
|
|
2007-07-09 19:04:12 +00:00
|
|
|
/* Lost window: move clients on to next window. */
|
|
|
|
void
|
2007-09-26 18:09:23 +00:00
|
|
|
server_lost_window(struct window *w)
|
2007-07-09 19:04:12 +00:00
|
|
|
{
|
|
|
|
struct client *c;
|
2007-08-27 12:05:15 +00:00
|
|
|
struct session *s;
|
2007-10-26 12:29:07 +00:00
|
|
|
struct winlink *wl;
|
2007-08-27 12:05:15 +00:00
|
|
|
u_int i, j;
|
2007-08-27 15:28:07 +00:00
|
|
|
int destroyed;
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-09-27 09:15:58 +00:00
|
|
|
log_debug("lost window %d", w->fd);
|
|
|
|
|
2007-08-27 15:28:07 +00:00
|
|
|
for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
|
|
|
|
s = ARRAY_ITEM(&sessions, i);
|
|
|
|
if (s == NULL)
|
2007-08-27 12:05:15 +00:00
|
|
|
continue;
|
2007-08-27 15:28:07 +00:00
|
|
|
if (!session_has(s, w))
|
2007-08-27 12:05:15 +00:00
|
|
|
continue;
|
|
|
|
|
2007-10-26 12:29:07 +00:00
|
|
|
restart:
|
2007-12-04 20:25:17 +00:00
|
|
|
/* Detach window and either redraw or kill clients. */
|
2007-10-26 12:29:07 +00:00
|
|
|
RB_FOREACH(wl, winlinks, &s->windows) {
|
|
|
|
if (wl->window != w)
|
2007-08-27 12:05:15 +00:00
|
|
|
continue;
|
2007-10-26 12:29:07 +00:00
|
|
|
destroyed = session_detach(s, wl);
|
|
|
|
for (j = 0; j < ARRAY_LENGTH(&clients); j++) {
|
|
|
|
c = ARRAY_ITEM(&clients, j);
|
|
|
|
if (c == NULL || c->session != s)
|
|
|
|
continue;
|
|
|
|
if (!destroyed) {
|
|
|
|
server_redraw_client(c);
|
|
|
|
continue;
|
|
|
|
}
|
2007-08-27 15:28:07 +00:00
|
|
|
c->session = NULL;
|
2007-09-26 18:09:23 +00:00
|
|
|
server_write_client(c, MSG_EXIT, NULL, 0);
|
2007-10-26 12:29:07 +00:00
|
|
|
}
|
2007-12-04 20:25:17 +00:00
|
|
|
/* If the session was destroyed, bail now. */
|
|
|
|
if (destroyed)
|
|
|
|
break;
|
2007-10-26 12:29:07 +00:00
|
|
|
goto restart;
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
|
|
|
}
|
2007-10-04 19:03:52 +00:00
|
|
|
|
|
|
|
recalculate_sizes();
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
|
|
|
|