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",
|
|
|
|
|
|
|
|
.args = { "grt:u", 1, 2 },
|
|
|
|
.usage = "[-gru] " CMD_TARGET_SESSION_USAGE " name [value]",
|
|
|
|
|
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
|
|
|
{
|
2011-01-04 00:42:46 +00:00
|
|
|
struct args *args = self->args;
|
|
|
|
struct environ *env;
|
2016-03-03 14:15:22 +00:00
|
|
|
const char *name, *value, *target;
|
2009-08-08 21:52:43 +00:00
|
|
|
|
2011-01-04 00:42:46 +00:00
|
|
|
name = args->argv[0];
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2012-10-31 19:11:18 +00:00
|
|
|
if (args->argc < 2)
|
2011-01-04 00:42:46 +00:00
|
|
|
value = NULL;
|
|
|
|
else
|
|
|
|
value = args->argv[1];
|
|
|
|
|
2016-03-03 14:15:22 +00:00
|
|
|
if (args_has(self->args, 'g'))
|
2015-10-28 09:51:55 +00:00
|
|
|
env = global_environ;
|
2016-03-03 14:15:22 +00:00
|
|
|
else {
|
2017-04-22 10:22:39 +00:00
|
|
|
if (item->target.s == NULL) {
|
2016-03-03 14:15:22 +00:00
|
|
|
target = args_get(args, 't');
|
|
|
|
if (target != NULL)
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "no such session: %s", target);
|
2016-03-03 14:15:22 +00:00
|
|
|
else
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "no current session");
|
2016-03-03 14:15:22 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
}
|
2017-04-22 10:22:39 +00:00
|
|
|
env = item->target.s->environ;
|
2016-03-03 14:15:22 +00:00
|
|
|
}
|
2009-08-08 21:52:43 +00:00
|
|
|
|
2011-01-04 00:42:46 +00:00
|
|
|
if (args_has(self->args, 'u')) {
|
|
|
|
if (value != NULL) {
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "can't specify a value with -u");
|
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
|
|
|
environ_unset(env, name);
|
|
|
|
} else if (args_has(self->args, 'r')) {
|
|
|
|
if (value != NULL) {
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "can't specify a value with -r");
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
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");
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-08-08 21:52:43 +00:00
|
|
|
}
|
2015-11-24 23:46:15 +00:00
|
|
|
environ_set(env, name, "%s", value);
|
2009-08-08 21:52:43 +00:00
|
|
|
}
|
|
|
|
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2009-08-08 21:52:43 +00:00
|
|
|
}
|