sysctl.c revision 1.6 1 /* $NetBSD: sysctl.c,v 1.6 1997/07/21 14:07:36 jtc Exp $ */
2
3 /*-
4 * Copyright (c) 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
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. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by the University of
18 * California, Berkeley and its contributors.
19 * 4. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 */
35
36 #include <sys/cdefs.h>
37 #if defined(LIBC_SCCS) && !defined(lint)
38 #if 0
39 static char sccsid[] = "@(#)sysctl.c 8.2 (Berkeley) 1/4/94";
40 #else
41 __RCSID("$NetBSD: sysctl.c,v 1.6 1997/07/21 14:07:36 jtc Exp $");
42 #endif
43 #endif /* LIBC_SCCS and not lint */
44
45 #include "namespace.h"
46 #include <sys/param.h>
47 #include <sys/sysctl.h>
48
49 #include <errno.h>
50 #include <limits.h>
51 #include <paths.h>
52 #include <stdio.h>
53 #include <string.h>
54 #include <unistd.h>
55 #include "extern.h"
56
57 #ifdef __weak_alias
58 __weak_alias(sysctl,_sysctl);
59 #endif
60
61 int
62 sysctl(name, namelen, oldp, oldlenp, newp, newlen)
63 int *name;
64 u_int namelen;
65 void *oldp, *newp;
66 size_t *oldlenp, newlen;
67 {
68 if (name[0] != CTL_USER)
69 return (__sysctl(name, namelen, oldp, oldlenp, newp, newlen));
70
71 if (newp != NULL) {
72 errno = EPERM;
73 return (-1);
74 }
75 if (namelen != 2) {
76 errno = EINVAL;
77 return (-1);
78 }
79
80 switch (name[1]) {
81 case USER_CS_PATH:
82 if (oldp && *oldlenp < sizeof(_PATH_STDPATH))
83 return (ENOMEM);
84 *oldlenp = sizeof(_PATH_STDPATH);
85 if (oldp != NULL)
86 memmove(oldp, _PATH_STDPATH, sizeof(_PATH_STDPATH));
87 return (0);
88 }
89
90 if (oldp && *oldlenp < sizeof(int))
91 return (ENOMEM);
92 *oldlenp = sizeof(int);
93 if (oldp == NULL)
94 return (0);
95
96 switch (name[1]) {
97 case USER_BC_BASE_MAX:
98 *(int *)oldp = BC_BASE_MAX;
99 return (0);
100 case USER_BC_DIM_MAX:
101 *(int *)oldp = BC_DIM_MAX;
102 return (0);
103 case USER_BC_SCALE_MAX:
104 *(int *)oldp = BC_SCALE_MAX;
105 return (0);
106 case USER_BC_STRING_MAX:
107 *(int *)oldp = BC_STRING_MAX;
108 return (0);
109 case USER_COLL_WEIGHTS_MAX:
110 *(int *)oldp = COLL_WEIGHTS_MAX;
111 return (0);
112 case USER_EXPR_NEST_MAX:
113 *(int *)oldp = EXPR_NEST_MAX;
114 return (0);
115 case USER_LINE_MAX:
116 *(int *)oldp = LINE_MAX;
117 return (0);
118 case USER_RE_DUP_MAX:
119 *(int *)oldp = RE_DUP_MAX;
120 return (0);
121 case USER_POSIX2_VERSION:
122 *(int *)oldp = _POSIX2_VERSION;
123 return (0);
124 case USER_POSIX2_C_BIND:
125 #ifdef POSIX2_C_BIND
126 *(int *)oldp = 1;
127 #else
128 *(int *)oldp = 0;
129 #endif
130 return (0);
131 case USER_POSIX2_C_DEV:
132 #ifdef POSIX2_C_DEV
133 *(int *)oldp = 1;
134 #else
135 *(int *)oldp = 0;
136 #endif
137 return (0);
138 case USER_POSIX2_CHAR_TERM:
139 #ifdef POSIX2_CHAR_TERM
140 *(int *)oldp = 1;
141 #else
142 *(int *)oldp = 0;
143 #endif
144 return (0);
145 case USER_POSIX2_FORT_DEV:
146 #ifdef POSIX2_FORT_DEV
147 *(int *)oldp = 1;
148 #else
149 *(int *)oldp = 0;
150 #endif
151 return (0);
152 case USER_POSIX2_FORT_RUN:
153 #ifdef POSIX2_FORT_RUN
154 *(int *)oldp = 1;
155 #else
156 *(int *)oldp = 0;
157 #endif
158 return (0);
159 case USER_POSIX2_LOCALEDEF:
160 #ifdef POSIX2_LOCALEDEF
161 *(int *)oldp = 1;
162 #else
163 *(int *)oldp = 0;
164 #endif
165 return (0);
166 case USER_POSIX2_SW_DEV:
167 #ifdef POSIX2_SW_DEV
168 *(int *)oldp = 1;
169 #else
170 *(int *)oldp = 0;
171 #endif
172 return (0);
173 case USER_POSIX2_UPE:
174 #ifdef POSIX2_UPE
175 *(int *)oldp = 1;
176 #else
177 *(int *)oldp = 0;
178 #endif
179 return (0);
180 case USER_STREAM_MAX:
181 *(int *)oldp = FOPEN_MAX;
182 return (0);
183 case USER_TZNAME_MAX:
184 *(int *)oldp = NAME_MAX;
185 return (0);
186 default:
187 errno = EINVAL;
188 return (-1);
189 }
190 /* NOTREACHED */
191 }
192