2009-08-08 21:52:43 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
2016-01-19 15:59:12 +00:00
|
|
|
* Copyright (c) 2009 Nicholas Marriott <nicholas.marriott@gmail.com>
|
2009-08-08 21:52:43 +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>
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set an environment variable.
|
|
|
|
*/
|
|
|
|
|
2016-10-16 19:04:05 +00:00
|
|
|
static enum cmd_retval cmd_set_environment_exec(struct cmd *,
|
|
|
|
struct cmdq_item *);
|
2009-08-08 21:52:43 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_set_environment_entry = {
|
2015-12-13 21:53:57 +00:00
|
|
|
.name = "set-environment",
|
|
|
|
.alias = "setenv",
|
|
|
|
|
2021-08-21 10:22:38 +00:00
|
|
|
.args = { "Fhgrt:u", 1, 2, NULL },
|
2020-09-01 09:19:01 +00:00
|
|
|
.usage = "[-Fhgru] " CMD_TARGET_SESSION_USAGE " name [value]",
|
2015-12-13 21:53:57 +00:00
|
|
|
|
2017-04-22 10:22:39 +00:00
|
|
|
.target = { 't', CMD_FIND_SESSION, CMD_FIND_CANFAIL },
|
2015-12-14 00:31:54 +00:00
|
|
|
|
2016-10-14 22:14:22 +00:00
|
|
|
.flags = CMD_AFTERHOOK,
|
2015-12-13 21:53:57 +00:00
|
|
|
.exec = cmd_set_environment_exec
|
2009-08-08 21:52:43 +00:00
|
|
|
};
|
|
|
|
|
2016-10-10 21:51:39 +00:00
|
|
|
static enum cmd_retval
|
2016-10-16 19:04:05 +00:00
|
|
|
cmd_set_environment_exec(struct cmd *self, struct cmdq_item *item)
|
2009-08-08 21:52:43 +00:00
|
|
|
{
|
2020-04-13 10:59:58 +00:00
|
|
|
struct args *args = cmd_get_args(self);
|
|
|
|
struct cmd_find_state *target = cmdq_get_target(item);
|
|
|
|
struct environ *env;
|
2021-08-20 19:50:16 +00:00
|
|
|
const char *name = args_string(args, 0), *value;
|
|
|
|
const char *tflag;
|
|
|
|
char *expanded = NULL;
|
2020-09-01 09:19:01 +00:00
|
|
|
enum cmd_retval retval = CMD_RETURN_NORMAL;
|
2009-08-08 21:52:43 +00:00
|
|
|
|
2011-01-04 00:42:46 +00:00
|
|
|
if (*name == '\0') {
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "empty variable name");
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-08-08 21:52:43 +00:00
|
|
|
}
|
2011-01-04 00:42:46 +00:00
|
|
|
if (strchr(name, '=') != NULL) {
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "variable name contains =");
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-08-08 21:52:43 +00:00
|
|
|
}
|
|
|
|
|
2021-08-20 19:50:16 +00:00
|
|
|
if (args_count(args) < 2)
|
2011-01-04 00:42:46 +00:00
|
|
|
value = NULL;
|
|
|
|
else
|
2021-08-20 19:50:16 +00:00
|
|
|
value = args_string(args, 1);
|
|
|
|
if (value != NULL && args_has(args, 'F')) {
|
|
|
|
expanded = format_single_from_target(item, value);
|
|
|
|
value = expanded;
|
|
|
|
}
|
2020-04-13 08:26:27 +00:00
|
|
|
if (args_has(args, 'g'))
|
2015-10-28 09:51:55 +00:00
|
|
|
env = global_environ;
|
2016-03-03 14:15:22 +00:00
|
|
|
else {
|
2020-04-13 10:59:58 +00:00
|
|
|
if (target->s == NULL) {
|
|
|
|
tflag = args_get(args, 't');
|
|
|
|
if (tflag != NULL)
|
|
|
|
cmdq_error(item, "no such session: %s", tflag);
|
2016-03-03 14:15:22 +00:00
|
|
|
else
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "no current session");
|
2020-09-01 09:19:01 +00:00
|
|
|
retval = CMD_RETURN_ERROR;
|
|
|
|
goto out;
|
2016-03-03 14:15:22 +00:00
|
|
|
}
|
2020-04-13 10:59:58 +00:00
|
|
|
env = target->s->environ;
|
2016-03-03 14:15:22 +00:00
|
|
|
}
|
2009-08-08 21:52:43 +00:00
|
|
|
|
2020-04-13 08:26:27 +00:00
|
|
|
if (args_has(args, 'u')) {
|
2011-01-04 00:42:46 +00:00
|
|
|
if (value != NULL) {
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "can't specify a value with -u");
|
2020-09-01 09:19:01 +00:00
|
|
|
retval = CMD_RETURN_ERROR;
|
|
|
|
goto out;
|
2009-08-08 21:52:43 +00:00
|
|
|
}
|
2011-01-04 00:42:46 +00:00
|
|
|
environ_unset(env, name);
|
2020-04-13 08:26:27 +00:00
|
|
|
} else if (args_has(args, 'r')) {
|
2011-01-04 00:42:46 +00:00
|
|
|
if (value != NULL) {
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "can't specify a value with -r");
|
2020-09-01 09:19:01 +00:00
|
|
|
retval = CMD_RETURN_ERROR;
|
|
|
|
goto out;
|
2009-08-08 21:52:43 +00:00
|
|
|
}
|
2015-11-24 23:46:15 +00:00
|
|
|
environ_clear(env, name);
|
2009-08-08 21:52:43 +00:00
|
|
|
} else {
|
2011-01-04 00:42:46 +00:00
|
|
|
if (value == NULL) {
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "no value specified");
|
2020-09-01 09:19:01 +00:00
|
|
|
retval = CMD_RETURN_ERROR;
|
|
|
|
goto out;
|
2009-08-08 21:52:43 +00:00
|
|
|
}
|
2020-09-01 09:19:01 +00:00
|
|
|
|
2020-03-31 17:14:40 +00:00
|
|
|
if (args_has(args, 'h'))
|
|
|
|
environ_set(env, name, ENVIRON_HIDDEN, "%s", value);
|
|
|
|
else
|
|
|
|
environ_set(env, name, 0, "%s", value);
|
2009-08-08 21:52:43 +00:00
|
|
|
}
|
|
|
|
|
2020-09-01 09:19:01 +00:00
|
|
|
out:
|
2021-08-20 19:50:16 +00:00
|
|
|
free(expanded);
|
2020-09-01 09:19:01 +00:00
|
|
|
return (retval);
|
2009-08-08 21:52:43 +00:00
|
|
|
}
|