summaryrefslogtreecommitdiffstats
path: root/share/man/man9/getenv.9
blob: a530ca4ee2222464c6b9855696dff66fa0ea3d32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
.\" -*- nroff -*-
.\"
.\" Copyright (c) 2013 Hudson River Trading LLC
.\" Written by: John H. Baldwin <jhb@FreeBSD.org>
.\" All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\"    notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\"    notice, this list of conditions and the following disclaimer in the
.\"    documentation and/or other materials provided with the distribution.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
.\" $FreeBSD$
.\"
.Dd October 22, 2013
.Dt GETENV 9
.Os
.Sh NAME
.Nm freeenv ,
.Nm getenv ,
.Nm getenv_int ,
.Nm getenv_long ,
.Nm getenv_string ,
.Nm getenv_quad ,
.Nm getenv_uint ,
.Nm getenv_ulong ,
.Nm setenv ,
.Nm testenv ,
.Nm unsetenv
.Nd kernel environment variable functions
.Sh SYNOPSIS
.In sys/param.h
.In sys/systm.h
.Ft void
.Fn freeenv "char *env"
.Ft char *
.Fn getenv "const char *name"
.Ft int
.Fn getenv_int "const char *name" "int *data"
.Ft int
.Fn getenv_long "const char *name" "long *data"
.Ft int
.Fn getenv_string "const char *name" "char *data" "int size"
.Ft int
.Fn getenv_quad "const char *name" "quad_t *data"
.Ft int
.Fn getenv_uint "const char *name" "unsigned int *data"
.Ft int
.Fn getenv_ulong "const char *name" "unsigned long *data"
.Ft int
.Fn setenv "const char *name" "const char *value"
.Ft int
.Fn testenv "const char *name"
.Ft int
.Fn unsetenv "const char *name"
.Sh DESCRIPTION
These functions set, unset, fetch, and parse variables from the kernel's
environment.
.Pp
The
.Fn getenv
function obtains the current value of the kernel environment variable
.Fa name
and returns a pointer to the string value.
The caller should not modify the string pointed to by the return value.
.Pp
The
.Fn getenv
function may allocate temporary storage,
so the
.Fn freeenv
function must be called to release any allocated resources when the value
returned by
.Fn getenv
is no longer needed.
The
.Fa env
argument passed to
.Fn freeenv
is the pointer returned by the earlier call to
.Fn getenv .
.Pp
The
.Fn setenv
function inserts or resets the kernel environment variable
.Fa name
to
.Fa value .
If the variable
.Fa name
already exists,
its value is replaced.
This function can fail if an internal limit on the number of environment
variables is exceeded.
.Pp
The
.Fn unsetenv
function deletes the kernel environment variable
.Fa name .
.Pp
The
.Fn testenv
function is used to determine if a kernel environment variable exists.
It returns a non-zero value if the variable
.Fa name
exists and zero if it does not.
.Pp
The
.Fn getenv_int ,
.Fn getenv_long ,
.Fn getenv_quad ,
.Fn getenv_uint ,
and
.Fn getenv_ulong
functions look for a kernel environment variable
.Fa name
and parse it as a signed integer,
long integer,
signed 64-bit integer,
unsigned integer,
or an unsigned long integer,
respectively.
These functions fail and return zero if
.Fa name
does not exist or if any invalid characters are present in its value.
On success,
these function store the parsed value in the integer variable pointed to
by
.Fa data .
If the parsed value overflows the integer type,
a truncated value is stored in
.Fa data
and zero is returned.
If the value begins with a prefix of
.Dq 0x
it is interpreted as hexadecimal.
If it begins with a prefix of
.Dq 0
it is interpreted as octal.
Otherwise,
the value is interpreted as decimal.
The value may contain a single character suffix specifying a unit for
the value.
The interpreted value is multipled by the unit's magnitude before being returned.
The following unit suffixes are supported:
.Bl -column -offset indent ".Sy Unit" ".Sy Magnitude"
.It Sy Unit Ta Sy Magnitude
.It k Ta 2^10
.It m Ta 2^20
.It g Ta 2^30
.It t Ta 2^40
.El
.Pp
The
.Fn getenv_string
function stores a copy of the kernel environment variable
.Fa name
in the buffer described by
.Fa data
and
.Fa size.
If the variable does not exist,
zero is returned.
If the variable exists,
up to
.Fa size - 1
characters of it's value are copied to the buffer pointed to by
.Fa data
followed by a null character and a non-zero value is returned.
.Sh RETURN VALUES
The
.Fn getenv
function returns a pointer to an environment variable's value on success or
.Dv NULL
if the variable does not exist.
.Pp
The
.Fn setenv
and
.Fn unsetenv
functions return zero on success and -1 on failure.
.Pp
The
.Fn testenv
function returns zero if the specified environment variable does not exist and
a non-zero value if it does exist.
The
.Fn getenv_int ,
.Fn getenv_long ,
.Fn getenv_string ,
.Fn getenv_quad ,
.Fn getenv_uint ,
and
.Fn getenv_ulong
functions return a non-zero value on success and zero on failure.
OpenPOWER on IntegriCloud