Initial import of binutils 2.22 on the new vendor branch
[dragonfly.git] / lib / libc / gen / confstr.3
1 .\" Copyright (c) 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 4. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .\"     @(#)confstr.3   8.1 (Berkeley) 6/4/93
29 .\" $FreeBSD: src/lib/libc/gen/confstr.3,v 1.15 2007/01/09 00:27:53 imp Exp $
30 .\" $DragonFly: src/lib/libc/gen/confstr.3,v 1.6 2008/05/02 02:05:03 swildner Exp $
31 .\"
32 .Dd December 6, 2006
33 .Dt CONFSTR 3
34 .Os
35 .Sh NAME
36 .Nm confstr
37 .Nd get string-valued configurable variables
38 .Sh LIBRARY
39 .Lb libc
40 .Sh SYNOPSIS
41 .In unistd.h
42 .Ft size_t
43 .Fn confstr "int name" "char *buf" "size_t len"
44 .Sh DESCRIPTION
45 This interface is specified by
46 .St -p1003.1-2001 .
47 A more flexible (but non-portable) interface is provided by
48 .Xr sysctl 3 .
49 .Pp
50 The
51 .Fn confstr
52 function provides a method for applications to get configuration
53 defined string values.
54 Shell programmers needing access to these parameters should use the
55 .Xr getconf 1
56 utility.
57 .Pp
58 The
59 .Fa name
60 argument specifies the system variable to be queried.
61 Symbolic constants for each name value are found in the include file
62 .In unistd.h .
63 The
64 .Fa len
65 argument specifies the size of the buffer referenced by the
66 argument
67 .Fa buf .
68 If
69 .Fa len
70 is non-zero,
71 .Fa buf
72 is a non-null pointer, and
73 .Fa name
74 has a value, up to
75 .Fa len
76 \- 1 bytes of the value are copied into the buffer
77 .Fa buf .
78 The copied value is always null terminated.
79 .Pp
80 The available values are as follows:
81 .Bl -tag -width 6n
82 .It Li _CS_PATH
83 Return a value for the
84 .Ev PATH
85 environment variable that finds all the standard utilities.
86 .El
87 .Sh RETURN VALUES
88 If the call to
89 .Fn confstr
90 is not successful, 0 is returned and
91 .Va errno
92 is set appropriately.
93 Otherwise, if the variable does not have a configuration defined value,
94 0 is returned and
95 .Va errno
96 is not modified.
97 Otherwise, the buffer size needed to hold the entire configuration-defined
98 value is returned.
99 If this size is greater than the argument
100 .Fa len ,
101 the string in
102 .Fa buf
103 was truncated.
104 .Sh ERRORS
105 The
106 .Fn confstr
107 function may fail and set
108 .Va errno
109 for any of the errors specified for the library functions
110 .Xr malloc 3
111 and
112 .Xr sysctl 3 .
113 .Pp
114 In addition, the following errors may be reported:
115 .Bl -tag -width Er
116 .It Bq Er EINVAL
117 The value of the
118 .Fa name
119 argument is invalid.
120 .El
121 .Sh SEE ALSO
122 .Xr getconf 1 ,
123 .Xr pathconf 2 ,
124 .Xr sysconf 3 ,
125 .Xr sysctl 3
126 .Sh STANDARDS
127 The
128 .Fn confstr
129 function conforms to
130 .St -susv3 .
131 .Sh HISTORY
132 The
133 .Fn confstr
134 function first appeared in
135 .Bx 4.4 .