1 .\" $NetBSD: pathconf.2,v 1.2 1995/02/27 12:35:22 cgd Exp $
4 .\" The Regents of the University of California. All rights reserved.
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\" notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\" notice, this list of conditions and the following disclaimer in the
13 .\" documentation and/or other materials provided with the distribution.
14 .\" 3. All advertising materials mentioning features or use of this software
15 .\" must display the following acknowledgement:
16 .\" This product includes software developed by the University of
17 .\" California, Berkeley and its contributors.
18 .\" 4. Neither the name of the University nor the names of its contributors
19 .\" may be used to endorse or promote products derived from this software
20 .\" without specific prior written permission.
22 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 .\" @(#)pathconf.2 8.1 (Berkeley) 6/4/93
42 .Nd get configurable pathname variables
44 .Fd #include <unistd.h>
52 .Fa "const char *path"
61 functions provides a method for applications to determine the current
62 value of a configurable system limit or option variable associated
63 with a pathname or file descriptor.
69 argument is the name of a file or directory.
74 argument is an open file descriptor.
77 argument specifies the system variable to be queried.
78 Symbolic constants for each name value are found in the include file
81 The available values are as follows:
83 .Bl -tag -width "123456"
86 The maximum file link count.
88 The maximum number of bytes in terminal canonical input line.
90 The minimum maximum number of bytes for which space is available in
91 a terminal input queue.
93 The maximum number of bytes in a file name.
95 The maximum number of bytes in a pathname.
97 The maximum number of bytes which will be written atomically to a pipe.
98 .It Li _PC_CHOWN_RESTRICTED
99 Return 1 if appropriate privileges are required for the
101 system call, otherwise 0.
103 Return 1 if file names longer than KERN_NAME_MAX are truncated.
105 Returns the terminal character disabling value.
112 is not successful, \-1 is returned and
114 is set appropriately.
115 Otherwise, if the variable is associated with functionality that does
116 not have a limit in the system, \-1 is returned and
119 Otherwise, the current variable value is returned.
121 If any of the following conditions occur, the
125 functions shall return -1 and set
127 to the corresponding value.
128 .Bl -tag -width ENAMETOOLONGAA
136 The implementation does not support an association of the variable
137 name with the associated file.
142 .Bl -tag -width ENAMETOOLONGAA
145 Search permission is denied for a component of the path prefix.
148 An I/O error occurs while reading from or writing to the file system.
151 Too many symbolic links are encountered in translating the pathname.
152 This is taken to be indicative of a looping symbolic link.
154 .It Bq Er ENAMETOOLONG
155 A component of a pathname exceeded 255 characters,
156 or an entire path name exceeded 1023 characters.
159 The named file does not exist.
162 A component of the path prefix is not a directory.
165 .Bl -tag -width ENAMETOOLONGAA
171 is not a valid open file descriptor.
174 An I/O error occurs while reading from or writing to the file system.
183 functions first appeared in 4.4BSD.