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",
|
|
|
|
|
2021-08-21 10:22:38 +00:00
|
|
|
.args = { "c:dEf:rt:x", 0, 0, NULL },
|
2020-05-16 15:45:29 +00:00
|
|
|
.usage = "[-dErx] [-c working-directory] [-f flags] "
|
|
|
|
CMD_TARGET_SESSION_USAGE,
|
2015-12-13 21:53:57 +00:00
|
|
|
|
2017-04-22 10:22:39 +00:00
|
|
|
/* -t is special */
|
2015-12-14 00:31:54 +00:00
|
|
|
|
2022-05-30 12:48:57 +00:00
|
|
|
.flags = CMD_STARTSERVER|CMD_READONLY,
|
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,
|
2020-05-16 15:45:29 +00:00
|
|
|
int xflag, int rflag, const char *cflag, int Eflag, const char *fflag)
|
2009-06-01 22:58:49 +00:00
|
|
|
{
|
2020-04-13 14:46:04 +00:00
|
|
|
struct cmd_find_state *current = cmdq_get_current(item);
|
2020-04-13 10:59:58 +00:00
|
|
|
struct cmd_find_state target;
|
2017-04-22 10:22:39 +00:00
|
|
|
enum cmd_find_type type;
|
|
|
|
int flags;
|
2020-04-13 10:59:58 +00:00
|
|
|
struct client *c = cmdq_get_client(item), *c_loop;
|
2017-04-22 10:22:39 +00:00
|
|
|
struct session *s;
|
|
|
|
struct winlink *wl;
|
|
|
|
struct window_pane *wp;
|
2020-09-03 12:47:33 +00:00
|
|
|
char *cwd, *cause;
|
2019-06-03 18:28:37 +00:00
|
|
|
enum msgtype msgtype;
|
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);
|
2022-05-30 12:48:57 +00:00
|
|
|
|
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;
|
|
|
|
}
|
2020-04-13 10:59:58 +00:00
|
|
|
if (cmd_find_target(&target, item, tflag, type, flags) != 0)
|
2017-04-22 10:22:39 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2020-04-13 10:59:58 +00:00
|
|
|
s = target.s;
|
|
|
|
wl = target.wl;
|
|
|
|
wp = target.wp;
|
2017-04-22 10:22:39 +00:00
|
|
|
|
2014-01-09 14:20:55 +00:00
|
|
|
if (wl != NULL) {
|
|
|
|
if (wp != NULL)
|
2019-04-17 14:37:48 +00:00
|
|
|
window_set_active_pane(wp->window, wp, 1);
|
2014-01-09 14:20:55 +00:00
|
|
|
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) {
|
2020-09-03 12:47:33 +00:00
|
|
|
cwd = format_single(item, cflag, c, s, wl, wp);
|
2015-10-31 08:13:58 +00:00
|
|
|
free((void *)s->cwd);
|
2020-09-03 12:47:33 +00:00
|
|
|
s->cwd = cwd;
|
2015-09-16 22:29:30 +00:00
|
|
|
}
|
2020-05-16 15:45:29 +00:00
|
|
|
if (fflag)
|
|
|
|
server_client_set_flags(c, fflag);
|
|
|
|
if (rflag)
|
|
|
|
c->flags |= (CLIENT_READONLY|CLIENT_IGNORESIZE);
|
2015-09-16 22:29:30 +00:00
|
|
|
|
2018-05-15 14:58:09 +00:00
|
|
|
c->last_session = c->session;
|
2015-06-07 21:39:39 +00:00
|
|
|
if (c->session != NULL) {
|
2019-06-03 18:28:37 +00:00
|
|
|
if (dflag || xflag) {
|
|
|
|
if (xflag)
|
|
|
|
msgtype = MSG_DETACHKILL;
|
|
|
|
else
|
|
|
|
msgtype = MSG_DETACH;
|
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;
|
2019-06-03 18:28:37 +00:00
|
|
|
server_client_detach(c_loop, msgtype);
|
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
|
|
|
|
2021-08-13 06:52:51 +00:00
|
|
|
server_client_set_session(c, s);
|
2020-04-13 14:46:04 +00:00
|
|
|
if (~cmdq_get_flags(item) & CMDQ_STATE_REPEAT)
|
2017-02-06 15:00:41 +00:00
|
|
|
server_client_set_key_table(c, NULL);
|
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
|
|
|
}
|
2010-02-06 22:55:31 +00:00
|
|
|
|
2019-06-03 18:28:37 +00:00
|
|
|
if (dflag || xflag) {
|
|
|
|
if (xflag)
|
|
|
|
msgtype = MSG_DETACHKILL;
|
|
|
|
else
|
|
|
|
msgtype = MSG_DETACH;
|
2015-10-27 13:23:24 +00:00
|
|
|
TAILQ_FOREACH(c_loop, &clients, entry) {
|
|
|
|
if (c_loop->session != s || c == c_loop)
|
|
|
|
continue;
|
2019-06-03 18:28:37 +00:00
|
|
|
server_client_detach(c_loop, msgtype);
|
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
|
|
|
|
2021-08-13 06:52:51 +00:00
|
|
|
server_client_set_session(c, s);
|
2015-12-12 18:32:24 +00:00
|
|
|
server_client_set_key_table(c, NULL);
|
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
|
|
|
|
2022-07-06 08:40:52 +00:00
|
|
|
if (cfg_finished)
|
|
|
|
cfg_show_causes(s);
|
|
|
|
|
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
|
|
|
{
|
2020-04-13 08:26:27 +00:00
|
|
|
struct args *args = cmd_get_args(self);
|
2013-03-24 09:58:40 +00:00
|
|
|
|
2017-04-22 10:22:39 +00:00
|
|
|
return (cmd_attach_session(item, args_get(args, 't'),
|
2019-06-03 18:28:37 +00:00
|
|
|
args_has(args, 'd'), args_has(args, 'x'), args_has(args, 'r'),
|
2020-05-16 15:45:29 +00:00
|
|
|
args_get(args, 'c'), args_has(args, 'E'), args_get(args, 'f')));
|
2013-03-24 09:58:40 +00:00
|
|
|
}
|