sysctl.c revision 1.9 1 /* $NetBSD: sysctl.c,v 1.9 1999/09/16 11:45:05 lukem 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.9 1999/09/16 11:45:05 lukem 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 <assert.h>
50 #include <errno.h>
51 #include <limits.h>
52 #include <paths.h>
53 #include <stdio.h>
54 #include <string.h>
55 #include <unistd.h>
56 #include "extern.h"
57
58 #ifdef __weak_alias
59 __weak_alias(sysctl,_sysctl);
60 #endif
61
62 int
63 sysctl(name, namelen, oldp, oldlenp, newp, newlen)
64 int *name;
65 unsigned int namelen;
66 void *oldp;
67 const void *newp;
68 size_t *oldlenp, newlen;
69 {
70
71 _DIAGASSERT(name != NULL);
72 #ifdef _DIAGNOSTIC
73 if (name == NULL) {
74 errno = EFAULT;
75 return (-1);
76 }
77 #endif
78
79 if (name[0] != CTL_USER)
80 /* LINTED will fix when sysctl interface gets corrected */
81 return (__sysctl(name, namelen, oldp, oldlenp,
82 (void *)newp, newlen));
83
84 if (newp != NULL) {
85 errno = EPERM;
86 return (-1);
87 }
88 if (namelen != 2) {
89 errno = EINVAL;
90 return (-1);
91 }
92
93 switch (name[1]) {
94 case USER_CS_PATH:
95 if (oldp && *oldlenp < sizeof(_PATH_STDPATH))
96 return (ENOMEM);
97 *oldlenp = sizeof(_PATH_STDPATH);
98 if (oldp != NULL)
99 memmove(oldp, _PATH_STDPATH, sizeof(_PATH_STDPATH));
100 return (0);
101 }
102
103 if (oldp && *oldlenp < sizeof(int))
104 return (ENOMEM);
105 *oldlenp = sizeof(int);
106 if (oldp == NULL)
107 return (0);
108
109 switch (name[1]) {
110 case USER_BC_BASE_MAX:
111 *(int *)oldp = BC_BASE_MAX;
112 return (0);
113 case USER_BC_DIM_MAX:
114 *(int *)oldp = BC_DIM_MAX;
115 return (0);
116 case USER_BC_SCALE_MAX:
117 *(int *)oldp = BC_SCALE_MAX;
118 return (0);
119 case USER_BC_STRING_MAX:
120 *(int *)oldp = BC_STRING_MAX;
121 return (0);
122 case USER_COLL_WEIGHTS_MAX:
123 *(int *)oldp = COLL_WEIGHTS_MAX;
124 return (0);
125 case USER_EXPR_NEST_MAX:
126 *(int *)oldp = EXPR_NEST_MAX;
127 return (0);
128 case USER_LINE_MAX:
129 *(int *)oldp = LINE_MAX;
130 return (0);
131 case USER_RE_DUP_MAX:
132 *(int *)oldp = RE_DUP_MAX;
133 return (0);
134 case USER_POSIX2_VERSION:
135 *(int *)oldp = _POSIX2_VERSION;
136 return (0);
137 case USER_POSIX2_C_BIND:
138 #ifdef POSIX2_C_BIND
139 *(int *)oldp = 1;
140 #else
141 *(int *)oldp = 0;
142 #endif
143 return (0);
144 case USER_POSIX2_C_DEV:
145 #ifdef POSIX2_C_DEV
146 *(int *)oldp = 1;
147 #else
148 *(int *)oldp = 0;
149 #endif
150 return (0);
151 case USER_POSIX2_CHAR_TERM:
152 #ifdef POSIX2_CHAR_TERM
153 *(int *)oldp = 1;
154 #else
155 *(int *)oldp = 0;
156 #endif
157 return (0);
158 case USER_POSIX2_FORT_DEV:
159 #ifdef POSIX2_FORT_DEV
160 *(int *)oldp = 1;
161 #else
162 *(int *)oldp = 0;
163 #endif
164 return (0);
165 case USER_POSIX2_FORT_RUN:
166 #ifdef POSIX2_FORT_RUN
167 *(int *)oldp = 1;
168 #else
169 *(int *)oldp = 0;
170 #endif
171 return (0);
172 case USER_POSIX2_LOCALEDEF:
173 #ifdef POSIX2_LOCALEDEF
174 *(int *)oldp = 1;
175 #else
176 *(int *)oldp = 0;
177 #endif
178 return (0);
179 case USER_POSIX2_SW_DEV:
180 #ifdef POSIX2_SW_DEV
181 *(int *)oldp = 1;
182 #else
183 *(int *)oldp = 0;
184 #endif
185 return (0);
186 case USER_POSIX2_UPE:
187 #ifdef POSIX2_UPE
188 *(int *)oldp = 1;
189 #else
190 *(int *)oldp = 0;
191 #endif
192 return (0);
193 case USER_STREAM_MAX:
194 *(int *)oldp = FOPEN_MAX;
195 return (0);
196 case USER_TZNAME_MAX:
197 *(int *)oldp = NAME_MAX;
198 return (0);
199 default:
200 errno = EINVAL;
201 return (-1);
202 }
203 /* NOTREACHED */
204 }
205