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>
|
2017-05-10 04:46:18 +00:00
|
|
|
#include <limits.h>
|
2016-04-29 01:26:46 +00:00
|
|
|
#include <locale.h>
|
2011-12-27 03:18:46 +00:00
|
|
|
#include <pthread.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>
|
2016-06-04 02:05:13 +00:00
|
|
|
#include <string.h>
|
2016-04-29 01:26:46 +00:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
2016-06-29 01:06:39 +00:00
|
|
|
#include <time.h>
|
2016-04-29 01:26:46 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <wchar.h>
|
2016-12-23 21:08:45 +00:00
|
|
|
|
2017-02-16 04:09:26 +00:00
|
|
|
#if HAVE_NCURSES_H
|
|
|
|
#include <ncurses.h>
|
|
|
|
#elif HAVE_NCURSES_CURSES_H
|
|
|
|
#include <ncurses/curses.h>
|
|
|
|
#else
|
|
|
|
#include <curses.h>
|
|
|
|
#endif
|
2016-12-23 21:08:45 +00:00
|
|
|
#if HAVE_TERM_H
|
|
|
|
#include <term.h>
|
|
|
|
#elif HAVE_NCURSES_TERM_H
|
|
|
|
#include <ncurses/term.h>
|
|
|
|
#endif
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
#include <algorithm>
|
|
|
|
#include <map>
|
|
|
|
#include <set>
|
2017-02-11 02:47:02 +00:00
|
|
|
#include <type_traits>
|
2015-07-25 15:14:25 +00:00
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
2005-09-20 13:26:39 +00:00
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
#include "env.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 "expand.h"
|
|
|
|
#include "fallback.h" // IWYU pragma: keep
|
2014-05-01 07:46:27 +00:00
|
|
|
#include "fish_version.h"
|
2016-04-29 01:26:46 +00:00
|
|
|
#include "history.h"
|
|
|
|
#include "input.h"
|
2016-04-21 06:00:54 +00:00
|
|
|
#include "input_common.h"
|
2017-02-16 04:09:26 +00:00
|
|
|
#include "output.h"
|
2016-04-29 01:26:46 +00:00
|
|
|
#include "path.h"
|
|
|
|
#include "proc.h"
|
|
|
|
#include "reader.h"
|
|
|
|
#include "sanity.h"
|
2017-02-04 03:20:21 +00:00
|
|
|
#include "screen.h"
|
2016-04-29 01:26:46 +00:00
|
|
|
#include "wutil.h" // IWYU pragma: keep
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
/// Value denoting a null string.
|
2005-09-26 14:47:03 +00:00
|
|
|
#define ENV_NULL L"\x1d"
|
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.
|
2012-07-18 17:50:38 +00:00
|
|
|
#define FISH_DATADIR_VAR L"__fish_datadir"
|
|
|
|
#define FISH_SYSCONFDIR_VAR L"__fish_sysconfdir"
|
|
|
|
#define FISH_HELPDIR_VAR L"__fish_help_dir"
|
|
|
|
#define FISH_BIN_DIR L"__fish_bin_dir"
|
|
|
|
|
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;
|
|
|
|
|
2017-02-08 01:21:35 +00:00
|
|
|
// Limit `read` to 10 MiB (bytes not wide chars) by default. This can be overridden by the
|
|
|
|
// FISH_READ_BYTE_LIMIT variable.
|
|
|
|
#define READ_BYTE_LIMIT 10 * 1024 * 1024
|
|
|
|
size_t read_byte_limit = READ_BYTE_LIMIT;
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
bool g_use_posix_spawn = false; // will usually be set to true
|
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;
|
|
|
|
|
2017-02-16 04:09:26 +00:00
|
|
|
/// This is used to ensure that we don't perform any callbacks from `react_to_variable_change()`
|
|
|
|
/// when we're importing environment variables in `env_init()`. That's because we don't have any
|
|
|
|
/// control over the order in which the vars are imported and some of them work in combination.
|
|
|
|
/// For example, `TERMINFO_DIRS` and `TERM`. If the user has set `TERM` to a custom value that is
|
|
|
|
/// found in `TERMINFO_DIRS` we don't to call `handle_curses()` before we've imported the latter.
|
|
|
|
static bool env_initialized = false;
|
|
|
|
|
|
|
|
/// List of all locale environment variable names that might trigger (re)initializing the locale
|
|
|
|
/// subsystem.
|
2017-04-05 04:28:57 +00:00
|
|
|
static const wcstring_list_t locale_variables({L"LANG", L"LANGUAGE", L"LC_ALL", L"LC_ADDRESS",
|
|
|
|
L"LC_COLLATE", L"LC_CTYPE", L"LC_IDENTIFICATION",
|
|
|
|
L"LC_MEASUREMENT", L"LC_MESSAGES", L"LC_MONETARY",
|
|
|
|
L"LC_NAME", L"LC_NUMERIC", L"LC_PAPER",
|
|
|
|
L"LC_TELEPHONE", L"LC_TIME"});
|
2017-01-26 19:20:09 +00:00
|
|
|
|
2017-02-16 04:09:26 +00:00
|
|
|
/// List of all curses environment variable names that might trigger (re)initializing the curses
|
|
|
|
/// subsystem.
|
2017-04-05 04:28:57 +00:00
|
|
|
static const wcstring_list_t curses_variables({L"TERM", L"TERMINFO", L"TERMINFO_DIRS"});
|
2017-01-26 19:20:09 +00:00
|
|
|
|
2017-04-04 06:16:11 +00:00
|
|
|
/// List of all "path" like variable names that need special handling. This includes automatic
|
|
|
|
/// splitting and joining on import/export. As well as replacing empty elements, which implicitly
|
|
|
|
/// refer to the CWD, with an explicit '.'.
|
|
|
|
static const wcstring_list_t colon_delimited_variable({L"PATH", L"MANPATH", L"CDPATH"});
|
|
|
|
|
2017-02-16 04:09:26 +00:00
|
|
|
// Some forward declarations to make it easy to logically group the code.
|
|
|
|
static void init_locale();
|
|
|
|
static void init_curses();
|
|
|
|
|
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 {
|
|
|
|
friend struct var_stack_t;
|
|
|
|
env_node_t(bool is_new_scope) : new_scope(is_new_scope) {}
|
|
|
|
|
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.
|
2013-01-19 21:21:55 +00:00
|
|
|
bool new_scope;
|
2016-04-29 01:26:46 +00:00
|
|
|
/// Does this node contain any variables which are exported to subshells.
|
2017-01-26 19:06:03 +00:00
|
|
|
bool exportv = false;
|
2016-04-29 01:26:46 +00:00
|
|
|
/// Pointer to next level.
|
2017-01-26 20:40:55 +00:00
|
|
|
std::unique_ptr<env_node_t> next;
|
2012-11-19 00:30:30 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
/// Returns a pointer to the given entry if present, or NULL.
|
2013-02-20 01:48:51 +00:00
|
|
|
const var_entry_t *find_entry(const wcstring &key);
|
2012-02-26 02:54:49 +00:00
|
|
|
};
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
class variable_entry_t {
|
2011-12-27 03:18:46 +00:00
|
|
|
wcstring value; /**< Value of the variable */
|
|
|
|
};
|
|
|
|
|
|
|
|
static pthread_mutex_t env_lock = PTHREAD_MUTEX_INITIALIZER;
|
|
|
|
|
2017-01-26 20:40:55 +00:00
|
|
|
static bool local_scope_exports(const env_node_t *n);
|
2017-01-26 19:06:03 +00:00
|
|
|
|
2017-01-26 18:38:55 +00:00
|
|
|
// A class wrapping up a variable stack
|
|
|
|
// Currently there is only one variable stack in fish,
|
|
|
|
// but we can imagine having separate (linked) stacks
|
|
|
|
// if we introduce multiple threads of execution
|
|
|
|
struct var_stack_t {
|
|
|
|
// Top node on the function stack.
|
2017-01-26 20:40:55 +00:00
|
|
|
std::unique_ptr<env_node_t> top = NULL;
|
2017-01-26 18:38:55 +00:00
|
|
|
|
2017-01-26 20:40:55 +00:00
|
|
|
// Bottom node on the function stack
|
|
|
|
// This is an observer pointer
|
2017-01-26 18:38:55 +00:00
|
|
|
env_node_t *global_env = NULL;
|
2017-01-26 19:06:03 +00:00
|
|
|
|
2017-01-26 20:03:14 +00:00
|
|
|
// Exported variable array used by execv.
|
|
|
|
null_terminated_array_t<char> export_array;
|
|
|
|
|
|
|
|
/// Flag for checking if we need to regenerate the exported variable array.
|
|
|
|
bool has_changed_exported = true;
|
|
|
|
void mark_changed_exported() { has_changed_exported = true; }
|
|
|
|
void update_export_array_if_necessary();
|
|
|
|
|
2017-01-27 04:00:43 +00:00
|
|
|
var_stack_t() : top(new env_node_t(false)) { this->global_env = this->top.get(); }
|
2017-01-26 19:06:03 +00:00
|
|
|
|
|
|
|
// Pushes a new node onto our stack
|
|
|
|
// Optionally creates a new scope for the node
|
2017-01-26 19:20:09 +00:00
|
|
|
void push(bool new_scope);
|
|
|
|
|
|
|
|
// Pops the top node if it's not global
|
|
|
|
void pop();
|
2017-01-26 19:32:45 +00:00
|
|
|
|
2017-04-05 04:28:57 +00:00
|
|
|
bool var_changed(const wcstring_list_t &vars);
|
2017-02-16 04:09:26 +00:00
|
|
|
|
2017-01-26 19:32:45 +00:00
|
|
|
// Returns the next scope to search for a given node, respecting the new_scope lag
|
|
|
|
// Returns NULL if we're done
|
|
|
|
env_node_t *next_scope_to_search(env_node_t *node);
|
|
|
|
const env_node_t *next_scope_to_search(const env_node_t *node) const;
|
2017-01-26 20:11:32 +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'
|
|
|
|
env_node_t *resolve_unspecified_scope();
|
2017-01-26 19:20:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void var_stack_t::push(bool new_scope) {
|
2017-01-26 20:40:55 +00:00
|
|
|
std::unique_ptr<env_node_t> node(new env_node_t(new_scope));
|
|
|
|
node->next = std::move(this->top);
|
|
|
|
this->top = std::move(node);
|
|
|
|
if (new_scope && local_scope_exports(this->top.get())) {
|
2017-01-26 20:03:14 +00:00
|
|
|
this->mark_changed_exported();
|
2017-01-26 19:20:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-16 04:09:26 +00:00
|
|
|
/// Return true if one of the vars in the passed list was changed in the current var scope.
|
2017-04-05 04:28:57 +00:00
|
|
|
bool var_stack_t::var_changed(const wcstring_list_t &vars) {
|
|
|
|
for (auto v : vars) {
|
|
|
|
if (top->env.find(v) != top->env.end()) return true;
|
2017-02-16 04:09:26 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-01-26 19:20:09 +00:00
|
|
|
void var_stack_t::pop() {
|
2017-02-16 04:09:26 +00:00
|
|
|
// Don't pop the top-most, global, level.
|
|
|
|
if (top.get() == this->global_env) {
|
2017-01-26 19:20:09 +00:00
|
|
|
debug(0, _(L"Tried to pop empty environment stack."));
|
|
|
|
sanity_lose();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-04-05 04:28:57 +00:00
|
|
|
bool locale_changed = this->var_changed(locale_variables);
|
|
|
|
bool curses_changed = this->var_changed(curses_variables);
|
2017-01-26 19:20:09 +00:00
|
|
|
|
2017-01-26 20:40:55 +00:00
|
|
|
if (top->new_scope) { //!OCLINT(collapsible if statements)
|
|
|
|
if (top->exportv || local_scope_exports(top->next.get())) {
|
2017-01-26 20:03:14 +00:00
|
|
|
this->mark_changed_exported();
|
2017-01-26 19:06:03 +00:00
|
|
|
}
|
|
|
|
}
|
2017-01-26 20:40:55 +00:00
|
|
|
|
2017-01-27 04:00:43 +00:00
|
|
|
// Actually do the pop! Move the top pointer into a local variable, then replace the top pointer
|
|
|
|
// with the next pointer afterwards we should have a node with no next pointer, and our top
|
|
|
|
// should be non-null.
|
2017-01-26 20:40:55 +00:00
|
|
|
std::unique_ptr<env_node_t> old_top = std::move(this->top);
|
|
|
|
this->top = std::move(old_top->next);
|
|
|
|
old_top->next.reset();
|
|
|
|
assert(this->top && old_top && !old_top->next);
|
2017-01-26 19:20:09 +00:00
|
|
|
assert(this->top != NULL);
|
|
|
|
|
2017-01-26 20:40:55 +00:00
|
|
|
for (const auto &entry_pair : old_top->env) {
|
|
|
|
const var_entry_t &entry = entry_pair.second;
|
2017-01-26 19:20:09 +00:00
|
|
|
if (entry.exportv) {
|
2017-01-26 20:03:14 +00:00
|
|
|
this->mark_changed_exported();
|
2017-01-26 19:20:09 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2017-02-16 04:09:26 +00:00
|
|
|
|
|
|
|
if (locale_changed) init_locale();
|
|
|
|
if (curses_changed) init_curses();
|
2017-01-26 19:20:09 +00:00
|
|
|
}
|
|
|
|
|
2017-01-26 19:32:45 +00:00
|
|
|
const env_node_t *var_stack_t::next_scope_to_search(const env_node_t *node) const {
|
|
|
|
assert(node != NULL);
|
|
|
|
if (node == this->global_env) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2017-01-26 20:40:55 +00:00
|
|
|
return node->new_scope ? this->global_env : node->next.get();
|
2017-01-26 19:32:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
env_node_t *var_stack_t::next_scope_to_search(env_node_t *node) {
|
|
|
|
assert(node != NULL);
|
|
|
|
if (node == this->global_env) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2017-01-26 20:40:55 +00:00
|
|
|
return node->new_scope ? this->global_env : node->next.get();
|
2017-01-26 19:32:45 +00:00
|
|
|
}
|
|
|
|
|
2017-01-26 20:11:32 +00:00
|
|
|
env_node_t *var_stack_t::resolve_unspecified_scope() {
|
2017-01-26 20:40:55 +00:00
|
|
|
env_node_t *node = this->top.get();
|
2017-01-26 20:11:32 +00:00
|
|
|
while (node && !node->new_scope) {
|
2017-01-26 20:40:55 +00:00
|
|
|
node = node->next.get();
|
2017-01-26 20:11:32 +00:00
|
|
|
}
|
|
|
|
return node ? node : this->global_env;
|
|
|
|
}
|
2017-01-26 19:06:03 +00:00
|
|
|
|
|
|
|
// Get the global variable stack
|
|
|
|
static var_stack_t &vars_stack() {
|
|
|
|
static var_stack_t global_stack;
|
|
|
|
return global_stack;
|
|
|
|
}
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
/// Universal variables global instance. Initialized in env_init.
|
2014-06-16 00:30:50 +00:00
|
|
|
static env_universal_t *s_universal_variables = NULL;
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
/// Getter for universal variables.
|
|
|
|
static env_universal_t *uvars() { return s_universal_variables; }
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
// Helper class for storing constant strings, without needing to wrap them in a wcstring.
|
2013-02-20 01:48:51 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
// Comparer for const string set.
|
|
|
|
struct const_string_set_comparer {
|
|
|
|
bool operator()(const wchar_t *a, const wchar_t *b) { return wcscmp(a, b) < 0; }
|
2013-02-20 01:48:51 +00:00
|
|
|
};
|
|
|
|
typedef std::set<const wchar_t *, const_string_set_comparer> const_string_set_t;
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
/// Table of variables that may not be set using the set command.
|
2013-02-20 01:48:51 +00:00
|
|
|
static const_string_set_t env_read_only;
|
2011-12-27 03:18:46 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
static bool is_read_only(const wcstring &key) {
|
2013-02-20 01:48:51 +00:00
|
|
|
return env_read_only.find(key.c_str()) != env_read_only.end();
|
2011-12-27 03:18:46 +00:00
|
|
|
}
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
/// Table of variables whose value is dynamically calculated, such as umask, status, etc.
|
2013-02-20 01:48:51 +00:00
|
|
|
static const_string_set_t env_electric;
|
2011-12-27 03:18:46 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
static bool is_electric(const wcstring &key) {
|
2013-02-20 01:48:51 +00:00
|
|
|
return env_electric.find(key.c_str()) != env_electric.end();
|
2011-12-27 03:18:46 +00:00
|
|
|
}
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
const var_entry_t *env_node_t::find_entry(const wcstring &key) {
|
2013-02-20 01:48:51 +00:00
|
|
|
const var_entry_t *result = NULL;
|
|
|
|
var_table_t::const_iterator where = env.find(key);
|
2016-04-29 01:26:46 +00:00
|
|
|
if (where != env.end()) {
|
2013-02-20 01:48:51 +00:00
|
|
|
result = &where->second;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
/// Return the current umask value.
|
|
|
|
static mode_t get_umask() {
|
2012-11-19 00:30:30 +00:00
|
|
|
mode_t res;
|
|
|
|
res = umask(0);
|
|
|
|
umask(res);
|
|
|
|
return res;
|
2005-10-23 12:14:29 +00:00
|
|
|
}
|
|
|
|
|
2016-06-29 04:25:25 +00:00
|
|
|
/// Check if the specified variable is a timezone variable.
|
2016-06-29 01:06:39 +00:00
|
|
|
static bool var_is_timezone(const wcstring &key) { return key == L"TZ"; }
|
|
|
|
|
2016-06-29 04:25:25 +00:00
|
|
|
/// Properly sets all timezone information.
|
2016-06-29 01:06:39 +00:00
|
|
|
static void handle_timezone(const wchar_t *env_var_name) {
|
|
|
|
debug(2, L"handle_timezone() called in response to '%ls' changing", env_var_name);
|
|
|
|
const env_var_t val = env_get_string(env_var_name, ENV_EXPORT);
|
|
|
|
const std::string &value = wcs2string(val);
|
|
|
|
const std::string &name = wcs2string(env_var_name);
|
|
|
|
debug(2, L"timezone var %s='%s'", name.c_str(), value.c_str());
|
|
|
|
if (val.empty()) {
|
|
|
|
unsetenv(name.c_str());
|
|
|
|
} else {
|
|
|
|
setenv(name.c_str(), value.c_str(), 1);
|
|
|
|
}
|
|
|
|
tzset();
|
|
|
|
}
|
|
|
|
|
2017-04-04 06:16:11 +00:00
|
|
|
/// 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.
|
|
|
|
static void fix_colon_delimited_var(const wcstring &var_name) {
|
|
|
|
const env_var_t paths = env_get_string(var_name);
|
|
|
|
if (paths.missing_or_empty()) return;
|
|
|
|
|
|
|
|
bool modified = false;
|
|
|
|
wcstring_list_t pathsv;
|
|
|
|
wcstring_list_t new_pathsv;
|
|
|
|
tokenize_variable_array(paths, pathsv);
|
|
|
|
for (auto next_path : pathsv) {
|
|
|
|
if (next_path.empty()) {
|
|
|
|
next_path = L".";
|
|
|
|
modified = true;
|
|
|
|
}
|
|
|
|
new_pathsv.push_back(next_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!modified) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
wcstring new_val;
|
|
|
|
for (size_t i = 0; i < new_pathsv.size(); i++) {
|
|
|
|
new_val.append(new_pathsv[i]);
|
|
|
|
if (i < new_pathsv.size() - 1) {
|
|
|
|
new_val.append(ARRAY_SEP_STR);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int scope = env_set(var_name, new_val.c_str(), ENV_USER);
|
|
|
|
if (scope != ENV_OK) {
|
|
|
|
debug(0, L"fix_colon_delimited_var failed unexpectedly with retval %d", scope);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
/// Check if the specified variable is a locale variable.
|
|
|
|
static bool var_is_locale(const wcstring &key) {
|
2017-04-05 04:28:57 +00:00
|
|
|
for (auto var_name : locale_variables) {
|
|
|
|
if (key == var_name) {
|
2012-11-19 00:30:30 +00:00
|
|
|
return true;
|
|
|
|
}
|
2012-11-18 10:23:22 +00:00
|
|
|
}
|
2012-11-19 00:30:30 +00:00
|
|
|
return false;
|
2006-01-08 23:00:49 +00:00
|
|
|
}
|
|
|
|
|
2017-02-16 04:09:26 +00:00
|
|
|
/// Initialize the locale subsystem.
|
|
|
|
static void init_locale() {
|
2016-10-16 19:43:48 +00:00
|
|
|
// We have to make a copy because the subsequent setlocale() call to change the locale will
|
|
|
|
// invalidate the pointer from the this setlocale() call.
|
|
|
|
char *old_msg_locale = strdup(setlocale(LC_MESSAGES, NULL));
|
2017-02-16 04:09:26 +00:00
|
|
|
|
2017-04-05 04:28:57 +00:00
|
|
|
for (auto var_name : locale_variables) {
|
|
|
|
const env_var_t val = env_get_string(var_name, ENV_EXPORT);
|
|
|
|
const std::string &name = wcs2string(var_name);
|
2017-02-16 04:09:26 +00:00
|
|
|
const std::string &value = wcs2string(val);
|
|
|
|
debug(2, L"locale var %s='%s'", name.c_str(), value.c_str());
|
|
|
|
if (val.empty()) {
|
|
|
|
unsetenv(name.c_str());
|
|
|
|
} else {
|
|
|
|
setenv(name.c_str(), value.c_str(), 1);
|
|
|
|
}
|
2012-11-18 10:23:22 +00:00
|
|
|
}
|
|
|
|
|
2016-06-04 02:05:13 +00:00
|
|
|
char *locale = setlocale(LC_ALL, "");
|
|
|
|
fish_setlocale();
|
2017-02-16 04:09:26 +00:00
|
|
|
debug(2, L"init_locale() setlocale(): '%s'", locale);
|
2016-06-04 02:05:13 +00:00
|
|
|
|
|
|
|
const char *new_msg_locale = setlocale(LC_MESSAGES, NULL);
|
|
|
|
debug(3, L"old LC_MESSAGES locale: '%s'", old_msg_locale);
|
|
|
|
debug(3, L"new LC_MESSAGES locale: '%s'", new_msg_locale);
|
2016-06-06 01:52:19 +00:00
|
|
|
#ifdef HAVE__NL_MSG_CAT_CNTR
|
2016-06-04 02:05:13 +00:00
|
|
|
if (strcmp(old_msg_locale, new_msg_locale)) {
|
2016-06-06 01:52:19 +00:00
|
|
|
// Make change known to GNU gettext.
|
2012-11-19 00:30:30 +00:00
|
|
|
extern int _nl_msg_cat_cntr;
|
|
|
|
_nl_msg_cat_cntr++;
|
2012-11-18 10:23:22 +00:00
|
|
|
}
|
2016-06-06 01:52:19 +00:00
|
|
|
#endif
|
2016-10-16 19:43:48 +00:00
|
|
|
free(old_msg_locale);
|
2006-01-08 23:00:49 +00:00
|
|
|
}
|
|
|
|
|
2016-06-02 03:03:50 +00:00
|
|
|
/// Check if the specified variable is a locale variable.
|
|
|
|
static bool var_is_curses(const wcstring &key) {
|
2017-04-05 04:28:57 +00:00
|
|
|
for (auto var_name : curses_variables) {
|
|
|
|
if (key == var_name) {
|
2016-06-02 03:03:50 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-01-10 02:35:37 +00:00
|
|
|
/// True if we think we can set the terminal title else false.
|
|
|
|
static bool can_set_term_title = false;
|
|
|
|
|
|
|
|
/// Returns true if we think the terminal supports setting its title.
|
2017-01-27 04:00:43 +00:00
|
|
|
bool term_supports_setting_title() { return can_set_term_title; }
|
2017-01-10 02:35:37 +00:00
|
|
|
|
|
|
|
/// This is a pretty lame heuristic for detecting terminals that do not support setting the
|
|
|
|
/// title. If we recognise the terminal name as that of a virtual terminal, we assume it supports
|
|
|
|
/// setting the title. If we recognise it as that of a console, we assume it does not support
|
|
|
|
/// setting the title. Otherwise we check the ttyname and see if we believe it is a virtual
|
|
|
|
/// terminal.
|
|
|
|
///
|
|
|
|
/// One situation in which this breaks down is with screen, since screen supports setting the
|
|
|
|
/// terminal title if the underlying terminal does so, but will print garbage on terminals that
|
|
|
|
/// don't. Since we can't see the underlying terminal below screen there is no way to fix this.
|
2017-04-05 04:28:57 +00:00
|
|
|
static const wcstring_list_t title_terms({L"xterm", L"screen", L"tmux", L"nxterm", L"rxvt"});
|
2017-01-10 02:35:37 +00:00
|
|
|
static bool does_term_support_setting_title() {
|
|
|
|
const env_var_t term_str = env_get_string(L"TERM");
|
|
|
|
if (term_str.missing()) return false;
|
|
|
|
|
|
|
|
const wchar_t *term = term_str.c_str();
|
2017-04-05 04:28:57 +00:00
|
|
|
bool recognized = contains(title_terms, term_str);
|
2017-01-10 02:35:37 +00:00
|
|
|
if (!recognized) recognized = !wcsncmp(term, L"xterm-", wcslen(L"xterm-"));
|
|
|
|
if (!recognized) recognized = !wcsncmp(term, L"screen-", wcslen(L"screen-"));
|
|
|
|
if (!recognized) recognized = !wcsncmp(term, L"tmux-", wcslen(L"tmux-"));
|
|
|
|
if (!recognized) {
|
2017-04-05 04:28:57 +00:00
|
|
|
if (term_str == L"linux") return false;
|
|
|
|
if (term_str == L"dumb") return false;
|
2017-01-10 02:35:37 +00:00
|
|
|
|
2017-05-10 04:46:18 +00:00
|
|
|
char buf[PATH_MAX];
|
|
|
|
int retval = ttyname_r(STDIN_FILENO, buf, PATH_MAX);
|
|
|
|
if (retval != 0 || strstr(buf, "tty") || strstr(buf, "/vc/")) return false;
|
2017-01-10 02:35:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-02-16 04:09:26 +00:00
|
|
|
/// Updates our idea of whether we support term256 and term24bit (see issue #10222).
|
|
|
|
static void update_fish_color_support() {
|
|
|
|
// Detect or infer term256 support. If fish_term256 is set, we respect it;
|
|
|
|
// otherwise infer it from the TERM variable or use terminfo.
|
|
|
|
env_var_t fish_term256 = env_get_string(L"fish_term256");
|
|
|
|
env_var_t term = env_get_string(L"TERM");
|
|
|
|
bool support_term256 = false; // default to no support
|
|
|
|
if (!fish_term256.missing_or_empty()) {
|
|
|
|
support_term256 = from_string<bool>(fish_term256);
|
|
|
|
debug(2, L"256 color support determined by 'fish_term256'");
|
|
|
|
} else if (term.find(L"256color") != wcstring::npos) {
|
|
|
|
// TERM=*256color*: Explicitly supported.
|
|
|
|
support_term256 = true;
|
|
|
|
debug(2, L"256 color support enabled for '256color' in TERM");
|
|
|
|
} else if (term.find(L"xterm") != wcstring::npos) {
|
|
|
|
// Assume that all xterms are 256, except for OS X SnowLeopard
|
|
|
|
const env_var_t prog = env_get_string(L"TERM_PROGRAM");
|
|
|
|
const env_var_t progver = env_get_string(L"TERM_PROGRAM_VERSION");
|
|
|
|
if (prog == L"Apple_Terminal" && !progver.missing_or_empty()) {
|
|
|
|
// OS X Lion is version 300+, it has 256 color support
|
|
|
|
if (strtod(wcs2str(progver), NULL) > 300) {
|
|
|
|
support_term256 = true;
|
|
|
|
debug(2, L"256 color support enabled for TERM=xterm + modern Terminal.app");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
support_term256 = true;
|
|
|
|
debug(2, L"256 color support enabled for TERM=xterm");
|
|
|
|
}
|
|
|
|
} else if (cur_term != NULL) {
|
|
|
|
// See if terminfo happens to identify 256 colors
|
|
|
|
support_term256 = (max_colors >= 256);
|
|
|
|
debug(2, L"256 color support: using %d colors per terminfo", max_colors);
|
|
|
|
} else {
|
|
|
|
debug(2, L"256 color support not enabled (yet)");
|
|
|
|
}
|
2017-01-10 02:35:37 +00:00
|
|
|
|
2017-02-16 04:09:26 +00:00
|
|
|
env_var_t fish_term24bit = env_get_string(L"fish_term24bit");
|
|
|
|
bool support_term24bit;
|
|
|
|
if (!fish_term24bit.missing_or_empty()) {
|
|
|
|
support_term24bit = from_string<bool>(fish_term24bit);
|
|
|
|
debug(2, L"'fish_term24bit' preference: 24-bit color %s",
|
|
|
|
support_term24bit ? L"enabled" : L"disabled");
|
2016-06-14 02:00:30 +00:00
|
|
|
} else {
|
2017-02-16 04:09:26 +00:00
|
|
|
// We don't attempt to infer term24 bit support yet.
|
|
|
|
support_term24bit = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
color_support_t support = (support_term256 ? color_support_term256 : 0) |
|
|
|
|
(support_term24bit ? color_support_term24bit : 0);
|
|
|
|
output_set_color_support(support);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try to initialize the terminfo/curses subsystem using our fallback terminal name. Do not set
|
|
|
|
// `TERM` to our fallback. We're only doing this in the hope of getting a minimally functional
|
|
|
|
// shell. If we launch an external command that uses TERM it should get the same value we were
|
|
|
|
// given, if any.
|
|
|
|
static bool initialize_curses_using_fallback(const char *term) {
|
|
|
|
// If $TERM is already set to the fallback name we're about to use there isn't any point in
|
|
|
|
// seeing if the fallback name can be used.
|
|
|
|
const char *term_env = wcs2str(env_get_string(L"TERM"));
|
|
|
|
if (!strcmp(term_env, DEFAULT_TERM1) || !strcmp(term_env, DEFAULT_TERM2)) return false;
|
|
|
|
|
|
|
|
if (is_interactive_session) {
|
|
|
|
debug(1, _(L"Using fallback terminal type '%s'."), term);
|
|
|
|
}
|
|
|
|
int err_ret;
|
|
|
|
if (setupterm((char *)term, STDOUT_FILENO, &err_ret) == OK) return true;
|
|
|
|
if (is_interactive_session) {
|
|
|
|
debug(1, _(L"Could not set up terminal using the fallback terminal type '%s'."), term);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-04-04 06:16:11 +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() {
|
|
|
|
for (auto var_name : colon_delimited_variable) {
|
|
|
|
fix_colon_delimited_var(var_name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-16 04:09:26 +00:00
|
|
|
/// Initialize the curses subsystem.
|
|
|
|
static void init_curses() {
|
2017-04-05 04:28:57 +00:00
|
|
|
for (auto var_name : curses_variables) {
|
|
|
|
const env_var_t val = env_get_string(var_name, ENV_EXPORT);
|
|
|
|
const std::string &name = wcs2string(var_name);
|
2017-02-16 04:09:26 +00:00
|
|
|
const std::string &value = wcs2string(val);
|
|
|
|
debug(2, L"curses var %s='%s'", name.c_str(), value.c_str());
|
|
|
|
if (val.empty()) {
|
|
|
|
unsetenv(name.c_str());
|
|
|
|
} else {
|
|
|
|
setenv(name.c_str(), value.c_str(), 1);
|
|
|
|
}
|
2016-06-02 03:03:50 +00:00
|
|
|
}
|
2017-02-04 03:20:21 +00:00
|
|
|
|
2017-02-16 04:09:26 +00:00
|
|
|
int err_ret;
|
|
|
|
if (setupterm(NULL, STDOUT_FILENO, &err_ret) == ERR) {
|
|
|
|
env_var_t term = env_get_string(L"TERM");
|
|
|
|
if (is_interactive_session) {
|
|
|
|
debug(1, _(L"Could not set up terminal."));
|
|
|
|
if (term.missing_or_empty()) {
|
|
|
|
debug(1, _(L"TERM environment variable not set."));
|
|
|
|
} else {
|
|
|
|
debug(1, _(L"TERM environment variable set to '%ls'."), term.c_str());
|
|
|
|
debug(1, _(L"Check that this terminal type is supported on this system."));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!initialize_curses_using_fallback(DEFAULT_TERM1)) {
|
|
|
|
initialize_curses_using_fallback(DEFAULT_TERM2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
can_set_term_title = does_term_support_setting_title();
|
|
|
|
term_has_xn = tigetflag((char *)"xenl") == 1; // does terminal have the eat_newline_glitch
|
|
|
|
update_fish_color_support();
|
2017-02-04 03:20:21 +00:00
|
|
|
// Invalidate the cached escape sequences since they may no longer be valid.
|
|
|
|
cached_esc_sequences.clear();
|
2017-02-16 04:09:26 +00:00
|
|
|
curses_initialized = true;
|
2016-06-02 03:03:50 +00:00
|
|
|
}
|
|
|
|
|
2017-04-04 06:16:11 +00:00
|
|
|
// Here is the whitelist of variables that we colon-delimit, both incoming from the environment and
|
|
|
|
// outgoing back to it. This is deliberately very short - we don't want to add language-specific
|
|
|
|
// values like CLASSPATH.
|
|
|
|
static bool variable_is_colon_delimited_var(const wcstring &str) {
|
2017-04-05 04:28:57 +00:00
|
|
|
return contains(colon_delimited_variable, str);
|
2017-04-04 06:16:11 +00:00
|
|
|
}
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
/// React to modifying the given variable.
|
|
|
|
static void react_to_variable_change(const wcstring &key) {
|
2017-02-16 04:09:26 +00:00
|
|
|
// Don't do any of this until `env_init()` has run. We only want to do this in response to
|
|
|
|
// variables set by the user; e.g., in a script like *config.fish* or interactively.
|
|
|
|
if (!env_initialized) return;
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
if (var_is_locale(key)) {
|
2017-02-16 04:09:26 +00:00
|
|
|
init_locale();
|
2017-04-04 06:16:11 +00:00
|
|
|
} else if (variable_is_colon_delimited_var(key)) {
|
|
|
|
fix_colon_delimited_var(key);
|
2016-06-02 03:03:50 +00:00
|
|
|
} else if (var_is_curses(key)) {
|
2017-02-16 04:09:26 +00:00
|
|
|
init_curses();
|
|
|
|
init_input();
|
2016-06-29 01:06:39 +00:00
|
|
|
} else if (var_is_timezone(key)) {
|
|
|
|
handle_timezone(key.c_str());
|
2016-04-29 01:26:46 +00:00
|
|
|
} else if (key == L"fish_term256" || key == L"fish_term24bit") {
|
2014-09-19 22:37:31 +00:00
|
|
|
update_fish_color_support();
|
2012-03-25 10:00:38 +00:00
|
|
|
reader_react_to_color_change();
|
2016-04-29 01:26:46 +00:00
|
|
|
} else if (string_prefixes_string(L"fish_color_", key)) {
|
2012-03-25 10:00:38 +00:00
|
|
|
reader_react_to_color_change();
|
2016-04-29 01:26:46 +00:00
|
|
|
} else if (key == L"fish_escape_delay_ms") {
|
2016-01-15 05:46:53 +00:00
|
|
|
update_wait_on_escape_ms();
|
2017-01-18 21:54:54 +00:00
|
|
|
} else if (key == L"LINES" || key == L"COLUMNS") {
|
|
|
|
invalidate_termsize(true); // force fish to update its idea of the terminal size plus vars
|
2017-02-08 01:21:35 +00:00
|
|
|
} else if (key == L"FISH_READ_BYTE_LIMIT") {
|
|
|
|
env_set_read_limit();
|
2016-01-15 05:46:53 +00:00
|
|
|
}
|
2012-03-05 22:18:16 +00:00
|
|
|
}
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
/// Universal variable callback function. This function makes sure the proper events are triggered
|
|
|
|
/// when an event occurs.
|
2016-10-09 21:38:26 +00:00
|
|
|
static void universal_callback(fish_message_type_t type, const wchar_t *name) {
|
2013-02-20 01:48:51 +00:00
|
|
|
const wchar_t *str = NULL;
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
switch (type) {
|
2012-11-19 08:31:03 +00:00
|
|
|
case SET:
|
2016-04-29 01:26:46 +00:00
|
|
|
case SET_EXPORT: {
|
|
|
|
str = L"SET";
|
2012-11-19 08:31:03 +00:00
|
|
|
break;
|
|
|
|
}
|
2016-04-29 01:26:46 +00:00
|
|
|
case ERASE: {
|
|
|
|
str = L"ERASE";
|
2014-06-16 19:25:33 +00:00
|
|
|
break;
|
|
|
|
}
|
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 (str) {
|
2017-01-26 20:03:14 +00:00
|
|
|
vars_stack().mark_changed_exported();
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2012-02-09 03:02:25 +00:00
|
|
|
event_t ev = event_t::variable_event(name);
|
2012-12-20 09:52:44 +00:00
|
|
|
ev.arguments.push_back(L"VARIABLE");
|
|
|
|
ev.arguments.push_back(str);
|
|
|
|
ev.arguments.push_back(name);
|
2012-11-19 00:30:30 +00:00
|
|
|
event_fire(&ev);
|
|
|
|
}
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
if (name) react_to_variable_change(name);
|
2005-10-11 19:23:43 +00:00
|
|
|
}
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
/// Make sure the PATH variable contains something.
|
|
|
|
static void setup_path() {
|
2013-08-28 01:23:33 +00:00
|
|
|
const env_var_t path = env_get_string(L"PATH");
|
2016-04-29 01:26:46 +00:00
|
|
|
if (path.missing_or_empty()) {
|
2013-08-28 01:23:33 +00:00
|
|
|
const wchar_t *value = L"/usr/bin" ARRAY_SEP_STR L"/bin";
|
|
|
|
env_set(L"PATH", value, ENV_GLOBAL | ENV_EXPORT);
|
2012-11-18 10:23:22 +00:00
|
|
|
}
|
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.
|
|
|
|
static void env_set_termsize() {
|
|
|
|
env_var_t cols = env_get_string(L"COLUMNS");
|
2017-02-10 23:20:09 +00:00
|
|
|
if (cols.missing_or_empty()) env_set(L"COLUMNS", DFLT_TERM_COL_STR, ENV_GLOBAL);
|
|
|
|
|
2017-01-18 21:54:54 +00:00
|
|
|
env_var_t rows = env_get_string(L"LINES");
|
2017-02-10 23:20:09 +00:00
|
|
|
if (rows.missing_or_empty()) env_set(L"LINES", DFLT_TERM_ROW_STR, ENV_GLOBAL);
|
2017-01-18 21:54:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool env_set_pwd() {
|
2016-03-11 02:17:39 +00:00
|
|
|
wcstring res = wgetcwd();
|
2016-04-29 01:26:46 +00:00
|
|
|
if (res.empty()) {
|
|
|
|
debug(0,
|
|
|
|
_(L"Could not determine current working directory. Is your locale set correctly?"));
|
2017-01-18 21:54:54 +00:00
|
|
|
return false;
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
2016-03-11 02:17:39 +00:00
|
|
|
env_set(L"PWD", res.c_str(), ENV_EXPORT | ENV_GLOBAL);
|
2017-01-18 21:54:54 +00:00
|
|
|
return true;
|
2008-01-16 22:07:38 +00:00
|
|
|
}
|
|
|
|
|
2017-02-08 01:21:35 +00:00
|
|
|
/// Allow the user to override the limit on how much data the `read` command will process.
|
|
|
|
/// This is primarily for testing but could be used by users in special situations.
|
|
|
|
void env_set_read_limit() {
|
|
|
|
env_var_t read_byte_limit_var = env_get_string(L"FISH_READ_BYTE_LIMIT");
|
|
|
|
if (!read_byte_limit_var.missing_or_empty()) {
|
|
|
|
size_t limit = fish_wcstoull(read_byte_limit_var.c_str());
|
|
|
|
if (errno) {
|
|
|
|
debug(1, "Ignoring FISH_READ_BYTE_LIMIT since it is not valid");
|
|
|
|
} else {
|
|
|
|
read_byte_limit = limit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
wcstring env_get_pwd_slash(void) {
|
2013-04-27 07:45:38 +00:00
|
|
|
env_var_t pwd = env_get_string(L"PWD");
|
2016-04-29 01:26:46 +00:00
|
|
|
if (pwd.missing_or_empty()) {
|
2013-04-27 07:45:38 +00:00
|
|
|
return L"";
|
|
|
|
}
|
2016-04-29 01:26:46 +00:00
|
|
|
if (!string_suffixes_string(L"/", pwd)) {
|
2013-04-27 07:45:38 +00:00
|
|
|
pwd.push_back(L'/');
|
|
|
|
}
|
|
|
|
return pwd;
|
|
|
|
}
|
|
|
|
|
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) {
|
2016-11-28 17:24:49 +00:00
|
|
|
if (env_get_string(L"USER").missing_or_empty() || force) {
|
2017-05-11 04:08:36 +00:00
|
|
|
struct passwd userinfo;
|
|
|
|
struct passwd *result;
|
|
|
|
char buf[8192];
|
|
|
|
int retval = getpwuid_r(getuid(), &userinfo, buf, sizeof(buf), &result);
|
|
|
|
if (!retval && result) {
|
|
|
|
const wcstring uname = str2wcstring(userinfo.pw_name);
|
2016-11-28 17:24:49 +00:00
|
|
|
env_set(L"USER", uname.c_str(), ENV_GLOBAL | ENV_EXPORT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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() {
|
|
|
|
env_set_read_limit();
|
|
|
|
|
|
|
|
// 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);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef OS_IS_CYGWIN
|
|
|
|
// MS Windows tty devices do not currently have either a read or write timestamp. Those
|
|
|
|
// respective fields of `struct stat` are always the current time. Which means we can't
|
|
|
|
// use them. So we assume no external program has written to the terminal behind our
|
|
|
|
// back. This makes multiline promptusable. See issue #2859 and
|
|
|
|
// https://github.com/Microsoft/BashOnWindows/issues/545
|
|
|
|
has_working_tty_timestamps = false;
|
|
|
|
#else
|
|
|
|
// This covers preview builds of Windows Subsystem for Linux (WSL).
|
|
|
|
FILE *procsyskosrel;
|
|
|
|
if ((procsyskosrel = wfopen(L"/proc/sys/kernel/osrelease", "r"))) {
|
|
|
|
wcstring osrelease;
|
|
|
|
fgetws2(&osrelease, procsyskosrel);
|
|
|
|
if (osrelease.find(L"3.4.0-Microsoft") != wcstring::npos) {
|
|
|
|
has_working_tty_timestamps = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (procsyskosrel) {
|
|
|
|
fclose(procsyskosrel);
|
|
|
|
}
|
|
|
|
#endif // OS_IS_MS_WINDOWS
|
|
|
|
}
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
void env_init(const struct config_paths_t *paths /* or NULL */) {
|
2016-06-14 02:00:30 +00:00
|
|
|
// These variables can not be altered directly by the user.
|
2016-04-29 01:26:46 +00:00
|
|
|
const wchar_t *const ro_keys[] = {
|
2017-01-18 21:54:54 +00:00
|
|
|
L"status", L"history", L"_", L"PWD", L"FISH_VERSION",
|
2016-06-14 02:00:30 +00:00
|
|
|
// L"SHLVL" is readonly but will be inserted below after we increment it.
|
2011-12-27 03:18:46 +00:00
|
|
|
};
|
2016-04-29 01:26:46 +00:00
|
|
|
for (size_t i = 0; i < sizeof ro_keys / sizeof *ro_keys; i++) {
|
2011-12-27 03:18:46 +00:00
|
|
|
env_read_only.insert(ro_keys[i]);
|
|
|
|
}
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
// Names of all dynamically calculated variables.
|
2011-12-27 03:18:46 +00:00
|
|
|
env_electric.insert(L"history");
|
|
|
|
env_electric.insert(L"status");
|
|
|
|
env_electric.insert(L"umask");
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2016-06-14 02:00:30 +00:00
|
|
|
// Now the environment variable handling is set up, the next step is to insert valid data.
|
2012-11-18 10:23:22 +00:00
|
|
|
|
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;
|
2016-04-29 01:26:46 +00:00
|
|
|
while (envp && envp[i]) {
|
2016-03-06 03:02:50 +00:00
|
|
|
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) {
|
|
|
|
// No equals found.
|
2014-07-12 07:53:23 +00:00
|
|
|
if (is_read_only(key_and_val) || is_electric(key_and_val)) continue;
|
|
|
|
env_set(key_and_val, L"", 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);
|
2014-07-12 07:53:23 +00:00
|
|
|
if (is_read_only(key) || is_electric(key)) continue;
|
2016-03-06 03:07:00 +00:00
|
|
|
val.assign(key_and_val, eql + 1, wcstring::npos);
|
2017-04-04 06:16:11 +00:00
|
|
|
if (variable_is_colon_delimited_var(key)) {
|
2012-12-19 21:31:06 +00:00
|
|
|
std::replace(val.begin(), val.end(), L':', ARRAY_SEP);
|
2012-03-06 23:51:48 +00:00
|
|
|
}
|
2005-10-25 09:39:45 +00:00
|
|
|
|
2012-12-19 21:31:06 +00:00
|
|
|
env_set(key, val.c_str(), ENV_EXPORT | ENV_GLOBAL);
|
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) {
|
2015-09-09 23:50:05 +00:00
|
|
|
env_set(FISH_DATADIR_VAR, paths->data.c_str(), ENV_GLOBAL);
|
|
|
|
env_set(FISH_SYSCONFDIR_VAR, paths->sysconf.c_str(), ENV_GLOBAL);
|
|
|
|
env_set(FISH_HELPDIR_VAR, paths->doc.c_str(), ENV_GLOBAL);
|
|
|
|
env_set(FISH_BIN_DIR, paths->bin.c_str(), ENV_GLOBAL);
|
2012-07-18 17:50:38 +00:00
|
|
|
}
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2017-02-16 04:09:26 +00:00
|
|
|
init_locale();
|
|
|
|
init_curses();
|
|
|
|
init_input();
|
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
|
|
|
|
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());
|
2012-12-19 21:31:06 +00:00
|
|
|
env_set(L"FISH_VERSION", version.c_str(), ENV_GLOBAL);
|
2012-11-19 00:30:30 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
// Set up SHLVL variable.
|
2012-11-19 00:30:30 +00:00
|
|
|
const env_var_t shlvl_str = env_get_string(L"SHLVL");
|
2012-05-09 10:23:31 +00:00
|
|
|
wcstring nshlvl_str = L"1";
|
2016-04-29 01:26:46 +00:00
|
|
|
if (!shlvl_str.missing()) {
|
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?
|
|
|
|
long shlvl_i = fish_wcstol(shlvl_str.c_str(), &end);
|
|
|
|
if (!errno && shlvl_i >= 0) {
|
2013-01-19 21:16:21 +00:00
|
|
|
nshlvl_str = to_string<long>(shlvl_i + 1);
|
2012-05-09 10:23:31 +00:00
|
|
|
}
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
|
|
|
env_set(L"SHLVL", nshlvl_str.c_str(), ENV_GLOBAL | ENV_EXPORT);
|
2014-08-23 01:05:28 +00:00
|
|
|
env_read_only.insert(L"SHLVL");
|
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
|
2016-04-29 01:26:46 +00:00
|
|
|
if (env_get_string(L"HOME").missing_or_empty()) {
|
2014-07-25 17:42:22 +00:00
|
|
|
const env_var_t unam = env_get_string(L"USER");
|
|
|
|
char *unam_narrow = wcs2str(unam.c_str());
|
2017-05-10 05:23:32 +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) {
|
2016-11-27 00:35:48 +00:00
|
|
|
// Maybe USER is set but it's bogus. Reset USER from the db and try again.
|
2016-11-28 17:24:49 +00:00
|
|
|
setup_user(true);
|
|
|
|
const env_var_t unam = env_get_string(L"USER");
|
|
|
|
unam_narrow = wcs2str(unam.c_str());
|
2017-05-10 05:23:32 +00:00
|
|
|
retval = getpwnam_r(unam_narrow, &userinfo, buf, sizeof(buf), &result);
|
2016-11-28 17:24:49 +00:00
|
|
|
}
|
2017-05-10 05:23:32 +00:00
|
|
|
if (!retval && result && userinfo.pw_dir) {
|
|
|
|
const wcstring dir = str2wcstring(userinfo.pw_dir);
|
2014-10-01 19:27:32 +00:00
|
|
|
env_set(L"HOME", dir.c_str(), ENV_GLOBAL | ENV_EXPORT);
|
2014-07-25 17:42:22 +00:00
|
|
|
}
|
|
|
|
free(unam_narrow);
|
|
|
|
}
|
|
|
|
|
2017-02-08 01:21:35 +00:00
|
|
|
env_set_pwd(); // initialize the PWD variable
|
|
|
|
env_set_termsize(); // initialize the terminal size variables
|
|
|
|
env_set_read_limit(); // initialize the read_byte_limit
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
// Set up universal variables. The empty string means to use the deafult path.
|
2014-10-01 19:33:30 +00:00
|
|
|
assert(s_universal_variables == NULL);
|
|
|
|
s_universal_variables = new env_universal_t(L"");
|
|
|
|
s_universal_variables->load();
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
// Set g_use_posix_spawn. Default to true.
|
2012-08-15 07:57:56 +00:00
|
|
|
env_var_t use_posix_spawn = env_get_string(L"fish_use_posix_spawn");
|
2016-04-29 01:26:46 +00:00
|
|
|
g_use_posix_spawn =
|
|
|
|
(use_posix_spawn.missing_or_empty() ? true : from_string<bool>(use_posix_spawn));
|
2014-01-19 09:27:39 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
// Set fish_bind_mode to "default".
|
2014-01-19 09:27:39 +00:00
|
|
|
env_set(FISH_BIND_MODE_VAR, DEFAULT_BIND_MODE, ENV_GLOBAL);
|
2014-07-13 20:21:06 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
// Now that the global scope is fully initialized, add a toplevel local scope. This same 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.
|
2014-07-13 20:21:06 +00:00
|
|
|
env_push(false);
|
2017-02-16 04:09:26 +00:00
|
|
|
env_initialized = true;
|
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.
|
|
|
|
static env_node_t *env_get_node(const wcstring &key) {
|
2017-01-26 20:40:55 +00:00
|
|
|
env_node_t *env = vars_stack().top.get();
|
2016-04-29 01:26:46 +00:00
|
|
|
while (env != NULL) {
|
|
|
|
if (env->find_entry(key) != NULL) {
|
2012-11-19 00:30:30 +00:00
|
|
|
break;
|
|
|
|
}
|
2012-11-18 10:23:22 +00:00
|
|
|
|
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
|
|
|
|
2016-10-30 00:25:48 +00:00
|
|
|
/// Set the value of the environment variable whose name matches key to val.
|
|
|
|
///
|
|
|
|
/// Memory policy: All keys and values are copied, the parameters can and should be freed by the
|
|
|
|
/// caller afterwards
|
|
|
|
///
|
|
|
|
/// \param key The key
|
|
|
|
/// \param val The value
|
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,
|
2016-10-30 00:25:48 +00:00
|
|
|
/// ENV_EXPORT and ENV_USER. If mode is zero, 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.
|
|
|
|
///
|
|
|
|
/// 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.
|
2016-04-29 01:26:46 +00:00
|
|
|
int env_set(const wcstring &key, const wchar_t *val, env_mode_flags_t var_mode) {
|
2012-03-31 22:33:34 +00:00
|
|
|
ASSERT_IS_MAIN_THREAD();
|
2017-01-26 20:03:14 +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-04-05 04:28:57 +00:00
|
|
|
if (val && (key == L"PWD" || key == L"HOME")) {
|
2016-04-29 01:26:46 +00:00
|
|
|
// Canonicalize our path; if it changes, recurse and try again.
|
2012-02-08 05:23:12 +00:00
|
|
|
wcstring val_canonical = val;
|
|
|
|
path_make_canonical(val_canonical);
|
2016-04-29 01:26:46 +00:00
|
|
|
if (val != val_canonical) {
|
2012-11-19 00:30:30 +00:00
|
|
|
return env_set(key, val_canonical.c_str(), var_mode);
|
2012-02-08 05:23:12 +00:00
|
|
|
}
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
2013-01-21 02:34:18 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
if ((var_mode & (ENV_LOCAL | 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
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
if (key == L"umask") {
|
|
|
|
// Set the new umask.
|
|
|
|
if (val && wcslen(val)) {
|
2016-11-23 04:24:03 +00:00
|
|
|
long mask = fish_wcstol(val, NULL, 8);
|
|
|
|
if (!errno && mask <= 0777 && mask >= 0) {
|
2012-11-19 00:30:30 +00:00
|
|
|
umask(mask);
|
2016-04-29 01:26:46 +00:00
|
|
|
// Do not actually create a umask variable, on env_get, it will be calculated
|
|
|
|
// dynamically.
|
2016-10-30 00:25:48 +00:00
|
|
|
return ENV_OK;
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
|
|
|
}
|
2014-07-14 02:08:15 +00:00
|
|
|
|
|
|
|
return ENV_INVALID;
|
2012-11-18 10:23:22 +00:00
|
|
|
}
|
2013-01-21 02:34:18 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
// Zero element arrays are internaly not coded as null but as this placeholder string.
|
|
|
|
if (!val) {
|
2016-10-21 01:53:31 +00:00
|
|
|
val = ENV_NULL; //!OCLINT(parameter reassignment)
|
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) {
|
2014-06-16 00:30:50 +00:00
|
|
|
const bool old_export = uvars() && uvars()->get_export(key);
|
|
|
|
bool new_export;
|
2016-04-29 01:26:46 +00:00
|
|
|
if (var_mode & ENV_EXPORT) {
|
|
|
|
// Export the var.
|
2014-06-16 00:30:50 +00:00
|
|
|
new_export = true;
|
2016-04-29 01:26:46 +00:00
|
|
|
} else if (var_mode & ENV_UNEXPORT) {
|
|
|
|
// Unexport the var.
|
2014-06-16 00:30:50 +00:00
|
|
|
new_export = false;
|
2016-04-29 01:26:46 +00:00
|
|
|
} else {
|
|
|
|
// Not changing the export status of the var.
|
2014-06-16 00:30:50 +00:00
|
|
|
new_export = old_export;
|
|
|
|
}
|
2016-04-29 01:26:46 +00:00
|
|
|
if (uvars()) {
|
2014-06-16 00:30:50 +00:00
|
|
|
uvars()->set(key, val, new_export);
|
|
|
|
env_universal_barrier();
|
2016-04-29 01:26:46 +00:00
|
|
|
if (old_export || new_export) {
|
2017-01-26 20:03:14 +00:00
|
|
|
vars_stack().mark_changed_exported();
|
2014-06-16 00:30:50 +00:00
|
|
|
}
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
2016-04-29 01:26:46 +00:00
|
|
|
} else {
|
|
|
|
// Determine the node.
|
2016-02-19 23:45:12 +00:00
|
|
|
bool has_changed_new = false;
|
2013-01-19 21:16:21 +00:00
|
|
|
env_node_t *preexisting_node = env_get_node(key);
|
|
|
|
bool preexisting_entry_exportv = false;
|
2016-04-29 01:26:46 +00:00
|
|
|
if (preexisting_node != NULL) {
|
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());
|
|
|
|
const var_entry_t &entry = result->second;
|
2016-04-29 01:26:46 +00:00
|
|
|
if (entry.exportv) {
|
2013-01-19 21:16:21 +00:00
|
|
|
preexisting_entry_exportv = true;
|
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
|
|
|
|
2013-01-19 21:16:21 +00:00
|
|
|
env_node_t *node = NULL;
|
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) {
|
2017-01-26 20:40:55 +00:00
|
|
|
node = vars_stack().top.get();
|
2016-04-29 01:26:46 +00:00
|
|
|
} else if (preexisting_node != NULL) {
|
2013-01-19 21:16:21 +00:00
|
|
|
node = preexisting_node;
|
2016-04-29 01:26:46 +00:00
|
|
|
if ((var_mode & (ENV_EXPORT | ENV_UNEXPORT)) == 0) {
|
2013-01-19 21:16:21 +00:00
|
|
|
// use existing entry's exportv
|
2016-11-05 01:40:22 +00:00
|
|
|
var_mode = //!OCLINT(parameter reassignment)
|
|
|
|
preexisting_entry_exportv ? ENV_EXPORT : 0;
|
2013-01-19 21:16:21 +00:00
|
|
|
}
|
2016-04-29 01:26:46 +00:00
|
|
|
} else {
|
|
|
|
if (!get_proc_had_barrier()) {
|
2013-01-19 21:16:21 +00:00
|
|
|
set_proc_had_barrier(true);
|
|
|
|
env_universal_barrier();
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
2013-01-21 02:34:18 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
if (uvars() && !uvars()->get(key).missing()) {
|
2013-01-19 21:16:21 +00:00
|
|
|
bool exportv;
|
2016-04-29 01:26:46 +00:00
|
|
|
if (var_mode & ENV_EXPORT) {
|
2013-01-19 21:16:21 +00:00
|
|
|
exportv = true;
|
2016-04-29 01:26:46 +00:00
|
|
|
} else if (var_mode & ENV_UNEXPORT) {
|
2013-01-19 21:16:21 +00:00
|
|
|
exportv = false;
|
2016-04-29 01:26:46 +00:00
|
|
|
} else {
|
2014-06-16 00:30:50 +00:00
|
|
|
exportv = uvars()->get_export(key);
|
2013-01-19 21:16:21 +00:00
|
|
|
}
|
2013-01-21 02:34:18 +00:00
|
|
|
|
2014-06-16 00:30:50 +00:00
|
|
|
uvars()->set(key, val, exportv);
|
|
|
|
env_universal_barrier();
|
2013-01-21 02:34:18 +00:00
|
|
|
|
2013-01-19 21:16:21 +00:00
|
|
|
done = 1;
|
2013-01-21 02:34:18 +00:00
|
|
|
|
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) {
|
|
|
|
// Set the entry in the node. Note that operator[] accesses the existing entry, or
|
|
|
|
// creates a new one.
|
2013-01-19 21:16:21 +00:00
|
|
|
var_entry_t &entry = node->env[key];
|
2016-04-29 01:26:46 +00:00
|
|
|
if (entry.exportv) {
|
|
|
|
// 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
|
|
|
}
|
2013-01-19 21:16:21 +00:00
|
|
|
entry.val = val;
|
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
|
|
|
entry.exportv = true;
|
|
|
|
node->exportv = true;
|
|
|
|
has_changed_new = true;
|
2016-04-29 01:26:46 +00:00
|
|
|
} else {
|
2013-01-19 21:16:21 +00:00
|
|
|
entry.exportv = false;
|
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
|
|
|
|
2015-02-04 00:13:02 +00:00
|
|
|
event_t ev = event_t::variable_event(key);
|
|
|
|
ev.arguments.reserve(3);
|
|
|
|
ev.arguments.push_back(L"VARIABLE");
|
|
|
|
ev.arguments.push_back(L"SET");
|
|
|
|
ev.arguments.push_back(key);
|
2013-01-21 02:34:18 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
// debug( 1, L"env_set: fire events on variable %ls", key );
|
2015-02-04 00:13:02 +00:00
|
|
|
event_fire(&ev);
|
2016-04-29 01:26:46 +00:00
|
|
|
// debug( 1, L"env_set: return from event firing" );
|
2013-01-21 02:34:18 +00:00
|
|
|
|
2012-03-05 22:18:16 +00:00
|
|
|
react_to_variable_change(key);
|
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
|
|
|
|
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
|
|
|
|
static bool try_remove(env_node_t *n, const wchar_t *key, int var_mode) {
|
|
|
|
if (n == NULL) {
|
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()) {
|
|
|
|
if (result->second.exportv) {
|
2017-01-26 20:03:14 +00:00
|
|
|
vars_stack().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
|
|
|
}
|
2017-01-26 20:40:55 +00:00
|
|
|
return try_remove(n->next.get(), key, var_mode);
|
2005-09-20 13:26:39 +00:00
|
|
|
}
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
int env_remove(const wcstring &key, int var_mode) {
|
2012-03-05 22:18:16 +00:00
|
|
|
ASSERT_IS_MAIN_THREAD();
|
2012-11-19 00:30:30 +00:00
|
|
|
env_node_t *first_node;
|
|
|
|
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)) {
|
2012-11-19 00:30:30 +00:00
|
|
|
return 2;
|
2012-11-18 10:23:22 +00:00
|
|
|
}
|
|
|
|
|
2017-01-26 20:40:55 +00:00
|
|
|
first_node = vars_stack().top.get();
|
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)) {
|
2012-11-19 00:30:30 +00:00
|
|
|
event_t ev = event_t::variable_event(key);
|
2012-12-20 09:52:44 +00:00
|
|
|
ev.arguments.push_back(L"VARIABLE");
|
|
|
|
ev.arguments.push_back(L"ERASE");
|
|
|
|
ev.arguments.push_back(key);
|
2012-11-19 00:30:30 +00:00
|
|
|
event_fire(&ev);
|
2012-11-18 10:23:22 +00:00
|
|
|
|
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)) {
|
2015-04-30 00:28:49 +00:00
|
|
|
bool is_exported = uvars()->get_export(key);
|
2014-06-16 00:30:50 +00:00
|
|
|
erased = uvars() && uvars()->remove(key);
|
2016-04-29 01:26:46 +00:00
|
|
|
if (erased) {
|
2014-07-07 01:04:30 +00:00
|
|
|
env_universal_barrier();
|
2015-02-04 00:13:02 +00:00
|
|
|
event_t ev = event_t::variable_event(key);
|
|
|
|
ev.arguments.push_back(L"VARIABLE");
|
|
|
|
ev.arguments.push_back(L"ERASE");
|
|
|
|
ev.arguments.push_back(key);
|
|
|
|
event_fire(&ev);
|
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
|
|
|
|
2012-03-05 22:18:16 +00:00
|
|
|
react_to_variable_change(key);
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2012-11-19 00:30:30 +00:00
|
|
|
return !erased;
|
2005-09-20 13:26:39 +00:00
|
|
|
}
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
const wchar_t *env_var_t::c_str(void) const {
|
2016-10-23 20:58:12 +00:00
|
|
|
assert(!is_missing); //!OCLINT(multiple unary operator)
|
2012-01-14 09:06:47 +00:00
|
|
|
return wcstring::c_str();
|
|
|
|
}
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
env_var_t env_get_string(const wcstring &key, env_mode_flags_t mode) {
|
2014-07-12 21:40:46 +00:00
|
|
|
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);
|
|
|
|
|
|
|
|
const bool search_exported = (mode & ENV_EXPORT) || !(mode & ENV_UNEXPORT);
|
|
|
|
const bool search_unexported = (mode & ENV_UNEXPORT) || !(mode & ENV_EXPORT);
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
// Make the assumption that electric keys can't be shadowed elsewhere, since we currently block
|
|
|
|
// that in env_set().
|
|
|
|
if (is_electric(key)) {
|
2014-07-12 21:40:46 +00:00
|
|
|
if (!search_global) return env_var_t::missing_var();
|
2016-11-27 00:35:48 +00:00
|
|
|
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 env_var_t::missing_var();
|
|
|
|
}
|
2014-07-12 21:40:46 +00:00
|
|
|
env_var_t result;
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2014-07-12 21:40:46 +00:00
|
|
|
history_t *history = reader_get_history();
|
2016-04-29 01:26:46 +00:00
|
|
|
if (!history) {
|
2014-07-12 21:40:46 +00:00
|
|
|
history = &history_t::history_with_name(L"fish");
|
|
|
|
}
|
2016-04-29 01:26:46 +00:00
|
|
|
if (history) history->get_string_representation(&result, ARRAY_SEP_STR);
|
2014-07-12 21:40:46 +00:00
|
|
|
return result;
|
2016-04-29 01:26:46 +00:00
|
|
|
} else if (key == L"status") {
|
2014-07-12 21:40:46 +00:00
|
|
|
return to_string(proc_get_last_status());
|
2016-04-29 01:26:46 +00:00
|
|
|
} else if (key == L"umask") {
|
2014-07-12 21:40:46 +00:00
|
|
|
return format_string(L"0%0.3o", get_umask());
|
|
|
|
}
|
2016-11-27 00:35:48 +00:00
|
|
|
// We should never get here unless the electric var list is out of sync with the above code.
|
|
|
|
DIE("unerecognized electric var name");
|
2014-07-12 21:40:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (search_local || search_global) {
|
|
|
|
/* Lock around a local region */
|
2016-07-21 05:30:58 +00:00
|
|
|
scoped_lock locker(env_lock);
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2017-01-26 20:40:55 +00:00
|
|
|
env_node_t *env = search_local ? vars_stack().top.get() : vars_stack().global_env;
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
while (env != NULL) {
|
2014-07-12 21:40:46 +00:00
|
|
|
const var_entry_t *entry = env->find_entry(key);
|
2016-04-29 01:26:46 +00:00
|
|
|
if (entry != NULL && (entry->exportv ? search_exported : search_unexported)) {
|
|
|
|
if (entry->val == ENV_NULL) {
|
2014-07-12 21:40:46 +00:00
|
|
|
return env_var_t::missing_var();
|
2012-04-23 18:08:29 +00:00
|
|
|
}
|
2016-05-04 22:19:47 +00:00
|
|
|
return entry->val;
|
2014-07-12 21:40:46 +00:00
|
|
|
}
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
if (has_scope) {
|
2017-01-26 19:06:03 +00:00
|
|
|
if (!search_global || env == vars_stack().global_env) break;
|
|
|
|
env = vars_stack().global_env;
|
2016-04-29 01:26:46 +00:00
|
|
|
} else {
|
2017-01-26 19:32:45 +00:00
|
|
|
env = vars_stack().next_scope_to_search(env);
|
2012-03-31 22:33:34 +00:00
|
|
|
}
|
|
|
|
}
|
2014-07-12 21:40:46 +00:00
|
|
|
}
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2014-07-12 21:40:46 +00:00
|
|
|
if (!search_universal) return env_var_t::missing_var();
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
// Another hack. Only do a universal barrier on the main thread (since it can change variable
|
|
|
|
// values). Make sure we do this outside the env_lock because it may itself call env_get_string.
|
|
|
|
if (is_main_thread() && !get_proc_had_barrier()) {
|
2014-07-12 21:40:46 +00:00
|
|
|
set_proc_had_barrier(true);
|
|
|
|
env_universal_barrier();
|
|
|
|
}
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
if (uvars()) {
|
2014-07-12 21:40:46 +00:00
|
|
|
env_var_t env_var = uvars()->get(key);
|
2016-04-29 01:26:46 +00:00
|
|
|
if (env_var == ENV_NULL ||
|
|
|
|
!(uvars()->get_export(key) ? search_exported : search_unexported)) {
|
2014-06-16 00:30:50 +00:00
|
|
|
env_var = env_var_t::missing_var();
|
2011-12-27 03:18:46 +00:00
|
|
|
}
|
2014-06-16 00:30:50 +00:00
|
|
|
return env_var;
|
2011-12-27 03:18:46 +00:00
|
|
|
}
|
2014-07-12 21:40:46 +00:00
|
|
|
return env_var_t::missing_var();
|
2011-12-27 03:18:46 +00:00
|
|
|
}
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
bool env_exist(const wchar_t *key, env_mode_flags_t mode) {
|
2013-01-19 21:16:21 +00:00
|
|
|
CHECK(key, false);
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2014-07-12 08:15:52 +00:00
|
|
|
const bool has_scope = mode & (ENV_LOCAL | ENV_GLOBAL | ENV_UNIVERSAL);
|
|
|
|
const bool test_local = !has_scope || (mode & ENV_LOCAL);
|
|
|
|
const bool test_global = !has_scope || (mode & ENV_GLOBAL);
|
|
|
|
const bool test_universal = !has_scope || (mode & ENV_UNIVERSAL);
|
|
|
|
|
|
|
|
const bool test_exported = (mode & ENV_EXPORT) || !(mode & ENV_UNEXPORT);
|
|
|
|
const bool test_unexported = (mode & ENV_UNEXPORT) || !(mode & ENV_EXPORT);
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
if (is_electric(key)) {
|
|
|
|
// Electric variables all exist, and they are all global. A local or universal version can
|
|
|
|
// not exist. They are also never exported.
|
|
|
|
if (test_global && test_unexported) {
|
2013-01-19 21:16:21 +00:00
|
|
|
return true;
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
2014-07-12 08:15:52 +00:00
|
|
|
return false;
|
2012-11-18 10:23:22 +00:00
|
|
|
}
|
2012-06-18 17:20:40 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
if (test_local || test_global) {
|
2017-01-26 20:40:55 +00:00
|
|
|
const env_node_t *env = test_local ? vars_stack().top.get() : vars_stack().global_env;
|
2016-04-29 01:26:46 +00:00
|
|
|
while (env != NULL) {
|
2017-01-26 19:06:03 +00:00
|
|
|
if (env == vars_stack().global_env && !test_global) {
|
2015-10-23 22:15:39 +00:00
|
|
|
break;
|
|
|
|
}
|
2016-04-29 01:26:46 +00:00
|
|
|
|
2015-10-23 22:15:39 +00:00
|
|
|
var_table_t::const_iterator result = env->env.find(key);
|
2016-04-29 01:26:46 +00:00
|
|
|
if (result != env->env.end()) {
|
2013-01-19 21:16:21 +00:00
|
|
|
const var_entry_t &res = result->second;
|
2014-07-12 08:15:52 +00:00
|
|
|
return res.exportv ? test_exported : test_unexported;
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
2017-01-26 19:32:45 +00:00
|
|
|
env = vars_stack().next_scope_to_search(env);
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
2012-11-18 10:23:22 +00:00
|
|
|
}
|
2012-06-18 17:20:40 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
if (test_universal) {
|
|
|
|
if (!get_proc_had_barrier()) {
|
2012-11-19 00:30:30 +00:00
|
|
|
set_proc_had_barrier(true);
|
|
|
|
env_universal_barrier();
|
|
|
|
}
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
if (uvars() && !uvars()->get(key).missing()) {
|
2014-07-12 08:15:52 +00:00
|
|
|
return uvars()->get_export(key) ? test_exported : test_unexported;
|
2012-06-18 17:20:40 +00:00
|
|
|
}
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
2006-06-04 20:14:51 +00:00
|
|
|
|
2012-11-19 00:30:30 +00:00
|
|
|
return 0;
|
2005-09-20 13:26:39 +00:00
|
|
|
}
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
/// Returns true if the specified scope or any non-shadowed non-global subscopes contain an exported
|
|
|
|
/// variable.
|
2017-01-26 20:40:55 +00:00
|
|
|
static bool local_scope_exports(const env_node_t *n) {
|
|
|
|
assert(n != NULL);
|
2017-01-26 20:51:11 +00:00
|
|
|
if (n == vars_stack().global_env) return false;
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2017-01-26 20:51:11 +00:00
|
|
|
if (n->exportv) return true;
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2017-01-26 20:51:11 +00:00
|
|
|
if (n->new_scope) return false;
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2017-01-26 20:40:55 +00:00
|
|
|
return local_scope_exports(n->next.get());
|
2005-09-20 13:26:39 +00:00
|
|
|
}
|
|
|
|
|
2017-01-27 04:00:43 +00:00
|
|
|
void env_push(bool new_scope) { vars_stack().push(new_scope); }
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2017-01-27 04:00:43 +00:00
|
|
|
void env_pop() { vars_stack().pop(); }
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
/// Function used with to insert keys of one table into a set::set<wcstring>.
|
|
|
|
static void add_key_to_string_set(const var_table_t &envs, std::set<wcstring> *str_set,
|
|
|
|
bool show_exported, bool show_unexported) {
|
2012-11-19 00:30:30 +00:00
|
|
|
var_table_t::const_iterator iter;
|
2016-04-29 01:26:46 +00:00
|
|
|
for (iter = envs.begin(); iter != envs.end(); ++iter) {
|
2013-01-19 21:16:21 +00:00
|
|
|
const var_entry_t &e = iter->second;
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
if ((e.exportv && show_exported) || (!e.exportv && show_unexported)) {
|
|
|
|
// Insert this key.
|
2013-01-19 21:16:21 +00:00
|
|
|
str_set->insert(iter->first);
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
|
|
|
}
|
2012-02-17 18:52:30 +00:00
|
|
|
}
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
wcstring_list_t env_get_names(int flags) {
|
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
|
|
|
|
2017-01-26 20:40:55 +00:00
|
|
|
const env_node_t *n = vars_stack().top.get();
|
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
|
|
|
|
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;
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2013-01-19 21:16:21 +00:00
|
|
|
add_key_to_string_set(n->env, &names, show_exported, show_unexported);
|
2012-11-19 00:30:30 +00:00
|
|
|
if (n->new_scope)
|
|
|
|
break;
|
|
|
|
else
|
2017-01-26 20:40:55 +00:00
|
|
|
n = n->next.get();
|
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) {
|
2017-01-26 19:06:03 +00:00
|
|
|
add_key_to_string_set(vars_stack().global_env->env, &names, show_exported, show_unexported);
|
2016-04-29 01:26:46 +00:00
|
|
|
if (show_unexported) {
|
2012-01-10 20:51:09 +00:00
|
|
|
result.insert(result.end(), env_electric.begin(), env_electric.end());
|
|
|
|
}
|
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;
|
|
|
|
}
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
/// Get list of all exported variables.
|
|
|
|
static void get_exported(const env_node_t *n, std::map<wcstring, wcstring> *h) {
|
|
|
|
if (!n) return;
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2012-11-19 00:30:30 +00:00
|
|
|
if (n->new_scope)
|
2017-01-26 19:06:03 +00:00
|
|
|
get_exported(vars_stack().global_env, h);
|
2012-11-19 00:30:30 +00:00
|
|
|
else
|
2017-01-26 20:40:55 +00:00
|
|
|
get_exported(n->next.get(), h);
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2012-11-19 00:30:30 +00:00
|
|
|
var_table_t::const_iterator iter;
|
2016-04-29 01:26:46 +00:00
|
|
|
for (iter = n->env.begin(); iter != n->env.end(); ++iter) {
|
2012-11-19 00:30:30 +00:00
|
|
|
const wcstring &key = iter->first;
|
2013-01-19 21:16:21 +00:00
|
|
|
const var_entry_t &val_entry = iter->second;
|
2015-06-12 23:05:59 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
if (val_entry.exportv && val_entry.val != ENV_NULL) {
|
|
|
|
// Export the variable. Don't use std::map::insert here, since we need to overwrite
|
|
|
|
// existing values from previous scopes.
|
2015-06-12 23:05:59 +00:00
|
|
|
(*h)[key] = val_entry.val;
|
2016-04-29 01:26:46 +00:00
|
|
|
} else {
|
|
|
|
// We need to erase from the map if we are not exporting, since a lower scope may have
|
|
|
|
// exported. See #2132.
|
2015-06-12 23:05:59 +00:00
|
|
|
h->erase(key);
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
2012-11-18 10:23:22 +00:00
|
|
|
}
|
2012-02-17 18:52:30 +00:00
|
|
|
}
|
2006-11-26 13:09:43 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
// Given a map from key to value, add values to out of the form key=value.
|
|
|
|
static void export_func(const std::map<wcstring, wcstring> &envs, std::vector<std::string> &out) {
|
2014-10-12 22:01:35 +00:00
|
|
|
out.reserve(out.size() + envs.size());
|
2012-11-19 00:30:30 +00:00
|
|
|
std::map<wcstring, wcstring>::const_iterator iter;
|
2016-04-29 01:26:46 +00:00
|
|
|
for (iter = envs.begin(); iter != envs.end(); ++iter) {
|
2014-10-12 22:01:35 +00:00
|
|
|
const wcstring &key = iter->first;
|
|
|
|
const std::string &ks = wcs2string(key);
|
2013-02-12 12:50:43 +00:00
|
|
|
std::string vs = wcs2string(iter->second);
|
2013-02-14 23:50:24 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
// Arrays in the value are ASCII record separator (0x1e) delimited. But some variables
|
|
|
|
// should have colons. Add those.
|
2017-04-04 06:16:11 +00:00
|
|
|
if (variable_is_colon_delimited_var(key)) {
|
2016-04-29 01:26:46 +00:00
|
|
|
// Replace ARRAY_SEP with colon.
|
2014-10-12 22:01:35 +00:00
|
|
|
std::replace(vs.begin(), vs.end(), (char)ARRAY_SEP, ':');
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
// Put a string on the vector.
|
2012-02-28 23:11:46 +00:00
|
|
|
out.push_back(std::string());
|
|
|
|
std::string &str = out.back();
|
2013-02-12 08:14:27 +00:00
|
|
|
str.reserve(ks.size() + 1 + vs.size());
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
// Append our environment variable data to it.
|
2012-02-28 23:11:46 +00:00
|
|
|
str.append(ks);
|
|
|
|
str.append("=");
|
|
|
|
str.append(vs);
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
2005-09-22 20:16:52 +00:00
|
|
|
}
|
|
|
|
|
2017-01-26 20:03:14 +00:00
|
|
|
void var_stack_t::update_export_array_if_necessary() {
|
2017-01-27 04:00:43 +00:00
|
|
|
if (!this->has_changed_exported) {
|
2017-01-26 20:03:14 +00:00
|
|
|
return;
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
2017-01-26 20:03:14 +00:00
|
|
|
std::map<wcstring, wcstring> vals;
|
2012-11-19 00:30:30 +00:00
|
|
|
|
2017-01-26 20:03:14 +00:00
|
|
|
debug(4, L"env_export_arr() recalc");
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2017-01-26 20:40:55 +00:00
|
|
|
get_exported(this->top.get(), &vals);
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2017-01-26 20:03:14 +00:00
|
|
|
if (uvars()) {
|
|
|
|
const wcstring_list_t uni = uvars()->get_names(true, false);
|
|
|
|
for (size_t i = 0; i < uni.size(); i++) {
|
|
|
|
const wcstring &key = uni.at(i);
|
|
|
|
const env_var_t val = uvars()->get(key);
|
|
|
|
|
|
|
|
if (!val.missing() && val != ENV_NULL) {
|
|
|
|
// Note that std::map::insert does NOT overwrite a value already in the map,
|
|
|
|
// which we depend on here.
|
|
|
|
vals.insert(std::pair<wcstring, wcstring>(key, val));
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-01-26 20:03:14 +00:00
|
|
|
|
|
|
|
std::vector<std::string> local_export_buffer;
|
|
|
|
export_func(vals, local_export_buffer);
|
|
|
|
export_array.set(local_export_buffer);
|
|
|
|
has_changed_exported = false;
|
2012-02-28 23:11:46 +00:00
|
|
|
}
|
2005-09-22 20:16:52 +00:00
|
|
|
|
2017-01-26 20:03:14 +00:00
|
|
|
const char *const *env_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();
|
|
|
|
return vars_stack().export_array.get();
|
2012-02-28 23:11:46 +00:00
|
|
|
}
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
void env_set_argv(const wchar_t *const *argv) {
|
|
|
|
if (*argv) {
|
|
|
|
const wchar_t *const *arg;
|
2015-08-15 20:37:17 +00:00
|
|
|
wcstring sb;
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
for (arg = argv; *arg; arg++) {
|
|
|
|
if (arg != argv) {
|
2015-08-15 20:37:17 +00:00
|
|
|
sb.append(ARRAY_SEP_STR);
|
|
|
|
}
|
|
|
|
sb.append(*arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
env_set(L"argv", sb.c_str(), ENV_LOCAL);
|
2016-04-29 01:26:46 +00:00
|
|
|
} else {
|
2015-08-15 20:37:17 +00:00
|
|
|
env_set(L"argv", 0, ENV_LOCAL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
env_vars_snapshot_t::env_vars_snapshot_t(const wchar_t *const *keys) {
|
2011-12-27 03:18:46 +00:00
|
|
|
ASSERT_IS_MAIN_THREAD();
|
2012-07-21 05:11:05 +00:00
|
|
|
wcstring key;
|
2016-04-29 01:26:46 +00:00
|
|
|
for (size_t i = 0; keys[i]; i++) {
|
2012-07-21 05:11:05 +00:00
|
|
|
key.assign(keys[i]);
|
|
|
|
const env_var_t val = env_get_string(key);
|
2016-04-29 01:26:46 +00:00
|
|
|
if (!val.missing()) {
|
2012-07-21 05:11:05 +00:00
|
|
|
vars[key] = val;
|
2011-12-27 03:18:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
void env_universal_barrier() {
|
2014-06-16 00:30:50 +00:00
|
|
|
ASSERT_IS_MAIN_THREAD();
|
2016-04-29 01:26:46 +00:00
|
|
|
if (uvars()) {
|
2014-06-16 00:30:50 +00:00
|
|
|
callback_data_list_t changes;
|
|
|
|
bool changed = uvars()->sync(&changes);
|
2016-04-29 01:26:46 +00:00
|
|
|
if (changed) {
|
2014-06-16 00:30:50 +00:00
|
|
|
universal_notifier_t::default_notifier().post_notification();
|
|
|
|
}
|
2016-04-29 01:26:46 +00:00
|
|
|
|
|
|
|
// Post callbacks.
|
|
|
|
for (size_t i = 0; i < changes.size(); i++) {
|
2014-06-16 00:30:50 +00:00
|
|
|
const callback_data_t &data = changes.at(i);
|
2016-10-09 21:38:26 +00:00
|
|
|
universal_callback(data.type, data.key.c_str());
|
2014-06-16 00:30:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
env_vars_snapshot_t::env_vars_snapshot_t() {}
|
2011-12-27 03:18:46 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
// The "current" variables are not a snapshot at all, but instead trampoline to env_get_string, etc.
|
|
|
|
// We identify the current snapshot based on pointer values.
|
2012-07-21 05:11:05 +00:00
|
|
|
static const env_vars_snapshot_t sCurrentSnapshot;
|
2016-04-29 01:26:46 +00:00
|
|
|
const env_vars_snapshot_t &env_vars_snapshot_t::current() { return sCurrentSnapshot; }
|
2011-12-27 03:18:46 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
bool env_vars_snapshot_t::is_current() const { return this == &sCurrentSnapshot; }
|
2012-07-21 03:39:31 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
env_var_t env_vars_snapshot_t::get(const wcstring &key) const {
|
|
|
|
// If we represent the current state, bounce to env_get_string.
|
|
|
|
if (this->is_current()) {
|
2012-07-21 05:11:05 +00:00
|
|
|
return env_get_string(key);
|
|
|
|
}
|
2016-05-04 22:19:47 +00:00
|
|
|
std::map<wcstring, wcstring>::const_iterator iter = vars.find(key);
|
|
|
|
return iter == vars.end() ? env_var_t::missing_var() : env_var_t(iter->second);
|
2012-07-21 05:11:05 +00:00
|
|
|
}
|
2012-05-06 21:53:19 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
const wchar_t *const env_vars_snapshot_t::highlighting_keys[] = {L"PATH", L"CDPATH",
|
|
|
|
L"fish_function_path", NULL};
|
2016-02-08 09:29:23 +00:00
|
|
|
|
2016-04-29 01:26:46 +00:00
|
|
|
const wchar_t *const env_vars_snapshot_t::completing_keys[] = {L"PATH", L"CDPATH", NULL};
|