1 /* $NetBSD: pathconf.c,v 1.7 2004/03/25 19:36:27 atatat Exp $ */
5 * The Regents of the University of California. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the University nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 static char copyright
[] =
34 "@(#) Copyright (c) 1993\n\
35 The Regents of the University of California. All rights reserved.\n";
40 static char sccsid
[] = "@(#)pathconf.c 8.1 (Berkeley) 6/6/93";
42 static char rcsid
[] = "$NetBSD: pathconf.c,v 1.7 2004/03/25 19:36:27 atatat Exp $";
46 #include <sys/param.h>
47 #include <sys/sysctl.h>
48 #include <sys/unistd.h>
57 { "link_max", CTLTYPE_INT }, \
58 { "max_canon", CTLTYPE_INT }, \
59 { "max_input", CTLTYPE_INT }, \
60 { "name_max", CTLTYPE_INT }, \
61 { "path_max", CTLTYPE_INT }, \
62 { "pipe_buf", CTLTYPE_INT }, \
63 { "chown_restricted", CTLTYPE_INT }, \
64 { "no_trunc", CTLTYPE_INT }, \
65 { "vdisable", CTLTYPE_INT }, \
69 struct ctlname pcnames
[] = PC_NAMES
;
76 struct list pclist
= { pcnames
, PC_MAXID
};
78 int Aflag
, aflag
, nflag
, wflag
, stdinflag
;
88 while ((ch
= getopt(argc
, argv
, "Aan")) != -1) {
113 if (strcmp(path
, "-") == 0)
116 if (Aflag
|| aflag
) {
117 listall(path
, &pclist
);
123 parse(path
, *argv
, 1);
128 * List all variables known to the system.
138 for (lvl2
= 0; lvl2
< lp
->size
; lvl2
++) {
139 if (lp
->list
[lvl2
].ctl_name
== 0)
141 parse(path
, lp
->list
[lvl2
].ctl_name
, Aflag
);
146 * Parse a name into an index.
147 * Lookup and print out the attribute if it exists.
149 parse(pathname
, string
, flags
)
155 char *bufp
, buf
[BUFSIZ
];
158 snprintf(buf
, BUFSIZ
, "%s", string
);
159 if ((indx
= findname(string
, "top", &bufp
, &pclist
)) == -1)
162 fprintf(stderr
, "name %s in %s is unknown\n", *bufp
, string
);
166 value
= fpathconf(0, indx
);
168 value
= pathconf(pathname
, indx
);
174 fprintf(stderr
, "%s: value is not available\n", string
);
177 fprintf(stderr
, "%s: specification is incomplete\n",
181 fprintf(stderr
, "%s: type is unknown to this program\n",
190 fprintf(stdout
, "%s = ", string
);
191 fprintf(stdout
, "%d\n", value
);
195 * Scan a list of names searching for a particular name.
197 findname(string
, level
, bufp
, namelist
)
201 struct list
*namelist
;
206 if (namelist
->list
== 0 || (name
= strsep(bufp
, ".")) == NULL
) {
207 fprintf(stderr
, "%s: incomplete specification\n", string
);
210 for (i
= 0; i
< namelist
->size
; i
++)
211 if (namelist
->list
[i
].ctl_name
!= NULL
&&
212 strcmp(name
, namelist
->list
[i
].ctl_name
) == 0)
214 if (i
== namelist
->size
) {
215 fprintf(stderr
, "%s level name %s in %s is invalid\n",
216 level
, name
, string
);
225 (void)fprintf(stderr
, "usage:\t%s\n\t%s\n\t%s\n",
226 "pathname [-n] variable ...",
227 "pathname [-n] -a", "pathname [-n] -A");