1 /* $OpenBSD: cmd-attach-session.c,v 1.78 2019/06/03 18:28:37 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 21 #include <errno.h> 22 #include <fcntl.h> 23 #include <stdlib.h> 24 #include <string.h> 25 #include <unistd.h> 26 27 #include "tmux.h" 28 29 /* 30 * Attach existing session to the current terminal. 31 */ 32 33 static enum cmd_retval cmd_attach_session_exec(struct cmd *, 34 struct cmdq_item *); 35 36 const struct cmd_entry cmd_attach_session_entry = { 37 .name = "attach-session", 38 .alias = "attach", 39 40 .args = { "c:dErt:x", 0, 0 }, 41 .usage = "[-dErx] [-c working-directory] " CMD_TARGET_SESSION_USAGE, 42 43 /* -t is special */ 44 45 .flags = CMD_STARTSERVER, 46 .exec = cmd_attach_session_exec 47 }; 48 49 enum cmd_retval 50 cmd_attach_session(struct cmdq_item *item, const char *tflag, int dflag, 51 int xflag, int rflag, const char *cflag, int Eflag) 52 { 53 struct cmd_find_state *current = &item->shared->current; 54 enum cmd_find_type type; 55 int flags; 56 struct client *c = item->client, *c_loop; 57 struct session *s; 58 struct winlink *wl; 59 struct window_pane *wp; 60 char *cause; 61 enum msgtype msgtype; 62 63 if (RB_EMPTY(&sessions)) { 64 cmdq_error(item, "no sessions"); 65 return (CMD_RETURN_ERROR); 66 } 67 68 if (c == NULL) 69 return (CMD_RETURN_NORMAL); 70 if (server_client_check_nested(c)) { 71 cmdq_error(item, "sessions should be nested with care, " 72 "unset $TMUX to force"); 73 return (CMD_RETURN_ERROR); 74 } 75 76 if (tflag != NULL && tflag[strcspn(tflag, ":.")] != '\0') { 77 type = CMD_FIND_PANE; 78 flags = 0; 79 } else { 80 type = CMD_FIND_SESSION; 81 flags = CMD_FIND_PREFER_UNATTACHED; 82 } 83 if (cmd_find_target(&item->target, item, tflag, type, flags) != 0) 84 return (CMD_RETURN_ERROR); 85 s = item->target.s; 86 wl = item->target.wl; 87 wp = item->target.wp; 88 89 if (wl != NULL) { 90 if (wp != NULL) 91 window_set_active_pane(wp->window, wp, 1); 92 session_set_current(s, wl); 93 if (wp != NULL) 94 cmd_find_from_winlink_pane(current, wl, wp, 0); 95 else 96 cmd_find_from_winlink(current, wl, 0); 97 } 98 99 if (cflag != NULL) { 100 free((void *)s->cwd); 101 s->cwd = format_single(item, cflag, c, s, wl, wp); 102 } 103 104 c->last_session = c->session; 105 if (c->session != NULL) { 106 if (dflag || xflag) { 107 if (xflag) 108 msgtype = MSG_DETACHKILL; 109 else 110 msgtype = MSG_DETACH; 111 TAILQ_FOREACH(c_loop, &clients, entry) { 112 if (c_loop->session != s || c == c_loop) 113 continue; 114 server_client_detach(c_loop, msgtype); 115 } 116 } 117 if (!Eflag) 118 environ_update(s->options, c->environ, s->environ); 119 120 c->session = s; 121 if (~item->shared->flags & CMDQ_SHARED_REPEAT) 122 server_client_set_key_table(c, NULL); 123 tty_update_client_offset(c); 124 status_timer_start(c); 125 notify_client("client-session-changed", c); 126 session_update_activity(s, NULL); 127 gettimeofday(&s->last_attached_time, NULL); 128 server_redraw_client(c); 129 s->curw->flags &= ~WINLINK_ALERTFLAGS; 130 } else { 131 if (server_client_open(c, &cause) != 0) { 132 cmdq_error(item, "open terminal failed: %s", cause); 133 free(cause); 134 return (CMD_RETURN_ERROR); 135 } 136 if (rflag) 137 c->flags |= CLIENT_READONLY; 138 139 if (dflag || xflag) { 140 if (xflag) 141 msgtype = MSG_DETACHKILL; 142 else 143 msgtype = MSG_DETACH; 144 TAILQ_FOREACH(c_loop, &clients, entry) { 145 if (c_loop->session != s || c == c_loop) 146 continue; 147 server_client_detach(c_loop, msgtype); 148 } 149 } 150 if (!Eflag) 151 environ_update(s->options, c->environ, s->environ); 152 153 c->session = s; 154 server_client_set_key_table(c, NULL); 155 tty_update_client_offset(c); 156 status_timer_start(c); 157 notify_client("client-session-changed", c); 158 session_update_activity(s, NULL); 159 gettimeofday(&s->last_attached_time, NULL); 160 server_redraw_client(c); 161 s->curw->flags &= ~WINLINK_ALERTFLAGS; 162 163 if (~c->flags & CLIENT_CONTROL) 164 proc_send(c->peer, MSG_READY, -1, NULL, 0); 165 notify_client("client-attached", c); 166 c->flags |= CLIENT_ATTACHED; 167 } 168 recalculate_sizes(); 169 alerts_check_session(s); 170 server_update_socket(); 171 172 return (CMD_RETURN_NORMAL); 173 } 174 175 static enum cmd_retval 176 cmd_attach_session_exec(struct cmd *self, struct cmdq_item *item) 177 { 178 struct args *args = self->args; 179 180 return (cmd_attach_session(item, args_get(args, 't'), 181 args_has(args, 'd'), args_has(args, 'x'), args_has(args, 'r'), 182 args_get(args, 'c'), args_has(args, 'E'))); 183 } 184