1 /* $OpenBSD: session.c,v 1.88 2021/07/06 08:18:38 nicm Exp $ */ 2 3 /* 4 * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> 5 * 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. 9 * 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. 17 */ 18 19 #include <sys/types.h> 20 #include <sys/time.h> 21 22 #include <paths.h> 23 #include <string.h> 24 #include <stdlib.h> 25 #include <unistd.h> 26 #include <vis.h> 27 #include <time.h> 28 29 #include "tmux.h" 30 31 struct sessions sessions; 32 static u_int next_session_id; 33 struct session_groups session_groups = RB_INITIALIZER(&session_groups); 34 35 static void session_free(int, short, void *); 36 37 static void session_lock_timer(int, short, void *); 38 39 static struct winlink *session_next_alert(struct winlink *); 40 static struct winlink *session_previous_alert(struct winlink *); 41 42 static void session_group_remove(struct session *); 43 static void session_group_synchronize1(struct session *, struct session *); 44 45 int 46 session_cmp(struct session *s1, struct session *s2) 47 { 48 return (strcmp(s1->name, s2->name)); 49 } 50 RB_GENERATE(sessions, session, entry, session_cmp); 51 52 static int 53 session_group_cmp(struct session_group *s1, struct session_group *s2) 54 { 55 return (strcmp(s1->name, s2->name)); 56 } 57 RB_GENERATE_STATIC(session_groups, session_group, entry, session_group_cmp); 58 59 /* 60 * Find if session is still alive. This is true if it is still on the global 61 * sessions list. 62 */ 63 int 64 session_alive(struct session *s) 65 { 66 struct session *s_loop; 67 68 RB_FOREACH(s_loop, sessions, &sessions) { 69 if (s_loop == s) 70 return (1); 71 } 72 return (0); 73 } 74 75 /* Find session by name. */ 76 struct session * 77 session_find(const char *name) 78 { 79 struct session s; 80 81 s.name = (char *) name; 82 return (RB_FIND(sessions, &sessions, &s)); 83 } 84 85 /* Find session by id parsed from a string. */ 86 struct session * 87 session_find_by_id_str(const char *s) 88 { 89 const char *errstr; 90 u_int id; 91 92 if (*s != '$') 93 return (NULL); 94 95 id = strtonum(s + 1, 0, UINT_MAX, &errstr); 96 if (errstr != NULL) 97 return (NULL); 98 return (session_find_by_id(id)); 99 } 100 101 /* Find session by id. */ 102 struct session * 103 session_find_by_id(u_int id) 104 { 105 struct session *s; 106 107 RB_FOREACH(s, sessions, &sessions) { 108 if (s->id == id) 109 return (s); 110 } 111 return (NULL); 112 } 113 114 /* Create a new session. */ 115 struct session * 116 session_create(const char *prefix, const char *name, const char *cwd, 117 struct environ *env, struct options *oo, struct termios *tio) 118 { 119 struct session *s; 120 121 s = xcalloc(1, sizeof *s); 122 s->references = 1; 123 s->flags = 0; 124 125 s->cwd = xstrdup(cwd); 126 127 TAILQ_INIT(&s->lastw); 128 RB_INIT(&s->windows); 129 130 s->environ = env; 131 s->options = oo; 132 133 status_update_cache(s); 134 135 s->tio = NULL; 136 if (tio != NULL) { 137 s->tio = xmalloc(sizeof *s->tio); 138 memcpy(s->tio, tio, sizeof *s->tio); 139 } 140 141 if (name != NULL) { 142 s->name = xstrdup(name); 143 s->id = next_session_id++; 144 } else { 145 do { 146 s->id = next_session_id++; 147 free(s->name); 148 if (prefix != NULL) 149 xasprintf(&s->name, "%s-%u", prefix, s->id); 150 else 151 xasprintf(&s->name, "%u", s->id); 152 } while (RB_FIND(sessions, &sessions, s) != NULL); 153 } 154 RB_INSERT(sessions, &sessions, s); 155 156 log_debug("new session %s $%u", s->name, s->id); 157 158 if (gettimeofday(&s->creation_time, NULL) != 0) 159 fatal("gettimeofday failed"); 160 session_update_activity(s, &s->creation_time); 161 162 return (s); 163 } 164 165 /* Add a reference to a session. */ 166 void 167 session_add_ref(struct session *s, const char *from) 168 { 169 s->references++; 170 log_debug("%s: %s %s, now %d", __func__, s->name, from, s->references); 171 } 172 173 /* Remove a reference from a session. */ 174 void 175 session_remove_ref(struct session *s, const char *from) 176 { 177 s->references--; 178 log_debug("%s: %s %s, now %d", __func__, s->name, from, s->references); 179 180 if (s->references == 0) 181 event_once(-1, EV_TIMEOUT, session_free, s, NULL); 182 } 183 184 /* Free session. */ 185 static void 186 session_free(__unused int fd, __unused short events, void *arg) 187 { 188 struct session *s = arg; 189 190 log_debug("session %s freed (%d references)", s->name, s->references); 191 192 if (s->references == 0) { 193 environ_free(s->environ); 194 options_free(s->options); 195 196 free(s->name); 197 free(s); 198 } 199 } 200 201 /* Destroy a session. */ 202 void 203 session_destroy(struct session *s, int notify, const char *from) 204 { 205 struct winlink *wl; 206 207 log_debug("session %s destroyed (%s)", s->name, from); 208 s->curw = NULL; 209 210 RB_REMOVE(sessions, &sessions, s); 211 if (notify) 212 notify_session("session-closed", s); 213 214 free(s->tio); 215 216 if (event_initialized(&s->lock_timer)) 217 event_del(&s->lock_timer); 218 219 session_group_remove(s); 220 221 while (!TAILQ_EMPTY(&s->lastw)) 222 winlink_stack_remove(&s->lastw, TAILQ_FIRST(&s->lastw)); 223 while (!RB_EMPTY(&s->windows)) { 224 wl = RB_ROOT(&s->windows); 225 notify_session_window("window-unlinked", s, wl->window); 226 winlink_remove(&s->windows, wl); 227 } 228 229 free((void *)s->cwd); 230 231 session_remove_ref(s, __func__); 232 } 233 234 /* Sanitize session name. */ 235 char * 236 session_check_name(const char *name) 237 { 238 char *copy, *cp, *new_name; 239 240 if (*name == '\0') 241 return (NULL); 242 copy = xstrdup(name); 243 for (cp = copy; *cp != '\0'; cp++) { 244 if (*cp == ':' || *cp == '.') 245 *cp = '_'; 246 } 247 utf8_stravis(&new_name, copy, VIS_OCTAL|VIS_CSTYLE|VIS_TAB|VIS_NL); 248 free(copy); 249 return (new_name); 250 } 251 252 /* Lock session if it has timed out. */ 253 static void 254 session_lock_timer(__unused int fd, __unused short events, void *arg) 255 { 256 struct session *s = arg; 257 258 if (s->attached == 0) 259 return; 260 261 log_debug("session %s locked, activity time %lld", s->name, 262 (long long)s->activity_time.tv_sec); 263 264 server_lock_session(s); 265 recalculate_sizes(); 266 } 267 268 /* Update activity time. */ 269 void 270 session_update_activity(struct session *s, struct timeval *from) 271 { 272 struct timeval *last = &s->last_activity_time; 273 struct timeval tv; 274 275 memcpy(last, &s->activity_time, sizeof *last); 276 if (from == NULL) 277 gettimeofday(&s->activity_time, NULL); 278 else 279 memcpy(&s->activity_time, from, sizeof s->activity_time); 280 281 log_debug("session $%u %s activity %lld.%06d (last %lld.%06d)", s->id, 282 s->name, (long long)s->activity_time.tv_sec, 283 (int)s->activity_time.tv_usec, (long long)last->tv_sec, 284 (int)last->tv_usec); 285 286 if (evtimer_initialized(&s->lock_timer)) 287 evtimer_del(&s->lock_timer); 288 else 289 evtimer_set(&s->lock_timer, session_lock_timer, s); 290 291 if (s->attached != 0) { 292 timerclear(&tv); 293 tv.tv_sec = options_get_number(s->options, "lock-after-time"); 294 if (tv.tv_sec != 0) 295 evtimer_add(&s->lock_timer, &tv); 296 } 297 } 298 299 /* Find the next usable session. */ 300 struct session * 301 session_next_session(struct session *s) 302 { 303 struct session *s2; 304 305 if (RB_EMPTY(&sessions) || !session_alive(s)) 306 return (NULL); 307 308 s2 = RB_NEXT(sessions, &sessions, s); 309 if (s2 == NULL) 310 s2 = RB_MIN(sessions, &sessions); 311 if (s2 == s) 312 return (NULL); 313 return (s2); 314 } 315 316 /* Find the previous usable session. */ 317 struct session * 318 session_previous_session(struct session *s) 319 { 320 struct session *s2; 321 322 if (RB_EMPTY(&sessions) || !session_alive(s)) 323 return (NULL); 324 325 s2 = RB_PREV(sessions, &sessions, s); 326 if (s2 == NULL) 327 s2 = RB_MAX(sessions, &sessions); 328 if (s2 == s) 329 return (NULL); 330 return (s2); 331 } 332 333 /* Attach a window to a session. */ 334 struct winlink * 335 session_attach(struct session *s, struct window *w, int idx, char **cause) 336 { 337 struct winlink *wl; 338 339 if ((wl = winlink_add(&s->windows, idx)) == NULL) { 340 xasprintf(cause, "index in use: %d", idx); 341 return (NULL); 342 } 343 wl->session = s; 344 winlink_set_window(wl, w); 345 notify_session_window("window-linked", s, w); 346 347 session_group_synchronize_from(s); 348 return (wl); 349 } 350 351 /* Detach a window from a session. */ 352 int 353 session_detach(struct session *s, struct winlink *wl) 354 { 355 if (s->curw == wl && 356 session_last(s) != 0 && 357 session_previous(s, 0) != 0) 358 session_next(s, 0); 359 360 wl->flags &= ~WINLINK_ALERTFLAGS; 361 notify_session_window("window-unlinked", s, wl->window); 362 winlink_stack_remove(&s->lastw, wl); 363 winlink_remove(&s->windows, wl); 364 365 session_group_synchronize_from(s); 366 367 if (RB_EMPTY(&s->windows)) { 368 session_destroy(s, 1, __func__); 369 return (1); 370 } 371 return (0); 372 } 373 374 /* Return if session has window. */ 375 int 376 session_has(struct session *s, struct window *w) 377 { 378 struct winlink *wl; 379 380 TAILQ_FOREACH(wl, &w->winlinks, wentry) { 381 if (wl->session == s) 382 return (1); 383 } 384 return (0); 385 } 386 387 /* 388 * Return 1 if a window is linked outside this session (not including session 389 * groups). The window must be in this session! 390 */ 391 int 392 session_is_linked(struct session *s, struct window *w) 393 { 394 struct session_group *sg; 395 396 if ((sg = session_group_contains(s)) != NULL) 397 return (w->references != session_group_count(sg)); 398 return (w->references != 1); 399 } 400 401 static struct winlink * 402 session_next_alert(struct winlink *wl) 403 { 404 while (wl != NULL) { 405 if (wl->flags & WINLINK_ALERTFLAGS) 406 break; 407 wl = winlink_next(wl); 408 } 409 return (wl); 410 } 411 412 /* Move session to next window. */ 413 int 414 session_next(struct session *s, int alert) 415 { 416 struct winlink *wl; 417 418 if (s->curw == NULL) 419 return (-1); 420 421 wl = winlink_next(s->curw); 422 if (alert) 423 wl = session_next_alert(wl); 424 if (wl == NULL) { 425 wl = RB_MIN(winlinks, &s->windows); 426 if (alert && ((wl = session_next_alert(wl)) == NULL)) 427 return (-1); 428 } 429 return (session_set_current(s, wl)); 430 } 431 432 static struct winlink * 433 session_previous_alert(struct winlink *wl) 434 { 435 while (wl != NULL) { 436 if (wl->flags & WINLINK_ALERTFLAGS) 437 break; 438 wl = winlink_previous(wl); 439 } 440 return (wl); 441 } 442 443 /* Move session to previous window. */ 444 int 445 session_previous(struct session *s, int alert) 446 { 447 struct winlink *wl; 448 449 if (s->curw == NULL) 450 return (-1); 451 452 wl = winlink_previous(s->curw); 453 if (alert) 454 wl = session_previous_alert(wl); 455 if (wl == NULL) { 456 wl = RB_MAX(winlinks, &s->windows); 457 if (alert && (wl = session_previous_alert(wl)) == NULL) 458 return (-1); 459 } 460 return (session_set_current(s, wl)); 461 } 462 463 /* Move session to specific window. */ 464 int 465 session_select(struct session *s, int idx) 466 { 467 struct winlink *wl; 468 469 wl = winlink_find_by_index(&s->windows, idx); 470 return (session_set_current(s, wl)); 471 } 472 473 /* Move session to last used window. */ 474 int 475 session_last(struct session *s) 476 { 477 struct winlink *wl; 478 479 wl = TAILQ_FIRST(&s->lastw); 480 if (wl == NULL) 481 return (-1); 482 if (wl == s->curw) 483 return (1); 484 485 return (session_set_current(s, wl)); 486 } 487 488 /* Set current winlink to wl .*/ 489 int 490 session_set_current(struct session *s, struct winlink *wl) 491 { 492 if (wl == NULL) 493 return (-1); 494 if (wl == s->curw) 495 return (1); 496 497 winlink_stack_remove(&s->lastw, wl); 498 winlink_stack_push(&s->lastw, s->curw); 499 s->curw = wl; 500 winlink_clear_flags(wl); 501 window_update_activity(wl->window); 502 tty_update_window_offset(wl->window); 503 notify_session("session-window-changed", s); 504 return (0); 505 } 506 507 /* Find the session group containing a session. */ 508 struct session_group * 509 session_group_contains(struct session *target) 510 { 511 struct session_group *sg; 512 struct session *s; 513 514 RB_FOREACH(sg, session_groups, &session_groups) { 515 TAILQ_FOREACH(s, &sg->sessions, gentry) { 516 if (s == target) 517 return (sg); 518 } 519 } 520 return (NULL); 521 } 522 523 /* Find session group by name. */ 524 struct session_group * 525 session_group_find(const char *name) 526 { 527 struct session_group sg; 528 529 sg.name = name; 530 return (RB_FIND(session_groups, &session_groups, &sg)); 531 } 532 533 /* Create a new session group. */ 534 struct session_group * 535 session_group_new(const char *name) 536 { 537 struct session_group *sg; 538 539 if ((sg = session_group_find(name)) != NULL) 540 return (sg); 541 542 sg = xcalloc(1, sizeof *sg); 543 sg->name = xstrdup(name); 544 TAILQ_INIT(&sg->sessions); 545 546 RB_INSERT(session_groups, &session_groups, sg); 547 return (sg); 548 } 549 550 /* Add a session to a session group. */ 551 void 552 session_group_add(struct session_group *sg, struct session *s) 553 { 554 if (session_group_contains(s) == NULL) 555 TAILQ_INSERT_TAIL(&sg->sessions, s, gentry); 556 } 557 558 /* Remove a session from its group and destroy the group if empty. */ 559 static void 560 session_group_remove(struct session *s) 561 { 562 struct session_group *sg; 563 564 if ((sg = session_group_contains(s)) == NULL) 565 return; 566 TAILQ_REMOVE(&sg->sessions, s, gentry); 567 if (TAILQ_EMPTY(&sg->sessions)) { 568 RB_REMOVE(session_groups, &session_groups, sg); 569 free((void *)sg->name); 570 free(sg); 571 } 572 } 573 574 /* Count number of sessions in session group. */ 575 u_int 576 session_group_count(struct session_group *sg) 577 { 578 struct session *s; 579 u_int n; 580 581 n = 0; 582 TAILQ_FOREACH(s, &sg->sessions, gentry) 583 n++; 584 return (n); 585 } 586 587 /* Count number of clients attached to sessions in session group. */ 588 u_int 589 session_group_attached_count(struct session_group *sg) 590 { 591 struct session *s; 592 u_int n; 593 594 n = 0; 595 TAILQ_FOREACH(s, &sg->sessions, gentry) 596 n += s->attached; 597 return (n); 598 } 599 600 /* Synchronize a session to its session group. */ 601 void 602 session_group_synchronize_to(struct session *s) 603 { 604 struct session_group *sg; 605 struct session *target; 606 607 if ((sg = session_group_contains(s)) == NULL) 608 return; 609 610 target = NULL; 611 TAILQ_FOREACH(target, &sg->sessions, gentry) { 612 if (target != s) 613 break; 614 } 615 if (target != NULL) 616 session_group_synchronize1(target, s); 617 } 618 619 /* Synchronize a session group to a session. */ 620 void 621 session_group_synchronize_from(struct session *target) 622 { 623 struct session_group *sg; 624 struct session *s; 625 626 if ((sg = session_group_contains(target)) == NULL) 627 return; 628 629 TAILQ_FOREACH(s, &sg->sessions, gentry) { 630 if (s != target) 631 session_group_synchronize1(target, s); 632 } 633 } 634 635 /* 636 * Synchronize a session with a target session. This means destroying all 637 * winlinks then recreating them, then updating the current window, last window 638 * stack and alerts. 639 */ 640 static void 641 session_group_synchronize1(struct session *target, struct session *s) 642 { 643 struct winlinks old_windows, *ww; 644 struct winlink_stack old_lastw; 645 struct winlink *wl, *wl2; 646 647 /* Don't do anything if the session is empty (it'll be destroyed). */ 648 ww = &target->windows; 649 if (RB_EMPTY(ww)) 650 return; 651 652 /* If the current window has vanished, move to the next now. */ 653 if (s->curw != NULL && 654 winlink_find_by_index(ww, s->curw->idx) == NULL && 655 session_last(s) != 0 && session_previous(s, 0) != 0) 656 session_next(s, 0); 657 658 /* Save the old pointer and reset it. */ 659 memcpy(&old_windows, &s->windows, sizeof old_windows); 660 RB_INIT(&s->windows); 661 662 /* Link all the windows from the target. */ 663 RB_FOREACH(wl, winlinks, ww) { 664 wl2 = winlink_add(&s->windows, wl->idx); 665 wl2->session = s; 666 winlink_set_window(wl2, wl->window); 667 notify_session_window("window-linked", s, wl2->window); 668 wl2->flags |= wl->flags & WINLINK_ALERTFLAGS; 669 } 670 671 /* Fix up the current window. */ 672 if (s->curw != NULL) 673 s->curw = winlink_find_by_index(&s->windows, s->curw->idx); 674 else 675 s->curw = winlink_find_by_index(&s->windows, target->curw->idx); 676 677 /* Fix up the last window stack. */ 678 memcpy(&old_lastw, &s->lastw, sizeof old_lastw); 679 TAILQ_INIT(&s->lastw); 680 TAILQ_FOREACH(wl, &old_lastw, sentry) { 681 wl2 = winlink_find_by_index(&s->windows, wl->idx); 682 if (wl2 != NULL) 683 TAILQ_INSERT_TAIL(&s->lastw, wl2, sentry); 684 } 685 686 /* Then free the old winlinks list. */ 687 while (!RB_EMPTY(&old_windows)) { 688 wl = RB_ROOT(&old_windows); 689 wl2 = winlink_find_by_window_id(&s->windows, wl->window->id); 690 if (wl2 == NULL) 691 notify_session_window("window-unlinked", s, wl->window); 692 winlink_remove(&old_windows, wl); 693 } 694 } 695 696 /* Renumber the windows across winlinks attached to a specific session. */ 697 void 698 session_renumber_windows(struct session *s) 699 { 700 struct winlink *wl, *wl1, *wl_new; 701 struct winlinks old_wins; 702 struct winlink_stack old_lastw; 703 int new_idx, new_curw_idx; 704 705 /* Save and replace old window list. */ 706 memcpy(&old_wins, &s->windows, sizeof old_wins); 707 RB_INIT(&s->windows); 708 709 /* Start renumbering from the base-index if it's set. */ 710 new_idx = options_get_number(s->options, "base-index"); 711 new_curw_idx = 0; 712 713 /* Go through the winlinks and assign new indexes. */ 714 RB_FOREACH(wl, winlinks, &old_wins) { 715 wl_new = winlink_add(&s->windows, new_idx); 716 wl_new->session = s; 717 winlink_set_window(wl_new, wl->window); 718 wl_new->flags |= wl->flags & WINLINK_ALERTFLAGS; 719 720 if (wl == s->curw) 721 new_curw_idx = wl_new->idx; 722 723 new_idx++; 724 } 725 726 /* Fix the stack of last windows now. */ 727 memcpy(&old_lastw, &s->lastw, sizeof old_lastw); 728 TAILQ_INIT(&s->lastw); 729 TAILQ_FOREACH(wl, &old_lastw, sentry) { 730 wl_new = winlink_find_by_window(&s->windows, wl->window); 731 if (wl_new != NULL) 732 TAILQ_INSERT_TAIL(&s->lastw, wl_new, sentry); 733 } 734 735 /* Set the current window. */ 736 s->curw = winlink_find_by_index(&s->windows, new_curw_idx); 737 738 /* Free the old winlinks (reducing window references too). */ 739 RB_FOREACH_SAFE(wl, winlinks, &old_wins, wl1) 740 winlink_remove(&old_wins, wl); 741 } 742