2009-06-01 22:58:49 +00: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>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Attach existing session to the current terminal.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int cmd_attach_session_exec(struct cmd *, struct cmd_ctx *);
|
|
|
|
|
|
|
|
const struct cmd_entry cmd_attach_session_entry = {
|
|
|
|
"attach-session", "attach",
|
2011-01-04 00:42:46 +00:00
|
|
|
"drt:", 0, 0,
|
2010-02-06 22:55:31 +00:00
|
|
|
"[-dr] " CMD_TARGET_SESSION_USAGE,
|
2011-01-04 00:42:46 +00:00
|
|
|
CMD_CANTNEST|CMD_STARTSERVER|CMD_SENDENVIRON,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
cmd_attach_session_exec
|
2009-06-01 22:58:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
int
|
|
|
|
cmd_attach_session_exec(struct cmd *self, struct cmd_ctx *ctx)
|
|
|
|
{
|
2011-01-04 00:42:46 +00:00
|
|
|
struct args *args = self->args;
|
|
|
|
struct session *s;
|
|
|
|
struct client *c;
|
|
|
|
const char *update;
|
|
|
|
char *overrides, *cause;
|
|
|
|
u_int i;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2010-12-21 22:37:59 +00:00
|
|
|
if (RB_EMPTY(&sessions)) {
|
2009-06-01 22:58:49 +00:00
|
|
|
ctx->error(ctx, "no sessions");
|
|
|
|
return (-1);
|
|
|
|
}
|
2011-01-04 00:42:46 +00:00
|
|
|
|
|
|
|
if ((s = cmd_find_session(ctx, args_get(args, 't'))) == NULL)
|
2009-06-01 22:58:49 +00:00
|
|
|
return (-1);
|
|
|
|
|
2009-07-23 12:33:48 +00:00
|
|
|
if (ctx->cmdclient == NULL && ctx->curclient == NULL)
|
|
|
|
return (0);
|
|
|
|
|
2009-07-17 15:03:11 +00:00
|
|
|
if (ctx->cmdclient == NULL) {
|
2011-01-04 00:42:46 +00:00
|
|
|
if (args_has(self->args, 'd')) {
|
2009-12-03 22:50:09 +00:00
|
|
|
/*
|
2009-07-17 15:03:11 +00:00
|
|
|
* Can't use server_write_session in case attaching to
|
|
|
|
* the same session as currently attached to.
|
|
|
|
*/
|
|
|
|
for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
|
|
|
|
c = ARRAY_ITEM(&clients, i);
|
|
|
|
if (c == NULL || c->session != s)
|
|
|
|
continue;
|
|
|
|
if (c == ctx->curclient)
|
|
|
|
continue;
|
|
|
|
server_write_client(c, MSG_DETACH, NULL, 0);
|
|
|
|
}
|
|
|
|
}
|
2009-12-03 22:50:09 +00:00
|
|
|
|
2009-07-17 15:03:11 +00:00
|
|
|
ctx->curclient->session = s;
|
2011-01-01 01:12:09 +00:00
|
|
|
session_update_activity(s);
|
2009-07-17 15:03:11 +00:00
|
|
|
server_redraw_client(ctx->curclient);
|
|
|
|
} else {
|
|
|
|
if (!(ctx->cmdclient->flags & CLIENT_TERMINAL)) {
|
|
|
|
ctx->error(ctx, "not a terminal");
|
|
|
|
return (-1);
|
|
|
|
}
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2009-08-03 14:10:54 +00:00
|
|
|
overrides =
|
|
|
|
options_get_string(&s->options, "terminal-overrides");
|
|
|
|
if (tty_open(&ctx->cmdclient->tty, overrides, &cause) != 0) {
|
2009-07-17 15:03:11 +00:00
|
|
|
ctx->error(ctx, "terminal open failed: %s", cause);
|
|
|
|
xfree(cause);
|
|
|
|
return (-1);
|
|
|
|
}
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2011-01-04 00:42:46 +00:00
|
|
|
if (args_has(self->args, 'r'))
|
2010-02-06 22:55:31 +00:00
|
|
|
ctx->cmdclient->flags |= CLIENT_READONLY;
|
|
|
|
|
2011-01-04 00:42:46 +00:00
|
|
|
if (args_has(self->args, 'd'))
|
2009-07-17 15:03:11 +00:00
|
|
|
server_write_session(s, MSG_DETACH, NULL, 0);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2009-07-17 15:03:11 +00:00
|
|
|
ctx->cmdclient->session = s;
|
2011-01-01 01:12:09 +00:00
|
|
|
session_update_activity(s);
|
2009-07-17 15:03:11 +00:00
|
|
|
server_write_client(ctx->cmdclient, MSG_READY, NULL, 0);
|
2009-08-08 21:52:43 +00:00
|
|
|
|
|
|
|
update = options_get_string(&s->options, "update-environment");
|
|
|
|
environ_update(update, &ctx->cmdclient->environ, &s->environ);
|
|
|
|
|
2009-07-17 15:03:11 +00:00
|
|
|
server_redraw_client(ctx->cmdclient);
|
|
|
|
}
|
2009-06-01 22:58:49 +00:00
|
|
|
recalculate_sizes();
|
2009-11-11 08:00:42 +00:00
|
|
|
server_update_socket();
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2009-07-17 15:03:11 +00:00
|
|
|
return (1); /* 1 means don't tell command client to exit */
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|