1 /* Copyright (C) 1992,1995-2001,2004, 2008, 2010 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
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.
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
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
25 # if !defined errno && !defined HAVE_ERRNO_DECL
28 # define __set_errno(ev) ((errno) = (ev))
31 #if _LIBC || HAVE_STDLIB_H
34 #if _LIBC || HAVE_STRING_H
37 #if _LIBC || HAVE_UNISTD_H
42 # define __environ environ
43 # ifndef HAVE_ENVIRON_DECL
44 extern char **environ
;
49 /* This lock protects against simultaneous modifications of `environ'. */
50 # include <bits/libc-lock.h>
51 __libc_lock_define_initialized (static, envlock
)
52 # define LOCK __libc_lock_lock (envlock)
53 # define UNLOCK __libc_lock_unlock (envlock)
59 /* In the GNU C library we must keep the namespace clean. */
61 # define setenv __setenv
62 # define unsetenv __unsetenv
63 # define clearenv __clearenv
64 # define tfind __tfind
65 # define tsearch __tsearch
68 /* In the GNU C library implementation we try to be more clever and
69 allow arbitrarily many changes of the environment given that the used
70 values are from a small set. Outside glibc this will eat up all
71 memory after a while. */
72 #if defined _LIBC || (defined HAVE_SEARCH_H && defined HAVE_TSEARCH \
74 # define USE_TSEARCH 1
77 /* This is a pointer to the root of the search tree with the known
79 static void *known_values
;
81 # define KNOWN_VALUE(Str) \
83 void *value = tfind (Str, &known_values, (__compar_fn_t) strcmp); \
84 value != NULL ? *(char **) value : NULL; \
86 # define STORE_VALUE(Str) \
87 tsearch (Str, &known_values, (__compar_fn_t) strcmp)
92 # define KNOWN_VALUE(Str) NULL
93 # define STORE_VALUE(Str) do { } while (0)
98 /* If this variable is not a null pointer we allocated the current
100 static char **last_environ
;
103 /* This function is used by `setenv' and `putenv'. The difference between
104 the two functions is that for the former must create a new string which
105 is then placed in the environment, while the argument of `putenv'
106 must be used directly. This is all complicated by the fact that we try
107 to reuse values once generated for a `setenv' call since we can never
110 __add_to_environ (name
, value
, combined
, replace
)
113 const char *combined
;
117 register size_t size
;
118 const size_t namelen
= strlen (name
);
119 const size_t vallen
= value
!= NULL
? strlen (value
) + 1 : 0;
123 /* We have to get the pointer now that we have the lock and not earlier
124 since another thread might have created a new environment. */
130 for (; *ep
!= NULL
; ++ep
)
131 if (!strncmp (*ep
, name
, namelen
) && (*ep
)[namelen
] == '=')
137 if (ep
== NULL
|| __builtin_expect (*ep
== NULL
, 1))
139 const size_t varlen
= namelen
+ 1 + vallen
;
142 /* We allocated this space; we can extend it. */
143 new_environ
= (char **) realloc (last_environ
,
144 (size
+ 2) * sizeof (char *));
145 if (new_environ
== NULL
)
151 /* If the whole entry is given add it. */
152 if (combined
!= NULL
)
153 /* We must not add the string to the search tree since it belongs
155 new_environ
[size
] = (char *) combined
;
158 /* See whether the value is already known. */
161 int use_alloca
= __libc_use_alloca (varlen
);
162 if (__builtin_expect (use_alloca
, 1))
163 new_value
= (char *) alloca (varlen
);
166 new_value
= malloc (varlen
);
167 if (new_value
== NULL
)
170 if (last_environ
== NULL
)
176 __mempcpy (__mempcpy (__mempcpy (new_value
, name
, namelen
), "=", 1),
179 memcpy (new_value
, name
, namelen
);
180 new_value
[namelen
] = '=';
181 memcpy (&new_value
[namelen
+ 1], value
, vallen
);
184 new_environ
[size
] = KNOWN_VALUE (new_value
);
185 if (__builtin_expect (new_environ
[size
] == NULL
, 1))
189 if (__builtin_expect (! use_alloca
, 0))
190 new_environ
[size
] = new_value
;
194 new_environ
[size
] = (char *) malloc (varlen
);
195 if (__builtin_expect (new_environ
[size
] == NULL
, 0))
202 memcpy (new_environ
[size
], new_value
, varlen
);
204 memcpy (new_environ
[size
], name
, namelen
);
205 new_environ
[size
][namelen
] = '=';
206 memcpy (&new_environ
[size
][namelen
+ 1], value
, vallen
);
210 /* And save the value now. We cannot do this when we remove
211 the string since then we cannot decide whether it is a
212 user string or not. */
213 STORE_VALUE (new_environ
[size
]);
217 if (__environ
!= last_environ
)
218 memcpy ((char *) new_environ
, (char *) __environ
,
219 size
* sizeof (char *));
221 new_environ
[size
+ 1] = NULL
;
223 last_environ
= __environ
= new_environ
;
229 /* Use the user string if given. */
230 if (combined
!= NULL
)
231 np
= (char *) combined
;
234 const size_t varlen
= namelen
+ 1 + vallen
;
237 int use_alloca
= __libc_use_alloca (varlen
);
238 if (__builtin_expect (use_alloca
, 1))
239 new_value
= (char *) alloca (varlen
);
242 new_value
= malloc (varlen
);
243 if (new_value
== NULL
)
250 __mempcpy (__mempcpy (__mempcpy (new_value
, name
, namelen
), "=", 1),
253 memcpy (new_value
, name
, namelen
);
254 new_value
[namelen
] = '=';
255 memcpy (&new_value
[namelen
+ 1], value
, vallen
);
258 np
= KNOWN_VALUE (new_value
);
259 if (__builtin_expect (np
== NULL
, 1))
263 if (__builtin_expect (! use_alloca
, 0))
268 np
= malloc (varlen
);
269 if (__builtin_expect (np
== NULL
, 0))
276 memcpy (np
, new_value
, varlen
);
278 memcpy (np
, name
, namelen
);
280 memcpy (&np
[namelen
+ 1], value
, vallen
);
283 /* And remember the value. */
297 setenv (name
, value
, replace
)
302 if (name
== NULL
|| *name
== '\0' || strchr (name
, '=') != NULL
)
304 __set_errno (EINVAL
);
308 return __add_to_environ (name
, value
, NULL
, replace
);
318 if (name
== NULL
|| *name
== '\0' || strchr (name
, '=') != NULL
)
320 __set_errno (EINVAL
);
331 if (!strncmp (*ep
, name
, len
) && (*ep
)[len
] == '=')
333 /* Found it. Remove this pointer by moving later ones back. */
339 /* Continue the loop in case NAME appears again. */
349 /* The `clearenv' was planned to be added to POSIX.1 but probably
350 never made it. Nevertheless the POSIX.9 standard (POSIX bindings
351 for Fortran 77) requires this function. */
357 if (__environ
== last_environ
&& __environ
!= NULL
)
359 /* We allocated this environment so we can free it. */
364 /* Clear the environment pointer removes the whole environment. */
372 libc_freeres_fn (free_mem
)
374 /* Remove all traces. */
377 /* Now remove the search tree. */
378 __tdestroy (known_values
, free
);
385 weak_alias (__setenv
, setenv
)
386 weak_alias (__unsetenv
, unsetenv
)
387 weak_alias (__clearenv
, clearenv
)