1 /****************************************************************************
3 * GNAT COMPILER COMPONENTS *
7 * C Implementation File *
9 * Copyright (C) 2005-2006, Free Software Foundation, Inc. *
11 * GNAT is free software; you can redistribute it and/or modify it under *
12 * terms of the GNU General Public License as published by the Free Soft- *
13 * ware Foundation; either version 2, or (at your option) any later ver- *
14 * sion. GNAT is distributed in the hope that it will be useful, but WITH- *
15 * OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY *
16 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License *
17 * for more details. You should have received a copy of the GNU General *
18 * Public License distributed with GNAT; see file COPYING. If not, write *
19 * to the Free Software Foundation, 51 Franklin Street, Fifth Floor, *
20 * Boston, MA 02110-1301, USA. *
22 * As a special exception, if you link this file with other files to *
23 * produce an executable, this file does not by itself cause the resulting *
24 * executable to be covered by the GNU General Public License. This except- *
25 * ion does not however invalidate any other reasons why the executable *
26 * file might be covered by the GNU Public License. *
28 * GNAT was originally developed by the GNAT team at New York University. *
29 * Extensive contributions were provided by Ada Core Technologies Inc. *
31 ****************************************************************************/
44 #if defined (__APPLE__)
45 #include <crt_externs.h>
48 #if defined (__MINGW32__)
52 #if defined (__vxworks) && ! (defined (__RTP__) || defined (__COREOS__))
54 extern char** ppGlobalEnviron
;
57 /* We don't have libiberty, so use malloc. */
58 #define xmalloc(S) malloc (S)
67 __gnat_getenv (char *name
, int *len
, char **value
)
69 *value
= getenv (name
);
73 *len
= strlen (*value
);
78 /* VMS specific declarations for set_env_value. */
82 static char *to_host_path_spec (char *);
86 unsigned short len
, mbz
;
92 unsigned short len
, code
;
94 unsigned short *retlen_adr
;
100 __gnat_setenv (char *name
, char *value
)
105 struct descriptor_s name_desc
;
106 /* Put in JOB table for now, so that the project stuff at least works. */
107 struct descriptor_s table_desc
= {7, 0, "LNM$JOB"};
108 char *host_pathspec
= value
;
110 int num_dirs_in_pathspec
= 1;
114 name_desc
.len
= strlen (name
);
116 name_desc
.adr
= name
;
118 if (*host_pathspec
== 0)
121 status
= LIB$
DELETE_LOGICAL (&name_desc
, &table_desc
);
122 /* no need to check status; if the logical name is not
123 defined, that's fine. */
130 num_dirs_in_pathspec
++;
134 ile_s
*ile_array
= alloca (sizeof (ile_s
) * (num_dirs_in_pathspec
+ 1));
135 char *copy_pathspec
= alloca (strlen (host_pathspec
) + 1);
138 strcpy (copy_pathspec
, host_pathspec
);
139 curr
= copy_pathspec
;
140 for (i
= 0; i
< num_dirs_in_pathspec
; i
++)
142 next
= strchr (curr
, ',');
144 next
= strchr (curr
, 0);
147 ile_array
[i
].len
= strlen (curr
);
149 /* Code 2 from lnmdef.h means it's a string. */
150 ile_array
[i
].code
= 2;
151 ile_array
[i
].adr
= curr
;
153 /* retlen_adr is ignored. */
154 ile_array
[i
].retlen_adr
= 0;
158 /* Terminating item must be zero. */
159 ile_array
[i
].len
= 0;
160 ile_array
[i
].code
= 0;
161 ile_array
[i
].adr
= 0;
162 ile_array
[i
].retlen_adr
= 0;
164 status
= LIB$
SET_LOGICAL (&name_desc
, 0, &table_desc
, 0, ile_array
);
165 if ((status
& 1) != 1)
169 #elif defined (__vxworks) && defined (__RTP__)
170 setenv (name
, value
, 1);
173 size_t size
= strlen (name
) + strlen (value
) + 2;
176 expression
= (char *) xmalloc (size
* sizeof (char));
178 sprintf (expression
, "%s=%s", name
, value
);
180 #if defined (__FreeBSD__) || defined (__APPLE__) || defined (__MINGW32__) \
181 ||(defined (__vxworks) && ! defined (__RTP__))
182 /* On some systems like FreeBSD, MacOS X and Windows, putenv is making
183 a copy of the expression string so we can free it after the call to
191 __gnat_environ (void)
194 /* Not implemented */
196 #elif defined (__APPLE__)
197 char ***result
= _NSGetEnviron ();
199 #elif defined (__MINGW32__)
202 extern char **_environ
;
205 #if ! (defined (__vxworks) && ! (defined (__RTP__) || defined (__COREOS__)))
206 /* in VxWorks kernel mode environ is macro and not a variable */
207 /* same thing on 653 in the CoreOS */
208 extern char **environ
;
214 void __gnat_unsetenv (char *name
) {
216 /* Not implemented */
218 #elif defined (__hpux__) || defined (sun) \
219 || (defined (__mips) && defined (__sgi)) \
220 || (defined (__vxworks) && ! defined (__RTP__)) \
223 /* On Solaris, HP-UX and IRIX there is no function to clear an environment
224 variable. So we look for the variable in the environ table and delete it
225 by setting the entry to NULL. This can clearly cause some memory leaks
226 but free cannot be used on this context as not all strings in the environ
227 have been allocated using malloc. To avoid this memory leak another
228 method can be used. It consists in forcing the reallocation of all the
229 strings in the environ table using malloc on the first call on the
230 functions related to environment variable management. The disavantage
231 is that if a program makes a direct call to getenv the return string
232 may be deallocated at some point. */
233 /* Note that on AIX, unsetenv is not supported on 5.1 but it is on 5.3.
234 As we are still supporting AIX 5.1 we cannot use unsetenv */
235 char **env
= __gnat_environ ();
237 size_t size
= strlen (name
);
239 while (env
[index
] != NULL
) {
240 if (strlen (env
[index
]) > size
) {
241 if (strstr (env
[index
], name
) == env
[index
] &&
242 env
[index
][size
] == '=') {
243 #if defined (__vxworks) && ! defined (__RTP__)
244 /* on Vxworks we are sure that the string has been allocated using
248 while (env
[index
] != NULL
) {
249 env
[index
]=env
[index
+ 1];
257 #elif defined (__MINGW32__)
258 /* On Windows platform putenv ("key=") is equivalent to unsetenv (a
259 subsequent call to getenv ("key") will return NULL and not the "\0"
261 size_t size
= strlen (name
) + 2;
263 expression
= (char *) xmalloc (size
* sizeof (char));
265 sprintf (expression
, "%s=", name
);
273 void __gnat_clearenv (void) {
275 /* not implemented */
277 #elif defined (sun) || (defined (__mips) && defined (__sgi)) \
278 || (defined (__vxworks) && ! defined (__RTP__)) || defined (__Lynx__)
279 /* On Solaris, IRIX, VxWorks (not RTPs), and Lynx there is no system
280 call to unset a variable or to clear the environment so set all
281 the entries in the environ table to NULL (see comment in
282 __gnat_unsetenv for more explanation). */
283 char **env
= __gnat_environ ();
286 while (env
[index
] != NULL
) {
290 #elif defined (__MINGW32__) || defined (__FreeBSD__) || defined (__APPLE__) \
291 || (defined (__vxworks) && defined (__RTP__))
292 /* On Windows, FreeBSD and MacOS there is no function to clean all the
293 environment but there is a "clean" way to unset a variable. So go
294 through the environ table and call __gnat_unsetenv on all entries */
295 char **env
= __gnat_environ ();
298 while (env
[0] != NULL
) {
300 while (env
[0][size
] != '=')
302 /* create a string that contains "name" */
305 char expression
[size
];
306 strncpy (expression
, env
[0], size
);
307 expression
[size
- 1] = 0;
308 __gnat_unsetenv (expression
);