* cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
[gnulib.git] / lib / putenv.c
1 /* Copyright (C) 1991, 1994, 1997, 1998, 2000, 2003, 2004, 2005 Free Software Foundation, Inc.
2
3    NOTE: The canonical source of this file is maintained with the GNU C
4    Library.  Bugs can be reported to bug-glibc@prep.ai.mit.edu.
5
6    This program is free software; you can redistribute it and/or modify it
7    under the terms of the GNU General Public License as published by the
8    Free Software Foundation; either version 2, or (at your option) any
9    later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software Foundation,
18    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
19
20 #ifdef HAVE_CONFIG_H
21 # include <config.h>
22 #endif
23
24 #include <stddef.h>
25
26 /* Include errno.h *after* sys/types.h to work around header problems
27    on AIX 3.2.5.  */
28 #include <errno.h>
29 #ifndef __set_errno
30 # define __set_errno(ev) ((errno) = (ev))
31 #endif
32
33 /* Don't include stdlib.h because some (e.g., Solaris 7) declare putenv
34    with a non-const argument.  That would conflict with the declaration of
35    rpl_putenv below (due to the #define putenv rpl_putenv from config.h).  */
36
37 void *malloc ();
38 void free ();
39
40 #include <string.h>
41
42 #include <unistd.h>
43
44 #if HAVE_GNU_LD
45 # define environ __environ
46 #else
47 extern char **environ;
48 #endif
49
50 #if _LIBC
51 /* This lock protects against simultaneous modifications of `environ'.  */
52 # include <bits/libc-lock.h>
53 __libc_lock_define_initialized (static, envlock)
54 # define LOCK   __libc_lock_lock (envlock)
55 # define UNLOCK __libc_lock_unlock (envlock)
56 #else
57 # define LOCK
58 # define UNLOCK
59 #endif
60
61 static int
62 unsetenv (const char *name)
63 {
64   size_t len;
65   char **ep;
66
67   if (name == NULL || *name == '\0' || strchr (name, '=') != NULL)
68     {
69       __set_errno (EINVAL);
70       return -1;
71     }
72
73   len = strlen (name);
74
75   LOCK;
76
77   ep = environ;
78   while (*ep != NULL)
79     if (!strncmp (*ep, name, len) && (*ep)[len] == '=')
80       {
81         /* Found it.  Remove this pointer by moving later ones back.  */
82         char **dp = ep;
83
84         do
85           dp[0] = dp[1];
86         while (*dp++);
87         /* Continue the loop in case NAME appears again.  */
88       }
89     else
90       ++ep;
91
92   UNLOCK;
93
94   return 0;
95 }
96
97
98 /* Put STRING, which is of the form "NAME=VALUE", in the environment.
99    If STRING contains no `=', then remove STRING from the environment.  */
100 int
101 rpl_putenv (const char *string)
102 {
103   const char *const name_end = strchr (string, '=');
104   register size_t size;
105   register char **ep;
106
107   if (name_end == NULL)
108     {
109       /* Remove the variable from the environment.  */
110       return unsetenv (string);
111     }
112
113   size = 0;
114   for (ep = environ; *ep != NULL; ++ep)
115     if (!strncmp (*ep, string, name_end - string) &&
116         (*ep)[name_end - string] == '=')
117       break;
118     else
119       ++size;
120
121   if (*ep == NULL)
122     {
123       static char **last_environ = NULL;
124       char **new_environ = (char **) malloc ((size + 2) * sizeof (char *));
125       if (new_environ == NULL)
126         return -1;
127       (void) memcpy ((void *) new_environ, (void *) environ,
128                      size * sizeof (char *));
129       new_environ[size] = (char *) string;
130       new_environ[size + 1] = NULL;
131       if (last_environ != NULL)
132         free (last_environ);
133       last_environ = new_environ;
134       environ = new_environ;
135     }
136   else
137     *ep = (char *) string;
138
139   return 0;
140 }