NAME
getenv — get value
of an environment variable
SYNOPSIS
#include
<stdlib.h>
char *getenv(const char *name);
DESCRIPTION
[CX] The functionality described on this reference page is aligned with the ISO C standard. Any conflict between the requirements described here and the ISO C standard is unintentional. This volume of POSIX.1-2008 defers to the ISO C standard.
The getenv () function shall search the
environment of the calling process (see XBD V1_chap08(7))
for the environment variable name if it exists and return
a pointer to the value of the environment variable. If the specified
environment variable cannot be found, a null pointer shall be returned. The
application shall ensure that it does not modify the string pointed to by
the getenv () function.
[CX] The returned string pointer
might be invalidated or the string content might be overwritten by a
subsequent call to getenv (), [CX]
setenv(3), unsetenv(3),
[XSI] or (if
supported) putenv(3) but they shall not be affected by a
call to any other function in this volume of POSIX.1-2008.
[CX] The returned string pointer might also be invalidated if the calling thread is terminated.
[CX] The getenv ()
function need not be thread-safe.
RETURN VALUE
Upon successful completion, getenv ()
shall return a pointer to a string containing the
value
for the specified name. If the specified
name cannot be found in the environment of the calling
process, a null pointer shall be returned.
ERRORS
No errors are defined.
EXAMPLES
Getting the Value of an Environment Variable
The following example gets the value of the HOME environment variable.
#include <stdlib.h> ... const char *name = "HOME"; char *value; value = getenv(name);
APPLICATION USAGE
None.
RATIONALE
The clearenv () function was considered but rejected. The putenv(3) function has now been included for alignment with the Single UNIX Specification.
The getenv () function is inherently not
thread-safe because it returns a value pointing to static data.
Conforming applications are required not to directly
modify the pointers to which environ points, but to use
only the setenv(3), unsetenv(3), and
putenv(3) functions, or assignment to
environ itself, to manipulate the process environment.
This constraint allows the implementation to properly manage the memory it
allocates. This enables the implementation to free any space it has
allocated to strings (and perhaps the pointers to them) stored in
environ when unsetenv(3) is called. A C
runtime start-up procedure (that which invokes
main () and perhaps
initializes environ) can also initialize a flag indicating
that none of the environment has yet been copied to allocated storage, or
that the separate table has not yet been initialized. If the application
switches to a complete new environment by assigning a new value to
environ, this can be detected by
getenv (), setenv(3),
unsetenv(3), or putenv(3) and the
implementation can at that point reinitialize based on the new environment.
(This may include copying the environment strings into a new array and
assigning environ to point to it.)
In fact, for higher performance of getenv
(), implementations that do not provide putenv(3) could
also maintain a separate copy of the environment in a data structure that
could be searched much more quickly (such as an indexed hash table, or a
binary tree), and update both it and the linear list at
environ when setenv(3) or
unsetenv(3) is invoked. On implementations that do provide
putenv(3), such a copy might still be worthwhile but would
need to allow for the fact that applications can directly modify the content
of environment strings added with putenv(3). For example,
if an environment string found by searching the copy is one that was added
using putenv(3), the implementation would need to check
that the string in environ still has the same name (and
value, if the copy includes values), and whenever searching the copy
produces no match the implementation would then need to search each
environment string in environ that was added using
putenv(3) in case any of them have changed their names and
now match. Thus, each use of putenv(3) to add to the
environment would reduce the speed advantage of having the copy.
Performance of getenv ()
can be important for applications which have large numbers of environment
variables. Typically, applications like this use the environment as a
resource database of user-configurable parameters. The fact that these
variables are in the user's shell environment usually means that any other
program that uses environment variables (such as ls(1),
which attempts to use
COLUMNS), or
really almost any utility (
LANG,
LC_ALL,
and so on) is similarly slowed down by the linear search through the
variables.
An implementation that maintains separate data structures, or even one that manages the memory it consumes, is not currently required as it was thought it would reduce consensus among implementors who do not want to change their historical implementations.
FUTURE DIRECTIONS
A future version may add one or more functions to access and modify the environment in a thread-safe manner.
SEE ALSO
exec(3), putenv(3), setenv(3), unsetenv(3)
XBD V1_chap08(7), <stdlib.h>
CHANGE HISTORY
First released in Issue 1. Derived from Issue 1 of the SVID.
Issue 5
Normative text previously in the APPLICATION USAGE section is moved to the RETURN VALUE section.
A note indicating that this function need not be reentrant is added to the DESCRIPTION.
Issue 6
The following changes were made to align with the IEEE P1003.1a draft standard:
- References added to the new setenv(3) and unsetenv(3) functions.
The normative text is updated to avoid use of the term "must" for application requirements.
Issue 7
Austin Group Interpretation 1003.1-2001 #062 is applied, clarifying that a call to putenv(3) may also cause the string to be overwritten.
Austin Group Interpretation 1003.1-2001 #148 is applied, adding the FUTURE DIRECTIONS.
Austin Group Interpretation 1003.1-2001 #156 is applied.
POSIX.1-2008, Technical Corrigendum 1, XSH/TC1-2008/0238 [75,428], XSH/TC1-2008/0239 [167], and XSH/TC1-2008/0240 [167] are applied.
POSIX.1-2008, Technical Corrigendum 2, XSH/TC2-2008/0157 [656] is applied.