2009-06-01 22:58:49 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
2016-01-19 15:59:12 +00:00
|
|
|
* Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
|
2009-06-01 22:58:49 +00:00
|
|
|
*
|
|
|
|
* 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 12:26:34 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
2012-07-10 11:53:01 +00:00
|
|
|
#include <stdlib.h>
|
2013-10-10 12:26:34 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2012-07-10 11:53:01 +00:00
|
|
|
|
2009-06-01 22:58:49 +00:00
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Attach existing session to the current terminal.
|
|
|
|
*/
|
|
|
|
|
2016-10-16 19:04:05 +00:00
|
|
|
static enum cmd_retval cmd_attach_session_exec(struct cmd *,
|
|
|
|
struct cmdq_item *);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_attach_session_entry = {
|
2015-12-13 21:53:57 +00:00
|
|
|
.name = "attach-session",
|
|
|
|
.alias = "attach",
|
|
|
|
|
|
|
|
.args = { "c:dErt:", 0, 0 },
|
|
|
|
.usage = "[-dEr] [-c working-directory] " CMD_TARGET_SESSION_USAGE,
|
|
|
|
|
2017-04-22 10:22:39 +00:00
|
|
|
/* -t is special */
|
2015-12-14 00:31:54 +00:00
|
|
|
|
|
|
|
.flags = CMD_STARTSERVER,
|
2015-12-13 21:53:57 +00:00
|
|
|
.exec = cmd_attach_session_exec
|
2009-06-01 22:58:49 +00:00
|
|
|
};
|
|
|
|
|
2012-07-11 07:10:15 +00:00
|
|
|
enum cmd_retval
|
2017-04-22 10:22:39 +00:00
|
|
|
cmd_attach_session(struct cmdq_item *item, const char *tflag, int dflag,
|
|
|
|
int rflag, const char *cflag, int Eflag)
|
2009-06-01 22:58:49 +00:00
|
|
|
{
|
2017-04-22 08:56:24 +00:00
|
|
|
struct cmd_find_state *current = &item->shared->current;
|
2017-04-22 10:22:39 +00:00
|
|
|
enum cmd_find_type type;
|
|
|
|
int flags;
|
2016-10-16 19:04:05 +00:00
|
|
|
struct client *c = item->client, *c_loop;
|
2017-04-22 10:22:39 +00:00
|
|
|
struct session *s;
|
|
|
|
struct winlink *wl;
|
|
|
|
struct window_pane *wp;
|
2017-03-08 13:36:12 +00:00
|
|
|
char *cause;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2010-12-21 22:37:59 +00:00
|
|
|
if (RB_EMPTY(&sessions)) {
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "no sessions");
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
2011-01-04 00:42:46 +00:00
|
|
|
|
2015-06-07 21:39:39 +00:00
|
|
|
if (c == NULL)
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2015-06-07 21:39:39 +00:00
|
|
|
if (server_client_check_nested(c)) {
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "sessions should be nested with care, "
|
2015-06-04 23:27:51 +00:00
|
|
|
"unset $TMUX to force");
|
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
}
|
2009-07-23 12:33:48 +00:00
|
|
|
|
2017-04-22 10:22:39 +00:00
|
|
|
if (tflag != NULL && tflag[strcspn(tflag, ":.")] != '\0') {
|
|
|
|
type = CMD_FIND_PANE;
|
|
|
|
flags = 0;
|
|
|
|
} else {
|
|
|
|
type = CMD_FIND_SESSION;
|
|
|
|
flags = CMD_FIND_PREFER_UNATTACHED;
|
|
|
|
}
|
|
|
|
if (cmd_find_target(&item->target, item, tflag, type, flags) != 0)
|
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
s = item->target.s;
|
|
|
|
wl = item->target.wl;
|
|
|
|
wp = item->target.wp;
|
|
|
|
|
2014-01-09 14:20:55 +00:00
|
|
|
if (wl != NULL) {
|
|
|
|
if (wp != NULL)
|
|
|
|
window_set_active_pane(wp->window, wp);
|
|
|
|
session_set_current(s, wl);
|
2017-04-22 08:56:24 +00:00
|
|
|
if (wp != NULL)
|
2017-08-30 10:33:57 +00:00
|
|
|
cmd_find_from_winlink_pane(current, wl, wp, 0);
|
2017-04-22 08:56:24 +00:00
|
|
|
else
|
2017-08-30 10:33:57 +00:00
|
|
|
cmd_find_from_winlink(current, wl, 0);
|
2014-01-09 14:20:55 +00:00
|
|
|
}
|
|
|
|
|
2015-09-16 22:29:30 +00:00
|
|
|
if (cflag != NULL) {
|
2015-10-31 08:13:58 +00:00
|
|
|
free((void *)s->cwd);
|
2017-03-08 13:36:12 +00:00
|
|
|
s->cwd = format_single(item, cflag, c, s, wl, wp);
|
2015-09-16 22:29:30 +00:00
|
|
|
}
|
|
|
|
|
2015-06-07 21:39:39 +00:00
|
|
|
if (c->session != NULL) {
|
2013-03-24 09:58:40 +00:00
|
|
|
if (dflag) {
|
2015-06-07 21:39:39 +00:00
|
|
|
TAILQ_FOREACH(c_loop, &clients, entry) {
|
2015-06-09 07:07:06 +00:00
|
|
|
if (c_loop->session != s || c == c_loop)
|
2009-07-17 15:03:11 +00:00
|
|
|
continue;
|
2015-12-21 09:20:13 +00:00
|
|
|
server_client_detach(c_loop, MSG_DETACH);
|
2009-07-17 15:03:11 +00:00
|
|
|
}
|
|
|
|
}
|
2017-01-24 20:15:32 +00:00
|
|
|
if (!Eflag)
|
|
|
|
environ_update(s->options, c->environ, s->environ);
|
2015-07-06 14:24:57 +00:00
|
|
|
|
2015-06-07 21:39:39 +00:00
|
|
|
c->session = s;
|
2017-04-21 14:01:19 +00:00
|
|
|
if (~item->shared->flags & CMDQ_SHARED_REPEAT)
|
2017-02-06 15:00:41 +00:00
|
|
|
server_client_set_key_table(c, NULL);
|
2015-08-28 12:16:28 +00:00
|
|
|
status_timer_start(c);
|
2016-10-16 22:06:40 +00:00
|
|
|
notify_client("client-session-changed", c);
|
2015-08-28 13:01:03 +00:00
|
|
|
session_update_activity(s, NULL);
|
2015-09-10 08:58:14 +00:00
|
|
|
gettimeofday(&s->last_attached_time, NULL);
|
2015-06-07 21:39:39 +00:00
|
|
|
server_redraw_client(c);
|
2012-01-21 06:13:16 +00:00
|
|
|
s->curw->flags &= ~WINLINK_ALERTFLAGS;
|
2009-07-17 15:03:11 +00:00
|
|
|
} else {
|
2015-06-07 21:39:39 +00:00
|
|
|
if (server_client_open(c, &cause) != 0) {
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "open terminal failed: %s", cause);
|
2012-07-10 11:53:01 +00:00
|
|
|
free(cause);
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-07-17 15:03:11 +00:00
|
|
|
}
|
2013-03-24 09:58:40 +00:00
|
|
|
if (rflag)
|
2015-06-07 21:39:39 +00:00
|
|
|
c->flags |= CLIENT_READONLY;
|
2010-02-06 22:55:31 +00:00
|
|
|
|
2013-10-10 12:28:08 +00:00
|
|
|
if (dflag) {
|
2015-10-27 13:23:24 +00:00
|
|
|
TAILQ_FOREACH(c_loop, &clients, entry) {
|
|
|
|
if (c_loop->session != s || c == c_loop)
|
|
|
|
continue;
|
2015-12-08 01:10:31 +00:00
|
|
|
server_client_detach(c_loop, MSG_DETACH);
|
2015-10-27 13:23:24 +00:00
|
|
|
}
|
2013-10-10 12:28:08 +00:00
|
|
|
}
|
2017-01-24 20:15:32 +00:00
|
|
|
if (!Eflag)
|
|
|
|
environ_update(s->options, c->environ, s->environ);
|
2009-08-08 21:52:43 +00:00
|
|
|
|
2015-06-07 21:39:39 +00:00
|
|
|
c->session = s;
|
2015-12-12 18:32:24 +00:00
|
|
|
server_client_set_key_table(c, NULL);
|
2015-08-28 12:16:28 +00:00
|
|
|
status_timer_start(c);
|
2016-10-16 22:06:40 +00:00
|
|
|
notify_client("client-session-changed", c);
|
2015-08-28 13:01:03 +00:00
|
|
|
session_update_activity(s, NULL);
|
2015-09-10 08:58:14 +00:00
|
|
|
gettimeofday(&s->last_attached_time, NULL);
|
2015-06-07 21:39:39 +00:00
|
|
|
server_redraw_client(c);
|
2012-01-21 06:13:16 +00:00
|
|
|
s->curw->flags &= ~WINLINK_ALERTFLAGS;
|
2013-03-24 09:54:10 +00:00
|
|
|
|
2015-10-27 13:23:24 +00:00
|
|
|
if (~c->flags & CLIENT_CONTROL)
|
|
|
|
proc_send(c->peer, MSG_READY, -1, NULL, 0);
|
2016-10-16 22:06:40 +00:00
|
|
|
notify_client("client-attached", c);
|
2016-10-16 17:55:14 +00:00
|
|
|
c->flags |= CLIENT_ATTACHED;
|
2009-07-17 15:03:11 +00:00
|
|
|
}
|
2009-06-01 22:58:49 +00:00
|
|
|
recalculate_sizes();
|
2015-12-07 09:47:41 +00:00
|
|
|
alerts_check_session(s);
|
2009-11-11 08:00:42 +00:00
|
|
|
server_update_socket();
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2013-03-24 09:54:10 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
2013-03-24 09:58:40 +00:00
|
|
|
|
2016-10-10 21:51:39 +00:00
|
|
|
static enum cmd_retval
|
2016-10-16 19:04:05 +00:00
|
|
|
cmd_attach_session_exec(struct cmd *self, struct cmdq_item *item)
|
2013-03-24 09:58:40 +00:00
|
|
|
{
|
|
|
|
struct args *args = self->args;
|
|
|
|
|
2017-04-22 10:22:39 +00:00
|
|
|
return (cmd_attach_session(item, args_get(args, 't'),
|
|
|
|
args_has(args, 'd'), args_has(args, 'r'), args_get(args, 'c'),
|
|
|
|
args_has(args, 'E')));
|
2013-03-24 09:58:40 +00:00
|
|
|
}
|