1 /* environ.c -- library for manipulating environments for GNU.
3 Copyright (C) 1986-2019 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18 #include "common-defs.h"
23 /* See gdbsupport/environ.h. */
26 gdb_environ::operator= (gdb_environ &&e)
28 /* Are we self-moving? */
32 m_environ_vector = std::move (e.m_environ_vector);
33 m_user_set_env = std::move (e.m_user_set_env);
34 m_user_unset_env = std::move (e.m_user_unset_env);
35 e.m_environ_vector.clear ();
36 e.m_environ_vector.push_back (NULL);
37 e.m_user_set_env.clear ();
38 e.m_user_unset_env.clear ();
42 /* See gdbsupport/environ.h. */
44 gdb_environ gdb_environ::from_host_environ ()
46 extern char **environ;
52 for (int i = 0; environ[i] != NULL; ++i)
54 /* Make sure we add the element before the last (NULL). */
55 e.m_environ_vector.insert (e.m_environ_vector.end () - 1,
56 xstrdup (environ[i]));
62 /* See gdbsupport/environ.h. */
67 for (char *v : m_environ_vector)
69 m_environ_vector.clear ();
70 /* Always add the NULL element. */
71 m_environ_vector.push_back (NULL);
72 m_user_set_env.clear ();
73 m_user_unset_env.clear ();
76 /* Helper function to check if STRING contains an environment variable
77 assignment of VAR, i.e., if STRING starts with 'VAR='. Return true
78 if it contains, false otherwise. */
81 match_var_in_string (const char *string, const char *var, size_t var_len)
83 if (strncmp (string, var, var_len) == 0 && string[var_len] == '=')
89 /* See gdbsupport/environ.h. */
92 gdb_environ::get (const char *var) const
94 size_t len = strlen (var);
96 for (char *el : m_environ_vector)
97 if (el != NULL && match_var_in_string (el, var, len))
103 /* See gdbsupport/environ.h. */
106 gdb_environ::set (const char *var, const char *value)
108 char *fullvar = concat (var, "=", value, NULL);
110 /* We have to unset the variable in the vector if it exists. */
113 /* Insert the element before the last one, which is always NULL. */
114 m_environ_vector.insert (m_environ_vector.end () - 1, fullvar);
116 /* Mark this environment variable as having been set by the user.
117 This will be useful when we deal with setting environment
118 variables on the remote target. */
119 m_user_set_env.insert (std::string (fullvar));
121 /* If this environment variable is marked as unset by the user, then
122 remove it from the list, because now the user wants to set
124 m_user_unset_env.erase (std::string (var));
127 /* See gdbsupport/environ.h. */
130 gdb_environ::unset (const char *var, bool update_unset_list)
132 size_t len = strlen (var);
133 std::vector<char *>::iterator it_env;
135 /* We iterate until '.end () - 1' because the last element is
137 for (it_env = m_environ_vector.begin ();
138 it_env != m_environ_vector.end () - 1;
140 if (match_var_in_string (*it_env, var, len))
143 if (it_env != m_environ_vector.end () - 1)
145 m_user_set_env.erase (std::string (*it_env));
148 m_environ_vector.erase (it_env);
151 if (update_unset_list)
152 m_user_unset_env.insert (std::string (var));
155 /* See gdbsupport/environ.h. */
158 gdb_environ::unset (const char *var)
163 /* See gdbsupport/environ.h. */
166 gdb_environ::envp () const
168 return const_cast<char **> (&m_environ_vector[0]);
171 /* See gdbsupport/environ.h. */
173 const std::set<std::string> &
174 gdb_environ::user_set_env () const
176 return m_user_set_env;
179 const std::set<std::string> &
180 gdb_environ::user_unset_env () const
182 return m_user_unset_env;