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>
|
|
|
|
|
2013-10-10 12:26:34 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
2011-01-14 23:49:23 +00:00
|
|
|
#include <stdlib.h>
|
2009-08-13 19:03:59 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <termios.h>
|
2010-06-27 02:56:59 +00:00
|
|
|
#include <unistd.h>
|
2009-08-13 19:03:59 +00:00
|
|
|
|
2009-06-01 22:58:49 +00:00
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Create a new session and attach to the current terminal unless -d is given.
|
|
|
|
*/
|
|
|
|
|
2014-10-20 23:35:28 +00:00
|
|
|
#define NEW_SESSION_TEMPLATE "#{session_name}:"
|
|
|
|
|
2013-03-24 09:54:10 +00:00
|
|
|
enum cmd_retval cmd_new_session_exec(struct cmd *, struct cmd_q *);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_new_session_entry = {
|
|
|
|
"new-session", "new",
|
2015-06-07 21:39:39 +00:00
|
|
|
"Ac:dDEF:n:Ps:t:x:y:", 0, -1,
|
|
|
|
"[-AdDEP] [-c start-directory] [-F format] [-n window-name] "
|
2014-05-13 08:08:32 +00:00
|
|
|
"[-s session-name] " CMD_TARGET_SESSION_USAGE " [-x width] "
|
|
|
|
"[-y height] [command]",
|
2015-06-04 23:27:51 +00:00
|
|
|
CMD_STARTSERVER,
|
2011-01-04 00:42:46 +00:00
|
|
|
cmd_new_session_exec
|
2009-06-01 22:58:49 +00:00
|
|
|
};
|
|
|
|
|
2014-10-20 23:35:28 +00:00
|
|
|
const struct cmd_entry cmd_has_session_entry = {
|
|
|
|
"has-session", "has",
|
|
|
|
"t:", 0, 0,
|
|
|
|
CMD_TARGET_SESSION_USAGE,
|
|
|
|
0,
|
|
|
|
cmd_new_session_exec
|
|
|
|
};
|
|
|
|
|
2012-07-11 07:10:15 +00:00
|
|
|
enum cmd_retval
|
2013-03-24 09:54:10 +00:00
|
|
|
cmd_new_session_exec(struct cmd *self, struct cmd_q *cmdq)
|
2009-06-01 22:58:49 +00:00
|
|
|
{
|
2013-03-25 11:44:00 +00:00
|
|
|
struct args *args = self->args;
|
2013-10-10 12:26:34 +00:00
|
|
|
struct client *c = cmdq->client, *c0;
|
2013-03-25 11:44:00 +00:00
|
|
|
struct session *s, *groupwith;
|
|
|
|
struct window *w;
|
2015-10-28 09:51:55 +00:00
|
|
|
struct environ *env;
|
2013-03-25 11:44:00 +00:00
|
|
|
struct termios tio, *tiop;
|
2013-10-10 12:26:34 +00:00
|
|
|
const char *newname, *target, *update, *errstr, *template;
|
2015-10-31 08:13:58 +00:00
|
|
|
const char *path, *cwd, *to_free;
|
2014-05-13 08:08:32 +00:00
|
|
|
char **argv, *cmd, *cause, *cp;
|
2015-10-31 08:13:58 +00:00
|
|
|
int detached, already_attached, idx, argc;
|
2013-03-25 11:44:00 +00:00
|
|
|
u_int sx, sy;
|
|
|
|
struct format_tree *ft;
|
2014-04-17 13:02:59 +00:00
|
|
|
struct environ_entry *envent;
|
2011-01-04 00:42:46 +00:00
|
|
|
|
2014-10-20 23:35:28 +00:00
|
|
|
if (self->entry == &cmd_has_session_entry) {
|
|
|
|
if (cmd_find_session(cmdq, args_get(args, 't'), 0) == NULL)
|
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
return (CMD_RETURN_NORMAL);
|
|
|
|
}
|
|
|
|
|
2013-10-10 12:09:34 +00:00
|
|
|
if (args_has(args, 't') && (args->argc != 0 || args_has(args, 'n'))) {
|
|
|
|
cmdq_error(cmdq, "command or window name given with target");
|
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
}
|
|
|
|
|
2011-01-04 00:42:46 +00:00
|
|
|
newname = args_get(args, 's');
|
2011-04-06 21:51:31 +00:00
|
|
|
if (newname != NULL) {
|
|
|
|
if (!session_check_name(newname)) {
|
2013-03-24 09:54:10 +00:00
|
|
|
cmdq_error(cmdq, "bad session name: %s", newname);
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2011-04-06 21:51:31 +00:00
|
|
|
}
|
|
|
|
if (session_find(newname) != NULL) {
|
2013-03-24 09:58:40 +00:00
|
|
|
if (args_has(args, 'A')) {
|
|
|
|
return (cmd_attach_session(cmdq, newname,
|
2015-06-07 21:39:39 +00:00
|
|
|
args_has(args, 'D'), 0, NULL,
|
|
|
|
args_has(args, 'E')));
|
2013-03-24 09:58:40 +00:00
|
|
|
}
|
2013-03-24 09:54:10 +00:00
|
|
|
cmdq_error(cmdq, "duplicate session: %s", newname);
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2011-04-06 21:51:31 +00:00
|
|
|
}
|
2009-07-17 15:03:11 +00:00
|
|
|
}
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2011-01-04 00:42:46 +00:00
|
|
|
target = args_get(args, 't');
|
|
|
|
if (target != NULL) {
|
2013-03-24 09:54:10 +00:00
|
|
|
groupwith = cmd_find_session(cmdq, target, 0);
|
2011-01-04 00:42:46 +00:00
|
|
|
if (groupwith == NULL)
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2011-01-04 00:42:46 +00:00
|
|
|
} else
|
|
|
|
groupwith = NULL;
|
2009-10-10 10:02:48 +00:00
|
|
|
|
2009-07-23 12:33:48 +00:00
|
|
|
/* Set -d if no client. */
|
2011-01-04 00:42:46 +00:00
|
|
|
detached = args_has(args, 'd');
|
2013-03-24 09:54:10 +00:00
|
|
|
if (c == NULL)
|
2009-07-23 12:33:48 +00:00
|
|
|
detached = 1;
|
|
|
|
|
2013-03-24 09:54:10 +00:00
|
|
|
/* Is this client already attached? */
|
|
|
|
already_attached = 0;
|
|
|
|
if (c != NULL && c->session != NULL)
|
|
|
|
already_attached = 1;
|
|
|
|
|
2013-10-10 12:26:34 +00:00
|
|
|
/* Get the new session working directory. */
|
2015-10-31 08:13:58 +00:00
|
|
|
to_free = NULL;
|
2013-10-10 12:26:34 +00:00
|
|
|
if (args_has(args, 'c')) {
|
|
|
|
ft = format_create();
|
2015-02-05 10:29:43 +00:00
|
|
|
format_defaults(ft, cmd_find_client(cmdq, NULL, 1), NULL, NULL,
|
|
|
|
NULL);
|
2015-10-31 08:13:58 +00:00
|
|
|
to_free = cwd = format_expand(ft, args_get(args, 'c'));
|
2013-10-10 12:26:34 +00:00
|
|
|
format_free(ft);
|
2013-10-10 12:28:38 +00:00
|
|
|
} else if (c != NULL && c->session == NULL)
|
2013-10-10 12:26:34 +00:00
|
|
|
cwd = c->cwd;
|
2015-04-27 16:25:57 +00:00
|
|
|
else if ((c0 = cmd_find_client(cmdq, NULL, 1)) != NULL)
|
2013-10-10 12:26:34 +00:00
|
|
|
cwd = c0->session->cwd;
|
2015-10-31 08:13:58 +00:00
|
|
|
else
|
|
|
|
cwd = ".";
|
2013-10-10 12:26:34 +00:00
|
|
|
|
2009-08-21 11:36:08 +00:00
|
|
|
/*
|
2015-06-04 23:27:51 +00:00
|
|
|
* If this is a new client, check for nesting and save the termios
|
|
|
|
* settings (part of which is used for new windows in this session).
|
2009-08-21 11:36:08 +00:00
|
|
|
*
|
2015-06-04 23:27:51 +00:00
|
|
|
* tcgetattr() is used rather than using tty.tio since if the client is
|
|
|
|
* detached, tty_open won't be called. It must be done before opening
|
|
|
|
* the terminal as that calls tcsetattr() to prepare for tmux taking
|
|
|
|
* over.
|
2009-08-21 11:36:08 +00:00
|
|
|
*/
|
2013-03-24 09:54:10 +00:00
|
|
|
if (!detached && !already_attached && c->tty.fd != -1) {
|
2015-06-04 23:27:51 +00:00
|
|
|
if (server_client_check_nested(cmdq->client)) {
|
|
|
|
cmdq_error(cmdq, "sessions should be nested with care, "
|
|
|
|
"unset $TMUX to force");
|
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
}
|
2013-03-24 09:54:10 +00:00
|
|
|
if (tcgetattr(c->tty.fd, &tio) != 0)
|
2009-08-21 11:36:08 +00:00
|
|
|
fatal("tcgetattr failed");
|
2009-09-16 12:35:04 +00:00
|
|
|
tiop = &tio;
|
2009-08-21 11:36:08 +00:00
|
|
|
} else
|
2009-09-16 12:35:04 +00:00
|
|
|
tiop = NULL;
|
2009-08-21 11:36:08 +00:00
|
|
|
|
2009-07-17 15:03:11 +00:00
|
|
|
/* Open the terminal if necessary. */
|
2013-03-24 09:54:10 +00:00
|
|
|
if (!detached && !already_attached) {
|
2014-02-23 00:53:06 +00:00
|
|
|
if (server_client_open(c, &cause) != 0) {
|
2013-03-24 09:54:10 +00:00
|
|
|
cmdq_error(cmdq, "open terminal failed: %s", cause);
|
2012-07-10 11:53:01 +00:00
|
|
|
free(cause);
|
2013-10-10 12:26:34 +00:00
|
|
|
goto error;
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-23 17:37:48 +00:00
|
|
|
/* Find new session size. */
|
2013-03-24 09:54:10 +00:00
|
|
|
if (c != NULL) {
|
|
|
|
sx = c->tty.sx;
|
|
|
|
sy = c->tty.sy;
|
2011-10-23 08:10:11 +00:00
|
|
|
} else {
|
2009-07-17 15:03:11 +00:00
|
|
|
sx = 80;
|
2009-09-15 07:45:16 +00:00
|
|
|
sy = 24;
|
2011-10-23 08:10:11 +00:00
|
|
|
}
|
2013-03-24 09:54:10 +00:00
|
|
|
if (detached && args_has(args, 'x')) {
|
|
|
|
sx = strtonum(args_get(args, 'x'), 1, USHRT_MAX, &errstr);
|
|
|
|
if (errstr != NULL) {
|
|
|
|
cmdq_error(cmdq, "width %s", errstr);
|
2013-10-10 12:26:34 +00:00
|
|
|
goto error;
|
2011-01-14 23:49:23 +00:00
|
|
|
}
|
2013-03-24 09:54:10 +00:00
|
|
|
}
|
|
|
|
if (detached && args_has(args, 'y')) {
|
|
|
|
sy = strtonum(args_get(args, 'y'), 1, USHRT_MAX, &errstr);
|
|
|
|
if (errstr != NULL) {
|
|
|
|
cmdq_error(cmdq, "height %s", errstr);
|
2013-10-10 12:26:34 +00:00
|
|
|
goto error;
|
2011-01-14 23:49:23 +00:00
|
|
|
}
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
2015-10-27 15:58:42 +00:00
|
|
|
if (sy > 0 && options_get_number(global_s_options, "status"))
|
2009-07-17 15:03:11 +00:00
|
|
|
sy--;
|
|
|
|
if (sx == 0)
|
|
|
|
sx = 1;
|
|
|
|
if (sy == 0)
|
|
|
|
sy = 1;
|
2009-08-23 17:37:48 +00:00
|
|
|
|
|
|
|
/* Figure out the command for the new window. */
|
2014-05-13 08:08:32 +00:00
|
|
|
argc = -1;
|
|
|
|
argv = NULL;
|
|
|
|
if (target == NULL && args->argc != 0) {
|
|
|
|
argc = args->argc;
|
|
|
|
argv = args->argv;
|
|
|
|
} else if (target == NULL) {
|
2015-10-27 15:58:42 +00:00
|
|
|
cmd = options_get_string(global_s_options, "default-command");
|
2014-05-13 08:08:32 +00:00
|
|
|
if (cmd != NULL && *cmd != '\0') {
|
|
|
|
argc = 1;
|
|
|
|
argv = &cmd;
|
|
|
|
} else {
|
|
|
|
argc = 0;
|
|
|
|
argv = NULL;
|
|
|
|
}
|
|
|
|
}
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2014-04-17 13:02:59 +00:00
|
|
|
path = NULL;
|
|
|
|
if (c != NULL && c->session == NULL)
|
2015-10-28 09:51:55 +00:00
|
|
|
envent = environ_find(c->environ, "PATH");
|
2014-04-17 13:02:59 +00:00
|
|
|
else
|
2015-10-28 09:51:55 +00:00
|
|
|
envent = environ_find(global_environ, "PATH");
|
2014-04-17 13:02:59 +00:00
|
|
|
if (envent != NULL)
|
|
|
|
path = envent->value;
|
|
|
|
|
2009-08-08 21:52:43 +00:00
|
|
|
/* Construct the environment. */
|
2015-10-28 09:51:55 +00:00
|
|
|
env = environ_create();
|
2015-06-07 21:39:39 +00:00
|
|
|
if (c != NULL && !args_has(args, 'E')) {
|
2015-10-27 15:58:42 +00:00
|
|
|
update = options_get_string(global_s_options,
|
2015-06-07 21:39:39 +00:00
|
|
|
"update-environment");
|
2015-10-28 09:51:55 +00:00
|
|
|
environ_update(update, c->environ, env);
|
2015-06-07 21:39:39 +00:00
|
|
|
}
|
2009-08-08 21:52:43 +00:00
|
|
|
|
2009-07-17 15:03:11 +00:00
|
|
|
/* Create the new session. */
|
2015-10-27 15:58:42 +00:00
|
|
|
idx = -1 - options_get_number(global_s_options, "base-index");
|
2015-10-28 09:51:55 +00:00
|
|
|
s = session_create(newname, argc, argv, path, cwd, env, tiop, idx, sx,
|
2014-05-13 08:08:32 +00:00
|
|
|
sy, &cause);
|
2015-10-28 09:51:55 +00:00
|
|
|
environ_free(env);
|
2009-06-01 22:58:49 +00:00
|
|
|
if (s == NULL) {
|
2013-03-24 09:54:10 +00:00
|
|
|
cmdq_error(cmdq, "create session failed: %s", cause);
|
2012-07-10 11:53:01 +00:00
|
|
|
free(cause);
|
2013-10-10 12:26:34 +00:00
|
|
|
goto error;
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
2009-07-17 15:03:11 +00:00
|
|
|
|
2009-08-23 17:37:48 +00:00
|
|
|
/* Set the initial window name if one given. */
|
2014-05-13 08:08:32 +00:00
|
|
|
if (argc >= 0 && args_has(args, 'n')) {
|
2009-08-23 17:37:48 +00:00
|
|
|
w = s->curw->window;
|
2012-02-02 00:10:11 +00:00
|
|
|
window_set_name(w, args_get(args, 'n'));
|
2015-10-27 15:58:42 +00:00
|
|
|
options_set_number(w->options, "automatic-rename", 0);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
|
2009-10-10 10:02:48 +00:00
|
|
|
/*
|
|
|
|
* If a target session is given, this is to be part of a session group,
|
|
|
|
* so add it to the group and synchronize.
|
|
|
|
*/
|
|
|
|
if (groupwith != NULL) {
|
|
|
|
session_group_add(groupwith, s);
|
|
|
|
session_group_synchronize_to(s);
|
2015-05-29 23:02:27 +00:00
|
|
|
session_select(s, RB_MIN(winlinks, &s->windows)->idx);
|
2009-10-10 10:02:48 +00:00
|
|
|
}
|
|
|
|
|
2009-08-23 17:37:48 +00:00
|
|
|
/*
|
|
|
|
* Set the client to the new session. If a command client exists, it is
|
|
|
|
* taking this session and needs to get MSG_READY and stay around.
|
2009-07-17 15:03:11 +00:00
|
|
|
*/
|
2009-12-03 22:50:09 +00:00
|
|
|
if (!detached) {
|
2015-10-27 13:23:24 +00:00
|
|
|
if (!already_attached) {
|
|
|
|
if (~c->flags & CLIENT_CONTROL)
|
|
|
|
proc_send(c->peer, MSG_READY, -1, NULL, 0);
|
|
|
|
} else if (c->session != NULL)
|
2013-03-24 09:54:10 +00:00
|
|
|
c->last_session = c->session;
|
|
|
|
c->session = s;
|
2015-08-28 12:16:28 +00:00
|
|
|
status_timer_start(c);
|
2013-03-24 09:54:10 +00:00
|
|
|
notify_attached_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);
|
2013-03-24 09:54:10 +00:00
|
|
|
server_redraw_client(c);
|
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
|
|
|
|
2010-02-06 17:15:33 +00:00
|
|
|
/*
|
|
|
|
* If there are still configuration file errors to display, put the new
|
|
|
|
* session's current window into more mode and display them now.
|
|
|
|
*/
|
2012-11-19 10:38:06 +00:00
|
|
|
if (cfg_finished)
|
2013-03-24 09:54:10 +00:00
|
|
|
cfg_show_causes(s);
|
2010-02-06 17:15:33 +00:00
|
|
|
|
2013-03-25 11:44:00 +00:00
|
|
|
/* Print if requested. */
|
|
|
|
if (args_has(args, 'P')) {
|
|
|
|
if ((template = args_get(args, 'F')) == NULL)
|
|
|
|
template = NEW_SESSION_TEMPLATE;
|
|
|
|
|
|
|
|
ft = format_create();
|
2015-02-05 10:29:43 +00:00
|
|
|
format_defaults(ft, cmd_find_client(cmdq, NULL, 1), s, NULL,
|
|
|
|
NULL);
|
2013-03-25 11:44:00 +00:00
|
|
|
|
|
|
|
cp = format_expand(ft, template);
|
|
|
|
cmdq_print(cmdq, "%s", cp);
|
|
|
|
free(cp);
|
|
|
|
|
|
|
|
format_free(ft);
|
|
|
|
}
|
|
|
|
|
2013-03-24 09:54:10 +00:00
|
|
|
if (!detached)
|
|
|
|
cmdq->client_exit = 0;
|
2013-10-10 12:26:34 +00:00
|
|
|
|
2015-10-31 08:13:58 +00:00
|
|
|
if (to_free != NULL)
|
|
|
|
free((void *)to_free);
|
2013-03-24 09:54:10 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2013-10-10 12:26:34 +00:00
|
|
|
|
|
|
|
error:
|
2015-10-31 08:13:58 +00:00
|
|
|
if (to_free != NULL)
|
|
|
|
free((void *)to_free);
|
2013-10-10 12:26:34 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|