summaryrefslogtreecommitdiff
path: root/lib/libc/gen/confstr.3
blob: 82bde43c2406fe7ffa6df7b3187f64a6139a86ae (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
.\"	$OpenBSD: confstr.3,v 1.20 2014/01/21 03:15:45 schwarze Exp $
.\"
.\" Copyright (c) 1993
.\"	The Regents of the University of California.  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.
.\" 3. Neither the name of the University nor the names of its contributors
.\"    may be used to endorse or promote products derived from this software
.\"    without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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.
.\"
.Dd $Mdocdate: January 21 2014 $
.Dt CONFSTR 3
.Os
.Sh NAME
.Nm confstr
.Nd get string-valued configurable variables
.Sh SYNOPSIS
.In unistd.h
.Ft size_t
.Fn confstr "int name" "char *buf" "size_t len"
.Sh DESCRIPTION
The
.Fn confstr
function provides a method for applications to get configuration
defined string values.
.Pp
The
.Fa name
argument specifies the system variable to be queried.
Symbolic constants for each name value are found in the include file
.In unistd.h .
The
.Fa len
argument specifies the size of the buffer referenced by the
argument
.Fa buf .
If
.Fa len
is non-zero,
.Fa buf
is a non-null pointer, and
.Fa name
has a value; up to
.Fa len
\- 1 bytes of the value are copied into the buffer
.Fa buf .
The copied value is always NUL terminated.
.Pp
The available values are as follows:
.Bl -tag -width "123456" -compact
.It Li _CS_PATH
Return a value for the
.Ev PATH
environment variable that finds all the standard utilities.
.Pp
.It Li _CS_V7_ENV
Return a space separated list of environment variable assignments
(other than
.Ev PATH )
necessary for obtaining a shell environment compliant with
.St -p1003.1-2008 .
.Pp
.It Li _CS_V6_ENV
Return a space separated list of environment variable assignments
(other than
.Ev PATH )
necessary for obtaining a shell environment compliant with
.St -p1003.1-2001 .
.Pp
.It Li _CS_POSIX_V7_THREADS_CFLAGS
Return the compiler flags for compiling objects in a program that
uses multiple threads.
.Pp
.It Li _CS_POSIX_V7_THREADS_LDFLAGS
Return the linker flags for linking an executable that uses multiple
threads.
.Pp
.It Li _CS_POSIX_V7_WIDTH_RESTRICTED_ENVS
.It Li _CS_POSIX_V6_WIDTH_RESTRICTED_ENVS
Return a newline separated list of supported compilation environments
in which none of the following types are wider than type
.Vt long :
.Vt blksize_t , cc_t , mode_t , nfds_t , pid_t , ptrdiff_t , size_t ,
.Vt speed_t , ssize_t , suseconds_t , tcflag_t , wchar_t ,
and
.Vt wint_t .
.Pp
.It Li _CS_POSIX_V7_ILP32_OFFBIG_CFLAGS
.It Li _CS_POSIX_V7_ILP32_OFFBIG_LDFLAGS
.It Li _CS_POSIX_V7_ILP32_OFFBIG_LIBS
.It Li _CS_POSIX_V6_ILP32_OFFBIG_CFLAGS
.It Li _CS_POSIX_V6_ILP32_OFFBIG_LDFLAGS
.It Li _CS_POSIX_V6_ILP32_OFFBIG_LIBS
If
.Fn sysconf _SC_V7_ILP32_OFFBIG
returns a value greater than zero,
return the compiler flags for compiling objects,
the linker flags for linking an executable,
or the linker arguments for additional libraries, respectively,
for a compilation environment with 32-bit
.Vt int , long ,
and
.Vt pointer
types and an
.Vt off_t
type that has a width of at least 64 bits.
Otherwise, the result is unspecified.
.Pp
.It Li _CS_POSIX_V7_LP64_OFF64_CFLAGS
.It Li _CS_POSIX_V7_LP64_OFF64_LDFLAGS
.It Li _CS_POSIX_V7_LP64_OFF64_LIBS
.It Li _CS_POSIX_V6_LP64_OFF64_CFLAGS
.It Li _CS_POSIX_V6_LP64_OFF64_LDFLAGS
.It Li _CS_POSIX_V6_LP64_OFF64_LIBS
If
.Fn sysconf _SC_V7_LP64_OFF64
returns a value greater than zero,
return the compiler flags for compiling objects,
the linker flags for linking an executable,
or the linker arguments for additional libraries, respectively,
for a compilation environment with 64-bit
.Vt int , long , pointer ,
and
.Vt off_t
types.
Otherwise, the result is unspecified.
.Pp
.It Li _CS_POSIX_V7_LPBIG_OFFBIG_CFLAGS
.It Li _CS_POSIX_V7_LPBIG_OFFBIG_LDFLAGS
.It Li _CS_POSIX_V7_LPBIG_OFFBIG_LIBS
.It Li _CS_POSIX_V6_LPBIG_OFFBIG_CFLAGS
.It Li _CS_POSIX_V6_LPBIG_OFFBIG_LDFLAGS
.It Li _CS_POSIX_V6_LPBIG_OFFBIG_LIBS
If
.Fn sysconf _SC_V7_LPBIG_OFFBIG
returns a value greater than zero,
return the compiler flags for compiling objects,
the linker flags for linking an executable,
or the linker arguments for additional libraries, respectively,
for a compilation environment with
.Vt int , long , pointer ,
and
.Vt off_t
types that all have widths of at least 64 bits.
Otherwise, the result is unspecified.
.El
.Sh RETURN VALUES
If the call to
.Nm
is not successful, 0 is returned and
.Va errno
is set appropriately.
Otherwise, if the variable does not have a configuration defined value,
0 is returned and
.Va errno
is not modified.
Otherwise, the buffer size needed to hold the entire configuration-defined
value is returned.
If this size is greater than the argument
.Fa len ,
the string in
.Fa buf
was truncated.
.Sh ERRORS
The
.Nm
function will fail if:
.Bl -tag -width Er
.It Bq Er EINVAL
The value of the
.Fa name
argument is invalid.
.El
.Sh SEE ALSO
.Xr pathconf 2 ,
.Xr sysconf 3
.Sh STANDARDS
The
.Nm
function conforms to
.St -p1003.1-2008 .
.Sh HISTORY
The
.Nm
function first appeared in
.Bx 4.4 .