2009-06-02 00:58:49 +02:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
|
|
|
|
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
2013-10-10 14:26:34 +02:00
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
2012-07-10 13:53:01 +02:00
|
|
|
#include <stdlib.h>
|
2013-10-10 14:26:34 +02:00
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2012-07-10 13:53:01 +02:00
|
|
|
|
2009-06-02 00:58:49 +02:00
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Attach existing session to the current terminal.
|
|
|
|
*/
|
|
|
|
|
2013-03-24 10:54:10 +01:00
|
|
|
enum cmd_retval cmd_attach_session_exec(struct cmd *, struct cmd_q *);
|
2009-06-02 00:58:49 +02:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_attach_session_entry = {
|
|
|
|
"attach-session", "attach",
|
2015-06-07 23:39:39 +02:00
|
|
|
"c:dErt:", 0, 0,
|
|
|
|
"[-dEr] [-c working-directory] " CMD_TARGET_SESSION_USAGE,
|
2015-06-05 01:27:51 +02:00
|
|
|
CMD_STARTSERVER,
|
2011-01-04 01:42:46 +01:00
|
|
|
cmd_attach_session_exec
|
2009-06-02 00:58:49 +02:00
|
|
|
};
|
|
|
|
|
2012-07-11 09:10:15 +02:00
|
|
|
enum cmd_retval
|
2013-10-10 14:26:34 +02:00
|
|
|
cmd_attach_session(struct cmd_q *cmdq, const char *tflag, int dflag, int rflag,
|
2015-06-07 23:39:39 +02:00
|
|
|
const char *cflag, int Eflag)
|
2009-06-02 00:58:49 +02:00
|
|
|
{
|
2013-10-10 14:26:34 +02:00
|
|
|
struct session *s;
|
2015-06-07 23:39:39 +02:00
|
|
|
struct client *c = cmdq->client, *c_loop;
|
2014-01-09 15:20:55 +01:00
|
|
|
struct winlink *wl = NULL;
|
|
|
|
struct window *w = NULL;
|
|
|
|
struct window_pane *wp = NULL;
|
2013-10-10 14:26:34 +02:00
|
|
|
const char *update;
|
|
|
|
char *cause;
|
|
|
|
struct format_tree *ft;
|
2015-10-31 09:13:58 +01:00
|
|
|
char *cwd;
|
2009-06-02 00:58:49 +02:00
|
|
|
|
2010-12-21 23:37:59 +01:00
|
|
|
if (RB_EMPTY(&sessions)) {
|
2013-03-24 10:54:10 +01:00
|
|
|
cmdq_error(cmdq, "no sessions");
|
2012-07-11 09:10:15 +02:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-06-02 00:58:49 +02:00
|
|
|
}
|
2011-01-04 01:42:46 +01:00
|
|
|
|
2014-01-09 15:20:55 +01:00
|
|
|
if (tflag == NULL) {
|
|
|
|
if ((s = cmd_find_session(cmdq, tflag, 1)) == NULL)
|
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
} else if (tflag[strcspn(tflag, ":.")] != '\0') {
|
|
|
|
if ((wl = cmd_find_pane(cmdq, tflag, &s, &wp)) == NULL)
|
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
} else {
|
|
|
|
if ((s = cmd_find_session(cmdq, tflag, 1)) == NULL)
|
|
|
|
return (CMD_RETURN_ERROR);
|
2015-04-25 20:09:28 +02:00
|
|
|
w = window_find_by_id_str(tflag);
|
|
|
|
if (w == NULL) {
|
|
|
|
wp = window_pane_find_by_id_str(tflag);
|
|
|
|
if (wp != NULL)
|
|
|
|
w = wp->window;
|
|
|
|
}
|
2014-01-09 15:20:55 +01:00
|
|
|
if (w != NULL)
|
|
|
|
wl = winlink_find_by_window(&s->windows, w);
|
|
|
|
}
|
2009-06-02 00:58:49 +02:00
|
|
|
|
2015-06-07 23:39:39 +02:00
|
|
|
if (c == NULL)
|
2012-07-11 09:10:15 +02:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2015-06-07 23:39:39 +02:00
|
|
|
if (server_client_check_nested(c)) {
|
2015-06-05 01:27:51 +02:00
|
|
|
cmdq_error(cmdq, "sessions should be nested with care, "
|
|
|
|
"unset $TMUX to force");
|
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
}
|
2009-07-23 14:33:48 +02:00
|
|
|
|
2014-01-09 15:20:55 +01:00
|
|
|
if (wl != NULL) {
|
|
|
|
if (wp != NULL)
|
|
|
|
window_set_active_pane(wp->window, wp);
|
|
|
|
session_set_current(s, wl);
|
|
|
|
}
|
|
|
|
|
2015-09-17 00:29:30 +02:00
|
|
|
if (cflag != NULL) {
|
|
|
|
ft = format_create();
|
|
|
|
format_defaults(ft, cmd_find_client(cmdq, NULL, 1), s,
|
|
|
|
NULL, NULL);
|
2015-10-31 09:13:58 +01:00
|
|
|
cwd = format_expand(ft, cflag);
|
2015-09-17 00:29:30 +02:00
|
|
|
format_free(ft);
|
|
|
|
|
2015-10-31 09:13:58 +01:00
|
|
|
free((void *)s->cwd);
|
|
|
|
s->cwd = cwd;
|
2015-09-17 00:29:30 +02:00
|
|
|
}
|
|
|
|
|
2015-06-07 23:39:39 +02:00
|
|
|
if (c->session != NULL) {
|
2013-03-24 10:58:40 +01:00
|
|
|
if (dflag) {
|
2015-06-07 23:39:39 +02:00
|
|
|
TAILQ_FOREACH(c_loop, &clients, entry) {
|
2015-06-09 09:07:06 +02:00
|
|
|
if (c_loop->session != s || c == c_loop)
|
2009-07-17 17:03:11 +02:00
|
|
|
continue;
|
2015-11-06 00:32:21 +01:00
|
|
|
proc_send_s(c_loop->peer, MSG_DETACH, s->name);
|
2009-07-17 17:03:11 +02:00
|
|
|
}
|
|
|
|
}
|
2009-12-03 23:50:09 +01:00
|
|
|
|
2015-07-06 16:24:57 +02:00
|
|
|
if (!Eflag) {
|
2015-10-27 16:58:42 +01:00
|
|
|
update = options_get_string(s->options,
|
2015-07-06 16:24:57 +02:00
|
|
|
"update-environment");
|
2015-10-28 10:51:55 +01:00
|
|
|
environ_update(update, c->environ, s->environ);
|
2015-07-06 16:24:57 +02:00
|
|
|
}
|
|
|
|
|
2015-06-07 23:39:39 +02:00
|
|
|
c->session = s;
|
2015-08-28 14:16:28 +02:00
|
|
|
status_timer_start(c);
|
2015-06-07 23:39:39 +02:00
|
|
|
notify_attached_session_changed(c);
|
2015-08-28 15:01:03 +02:00
|
|
|
session_update_activity(s, NULL);
|
2015-09-10 10:58:14 +02:00
|
|
|
gettimeofday(&s->last_attached_time, NULL);
|
2015-06-07 23:39:39 +02:00
|
|
|
server_redraw_client(c);
|
2012-01-21 07:13:16 +01:00
|
|
|
s->curw->flags &= ~WINLINK_ALERTFLAGS;
|
2009-07-17 17:03:11 +02:00
|
|
|
} else {
|
2015-06-07 23:39:39 +02:00
|
|
|
if (server_client_open(c, &cause) != 0) {
|
2013-03-24 10:54:10 +01:00
|
|
|
cmdq_error(cmdq, "open terminal failed: %s", cause);
|
2012-07-10 13:53:01 +02:00
|
|
|
free(cause);
|
2012-07-11 09:10:15 +02:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-07-17 17:03:11 +02:00
|
|
|
}
|
2009-06-02 00:58:49 +02:00
|
|
|
|
2013-03-24 10:58:40 +01:00
|
|
|
if (rflag)
|
2015-06-07 23:39:39 +02:00
|
|
|
c->flags |= CLIENT_READONLY;
|
2010-02-06 23:55:31 +01:00
|
|
|
|
2013-10-10 14:28:08 +02:00
|
|
|
if (dflag) {
|
2015-10-27 14:23:24 +01:00
|
|
|
TAILQ_FOREACH(c_loop, &clients, entry) {
|
|
|
|
if (c_loop->session != s || c == c_loop)
|
|
|
|
continue;
|
2015-11-03 16:07:36 +01:00
|
|
|
proc_send_s(c_loop->peer, MSG_DETACH, s->name);
|
2015-10-27 14:23:24 +01:00
|
|
|
}
|
2013-10-10 14:28:08 +02:00
|
|
|
}
|
2009-06-02 00:58:49 +02:00
|
|
|
|
2015-06-07 23:39:39 +02:00
|
|
|
if (!Eflag) {
|
2015-10-27 16:58:42 +01:00
|
|
|
update = options_get_string(s->options,
|
2015-06-07 23:39:39 +02:00
|
|
|
"update-environment");
|
2015-10-28 10:51:55 +01:00
|
|
|
environ_update(update, c->environ, s->environ);
|
2015-06-07 23:39:39 +02:00
|
|
|
}
|
2009-08-08 23:52:43 +02:00
|
|
|
|
2015-06-07 23:39:39 +02:00
|
|
|
c->session = s;
|
2015-08-28 14:16:28 +02:00
|
|
|
status_timer_start(c);
|
2015-06-07 23:39:39 +02:00
|
|
|
notify_attached_session_changed(c);
|
2015-08-28 15:01:03 +02:00
|
|
|
session_update_activity(s, NULL);
|
2015-09-10 10:58:14 +02:00
|
|
|
gettimeofday(&s->last_attached_time, NULL);
|
2015-06-07 23:39:39 +02:00
|
|
|
server_redraw_client(c);
|
2012-01-21 07:13:16 +01:00
|
|
|
s->curw->flags &= ~WINLINK_ALERTFLAGS;
|
2013-03-24 10:54:10 +01:00
|
|
|
|
2015-10-27 14:23:24 +01:00
|
|
|
if (~c->flags & CLIENT_CONTROL)
|
|
|
|
proc_send(c->peer, MSG_READY, -1, NULL, 0);
|
2013-03-24 10:54:10 +01:00
|
|
|
cmdq->client_exit = 0;
|
2009-07-17 17:03:11 +02:00
|
|
|
}
|
2009-06-02 00:58:49 +02:00
|
|
|
recalculate_sizes();
|
2009-11-11 09:00:42 +01:00
|
|
|
server_update_socket();
|
2009-06-02 00:58:49 +02:00
|
|
|
|
2013-03-24 10:54:10 +01:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2009-06-02 00:58:49 +02:00
|
|
|
}
|
2013-03-24 10:58:40 +01:00
|
|
|
|
|
|
|
enum cmd_retval
|
|
|
|
cmd_attach_session_exec(struct cmd *self, struct cmd_q *cmdq)
|
|
|
|
{
|
|
|
|
struct args *args = self->args;
|
|
|
|
|
|
|
|
return (cmd_attach_session(cmdq, args_get(args, 't'),
|
2015-06-07 23:39:39 +02:00
|
|
|
args_has(args, 'd'), args_has(args, 'r'), args_get(args, 'c'),
|
|
|
|
args_has(args, 'E')));
|
2013-03-24 10:58:40 +01:00
|
|
|
}
|