]> git.ipfire.org Git - thirdparty/glibc.git/blame - stdlib/setenv.c
Avoid confusing compiler with dynamically impossible statically invalid dereference...
[thirdparty/glibc.git] / stdlib / setenv.c
CommitLineData
b168057a 1/* Copyright (C) 1992-2015 Free Software Foundation, Inc.
f0e44959 2 This file is part of the GNU C Library.
28f540f4 3
f0e44959 4 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
28f540f4 8
f0e44959
UD
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 12 Lesser General Public License for more details.
28f540f4 13
41bdb6e2 14 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
28f540f4 17
f0e44959
UD
18#if HAVE_CONFIG_H
19# include <config.h>
196980f5
RM
20#endif
21
22#include <errno.h>
61c162b5 23#if !_LIBC
ff152e3f 24# if !defined errno && !defined HAVE_ERRNO_DECL
61c162b5
UD
25extern int errno;
26# endif
27# define __set_errno(ev) ((errno) = (ev))
28#endif
196980f5
RM
29
30#if _LIBC || HAVE_STDLIB_H
f0e44959 31# include <stdlib.h>
196980f5
RM
32#endif
33#if _LIBC || HAVE_STRING_H
f0e44959 34# include <string.h>
196980f5
RM
35#endif
36#if _LIBC || HAVE_UNISTD_H
f0e44959 37# include <unistd.h>
196980f5 38#endif
28f540f4 39
61c162b5 40#if !_LIBC
f0e44959 41# define __environ environ
61c162b5
UD
42# ifndef HAVE_ENVIRON_DECL
43extern char **environ;
44# endif
28f540f4
RM
45#endif
46
61c162b5 47#if _LIBC
9e0f4072 48/* This lock protects against simultaneous modifications of `environ'. */
5107cf1d 49# include <bits/libc-lock.h>
9e0f4072 50__libc_lock_define_initialized (static, envlock)
f0e44959
UD
51# define LOCK __libc_lock_lock (envlock)
52# define UNLOCK __libc_lock_unlock (envlock)
9e0f4072 53#else
f0e44959
UD
54# define LOCK
55# define UNLOCK
9e0f4072
RM
56#endif
57
3e5f5557
UD
58/* In the GNU C library we must keep the namespace clean. */
59#ifdef _LIBC
ff152e3f
UD
60# define setenv __setenv
61# define unsetenv __unsetenv
3e5f5557 62# define clearenv __clearenv
b17277cf
UD
63# define tfind __tfind
64# define tsearch __tsearch
3e5f5557
UD
65#endif
66
ff152e3f 67/* In the GNU C library implementation we try to be more clever and
49c091e5 68 allow arbitrarily many changes of the environment given that the used
ff152e3f
UD
69 values are from a small set. Outside glibc this will eat up all
70 memory after a while. */
a709dd43
UD
71#if defined _LIBC || (defined HAVE_SEARCH_H && defined HAVE_TSEARCH \
72 && defined __GNUC__)
ff152e3f
UD
73# define USE_TSEARCH 1
74# include <search.h>
75
76/* This is a pointer to the root of the search tree with the known
77 values. */
78static void *known_values;
79
b17277cf
UD
80# define KNOWN_VALUE(Str) \
81 ({ \
a709dd43
UD
82 void *value = tfind (Str, &known_values, (__compar_fn_t) strcmp); \
83 value != NULL ? *(char **) value : NULL; \
b17277cf
UD
84 })
85# define STORE_VALUE(Str) \
a709dd43 86 tsearch (Str, &known_values, (__compar_fn_t) strcmp)
ff152e3f
UD
87
88#else
89# undef USE_TSEARCH
90
91# define KNOWN_VALUE(Str) NULL
92# define STORE_VALUE(Str) do { } while (0)
93
94#endif
95
3e5f5557 96
f0e44959
UD
97/* If this variable is not a null pointer we allocated the current
98 environment. */
99static char **last_environ;
100
101
de4a40d0
UD
102/* This function is used by `setenv' and `putenv'. The difference between
103 the two functions is that for the former must create a new string which
104 is then placed in the environment, while the argument of `putenv'
105 must be used directly. This is all complicated by the fact that we try
106 to reuse values once generated for a `setenv' call since we can never
107 free the strings. */
28f540f4 108int
de4a40d0 109__add_to_environ (name, value, combined, replace)
196980f5
RM
110 const char *name;
111 const char *value;
de4a40d0 112 const char *combined;
196980f5 113 int replace;
28f540f4 114{
2e09a79a
JM
115 char **ep;
116 size_t size;
196980f5 117 const size_t namelen = strlen (name);
cb219290 118 const size_t vallen = value != NULL ? strlen (value) + 1 : 0;
28f540f4 119
9e0f4072
RM
120 LOCK;
121
7195db12
UD
122 /* We have to get the pointer now that we have the lock and not earlier
123 since another thread might have created a new environment. */
124 ep = __environ;
125
28f540f4 126 size = 0;
96ff4937 127 if (ep != NULL)
b0772d3b 128 {
96ff4937 129 for (; *ep != NULL; ++ep)
b0772d3b
UD
130 if (!strncmp (*ep, name, namelen) && (*ep)[namelen] == '=')
131 break;
132 else
133 ++size;
134 }
196980f5 135
3504e5a6 136 if (ep == NULL || __builtin_expect (*ep == NULL, 1))
28f540f4 137 {
196980f5 138 char **new_environ;
86187531 139
ff152e3f
UD
140 /* We allocated this space; we can extend it. */
141 new_environ = (char **) realloc (last_environ,
142 (size + 2) * sizeof (char *));
28f540f4 143 if (new_environ == NULL)
9e0f4072
RM
144 {
145 UNLOCK;
146 return -1;
147 }
1448f324
OB
148
149 if (__environ != last_environ)
150 memcpy ((char *) new_environ, (char *) __environ,
151 size * sizeof (char *));
152
f3d338c9 153 new_environ[size] = NULL;
28f540f4 154 new_environ[size + 1] = NULL;
f3d338c9 155 ep = new_environ + size;
28f540f4 156
196980f5 157 last_environ = __environ = new_environ;
28f540f4 158 }
f3d338c9 159 if (*ep == NULL || replace)
28f540f4 160 {
cb37d842 161 char *np;
ff152e3f 162
de4a40d0
UD
163 /* Use the user string if given. */
164 if (combined != NULL)
165 np = (char *) combined;
166 else
167 {
c63bfa79 168 const size_t varlen = namelen + 1 + vallen;
ff152e3f 169#ifdef USE_TSEARCH
c63bfa79
UD
170 char *new_value;
171 int use_alloca = __libc_use_alloca (varlen);
172 if (__builtin_expect (use_alloca, 1))
173 new_value = (char *) alloca (varlen);
174 else
175 {
176 new_value = malloc (varlen);
177 if (new_value == NULL)
178 {
179 UNLOCK;
180 return -1;
181 }
182 }
ff152e3f 183# ifdef _LIBC
de4a40d0
UD
184 __mempcpy (__mempcpy (__mempcpy (new_value, name, namelen), "=", 1),
185 value, vallen);
ff152e3f 186# else
de4a40d0
UD
187 memcpy (new_value, name, namelen);
188 new_value[namelen] = '=';
189 memcpy (&new_value[namelen + 1], value, vallen);
ff152e3f
UD
190# endif
191
de4a40d0 192 np = KNOWN_VALUE (new_value);
a1ffb40e 193 if (__glibc_likely (np == NULL))
de4a40d0 194#endif
9e0f4072 195 {
c63bfa79 196#ifdef USE_TSEARCH
a1ffb40e 197 if (__glibc_unlikely (! use_alloca))
c63bfa79
UD
198 np = new_value;
199 else
200#endif
de4a40d0 201 {
c63bfa79 202 np = malloc (varlen);
a1ffb40e 203 if (__glibc_unlikely (np == NULL))
c63bfa79
UD
204 {
205 UNLOCK;
206 return -1;
207 }
ff152e3f
UD
208
209#ifdef USE_TSEARCH
c63bfa79 210 memcpy (np, new_value, varlen);
86187531 211#else
c63bfa79
UD
212 memcpy (np, name, namelen);
213 np[namelen] = '=';
214 memcpy (&np[namelen + 1], value, vallen);
86187531 215#endif
c63bfa79 216 }
de4a40d0
UD
217 /* And remember the value. */
218 STORE_VALUE (np);
219 }
d5b1c5ed
EB
220#ifdef USE_TSEARCH
221 else
222 {
223 if (__glibc_unlikely (! use_alloca))
224 free (new_value);
225 }
226#endif
28f540f4 227 }
cb37d842 228
cb37d842 229 *ep = np;
28f540f4
RM
230 }
231
9e0f4072
RM
232 UNLOCK;
233
28f540f4
RM
234 return 0;
235}
196980f5 236
de4a40d0
UD
237int
238setenv (name, value, replace)
239 const char *name;
240 const char *value;
241 int replace;
242{
e17f8b61
RM
243 if (name == NULL || *name == '\0' || strchr (name, '=') != NULL)
244 {
245 __set_errno (EINVAL);
246 return -1;
247 }
248
de4a40d0
UD
249 return __add_to_environ (name, value, NULL, replace);
250}
251
61f9d0a3 252int
299a95b9
RM
253unsetenv (name)
254 const char *name;
196980f5 255{
7c5bb945 256 size_t len;
196980f5
RM
257 char **ep;
258
61f9d0a3
UD
259 if (name == NULL || *name == '\0' || strchr (name, '=') != NULL)
260 {
261 __set_errno (EINVAL);
262 return -1;
263 }
264
265 len = strlen (name);
266
9e0f4072
RM
267 LOCK;
268
de4a40d0 269 ep = __environ;
1fa7ae05
UD
270 if (ep != NULL)
271 while (*ep != NULL)
272 if (!strncmp (*ep, name, len) && (*ep)[len] == '=')
273 {
274 /* Found it. Remove this pointer by moving later ones back. */
275 char **dp = ep;
276
277 do
278 dp[0] = dp[1];
279 while (*dp++);
280 /* Continue the loop in case NAME appears again. */
281 }
282 else
283 ++ep;
9e0f4072
RM
284
285 UNLOCK;
61f9d0a3
UD
286
287 return 0;
196980f5 288}
f0e44959
UD
289
290/* The `clearenv' was planned to be added to POSIX.1 but probably
291 never made it. Nevertheless the POSIX.9 standard (POSIX bindings
292 for Fortran 77) requires this function. */
293int
60d2f8f3 294clearenv (void)
f0e44959
UD
295{
296 LOCK;
297
298 if (__environ == last_environ && __environ != NULL)
299 {
de4a40d0 300 /* We allocated this environment so we can free it. */
f0e44959
UD
301 free (__environ);
302 last_environ = NULL;
303 }
304
305 /* Clear the environment pointer removes the whole environment. */
306 __environ = NULL;
307
308 UNLOCK;
309
310 return 0;
311}
3e5f5557 312#ifdef _LIBC
c877418f 313libc_freeres_fn (free_mem)
69071b2a
UD
314{
315 /* Remove all traces. */
316 clearenv ();
317
318 /* Now remove the search tree. */
319 __tdestroy (known_values, free);
320 known_values = NULL;
321}
69071b2a 322
ff152e3f
UD
323# undef setenv
324# undef unsetenv
3e5f5557 325# undef clearenv
ff152e3f
UD
326weak_alias (__setenv, setenv)
327weak_alias (__unsetenv, unsetenv)
3e5f5557
UD
328weak_alias (__clearenv, clearenv)
329#endif