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>
42 * Main server functions.
46 struct clients clients
;
47 struct clients dead_clients
;
51 struct event server_ev_accept
;
52 struct event server_ev_second
;
54 struct paste_stack global_buffers
;
56 int server_create_socket(void);
57 void server_loop(void);
58 int server_should_shutdown(void);
59 void server_send_shutdown(void);
60 void server_clean_dead(void);
61 void server_accept_callback(int, short, void *);
62 void server_signal_callback(int, short, void *);
63 void server_child_signal(void);
64 void server_child_exited(pid_t
, int);
65 void server_child_stopped(pid_t
, int);
66 void server_second_callback(int, short, void *);
67 void server_lock_server(void);
68 void server_lock_sessions(void);
70 /* Create server socket. */
72 server_create_socket(void)
74 struct sockaddr_un sa
;
79 memset(&sa
, 0, sizeof sa
);
80 sa
.sun_family
= AF_UNIX
;
81 size
= strlcpy(sa
.sun_path
, socket_path
, sizeof sa
.sun_path
);
82 if (size
>= sizeof sa
.sun_path
) {
84 fatal("socket failed");
88 if ((fd
= socket(AF_UNIX
, SOCK_STREAM
, 0)) == -1)
89 fatal("socket failed");
91 mask
= umask(S_IXUSR
|S_IXGRP
|S_IRWXO
);
92 if (bind(fd
, (struct sockaddr
*) &sa
, SUN_LEN(&sa
)) == -1)
96 if (listen(fd
, 16) == -1)
97 fatal("listen failed");
100 server_update_socket();
105 /* Fork new server. */
109 struct window_pane
*wp
;
115 /* The first client is special and gets a socketpair; create it. */
116 if (socketpair(AF_UNIX
, SOCK_STREAM
, PF_UNSPEC
, pair
) != 0)
117 fatal("socketpair failed");
121 fatal("fork failed");
131 * Must daemonise before loading configuration as the PID changes so
132 * $TMUX would be wrong for sessions created in the config file.
134 if (daemon(1, 0) != 0)
135 fatal("daemon failed");
137 /* event_init() was called in our parent, need to reinit. */
138 if (event_reinit(ev_base
) != 0)
139 fatal("event_reinit failed");
143 log_debug("server started, pid %ld", (long) getpid());
145 ARRAY_INIT(&windows
);
146 RB_INIT(&all_window_panes
);
147 ARRAY_INIT(&clients
);
148 ARRAY_INIT(&dead_clients
);
150 RB_INIT(&dead_sessions
);
151 TAILQ_INIT(&session_groups
);
152 ARRAY_INIT(&global_buffers
);
153 mode_key_init_trees();
157 start_time
= time(NULL
);
158 log_debug("socket path %s", socket_path
);
159 setproctitle("server (%s)", socket_path
);
161 server_fd
= server_create_socket();
162 server_client_create(pair
[1]);
164 if (access(SYSTEM_CFG
, R_OK
) == 0)
165 load_cfg(SYSTEM_CFG
, NULL
, &cfg_causes
);
166 else if (errno
!= ENOENT
) {
168 &cfg_causes
, "%s: %s", strerror(errno
), SYSTEM_CFG
);
170 if (cfg_file
!= NULL
)
171 load_cfg(cfg_file
, NULL
, &cfg_causes
);
174 * If there is a session already, put the current window and pane into
177 if (!RB_EMPTY(&sessions
) && !ARRAY_EMPTY(&cfg_causes
)) {
178 wp
= RB_MIN(sessions
, &sessions
)->curw
->window
->active
;
179 window_pane_set_mode(wp
, &window_copy_mode
);
180 window_copy_init_for_output(wp
);
181 for (i
= 0; i
< ARRAY_LENGTH(&cfg_causes
); i
++) {
182 cause
= ARRAY_ITEM(&cfg_causes
, i
);
183 window_copy_add(wp
, "%s", cause
);
186 ARRAY_FREE(&cfg_causes
);
190 event_set(&server_ev_accept
,
191 server_fd
, EV_READ
|EV_PERSIST
, server_accept_callback
, NULL
);
192 event_add(&server_ev_accept
, NULL
);
194 memset(&tv
, 0, sizeof tv
);
196 evtimer_set(&server_ev_second
, server_second_callback
, NULL
);
197 evtimer_add(&server_ev_second
, &tv
);
199 set_signals(server_signal_callback
);
204 /* Main server loop. */
208 while (!server_should_shutdown()) {
209 event_loop(EVLOOP_ONCE
);
211 server_window_loop();
212 server_client_loop();
214 key_bindings_clean();
219 /* Check if the server should be shutting down (no more clients or sessions). */
221 server_should_shutdown(void)
225 if (!options_get_number(&global_options
, "exit-unattached")) {
226 if (!RB_EMPTY(&sessions
))
229 for (i
= 0; i
< ARRAY_LENGTH(&clients
); i
++) {
230 if (ARRAY_ITEM(&clients
, i
) != NULL
)
236 /* Shutdown the server by killing all clients and windows. */
238 server_send_shutdown(void)
241 struct session
*s
, *next_s
;
244 for (i
= 0; i
< ARRAY_LENGTH(&clients
); i
++) {
245 c
= ARRAY_ITEM(&clients
, i
);
247 if (c
->flags
& (CLIENT_BAD
|CLIENT_SUSPENDED
))
248 server_client_lost(c
);
250 server_write_client(c
, MSG_SHUTDOWN
, NULL
, 0);
255 s
= RB_MIN(sessions
, &sessions
);
257 next_s
= RB_NEXT(sessions
, &sessions
, s
);
263 /* Free dead, unreferenced clients and sessions. */
265 server_clean_dead(void)
267 struct session
*s
, *next_s
;
271 s
= RB_MIN(sessions
, &dead_sessions
);
273 next_s
= RB_NEXT(sessions
, &dead_sessions
, s
);
274 if (s
->references
== 0) {
275 RB_REMOVE(sessions
, &dead_sessions
, s
);
282 for (i
= 0; i
< ARRAY_LENGTH(&dead_clients
); i
++) {
283 c
= ARRAY_ITEM(&dead_clients
, i
);
284 if (c
== NULL
|| c
->references
!= 0)
286 ARRAY_SET(&dead_clients
, i
, NULL
);
291 /* Update socket execute permissions based on whether sessions are attached. */
293 server_update_socket(void)
296 static int last
= -1;
301 RB_FOREACH(s
, sessions
, &sessions
) {
302 if (!(s
->flags
& SESSION_UNATTACHED
)) {
311 if (stat(socket_path
, &sb
) != 0)
322 mode
&= ~(S_IXUSR
|S_IXGRP
|S_IXOTH
);
323 chmod(socket_path
, mode
);
327 /* Callback for server socket. */
330 server_accept_callback(int fd
, short events
, unused
void *data
)
332 struct sockaddr_storage sa
;
333 socklen_t slen
= sizeof sa
;
336 if (!(events
& EV_READ
))
339 newfd
= accept(fd
, (struct sockaddr
*) &sa
, &slen
);
341 if (errno
== EAGAIN
|| errno
== EINTR
|| errno
== ECONNABORTED
)
343 fatal("accept failed");
345 if (server_shutdown
) {
349 server_client_create(newfd
);
352 /* Signal handler. */
355 server_signal_callback(int sig
, unused
short events
, unused
void *data
)
360 server_send_shutdown();
363 server_child_signal();
366 event_del(&server_ev_accept
);
368 server_fd
= server_create_socket();
369 event_set(&server_ev_accept
, server_fd
,
370 EV_READ
|EV_PERSIST
, server_accept_callback
, NULL
);
371 event_add(&server_ev_accept
, NULL
);
376 /* Handle SIGCHLD. */
378 server_child_signal(void)
384 switch (pid
= waitpid(WAIT_ANY
, &status
, WNOHANG
|WUNTRACED
)) {
388 fatal("waitpid failed");
392 if (WIFSTOPPED(status
))
393 server_child_stopped(pid
, status
);
394 else if (WIFEXITED(status
) || WIFSIGNALED(status
))
395 server_child_exited(pid
, status
);
399 /* Handle exited children. */
401 server_child_exited(pid_t pid
, int status
)
404 struct window_pane
*wp
;
408 for (i
= 0; i
< ARRAY_LENGTH(&windows
); i
++) {
409 if ((w
= ARRAY_ITEM(&windows
, i
)) == NULL
)
411 TAILQ_FOREACH(wp
, &w
->panes
, entry
) {
412 if (wp
->pid
== pid
) {
413 server_destroy_pane(wp
);
419 LIST_FOREACH(job
, &all_jobs
, lentry
) {
420 if (pid
== job
->pid
) {
421 job_died(job
, status
); /* might free job */
427 /* Handle stopped children. */
429 server_child_stopped(pid_t pid
, int status
)
432 struct window_pane
*wp
;
435 if (WSTOPSIG(status
) == SIGTTIN
|| WSTOPSIG(status
) == SIGTTOU
)
438 for (i
= 0; i
< ARRAY_LENGTH(&windows
); i
++) {
439 if ((w
= ARRAY_ITEM(&windows
, i
)) == NULL
)
441 TAILQ_FOREACH(wp
, &w
->panes
, entry
) {
442 if (wp
->pid
== pid
) {
443 if (killpg(pid
, SIGCONT
) != 0)
450 /* Handle once-per-second timer events. */
453 server_second_callback(unused
int fd
, unused
short events
, unused
void *arg
)
456 struct window_pane
*wp
;
460 if (options_get_number(&global_s_options
, "lock-server"))
461 server_lock_server();
463 server_lock_sessions();
465 for (i
= 0; i
< ARRAY_LENGTH(&windows
); i
++) {
466 w
= ARRAY_ITEM(&windows
, i
);
470 TAILQ_FOREACH(wp
, &w
->panes
, entry
) {
471 if (wp
->mode
!= NULL
&& wp
->mode
->timer
!= NULL
)
476 server_client_status_timer();
478 evtimer_del(&server_ev_second
);
479 memset(&tv
, 0, sizeof tv
);
481 evtimer_add(&server_ev_second
, &tv
);
484 /* Lock the server if ALL sessions have hit the time limit. */
486 server_lock_server(void)
493 RB_FOREACH(s
, sessions
, &sessions
) {
494 if (s
->flags
& SESSION_UNATTACHED
)
496 timeout
= options_get_number(&s
->options
, "lock-after-time");
497 if (timeout
<= 0 || t
<= s
->activity_time
.tv_sec
+ timeout
)
498 return; /* not timed out */
505 /* Lock any sessions which have timed out. */
507 server_lock_sessions(void)
514 RB_FOREACH(s
, sessions
, &sessions
) {
515 if (s
->flags
& SESSION_UNATTACHED
)
517 timeout
= options_get_number(&s
->options
, "lock-after-time");
518 if (timeout
> 0 && t
> s
->activity_time
.tv_sec
+ timeout
) {
519 server_lock_session(s
);