diff options
Diffstat (limited to 'src/lib/libc/stdlib/getenv.3')
-rw-r--r-- | src/lib/libc/stdlib/getenv.3 | 136 |
1 files changed, 82 insertions, 54 deletions
diff --git a/src/lib/libc/stdlib/getenv.3 b/src/lib/libc/stdlib/getenv.3 index 411eb35da4..9da27ec11c 100644 --- a/src/lib/libc/stdlib/getenv.3 +++ b/src/lib/libc/stdlib/getenv.3 | |||
@@ -1,5 +1,5 @@ | |||
1 | .\" Copyright (c) 1988, 1991 The Regents of the University of California. | 1 | .\" Copyright (c) 1988, 1991, 1993 |
2 | .\" All rights reserved. | 2 | .\" The Regents of the University of California. All rights reserved. |
3 | .\" | 3 | .\" |
4 | .\" This code is derived from software contributed to Berkeley by | 4 | .\" This code is derived from software contributed to Berkeley by |
5 | .\" the American National Standards Committee X3, on Information | 5 | .\" the American National Standards Committee X3, on Information |
@@ -13,11 +13,7 @@ | |||
13 | .\" 2. Redistributions in binary form must reproduce the above copyright | 13 | .\" 2. Redistributions in binary form must reproduce the above copyright |
14 | .\" notice, this list of conditions and the following disclaimer in the | 14 | .\" notice, this list of conditions and the following disclaimer in the |
15 | .\" documentation and/or other materials provided with the distribution. | 15 | .\" documentation and/or other materials provided with the distribution. |
16 | .\" 3. All advertising materials mentioning features or use of this software | 16 | .\" 3. Neither the name of the University nor the names of its contributors |
17 | .\" must display the following acknowledgement: | ||
18 | .\" This product includes software developed by the University of | ||
19 | .\" California, Berkeley and its contributors. | ||
20 | .\" 4. Neither the name of the University nor the names of its contributors | ||
21 | .\" may be used to endorse or promote products derived from this software | 17 | .\" may be used to endorse or promote products derived from this software |
22 | .\" without specific prior written permission. | 18 | .\" without specific prior written permission. |
23 | .\" | 19 | .\" |
@@ -33,10 +29,9 @@ | |||
33 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
34 | .\" SUCH DAMAGE. | 30 | .\" SUCH DAMAGE. |
35 | .\" | 31 | .\" |
36 | .\" from: @(#)getenv.3 6.11 (Berkeley) 6/29/91 | 32 | .\" $OpenBSD: getenv.3,v 1.16 2011/04/27 13:40:15 otto Exp $ |
37 | .\" $Id: getenv.3,v 1.1.1.1 1995/10/18 08:42:17 deraadt Exp $ | ||
38 | .\" | 33 | .\" |
39 | .Dd June 29, 1991 | 34 | .Dd $Mdocdate: April 27 2011 $ |
40 | .Dt GETENV 3 | 35 | .Dt GETENV 3 |
41 | .Os | 36 | .Os |
42 | .Sh NAME | 37 | .Sh NAME |
@@ -52,82 +47,109 @@ | |||
52 | .Ft int | 47 | .Ft int |
53 | .Fn setenv "const char *name" "const char *value" "int overwrite" | 48 | .Fn setenv "const char *name" "const char *value" "int overwrite" |
54 | .Ft int | 49 | .Ft int |
55 | .Fn putenv "const char *string" | 50 | .Fn putenv "char *string" |
56 | .Ft void | 51 | .Ft int |
57 | .Fn unsetenv "const char *name" | 52 | .Fn unsetenv "const char *name" |
58 | .Sh DESCRIPTION | 53 | .Sh DESCRIPTION |
59 | These functions set, unset and fetch environment variables from the | 54 | These functions set, unset, and fetch environment variables from the host |
60 | host | ||
61 | .Em environment list . | 55 | .Em environment list . |
62 | For compatibility with differing environment conventions, | 56 | For compatibility with differing environment conventions, the given argument |
63 | the given arguments | 57 | .Fa name |
64 | .Ar name | 58 | may be appended with an equal sign |
59 | .Dq Li \&= | ||
60 | followed by zero or more characters, | ||
65 | and | 61 | and |
66 | .Ar value | 62 | .Fa value |
67 | may be appended and prepended, | 63 | may be prepended with an equal sign. |
68 | respectively, | ||
69 | with an equal sign | ||
70 | .Dq Li \&= . | ||
71 | .Pp | 64 | .Pp |
72 | The | 65 | The |
73 | .Fn getenv | 66 | .Fn getenv |
74 | function obtains the current value of the environment variable, | 67 | function obtains the current value of the environment variable |
75 | .Ar name . | 68 | .Fa name . |
76 | If the variable | 69 | If the variable |
77 | .Ar name | 70 | .Fa name |
78 | is not in the current environment , | 71 | is not in the current environment, a null pointer is returned. |
79 | a null pointer is returned. | ||
80 | .Pp | 72 | .Pp |
81 | The | 73 | The |
82 | .Fn setenv | 74 | .Fn setenv |
83 | function inserts or resets the environment variable | 75 | function inserts or resets the environment variable |
84 | .Ar name | 76 | .Fa name |
85 | in the current environment list. | 77 | in the current environment list. |
86 | If the variable | 78 | If the variable |
87 | .Ar name | 79 | .Fa name |
88 | does not exist in the list, | 80 | does not exist in the list, it is inserted with the given |
89 | it is inserted with the given | 81 | .Fa value . |
90 | .Ar value. | ||
91 | If the variable does exist, the argument | 82 | If the variable does exist, the argument |
92 | .Ar overwrite | 83 | .Fa overwrite |
93 | is tested; if | 84 | is tested; if |
94 | .Ar overwrite is | 85 | .Fa overwrite |
95 | zero, the | 86 | is zero, the variable is not reset, otherwise it is reset to the given |
96 | variable is not reset, otherwise it is reset | 87 | .Fa value . |
97 | to the given | ||
98 | .Ar value . | ||
99 | .Pp | 88 | .Pp |
100 | The | 89 | The |
101 | .Fn putenv | 90 | .Fn putenv |
102 | function takes an argument of the form ``name=value'' and is | 91 | function takes an argument of the form |
103 | equivalent to: | 92 | .Ar name Ns = Ns Ar value . |
104 | .Bd -literal -offset indent | 93 | The memory pointed to by |
105 | setenv(name, value, 1); | 94 | .Ar string |
106 | .Ed | 95 | becomes part of the environment and must not be deallocated by the caller. |
96 | If the variable already exists, it will be overwritten. | ||
97 | A common source of bugs is to pass a | ||
98 | .Ar string | ||
99 | argument that is a locally scoped string buffer. | ||
100 | This will result in corruption of the environment after leaving | ||
101 | the scope in which the variable is defined. | ||
102 | For this reason, the | ||
103 | .Fn setenv | ||
104 | function is preferred over | ||
105 | .Fn putenv . | ||
107 | .Pp | 106 | .Pp |
108 | The | 107 | The |
109 | .Fn unsetenv | 108 | .Fn unsetenv |
110 | function | 109 | function deletes all instances of the variable name pointed to by |
111 | deletes all instances of the variable name pointed to by | ||
112 | .Fa name | 110 | .Fa name |
113 | from the list. | 111 | from the list. |
114 | .Sh RETURN VALUES | 112 | .Sh RETURN VALUES |
115 | The functions | 113 | These functions |
116 | .Fn setenv | ||
117 | and | ||
118 | .Fn putenv | ||
119 | return zero if successful; otherwise the global variable | 114 | return zero if successful; otherwise the global variable |
120 | .Va errno | 115 | .Va errno |
121 | is set to indicate the error and a | 116 | is set to indicate the error and \-1 is returned. |
122 | \-1 is returned. | 117 | .Pp |
118 | If | ||
119 | .Fn getenv | ||
120 | is successful, the string returned should be considered read-only. | ||
123 | .Sh ERRORS | 121 | .Sh ERRORS |
124 | .Bl -tag -width Er | 122 | .Bl -tag -width Er |
123 | .It Bq Er EINVAL | ||
124 | The | ||
125 | .Fn setenv | ||
126 | or | ||
127 | .Fn unsetenv | ||
128 | function was passed a | ||
129 | .Ar name | ||
130 | containing an | ||
131 | .Sq = | ||
132 | character. | ||
133 | .Pp | ||
134 | The | ||
135 | .Fn unsetenv | ||
136 | function was passed an empty | ||
137 | .Ar name | ||
138 | or a NULL pointer. | ||
139 | .Pp | ||
140 | The | ||
141 | .Fn putenv | ||
142 | function was passed a | ||
143 | .Ar string | ||
144 | that did not contain an | ||
145 | .Sq = | ||
146 | character. | ||
125 | .It Bq Er ENOMEM | 147 | .It Bq Er ENOMEM |
126 | The function | 148 | The |
127 | .Fn setenv | 149 | .Fn setenv |
128 | or | 150 | or |
129 | .Fn putenv | 151 | .Fn putenv |
130 | failed because they were unable to allocate memory for the environment. | 152 | function failed because it was unable to allocate memory for the environment. |
131 | .El | 153 | .El |
132 | .Sh SEE ALSO | 154 | .Sh SEE ALSO |
133 | .Xr csh 1 , | 155 | .Xr csh 1 , |
@@ -140,12 +162,18 @@ The | |||
140 | function conforms to | 162 | function conforms to |
141 | .St -ansiC . | 163 | .St -ansiC . |
142 | .Sh HISTORY | 164 | .Sh HISTORY |
165 | The function | ||
166 | .Fn getenv | ||
167 | appeared in | ||
168 | .At v7 | ||
169 | and | ||
170 | .Bx 3 . | ||
143 | The functions | 171 | The functions |
144 | .Fn setenv | 172 | .Fn setenv |
145 | and | 173 | and |
146 | .Fn unsetenv | 174 | .Fn unsetenv |
147 | appeared in | 175 | appeared in |
148 | .At v7 . | 176 | .Bx 4.3 Tahoe . |
149 | The | 177 | The |
150 | .Fn putenv | 178 | .Fn putenv |
151 | function appeared in | 179 | function appeared in |