2016-04-29 01:26:46 +00:00
|
|
|
// Functions for setting and getting environment variables.
|
2016-05-18 22:30:21 +00:00
|
|
|
#include "config.h" // IWYU pragma: keep
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
#include <errno.h>
|
2005-09-20 13:26:39 +00:00
|
|
|
#include <pwd.h>
|
2015-07-25 15:14:25 +00:00
|
|
|
#include <stddef.h>
|
2017-02-16 04:09:26 +00:00
|
|
|
#include <stdio.h>
|
2016-04-29 01:26:46 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
2016-12-23 21:08:45 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
#include <algorithm>
|
2018-01-30 21:22:36 +00:00
|
|
|
#include <iterator>
|
2019-04-13 21:27:03 +00:00
|
|
|
#include <mutex>
|
2016-04-29 01:26:46 +00:00
|
|
|
#include <set>
|
2015-07-25 15:14:25 +00:00
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2017-06-13 00:19:13 +00:00
|
|
|
#include "builtin_bind.h"
|
2005-09-20 13:26:39 +00:00
|
|
|
#include "common.h"
|
|
|
|
#include "env.h"
|
2019-03-26 03:18:00 +00:00
|
|
|
#include "env_dispatch.h"
|
2014-06-16 00:30:50 +00:00
|
|
|
#include "env_universal_common.h"
|
2005-10-05 22:37:08 +00:00
|
|
|
#include "event.h"
|
2016-04-29 01:26:46 +00:00
|
|
|
#include "fallback.h" // IWYU pragma: keep
|
2014-05-01 07:46:27 +00:00
|
|
|
#include "fish_version.h"
|
2019-04-28 23:34:54 +00:00
|
|
|
#include "global_safety.h"
|
2016-04-29 01:26:46 +00:00
|
|
|
#include "history.h"
|
|
|
|
#include "input.h"
|
|
|
|
#include "path.h"
|
|
|
|
#include "proc.h"
|
|
|
|
#include "reader.h"
|
|
|
|
#include "wutil.h" // IWYU pragma: keep
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2017-02-16 04:09:26 +00:00
|
|
|
#define DEFAULT_TERM1 "ansi"
|
|
|
|
#define DEFAULT_TERM2 "dumb"
|
2005-09-26 14:47:03 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
/// Some configuration path environment variables.
|
2018-03-12 13:34:20 +00:00
|
|
|
#define FISH_DATADIR_VAR L"__fish_data_dir"
|
|
|
|
#define FISH_SYSCONFDIR_VAR L"__fish_sysconf_dir"
|
2012-07-18 17:50:38 +00:00
|
|
|
#define FISH_HELPDIR_VAR L"__fish_help_dir"
|
|
|
|
#define FISH_BIN_DIR L"__fish_bin_dir"
|
2018-12-15 04:09:29 +00:00
|
|
|
#define FISH_CONFIG_DIR L"__fish_config_dir"
|
|
|
|
#define FISH_USER_DATA_DIR L"__fish_user_data_dir"
|
2012-07-18 17:50:38 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
/// At init, we read all the environment variables from this array.
|
2005-09-20 13:26:39 +00:00
|
|
|
extern char **environ;
|
|
|
|
|
2018-09-10 01:32:15 +00:00
|
|
|
/// The character used to delimit path and non-path variables in exporting and in string expansion.
|
|
|
|
static const wchar_t PATH_ARRAY_SEP = L':';
|
|
|
|
static const wchar_t NONPATH_ARRAY_SEP = L' ';
|
|
|
|
|
2017-02-16 04:09:26 +00:00
|
|
|
bool curses_initialized = false;
|
2012-03-06 23:51:48 +00:00
|
|
|
|
2016-12-23 21:08:45 +00:00
|
|
|
/// Does the terminal have the "eat_newline_glitch".
|
|
|
|
bool term_has_xn = false;
|
|
|
|
|
2019-04-14 21:01:23 +00:00
|
|
|
/// Universal variables global instance. Initialized in env_init.
|
2019-04-28 23:34:54 +00:00
|
|
|
static latch_t<env_universal_t> s_universal_variables;
|
2019-04-14 21:01:23 +00:00
|
|
|
|
|
|
|
/// Getter for universal variables.
|
|
|
|
static env_universal_t *uvars() { return s_universal_variables; }
|
|
|
|
|
2019-04-29 05:05:03 +00:00
|
|
|
bool env_universal_barrier() { return env_stack_t::principal().universal_barrier(); }
|
2019-04-14 21:01:23 +00:00
|
|
|
|
|
|
|
// A typedef for a set of constant strings. Note our sets are typically on the order of 6 elements,
|
|
|
|
// so we don't bother to sort them.
|
|
|
|
using string_set_t = const wchar_t *const[];
|
|
|
|
|
|
|
|
/// Check if a variable may not be set using the set command.
|
|
|
|
static bool is_read_only(const wcstring &key) {
|
|
|
|
static const string_set_t env_read_only = {
|
|
|
|
L"PWD", L"SHLVL", L"history", L"pipestatus", L"status", L"version",
|
|
|
|
L"FISH_VERSION", L"fish_pid", L"hostname", L"_", L"fish_private_mode"};
|
|
|
|
return contains(env_read_only, key) || (in_private_mode() && key == L"fish_history");
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Return true if a variable should become a path variable by default. See #436.
|
|
|
|
static bool variable_should_auto_pathvar(const wcstring &name) {
|
|
|
|
return string_suffixes_string(L"PATH", name);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Table of variables whose value is dynamically calculated, such as umask, status, etc.
|
|
|
|
static const string_set_t env_electric = {L"history", L"pipestatus", L"status", L"umask"};
|
|
|
|
|
|
|
|
static bool is_electric(const wcstring &key) { return contains(env_electric, key); }
|
|
|
|
|
|
|
|
/// \return a the value of a variable for \p key, which must be electric (computed).
|
|
|
|
static maybe_t<env_var_t> get_electric(const wcstring &key, const environment_t &vars) {
|
|
|
|
if (key == L"history") {
|
|
|
|
// Big hack. We only allow getting the history on the main thread. Note that history_t
|
|
|
|
// may ask for an environment variable, so don't take the lock here (we don't need it).
|
|
|
|
if (!is_main_thread()) {
|
|
|
|
return none();
|
|
|
|
}
|
|
|
|
|
|
|
|
history_t *history = reader_get_history();
|
|
|
|
if (!history) {
|
|
|
|
history = &history_t::history_with_name(history_session_id(vars));
|
|
|
|
}
|
|
|
|
wcstring_list_t result;
|
|
|
|
if (history) history->get_history(result);
|
|
|
|
return env_var_t(L"history", result);
|
|
|
|
} else if (key == L"pipestatus") {
|
|
|
|
const auto js = proc_get_last_statuses();
|
|
|
|
wcstring_list_t result;
|
|
|
|
result.reserve(js.pipestatus.size());
|
|
|
|
for (int i : js.pipestatus) {
|
|
|
|
result.push_back(to_string(i));
|
|
|
|
}
|
|
|
|
return env_var_t(L"pipestatus", std::move(result));
|
|
|
|
} else if (key == L"status") {
|
|
|
|
return env_var_t(L"status", to_string(proc_get_last_status()));
|
|
|
|
} else if (key == L"umask") {
|
|
|
|
// note umask() is an absurd API: you call it to set the value and it returns the old value.
|
2019-04-14 23:08:29 +00:00
|
|
|
// Thus we have to call it twice, to reset the value.
|
|
|
|
// We need to lock since otherwise this races.
|
|
|
|
// Guess what the umask is; if we guess right we don't need to reset it.
|
|
|
|
static std::mutex umask_lock;
|
|
|
|
scoped_lock locker(umask_lock);
|
|
|
|
int guess = 022;
|
|
|
|
mode_t res = umask(guess);
|
|
|
|
if (res != guess) umask(res);
|
2019-04-14 21:01:23 +00:00
|
|
|
return env_var_t(L"umask", format_string(L"0%0.3o", res));
|
|
|
|
}
|
|
|
|
// We should never get here unless the electric var list is out of sync with the above code.
|
|
|
|
DIE("unrecognized electric var name");
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Some env vars contain a list of paths where an empty path element is equivalent to ".".
|
|
|
|
/// Unfortunately that convention causes problems for fish scripts. So this function replaces the
|
|
|
|
/// empty path element with an explicit ".". See issue #3914.
|
|
|
|
void fix_colon_delimited_var(const wcstring &var_name, env_stack_t &vars) {
|
|
|
|
const auto paths = vars.get(var_name);
|
|
|
|
if (paths.missing_or_empty()) return;
|
|
|
|
|
|
|
|
// See if there's any empties.
|
|
|
|
const wcstring empty = wcstring();
|
|
|
|
const wcstring_list_t &strs = paths->as_list();
|
|
|
|
if (contains(strs, empty)) {
|
|
|
|
// Copy the list and replace empties with L"."
|
|
|
|
wcstring_list_t newstrs = strs;
|
|
|
|
std::replace(newstrs.begin(), newstrs.end(), empty, wcstring(L"."));
|
|
|
|
int retval = vars.set(var_name, ENV_DEFAULT | ENV_USER, std::move(newstrs));
|
|
|
|
if (retval != ENV_OK) {
|
|
|
|
debug(0, L"fix_colon_delimited_var failed unexpectedly with retval %d", retval);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const wcstring_list_t &env_var_t::as_list() const { return *vals_; }
|
|
|
|
|
|
|
|
wchar_t env_var_t::get_delimiter() const {
|
|
|
|
return is_pathvar() ? PATH_ARRAY_SEP : NONPATH_ARRAY_SEP;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Return a string representation of the var.
|
|
|
|
wcstring env_var_t::as_string() const { return join_strings(*vals_, get_delimiter()); }
|
|
|
|
|
|
|
|
void env_var_t::to_list(wcstring_list_t &out) const { out = *vals_; }
|
|
|
|
|
|
|
|
env_var_t::env_var_flags_t env_var_t::flags_for(const wchar_t *name) {
|
|
|
|
env_var_flags_t result = 0;
|
|
|
|
if (is_read_only(name)) result |= flag_read_only;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// \return a singleton empty list, to avoid unnecessary allocations in env_var_t.
|
|
|
|
std::shared_ptr<const wcstring_list_t> env_var_t::empty_list() {
|
2019-04-29 01:13:55 +00:00
|
|
|
static const auto s_empty_result = std::make_shared<const wcstring_list_t>();
|
|
|
|
return s_empty_result;
|
2019-04-14 21:01:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
environment_t::~environment_t() = default;
|
|
|
|
|
|
|
|
wcstring environment_t::get_pwd_slash() const {
|
|
|
|
// Return "/" if PWD is missing.
|
|
|
|
// See https://github.com/fish-shell/fish-shell/issues/5080
|
|
|
|
auto pwd_var = get(L"PWD");
|
|
|
|
wcstring pwd;
|
|
|
|
if (!pwd_var.missing_or_empty()) {
|
|
|
|
pwd = pwd_var->as_string();
|
|
|
|
}
|
|
|
|
if (!string_suffixes_string(L"/", pwd)) {
|
|
|
|
pwd.push_back(L'/');
|
|
|
|
}
|
|
|
|
return pwd;
|
|
|
|
}
|
|
|
|
|
|
|
|
null_environment_t::~null_environment_t() = default;
|
|
|
|
maybe_t<env_var_t> null_environment_t::get(const wcstring &key, env_mode_flags_t mode) const {
|
|
|
|
UNUSED(key);
|
|
|
|
UNUSED(mode);
|
|
|
|
return none();
|
|
|
|
}
|
|
|
|
wcstring_list_t null_environment_t::get_names(int flags) const {
|
|
|
|
UNUSED(flags);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is a big dorky lock we take around everything that might read from or modify an env_node_t.
|
|
|
|
// Fine grained locking is annoying here because env_nodes may be shared between env_stacks, so each
|
|
|
|
// node would need its own lock.
|
|
|
|
static std::mutex env_lock;
|
|
|
|
|
2017-01-26 19:06:03 +00:00
|
|
|
// Struct representing one level in the function variable stack.
|
2017-01-26 19:20:09 +00:00
|
|
|
// Only our variable stack should create and destroy these
|
2017-01-26 19:06:03 +00:00
|
|
|
class env_node_t {
|
2017-01-27 04:00:43 +00:00
|
|
|
public:
|
2016-04-29 01:26:46 +00:00
|
|
|
/// Variable table.
|
2012-11-19 00:30:30 +00:00
|
|
|
var_table_t env;
|
2016-04-29 01:26:46 +00:00
|
|
|
/// Does this node imply a new variable scope? If yes, all non-global variables below this one
|
|
|
|
/// in the stack are invisible. If new_scope is set for the global variable node, the universe
|
|
|
|
/// will explode.
|
2019-04-08 19:22:08 +00:00
|
|
|
const bool new_scope;
|
2017-06-21 14:48:48 +00:00
|
|
|
/// Does this node contain any variables which are exported to subshells
|
|
|
|
/// or does it redefine any variables to not be exported?
|
2017-01-26 19:06:03 +00:00
|
|
|
bool exportv = false;
|
2016-04-29 01:26:46 +00:00
|
|
|
/// Pointer to next level.
|
2019-04-10 23:47:43 +00:00
|
|
|
const std::shared_ptr<env_node_t> next;
|
2018-09-10 08:17:37 +00:00
|
|
|
|
2019-04-10 23:47:43 +00:00
|
|
|
env_node_t(bool is_new_scope, std::shared_ptr<env_node_t> next_scope)
|
|
|
|
: new_scope(is_new_scope), next(std::move(next_scope)) {}
|
2012-11-19 00:30:30 +00:00
|
|
|
|
2019-04-08 19:22:08 +00:00
|
|
|
maybe_t<env_var_t> find_entry(const wcstring &key) {
|
|
|
|
auto it = env.find(key);
|
|
|
|
if (it != env.end()) return it->second;
|
|
|
|
return none();
|
|
|
|
}
|
2012-02-26 02:54:49 +00:00
|
|
|
};
|
2018-09-10 08:17:37 +00:00
|
|
|
using env_node_ref_t = std::shared_ptr<env_node_t>;
|
|
|
|
|
2019-04-14 21:01:23 +00:00
|
|
|
// A class wrapping up a variable stack.
|
|
|
|
// This forms a linekd list of env_node_t, and also maintains the export array for exported
|
|
|
|
// environment variables.
|
2017-01-26 18:38:55 +00:00
|
|
|
struct var_stack_t {
|
2018-09-14 07:36:26 +00:00
|
|
|
var_stack_t(var_stack_t &&) = default;
|
|
|
|
|
2017-01-26 18:38:55 +00:00
|
|
|
// Top node on the function stack.
|
2018-09-10 08:17:37 +00:00
|
|
|
env_node_ref_t top;
|
2017-01-26 18:38:55 +00:00
|
|
|
|
2018-09-10 08:17:37 +00:00
|
|
|
// Bottom node on the function stack.
|
2019-04-10 23:47:43 +00:00
|
|
|
const env_node_ref_t global_env;
|
2017-01-26 19:06:03 +00:00
|
|
|
|
2017-01-26 20:03:14 +00:00
|
|
|
// Exported variable array used by execv.
|
2018-09-14 07:36:26 +00:00
|
|
|
maybe_t<null_terminated_array_t<char>> export_array;
|
2017-01-26 20:03:14 +00:00
|
|
|
|
|
|
|
/// Flag for checking if we need to regenerate the exported variable array.
|
2018-09-14 07:36:26 +00:00
|
|
|
void mark_changed_exported() { export_array.reset(); }
|
|
|
|
|
|
|
|
bool has_changed_exported() const { return !export_array; }
|
|
|
|
|
2017-01-26 20:03:14 +00:00
|
|
|
void update_export_array_if_necessary();
|
|
|
|
|
2019-04-14 21:52:54 +00:00
|
|
|
var_stack_t(env_node_ref_t top, env_node_ref_t global_env)
|
|
|
|
: top(std::move(top)), global_env(std::move(global_env)) {}
|
2017-01-26 19:06:03 +00:00
|
|
|
|
|
|
|
// Pushes a new node onto our stack
|
|
|
|
// Optionally creates a new scope for the node
|
2019-03-25 07:49:52 +00:00
|
|
|
void push(bool new_scope) {
|
2019-04-10 23:47:43 +00:00
|
|
|
auto node = std::make_shared<env_node_t>(new_scope, this->top);
|
2019-03-25 07:49:52 +00:00
|
|
|
|
|
|
|
// Copy local-exported variables.
|
|
|
|
auto top_node = top;
|
|
|
|
// Only if we introduce a new shadowing scope; i.e. not if it's just `begin; end` or
|
|
|
|
// "--no-scope-shadowing".
|
|
|
|
if (new_scope && top_node != this->global_env) {
|
|
|
|
for (const auto &var : top_node->env) {
|
|
|
|
if (var.second.exports()) node->env.insert(var);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-04 21:16:34 +00:00
|
|
|
this->top = std::move(node);
|
2019-03-25 07:49:52 +00:00
|
|
|
if (new_scope && local_scope_exports(this->top)) {
|
|
|
|
this->mark_changed_exported();
|
|
|
|
}
|
|
|
|
}
|
2017-01-26 19:20:09 +00:00
|
|
|
|
2019-04-08 19:23:49 +00:00
|
|
|
// Pops the top node, asserting it's not global.
|
|
|
|
// \return the popped node.
|
|
|
|
env_node_ref_t pop() {
|
|
|
|
assert(top != this->global_env && "Cannot pop global node");
|
2019-03-25 07:49:52 +00:00
|
|
|
env_node_ref_t old_top = this->top;
|
|
|
|
this->top = old_top->next;
|
2019-04-08 19:23:49 +00:00
|
|
|
return old_top;
|
2019-03-25 07:49:52 +00:00
|
|
|
}
|
2017-01-26 19:32:45 +00:00
|
|
|
|
2018-09-10 08:17:37 +00:00
|
|
|
// Returns the next scope to search for a given node, respecting the new_scope flag.
|
|
|
|
// Returns an empty pointer if we're done.
|
2019-03-25 07:49:52 +00:00
|
|
|
env_node_ref_t next_scope_to_search(const env_node_ref_t &node) const {
|
|
|
|
assert(node != NULL);
|
|
|
|
if (node == this->global_env) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return node->new_scope ? this->global_env : node->next;
|
|
|
|
}
|
2017-01-26 20:11:32 +00:00
|
|
|
|
2017-08-09 18:11:58 +00:00
|
|
|
// Returns the scope used for unspecified scopes. An unspecified scope is either the topmost
|
|
|
|
// shadowing scope, or the global scope if none. This implements the default behavior of `set`.
|
2019-03-25 07:49:52 +00:00
|
|
|
env_node_ref_t resolve_unspecified_scope() {
|
|
|
|
env_node_ref_t node = this->top;
|
|
|
|
while (node && !node->new_scope) {
|
|
|
|
node = node->next;
|
|
|
|
}
|
|
|
|
return node ? node : this->global_env;
|
|
|
|
}
|
2018-09-09 19:17:31 +00:00
|
|
|
|
2018-09-14 07:36:26 +00:00
|
|
|
/// Copy this vars_stack.
|
|
|
|
var_stack_t clone() const {
|
|
|
|
return var_stack_t(*this);
|
|
|
|
}
|
|
|
|
|
2019-04-14 22:29:23 +00:00
|
|
|
/// Snapshot this vars_stack. That is, return a new vars_stack that has copies of all local
|
|
|
|
/// variables. Note that this drops all shadowed nodes: only the currently executing function is
|
|
|
|
/// copied. Global variables are referenced, not copied; this is both because there are a lot of
|
|
|
|
/// global varibables so copying would be expensive, and some (electrics) are computed so cannot
|
|
|
|
/// be effectively copied.
|
|
|
|
std::unique_ptr<var_stack_t> snapshot() const {
|
|
|
|
return make_unique<var_stack_t>(snapshot_node(top), global_env);
|
|
|
|
}
|
|
|
|
|
2019-04-14 21:52:54 +00:00
|
|
|
/// \return true if the topomst local scope exports a variable.
|
2019-04-08 19:32:14 +00:00
|
|
|
bool local_scope_exports(const env_node_ref_t &n) const;
|
|
|
|
|
2019-04-14 21:52:54 +00:00
|
|
|
/// \return a new stack with a single top level local scope.
|
|
|
|
// This local scope will persist throughout the lifetime of the fish process, and it will ensure
|
|
|
|
// that `set -l` commands run at the command-line don't affect the global scope.
|
|
|
|
static std::unique_ptr<var_stack_t> create() {
|
|
|
|
auto locals = std::make_shared<env_node_t>(false, globals());
|
|
|
|
return make_unique<var_stack_t>(std::move(locals), globals());
|
|
|
|
}
|
|
|
|
|
2018-09-09 19:17:31 +00:00
|
|
|
private:
|
2018-09-14 07:36:26 +00:00
|
|
|
/// Copy constructor. This does not copy the export array; it just allows it to be regenerated.
|
|
|
|
var_stack_t(const var_stack_t &rhs) : top(rhs.top), global_env(rhs.global_env) {}
|
|
|
|
|
2018-09-09 19:17:31 +00:00
|
|
|
void get_exported(const env_node_t *n, var_table_t &h) const;
|
2018-09-10 08:17:37 +00:00
|
|
|
|
2019-04-14 22:29:23 +00:00
|
|
|
/// Recursive helper for snapshot(). Snapshot a node and its unshadows parents, returning it.
|
|
|
|
env_node_ref_t snapshot_node(const env_node_ref_t &node) const {
|
|
|
|
assert(node && "null node in snapshot_node");
|
|
|
|
// If we are global, re-use the global node. If we reach a new scope, jump to globals; we
|
|
|
|
// don't snapshot shadowed scopes, because the snapshot is intended to be read-only and so
|
|
|
|
// there would be no way to access them.
|
|
|
|
if (node == global_env) {
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
auto next = snapshot_node(node->new_scope ? global_env : node->next);
|
|
|
|
auto result = std::make_shared<env_node_t>(node->new_scope, next);
|
|
|
|
// Copy over variables.
|
|
|
|
// Note assigning env is a potentially big copy.
|
|
|
|
result->exportv = node->exportv;
|
|
|
|
result->env = node->env;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-04-14 21:52:54 +00:00
|
|
|
/// \return the global variable set.
|
|
|
|
/// Note that this is the only place where we talk about a single global variable set; each
|
|
|
|
/// var_stack_t has its own reference to globals and could potentially have a different global
|
|
|
|
/// set.
|
2019-03-25 07:49:52 +00:00
|
|
|
static env_node_ref_t globals() {
|
2019-04-10 23:47:43 +00:00
|
|
|
static env_node_ref_t s_globals{std::make_shared<env_node_t>(false, nullptr)};
|
2019-03-25 07:49:52 +00:00
|
|
|
return s_globals;
|
2017-01-26 19:20:09 +00:00
|
|
|
}
|
2019-03-25 07:49:52 +00:00
|
|
|
};
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2019-04-14 21:01:23 +00:00
|
|
|
/// Get list of all exported variables.
|
|
|
|
void var_stack_t::get_exported(const env_node_t *n, var_table_t &h) const {
|
|
|
|
if (!n) return;
|
2014-06-16 00:30:50 +00:00
|
|
|
|
2019-04-14 21:01:23 +00:00
|
|
|
if (n->new_scope) {
|
|
|
|
get_exported(global_env.get(), h);
|
|
|
|
} else {
|
|
|
|
get_exported(n->next.get(), h);
|
|
|
|
}
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2019-04-14 21:01:23 +00:00
|
|
|
var_table_t::const_iterator iter;
|
|
|
|
for (iter = n->env.begin(); iter != n->env.end(); ++iter) {
|
|
|
|
const wcstring &key = iter->first;
|
|
|
|
const env_var_t var = iter->second;
|
2011-12-27 03:18:46 +00:00
|
|
|
|
2019-04-14 21:01:23 +00:00
|
|
|
if (var.exports()) {
|
|
|
|
// Export the variable. Don't use std::map::insert here, since we need to overwrite
|
|
|
|
// existing values from previous scopes.
|
|
|
|
h[key] = var;
|
|
|
|
} else {
|
|
|
|
// We need to erase from the map if we are not exporting, since a lower scope may have
|
|
|
|
// exported. See #2132.
|
|
|
|
h.erase(key);
|
|
|
|
}
|
|
|
|
}
|
2011-12-27 03:18:46 +00:00
|
|
|
}
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2019-04-14 21:01:23 +00:00
|
|
|
/// Returns true if the specified scope or any non-shadowed non-global subscopes contain an exported
|
|
|
|
/// variable.
|
|
|
|
bool var_stack_t::local_scope_exports(const env_node_ref_t &n) const {
|
|
|
|
assert(n != nullptr);
|
|
|
|
if (n == global_env) return false;
|
2018-01-30 21:31:36 +00:00
|
|
|
|
2019-04-14 21:01:23 +00:00
|
|
|
if (n->exportv) return true;
|
2011-12-27 03:18:46 +00:00
|
|
|
|
2019-04-14 21:01:23 +00:00
|
|
|
if (n->new_scope) return false;
|
2011-12-27 03:18:46 +00:00
|
|
|
|
2019-04-14 21:01:23 +00:00
|
|
|
return local_scope_exports(n->next);
|
|
|
|
}
|
2019-03-25 07:49:52 +00:00
|
|
|
|
2019-04-14 21:01:23 +00:00
|
|
|
void var_stack_t::update_export_array_if_necessary() {
|
|
|
|
if (!this->has_changed_exported()) {
|
|
|
|
return;
|
|
|
|
}
|
2019-03-26 03:18:00 +00:00
|
|
|
|
2019-04-14 21:01:23 +00:00
|
|
|
debug(4, L"export_arr() recalc");
|
|
|
|
var_table_t vals;
|
|
|
|
get_exported(this->top.get(), vals);
|
|
|
|
|
|
|
|
if (uvars()) {
|
|
|
|
const wcstring_list_t uni = uvars()->get_names(true, false);
|
|
|
|
for (const wcstring &key : uni) {
|
|
|
|
auto var = uvars()->get(key);
|
|
|
|
|
|
|
|
if (!var.missing_or_empty()) {
|
|
|
|
// Note that std::map::insert does NOT overwrite a value already in the map,
|
|
|
|
// which we depend on here.
|
|
|
|
vals.insert(std::pair<wcstring, env_var_t>(key, *var));
|
|
|
|
}
|
|
|
|
}
|
2019-03-26 03:18:00 +00:00
|
|
|
}
|
|
|
|
|
2019-04-14 21:01:23 +00:00
|
|
|
// Construct the export list: a list of strings of the form key=value.
|
|
|
|
std::vector<std::string> export_list;
|
|
|
|
export_list.reserve(vals.size());
|
|
|
|
for (const auto &kv : vals) {
|
|
|
|
std::string str = wcs2string(kv.first);
|
|
|
|
str.push_back('=');
|
|
|
|
str.append(wcs2string(kv.second.as_string()));
|
|
|
|
export_list.push_back(std::move(str));
|
|
|
|
}
|
|
|
|
export_array.emplace(export_list);
|
2019-03-26 03:18:00 +00:00
|
|
|
}
|
|
|
|
|
2019-03-25 07:49:52 +00:00
|
|
|
// Get the variable stack
|
2019-04-14 20:37:44 +00:00
|
|
|
var_stack_t &env_scoped_t::vars_stack() { return *vars_; }
|
|
|
|
const var_stack_t &env_scoped_t::vars_stack() const { return *vars_; }
|
2019-03-25 07:49:52 +00:00
|
|
|
|
2019-04-14 21:01:23 +00:00
|
|
|
// Read a variable respecting the given mode.
|
|
|
|
maybe_t<env_var_t> env_scoped_t::get(const wcstring &key, env_mode_flags_t mode) const {
|
|
|
|
const bool has_scope = mode & (ENV_LOCAL | ENV_GLOBAL | ENV_UNIVERSAL);
|
|
|
|
const bool search_local = !has_scope || (mode & ENV_LOCAL);
|
|
|
|
const bool search_global = !has_scope || (mode & ENV_GLOBAL);
|
|
|
|
const bool search_universal = !has_scope || (mode & ENV_UNIVERSAL);
|
2005-10-23 12:14:29 +00:00
|
|
|
|
2019-04-14 21:01:23 +00:00
|
|
|
const bool search_exported = (mode & ENV_EXPORT) || !(mode & ENV_UNEXPORT);
|
|
|
|
const bool search_unexported = (mode & ENV_UNEXPORT) || !(mode & ENV_EXPORT);
|
2016-06-29 01:06:39 +00:00
|
|
|
|
2019-04-14 21:01:23 +00:00
|
|
|
// Make the assumption that electric keys can't be shadowed elsewhere, since we currently block
|
|
|
|
// that in env_stack_t::set().
|
|
|
|
if (is_electric(key)) {
|
|
|
|
if (!search_global) return none();
|
|
|
|
return get_electric(key, *this);
|
|
|
|
}
|
2017-04-04 06:16:11 +00:00
|
|
|
|
2019-04-14 21:01:23 +00:00
|
|
|
if (search_local || search_global) {
|
|
|
|
scoped_lock locker(env_lock); // lock around a local region
|
|
|
|
env_node_ref_t env = search_local ? vars_stack().top : vars_stack().global_env;
|
|
|
|
|
|
|
|
while (env != NULL) {
|
|
|
|
if (env == vars_stack().global_env && !search_global) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
var_table_t::const_iterator result = env->env.find(key);
|
|
|
|
if (result != env->env.end()) {
|
|
|
|
const env_var_t &var = result->second;
|
|
|
|
if (var.exports() ? search_exported : search_unexported) {
|
|
|
|
return var;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
env = vars_stack().next_scope_to_search(env);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Okay, we couldn't find a local or global var given the requirements. If there is a matching
|
|
|
|
// universal var return that.
|
|
|
|
if (search_universal && uvars()) {
|
|
|
|
auto var = uvars()->get(key);
|
|
|
|
if (var && (var->exports() ? search_exported : search_unexported)) {
|
|
|
|
return var;
|
2017-04-04 06:16:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-14 21:01:23 +00:00
|
|
|
return none();
|
2017-04-04 06:16:11 +00:00
|
|
|
}
|
|
|
|
|
2019-04-14 22:29:23 +00:00
|
|
|
std::shared_ptr<environment_t> env_scoped_t::snapshot() const {
|
|
|
|
return std::shared_ptr<env_scoped_t>(new env_scoped_t(vars_->snapshot()));
|
|
|
|
}
|
|
|
|
|
2019-04-14 21:01:23 +00:00
|
|
|
env_scoped_t::env_scoped_t(std::unique_ptr<var_stack_t> vars) : vars_(std::move(vars)) {}
|
|
|
|
env_scoped_t::env_scoped_t(env_scoped_t &&) = default;
|
|
|
|
env_scoped_t::~env_scoped_t() = default;
|
|
|
|
|
2019-04-29 05:05:03 +00:00
|
|
|
bool env_stack_t::universal_barrier() {
|
2019-04-14 21:01:23 +00:00
|
|
|
ASSERT_IS_MAIN_THREAD();
|
2019-04-29 05:05:03 +00:00
|
|
|
if (!uvars()) return false;
|
2019-04-14 21:01:23 +00:00
|
|
|
|
|
|
|
callback_data_list_t callbacks;
|
|
|
|
bool changed = uvars()->sync(callbacks);
|
|
|
|
if (changed) {
|
|
|
|
universal_notifier_t::default_notifier().post_notification();
|
2012-11-18 10:23:22 +00:00
|
|
|
}
|
2019-04-14 21:01:23 +00:00
|
|
|
|
|
|
|
env_universal_callbacks(this, callbacks);
|
2019-04-29 05:05:03 +00:00
|
|
|
return changed || !callbacks.empty();
|
2006-01-21 20:42:17 +00:00
|
|
|
}
|
|
|
|
|
2017-02-16 04:09:26 +00:00
|
|
|
/// If they don't already exist initialize the `COLUMNS` and `LINES` env vars to reasonable
|
2017-01-18 21:54:54 +00:00
|
|
|
/// defaults. They will be updated later by the `get_current_winsize()` function if they need to be
|
|
|
|
/// adjusted.
|
2018-09-11 02:17:44 +00:00
|
|
|
void env_stack_t::set_termsize() {
|
2018-09-14 07:36:26 +00:00
|
|
|
auto &vars = env_stack_t::globals();
|
2018-09-11 02:17:44 +00:00
|
|
|
auto cols = get(L"COLUMNS");
|
2018-09-14 07:36:26 +00:00
|
|
|
if (cols.missing_or_empty()) vars.set_one(L"COLUMNS", ENV_GLOBAL, DFLT_TERM_COL_STR);
|
2017-02-10 23:20:09 +00:00
|
|
|
|
2018-09-11 02:17:44 +00:00
|
|
|
auto rows = get(L"LINES");
|
2018-09-14 07:36:26 +00:00
|
|
|
if (rows.missing_or_empty()) vars.set_one(L"LINES", ENV_GLOBAL, DFLT_TERM_ROW_STR);
|
2017-01-18 21:54:54 +00:00
|
|
|
}
|
|
|
|
|
2018-09-17 01:03:13 +00:00
|
|
|
/// Update the PWD variable directory from the result of getcwd().
|
2018-09-09 19:17:31 +00:00
|
|
|
void env_stack_t::set_pwd_from_getcwd() {
|
2017-08-05 22:08:39 +00:00
|
|
|
wcstring cwd = wgetcwd();
|
|
|
|
if (cwd.empty()) {
|
2016-04-29 01:26:46 +00:00
|
|
|
debug(0,
|
|
|
|
_(L"Could not determine current working directory. Is your locale set correctly?"));
|
2018-09-17 01:03:13 +00:00
|
|
|
return;
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
2018-09-14 07:36:26 +00:00
|
|
|
set_one(L"PWD", ENV_EXPORT | ENV_GLOBAL, cwd);
|
2008-01-16 22:07:38 +00:00
|
|
|
}
|
|
|
|
|
2018-09-09 19:17:31 +00:00
|
|
|
void env_stack_t::mark_changed_exported() { vars_stack().mark_changed_exported(); }
|
|
|
|
|
2016-11-28 17:24:49 +00:00
|
|
|
/// Set up the USER variable.
|
2016-11-27 00:35:48 +00:00
|
|
|
static void setup_user(bool force) {
|
2018-09-18 04:26:21 +00:00
|
|
|
auto &vars = env_stack_t::globals();
|
|
|
|
if (force || vars.get(L"USER").missing_or_empty()) {
|
2017-05-18 06:07:47 +00:00
|
|
|
struct passwd userinfo;
|
|
|
|
struct passwd *result;
|
|
|
|
char buf[8192];
|
|
|
|
int retval = getpwuid_r(getuid(), &userinfo, buf, sizeof(buf), &result);
|
|
|
|
if (!retval && result) {
|
2017-05-11 04:08:36 +00:00
|
|
|
const wcstring uname = str2wcstring(userinfo.pw_name);
|
2018-09-18 04:26:21 +00:00
|
|
|
vars.set_one(L"USER", ENV_GLOBAL | ENV_EXPORT, uname);
|
2016-11-28 17:24:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-16 04:09:26 +00:00
|
|
|
/// Various things we need to initialize at run-time that don't really fit any of the other init
|
|
|
|
/// routines.
|
|
|
|
void misc_init() {
|
|
|
|
// If stdout is open on a tty ensure stdio is unbuffered. That's because those functions might
|
|
|
|
// be intermixed with `write()` calls and we need to ensure the writes are not reordered. See
|
|
|
|
// issue #3748.
|
|
|
|
if (isatty(STDOUT_FILENO)) {
|
|
|
|
fflush(stdout);
|
|
|
|
setvbuf(stdout, NULL, _IONBF, 0);
|
|
|
|
}
|
2019-04-29 13:29:21 +00:00
|
|
|
// Check for /proc/self/stat to see if we are running with Linux-style procfs
|
|
|
|
if (access("/proc/self/stat", R_OK) == 0) {
|
|
|
|
have_proc_stat = true;
|
|
|
|
}
|
2017-02-16 04:09:26 +00:00
|
|
|
}
|
|
|
|
|
2019-04-14 21:01:23 +00:00
|
|
|
/// Ensure the content of the magic path env vars is reasonable. Specifically, that empty path
|
|
|
|
/// elements are converted to explicit "." to make the vars easier to use in fish scripts.
|
|
|
|
static void init_path_vars() {
|
|
|
|
// Do not replace empties in MATHPATH - see #4158.
|
|
|
|
fix_colon_delimited_var(L"PATH", env_stack_t::globals());
|
|
|
|
fix_colon_delimited_var(L"CDPATH", env_stack_t::globals());
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Make sure the PATH variable contains something.
|
|
|
|
static void setup_path() {
|
|
|
|
auto &vars = env_stack_t::globals();
|
|
|
|
const auto path = vars.get(L"PATH");
|
|
|
|
if (path.missing_or_empty()) {
|
|
|
|
#if defined(_CS_PATH)
|
|
|
|
// _CS_PATH: colon-separated paths to find POSIX utilities
|
|
|
|
std::string cspath;
|
|
|
|
cspath.resize(confstr(_CS_PATH, nullptr, 0));
|
|
|
|
confstr(_CS_PATH, &cspath[0], cspath.length());
|
|
|
|
#else
|
|
|
|
std::string cspath = "/usr/bin:/bin"; // I doubt this is even necessary
|
|
|
|
#endif
|
|
|
|
vars.set_one(L"PATH", ENV_GLOBAL | ENV_EXPORT, str2wcstring(cspath));
|
|
|
|
}
|
|
|
|
}
|
2017-08-19 00:26:45 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
void env_init(const struct config_paths_t *paths /* or NULL */) {
|
2018-09-14 07:36:26 +00:00
|
|
|
env_stack_t &vars = env_stack_t::globals();
|
2016-04-29 01:26:46 +00:00
|
|
|
// Import environment variables. Walk backwards so that the first one out of any duplicates wins
|
2017-04-04 06:16:11 +00:00
|
|
|
// (See issue #2784).
|
2016-03-06 03:07:00 +00:00
|
|
|
wcstring key, val;
|
2016-05-01 00:46:14 +00:00
|
|
|
const char *const *envp = environ;
|
2016-03-06 03:02:50 +00:00
|
|
|
size_t i = 0;
|
2017-08-05 22:08:39 +00:00
|
|
|
while (envp && envp[i]) i++;
|
2016-04-29 01:26:46 +00:00
|
|
|
while (i--) {
|
|
|
|
const wcstring key_and_val = str2wcstring(envp[i]); // like foo=bar
|
2012-12-19 21:31:06 +00:00
|
|
|
size_t eql = key_and_val.find(L'=');
|
2016-04-29 01:26:46 +00:00
|
|
|
if (eql == wcstring::npos) {
|
2017-08-05 22:08:39 +00:00
|
|
|
// No equal-sign found so treat it as a defined var that has no value(s).
|
2014-07-12 07:53:23 +00:00
|
|
|
if (is_read_only(key_and_val) || is_electric(key_and_val)) continue;
|
2018-09-11 04:27:25 +00:00
|
|
|
vars.set_empty(key_and_val, ENV_EXPORT | ENV_GLOBAL);
|
2016-04-29 01:26:46 +00:00
|
|
|
} else {
|
2016-03-06 03:07:00 +00:00
|
|
|
key.assign(key_and_val, 0, eql);
|
2018-09-10 01:32:15 +00:00
|
|
|
val.assign(key_and_val, eql+1, wcstring::npos);
|
2014-07-12 07:53:23 +00:00
|
|
|
if (is_read_only(key) || is_electric(key)) continue;
|
2018-09-14 07:36:26 +00:00
|
|
|
vars.set(key, ENV_EXPORT | ENV_GLOBAL, {val});
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
2012-11-18 10:23:22 +00:00
|
|
|
}
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
// Set the given paths in the environment, if we have any.
|
|
|
|
if (paths != NULL) {
|
2018-09-14 07:36:26 +00:00
|
|
|
vars.set_one(FISH_DATADIR_VAR, ENV_GLOBAL, paths->data);
|
|
|
|
vars.set_one(FISH_SYSCONFDIR_VAR, ENV_GLOBAL, paths->sysconf);
|
|
|
|
vars.set_one(FISH_HELPDIR_VAR, ENV_GLOBAL, paths->doc);
|
|
|
|
vars.set_one(FISH_BIN_DIR, ENV_GLOBAL, paths->bin);
|
2012-07-18 17:50:38 +00:00
|
|
|
}
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2018-12-15 04:09:29 +00:00
|
|
|
wcstring user_config_dir;
|
|
|
|
path_get_config(user_config_dir);
|
2018-09-14 07:36:26 +00:00
|
|
|
vars.set_one(FISH_CONFIG_DIR, ENV_GLOBAL, user_config_dir);
|
2018-12-15 04:09:29 +00:00
|
|
|
|
|
|
|
wcstring user_data_dir;
|
|
|
|
path_get_data(user_data_dir);
|
2018-09-14 07:36:26 +00:00
|
|
|
vars.set_one(FISH_USER_DATA_DIR, ENV_GLOBAL, user_data_dir);
|
2018-12-15 04:09:29 +00:00
|
|
|
|
2017-04-04 06:16:11 +00:00
|
|
|
init_path_vars();
|
2017-02-16 04:09:26 +00:00
|
|
|
|
2016-11-28 17:24:49 +00:00
|
|
|
// Set up the USER and PATH variables
|
2012-11-19 00:30:30 +00:00
|
|
|
setup_path();
|
2017-04-07 13:06:54 +00:00
|
|
|
|
|
|
|
// Some `su`s keep $USER when changing to root.
|
|
|
|
// This leads to issues later on (and e.g. in prompts),
|
|
|
|
// so we work around it by resetting $USER.
|
2017-05-02 04:44:30 +00:00
|
|
|
// TODO: Figure out if that su actually checks if username == "root"(as the man page says) or
|
|
|
|
// UID == 0.
|
2017-04-07 13:06:54 +00:00
|
|
|
uid_t uid = getuid();
|
|
|
|
setup_user(uid == 0);
|
2012-11-19 00:30:30 +00:00
|
|
|
|
2018-05-03 10:49:21 +00:00
|
|
|
// Set up $IFS - this used to be in share/config.fish, but really breaks if it isn't done.
|
2018-09-14 07:36:26 +00:00
|
|
|
vars.set_one(L"IFS", ENV_GLOBAL, L"\n \t");
|
2018-05-03 10:49:21 +00:00
|
|
|
|
2016-05-26 14:11:26 +00:00
|
|
|
// Set up the version variable.
|
2014-05-01 07:46:27 +00:00
|
|
|
wcstring version = str2wcstring(get_fish_version());
|
2018-09-14 07:36:26 +00:00
|
|
|
vars.set_one(L"version", ENV_GLOBAL, version);
|
|
|
|
vars.set_one(L"FISH_VERSION", ENV_GLOBAL, version);
|
2012-11-19 00:30:30 +00:00
|
|
|
|
2018-10-10 21:26:29 +00:00
|
|
|
// Set the $fish_pid variable.
|
2019-02-04 00:06:10 +00:00
|
|
|
vars.set_one(L"fish_pid", ENV_GLOBAL, to_string(getpid()));
|
2018-03-09 09:47:28 +00:00
|
|
|
|
2018-03-09 21:02:32 +00:00
|
|
|
// Set the $hostname variable
|
|
|
|
wcstring hostname = L"fish";
|
|
|
|
get_hostname_identifier(hostname);
|
2018-09-14 07:36:26 +00:00
|
|
|
vars.set_one(L"hostname", ENV_GLOBAL, hostname);
|
2018-03-09 21:02:32 +00:00
|
|
|
|
2018-09-25 04:17:05 +00:00
|
|
|
// Set up SHLVL variable. Not we can't use vars.get() because SHLVL is read-only, and therefore
|
|
|
|
// was not inherited from the environment.
|
2012-05-09 10:23:31 +00:00
|
|
|
wcstring nshlvl_str = L"1";
|
2018-01-30 21:22:36 +00:00
|
|
|
if (const char *shlvl_var = getenv("SHLVL")) {
|
2016-11-23 04:24:03 +00:00
|
|
|
const wchar_t *end;
|
|
|
|
// TODO: Figure out how to handle invalid numbers better. Shouldn't we issue a diagnostic?
|
2018-01-30 21:22:36 +00:00
|
|
|
long shlvl_i = fish_wcstol(str2wcstring(shlvl_var).c_str(), &end);
|
2016-11-23 04:24:03 +00:00
|
|
|
if (!errno && shlvl_i >= 0) {
|
2019-02-04 00:06:10 +00:00
|
|
|
nshlvl_str = to_string(shlvl_i + 1);
|
2012-05-09 10:23:31 +00:00
|
|
|
}
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
2018-09-14 07:36:26 +00:00
|
|
|
vars.set_one(L"SHLVL", ENV_GLOBAL | ENV_EXPORT, nshlvl_str);
|
2010-10-08 00:35:22 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
// Set up the HOME variable.
|
2017-04-07 13:06:54 +00:00
|
|
|
// Unlike $USER, it doesn't seem that `su`s pass this along
|
|
|
|
// if the target user is root, unless "--preserve-environment" is used.
|
|
|
|
// Since that is an explicit choice, we should allow it to enable e.g.
|
|
|
|
// env HOME=(mktemp -d) su --preserve-environment fish
|
2018-09-18 04:26:21 +00:00
|
|
|
if (vars.get(L"HOME").missing_or_empty()) {
|
|
|
|
auto user_var = vars.get(L"USER");
|
2017-08-06 01:22:49 +00:00
|
|
|
if (!user_var.missing_or_empty()) {
|
2017-08-28 07:25:41 +00:00
|
|
|
char *unam_narrow = wcs2str(user_var->as_string());
|
2017-07-20 17:45:03 +00:00
|
|
|
struct passwd userinfo;
|
|
|
|
struct passwd *result;
|
|
|
|
char buf[8192];
|
|
|
|
int retval = getpwnam_r(unam_narrow, &userinfo, buf, sizeof(buf), &result);
|
|
|
|
if (retval || !result) {
|
|
|
|
// Maybe USER is set but it's bogus. Reset USER from the db and try again.
|
|
|
|
setup_user(true);
|
2018-09-18 04:26:21 +00:00
|
|
|
user_var = vars.get(L"USER");
|
2017-08-06 01:22:49 +00:00
|
|
|
if (!user_var.missing_or_empty()) {
|
2017-08-28 07:25:41 +00:00
|
|
|
unam_narrow = wcs2str(user_var->as_string());
|
2017-08-06 01:22:49 +00:00
|
|
|
retval = getpwnam_r(unam_narrow, &userinfo, buf, sizeof(buf), &result);
|
|
|
|
}
|
2017-07-20 17:45:03 +00:00
|
|
|
}
|
|
|
|
if (!retval && result && userinfo.pw_dir) {
|
|
|
|
const wcstring dir = str2wcstring(userinfo.pw_dir);
|
2018-09-14 07:36:26 +00:00
|
|
|
vars.set_one(L"HOME", ENV_GLOBAL | ENV_EXPORT, dir);
|
2017-07-20 17:45:03 +00:00
|
|
|
} else {
|
2017-08-05 22:08:39 +00:00
|
|
|
// We cannot get $HOME. This triggers warnings for history and config.fish already,
|
2017-07-20 17:45:03 +00:00
|
|
|
// so it isn't necessary to warn here as well.
|
2018-09-11 04:27:25 +00:00
|
|
|
vars.set_empty(L"HOME", ENV_GLOBAL | ENV_EXPORT);
|
2017-07-20 17:45:03 +00:00
|
|
|
}
|
|
|
|
free(unam_narrow);
|
2017-07-20 14:06:01 +00:00
|
|
|
} else {
|
2017-08-05 22:08:39 +00:00
|
|
|
// If $USER is empty as well (which we tried to set above), we can't get $HOME.
|
2018-09-11 04:27:25 +00:00
|
|
|
vars.set_empty(L"HOME", ENV_GLOBAL | ENV_EXPORT);
|
2014-07-25 17:42:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-17 01:03:13 +00:00
|
|
|
// initialize the PWD variable if necessary
|
2019-02-18 21:11:01 +00:00
|
|
|
// Note we may inherit a virtual PWD that doesn't match what getcwd would return; respect that
|
|
|
|
// if and only if it matches getcwd (#5647). Note we treat PWD as read-only so it was not set in
|
|
|
|
// vars.
|
|
|
|
const char *incoming_pwd_cstr = getenv("PWD");
|
|
|
|
wcstring incoming_pwd = incoming_pwd_cstr ? str2wcstring(incoming_pwd_cstr) : wcstring{};
|
|
|
|
if (!incoming_pwd.empty() && paths_are_same_file(incoming_pwd, L".")) {
|
|
|
|
vars.set_one(L"PWD", ENV_EXPORT | ENV_GLOBAL, incoming_pwd);
|
2019-01-22 21:07:55 +00:00
|
|
|
} else {
|
2018-09-11 02:17:44 +00:00
|
|
|
vars.set_pwd_from_getcwd();
|
2018-09-17 01:03:13 +00:00
|
|
|
}
|
2018-09-11 02:17:44 +00:00
|
|
|
vars.set_termsize(); // initialize the terminal size variables
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
// Set fish_bind_mode to "default".
|
2018-09-11 02:17:44 +00:00
|
|
|
vars.set_one(FISH_BIND_MODE_VAR, ENV_GLOBAL, DEFAULT_BIND_MODE);
|
2014-07-13 20:21:06 +00:00
|
|
|
|
2019-03-26 03:18:00 +00:00
|
|
|
// Allow changes to variables to produce events.
|
2019-04-01 02:51:08 +00:00
|
|
|
env_dispatch_init(vars);
|
2017-07-14 17:45:31 +00:00
|
|
|
|
2019-04-08 20:32:25 +00:00
|
|
|
init_input();
|
|
|
|
|
2019-05-02 00:31:22 +00:00
|
|
|
// Complain about invalid config paths.
|
|
|
|
path_emit_config_directory_errors(vars);
|
|
|
|
|
2017-07-14 17:45:31 +00:00
|
|
|
// Set up universal variables. The empty string means to use the default path.
|
2019-04-28 23:34:54 +00:00
|
|
|
s_universal_variables.emplace(L"");
|
2017-07-14 17:45:31 +00:00
|
|
|
callback_data_list_t callbacks;
|
2018-04-02 00:43:12 +00:00
|
|
|
s_universal_variables->initialize(callbacks);
|
2018-09-09 19:17:31 +00:00
|
|
|
env_universal_callbacks(&env_stack_t::principal(), callbacks);
|
2005-09-20 13:26:39 +00:00
|
|
|
}
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
/// Search all visible scopes in order for the specified key. Return the first scope in which it was
|
|
|
|
/// found.
|
2018-09-10 08:17:37 +00:00
|
|
|
env_node_ref_t env_stack_t::get_node(const wcstring &key) {
|
|
|
|
env_node_ref_t env = vars_stack().top;
|
|
|
|
while (env) {
|
2017-08-28 07:25:41 +00:00
|
|
|
if (env->find_entry(key)) break;
|
2017-01-26 19:32:45 +00:00
|
|
|
env = vars_stack().next_scope_to_search(env);
|
2012-11-18 10:23:22 +00:00
|
|
|
}
|
2012-11-19 00:30:30 +00:00
|
|
|
return env;
|
2005-09-20 13:26:39 +00:00
|
|
|
}
|
2006-01-08 23:00:49 +00:00
|
|
|
|
2017-08-28 09:51:34 +00:00
|
|
|
static int set_umask(const wcstring_list_t &list_val) {
|
2017-08-19 22:45:46 +00:00
|
|
|
long mask = -1;
|
2017-08-28 09:51:34 +00:00
|
|
|
if (list_val.size() == 1 && !list_val.front().empty()) {
|
|
|
|
mask = fish_wcstol(list_val.front().c_str(), NULL, 8);
|
2017-08-19 22:45:46 +00:00
|
|
|
}
|
2017-08-05 22:08:39 +00:00
|
|
|
|
2017-08-19 22:45:46 +00:00
|
|
|
if (errno || mask > 0777 || mask < 0) return ENV_INVALID;
|
2018-09-25 04:17:05 +00:00
|
|
|
// Do not actually create a umask variable. On env_stack_t::get() it will be calculated.
|
2017-08-19 22:45:46 +00:00
|
|
|
umask(mask);
|
|
|
|
return ENV_OK;
|
2017-08-05 22:08:39 +00:00
|
|
|
}
|
|
|
|
|
2018-10-22 07:49:09 +00:00
|
|
|
/// Set a universal variable, inheriting as applicable from the given old variable.
|
|
|
|
static void env_set_internal_universal(const wcstring &key, wcstring_list_t val,
|
2018-09-09 19:17:31 +00:00
|
|
|
env_mode_flags_t input_var_mode, env_stack_t *stack) {
|
2018-10-22 07:49:09 +00:00
|
|
|
ASSERT_IS_MAIN_THREAD();
|
|
|
|
if (!uvars()) return;
|
|
|
|
env_mode_flags_t var_mode = input_var_mode;
|
|
|
|
auto oldvar = uvars()->get(key);
|
|
|
|
// Resolve whether or not to export.
|
|
|
|
if ((var_mode & (ENV_EXPORT | ENV_UNEXPORT)) == 0) {
|
|
|
|
bool doexport = oldvar ? oldvar->exports() : false;
|
|
|
|
var_mode |= (doexport ? ENV_EXPORT : ENV_UNEXPORT);
|
|
|
|
}
|
|
|
|
// Resolve whether to be a path variable.
|
|
|
|
// Here we fall back to the auto-pathvar behavior.
|
|
|
|
if ((var_mode & (ENV_PATHVAR | ENV_UNPATHVAR)) == 0) {
|
|
|
|
bool dopathvar = oldvar ? oldvar->is_pathvar() : variable_should_auto_pathvar(key);
|
|
|
|
var_mode |= (dopathvar ? ENV_PATHVAR : ENV_UNPATHVAR);
|
|
|
|
}
|
|
|
|
|
2018-10-27 22:20:32 +00:00
|
|
|
// Split about ':' if it's a path variable.
|
|
|
|
if (var_mode & ENV_PATHVAR) {
|
|
|
|
wcstring_list_t split_val;
|
|
|
|
for (const wcstring &str : val) {
|
|
|
|
vec_append(split_val, split_string(str, PATH_ARRAY_SEP));
|
|
|
|
}
|
|
|
|
val = std::move(split_val);
|
|
|
|
}
|
|
|
|
|
2018-10-22 07:49:09 +00:00
|
|
|
// Construct and set the new variable.
|
|
|
|
env_var_t::env_var_flags_t varflags = 0;
|
|
|
|
if (var_mode & ENV_EXPORT) varflags |= env_var_t::flag_export;
|
|
|
|
if (var_mode & ENV_PATHVAR) varflags |= env_var_t::flag_pathvar;
|
|
|
|
env_var_t new_var{val, varflags};
|
|
|
|
|
|
|
|
uvars()->set(key, new_var);
|
|
|
|
env_universal_barrier();
|
|
|
|
if (new_var.exports() || (oldvar && oldvar->exports())) {
|
2018-09-09 19:17:31 +00:00
|
|
|
stack->mark_changed_exported();
|
2018-10-22 07:49:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-30 00:25:48 +00:00
|
|
|
/// Set the value of the environment variable whose name matches key to val.
|
|
|
|
///
|
|
|
|
/// \param key The key
|
2017-08-28 09:51:34 +00:00
|
|
|
/// \param val The value to set.
|
2016-11-05 01:11:37 +00:00
|
|
|
/// \param var_mode The type of the variable. Can be any combination of ENV_GLOBAL, ENV_LOCAL,
|
2017-08-05 22:08:39 +00:00
|
|
|
/// ENV_EXPORT and ENV_USER. If mode is ENV_DEFAULT, the current variable space is searched and the
|
|
|
|
/// current mode is used. If no current variable with the same name is found, ENV_LOCAL is assumed.
|
2016-10-30 00:25:48 +00:00
|
|
|
///
|
|
|
|
/// Returns:
|
|
|
|
///
|
|
|
|
/// * ENV_OK on success.
|
|
|
|
/// * ENV_PERM, can only be returned when setting as a user, e.g. ENV_USER is set. This means that
|
|
|
|
/// the user tried to change a read-only variable.
|
|
|
|
/// * ENV_SCOPE, the variable cannot be set in the given scope. This applies to readonly/electric
|
|
|
|
/// variables set from the local or universal scopes, or set as exported.
|
|
|
|
/// * ENV_INVALID, the variable value was invalid. This applies only to special variables.
|
2018-09-09 19:17:31 +00:00
|
|
|
int env_stack_t::set_internal(const wcstring &key, env_mode_flags_t input_var_mode, wcstring_list_t val) {
|
2012-03-31 22:33:34 +00:00
|
|
|
ASSERT_IS_MAIN_THREAD();
|
2018-09-10 01:32:15 +00:00
|
|
|
env_mode_flags_t var_mode = input_var_mode;
|
2018-09-14 07:36:26 +00:00
|
|
|
bool has_changed_old = vars_stack().has_changed_exported();
|
2016-04-29 01:26:46 +00:00
|
|
|
int done = 0;
|
2013-01-21 02:34:18 +00:00
|
|
|
|
2017-08-28 09:51:34 +00:00
|
|
|
if (val.size() == 1 && (key == L"PWD" || key == L"HOME")) {
|
2016-04-29 01:26:46 +00:00
|
|
|
// Canonicalize our path; if it changes, recurse and try again.
|
2017-08-28 09:51:34 +00:00
|
|
|
wcstring val_canonical = val.front();
|
2012-02-08 05:23:12 +00:00
|
|
|
path_make_canonical(val_canonical);
|
2017-08-28 09:51:34 +00:00
|
|
|
if (val.front() != val_canonical) {
|
2018-09-09 19:17:31 +00:00
|
|
|
return set_internal(key, var_mode, {val_canonical});
|
2012-02-08 05:23:12 +00:00
|
|
|
}
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
2013-01-21 02:34:18 +00:00
|
|
|
|
2017-08-05 22:08:39 +00:00
|
|
|
if ((var_mode & ENV_LOCAL || var_mode & ENV_UNIVERSAL) &&
|
|
|
|
(is_read_only(key) || is_electric(key))) {
|
2014-07-12 21:05:42 +00:00
|
|
|
return ENV_SCOPE;
|
|
|
|
}
|
2016-04-29 01:26:46 +00:00
|
|
|
if ((var_mode & ENV_EXPORT) && is_electric(key)) {
|
2014-07-12 21:05:42 +00:00
|
|
|
return ENV_SCOPE;
|
|
|
|
}
|
2016-04-29 01:26:46 +00:00
|
|
|
if ((var_mode & ENV_USER) && is_read_only(key)) {
|
2012-11-19 00:30:30 +00:00
|
|
|
return ENV_PERM;
|
2012-11-18 10:23:22 +00:00
|
|
|
}
|
2013-01-21 02:34:18 +00:00
|
|
|
|
2017-08-19 22:45:46 +00:00
|
|
|
if (key == L"umask") { // set new umask
|
2017-08-28 09:51:34 +00:00
|
|
|
return set_umask(val);
|
2012-11-18 10:23:22 +00:00
|
|
|
}
|
2013-01-21 02:34:18 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
if (var_mode & ENV_UNIVERSAL) {
|
|
|
|
if (uvars()) {
|
2018-09-09 19:17:31 +00:00
|
|
|
env_set_internal_universal(key, std::move(val), var_mode, this);
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
2016-04-29 01:26:46 +00:00
|
|
|
} else {
|
2019-04-13 18:54:02 +00:00
|
|
|
scoped_lock locker(env_lock);
|
2016-04-29 01:26:46 +00:00
|
|
|
// Determine the node.
|
2016-02-19 23:45:12 +00:00
|
|
|
bool has_changed_new = false;
|
2018-09-10 08:17:37 +00:00
|
|
|
env_node_ref_t preexisting_node = get_node(key);
|
2018-09-10 01:32:15 +00:00
|
|
|
maybe_t<env_var_t::env_var_flags_t> preexisting_flags{};
|
2019-04-04 21:16:34 +00:00
|
|
|
if (preexisting_node != nullptr) {
|
2013-01-19 21:16:21 +00:00
|
|
|
var_table_t::const_iterator result = preexisting_node->env.find(key);
|
|
|
|
assert(result != preexisting_node->env.end());
|
2018-09-10 01:32:15 +00:00
|
|
|
preexisting_flags = result->second.get_flags();
|
|
|
|
if (*preexisting_flags & env_var_t::flag_export) {
|
2012-11-19 00:30:30 +00:00
|
|
|
has_changed_new = true;
|
|
|
|
}
|
2012-11-18 10:23:22 +00:00
|
|
|
}
|
2013-01-21 02:34:18 +00:00
|
|
|
|
2018-09-10 08:17:37 +00:00
|
|
|
env_node_ref_t node = nullptr;
|
2016-04-29 01:26:46 +00:00
|
|
|
if (var_mode & ENV_GLOBAL) {
|
2017-01-26 19:06:03 +00:00
|
|
|
node = vars_stack().global_env;
|
2016-04-29 01:26:46 +00:00
|
|
|
} else if (var_mode & ENV_LOCAL) {
|
2018-09-10 08:17:37 +00:00
|
|
|
node = vars_stack().top;
|
2019-04-04 21:16:34 +00:00
|
|
|
} else if (preexisting_node != nullptr) {
|
|
|
|
node = std::move(preexisting_node);
|
2016-04-29 01:26:46 +00:00
|
|
|
if ((var_mode & (ENV_EXPORT | ENV_UNEXPORT)) == 0) {
|
2017-08-09 18:11:58 +00:00
|
|
|
// Use existing entry's exportv status.
|
2018-09-10 01:32:15 +00:00
|
|
|
if (preexisting_flags && (*preexisting_flags & env_var_t::flag_export)) {
|
|
|
|
var_mode |= ENV_EXPORT;
|
|
|
|
}
|
2013-01-19 21:16:21 +00:00
|
|
|
}
|
2016-04-29 01:26:46 +00:00
|
|
|
} else {
|
2017-08-28 07:25:41 +00:00
|
|
|
if (uvars() && uvars()->get(key)) {
|
2018-10-22 07:49:09 +00:00
|
|
|
// Modifying an existing universal variable.
|
2018-09-09 19:17:31 +00:00
|
|
|
env_set_internal_universal(key, std::move(val), var_mode, this);
|
2018-10-22 07:49:09 +00:00
|
|
|
done = true;
|
2016-04-29 01:26:46 +00:00
|
|
|
} else {
|
2017-01-26 20:11:32 +00:00
|
|
|
// New variable with unspecified scope
|
|
|
|
node = vars_stack().resolve_unspecified_scope();
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
2012-11-18 10:23:22 +00:00
|
|
|
}
|
2013-01-21 02:34:18 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
if (!done) {
|
2018-09-10 01:32:15 +00:00
|
|
|
// Resolve if we should mark ourselves as a path variable or not.
|
|
|
|
// If there's an existing variable, use its path flag; otherwise infer it.
|
|
|
|
if ((var_mode & (ENV_PATHVAR | ENV_UNPATHVAR)) == 0) {
|
|
|
|
bool should_pathvar = false;
|
2018-11-04 16:02:04 +00:00
|
|
|
if (preexisting_flags) {
|
|
|
|
should_pathvar = *preexisting_flags & env_var_t::flag_pathvar;
|
2018-09-10 01:32:15 +00:00
|
|
|
} else {
|
|
|
|
should_pathvar = variable_should_auto_pathvar(key);
|
|
|
|
}
|
|
|
|
var_mode |= should_pathvar ? ENV_PATHVAR : ENV_UNPATHVAR;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Split about ':' if it's a path variable.
|
|
|
|
if (var_mode & ENV_PATHVAR) {
|
|
|
|
wcstring_list_t split_val;
|
|
|
|
for (const wcstring &str : val) {
|
|
|
|
vec_append(split_val, split_string(str, PATH_ARRAY_SEP));
|
|
|
|
}
|
|
|
|
val = std::move(split_val);
|
|
|
|
}
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
// Set the entry in the node. Note that operator[] accesses the existing entry, or
|
|
|
|
// creates a new one.
|
2017-08-09 18:11:58 +00:00
|
|
|
env_var_t &var = node->env[key];
|
2018-01-30 20:36:50 +00:00
|
|
|
if (var.exports()) {
|
2016-04-29 01:26:46 +00:00
|
|
|
// This variable already existed, and was exported.
|
2013-01-19 21:16:21 +00:00
|
|
|
has_changed_new = true;
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
2017-08-09 18:11:58 +00:00
|
|
|
|
2019-03-25 07:41:04 +00:00
|
|
|
var = var.setting_vals(std::move(val))
|
|
|
|
.setting_exports(var_mode & ENV_EXPORT)
|
|
|
|
.setting_pathvar(var_mode & ENV_PATHVAR)
|
|
|
|
.setting_read_only(is_read_only(key));
|
2017-08-28 09:51:34 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
if (var_mode & ENV_EXPORT) {
|
|
|
|
// The new variable is exported.
|
2013-01-19 21:16:21 +00:00
|
|
|
node->exportv = true;
|
|
|
|
has_changed_new = true;
|
2016-04-29 01:26:46 +00:00
|
|
|
} else {
|
2017-08-09 18:11:58 +00:00
|
|
|
// Set the node's exported when it changes something about exports
|
2017-06-21 14:48:48 +00:00
|
|
|
// (also when it redefines a variable to not be exported).
|
|
|
|
node->exportv = has_changed_old != has_changed_new;
|
2012-02-17 20:23:30 +00:00
|
|
|
}
|
2013-01-21 02:34:18 +00:00
|
|
|
|
2017-01-26 20:03:14 +00:00
|
|
|
if (has_changed_old || has_changed_new) vars_stack().mark_changed_exported();
|
2012-02-17 20:23:30 +00:00
|
|
|
}
|
|
|
|
}
|
2013-01-21 02:34:18 +00:00
|
|
|
|
2019-02-23 09:04:05 +00:00
|
|
|
event_fire(event_t::variable(key, {L"VARIABLE", L"SET", key}));
|
2019-04-08 19:37:38 +00:00
|
|
|
env_dispatch_var_change(key, *this);
|
2016-10-30 00:25:48 +00:00
|
|
|
return ENV_OK;
|
2012-02-17 20:23:30 +00:00
|
|
|
}
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2017-08-28 09:51:34 +00:00
|
|
|
/// Sets the variable with the specified name to the given values.
|
2018-09-09 19:17:31 +00:00
|
|
|
int env_stack_t::set(const wcstring &key, env_mode_flags_t mode, wcstring_list_t vals) {
|
|
|
|
return set_internal(key, mode, std::move(vals));
|
2017-08-19 22:45:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets the variable with the specified name to a single value.
|
2018-09-09 19:17:31 +00:00
|
|
|
int env_stack_t::set_one(const wcstring &key, env_mode_flags_t mode, wcstring val) {
|
2017-08-28 09:51:34 +00:00
|
|
|
wcstring_list_t vals;
|
|
|
|
vals.push_back(std::move(val));
|
2018-09-09 19:17:31 +00:00
|
|
|
return set_internal(key, mode, std::move(vals));
|
2017-08-19 22:45:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets the variable with the specified name without any (i.e., zero) values.
|
2018-09-09 19:17:31 +00:00
|
|
|
int env_stack_t::set_empty(const wcstring &key, env_mode_flags_t mode) {
|
|
|
|
return set_internal(key, mode, {});
|
2017-08-19 22:45:46 +00:00
|
|
|
}
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
/// Attempt to remove/free the specified key/value pair from the specified map.
|
|
|
|
///
|
|
|
|
/// \return zero if the variable was not found, non-zero otherwise
|
2018-09-10 08:17:37 +00:00
|
|
|
bool env_stack_t::try_remove(env_node_ref_t n, const wchar_t *key, int var_mode) {
|
|
|
|
if (n == nullptr) {
|
2013-01-19 21:16:21 +00:00
|
|
|
return false;
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2012-11-19 00:30:30 +00:00
|
|
|
var_table_t::iterator result = n->env.find(key);
|
2016-04-29 01:26:46 +00:00
|
|
|
if (result != n->env.end()) {
|
2018-01-30 20:36:50 +00:00
|
|
|
if (result->second.exports()) {
|
2018-09-09 19:17:31 +00:00
|
|
|
mark_changed_exported();
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
|
|
|
n->env.erase(result);
|
2013-01-19 21:16:21 +00:00
|
|
|
return true;
|
2012-11-18 10:23:22 +00:00
|
|
|
}
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
if (var_mode & ENV_LOCAL) {
|
2013-01-19 21:16:21 +00:00
|
|
|
return false;
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
if (n->new_scope) {
|
2017-01-26 19:06:03 +00:00
|
|
|
return try_remove(vars_stack().global_env, key, var_mode);
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
2018-09-10 08:17:37 +00:00
|
|
|
return try_remove(n->next, key, var_mode);
|
2005-09-20 13:26:39 +00:00
|
|
|
}
|
|
|
|
|
2018-09-09 19:17:31 +00:00
|
|
|
int env_stack_t::remove(const wcstring &key, int var_mode) {
|
2012-03-05 22:18:16 +00:00
|
|
|
ASSERT_IS_MAIN_THREAD();
|
2018-09-10 08:17:37 +00:00
|
|
|
env_node_ref_t first_node{};
|
2012-11-19 00:30:30 +00:00
|
|
|
int erased = 0;
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
if ((var_mode & ENV_USER) && is_read_only(key)) {
|
2018-04-01 02:44:54 +00:00
|
|
|
return ENV_SCOPE;
|
2012-11-18 10:23:22 +00:00
|
|
|
}
|
|
|
|
|
2018-09-10 08:17:37 +00:00
|
|
|
first_node = vars_stack().top;
|
2012-11-19 00:30:30 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
if (!(var_mode & ENV_UNIVERSAL)) {
|
|
|
|
if (var_mode & ENV_GLOBAL) {
|
2017-01-26 19:06:03 +00:00
|
|
|
first_node = vars_stack().global_env;
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
if (try_remove(first_node, key.c_str(), var_mode)) {
|
2019-02-23 09:04:05 +00:00
|
|
|
event_fire(event_t::variable(key, {L"VARIABLE", L"ERASE", key}));
|
2012-11-19 00:30:30 +00:00
|
|
|
erased = 1;
|
|
|
|
}
|
2012-11-18 10:23:22 +00:00
|
|
|
}
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
if (!erased && !(var_mode & ENV_GLOBAL) && !(var_mode & ENV_LOCAL)) {
|
2018-10-22 07:49:09 +00:00
|
|
|
bool is_exported = false;
|
|
|
|
if (uvars()) {
|
|
|
|
if (auto old_flags = uvars()->get_flags(key)) {
|
|
|
|
is_exported = *old_flags & env_var_t::flag_export;
|
|
|
|
}
|
|
|
|
erased = uvars()->remove(key);
|
|
|
|
}
|
2016-04-29 01:26:46 +00:00
|
|
|
if (erased) {
|
2014-07-07 01:04:30 +00:00
|
|
|
env_universal_barrier();
|
2019-02-23 09:04:05 +00:00
|
|
|
event_fire(event_t::variable(key, {L"VARIABLE", L"ERASE", key}));
|
2014-07-07 01:04:30 +00:00
|
|
|
}
|
2016-04-29 01:26:46 +00:00
|
|
|
|
2017-01-26 20:03:14 +00:00
|
|
|
if (is_exported) vars_stack().mark_changed_exported();
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
2006-01-08 23:00:49 +00:00
|
|
|
|
2019-04-08 19:37:38 +00:00
|
|
|
env_dispatch_var_change(key, *this);
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2018-04-01 03:12:52 +00:00
|
|
|
return erased ? ENV_OK : ENV_NOT_FOUND;
|
2005-09-20 13:26:39 +00:00
|
|
|
}
|
|
|
|
|
2018-09-09 19:17:31 +00:00
|
|
|
void env_stack_t::push(bool new_scope) { vars_stack().push(new_scope); }
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2019-04-08 19:32:14 +00:00
|
|
|
void env_stack_t::pop() {
|
|
|
|
auto &vars = vars_stack();
|
|
|
|
auto old_node = vars.pop();
|
|
|
|
|
2019-04-08 20:02:29 +00:00
|
|
|
// Maybe exported variables have changed.
|
|
|
|
if (old_node->exportv) {
|
|
|
|
// This node exported or unexported a variable.
|
|
|
|
vars.mark_changed_exported();
|
|
|
|
} else if (old_node->new_scope && vars.local_scope_exports(old_node->next)) {
|
|
|
|
// This node was a local scope, so it shadowed exports from its parent.
|
2019-04-08 19:32:14 +00:00
|
|
|
vars.mark_changed_exported();
|
|
|
|
}
|
|
|
|
|
2019-04-08 20:02:29 +00:00
|
|
|
// TODO: we would like to coalesce locale / curses changes, so that we only re-initialize once.
|
|
|
|
for (const auto &kv : old_node->env) {
|
|
|
|
env_dispatch_var_change(kv.first, *this);
|
2019-04-08 19:32:14 +00:00
|
|
|
}
|
|
|
|
}
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2019-04-14 20:37:44 +00:00
|
|
|
wcstring_list_t env_scoped_t::get_names(int flags) const {
|
2016-07-21 05:30:58 +00:00
|
|
|
scoped_lock locker(env_lock);
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2012-01-10 20:51:09 +00:00
|
|
|
wcstring_list_t result;
|
|
|
|
std::set<wcstring> names;
|
|
|
|
int show_local = flags & ENV_LOCAL;
|
2012-11-19 00:30:30 +00:00
|
|
|
int show_global = flags & ENV_GLOBAL;
|
|
|
|
int show_universal = flags & ENV_UNIVERSAL;
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2018-09-10 08:17:37 +00:00
|
|
|
env_node_ref_t n = vars_stack().top;
|
2013-01-19 21:16:21 +00:00
|
|
|
const bool show_exported = (flags & ENV_EXPORT) || !(flags & ENV_UNEXPORT);
|
|
|
|
const bool show_unexported = (flags & ENV_UNEXPORT) || !(flags & ENV_EXPORT);
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2019-04-14 21:01:23 +00:00
|
|
|
// Helper to add the names of variables from \p envs to names, respecting show_exported and
|
|
|
|
// show_unexported.
|
|
|
|
auto add_keys = [&](const var_table_t &envs) {
|
|
|
|
for (const auto &kv : envs) {
|
|
|
|
const env_var_t &var = kv.second;
|
|
|
|
if (var.exports() ? show_exported : show_unexported) {
|
|
|
|
names.insert(kv.first);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
if (!show_local && !show_global && !show_universal) {
|
|
|
|
show_local = show_universal = show_global = 1;
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
if (show_local) {
|
|
|
|
while (n) {
|
2017-01-26 19:06:03 +00:00
|
|
|
if (n == vars_stack().global_env) break;
|
2019-04-14 21:01:23 +00:00
|
|
|
add_keys(n->env);
|
2012-11-19 00:30:30 +00:00
|
|
|
if (n->new_scope)
|
|
|
|
break;
|
|
|
|
else
|
2018-09-10 08:17:37 +00:00
|
|
|
n = n->next;
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
2012-11-18 10:23:22 +00:00
|
|
|
}
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
if (show_global) {
|
2019-04-14 21:01:23 +00:00
|
|
|
add_keys(vars_stack().global_env->env);
|
2016-04-29 01:26:46 +00:00
|
|
|
if (show_unexported) {
|
2018-09-29 04:58:44 +00:00
|
|
|
result.insert(result.end(), std::begin(env_electric), std::end(env_electric));
|
2012-01-10 20:51:09 +00:00
|
|
|
}
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
if (show_universal && uvars()) {
|
2014-06-16 00:30:50 +00:00
|
|
|
const wcstring_list_t uni_list = uvars()->get_names(show_exported, show_unexported);
|
2012-01-10 20:51:09 +00:00
|
|
|
names.insert(uni_list.begin(), uni_list.end());
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2012-01-10 20:51:09 +00:00
|
|
|
result.insert(result.end(), names.begin(), names.end());
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-09-09 19:17:31 +00:00
|
|
|
const char *const *env_stack_t::export_arr() {
|
2012-02-28 23:11:46 +00:00
|
|
|
ASSERT_IS_MAIN_THREAD();
|
2017-01-26 20:03:14 +00:00
|
|
|
ASSERT_IS_NOT_FORKED_CHILD();
|
|
|
|
vars_stack().update_export_array_if_necessary();
|
2018-09-14 07:36:26 +00:00
|
|
|
assert(vars_stack().export_array && "Should have export array");
|
|
|
|
return vars_stack().export_array->get();
|
2012-02-28 23:11:46 +00:00
|
|
|
}
|
|
|
|
|
2018-09-09 19:17:31 +00:00
|
|
|
void env_stack_t::set_argv(const wchar_t *const *argv) {
|
2017-08-05 22:08:39 +00:00
|
|
|
if (argv && *argv) {
|
|
|
|
wcstring_list_t list;
|
|
|
|
for (auto arg = argv; *arg; arg++) {
|
2018-09-11 04:27:25 +00:00
|
|
|
list.emplace_back(*arg);
|
2015-08-15 20:37:17 +00:00
|
|
|
}
|
2018-09-11 04:27:25 +00:00
|
|
|
set(L"argv", ENV_LOCAL, std::move(list));
|
2016-04-29 01:26:46 +00:00
|
|
|
} else {
|
2018-09-11 04:27:25 +00:00
|
|
|
set_empty(L"argv", ENV_LOCAL);
|
2015-08-15 20:37:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-09 19:17:31 +00:00
|
|
|
env_stack_t::~env_stack_t() = default;
|
2018-09-14 07:36:26 +00:00
|
|
|
env_stack_t::env_stack_t(env_stack_t &&) = default;
|
2018-09-09 19:17:31 +00:00
|
|
|
|
2018-09-14 07:36:26 +00:00
|
|
|
env_stack_t env_stack_t::make_principal() {
|
|
|
|
const env_stack_t &gl = env_stack_t::globals();
|
|
|
|
std::unique_ptr<var_stack_t> dup_stack = make_unique<var_stack_t>(gl.vars_stack().clone());
|
|
|
|
return env_stack_t{std::move(dup_stack)};
|
|
|
|
}
|
|
|
|
|
2018-09-09 19:17:31 +00:00
|
|
|
env_stack_t &env_stack_t::principal() {
|
2018-09-14 07:36:26 +00:00
|
|
|
static env_stack_t s_principal = make_principal();
|
2018-09-09 19:17:31 +00:00
|
|
|
return s_principal;
|
2018-09-14 07:36:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
env_stack_t &env_stack_t::globals() {
|
2019-04-15 00:43:02 +00:00
|
|
|
static env_stack_t s_global(var_stack_t::create());
|
2018-09-14 07:36:26 +00:00
|
|
|
return s_global;
|
2018-09-09 19:17:31 +00:00
|
|
|
}
|
|
|
|
|
2018-09-28 16:49:06 +00:00
|
|
|
#if defined(__APPLE__) || defined(__CYGWIN__)
|
|
|
|
static int check_runtime_path(const char *path) {
|
2019-01-13 23:03:19 +00:00
|
|
|
UNUSED(path);
|
2018-09-28 16:49:06 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#else
|
2018-09-28 15:14:27 +00:00
|
|
|
/// Check, and create if necessary, a secure runtime path. Derived from tmux.c in tmux
|
|
|
|
/// (http://tmux.sourceforge.net/).
|
|
|
|
static int check_runtime_path(const char *path) {
|
|
|
|
// 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.
|
|
|
|
struct stat statpath;
|
|
|
|
uid_t uid = geteuid();
|
|
|
|
|
|
|
|
if (mkdir(path, S_IRWXU) != 0 && errno != EEXIST) return errno;
|
|
|
|
if (lstat(path, &statpath) != 0) return errno;
|
|
|
|
if (!S_ISDIR(statpath.st_mode) || statpath.st_uid != uid ||
|
|
|
|
(statpath.st_mode & (S_IRWXG | S_IRWXO)) != 0)
|
|
|
|
return EACCES;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/// Return the path of an appropriate runtime data directory.
|
|
|
|
wcstring env_get_runtime_path() {
|
|
|
|
wcstring result;
|
|
|
|
const char *dir = getenv("XDG_RUNTIME_DIR");
|
|
|
|
|
|
|
|
// Check that the path is actually usable. Technically this is guaranteed by the fdo spec but in
|
|
|
|
// practice it is not always the case: see #1828 and #2222.
|
|
|
|
int mode = R_OK | W_OK | X_OK;
|
|
|
|
if (dir != NULL && access(dir, mode) == 0 && check_runtime_path(dir) == 0) {
|
|
|
|
result = str2wcstring(dir);
|
|
|
|
} else {
|
|
|
|
// Don't rely on $USER being set, as setup_user() has not yet been called.
|
|
|
|
// See https://github.com/fish-shell/fish-shell/issues/5180
|
2019-01-22 16:14:33 +00:00
|
|
|
// getpeuid() can't fail, but getpwuid sure can.
|
|
|
|
auto pwuid = getpwuid(geteuid());
|
|
|
|
const char *uname = pwuid ? pwuid->pw_name : NULL;
|
2018-09-28 15:14:27 +00:00
|
|
|
// /tmp/fish.user
|
2019-02-06 04:36:38 +00:00
|
|
|
std::string tmpdir = get_path_to_tmp_dir() + "/fish.";
|
2019-01-22 16:14:33 +00:00
|
|
|
if (uname) {
|
|
|
|
tmpdir.append(uname);
|
|
|
|
}
|
2018-09-28 15:14:27 +00:00
|
|
|
|
2019-01-22 16:14:33 +00:00
|
|
|
if (!uname || check_runtime_path(tmpdir.c_str()) != 0) {
|
2018-09-28 15:14:27 +00:00
|
|
|
debug(0, L"Runtime path not available.");
|
|
|
|
debug(0, L"Try deleting the directory %s and restarting fish.", tmpdir.c_str());
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = str2wcstring(tmpdir);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|