xref: /freebsd/usr.bin/getconf/getconf.c (revision 5e3934b15a2741b2de6b217e77dc9d798d740804)
18c6bd995SGarrett Wollman /*
28c6bd995SGarrett Wollman  * Copyright 2000 Massachusetts Institute of Technology
38c6bd995SGarrett Wollman  *
48c6bd995SGarrett Wollman  * Permission to use, copy, modify, and distribute this software and
58c6bd995SGarrett Wollman  * its documentation for any purpose and without fee is hereby
68c6bd995SGarrett Wollman  * granted, provided that both the above copyright notice and this
78c6bd995SGarrett Wollman  * permission notice appear in all copies, that both the above
88c6bd995SGarrett Wollman  * copyright notice and this permission notice appear in all
98c6bd995SGarrett Wollman  * supporting documentation, and that the name of M.I.T. not be used
108c6bd995SGarrett Wollman  * in advertising or publicity pertaining to distribution of the
118c6bd995SGarrett Wollman  * software without specific, written prior permission.  M.I.T. makes
128c6bd995SGarrett Wollman  * no representations about the suitability of this software for any
138c6bd995SGarrett Wollman  * purpose.  It is provided "as is" without express or implied
148c6bd995SGarrett Wollman  * warranty.
158c6bd995SGarrett Wollman  *
168c6bd995SGarrett Wollman  * THIS SOFTWARE IS PROVIDED BY M.I.T. ``AS IS''.  M.I.T. DISCLAIMS
178c6bd995SGarrett Wollman  * ALL EXPRESS OR IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE,
188c6bd995SGarrett Wollman  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
198c6bd995SGarrett Wollman  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT
208c6bd995SGarrett Wollman  * SHALL M.I.T. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
218c6bd995SGarrett Wollman  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
228c6bd995SGarrett Wollman  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
238c6bd995SGarrett Wollman  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
248c6bd995SGarrett Wollman  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
258c6bd995SGarrett Wollman  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
268c6bd995SGarrett Wollman  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
278c6bd995SGarrett Wollman  * SUCH DAMAGE.
288c6bd995SGarrett Wollman  */
298c6bd995SGarrett Wollman 
308c6bd995SGarrett Wollman #include <sys/types.h>
318c6bd995SGarrett Wollman 
328c6bd995SGarrett Wollman #include <err.h>
338c6bd995SGarrett Wollman #include <errno.h>
34dda1cfcfSJohn Baldwin #include <stdbool.h>
358c6bd995SGarrett Wollman #include <stdio.h>
368c6bd995SGarrett Wollman #include <stdlib.h>
378c6bd995SGarrett Wollman #include <sysexits.h>
388c6bd995SGarrett Wollman #include <unistd.h>
398c6bd995SGarrett Wollman 
408c6bd995SGarrett Wollman #include "getconf.h"
418c6bd995SGarrett Wollman 
42dda1cfcfSJohn Baldwin static void	do_allsys(void);
43dda1cfcfSJohn Baldwin static void	do_allpath(const char *path);
448c6bd995SGarrett Wollman static void	do_confstr(const char *name, int key);
458c6bd995SGarrett Wollman static void	do_sysconf(const char *name, int key);
468c6bd995SGarrett Wollman static void	do_pathconf(const char *name, int key, const char *path);
478c6bd995SGarrett Wollman 
488c6bd995SGarrett Wollman static void
usage(void)498c6bd995SGarrett Wollman usage(void)
508c6bd995SGarrett Wollman {
517007f3d6STim J. Robbins 	fprintf(stderr,
52dda1cfcfSJohn Baldwin "usage: getconf -a [pathname]\n"
53dda1cfcfSJohn Baldwin "       getconf [-v prog_env] system_var\n"
547007f3d6STim J. Robbins "       getconf [-v prog_env] path_var pathname\n");
558c6bd995SGarrett Wollman 	exit(EX_USAGE);
568c6bd995SGarrett Wollman }
578c6bd995SGarrett Wollman 
588c6bd995SGarrett Wollman int
main(int argc,char ** argv)598c6bd995SGarrett Wollman main(int argc, char **argv)
608c6bd995SGarrett Wollman {
61dda1cfcfSJohn Baldwin 	bool aflag;
62e9cfb9aeSGarrett Wollman 	int c, key, valid;
63e9cfb9aeSGarrett Wollman 	const char *name, *vflag, *alt_path;
64e9cfb9aeSGarrett Wollman 	intmax_t limitval;
65*0840e619SGarrett Wollman 	uintmax_t ulimitval;
668c6bd995SGarrett Wollman 
67dda1cfcfSJohn Baldwin 	aflag = false;
68e9cfb9aeSGarrett Wollman 	vflag = NULL;
69dda1cfcfSJohn Baldwin 	while ((c = getopt(argc, argv, "av:")) != -1) {
708c6bd995SGarrett Wollman 		switch (c) {
71dda1cfcfSJohn Baldwin 		case 'a':
72dda1cfcfSJohn Baldwin 			aflag = true;
73dda1cfcfSJohn Baldwin 			break;
748c6bd995SGarrett Wollman 		case 'v':
758c6bd995SGarrett Wollman 			vflag = optarg;
768c6bd995SGarrett Wollman 			break;
778c6bd995SGarrett Wollman 
788c6bd995SGarrett Wollman 		default:
798c6bd995SGarrett Wollman 			usage();
808c6bd995SGarrett Wollman 		}
818c6bd995SGarrett Wollman 	}
828c6bd995SGarrett Wollman 
83dda1cfcfSJohn Baldwin 	if (aflag) {
84dda1cfcfSJohn Baldwin 		if (vflag != NULL)
85dda1cfcfSJohn Baldwin 			usage();
86dda1cfcfSJohn Baldwin 		if (argv[optind] == NULL)
87dda1cfcfSJohn Baldwin 			do_allsys();
88dda1cfcfSJohn Baldwin 		else
89dda1cfcfSJohn Baldwin 			do_allpath(argv[optind]);
90dda1cfcfSJohn Baldwin 		return (0);
91dda1cfcfSJohn Baldwin 	}
92dda1cfcfSJohn Baldwin 
93e9cfb9aeSGarrett Wollman 	if ((name = argv[optind]) == NULL)
948c6bd995SGarrett Wollman 		usage();
958c6bd995SGarrett Wollman 
96e9cfb9aeSGarrett Wollman 	if (vflag != NULL) {
97e9cfb9aeSGarrett Wollman 		if ((valid = find_progenv(vflag, &alt_path)) == 0)
98e9cfb9aeSGarrett Wollman 			errx(EX_USAGE, "invalid programming environment %s",
99e9cfb9aeSGarrett Wollman 			     vflag);
100e9cfb9aeSGarrett Wollman 		if (valid > 0 && alt_path != NULL) {
101e9cfb9aeSGarrett Wollman 			if (argv[optind + 1] == NULL)
102e9cfb9aeSGarrett Wollman 				execl(alt_path, "getconf", argv[optind],
103e9cfb9aeSGarrett Wollman 				      (char *)NULL);
1048c6bd995SGarrett Wollman 			else
105e9cfb9aeSGarrett Wollman 				execl(alt_path, "getconf", argv[optind],
106e9cfb9aeSGarrett Wollman 				      argv[optind + 1], (char *)NULL);
107e9cfb9aeSGarrett Wollman 
108e9cfb9aeSGarrett Wollman 			err(EX_OSERR, "execl: %s", alt_path);
109e9cfb9aeSGarrett Wollman 		}
110e9cfb9aeSGarrett Wollman 		if (valid < 0)
111e9cfb9aeSGarrett Wollman 			errx(EX_UNAVAILABLE, "environment %s is not available",
112e9cfb9aeSGarrett Wollman 			     vflag);
113e9cfb9aeSGarrett Wollman 	}
114e9cfb9aeSGarrett Wollman 
115e9cfb9aeSGarrett Wollman 	if (argv[optind + 1] == NULL) { /* confstr or sysconf */
116*0840e619SGarrett Wollman 		if ((valid = find_unsigned_limit(name, &ulimitval)) != 0) {
117*0840e619SGarrett Wollman 			if (valid > 0)
118*0840e619SGarrett Wollman 				printf("%" PRIuMAX "\n", ulimitval);
119*0840e619SGarrett Wollman 			else
120*0840e619SGarrett Wollman 				printf("undefined\n");
121*0840e619SGarrett Wollman 			return 0;
122*0840e619SGarrett Wollman 		}
123e9cfb9aeSGarrett Wollman 		if ((valid = find_limit(name, &limitval)) != 0) {
124e9cfb9aeSGarrett Wollman 			if (valid > 0)
12511e3dcb6SGarrett Wollman 				printf("%" PRIdMAX "\n", limitval);
126e9cfb9aeSGarrett Wollman 			else
127e9cfb9aeSGarrett Wollman 				printf("undefined\n");
128e9cfb9aeSGarrett Wollman 
129e9cfb9aeSGarrett Wollman 			return 0;
130e9cfb9aeSGarrett Wollman 		}
131e9cfb9aeSGarrett Wollman 		if ((valid = find_confstr(name, &key)) != 0) {
132e9cfb9aeSGarrett Wollman 			if (valid > 0)
133e9cfb9aeSGarrett Wollman 				do_confstr(name, key);
134e9cfb9aeSGarrett Wollman 			else
135e9cfb9aeSGarrett Wollman 				printf("undefined\n");
136e9cfb9aeSGarrett Wollman 		} else {
137e9cfb9aeSGarrett Wollman 			valid = find_sysconf(name, &key);
138e9cfb9aeSGarrett Wollman 			if (valid > 0) {
139e9cfb9aeSGarrett Wollman 				do_sysconf(name, key);
140e9cfb9aeSGarrett Wollman 			} else if (valid < 0) {
141e9cfb9aeSGarrett Wollman 				printf("undefined\n");
142e9cfb9aeSGarrett Wollman 			} else
1438c6bd995SGarrett Wollman 				errx(EX_USAGE,
1448c6bd995SGarrett Wollman 				     "no such configuration parameter `%s'",
1458c6bd995SGarrett Wollman 				     name);
1468c6bd995SGarrett Wollman 		}
1478c6bd995SGarrett Wollman 	} else {
148e9cfb9aeSGarrett Wollman 		valid = find_pathconf(name, &key);
149e9cfb9aeSGarrett Wollman 		if (valid != 0) {
150e9cfb9aeSGarrett Wollman 			if (valid > 0)
1518c6bd995SGarrett Wollman 				do_pathconf(name, key, argv[optind + 1]);
1528c6bd995SGarrett Wollman 			else
153e9cfb9aeSGarrett Wollman 				printf("undefined\n");
154e9cfb9aeSGarrett Wollman 		} else
1558c6bd995SGarrett Wollman 			errx(EX_USAGE,
1568c6bd995SGarrett Wollman 			     "no such path configuration parameter `%s'",
1578c6bd995SGarrett Wollman 			     name);
1588c6bd995SGarrett Wollman 	}
1598c6bd995SGarrett Wollman 	return 0;
1608c6bd995SGarrett Wollman }
1618c6bd995SGarrett Wollman 
1628c6bd995SGarrett Wollman static void
do_onestr(const char * name,int key)163dda1cfcfSJohn Baldwin do_onestr(const char *name, int key)
164dda1cfcfSJohn Baldwin {
165dda1cfcfSJohn Baldwin 	size_t len;
166dda1cfcfSJohn Baldwin 
167dda1cfcfSJohn Baldwin 	errno = 0;
168dda1cfcfSJohn Baldwin 	len = confstr(key, 0, 0);
169dda1cfcfSJohn Baldwin 	if (len == 0 && errno != 0) {
170dda1cfcfSJohn Baldwin 		warn("confstr: %s", name);
171dda1cfcfSJohn Baldwin 		return;
172dda1cfcfSJohn Baldwin 	}
173dda1cfcfSJohn Baldwin 	printf("%s: ", name);
174dda1cfcfSJohn Baldwin 	if (len == 0)
175dda1cfcfSJohn Baldwin 		printf("undefined\n");
176dda1cfcfSJohn Baldwin 	else {
177dda1cfcfSJohn Baldwin 		char buf[len + 1];
178dda1cfcfSJohn Baldwin 
179dda1cfcfSJohn Baldwin 		confstr(key, buf, len);
180dda1cfcfSJohn Baldwin 		printf("%s\n", buf);
181dda1cfcfSJohn Baldwin 	}
182dda1cfcfSJohn Baldwin }
183dda1cfcfSJohn Baldwin 
184dda1cfcfSJohn Baldwin static void
do_onesys(const char * name,int key)185dda1cfcfSJohn Baldwin do_onesys(const char *name, int key)
186dda1cfcfSJohn Baldwin {
187dda1cfcfSJohn Baldwin 	long value;
188dda1cfcfSJohn Baldwin 
189dda1cfcfSJohn Baldwin 	errno = 0;
190dda1cfcfSJohn Baldwin 	value = sysconf(key);
191dda1cfcfSJohn Baldwin 	if (value == -1 && errno != 0) {
192dda1cfcfSJohn Baldwin 		warn("sysconf: %s", name);
193dda1cfcfSJohn Baldwin 		return;
194dda1cfcfSJohn Baldwin 	}
195dda1cfcfSJohn Baldwin 	printf("%s: ", name);
196dda1cfcfSJohn Baldwin 	if (value == -1)
197dda1cfcfSJohn Baldwin 		printf("undefined\n");
198dda1cfcfSJohn Baldwin 	else
199dda1cfcfSJohn Baldwin 		printf("%ld\n", value);
200dda1cfcfSJohn Baldwin }
201dda1cfcfSJohn Baldwin 
202dda1cfcfSJohn Baldwin static void
do_allsys(void)203dda1cfcfSJohn Baldwin do_allsys(void)
204dda1cfcfSJohn Baldwin {
205dda1cfcfSJohn Baldwin 
206dda1cfcfSJohn Baldwin 	foreach_confstr(do_onestr);
207dda1cfcfSJohn Baldwin 	foreach_sysconf(do_onesys);
208dda1cfcfSJohn Baldwin }
209dda1cfcfSJohn Baldwin 
210dda1cfcfSJohn Baldwin static void
do_onepath(const char * name,int key,const char * path)211dda1cfcfSJohn Baldwin do_onepath(const char *name, int key, const char *path)
212dda1cfcfSJohn Baldwin {
213dda1cfcfSJohn Baldwin 	long value;
214dda1cfcfSJohn Baldwin 
215dda1cfcfSJohn Baldwin 	errno = 0;
216dda1cfcfSJohn Baldwin 	value = pathconf(path, key);
217dda1cfcfSJohn Baldwin 	if (value == -1 && errno != EINVAL && errno != 0)
218dda1cfcfSJohn Baldwin 		warn("pathconf: %s", name);
219dda1cfcfSJohn Baldwin 	printf("%s: ", name);
220dda1cfcfSJohn Baldwin 	if (value == -1)
221dda1cfcfSJohn Baldwin 		printf("undefined\n");
222dda1cfcfSJohn Baldwin 	else
223dda1cfcfSJohn Baldwin 		printf("%ld\n", value);
224dda1cfcfSJohn Baldwin }
225dda1cfcfSJohn Baldwin 
226dda1cfcfSJohn Baldwin static void
do_allpath(const char * path)227dda1cfcfSJohn Baldwin do_allpath(const char *path)
228dda1cfcfSJohn Baldwin {
229dda1cfcfSJohn Baldwin 
230dda1cfcfSJohn Baldwin 	foreach_pathconf(do_onepath, path);
231dda1cfcfSJohn Baldwin }
232dda1cfcfSJohn Baldwin 
233dda1cfcfSJohn Baldwin static void
do_confstr(const char * name,int key)2348c6bd995SGarrett Wollman do_confstr(const char *name, int key)
2358c6bd995SGarrett Wollman {
2368c6bd995SGarrett Wollman 	size_t len;
23737716191SMaxim Konovalov 	int savederr;
2388c6bd995SGarrett Wollman 
23937716191SMaxim Konovalov 	savederr = errno;
24037716191SMaxim Konovalov 	errno = 0;
2418c6bd995SGarrett Wollman 	len = confstr(key, 0, 0);
24237716191SMaxim Konovalov 	if (len == 0) {
24337716191SMaxim Konovalov 		if (errno)
2448c6bd995SGarrett Wollman 			err(EX_OSERR, "confstr: %s", name);
24537716191SMaxim Konovalov 		else
2468c6bd995SGarrett Wollman 			printf("undefined\n");
24737716191SMaxim Konovalov 	} else {
248a272cd3aSMark Murray 		char buf[len + 1];
249a272cd3aSMark Murray 
2508c6bd995SGarrett Wollman 		confstr(key, buf, len);
2518c6bd995SGarrett Wollman 		printf("%s\n", buf);
2528c6bd995SGarrett Wollman 	}
25337716191SMaxim Konovalov 	errno = savederr;
2548c6bd995SGarrett Wollman }
2558c6bd995SGarrett Wollman 
2568c6bd995SGarrett Wollman static void
do_sysconf(const char * name,int key)2578c6bd995SGarrett Wollman do_sysconf(const char *name, int key)
2588c6bd995SGarrett Wollman {
2598c6bd995SGarrett Wollman 	long value;
2608c6bd995SGarrett Wollman 
2618c6bd995SGarrett Wollman 	errno = 0;
2628c6bd995SGarrett Wollman 	value = sysconf(key);
2638c6bd995SGarrett Wollman 	if (value == -1 && errno != 0)
2648c6bd995SGarrett Wollman 		err(EX_OSERR, "sysconf: %s", name);
2658c6bd995SGarrett Wollman 	else if (value == -1)
2668c6bd995SGarrett Wollman 		printf("undefined\n");
2678c6bd995SGarrett Wollman 	else
2688c6bd995SGarrett Wollman 		printf("%ld\n", value);
2698c6bd995SGarrett Wollman }
2708c6bd995SGarrett Wollman 
2718c6bd995SGarrett Wollman static void
do_pathconf(const char * name,int key,const char * path)2728c6bd995SGarrett Wollman do_pathconf(const char *name, int key, const char *path)
2738c6bd995SGarrett Wollman {
2748c6bd995SGarrett Wollman 	long value;
2758c6bd995SGarrett Wollman 
2768c6bd995SGarrett Wollman 	errno = 0;
2778c6bd995SGarrett Wollman 	value = pathconf(path, key);
2788c6bd995SGarrett Wollman 	if (value == -1 && errno != 0)
2798c6bd995SGarrett Wollman 		err(EX_OSERR, "pathconf: %s", name);
2808c6bd995SGarrett Wollman 	else if (value == -1)
2818c6bd995SGarrett Wollman 		printf("undefined\n");
2828c6bd995SGarrett Wollman 	else
2838c6bd995SGarrett Wollman 		printf("%ld\n", value);
2848c6bd995SGarrett Wollman }
285b4b4b530SBaptiste Daroussin 
286