]>
git.saurik.com Git - apple/libc.git/blob - gen/FreeBSD/sysctl.c
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 4. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 #if defined(LIBC_SCCS) && !defined(lint)
31 static char sccsid
[] = "@(#)sysctl.c 8.2 (Berkeley) 1/4/94";
32 #endif /* LIBC_SCCS and not lint */
33 #include <sys/cdefs.h>
34 __FBSDID("$FreeBSD: src/lib/libc/gen/sysctl.c,v 1.6 2007/01/09 00:27:55 imp Exp $");
36 #include <sys/param.h>
37 #include <sys/sysctl.h>
46 #include "sysctl_internal.h"
50 sysctl(int *name
, u_int namelen
, void *oldp
, size_t *oldlenp
, void *newp
, size_t newlen
)
51 __attribute__((disable_tail_calls
))
53 if (name
[0] != CTL_USER
) {
54 if (namelen
== 2 && name
[0] == CTL_KERN
&& name
[1] == KERN_EXEC
) {
56 * 7723306: intercept kern.exec and fake a return of
57 * a dummy string ("/" in this case)
64 if (oldlenp
!= NULL
) *oldlenp
= 2;
67 if (oldlenp
== NULL
) {
75 memmove(oldp
, "/", 2);
81 int error
= __sysctl(name
, namelen
, oldp
, oldlenp
, newp
, newlen
);
101 if (oldp
&& *oldlenp
< sizeof(_PATH_STDPATH
)) {
105 *oldlenp
= sizeof(_PATH_STDPATH
);
107 memmove(oldp
, _PATH_STDPATH
, sizeof(_PATH_STDPATH
));
111 if (oldp
&& *oldlenp
< sizeof(int)) {
115 *oldlenp
= sizeof(int);
120 case USER_BC_BASE_MAX
:
121 *(int *)oldp
= BC_BASE_MAX
;
123 case USER_BC_DIM_MAX
:
124 *(int *)oldp
= BC_DIM_MAX
;
126 case USER_BC_SCALE_MAX
:
127 *(int *)oldp
= BC_SCALE_MAX
;
129 case USER_BC_STRING_MAX
:
130 *(int *)oldp
= BC_STRING_MAX
;
132 case USER_COLL_WEIGHTS_MAX
:
133 *(int *)oldp
= COLL_WEIGHTS_MAX
;
135 case USER_EXPR_NEST_MAX
:
136 *(int *)oldp
= EXPR_NEST_MAX
;
139 *(int *)oldp
= LINE_MAX
;
141 case USER_RE_DUP_MAX
:
142 *(int *)oldp
= RE_DUP_MAX
;
144 case USER_POSIX2_VERSION
:
145 *(int *)oldp
= _POSIX2_VERSION
;
147 case USER_POSIX2_C_BIND
:
154 case USER_POSIX2_C_DEV
:
161 case USER_POSIX2_CHAR_TERM
:
162 #ifdef POSIX2_CHAR_TERM
168 case USER_POSIX2_FORT_DEV
:
169 #ifdef POSIX2_FORT_DEV
175 case USER_POSIX2_FORT_RUN
:
176 #ifdef POSIX2_FORT_RUN
182 case USER_POSIX2_LOCALEDEF
:
183 #ifdef POSIX2_LOCALEDEF
189 case USER_POSIX2_SW_DEV
:
196 case USER_POSIX2_UPE
:
203 case USER_STREAM_MAX
:
204 *(int *)oldp
= FOPEN_MAX
;
206 case USER_TZNAME_MAX
:
207 *(int *)oldp
= NAME_MAX
;