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:28:08 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2009-06-01 22:58:49 +00:00
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Detach a client.
|
|
|
|
*/
|
|
|
|
|
2016-10-16 19:04:05 +00:00
|
|
|
static enum cmd_retval cmd_detach_client_exec(struct cmd *,
|
|
|
|
struct cmdq_item *);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_detach_client_entry = {
|
2015-12-13 21:53:57 +00:00
|
|
|
.name = "detach-client",
|
|
|
|
.alias = "detach",
|
|
|
|
|
2017-01-13 10:12:12 +00:00
|
|
|
.args = { "aE:s:t:P", 0, 0 },
|
|
|
|
.usage = "[-aP] [-E shell-command] "
|
|
|
|
"[-s target-session] " CMD_TARGET_CLIENT_USAGE,
|
2015-12-13 21:53:57 +00:00
|
|
|
|
2017-04-22 10:22:39 +00:00
|
|
|
.source = { 's', CMD_FIND_SESSION, CMD_FIND_CANFAIL },
|
2015-12-14 00:31:54 +00:00
|
|
|
|
|
|
|
.flags = CMD_READONLY,
|
2015-12-13 21:53:57 +00:00
|
|
|
.exec = cmd_detach_client_exec
|
2009-06-01 22:58:49 +00:00
|
|
|
};
|
|
|
|
|
2014-10-20 23:01:51 +00:00
|
|
|
const struct cmd_entry cmd_suspend_client_entry = {
|
2015-12-13 21:53:57 +00:00
|
|
|
.name = "suspend-client",
|
|
|
|
.alias = "suspendc",
|
|
|
|
|
|
|
|
.args = { "t:", 0, 0 },
|
|
|
|
.usage = CMD_TARGET_CLIENT_USAGE,
|
|
|
|
|
2015-12-14 00:31:54 +00:00
|
|
|
.flags = 0,
|
2015-12-13 21:53:57 +00:00
|
|
|
.exec = cmd_detach_client_exec
|
2014-10-20 23:01:51 +00:00
|
|
|
};
|
|
|
|
|
2016-10-10 21:51:39 +00:00
|
|
|
static enum cmd_retval
|
2016-10-16 19:04:05 +00:00
|
|
|
cmd_detach_client_exec(struct cmd *self, struct cmdq_item *item)
|
2009-06-01 22:58:49 +00:00
|
|
|
{
|
2011-01-04 00:42:46 +00:00
|
|
|
struct args *args = self->args;
|
2017-04-22 10:22:39 +00:00
|
|
|
struct client *c, *cloop;
|
2013-10-10 12:28:08 +00:00
|
|
|
struct session *s;
|
|
|
|
enum msgtype msgtype;
|
2017-01-13 10:12:12 +00:00
|
|
|
const char *cmd = args_get(args, 'E');
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2017-04-22 10:22:39 +00:00
|
|
|
if ((c = cmd_find_client(item, args_get(args, 't'), 0)) == NULL)
|
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
|
2014-10-20 23:01:51 +00:00
|
|
|
if (self->entry == &cmd_suspend_client_entry) {
|
2017-04-19 14:00:28 +00:00
|
|
|
server_client_suspend(c);
|
2014-10-20 23:01:51 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
|
|
|
}
|
|
|
|
|
2011-03-03 08:51:47 +00:00
|
|
|
if (args_has(args, 'P'))
|
2011-04-11 06:44:39 +00:00
|
|
|
msgtype = MSG_DETACHKILL;
|
2011-03-03 08:51:47 +00:00
|
|
|
else
|
2011-04-11 06:44:39 +00:00
|
|
|
msgtype = MSG_DETACH;
|
|
|
|
|
|
|
|
if (args_has(args, 's')) {
|
2017-04-22 10:22:39 +00:00
|
|
|
s = item->source.s;
|
|
|
|
if (s == NULL)
|
|
|
|
return (CMD_RETURN_NORMAL);
|
2015-04-24 23:17:11 +00:00
|
|
|
TAILQ_FOREACH(cloop, &clients, entry) {
|
2017-01-13 10:12:12 +00:00
|
|
|
if (cloop->session == s) {
|
|
|
|
if (cmd != NULL)
|
|
|
|
server_client_exec(cloop, cmd);
|
|
|
|
else
|
|
|
|
server_client_detach(cloop, msgtype);
|
|
|
|
}
|
2011-04-11 06:44:39 +00:00
|
|
|
}
|
2015-01-30 15:57:30 +00:00
|
|
|
return (CMD_RETURN_STOP);
|
|
|
|
}
|
2011-04-11 06:44:39 +00:00
|
|
|
|
2015-01-30 15:57:30 +00:00
|
|
|
if (args_has(args, 'a')) {
|
2015-04-24 23:17:11 +00:00
|
|
|
TAILQ_FOREACH(cloop, &clients, entry) {
|
2017-01-13 10:12:12 +00:00
|
|
|
if (cloop->session != NULL && cloop != c) {
|
|
|
|
if (cmd != NULL)
|
|
|
|
server_client_exec(cloop, cmd);
|
|
|
|
else
|
|
|
|
server_client_detach(cloop, msgtype);
|
|
|
|
}
|
2013-10-10 12:28:08 +00:00
|
|
|
}
|
2015-01-30 15:57:30 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2011-04-11 06:44:39 +00:00
|
|
|
}
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2017-01-13 10:12:12 +00:00
|
|
|
if (cmd != NULL)
|
|
|
|
server_client_exec(c, cmd);
|
|
|
|
else
|
|
|
|
server_client_detach(c, msgtype);
|
2013-03-24 09:54:10 +00:00
|
|
|
return (CMD_RETURN_STOP);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|