Similarly for MSG_COMMAND - allow full imsg limit not arbitrary 2048.
[tmux-openbsd.git] / session.c
blobf967de192315487d271765ce5d0a81638acfc6c2
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/time.h>
22 #include <paths.h>
23 #include <string.h>
24 #include <stdlib.h>
25 #include <unistd.h>
26 #include <time.h>
28 #include "tmux.h"
30 /* Global session list. */
31 struct sessions sessions;
32 struct sessions dead_sessions;
33 u_int next_session_id;
34 struct session_groups session_groups;
36 struct winlink *session_next_alert(struct winlink *);
37 struct winlink *session_previous_alert(struct winlink *);
39 RB_GENERATE(sessions, session, entry, session_cmp);
41 int
42 session_cmp(struct session *s1, struct session *s2)
44 return (strcmp(s1->name, s2->name));
48 * Find if session is still alive. This is true if it is still on the global
49 * sessions list.
51 int
52 session_alive(struct session *s)
54 struct session *s_loop;
56 RB_FOREACH(s_loop, sessions, &sessions) {
57 if (s_loop == s)
58 return (1);
60 return (0);
63 /* Find session by name. */
64 struct session *
65 session_find(const char *name)
67 struct session s;
69 s.name = (char *) name;
70 return (RB_FIND(sessions, &sessions, &s));
73 /* Find session by id. */
74 struct session *
75 session_find_by_id(u_int id)
77 struct session *s;
79 RB_FOREACH(s, sessions, &sessions) {
80 if (s->id == id)
81 return (s);
83 return (NULL);
86 /* Create a new session. */
87 struct session *
88 session_create(const char *name, const char *cmd, const char *cwd,
89 struct environ *env, struct termios *tio, int idx, u_int sx, u_int sy,
90 char **cause)
92 struct session *s;
94 s = xmalloc(sizeof *s);
95 s->references = 0;
96 s->flags = 0;
98 if (gettimeofday(&s->creation_time, NULL) != 0)
99 fatal("gettimeofday failed");
100 session_update_activity(s);
102 s->cwd = xstrdup(cwd);
104 s->curw = NULL;
105 TAILQ_INIT(&s->lastw);
106 RB_INIT(&s->windows);
108 options_init(&s->options, &global_s_options);
109 environ_init(&s->environ);
110 if (env != NULL)
111 environ_copy(env, &s->environ);
113 s->tio = NULL;
114 if (tio != NULL) {
115 s->tio = xmalloc(sizeof *s->tio);
116 memcpy(s->tio, tio, sizeof *s->tio);
119 s->sx = sx;
120 s->sy = sy;
122 if (name != NULL) {
123 s->name = xstrdup(name);
124 s->id = next_session_id++;
125 } else {
126 s->name = NULL;
127 do {
128 s->id = next_session_id++;
129 free (s->name);
130 xasprintf(&s->name, "%u", s->id);
131 } while (RB_FIND(sessions, &sessions, s) != NULL);
133 RB_INSERT(sessions, &sessions, s);
135 if (cmd != NULL) {
136 if (session_new(s, NULL, cmd, cwd, idx, cause) == NULL) {
137 session_destroy(s);
138 return (NULL);
140 session_select(s, RB_ROOT(&s->windows)->idx);
143 log_debug("session %s created", s->name);
144 notify_session_created(s);
146 return (s);
149 /* Destroy a session. */
150 void
151 session_destroy(struct session *s)
153 struct winlink *wl;
155 log_debug("session %s destroyed", s->name);
157 RB_REMOVE(sessions, &sessions, s);
158 notify_session_closed(s);
160 free(s->tio);
162 session_group_remove(s);
163 environ_free(&s->environ);
164 options_free(&s->options);
166 while (!TAILQ_EMPTY(&s->lastw))
167 winlink_stack_remove(&s->lastw, TAILQ_FIRST(&s->lastw));
168 while (!RB_EMPTY(&s->windows)) {
169 wl = RB_ROOT(&s->windows);
170 notify_window_unlinked(s, wl->window);
171 winlink_remove(&s->windows, wl);
174 free(s->cwd);
176 RB_INSERT(sessions, &dead_sessions, s);
179 /* Check a session name is valid: not empty and no colons. */
181 session_check_name(const char *name)
183 return (*name != '\0' && strchr(name, ':') == NULL);
186 /* Update session active time. */
187 void
188 session_update_activity(struct session *s)
190 if (gettimeofday(&s->activity_time, NULL) != 0)
191 fatal("gettimeofday");
194 /* Find the next usable session. */
195 struct session *
196 session_next_session(struct session *s)
198 struct session *s2;
200 if (RB_EMPTY(&sessions) || !session_alive(s))
201 return (NULL);
203 s2 = RB_NEXT(sessions, &sessions, s);
204 if (s2 == NULL)
205 s2 = RB_MIN(sessions, &sessions);
206 if (s2 == s)
207 return (NULL);
208 return (s2);
211 /* Find the previous usable session. */
212 struct session *
213 session_previous_session(struct session *s)
215 struct session *s2;
217 if (RB_EMPTY(&sessions) || !session_alive(s))
218 return (NULL);
220 s2 = RB_PREV(sessions, &sessions, s);
221 if (s2 == NULL)
222 s2 = RB_MAX(sessions, &sessions);
223 if (s2 == s)
224 return (NULL);
225 return (s2);
228 /* Create a new window on a session. */
229 struct winlink *
230 session_new(struct session *s,
231 const char *name, const char *cmd, const char *cwd, int idx, char **cause)
233 struct window *w;
234 struct winlink *wl;
235 struct environ env;
236 const char *shell;
237 u_int hlimit;
239 if ((wl = winlink_add(&s->windows, idx)) == NULL) {
240 xasprintf(cause, "index in use: %d", idx);
241 return (NULL);
244 environ_init(&env);
245 environ_copy(&global_environ, &env);
246 environ_copy(&s->environ, &env);
247 server_fill_environ(s, &env);
249 shell = options_get_string(&s->options, "default-shell");
250 if (*shell == '\0' || areshell(shell))
251 shell = _PATH_BSHELL;
253 hlimit = options_get_number(&s->options, "history-limit");
254 w = window_create(
255 name, cmd, shell, cwd, &env, s->tio, s->sx, s->sy, hlimit, cause);
256 if (w == NULL) {
257 winlink_remove(&s->windows, wl);
258 environ_free(&env);
259 return (NULL);
261 winlink_set_window(wl, w);
262 notify_window_linked(s, w);
263 environ_free(&env);
265 if (options_get_number(&s->options, "set-remain-on-exit"))
266 options_set_number(&w->options, "remain-on-exit", 1);
268 session_group_synchronize_from(s);
269 return (wl);
272 /* Attach a window to a session. */
273 struct winlink *
274 session_attach(struct session *s, struct window *w, int idx, char **cause)
276 struct winlink *wl;
278 if ((wl = winlink_add(&s->windows, idx)) == NULL) {
279 xasprintf(cause, "index in use: %d", idx);
280 return (NULL);
282 winlink_set_window(wl, w);
283 notify_window_linked(s, w);
285 session_group_synchronize_from(s);
286 return (wl);
289 /* Detach a window from a session. */
291 session_detach(struct session *s, struct winlink *wl)
293 if (s->curw == wl &&
294 session_last(s) != 0 && session_previous(s, 0) != 0)
295 session_next(s, 0);
297 wl->flags &= ~WINLINK_ALERTFLAGS;
298 notify_window_unlinked(s, wl->window);
299 winlink_stack_remove(&s->lastw, wl);
300 winlink_remove(&s->windows, wl);
301 session_group_synchronize_from(s);
302 if (RB_EMPTY(&s->windows)) {
303 session_destroy(s);
304 return (1);
306 return (0);
309 /* Return if session has window. */
310 struct winlink *
311 session_has(struct session *s, struct window *w)
313 struct winlink *wl;
315 RB_FOREACH(wl, winlinks, &s->windows) {
316 if (wl->window == w)
317 return (wl);
319 return (NULL);
322 struct winlink *
323 session_next_alert(struct winlink *wl)
325 while (wl != NULL) {
326 if (wl->flags & WINLINK_ALERTFLAGS)
327 break;
328 wl = winlink_next(wl);
330 return (wl);
333 /* Move session to next window. */
335 session_next(struct session *s, int alert)
337 struct winlink *wl;
339 if (s->curw == NULL)
340 return (-1);
342 wl = winlink_next(s->curw);
343 if (alert)
344 wl = session_next_alert(wl);
345 if (wl == NULL) {
346 wl = RB_MIN(winlinks, &s->windows);
347 if (alert && ((wl = session_next_alert(wl)) == NULL))
348 return (-1);
350 return (session_set_current(s, wl));
353 struct winlink *
354 session_previous_alert(struct winlink *wl)
356 while (wl != NULL) {
357 if (wl->flags & WINLINK_ALERTFLAGS)
358 break;
359 wl = winlink_previous(wl);
361 return (wl);
364 /* Move session to previous window. */
366 session_previous(struct session *s, int alert)
368 struct winlink *wl;
370 if (s->curw == NULL)
371 return (-1);
373 wl = winlink_previous(s->curw);
374 if (alert)
375 wl = session_previous_alert(wl);
376 if (wl == NULL) {
377 wl = RB_MAX(winlinks, &s->windows);
378 if (alert && (wl = session_previous_alert(wl)) == NULL)
379 return (-1);
381 return (session_set_current(s, wl));
384 /* Move session to specific window. */
386 session_select(struct session *s, int idx)
388 struct winlink *wl;
390 wl = winlink_find_by_index(&s->windows, idx);
391 return (session_set_current(s, wl));
394 /* Move session to last used window. */
396 session_last(struct session *s)
398 struct winlink *wl;
400 wl = TAILQ_FIRST(&s->lastw);
401 if (wl == NULL)
402 return (-1);
403 if (wl == s->curw)
404 return (1);
406 return (session_set_current(s, wl));
409 /* Set current winlink to wl .*/
411 session_set_current(struct session *s, struct winlink *wl)
413 if (wl == NULL)
414 return (-1);
415 if (wl == s->curw)
416 return (1);
418 winlink_stack_remove(&s->lastw, wl);
419 winlink_stack_push(&s->lastw, s->curw);
420 s->curw = wl;
421 winlink_clear_flags(wl);
422 return (0);
425 /* Find the session group containing a session. */
426 struct session_group *
427 session_group_find(struct session *target)
429 struct session_group *sg;
430 struct session *s;
432 TAILQ_FOREACH(sg, &session_groups, entry) {
433 TAILQ_FOREACH(s, &sg->sessions, gentry) {
434 if (s == target)
435 return (sg);
438 return (NULL);
441 /* Find session group index. */
442 u_int
443 session_group_index(struct session_group *sg)
445 struct session_group *sg2;
446 u_int i;
448 i = 0;
449 TAILQ_FOREACH(sg2, &session_groups, entry) {
450 if (sg == sg2)
451 return (i);
452 i++;
455 fatalx("session group not found");
459 * Add a session to the session group containing target, creating it if
460 * necessary.
462 void
463 session_group_add(struct session *target, struct session *s)
465 struct session_group *sg;
467 if ((sg = session_group_find(target)) == NULL) {
468 sg = xmalloc(sizeof *sg);
469 TAILQ_INSERT_TAIL(&session_groups, sg, entry);
470 TAILQ_INIT(&sg->sessions);
471 TAILQ_INSERT_TAIL(&sg->sessions, target, gentry);
473 TAILQ_INSERT_TAIL(&sg->sessions, s, gentry);
476 /* Remove a session from its group and destroy the group if empty. */
477 void
478 session_group_remove(struct session *s)
480 struct session_group *sg;
482 if ((sg = session_group_find(s)) == NULL)
483 return;
484 TAILQ_REMOVE(&sg->sessions, s, gentry);
485 if (TAILQ_NEXT(TAILQ_FIRST(&sg->sessions), gentry) == NULL)
486 TAILQ_REMOVE(&sg->sessions, TAILQ_FIRST(&sg->sessions), gentry);
487 if (TAILQ_EMPTY(&sg->sessions)) {
488 TAILQ_REMOVE(&session_groups, sg, entry);
489 free(sg);
493 /* Synchronize a session to its session group. */
494 void
495 session_group_synchronize_to(struct session *s)
497 struct session_group *sg;
498 struct session *target;
500 if ((sg = session_group_find(s)) == NULL)
501 return;
503 target = NULL;
504 TAILQ_FOREACH(target, &sg->sessions, gentry) {
505 if (target != s)
506 break;
508 session_group_synchronize1(target, s);
511 /* Synchronize a session group to a session. */
512 void
513 session_group_synchronize_from(struct session *target)
515 struct session_group *sg;
516 struct session *s;
518 if ((sg = session_group_find(target)) == NULL)
519 return;
521 TAILQ_FOREACH(s, &sg->sessions, gentry) {
522 if (s != target)
523 session_group_synchronize1(target, s);
528 * Synchronize a session with a target session. This means destroying all
529 * winlinks then recreating them, then updating the current window, last window
530 * stack and alerts.
532 void
533 session_group_synchronize1(struct session *target, struct session *s)
535 struct winlinks old_windows, *ww;
536 struct winlink_stack old_lastw;
537 struct winlink *wl, *wl2;
539 /* Don't do anything if the session is empty (it'll be destroyed). */
540 ww = &target->windows;
541 if (RB_EMPTY(ww))
542 return;
544 /* If the current window has vanished, move to the next now. */
545 if (s->curw != NULL &&
546 winlink_find_by_index(ww, s->curw->idx) == NULL &&
547 session_last(s) != 0 && session_previous(s, 0) != 0)
548 session_next(s, 0);
550 /* Save the old pointer and reset it. */
551 memcpy(&old_windows, &s->windows, sizeof old_windows);
552 RB_INIT(&s->windows);
554 /* Link all the windows from the target. */
555 RB_FOREACH(wl, winlinks, ww) {
556 wl2 = winlink_add(&s->windows, wl->idx);
557 winlink_set_window(wl2, wl->window);
558 notify_window_linked(s, wl2->window);
559 wl2->flags |= wl->flags & WINLINK_ALERTFLAGS;
562 /* Fix up the current window. */
563 if (s->curw != NULL)
564 s->curw = winlink_find_by_index(&s->windows, s->curw->idx);
565 else
566 s->curw = winlink_find_by_index(&s->windows, target->curw->idx);
568 /* Fix up the last window stack. */
569 memcpy(&old_lastw, &s->lastw, sizeof old_lastw);
570 TAILQ_INIT(&s->lastw);
571 TAILQ_FOREACH(wl, &old_lastw, sentry) {
572 wl2 = winlink_find_by_index(&s->windows, wl->idx);
573 if (wl2 != NULL)
574 TAILQ_INSERT_TAIL(&s->lastw, wl2, sentry);
577 /* Then free the old winlinks list. */
578 while (!RB_EMPTY(&old_windows)) {
579 wl = RB_ROOT(&old_windows);
580 if (winlink_find_by_window_id(&s->windows, wl->window->id) == NULL)
581 notify_window_unlinked(s, wl->window);
582 winlink_remove(&old_windows, wl);
586 /* Renumber the windows across winlinks attached to a specific session. */
587 void
588 session_renumber_windows(struct session *s)
590 struct winlink *wl, *wl1, *wl_new;
591 struct winlinks old_wins;
592 struct winlink_stack old_lastw;
593 int new_idx, new_curw_idx;
595 /* Save and replace old window list. */
596 memcpy(&old_wins, &s->windows, sizeof old_wins);
597 RB_INIT(&s->windows);
599 /* Start renumbering from the base-index if it's set. */
600 new_idx = options_get_number(&s->options, "base-index");
601 new_curw_idx = 0;
603 /* Go through the winlinks and assign new indexes. */
604 RB_FOREACH(wl, winlinks, &old_wins) {
605 wl_new = winlink_add(&s->windows, new_idx);
606 winlink_set_window(wl_new, wl->window);
607 wl_new->flags |= wl->flags & WINLINK_ALERTFLAGS;
609 if (wl == s->curw)
610 new_curw_idx = wl_new->idx;
612 new_idx++;
615 /* Fix the stack of last windows now. */
616 memcpy(&old_lastw, &s->lastw, sizeof old_lastw);
617 TAILQ_INIT(&s->lastw);
618 TAILQ_FOREACH(wl, &old_lastw, sentry) {
619 wl_new = winlink_find_by_window(&s->windows, wl->window);
620 if (wl_new != NULL)
621 TAILQ_INSERT_TAIL(&s->lastw, wl_new, sentry);
624 /* Set the current window. */
625 s->curw = winlink_find_by_index(&s->windows, new_curw_idx);
627 /* Free the old winlinks (reducing window references too). */
628 RB_FOREACH_SAFE(wl, winlinks, &old_wins, wl1)
629 winlink_remove(&old_wins, wl);