Skip NULL entries in the sessions list when choosing the next session,
[tmux-openbsd.git] / server.c
blob7dfd5be6fd690409c91c439520fc0cfdaa060240
1 /* $OpenBSD$ */
3 /*
4 * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
15 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
16 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 #include <sys/types.h>
20 #include <sys/ioctl.h>
21 #include <sys/socket.h>
22 #include <sys/stat.h>
23 #include <sys/un.h>
24 #include <sys/wait.h>
26 #include <errno.h>
27 #include <event.h>
28 #include <fcntl.h>
29 #include <paths.h>
30 #include <signal.h>
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <string.h>
34 #include <syslog.h>
35 #include <termios.h>
36 #include <time.h>
37 #include <unistd.h>
39 #include "tmux.h"
42 * Main server functions.
45 /* Client list. */
46 struct clients clients;
47 struct clients dead_clients;
49 int server_fd;
50 int server_shutdown;
51 struct event server_ev_accept;
52 struct event server_ev_second;
54 int server_create_socket(void);
55 void server_loop(void);
56 int server_should_shutdown(void);
57 void server_send_shutdown(void);
58 void server_clean_dead(void);
59 void server_accept_callback(int, short, void *);
60 void server_signal_callback(int, short, void *);
61 void server_child_signal(void);
62 void server_child_exited(pid_t, int);
63 void server_child_stopped(pid_t, int);
64 void server_second_callback(int, short, void *);
65 void server_lock_server(void);
66 void server_lock_sessions(void);
68 /* Create server socket. */
69 int
70 server_create_socket(void)
72 struct sockaddr_un sa;
73 size_t size;
74 mode_t mask;
75 int fd, mode;
77 memset(&sa, 0, sizeof sa);
78 sa.sun_family = AF_UNIX;
79 size = strlcpy(sa.sun_path, socket_path, sizeof sa.sun_path);
80 if (size >= sizeof sa.sun_path) {
81 errno = ENAMETOOLONG;
82 fatal("socket failed");
84 unlink(sa.sun_path);
86 if ((fd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1)
87 fatal("socket failed");
89 mask = umask(S_IXUSR|S_IXGRP|S_IRWXO);
90 if (bind(fd, (struct sockaddr *) &sa, SUN_LEN(&sa)) == -1)
91 fatal("bind failed");
92 umask(mask);
94 if (listen(fd, 16) == -1)
95 fatal("listen failed");
97 if ((mode = fcntl(fd, F_GETFL)) == -1)
98 fatal("fcntl failed");
99 if (fcntl(fd, F_SETFL, mode|O_NONBLOCK) == -1)
100 fatal("fcntl failed");
101 if (fcntl(fd, F_SETFD, FD_CLOEXEC) == -1)
102 fatal("fcntl failed");
104 server_update_socket();
106 return (fd);
109 /* Fork new server. */
111 server_start(char *path)
113 struct window_pane *wp;
114 int pair[2];
115 char rpathbuf[MAXPATHLEN], *cause;
116 struct timeval tv;
117 u_int i;
119 /* The first client is special and gets a socketpair; create it. */
120 if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, pair) != 0)
121 fatal("socketpair failed");
123 switch (fork()) {
124 case -1:
125 fatal("fork failed");
126 case 0:
127 break;
128 default:
129 close(pair[1]);
130 return (pair[0]);
132 close(pair[0]);
135 * Must daemonise before loading configuration as the PID changes so
136 * $TMUX would be wrong for sessions created in the config file.
138 if (daemon(1, 0) != 0)
139 fatal("daemon failed");
141 /* event_init() was called in our parent, need to reinit. */
142 if (event_reinit(ev_base) != 0)
143 fatal("event_reinit failed");
144 clear_signals(0);
146 logfile("server");
147 log_debug("server started, pid %ld", (long) getpid());
149 ARRAY_INIT(&windows);
150 ARRAY_INIT(&clients);
151 ARRAY_INIT(&dead_clients);
152 ARRAY_INIT(&sessions);
153 ARRAY_INIT(&dead_sessions);
154 TAILQ_INIT(&session_groups);
155 mode_key_init_trees();
156 key_bindings_init();
157 utf8_build();
159 start_time = time(NULL);
160 socket_path = path;
162 if (realpath(socket_path, rpathbuf) == NULL)
163 strlcpy(rpathbuf, socket_path, sizeof rpathbuf);
164 log_debug("socket path %s", socket_path);
165 setproctitle("server (%s)", rpathbuf);
167 server_fd = server_create_socket();
168 server_client_create(pair[1]);
170 if (access(SYSTEM_CFG, R_OK) == 0)
171 load_cfg(SYSTEM_CFG, NULL, &cfg_causes);
172 else if (errno != ENOENT) {
173 cfg_add_cause(
174 &cfg_causes, "%s: %s", strerror(errno), SYSTEM_CFG);
176 if (cfg_file != NULL)
177 load_cfg(cfg_file, NULL, &cfg_causes);
180 * If there is a session already, put the current window and pane into
181 * more mode.
183 if (!ARRAY_EMPTY(&sessions) && !ARRAY_EMPTY(&cfg_causes)) {
184 wp = ARRAY_FIRST(&sessions)->curw->window->active;
185 window_pane_set_mode(wp, &window_copy_mode);
186 window_copy_init_for_output(wp);
187 for (i = 0; i < ARRAY_LENGTH(&cfg_causes); i++) {
188 cause = ARRAY_ITEM(&cfg_causes, i);
189 window_copy_add(wp, "%s", cause);
190 xfree(cause);
192 ARRAY_FREE(&cfg_causes);
194 cfg_finished = 1;
196 event_set(&server_ev_accept,
197 server_fd, EV_READ|EV_PERSIST, server_accept_callback, NULL);
198 event_add(&server_ev_accept, NULL);
200 memset(&tv, 0, sizeof tv);
201 tv.tv_sec = 1;
202 evtimer_set(&server_ev_second, server_second_callback, NULL);
203 evtimer_add(&server_ev_second, &tv);
205 set_signals(server_signal_callback);
206 server_loop();
207 exit(0);
210 /* Main server loop. */
211 void
212 server_loop(void)
214 while (!server_should_shutdown()) {
215 event_loop(EVLOOP_ONCE);
217 server_window_loop();
218 server_client_loop();
220 key_bindings_clean();
221 server_clean_dead();
225 /* Check if the server should be shutting down (no more clients or sessions). */
227 server_should_shutdown(void)
229 u_int i;
231 if (!options_get_number(&global_options, "exit-unattached")) {
232 for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
233 if (ARRAY_ITEM(&sessions, i) != NULL)
234 return (0);
237 for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
238 if (ARRAY_ITEM(&clients, i) != NULL)
239 return (0);
241 return (1);
244 /* Shutdown the server by killing all clients and windows. */
245 void
246 server_send_shutdown(void)
248 struct client *c;
249 struct session *s;
250 u_int i;
252 for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
253 c = ARRAY_ITEM(&clients, i);
254 if (c != NULL) {
255 if (c->flags & (CLIENT_BAD|CLIENT_SUSPENDED))
256 server_client_lost(c);
257 else
258 server_write_client(c, MSG_SHUTDOWN, NULL, 0);
259 c->session = NULL;
263 for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
264 if ((s = ARRAY_ITEM(&sessions, i)) != NULL)
265 session_destroy(s);
269 /* Free dead, unreferenced clients and sessions. */
270 void
271 server_clean_dead(void)
273 struct session *s;
274 struct client *c;
275 u_int i;
277 for (i = 0; i < ARRAY_LENGTH(&dead_sessions); i++) {
278 s = ARRAY_ITEM(&dead_sessions, i);
279 if (s == NULL || s->references != 0)
280 continue;
281 ARRAY_SET(&dead_sessions, i, NULL);
282 xfree(s);
285 for (i = 0; i < ARRAY_LENGTH(&dead_clients); i++) {
286 c = ARRAY_ITEM(&dead_clients, i);
287 if (c == NULL || c->references != 0)
288 continue;
289 ARRAY_SET(&dead_clients, i, NULL);
290 xfree(c);
294 /* Update socket execute permissions based on whether sessions are attached. */
295 void
296 server_update_socket(void)
298 struct session *s;
299 u_int i;
300 static int last = -1;
301 int n, mode;
302 struct stat sb;
304 n = 0;
305 for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
306 s = ARRAY_ITEM(&sessions, i);
307 if (s != NULL && !(s->flags & SESSION_UNATTACHED)) {
308 n++;
309 break;
313 if (n != last) {
314 last = n;
316 if (stat(socket_path, &sb) != 0)
317 return;
318 mode = sb.st_mode;
319 if (n != 0) {
320 if (mode & S_IRUSR)
321 mode |= S_IXUSR;
322 if (mode & S_IRGRP)
323 mode |= S_IXGRP;
324 if (mode & S_IROTH)
325 mode |= S_IXOTH;
326 } else
327 mode &= ~(S_IXUSR|S_IXGRP|S_IXOTH);
328 chmod(socket_path, mode);
332 /* Callback for server socket. */
333 /* ARGSUSED */
334 void
335 server_accept_callback(int fd, short events, unused void *data)
337 struct sockaddr_storage sa;
338 socklen_t slen = sizeof sa;
339 int newfd;
341 if (!(events & EV_READ))
342 return;
344 newfd = accept(fd, (struct sockaddr *) &sa, &slen);
345 if (newfd == -1) {
346 if (errno == EAGAIN || errno == EINTR || errno == ECONNABORTED)
347 return;
348 fatal("accept failed");
350 if (server_shutdown) {
351 close(newfd);
352 return;
354 server_client_create(newfd);
357 /* Signal handler. */
358 /* ARGSUSED */
359 void
360 server_signal_callback(int sig, unused short events, unused void *data)
362 switch (sig) {
363 case SIGTERM:
364 server_shutdown = 1;
365 server_send_shutdown();
366 break;
367 case SIGCHLD:
368 server_child_signal();
369 break;
370 case SIGUSR1:
371 event_del(&server_ev_accept);
372 close(server_fd);
373 server_fd = server_create_socket();
374 event_set(&server_ev_accept, server_fd,
375 EV_READ|EV_PERSIST, server_accept_callback, NULL);
376 event_add(&server_ev_accept, NULL);
377 break;
381 /* Handle SIGCHLD. */
382 void
383 server_child_signal(void)
385 int status;
386 pid_t pid;
388 for (;;) {
389 switch (pid = waitpid(WAIT_ANY, &status, WNOHANG|WUNTRACED)) {
390 case -1:
391 if (errno == ECHILD)
392 return;
393 fatal("waitpid failed");
394 case 0:
395 return;
397 if (WIFSTOPPED(status))
398 server_child_stopped(pid, status);
399 else if (WIFEXITED(status) || WIFSIGNALED(status))
400 server_child_exited(pid, status);
404 /* Handle exited children. */
405 void
406 server_child_exited(pid_t pid, int status)
408 struct window *w;
409 struct window_pane *wp;
410 struct job *job;
411 u_int i;
413 for (i = 0; i < ARRAY_LENGTH(&windows); i++) {
414 if ((w = ARRAY_ITEM(&windows, i)) == NULL)
415 continue;
416 TAILQ_FOREACH(wp, &w->panes, entry) {
417 if (wp->pid == pid) {
418 server_destroy_pane(wp);
419 break;
424 SLIST_FOREACH(job, &all_jobs, lentry) {
425 if (pid == job->pid) {
426 job_died(job, status); /* might free job */
427 break;
432 /* Handle stopped children. */
433 void
434 server_child_stopped(pid_t pid, int status)
436 struct window *w;
437 struct window_pane *wp;
438 u_int i;
440 if (WSTOPSIG(status) == SIGTTIN || WSTOPSIG(status) == SIGTTOU)
441 return;
443 for (i = 0; i < ARRAY_LENGTH(&windows); i++) {
444 if ((w = ARRAY_ITEM(&windows, i)) == NULL)
445 continue;
446 TAILQ_FOREACH(wp, &w->panes, entry) {
447 if (wp->pid == pid) {
448 if (killpg(pid, SIGCONT) != 0)
449 kill(pid, SIGCONT);
455 /* Handle once-per-second timer events. */
456 /* ARGSUSED */
457 void
458 server_second_callback(unused int fd, unused short events, unused void *arg)
460 struct window *w;
461 struct window_pane *wp;
462 struct timeval tv;
463 u_int i;
465 if (options_get_number(&global_s_options, "lock-server"))
466 server_lock_server();
467 else
468 server_lock_sessions();
470 for (i = 0; i < ARRAY_LENGTH(&windows); i++) {
471 w = ARRAY_ITEM(&windows, i);
472 if (w == NULL)
473 continue;
475 TAILQ_FOREACH(wp, &w->panes, entry) {
476 if (wp->mode != NULL && wp->mode->timer != NULL)
477 wp->mode->timer(wp);
481 server_client_status_timer();
483 evtimer_del(&server_ev_second);
484 memset(&tv, 0, sizeof tv);
485 tv.tv_sec = 1;
486 evtimer_add(&server_ev_second, &tv);
489 /* Lock the server if ALL sessions have hit the time limit. */
490 void
491 server_lock_server(void)
493 struct session *s;
494 u_int i;
495 int timeout;
496 time_t t;
498 t = time(NULL);
499 for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
500 if ((s = ARRAY_ITEM(&sessions, i)) == NULL)
501 continue;
503 if (s->flags & SESSION_UNATTACHED) {
504 if (gettimeofday(&s->activity_time, NULL) != 0)
505 fatal("gettimeofday failed");
506 continue;
509 timeout = options_get_number(&s->options, "lock-after-time");
510 if (timeout <= 0 || t <= s->activity_time.tv_sec + timeout)
511 return; /* not timed out */
514 server_lock();
515 recalculate_sizes();
518 /* Lock any sessions which have timed out. */
519 void
520 server_lock_sessions(void)
522 struct session *s;
523 u_int i;
524 int timeout;
525 time_t t;
527 t = time(NULL);
528 for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
529 if ((s = ARRAY_ITEM(&sessions, i)) == NULL)
530 continue;
532 if (s->flags & SESSION_UNATTACHED) {
533 if (gettimeofday(&s->activity_time, NULL) != 0)
534 fatal("gettimeofday failed");
535 continue;
538 timeout = options_get_number(&s->options, "lock-after-time");
539 if (timeout > 0 && t > s->activity_time.tv_sec + timeout) {
540 server_lock_session(s);
541 recalculate_sizes();