1 .\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
2 .\" and Copyright (C) 2007, 2012 Michael Kerrisk <mtk.manpages@gmail.com>
4 .\" %%%LICENSE_START(VERBATIM)
5 .\" Permission is granted to make and distribute verbatim copies of this
6 .\" manual provided the copyright notice and this permission notice are
7 .\" preserved on all copies.
9 .\" Permission is granted to copy and distribute modified versions of this
10 .\" manual under the conditions for verbatim copying, provided that the
11 .\" entire resulting derived work is distributed under the terms of a
12 .\" permission notice identical to this one.
14 .\" Since the Linux kernel and libraries are constantly changing, this
15 .\" manual page may be incorrect or out-of-date. The author(s) assume no
16 .\" responsibility for errors or omissions, or for damages resulting from
17 .\" the use of the information contained herein. The author(s) may not
18 .\" have taken the same level of care in the production of this manual,
19 .\" which is licensed free of charge, as they might when working
22 .\" Formatted or processed versions of this manual, if unaccompanied by
23 .\" the source, must acknowledge the copyright and authors of this work.
26 .\" References consulted:
27 .\" Linux libc source code
28 .\" Lewine's "POSIX Programmer's Guide" (O'Reilly & Associates, 1991)
30 .\" Modified Sat Jul 24 19:30:29 1993 by Rik Faith (faith@cs.unc.edu)
31 .\" Modified Fri Feb 14 21:47:50 1997 by Andries Brouwer (aeb@cwi.nl)
33 .TH GETENV 3 2021-03-22 "GNU" "Linux Programmer's Manual"
35 getenv, secure_getenv \- get an environment variable
38 .B #include <stdlib.h>
40 .BI "char *getenv(const char *" name );
41 .BI "char *secure_getenv(const char *" name );
45 Feature Test Macro Requirements for glibc (see
46 .BR feature_test_macros (7)):
56 function searches the environment list to find the
59 and returns a pointer to the corresponding
67 except that it returns NULL in cases where "secure execution" is required.
68 Secure execution is required if one of the following conditions
69 was true when the program run by the calling process was loaded:
71 the process's effective user ID did not match its real user ID or
72 the process's effective group ID did not match its real group ID
73 (typically this is the result of executing a set-user-ID or
74 set-group-ID program);
76 the effective capability bit was set on the executable file; or
78 the process has a nonempty permitted capability set.
80 Secure execution may also be required if triggered
81 by some Linux security modules.
85 function is intended for use in general-purpose libraries
86 to avoid vulnerabilities that could occur if
87 set-user-ID or set-group-ID programs accidentally
88 trusted the environment.
92 function returns a pointer to the value in the
93 environment, or NULL if there is no match.
96 first appeared in glibc 2.17.
98 For an explanation of the terms used in this section, see
106 Interface Attribute Value
110 T} Thread safety MT-Safe env
117 POSIX.1-2001, POSIX.1-2008, C89, C99, SVr4, 4.3BSD.
122 The strings in the environment list are of the form \fIname=value\fP.
124 As typically implemented,
126 returns a pointer to a string within the environment list.
127 The caller must take care not to modify this string,
128 since that would change the environment of the process.
130 The implementation of
132 is not required to be reentrant.
133 The string pointed to by the return value of
135 may be statically allocated,
136 and can be modified by a subsequent call to
143 The "secure execution" mode of
147 flag contained in the auxiliary vector passed from the kernel to user space.
154 .BR capabilities (7),