]>
Commit | Line | Data |
---|---|---|
1c79356b | 1 | /* |
316670eb | 2 | * Copyright (c) 2000-2011 Apple Inc. All rights reserved. |
5d5c5d0d | 3 | * |
2d21ac55 | 4 | * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ |
1c79356b | 5 | * |
2d21ac55 A |
6 | * This file contains Original Code and/or Modifications of Original Code |
7 | * as defined in and that are subject to the Apple Public Source License | |
8 | * Version 2.0 (the 'License'). You may not use this file except in | |
9 | * compliance with the License. The rights granted to you under the License | |
10 | * may not be used to create, or enable the creation or redistribution of, | |
11 | * unlawful or unlicensed copies of an Apple operating system, or to | |
12 | * circumvent, violate, or enable the circumvention or violation of, any | |
13 | * terms of an Apple operating system software license agreement. | |
8f6c56a5 | 14 | * |
2d21ac55 A |
15 | * Please obtain a copy of the License at |
16 | * http://www.opensource.apple.com/apsl/ and read it before using this file. | |
17 | * | |
18 | * The Original Code and all software distributed under the License are | |
19 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
8f6c56a5 A |
20 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, |
21 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
2d21ac55 A |
22 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. |
23 | * Please see the License for the specific language governing rights and | |
24 | * limitations under the License. | |
8f6c56a5 | 25 | * |
2d21ac55 | 26 | * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ |
1c79356b A |
27 | */ |
28 | /* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */ | |
29 | /*- | |
30 | * Copyright (c) 1982, 1986, 1989, 1993 | |
31 | * The Regents of the University of California. All rights reserved. | |
32 | * | |
33 | * This code is derived from software contributed to Berkeley by | |
34 | * Mike Karels at Berkeley Software Design, Inc. | |
35 | * | |
36 | * Redistribution and use in source and binary forms, with or without | |
37 | * modification, are permitted provided that the following conditions | |
38 | * are met: | |
39 | * 1. Redistributions of source code must retain the above copyright | |
40 | * notice, this list of conditions and the following disclaimer. | |
41 | * 2. Redistributions in binary form must reproduce the above copyright | |
42 | * notice, this list of conditions and the following disclaimer in the | |
43 | * documentation and/or other materials provided with the distribution. | |
44 | * 3. All advertising materials mentioning features or use of this software | |
45 | * must display the following acknowledgement: | |
46 | * This product includes software developed by the University of | |
47 | * California, Berkeley and its contributors. | |
48 | * 4. Neither the name of the University nor the names of its contributors | |
49 | * may be used to endorse or promote products derived from this software | |
50 | * without specific prior written permission. | |
51 | * | |
52 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | |
53 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
54 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
55 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | |
56 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
57 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
58 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
59 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
60 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
61 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
62 | * SUCH DAMAGE. | |
63 | * | |
64 | * @(#)kern_sysctl.c 8.4 (Berkeley) 4/14/94 | |
65 | */ | |
2d21ac55 A |
66 | /* |
67 | * NOTICE: This file was modified by SPARTA, Inc. in 2005 to introduce | |
68 | * support for mandatory and extensible security protections. This notice | |
69 | * is included in support of clause 2.2 (b) of the Apple Public License, | |
70 | * Version 2.0. | |
71 | */ | |
1c79356b A |
72 | |
73 | /* | |
2d21ac55 A |
74 | * DEPRECATED sysctl system call code |
75 | * | |
76 | * Everything in this file is deprecated. Sysctls should be handled | |
77 | * by the code in kern_newsysctl.c. | |
78 | * The remaining "case" sections are supposed to be converted into | |
79 | * SYSCTL_*-style definitions, and as soon as all of them are gone, | |
80 | * this source file is supposed to die. | |
81 | * | |
82 | * DO NOT ADD ANY MORE "case" SECTIONS TO THIS FILE, instead define | |
83 | * your sysctl with SYSCTL_INT, SYSCTL_PROC etc. in your source file. | |
1c79356b A |
84 | */ |
85 | ||
86 | #include <sys/param.h> | |
87 | #include <sys/systm.h> | |
88 | #include <sys/kernel.h> | |
89 | #include <sys/malloc.h> | |
91447636 A |
90 | #include <sys/proc_internal.h> |
91 | #include <sys/kauth.h> | |
92 | #include <sys/file_internal.h> | |
93 | #include <sys/vnode_internal.h> | |
1c79356b A |
94 | #include <sys/unistd.h> |
95 | #include <sys/buf.h> | |
96 | #include <sys/ioctl.h> | |
55e303ae | 97 | #include <sys/namei.h> |
1c79356b A |
98 | #include <sys/tty.h> |
99 | #include <sys/disklabel.h> | |
100 | #include <sys/vm.h> | |
101 | #include <sys/sysctl.h> | |
9bccf70c | 102 | #include <sys/user.h> |
55e303ae | 103 | #include <sys/aio_kern.h> |
2d21ac55 | 104 | #include <sys/reboot.h> |
e5568f75 | 105 | |
b0d623f7 A |
106 | #include <security/audit/audit.h> |
107 | #include <kern/kalloc.h> | |
e5568f75 | 108 | |
1c79356b | 109 | #include <mach/machine.h> |
6d2010ae | 110 | #include <mach/mach_host.h> |
1c79356b A |
111 | #include <mach/mach_types.h> |
112 | #include <mach/vm_param.h> | |
b0d623f7 | 113 | #include <kern/mach_param.h> |
1c79356b | 114 | #include <kern/task.h> |
316670eb | 115 | #include <kern/thread.h> |
6d2010ae | 116 | #include <kern/processor.h> |
b0d623f7 | 117 | #include <kern/debug.h> |
1c79356b | 118 | #include <vm/vm_kern.h> |
91447636 | 119 | #include <vm/vm_map.h> |
1c79356b A |
120 | #include <mach/host_info.h> |
121 | ||
91447636 | 122 | #include <sys/mount_internal.h> |
1c79356b A |
123 | #include <sys/kdebug.h> |
124 | ||
125 | #include <IOKit/IOPlatformExpert.h> | |
126 | #include <pexpert/pexpert.h> | |
127 | ||
55e303ae | 128 | #include <machine/machine_routines.h> |
0c530ab8 | 129 | #include <machine/exec.h> |
1c79356b | 130 | |
91447636 | 131 | #include <vm/vm_protos.h> |
39236c6e | 132 | #include <vm/vm_pageout.h> |
6d2010ae | 133 | #include <sys/imgsrc.h> |
fe8ab488 | 134 | #include <kern/timer_call.h> |
91447636 | 135 | |
b0d623f7 | 136 | #if defined(__i386__) || defined(__x86_64__) |
0c530ab8 A |
137 | #include <i386/cpuid.h> |
138 | #endif | |
139 | ||
316670eb A |
140 | #if CONFIG_FREEZE |
141 | #include <sys/kern_memorystatus.h> | |
142 | #endif | |
143 | ||
39236c6e A |
144 | #if KPERF |
145 | #include <kperf/kperf.h> | |
146 | #endif | |
147 | ||
fe8ab488 A |
148 | #if HYPERVISOR |
149 | #include <kern/hv_support.h> | |
150 | #endif | |
151 | ||
316670eb A |
152 | /* |
153 | * deliberately setting max requests to really high number | |
154 | * so that runaway settings do not cause MALLOC overflows | |
155 | */ | |
156 | #define AIO_MAX_REQUESTS (128 * CONFIG_AIO_MAX) | |
157 | ||
55e303ae A |
158 | extern int aio_max_requests; |
159 | extern int aio_max_requests_per_process; | |
160 | extern int aio_worker_threads; | |
91447636 A |
161 | extern int lowpri_IO_window_msecs; |
162 | extern int lowpri_IO_delay_msecs; | |
0c530ab8 | 163 | extern int nx_enabled; |
2d21ac55 | 164 | extern int speculative_reads_disabled; |
6d2010ae A |
165 | extern int ignore_is_ssd; |
166 | extern unsigned int speculative_prefetch_max; | |
316670eb | 167 | extern unsigned int speculative_prefetch_max_iosize; |
fe8ab488 A |
168 | extern unsigned int preheat_max_bytes; |
169 | extern unsigned int preheat_min_bytes; | |
b0d623f7 | 170 | extern long numvnodes; |
1c79356b | 171 | |
39236c6e A |
172 | extern uuid_string_t bootsessionuuid_string; |
173 | ||
6d2010ae A |
174 | extern unsigned int vm_max_delayed_work_limit; |
175 | extern unsigned int vm_max_batch; | |
176 | ||
177 | extern unsigned int vm_page_free_min; | |
178 | extern unsigned int vm_page_free_target; | |
179 | extern unsigned int vm_page_free_reserved; | |
180 | extern unsigned int vm_page_speculative_percentage; | |
181 | extern unsigned int vm_page_speculative_q_age_ms; | |
182 | ||
04b8595b A |
183 | #if (DEVELOPMENT || DEBUG) |
184 | extern uint32_t vm_page_creation_throttled_hard; | |
185 | extern uint32_t vm_page_creation_throttled_soft; | |
186 | #endif /* DEVELOPMENT || DEBUG */ | |
187 | ||
6d2010ae A |
188 | /* |
189 | * Conditionally allow dtrace to see these functions for debugging purposes. | |
190 | */ | |
191 | #ifdef STATIC | |
192 | #undef STATIC | |
193 | #endif | |
194 | #if 0 | |
195 | #define STATIC | |
196 | #else | |
197 | #define STATIC static | |
198 | #endif | |
199 | ||
200 | extern boolean_t mach_timer_coalescing_enabled; | |
201 | ||
39236c6e A |
202 | extern uint64_t timer_deadline_tracking_bin_1, timer_deadline_tracking_bin_2; |
203 | ||
6d2010ae | 204 | STATIC void |
316670eb A |
205 | fill_user32_eproc(proc_t, struct user32_eproc *__restrict); |
206 | STATIC void | |
207 | fill_user32_externproc(proc_t, struct user32_extern_proc *__restrict); | |
6d2010ae | 208 | STATIC void |
316670eb | 209 | fill_user64_eproc(proc_t, struct user64_eproc *__restrict); |
6d2010ae | 210 | STATIC void |
316670eb | 211 | fill_user64_proc(proc_t, struct user64_kinfo_proc *__restrict); |
6d2010ae | 212 | STATIC void |
316670eb | 213 | fill_user64_externproc(proc_t, struct user64_extern_proc *__restrict); |
6d2010ae | 214 | STATIC void |
316670eb A |
215 | fill_user32_proc(proc_t, struct user32_kinfo_proc *__restrict); |
216 | ||
91447636 A |
217 | extern int |
218 | kdbg_control(int *name, u_int namelen, user_addr_t where, size_t * sizep); | |
91447636 A |
219 | #if NFSCLIENT |
220 | extern int | |
221 | netboot_root(void); | |
222 | #endif | |
223 | int | |
224 | pcsamples_ops(int *name, u_int namelen, user_addr_t where, size_t *sizep, | |
2d21ac55 | 225 | proc_t p); |
91447636 A |
226 | __private_extern__ kern_return_t |
227 | reset_vmobjectcache(unsigned int val1, unsigned int val2); | |
91447636 A |
228 | int |
229 | sysctl_procargs(int *name, u_int namelen, user_addr_t where, | |
2d21ac55 | 230 | size_t *sizep, proc_t cur_proc); |
6d2010ae | 231 | STATIC int |
91447636 | 232 | sysctl_procargsx(int *name, u_int namelen, user_addr_t where, size_t *sizep, |
2d21ac55 | 233 | proc_t cur_proc, int argc_yes); |
91447636 A |
234 | int |
235 | sysctl_struct(user_addr_t oldp, size_t *oldlenp, user_addr_t newp, | |
236 | size_t newlen, void *sp, int len); | |
1c79356b | 237 | |
6d2010ae A |
238 | STATIC int sysdoproc_filt_KERN_PROC_PID(proc_t p, void * arg); |
239 | STATIC int sysdoproc_filt_KERN_PROC_PGRP(proc_t p, void * arg); | |
240 | STATIC int sysdoproc_filt_KERN_PROC_TTY(proc_t p, void * arg); | |
241 | STATIC int sysdoproc_filt_KERN_PROC_UID(proc_t p, void * arg); | |
242 | STATIC int sysdoproc_filt_KERN_PROC_RUID(proc_t p, void * arg); | |
b0d623f7 | 243 | #if CONFIG_LCTX |
6d2010ae | 244 | STATIC int sysdoproc_filt_KERN_PROC_LCID(proc_t p, void * arg); |
b0d623f7 | 245 | #endif |
2d21ac55 | 246 | int sysdoproc_callback(proc_t p, void *arg); |
1c79356b | 247 | |
6d2010ae A |
248 | |
249 | /* forward declarations for non-static STATIC */ | |
250 | STATIC void fill_loadavg64(struct loadavg *la, struct user64_loadavg *la64); | |
251 | STATIC void fill_loadavg32(struct loadavg *la, struct user32_loadavg *la32); | |
6d2010ae A |
252 | STATIC int sysctl_handle_kern_threadname(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); |
253 | STATIC int sysctl_sched_stats(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); | |
254 | STATIC int sysctl_sched_stats_enable(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); | |
6d2010ae | 255 | STATIC int sysctl_kdebug_ops SYSCTL_HANDLER_ARGS; |
6d2010ae A |
256 | #if COUNT_SYSCALLS |
257 | STATIC int sysctl_docountsyscalls SYSCTL_HANDLER_ARGS; | |
258 | #endif /* COUNT_SYSCALLS */ | |
6d2010ae | 259 | STATIC int sysctl_doprocargs SYSCTL_HANDLER_ARGS; |
6d2010ae A |
260 | STATIC int sysctl_doprocargs2 SYSCTL_HANDLER_ARGS; |
261 | STATIC int sysctl_prochandle SYSCTL_HANDLER_ARGS; | |
6d2010ae A |
262 | STATIC int sysctl_aiomax(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); |
263 | STATIC int sysctl_aioprocmax(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); | |
264 | STATIC int sysctl_aiothreads(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); | |
265 | STATIC int sysctl_maxproc(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); | |
266 | STATIC int sysctl_osversion(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); | |
267 | STATIC int sysctl_sysctl_bootargs(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); | |
268 | STATIC int sysctl_maxvnodes(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); | |
269 | STATIC int sysctl_securelvl(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); | |
270 | STATIC int sysctl_domainname(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); | |
271 | STATIC int sysctl_hostname(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); | |
272 | STATIC int sysctl_procname(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); | |
273 | STATIC int sysctl_boottime(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); | |
274 | STATIC int sysctl_symfile(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); | |
275 | #if NFSCLIENT | |
276 | STATIC int sysctl_netboot(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); | |
277 | #endif | |
278 | #ifdef CONFIG_IMGSRC_ACCESS | |
279 | STATIC int sysctl_imgsrcdev(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); | |
280 | #endif | |
281 | STATIC int sysctl_usrstack(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); | |
282 | STATIC int sysctl_usrstack64(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); | |
283 | STATIC int sysctl_coredump(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); | |
284 | STATIC int sysctl_suid_coredump(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); | |
285 | STATIC int sysctl_delayterm(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); | |
286 | STATIC int sysctl_rage_vnode(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); | |
287 | STATIC int sysctl_kern_check_openevt(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); | |
288 | STATIC int sysctl_nx(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); | |
289 | STATIC int sysctl_loadavg(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); | |
290 | STATIC int sysctl_vm_toggle_address_reuse(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); | |
291 | STATIC int sysctl_swapusage(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); | |
6d2010ae A |
292 | STATIC int fetch_process_cputype( proc_t cur_proc, int *name, u_int namelen, cpu_type_t *cputype); |
293 | STATIC int sysctl_sysctl_native(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); | |
294 | STATIC int sysctl_sysctl_cputype(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); | |
295 | STATIC int sysctl_safeboot(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); | |
296 | STATIC int sysctl_singleuser(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); | |
316670eb | 297 | STATIC int sysctl_slide(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req); |
6d2010ae | 298 | |
2d21ac55 A |
299 | |
300 | extern void IORegistrySetOSBuildVersion(char * build_version); | |
91447636 | 301 | |
6d2010ae | 302 | STATIC void |
b0d623f7 | 303 | fill_loadavg64(struct loadavg *la, struct user64_loadavg *la64) |
91447636 | 304 | { |
b0d623f7 A |
305 | la64->ldavg[0] = la->ldavg[0]; |
306 | la64->ldavg[1] = la->ldavg[1]; | |
307 | la64->ldavg[2] = la->ldavg[2]; | |
308 | la64->fscale = (user64_long_t)la->fscale; | |
309 | } | |
310 | ||
6d2010ae | 311 | STATIC void |
b0d623f7 A |
312 | fill_loadavg32(struct loadavg *la, struct user32_loadavg *la32) |
313 | { | |
314 | la32->ldavg[0] = la->ldavg[0]; | |
315 | la32->ldavg[1] = la->ldavg[1]; | |
316 | la32->ldavg[2] = la->ldavg[2]; | |
317 | la32->fscale = (user32_long_t)la->fscale; | |
91447636 A |
318 | } |
319 | ||
1c79356b A |
320 | /* |
321 | * Attributes stored in the kernel. | |
322 | */ | |
39236c6e A |
323 | extern char corefilename[MAXPATHLEN+1]; |
324 | extern int do_coredump; | |
325 | extern int sugid_coredump; | |
e5568f75 | 326 | |
2d21ac55 | 327 | #if COUNT_SYSCALLS |
39236c6e | 328 | extern int do_count_syscalls; |
2d21ac55 | 329 | #endif |
55e303ae | 330 | |
1c79356b A |
331 | #ifdef INSECURE |
332 | int securelevel = -1; | |
333 | #else | |
334 | int securelevel; | |
335 | #endif | |
336 | ||
6d2010ae | 337 | STATIC int |
b0d623f7 A |
338 | sysctl_handle_kern_threadname( __unused struct sysctl_oid *oidp, __unused void *arg1, |
339 | __unused int arg2, struct sysctl_req *req) | |
340 | { | |
341 | int error; | |
342 | struct uthread *ut = get_bsdthread_info(current_thread()); | |
343 | user_addr_t oldp=0, newp=0; | |
344 | size_t *oldlenp=NULL; | |
345 | size_t newlen=0; | |
346 | ||
347 | oldp = req->oldptr; | |
348 | oldlenp = &(req->oldlen); | |
349 | newp = req->newptr; | |
350 | newlen = req->newlen; | |
351 | ||
352 | /* We want the current length, and maybe the string itself */ | |
353 | if(oldlenp) { | |
354 | /* if we have no thread name yet tell'em we want MAXTHREADNAMESIZE - 1 */ | |
355 | size_t currlen = MAXTHREADNAMESIZE - 1; | |
356 | ||
357 | if(ut->pth_name) | |
358 | /* use length of current thread name */ | |
359 | currlen = strlen(ut->pth_name); | |
360 | if(oldp) { | |
361 | if(*oldlenp < currlen) | |
362 | return ENOMEM; | |
363 | /* NOTE - we do not copy the NULL terminator */ | |
364 | if(ut->pth_name) { | |
365 | error = copyout(ut->pth_name,oldp,currlen); | |
366 | if(error) | |
367 | return error; | |
368 | } | |
369 | } | |
370 | /* return length of thread name minus NULL terminator (just like strlen) */ | |
371 | req->oldidx = currlen; | |
372 | } | |
373 | ||
374 | /* We want to set the name to something */ | |
375 | if(newp) | |
376 | { | |
377 | if(newlen > (MAXTHREADNAMESIZE - 1)) | |
378 | return ENAMETOOLONG; | |
379 | if(!ut->pth_name) | |
380 | { | |
381 | ut->pth_name = (char*)kalloc( MAXTHREADNAMESIZE ); | |
382 | if(!ut->pth_name) | |
383 | return ENOMEM; | |
384 | } | |
385 | bzero(ut->pth_name, MAXTHREADNAMESIZE); | |
386 | error = copyin(newp, ut->pth_name, newlen); | |
387 | if(error) | |
388 | return error; | |
389 | } | |
390 | ||
391 | return 0; | |
392 | } | |
393 | ||
6d2010ae | 394 | SYSCTL_PROC(_kern, KERN_THREADNAME, threadname, CTLFLAG_ANYBODY | CTLTYPE_STRING | CTLFLAG_RW | CTLFLAG_LOCKED, 0, 0, sysctl_handle_kern_threadname,"A",""); |
b0d623f7 | 395 | |
6d2010ae A |
396 | #define BSD_HOST 1 |
397 | STATIC int | |
398 | sysctl_sched_stats(__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req) | |
399 | { | |
400 | host_basic_info_data_t hinfo; | |
401 | kern_return_t kret; | |
402 | uint32_t size; | |
403 | int changed; | |
404 | mach_msg_type_number_t count = HOST_BASIC_INFO_COUNT; | |
405 | struct _processor_statistics_np *buf; | |
406 | int error; | |
55e303ae | 407 | |
6d2010ae A |
408 | kret = host_info((host_t)BSD_HOST, HOST_BASIC_INFO, (host_info_t)&hinfo, &count); |
409 | if (kret != KERN_SUCCESS) { | |
410 | return EINVAL; | |
411 | } | |
1c79356b | 412 | |
6d2010ae A |
413 | size = sizeof(struct _processor_statistics_np) * (hinfo.logical_cpu_max + 2); /* One for RT Queue, One for Fair Share Queue */ |
414 | ||
415 | if (req->oldlen < size) { | |
416 | return EINVAL; | |
417 | } | |
418 | ||
419 | MALLOC(buf, struct _processor_statistics_np*, size, M_TEMP, M_ZERO | M_WAITOK); | |
420 | ||
421 | kret = get_sched_statistics(buf, &size); | |
422 | if (kret != KERN_SUCCESS) { | |
423 | error = EINVAL; | |
424 | goto out; | |
425 | } | |
426 | ||
427 | error = sysctl_io_opaque(req, buf, size, &changed); | |
428 | if (error) { | |
429 | goto out; | |
430 | } | |
431 | ||
432 | if (changed) { | |
433 | panic("Sched info changed?!"); | |
434 | } | |
435 | out: | |
436 | FREE(buf, M_TEMP); | |
437 | return error; | |
438 | } | |
439 | ||
440 | SYSCTL_PROC(_kern, OID_AUTO, sched_stats, CTLFLAG_LOCKED, 0, 0, sysctl_sched_stats, "-", ""); | |
441 | ||
442 | STATIC int | |
443 | sysctl_sched_stats_enable(__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, __unused struct sysctl_req *req) | |
444 | { | |
445 | boolean_t active; | |
446 | int res; | |
447 | ||
448 | if (req->newlen != sizeof(active)) { | |
449 | return EINVAL; | |
450 | } | |
451 | ||
452 | res = copyin(req->newptr, &active, sizeof(active)); | |
453 | if (res != 0) { | |
454 | return res; | |
455 | } | |
456 | ||
457 | return set_sched_stats_active(active); | |
458 | } | |
459 | ||
460 | SYSCTL_PROC(_kern, OID_AUTO, sched_stats_enable, CTLFLAG_LOCKED | CTLFLAG_WR, 0, 0, sysctl_sched_stats_enable, "-", ""); | |
461 | ||
462 | extern int get_kernel_symfile(proc_t, char **); | |
1c79356b | 463 | |
2d21ac55 | 464 | #if COUNT_SYSCALLS |
6d2010ae A |
465 | #define KERN_COUNT_SYSCALLS (KERN_OSTYPE + 1000) |
466 | ||
467 | extern int nsysent; | |
468 | extern int syscalls_log[]; | |
469 | extern const char *syscallnames[]; | |
470 | ||
471 | STATIC int | |
472 | sysctl_docountsyscalls SYSCTL_HANDLER_ARGS | |
473 | { | |
474 | __unused int cmd = oidp->oid_arg2; /* subcommand*/ | |
475 | __unused int *name = arg1; /* oid element argument vector */ | |
476 | __unused int namelen = arg2; /* number of oid element arguments */ | |
477 | user_addr_t oldp = req->oldptr; /* user buffer copy out address */ | |
478 | size_t *oldlenp = &req->oldlen; /* user buffer copy out size */ | |
479 | user_addr_t newp = req->newptr; /* user buffer copy in address */ | |
480 | size_t newlen = req->newlen; /* user buffer copy in size */ | |
481 | int error; | |
482 | ||
483 | int tmp; | |
484 | ||
485 | /* valid values passed in: | |
486 | * = 0 means don't keep called counts for each bsd syscall | |
487 | * > 0 means keep called counts for each bsd syscall | |
488 | * = 2 means dump current counts to the system log | |
489 | * = 3 means reset all counts | |
490 | * for example, to dump current counts: | |
491 | * sysctl -w kern.count_calls=2 | |
492 | */ | |
493 | error = sysctl_int(oldp, oldlenp, newp, newlen, &tmp); | |
494 | if ( error != 0 ) { | |
495 | return (error); | |
496 | } | |
497 | ||
498 | if ( tmp == 1 ) { | |
499 | do_count_syscalls = 1; | |
500 | } | |
501 | else if ( tmp == 0 || tmp == 2 || tmp == 3 ) { | |
502 | int i; | |
503 | for ( i = 0; i < nsysent; i++ ) { | |
504 | if ( syscalls_log[i] != 0 ) { | |
505 | if ( tmp == 2 ) { | |
506 | printf("%d calls - name %s \n", syscalls_log[i], syscallnames[i]); | |
507 | } | |
508 | else { | |
509 | syscalls_log[i] = 0; | |
2d21ac55 | 510 | } |
2d21ac55 A |
511 | } |
512 | } | |
6d2010ae A |
513 | if ( tmp != 0 ) { |
514 | do_count_syscalls = 1; | |
515 | } | |
1c79356b | 516 | } |
6d2010ae A |
517 | |
518 | /* adjust index so we return the right required/consumed amount */ | |
519 | if (!error) | |
520 | req->oldidx += req->oldlen; | |
521 | ||
522 | return (error); | |
1c79356b | 523 | } |
6d2010ae A |
524 | SYSCTL_PROC(_kern, KERN_COUNT_SYSCALLS, count_syscalls, CTLTYPE_NODE|CTLFLAG_RD | CTLFLAG_LOCKED, |
525 | 0, /* Pointer argument (arg1) */ | |
526 | 0, /* Integer argument (arg2) */ | |
527 | sysctl_docountsyscalls, /* Handler function */ | |
528 | NULL, /* Data pointer */ | |
529 | ""); | |
530 | #endif /* COUNT_SYSCALLS */ | |
1c79356b | 531 | |
2d21ac55 A |
532 | /* |
533 | * The following sysctl_* functions should not be used | |
534 | * any more, as they can only cope with callers in | |
535 | * user mode: Use new-style | |
536 | * sysctl_io_number() | |
537 | * sysctl_io_string() | |
538 | * sysctl_io_opaque() | |
539 | * instead. | |
540 | */ | |
541 | ||
1c79356b A |
542 | /* |
543 | * Validate parameters and get old / set new parameters | |
544 | * for an integer-valued sysctl function. | |
545 | */ | |
9bccf70c | 546 | int |
91447636 A |
547 | sysctl_int(user_addr_t oldp, size_t *oldlenp, |
548 | user_addr_t newp, size_t newlen, int *valp) | |
1c79356b A |
549 | { |
550 | int error = 0; | |
551 | ||
91447636 A |
552 | if (oldp != USER_ADDR_NULL && oldlenp == NULL) |
553 | return (EFAULT); | |
1c79356b A |
554 | if (oldp && *oldlenp < sizeof(int)) |
555 | return (ENOMEM); | |
556 | if (newp && newlen != sizeof(int)) | |
557 | return (EINVAL); | |
558 | *oldlenp = sizeof(int); | |
559 | if (oldp) | |
560 | error = copyout(valp, oldp, sizeof(int)); | |
e5568f75 | 561 | if (error == 0 && newp) { |
1c79356b | 562 | error = copyin(newp, valp, sizeof(int)); |
b0d623f7 | 563 | AUDIT_ARG(value32, *valp); |
e5568f75 | 564 | } |
1c79356b A |
565 | return (error); |
566 | } | |
567 | ||
9bccf70c A |
568 | /* |
569 | * Validate parameters and get old / set new parameters | |
570 | * for an quad(64bit)-valued sysctl function. | |
571 | */ | |
572 | int | |
91447636 A |
573 | sysctl_quad(user_addr_t oldp, size_t *oldlenp, |
574 | user_addr_t newp, size_t newlen, quad_t *valp) | |
9bccf70c A |
575 | { |
576 | int error = 0; | |
577 | ||
91447636 A |
578 | if (oldp != USER_ADDR_NULL && oldlenp == NULL) |
579 | return (EFAULT); | |
9bccf70c A |
580 | if (oldp && *oldlenp < sizeof(quad_t)) |
581 | return (ENOMEM); | |
582 | if (newp && newlen != sizeof(quad_t)) | |
583 | return (EINVAL); | |
584 | *oldlenp = sizeof(quad_t); | |
585 | if (oldp) | |
586 | error = copyout(valp, oldp, sizeof(quad_t)); | |
587 | if (error == 0 && newp) | |
588 | error = copyin(newp, valp, sizeof(quad_t)); | |
589 | return (error); | |
590 | } | |
591 | ||
6d2010ae | 592 | STATIC int |
2d21ac55 A |
593 | sysdoproc_filt_KERN_PROC_PID(proc_t p, void * arg) |
594 | { | |
b0d623f7 | 595 | if (p->p_pid != (pid_t)*(int*)arg) |
2d21ac55 A |
596 | return(0); |
597 | else | |
598 | return(1); | |
599 | } | |
600 | ||
6d2010ae | 601 | STATIC int |
2d21ac55 A |
602 | sysdoproc_filt_KERN_PROC_PGRP(proc_t p, void * arg) |
603 | { | |
b0d623f7 | 604 | if (p->p_pgrpid != (pid_t)*(int*)arg) |
2d21ac55 A |
605 | return(0); |
606 | else | |
607 | return(1); | |
608 | } | |
609 | ||
6d2010ae | 610 | STATIC int |
2d21ac55 A |
611 | sysdoproc_filt_KERN_PROC_TTY(proc_t p, void * arg) |
612 | { | |
2d21ac55 | 613 | int retval; |
b0d623f7 | 614 | struct tty *tp; |
2d21ac55 | 615 | |
2d21ac55 A |
616 | /* This is very racy but list lock is held.. Hmmm. */ |
617 | if ((p->p_flag & P_CONTROLT) == 0 || | |
618 | (p->p_pgrp == NULL) || (p->p_pgrp->pg_session == NULL) || | |
b0d623f7 A |
619 | (tp = SESSION_TP(p->p_pgrp->pg_session)) == TTY_NULL || |
620 | tp->t_dev != (dev_t)*(int*)arg) | |
2d21ac55 A |
621 | retval = 0; |
622 | else | |
623 | retval = 1; | |
624 | ||
2d21ac55 A |
625 | return(retval); |
626 | } | |
627 | ||
6d2010ae | 628 | STATIC int |
2d21ac55 A |
629 | sysdoproc_filt_KERN_PROC_UID(proc_t p, void * arg) |
630 | { | |
631 | kauth_cred_t my_cred; | |
632 | uid_t uid; | |
633 | ||
634 | if (p->p_ucred == NULL) | |
635 | return(0); | |
636 | my_cred = kauth_cred_proc_ref(p); | |
637 | uid = kauth_cred_getuid(my_cred); | |
638 | kauth_cred_unref(&my_cred); | |
639 | ||
b0d623f7 | 640 | if (uid != (uid_t)*(int*)arg) |
2d21ac55 A |
641 | return(0); |
642 | else | |
643 | return(1); | |
644 | } | |
645 | ||
646 | ||
6d2010ae | 647 | STATIC int |
2d21ac55 A |
648 | sysdoproc_filt_KERN_PROC_RUID(proc_t p, void * arg) |
649 | { | |
650 | kauth_cred_t my_cred; | |
651 | uid_t ruid; | |
652 | ||
653 | if (p->p_ucred == NULL) | |
654 | return(0); | |
655 | my_cred = kauth_cred_proc_ref(p); | |
6d2010ae | 656 | ruid = kauth_cred_getruid(my_cred); |
2d21ac55 A |
657 | kauth_cred_unref(&my_cred); |
658 | ||
b0d623f7 | 659 | if (ruid != (uid_t)*(int*)arg) |
2d21ac55 A |
660 | return(0); |
661 | else | |
662 | return(1); | |
663 | } | |
664 | ||
b0d623f7 | 665 | #if CONFIG_LCTX |
6d2010ae | 666 | STATIC int |
2d21ac55 A |
667 | sysdoproc_filt_KERN_PROC_LCID(proc_t p, void * arg) |
668 | { | |
669 | if ((p->p_lctx == NULL) || | |
b0d623f7 | 670 | (p->p_lctx->lc_id != (pid_t)*(int*)arg)) |
2d21ac55 A |
671 | return(0); |
672 | else | |
673 | return(1); | |
674 | } | |
b0d623f7 | 675 | #endif |
2d21ac55 | 676 | |
1c79356b A |
677 | /* |
678 | * try over estimating by 5 procs | |
679 | */ | |
680 | #define KERN_PROCSLOP (5 * sizeof (struct kinfo_proc)) | |
2d21ac55 A |
681 | struct sysdoproc_args { |
682 | int buflen; | |
316670eb | 683 | void *kprocp; |
2d21ac55 A |
684 | boolean_t is_64_bit; |
685 | user_addr_t dp; | |
686 | size_t needed; | |
687 | int sizeof_kproc; | |
316670eb | 688 | int *errorp; |
2d21ac55 A |
689 | int uidcheck; |
690 | int ruidcheck; | |
691 | int ttycheck; | |
692 | int uidval; | |
693 | }; | |
694 | ||
695 | int | |
316670eb | 696 | sysdoproc_callback(proc_t p, void *arg) |
2d21ac55 | 697 | { |
316670eb | 698 | struct sysdoproc_args *args = arg; |
2d21ac55 A |
699 | |
700 | if (args->buflen >= args->sizeof_kproc) { | |
316670eb A |
701 | if ((args->ruidcheck != 0) && (sysdoproc_filt_KERN_PROC_RUID(p, &args->uidval) == 0)) |
702 | return (PROC_RETURNED); | |
703 | if ((args->uidcheck != 0) && (sysdoproc_filt_KERN_PROC_UID(p, &args->uidval) == 0)) | |
704 | return (PROC_RETURNED); | |
705 | if ((args->ttycheck != 0) && (sysdoproc_filt_KERN_PROC_TTY(p, &args->uidval) == 0)) | |
706 | return (PROC_RETURNED); | |
2d21ac55 A |
707 | |
708 | bzero(args->kprocp, args->sizeof_kproc); | |
316670eb A |
709 | if (args->is_64_bit) |
710 | fill_user64_proc(p, args->kprocp); | |
711 | else | |
712 | fill_user32_proc(p, args->kprocp); | |
713 | int error = copyout(args->kprocp, args->dp, args->sizeof_kproc); | |
2d21ac55 A |
714 | if (error) { |
715 | *args->errorp = error; | |
316670eb | 716 | return (PROC_RETURNED_DONE); |
2d21ac55 A |
717 | } |
718 | args->dp += args->sizeof_kproc; | |
719 | args->buflen -= args->sizeof_kproc; | |
720 | } | |
721 | args->needed += args->sizeof_kproc; | |
316670eb | 722 | return (PROC_RETURNED); |
2d21ac55 | 723 | } |
1c79356b | 724 | |
6d2010ae A |
725 | SYSCTL_NODE(_kern, KERN_PROC, proc, CTLFLAG_RD | CTLFLAG_LOCKED, 0, ""); |
726 | STATIC int | |
727 | sysctl_prochandle SYSCTL_HANDLER_ARGS | |
1c79356b | 728 | { |
6d2010ae A |
729 | int cmd = oidp->oid_arg2; /* subcommand for multiple nodes */ |
730 | int *name = arg1; /* oid element argument vector */ | |
731 | int namelen = arg2; /* number of oid element arguments */ | |
732 | user_addr_t where = req->oldptr;/* user buffer copy out address */ | |
733 | ||
91447636 A |
734 | user_addr_t dp = where; |
735 | size_t needed = 0; | |
6d2010ae | 736 | int buflen = where != USER_ADDR_NULL ? req->oldlen : 0; |
1c79356b | 737 | int error = 0; |
316670eb | 738 | boolean_t is_64_bit = proc_is64bit(current_proc()); |
b0d623f7 A |
739 | struct user32_kinfo_proc user32_kproc; |
740 | struct user64_kinfo_proc user_kproc; | |
91447636 | 741 | int sizeof_kproc; |
316670eb | 742 | void *kprocp; |
2d21ac55 A |
743 | int (*filterfn)(proc_t, void *) = 0; |
744 | struct sysdoproc_args args; | |
745 | int uidcheck = 0; | |
746 | int ruidcheck = 0; | |
747 | int ttycheck = 0; | |
1c79356b | 748 | |
6d2010ae | 749 | if (namelen != 1 && !(namelen == 0 && cmd == KERN_PROC_ALL)) |
1c79356b | 750 | return (EINVAL); |
6d2010ae | 751 | |
91447636 A |
752 | if (is_64_bit) { |
753 | sizeof_kproc = sizeof(user_kproc); | |
316670eb A |
754 | kprocp = &user_kproc; |
755 | } else { | |
b0d623f7 | 756 | sizeof_kproc = sizeof(user32_kproc); |
316670eb | 757 | kprocp = &user32_kproc; |
91447636 | 758 | } |
2d21ac55 | 759 | |
6d2010ae | 760 | switch (cmd) { |
1c79356b A |
761 | |
762 | case KERN_PROC_PID: | |
2d21ac55 | 763 | filterfn = sysdoproc_filt_KERN_PROC_PID; |
1c79356b A |
764 | break; |
765 | ||
766 | case KERN_PROC_PGRP: | |
2d21ac55 | 767 | filterfn = sysdoproc_filt_KERN_PROC_PGRP; |
1c79356b | 768 | break; |
2d21ac55 | 769 | |
1c79356b | 770 | case KERN_PROC_TTY: |
2d21ac55 | 771 | ttycheck = 1; |
1c79356b A |
772 | break; |
773 | ||
774 | case KERN_PROC_UID: | |
2d21ac55 | 775 | uidcheck = 1; |
1c79356b A |
776 | break; |
777 | ||
778 | case KERN_PROC_RUID: | |
2d21ac55 | 779 | ruidcheck = 1; |
1c79356b | 780 | break; |
2d21ac55 A |
781 | |
782 | #if CONFIG_LCTX | |
783 | case KERN_PROC_LCID: | |
784 | filterfn = sysdoproc_filt_KERN_PROC_LCID; | |
785 | break; | |
786 | #endif | |
6d2010ae A |
787 | case KERN_PROC_ALL: |
788 | break; | |
789 | ||
790 | default: | |
791 | /* must be kern.proc.<unknown> */ | |
792 | return (ENOTSUP); | |
1c79356b | 793 | } |
2d21ac55 A |
794 | |
795 | error = 0; | |
796 | args.buflen = buflen; | |
797 | args.kprocp = kprocp; | |
798 | args.is_64_bit = is_64_bit; | |
799 | args.dp = dp; | |
800 | args.needed = needed; | |
801 | args.errorp = &error; | |
802 | args.uidcheck = uidcheck; | |
803 | args.ruidcheck = ruidcheck; | |
804 | args.ttycheck = ttycheck; | |
805 | args.sizeof_kproc = sizeof_kproc; | |
6d2010ae | 806 | if (namelen) |
316670eb | 807 | args.uidval = name[0]; |
2d21ac55 | 808 | |
316670eb A |
809 | proc_iterate((PROC_ALLPROCLIST | PROC_ZOMBPROCLIST), |
810 | sysdoproc_callback, &args, filterfn, name); | |
2d21ac55 A |
811 | |
812 | if (error) | |
316670eb | 813 | return (error); |
2d21ac55 A |
814 | |
815 | dp = args.dp; | |
816 | needed = args.needed; | |
817 | ||
91447636 | 818 | if (where != USER_ADDR_NULL) { |
6d2010ae A |
819 | req->oldlen = dp - where; |
820 | if (needed > req->oldlen) | |
1c79356b A |
821 | return (ENOMEM); |
822 | } else { | |
823 | needed += KERN_PROCSLOP; | |
6d2010ae | 824 | req->oldlen = needed; |
1c79356b | 825 | } |
6d2010ae A |
826 | /* adjust index so we return the right required/consumed amount */ |
827 | req->oldidx += req->oldlen; | |
1c79356b A |
828 | return (0); |
829 | } | |
316670eb | 830 | |
6d2010ae A |
831 | /* |
832 | * We specify the subcommand code for multiple nodes as the 'req->arg2' value | |
833 | * in the sysctl declaration itself, which comes into the handler function | |
834 | * as 'oidp->oid_arg2'. | |
835 | * | |
836 | * For these particular sysctls, since they have well known OIDs, we could | |
837 | * have just obtained it from the '((int *)arg1)[0]' parameter, but that would | |
838 | * not demonstrate how to handle multiple sysctls that used OID_AUTO instead | |
839 | * of a well known value with a common handler function. This is desirable, | |
840 | * because we want well known values to "go away" at some future date. | |
841 | * | |
842 | * It should be noted that the value of '((int *)arg1)[1]' is used for many | |
843 | * an integer parameter to the subcommand for many of these sysctls; we'd | |
844 | * rather have used '((int *)arg1)[0]' for that, or even better, an element | |
845 | * in a structure passed in as the the 'newp' argument to sysctlbyname(3), | |
846 | * and then use leaf-node permissions enforcement, but that would have | |
847 | * necessitated modifying user space code to correspond to the interface | |
848 | * change, and we are striving for binary backward compatibility here; even | |
849 | * though these are SPI, and not intended for use by user space applications | |
850 | * which are not themselves system tools or libraries, some applications | |
851 | * have erroneously used them. | |
852 | */ | |
853 | SYSCTL_PROC(_kern_proc, KERN_PROC_ALL, all, CTLTYPE_NODE|CTLFLAG_RD | CTLFLAG_LOCKED, | |
854 | 0, /* Pointer argument (arg1) */ | |
855 | KERN_PROC_ALL, /* Integer argument (arg2) */ | |
856 | sysctl_prochandle, /* Handler function */ | |
857 | NULL, /* Data is size variant on ILP32/LP64 */ | |
858 | ""); | |
859 | SYSCTL_PROC(_kern_proc, KERN_PROC_PID, pid, CTLTYPE_NODE|CTLFLAG_RD | CTLFLAG_LOCKED, | |
860 | 0, /* Pointer argument (arg1) */ | |
861 | KERN_PROC_PID, /* Integer argument (arg2) */ | |
862 | sysctl_prochandle, /* Handler function */ | |
863 | NULL, /* Data is size variant on ILP32/LP64 */ | |
864 | ""); | |
865 | SYSCTL_PROC(_kern_proc, KERN_PROC_TTY, tty, CTLTYPE_NODE|CTLFLAG_RD | CTLFLAG_LOCKED, | |
866 | 0, /* Pointer argument (arg1) */ | |
867 | KERN_PROC_TTY, /* Integer argument (arg2) */ | |
868 | sysctl_prochandle, /* Handler function */ | |
869 | NULL, /* Data is size variant on ILP32/LP64 */ | |
870 | ""); | |
871 | SYSCTL_PROC(_kern_proc, KERN_PROC_PGRP, pgrp, CTLTYPE_NODE|CTLFLAG_RD | CTLFLAG_LOCKED, | |
872 | 0, /* Pointer argument (arg1) */ | |
873 | KERN_PROC_PGRP, /* Integer argument (arg2) */ | |
874 | sysctl_prochandle, /* Handler function */ | |
875 | NULL, /* Data is size variant on ILP32/LP64 */ | |
876 | ""); | |
877 | SYSCTL_PROC(_kern_proc, KERN_PROC_UID, uid, CTLTYPE_NODE|CTLFLAG_RD | CTLFLAG_LOCKED, | |
878 | 0, /* Pointer argument (arg1) */ | |
879 | KERN_PROC_UID, /* Integer argument (arg2) */ | |
880 | sysctl_prochandle, /* Handler function */ | |
881 | NULL, /* Data is size variant on ILP32/LP64 */ | |
882 | ""); | |
883 | SYSCTL_PROC(_kern_proc, KERN_PROC_RUID, ruid, CTLTYPE_NODE|CTLFLAG_RD | CTLFLAG_LOCKED, | |
884 | 0, /* Pointer argument (arg1) */ | |
885 | KERN_PROC_RUID, /* Integer argument (arg2) */ | |
886 | sysctl_prochandle, /* Handler function */ | |
887 | NULL, /* Data is size variant on ILP32/LP64 */ | |
888 | ""); | |
889 | SYSCTL_PROC(_kern_proc, KERN_PROC_LCID, lcid, CTLTYPE_NODE|CTLFLAG_RD | CTLFLAG_LOCKED, | |
890 | 0, /* Pointer argument (arg1) */ | |
891 | KERN_PROC_LCID, /* Integer argument (arg2) */ | |
892 | sysctl_prochandle, /* Handler function */ | |
893 | NULL, /* Data is size variant on ILP32/LP64 */ | |
894 | ""); | |
895 | ||
1c79356b | 896 | |
1c79356b | 897 | /* |
316670eb | 898 | * Fill in non-zero fields of an eproc structure for the specified process. |
1c79356b | 899 | */ |
6d2010ae | 900 | STATIC void |
316670eb | 901 | fill_user32_eproc(proc_t p, struct user32_eproc *__restrict ep) |
1c79356b | 902 | { |
2d21ac55 | 903 | struct tty *tp; |
316670eb A |
904 | struct pgrp *pg; |
905 | struct session *sessp; | |
2d21ac55 | 906 | kauth_cred_t my_cred; |
2d21ac55 A |
907 | |
908 | pg = proc_pgrp(p); | |
909 | sessp = proc_session(p); | |
1c79356b | 910 | |
2d21ac55 | 911 | if (pg != PGRP_NULL) { |
2d21ac55 A |
912 | ep->e_pgid = p->p_pgrpid; |
913 | ep->e_jobc = pg->pg_jobc; | |
316670eb | 914 | if (sessp != SESSION_NULL && sessp->s_ttyvp) |
55e303ae | 915 | ep->e_flag = EPROC_CTTY; |
55e303ae | 916 | } |
2d21ac55 | 917 | #if CONFIG_LCTX |
316670eb | 918 | if (p->p_lctx) |
2d21ac55 | 919 | ep->e_lcid = p->p_lctx->lc_id; |
2d21ac55 A |
920 | #endif |
921 | ep->e_ppid = p->p_ppid; | |
91447636 | 922 | if (p->p_ucred) { |
2d21ac55 | 923 | my_cred = kauth_cred_proc_ref(p); |
91447636 A |
924 | |
925 | /* A fake historical pcred */ | |
6d2010ae A |
926 | ep->e_pcred.p_ruid = kauth_cred_getruid(my_cred); |
927 | ep->e_pcred.p_svuid = kauth_cred_getsvuid(my_cred); | |
928 | ep->e_pcred.p_rgid = kauth_cred_getrgid(my_cred); | |
929 | ep->e_pcred.p_svgid = kauth_cred_getsvgid(my_cred); | |
316670eb | 930 | |
91447636 | 931 | /* A fake historical *kauth_cred_t */ |
2d21ac55 A |
932 | ep->e_ucred.cr_ref = my_cred->cr_ref; |
933 | ep->e_ucred.cr_uid = kauth_cred_getuid(my_cred); | |
6d2010ae | 934 | ep->e_ucred.cr_ngroups = posix_cred_get(my_cred)->cr_ngroups; |
316670eb A |
935 | bcopy(posix_cred_get(my_cred)->cr_groups, |
936 | ep->e_ucred.cr_groups, NGROUPS * sizeof (gid_t)); | |
91447636 | 937 | |
2d21ac55 | 938 | kauth_cred_unref(&my_cred); |
55e303ae | 939 | } |
55e303ae | 940 | |
2d21ac55 | 941 | if ((p->p_flag & P_CONTROLT) && (sessp != SESSION_NULL) && |
b0d623f7 | 942 | (tp = SESSION_TP(sessp))) { |
1c79356b | 943 | ep->e_tdev = tp->t_dev; |
2d21ac55 | 944 | ep->e_tpgid = sessp->s_ttypgrpid; |
1c79356b A |
945 | } else |
946 | ep->e_tdev = NODEV; | |
55e303ae | 947 | |
316670eb A |
948 | if (sessp != SESSION_NULL) { |
949 | if (SESS_LEADER(p, sessp)) | |
950 | ep->e_flag |= EPROC_SLEADER; | |
2d21ac55 | 951 | session_rele(sessp); |
316670eb A |
952 | } |
953 | if (pg != PGRP_NULL) | |
2d21ac55 | 954 | pg_rele(pg); |
1c79356b | 955 | } |
55e303ae | 956 | |
91447636 | 957 | /* |
316670eb | 958 | * Fill in non-zero fields of an LP64 eproc structure for the specified process. |
91447636 | 959 | */ |
6d2010ae | 960 | STATIC void |
316670eb | 961 | fill_user64_eproc(proc_t p, struct user64_eproc *__restrict ep) |
91447636 | 962 | { |
2d21ac55 | 963 | struct tty *tp; |
316670eb A |
964 | struct pgrp *pg; |
965 | struct session *sessp; | |
2d21ac55 A |
966 | kauth_cred_t my_cred; |
967 | ||
968 | pg = proc_pgrp(p); | |
969 | sessp = proc_session(p); | |
91447636 | 970 | |
2d21ac55 | 971 | if (pg != PGRP_NULL) { |
2d21ac55 A |
972 | ep->e_pgid = p->p_pgrpid; |
973 | ep->e_jobc = pg->pg_jobc; | |
316670eb A |
974 | if (sessp != SESSION_NULL && sessp->s_ttyvp) |
975 | ep->e_flag = EPROC_CTTY; | |
91447636 | 976 | } |
2d21ac55 | 977 | #if CONFIG_LCTX |
316670eb | 978 | if (p->p_lctx) |
2d21ac55 | 979 | ep->e_lcid = p->p_lctx->lc_id; |
2d21ac55 A |
980 | #endif |
981 | ep->e_ppid = p->p_ppid; | |
91447636 | 982 | if (p->p_ucred) { |
2d21ac55 | 983 | my_cred = kauth_cred_proc_ref(p); |
91447636 A |
984 | |
985 | /* A fake historical pcred */ | |
6d2010ae A |
986 | ep->e_pcred.p_ruid = kauth_cred_getruid(my_cred); |
987 | ep->e_pcred.p_svuid = kauth_cred_getsvuid(my_cred); | |
988 | ep->e_pcred.p_rgid = kauth_cred_getrgid(my_cred); | |
989 | ep->e_pcred.p_svgid = kauth_cred_getsvgid(my_cred); | |
91447636 A |
990 | |
991 | /* A fake historical *kauth_cred_t */ | |
2d21ac55 A |
992 | ep->e_ucred.cr_ref = my_cred->cr_ref; |
993 | ep->e_ucred.cr_uid = kauth_cred_getuid(my_cred); | |
6d2010ae | 994 | ep->e_ucred.cr_ngroups = posix_cred_get(my_cred)->cr_ngroups; |
316670eb A |
995 | bcopy(posix_cred_get(my_cred)->cr_groups, |
996 | ep->e_ucred.cr_groups, NGROUPS * sizeof (gid_t)); | |
91447636 | 997 | |
2d21ac55 | 998 | kauth_cred_unref(&my_cred); |
91447636 | 999 | } |
91447636 | 1000 | |
2d21ac55 | 1001 | if ((p->p_flag & P_CONTROLT) && (sessp != SESSION_NULL) && |
b0d623f7 | 1002 | (tp = SESSION_TP(sessp))) { |
91447636 | 1003 | ep->e_tdev = tp->t_dev; |
2d21ac55 | 1004 | ep->e_tpgid = sessp->s_ttypgrpid; |
91447636 A |
1005 | } else |
1006 | ep->e_tdev = NODEV; | |
1007 | ||
316670eb A |
1008 | if (sessp != SESSION_NULL) { |
1009 | if (SESS_LEADER(p, sessp)) | |
1010 | ep->e_flag |= EPROC_SLEADER; | |
2d21ac55 | 1011 | session_rele(sessp); |
316670eb | 1012 | } |
2d21ac55 A |
1013 | if (pg != PGRP_NULL) |
1014 | pg_rele(pg); | |
91447636 A |
1015 | } |
1016 | ||
1c79356b A |
1017 | /* |
1018 | * Fill in an eproc structure for the specified process. | |
316670eb | 1019 | * bzeroed by our caller, so only set non-zero fields. |
1c79356b | 1020 | */ |
6d2010ae | 1021 | STATIC void |
316670eb | 1022 | fill_user32_externproc(proc_t p, struct user32_extern_proc *__restrict exp) |
1c79356b | 1023 | { |
b0d623f7 A |
1024 | exp->p_starttime.tv_sec = p->p_start.tv_sec; |
1025 | exp->p_starttime.tv_usec = p->p_start.tv_usec; | |
316670eb | 1026 | exp->p_flag = p->p_flag; |
2d21ac55 A |
1027 | if (p->p_lflag & P_LTRACED) |
1028 | exp->p_flag |= P_TRACED; | |
1029 | if (p->p_lflag & P_LPPWAIT) | |
1030 | exp->p_flag |= P_PPWAIT; | |
1031 | if (p->p_lflag & P_LEXIT) | |
1032 | exp->p_flag |= P_WEXIT; | |
316670eb A |
1033 | exp->p_stat = p->p_stat; |
1034 | exp->p_pid = p->p_pid; | |
1035 | exp->p_oppid = p->p_oppid; | |
1c79356b | 1036 | /* Mach related */ |
316670eb A |
1037 | exp->user_stack = p->user_stack; |
1038 | exp->p_debugger = p->p_debugger; | |
1039 | exp->sigwait = p->sigwait; | |
1c79356b | 1040 | /* scheduling */ |
2d21ac55 | 1041 | #ifdef _PROC_HAS_SCHEDINFO_ |
316670eb A |
1042 | exp->p_estcpu = p->p_estcpu; |
1043 | exp->p_pctcpu = p->p_pctcpu; | |
1044 | exp->p_slptime = p->p_slptime; | |
2d21ac55 | 1045 | #endif |
316670eb A |
1046 | exp->p_realtimer.it_interval.tv_sec = |
1047 | (user32_time_t)p->p_realtimer.it_interval.tv_sec; | |
1048 | exp->p_realtimer.it_interval.tv_usec = | |
1049 | (__int32_t)p->p_realtimer.it_interval.tv_usec; | |
1050 | ||
1051 | exp->p_realtimer.it_value.tv_sec = | |
1052 | (user32_time_t)p->p_realtimer.it_value.tv_sec; | |
1053 | exp->p_realtimer.it_value.tv_usec = | |
1054 | (__int32_t)p->p_realtimer.it_value.tv_usec; | |
1055 | ||
1056 | exp->p_rtime.tv_sec = (user32_time_t)p->p_rtime.tv_sec; | |
1057 | exp->p_rtime.tv_usec = (__int32_t)p->p_rtime.tv_usec; | |
1058 | ||
1059 | exp->p_sigignore = p->p_sigignore; | |
1060 | exp->p_sigcatch = p->p_sigcatch; | |
1061 | exp->p_priority = p->p_priority; | |
1062 | exp->p_nice = p->p_nice; | |
1063 | bcopy(&p->p_comm, &exp->p_comm, MAXCOMLEN); | |
1064 | exp->p_xstat = p->p_xstat; | |
1065 | exp->p_acflag = p->p_acflag; | |
91447636 A |
1066 | } |
1067 | ||
1068 | /* | |
1069 | * Fill in an LP64 version of extern_proc structure for the specified process. | |
1070 | */ | |
6d2010ae | 1071 | STATIC void |
316670eb | 1072 | fill_user64_externproc(proc_t p, struct user64_extern_proc *__restrict exp) |
91447636 | 1073 | { |
2d21ac55 A |
1074 | exp->p_starttime.tv_sec = p->p_start.tv_sec; |
1075 | exp->p_starttime.tv_usec = p->p_start.tv_usec; | |
316670eb | 1076 | exp->p_flag = p->p_flag; |
2d21ac55 A |
1077 | if (p->p_lflag & P_LTRACED) |
1078 | exp->p_flag |= P_TRACED; | |
1079 | if (p->p_lflag & P_LPPWAIT) | |
1080 | exp->p_flag |= P_PPWAIT; | |
1081 | if (p->p_lflag & P_LEXIT) | |
1082 | exp->p_flag |= P_WEXIT; | |
316670eb A |
1083 | exp->p_stat = p->p_stat; |
1084 | exp->p_pid = p->p_pid; | |
1085 | exp->p_oppid = p->p_oppid; | |
91447636 | 1086 | /* Mach related */ |
316670eb A |
1087 | exp->user_stack = p->user_stack; |
1088 | exp->p_debugger = p->p_debugger; | |
1089 | exp->sigwait = p->sigwait; | |
91447636 | 1090 | /* scheduling */ |
2d21ac55 | 1091 | #ifdef _PROC_HAS_SCHEDINFO_ |
316670eb A |
1092 | exp->p_estcpu = p->p_estcpu; |
1093 | exp->p_pctcpu = p->p_pctcpu; | |
1094 | exp->p_slptime = p->p_slptime; | |
2d21ac55 | 1095 | #endif |
91447636 A |
1096 | exp->p_realtimer.it_interval.tv_sec = p->p_realtimer.it_interval.tv_sec; |
1097 | exp->p_realtimer.it_interval.tv_usec = p->p_realtimer.it_interval.tv_usec; | |
316670eb | 1098 | |
91447636 A |
1099 | exp->p_realtimer.it_value.tv_sec = p->p_realtimer.it_value.tv_sec; |
1100 | exp->p_realtimer.it_value.tv_usec = p->p_realtimer.it_value.tv_usec; | |
316670eb | 1101 | |
91447636 A |
1102 | exp->p_rtime.tv_sec = p->p_rtime.tv_sec; |
1103 | exp->p_rtime.tv_usec = p->p_rtime.tv_usec; | |
316670eb A |
1104 | |
1105 | exp->p_sigignore = p->p_sigignore; | |
1106 | exp->p_sigcatch = p->p_sigcatch; | |
1107 | exp->p_priority = p->p_priority; | |
1108 | exp->p_nice = p->p_nice; | |
1109 | bcopy(&p->p_comm, &exp->p_comm, MAXCOMLEN); | |
1110 | exp->p_xstat = p->p_xstat; | |
1111 | exp->p_acflag = p->p_acflag; | |
1c79356b A |
1112 | } |
1113 | ||
6d2010ae | 1114 | STATIC void |
316670eb | 1115 | fill_user32_proc(proc_t p, struct user32_kinfo_proc *__restrict kp) |
55e303ae | 1116 | { |
316670eb | 1117 | /* on a 64 bit kernel, 32 bit users get some truncated information */ |
b0d623f7 A |
1118 | fill_user32_externproc(p, &kp->kp_proc); |
1119 | fill_user32_eproc(p, &kp->kp_eproc); | |
55e303ae A |
1120 | } |
1121 | ||
6d2010ae | 1122 | STATIC void |
316670eb | 1123 | fill_user64_proc(proc_t p, struct user64_kinfo_proc *__restrict kp) |
91447636 | 1124 | { |
b0d623f7 A |
1125 | fill_user64_externproc(p, &kp->kp_proc); |
1126 | fill_user64_eproc(p, &kp->kp_eproc); | |
91447636 A |
1127 | } |
1128 | ||
6d2010ae A |
1129 | STATIC int |
1130 | sysctl_kdebug_ops SYSCTL_HANDLER_ARGS | |
1c79356b | 1131 | { |
6d2010ae A |
1132 | __unused int cmd = oidp->oid_arg2; /* subcommand*/ |
1133 | int *name = arg1; /* oid element argument vector */ | |
1134 | int namelen = arg2; /* number of oid element arguments */ | |
1135 | user_addr_t oldp = req->oldptr; /* user buffer copy out address */ | |
1136 | size_t *oldlenp = &req->oldlen; /* user buffer copy out size */ | |
1137 | // user_addr_t newp = req->newptr; /* user buffer copy in address */ | |
1138 | // size_t newlen = req->newlen; /* user buffer copy in size */ | |
1139 | ||
1140 | proc_t p = current_proc(); | |
9bccf70c | 1141 | int ret=0; |
1c79356b | 1142 | |
c910b4d9 A |
1143 | if (namelen == 0) |
1144 | return(ENOTSUP); | |
b0d623f7 | 1145 | |
6d2010ae | 1146 | ret = suser(kauth_cred_get(), &p->p_acflag); |
39236c6e A |
1147 | #if KPERF |
1148 | /* Non-root processes may be blessed by kperf to access data | |
1149 | * logged into trace. | |
1150 | */ | |
1151 | if (ret) | |
1152 | ret = kperf_access_check(); | |
1153 | #endif /* KPERF */ | |
91447636 | 1154 | if (ret) |
9bccf70c | 1155 | return(ret); |
b0d623f7 | 1156 | |
1c79356b A |
1157 | switch(name[0]) { |
1158 | case KERN_KDEFLAGS: | |
1159 | case KERN_KDDFLAGS: | |
1160 | case KERN_KDENABLE: | |
1161 | case KERN_KDGETBUF: | |
1162 | case KERN_KDSETUP: | |
1163 | case KERN_KDREMOVE: | |
1164 | case KERN_KDSETREG: | |
1165 | case KERN_KDGETREG: | |
1166 | case KERN_KDREADTR: | |
6d2010ae A |
1167 | case KERN_KDWRITETR: |
1168 | case KERN_KDWRITEMAP: | |
1c79356b A |
1169 | case KERN_KDPIDTR: |
1170 | case KERN_KDTHRMAP: | |
1171 | case KERN_KDPIDEX: | |
1172 | case KERN_KDSETRTCDEC: | |
1173 | case KERN_KDSETBUF: | |
9bccf70c | 1174 | case KERN_KDGETENTROPY: |
316670eb A |
1175 | case KERN_KDENABLE_BG_TRACE: |
1176 | case KERN_KDDISABLE_BG_TRACE: | |
39236c6e | 1177 | case KERN_KDREADCURTHRMAP: |
316670eb | 1178 | case KERN_KDSET_TYPEFILTER: |
39236c6e A |
1179 | case KERN_KDBUFWAIT: |
1180 | case KERN_KDCPUMAP: | |
316670eb | 1181 | |
6d2010ae | 1182 | ret = kdbg_control(name, namelen, oldp, oldlenp); |
1c79356b A |
1183 | break; |
1184 | default: | |
91447636 | 1185 | ret= ENOTSUP; |
1c79356b A |
1186 | break; |
1187 | } | |
6d2010ae A |
1188 | |
1189 | /* adjust index so we return the right required/consumed amount */ | |
1190 | if (!ret) | |
1191 | req->oldidx += req->oldlen; | |
1192 | ||
1193 | return (ret); | |
1c79356b | 1194 | } |
6d2010ae A |
1195 | SYSCTL_PROC(_kern, KERN_KDEBUG, kdebug, CTLTYPE_NODE|CTLFLAG_RD | CTLFLAG_LOCKED, |
1196 | 0, /* Pointer argument (arg1) */ | |
1197 | 0, /* Integer argument (arg2) */ | |
1198 | sysctl_kdebug_ops, /* Handler function */ | |
1199 | NULL, /* Data pointer */ | |
1200 | ""); | |
1c79356b | 1201 | |
1c79356b A |
1202 | |
1203 | /* | |
55e303ae A |
1204 | * Return the top *sizep bytes of the user stack, or the entire area of the |
1205 | * user stack down through the saved exec_path, whichever is smaller. | |
1c79356b | 1206 | */ |
6d2010ae A |
1207 | STATIC int |
1208 | sysctl_doprocargs SYSCTL_HANDLER_ARGS | |
1209 | { | |
1210 | __unused int cmd = oidp->oid_arg2; /* subcommand*/ | |
1211 | int *name = arg1; /* oid element argument vector */ | |
1212 | int namelen = arg2; /* number of oid element arguments */ | |
1213 | user_addr_t oldp = req->oldptr; /* user buffer copy out address */ | |
1214 | size_t *oldlenp = &req->oldlen; /* user buffer copy out size */ | |
1215 | // user_addr_t newp = req->newptr; /* user buffer copy in address */ | |
1216 | // size_t newlen = req->newlen; /* user buffer copy in size */ | |
1217 | int error; | |
1218 | ||
1219 | error = sysctl_procargsx( name, namelen, oldp, oldlenp, current_proc(), 0); | |
1220 | ||
1221 | /* adjust index so we return the right required/consumed amount */ | |
1222 | if (!error) | |
1223 | req->oldidx += req->oldlen; | |
1224 | ||
1225 | return (error); | |
55e303ae | 1226 | } |
6d2010ae A |
1227 | SYSCTL_PROC(_kern, KERN_PROCARGS, procargs, CTLTYPE_NODE|CTLFLAG_RD | CTLFLAG_LOCKED, |
1228 | 0, /* Pointer argument (arg1) */ | |
1229 | 0, /* Integer argument (arg2) */ | |
1230 | sysctl_doprocargs, /* Handler function */ | |
1231 | NULL, /* Data pointer */ | |
1232 | ""); | |
6d2010ae A |
1233 | |
1234 | STATIC int | |
1235 | sysctl_doprocargs2 SYSCTL_HANDLER_ARGS | |
1236 | { | |
1237 | __unused int cmd = oidp->oid_arg2; /* subcommand*/ | |
1238 | int *name = arg1; /* oid element argument vector */ | |
1239 | int namelen = arg2; /* number of oid element arguments */ | |
1240 | user_addr_t oldp = req->oldptr; /* user buffer copy out address */ | |
1241 | size_t *oldlenp = &req->oldlen; /* user buffer copy out size */ | |
1242 | // user_addr_t newp = req->newptr; /* user buffer copy in address */ | |
1243 | // size_t newlen = req->newlen; /* user buffer copy in size */ | |
1244 | int error; | |
55e303ae | 1245 | |
6d2010ae A |
1246 | error = sysctl_procargsx( name, namelen, oldp, oldlenp, current_proc(), 1); |
1247 | ||
1248 | /* adjust index so we return the right required/consumed amount */ | |
1249 | if (!error) | |
1250 | req->oldidx += req->oldlen; | |
1251 | ||
1252 | return (error); | |
55e303ae | 1253 | } |
6d2010ae A |
1254 | SYSCTL_PROC(_kern, KERN_PROCARGS2, procargs2, CTLTYPE_NODE|CTLFLAG_RD | CTLFLAG_LOCKED, |
1255 | 0, /* Pointer argument (arg1) */ | |
1256 | 0, /* Integer argument (arg2) */ | |
1257 | sysctl_doprocargs2, /* Handler function */ | |
1258 | NULL, /* Data pointer */ | |
1259 | ""); | |
55e303ae | 1260 | |
6d2010ae | 1261 | STATIC int |
c910b4d9 | 1262 | sysctl_procargsx(int *name, u_int namelen, user_addr_t where, |
2d21ac55 | 1263 | size_t *sizep, proc_t cur_proc, int argc_yes) |
1c79356b | 1264 | { |
2d21ac55 | 1265 | proc_t p; |
91447636 | 1266 | int buflen = where != USER_ADDR_NULL ? *sizep : 0; |
1c79356b | 1267 | int error = 0; |
2d21ac55 | 1268 | struct _vm_map *proc_map; |
1c79356b A |
1269 | struct task * task; |
1270 | vm_map_copy_t tmp; | |
91447636 A |
1271 | user_addr_t arg_addr; |
1272 | size_t arg_size; | |
1c79356b | 1273 | caddr_t data; |
2d21ac55 | 1274 | size_t argslen=0; |
91447636 | 1275 | int size; |
1c79356b | 1276 | vm_offset_t copy_start, copy_end; |
1c79356b A |
1277 | kern_return_t ret; |
1278 | int pid; | |
2d21ac55 A |
1279 | kauth_cred_t my_cred; |
1280 | uid_t uid; | |
1c79356b | 1281 | |
c910b4d9 A |
1282 | if ( namelen < 1 ) |
1283 | return(EINVAL); | |
b0d623f7 | 1284 | |
55e303ae | 1285 | if (argc_yes) |
91447636 | 1286 | buflen -= sizeof(int); /* reserve first word to return argc */ |
1c79356b | 1287 | |
91447636 A |
1288 | /* we only care about buflen when where (oldp from sysctl) is not NULL. */ |
1289 | /* when where (oldp from sysctl) is NULL and sizep (oldlenp from sysctl */ | |
1290 | /* is not NULL then the caller wants us to return the length needed to */ | |
1291 | /* hold the data we would return */ | |
1292 | if (where != USER_ADDR_NULL && (buflen <= 0 || buflen > ARG_MAX)) { | |
1c79356b A |
1293 | return(EINVAL); |
1294 | } | |
1295 | arg_size = buflen; | |
1296 | ||
1297 | /* | |
1298 | * Lookup process by pid | |
1299 | */ | |
1300 | pid = name[0]; | |
2d21ac55 | 1301 | p = proc_find(pid); |
1c79356b A |
1302 | if (p == NULL) { |
1303 | return(EINVAL); | |
1304 | } | |
1305 | ||
1306 | /* | |
1307 | * Copy the top N bytes of the stack. | |
1308 | * On all machines we have so far, the stack grows | |
1309 | * downwards. | |
1310 | * | |
1311 | * If the user expects no more than N bytes of | |
1312 | * argument list, use that as a guess for the | |
1313 | * size. | |
1314 | */ | |
1315 | ||
2d21ac55 A |
1316 | if (!p->user_stack) { |
1317 | proc_rele(p); | |
1c79356b | 1318 | return(EINVAL); |
2d21ac55 | 1319 | } |
1c79356b | 1320 | |
91447636 A |
1321 | if (where == USER_ADDR_NULL) { |
1322 | /* caller only wants to know length of proc args data */ | |
2d21ac55 A |
1323 | if (sizep == NULL) { |
1324 | proc_rele(p); | |
91447636 | 1325 | return(EFAULT); |
2d21ac55 | 1326 | } |
91447636 A |
1327 | |
1328 | size = p->p_argslen; | |
2d21ac55 | 1329 | proc_rele(p); |
91447636 A |
1330 | if (argc_yes) { |
1331 | size += sizeof(int); | |
1332 | } | |
1333 | else { | |
1334 | /* | |
1335 | * old PROCARGS will return the executable's path and plus some | |
1336 | * extra space for work alignment and data tags | |
1337 | */ | |
1338 | size += PATH_MAX + (6 * sizeof(int)); | |
1339 | } | |
1340 | size += (size & (sizeof(int) - 1)) ? (sizeof(int) - (size & (sizeof(int) - 1))) : 0; | |
1341 | *sizep = size; | |
1342 | return (0); | |
1343 | } | |
1344 | ||
2d21ac55 A |
1345 | my_cred = kauth_cred_proc_ref(p); |
1346 | uid = kauth_cred_getuid(my_cred); | |
1347 | kauth_cred_unref(&my_cred); | |
1348 | ||
1349 | if ((uid != kauth_cred_getuid(kauth_cred_get())) | |
1350 | && suser(kauth_cred_get(), &cur_proc->p_acflag)) { | |
1351 | proc_rele(p); | |
9bccf70c | 1352 | return (EINVAL); |
2d21ac55 | 1353 | } |
91447636 A |
1354 | |
1355 | if ((u_int)arg_size > p->p_argslen) | |
1356 | arg_size = round_page(p->p_argslen); | |
1357 | ||
1358 | arg_addr = p->user_stack - arg_size; | |
1c79356b A |
1359 | |
1360 | ||
1361 | /* | |
1362 | * Before we can block (any VM code), make another | |
1363 | * reference to the map to keep it alive. We do | |
1364 | * that by getting a reference on the task itself. | |
1365 | */ | |
1366 | task = p->task; | |
2d21ac55 A |
1367 | if (task == NULL) { |
1368 | proc_rele(p); | |
1c79356b | 1369 | return(EINVAL); |
2d21ac55 | 1370 | } |
1c79356b | 1371 | |
2d21ac55 | 1372 | argslen = p->p_argslen; |
0b4e3aa0 | 1373 | /* |
91447636 A |
1374 | * Once we have a task reference we can convert that into a |
1375 | * map reference, which we will use in the calls below. The | |
1376 | * task/process may change its map after we take this reference | |
1377 | * (see execve), but the worst that will happen then is a return | |
1378 | * of stale info (which is always a possibility). | |
0b4e3aa0 | 1379 | */ |
91447636 | 1380 | task_reference(task); |
2d21ac55 | 1381 | proc_rele(p); |
91447636 A |
1382 | proc_map = get_task_map_reference(task); |
1383 | task_deallocate(task); | |
2d21ac55 | 1384 | |
91447636 A |
1385 | if (proc_map == NULL) |
1386 | return(EINVAL); | |
1c79356b | 1387 | |
91447636 A |
1388 | |
1389 | ret = kmem_alloc(kernel_map, ©_start, round_page(arg_size)); | |
1c79356b | 1390 | if (ret != KERN_SUCCESS) { |
91447636 | 1391 | vm_map_deallocate(proc_map); |
1c79356b A |
1392 | return(ENOMEM); |
1393 | } | |
1394 | ||
91447636 | 1395 | copy_end = round_page(copy_start + arg_size); |
1c79356b | 1396 | |
91447636 A |
1397 | if( vm_map_copyin(proc_map, (vm_map_address_t)arg_addr, |
1398 | (vm_map_size_t)arg_size, FALSE, &tmp) != KERN_SUCCESS) { | |
1399 | vm_map_deallocate(proc_map); | |
1c79356b | 1400 | kmem_free(kernel_map, copy_start, |
91447636 | 1401 | round_page(arg_size)); |
1c79356b A |
1402 | return (EIO); |
1403 | } | |
1404 | ||
1405 | /* | |
1406 | * Now that we've done the copyin from the process' | |
1407 | * map, we can release the reference to it. | |
1408 | */ | |
91447636 | 1409 | vm_map_deallocate(proc_map); |
1c79356b | 1410 | |
91447636 A |
1411 | if( vm_map_copy_overwrite(kernel_map, |
1412 | (vm_map_address_t)copy_start, | |
1413 | tmp, FALSE) != KERN_SUCCESS) { | |
1c79356b | 1414 | kmem_free(kernel_map, copy_start, |
91447636 | 1415 | round_page(arg_size)); |
1c79356b A |
1416 | return (EIO); |
1417 | } | |
1418 | ||
2d21ac55 A |
1419 | if (arg_size > argslen) { |
1420 | data = (caddr_t) (copy_end - argslen); | |
1421 | size = argslen; | |
55e303ae | 1422 | } else { |
91447636 A |
1423 | data = (caddr_t) (copy_end - arg_size); |
1424 | size = arg_size; | |
55e303ae | 1425 | } |
1c79356b | 1426 | |
55e303ae A |
1427 | if (argc_yes) { |
1428 | /* Put processes argc as the first word in the copyout buffer */ | |
1429 | suword(where, p->p_argc); | |
91447636 A |
1430 | error = copyout(data, (where + sizeof(int)), size); |
1431 | size += sizeof(int); | |
55e303ae A |
1432 | } else { |
1433 | error = copyout(data, where, size); | |
1434 | ||
1435 | /* | |
1436 | * Make the old PROCARGS work to return the executable's path | |
1437 | * But, only if there is enough space in the provided buffer | |
1438 | * | |
1439 | * on entry: data [possibily] points to the beginning of the path | |
1440 | * | |
1441 | * Note: we keep all pointers&sizes aligned to word boundries | |
1442 | */ | |
2d21ac55 | 1443 | if ( (! error) && (buflen > 0 && (u_int)buflen > argslen) ) |
55e303ae | 1444 | { |
91447636 | 1445 | int binPath_sz, alignedBinPath_sz = 0; |
55e303ae | 1446 | int extraSpaceNeeded, addThis; |
91447636 | 1447 | user_addr_t placeHere; |
55e303ae | 1448 | char * str = (char *) data; |
91447636 | 1449 | int max_len = size; |
55e303ae A |
1450 | |
1451 | /* Some apps are really bad about messing up their stacks | |
1452 | So, we have to be extra careful about getting the length | |
1453 | of the executing binary. If we encounter an error, we bail. | |
1454 | */ | |
1455 | ||
1456 | /* Limit ourselves to PATH_MAX paths */ | |
1457 | if ( max_len > PATH_MAX ) max_len = PATH_MAX; | |
1458 | ||
1459 | binPath_sz = 0; | |
1460 | ||
1461 | while ( (binPath_sz < max_len-1) && (*str++ != 0) ) | |
1462 | binPath_sz++; | |
1463 | ||
91447636 | 1464 | /* If we have a NUL terminator, copy it, too */ |
55e303ae A |
1465 | if (binPath_sz < max_len-1) binPath_sz += 1; |
1466 | ||
1467 | /* Pre-Flight the space requiremnts */ | |
1468 | ||
1469 | /* Account for the padding that fills out binPath to the next word */ | |
91447636 | 1470 | alignedBinPath_sz += (binPath_sz & (sizeof(int)-1)) ? (sizeof(int)-(binPath_sz & (sizeof(int)-1))) : 0; |
55e303ae A |
1471 | |
1472 | placeHere = where + size; | |
1473 | ||
1474 | /* Account for the bytes needed to keep placeHere word aligned */ | |
91447636 | 1475 | addThis = (placeHere & (sizeof(int)-1)) ? (sizeof(int)-(placeHere & (sizeof(int)-1))) : 0; |
55e303ae A |
1476 | |
1477 | /* Add up all the space that is needed */ | |
91447636 | 1478 | extraSpaceNeeded = alignedBinPath_sz + addThis + binPath_sz + (4 * sizeof(int)); |
55e303ae A |
1479 | |
1480 | /* is there is room to tack on argv[0]? */ | |
2d21ac55 | 1481 | if ( (buflen & ~(sizeof(int)-1)) >= ( argslen + extraSpaceNeeded )) |
55e303ae A |
1482 | { |
1483 | placeHere += addThis; | |
1484 | suword(placeHere, 0); | |
91447636 | 1485 | placeHere += sizeof(int); |
55e303ae | 1486 | suword(placeHere, 0xBFFF0000); |
91447636 | 1487 | placeHere += sizeof(int); |
55e303ae | 1488 | suword(placeHere, 0); |
91447636 | 1489 | placeHere += sizeof(int); |
55e303ae A |
1490 | error = copyout(data, placeHere, binPath_sz); |
1491 | if ( ! error ) | |
1492 | { | |
1493 | placeHere += binPath_sz; | |
1494 | suword(placeHere, 0); | |
1495 | size += extraSpaceNeeded; | |
1496 | } | |
1497 | } | |
1498 | } | |
1499 | } | |
1500 | ||
1501 | if (copy_start != (vm_offset_t) 0) { | |
1502 | kmem_free(kernel_map, copy_start, copy_end - copy_start); | |
1c79356b A |
1503 | } |
1504 | if (error) { | |
1505 | return(error); | |
1506 | } | |
1507 | ||
91447636 | 1508 | if (where != USER_ADDR_NULL) |
1c79356b A |
1509 | *sizep = size; |
1510 | return (0); | |
1511 | } | |
55e303ae A |
1512 | |
1513 | ||
1514 | /* | |
2d21ac55 | 1515 | * Max number of concurrent aio requests |
55e303ae | 1516 | */ |
6d2010ae | 1517 | STATIC int |
2d21ac55 A |
1518 | sysctl_aiomax |
1519 | (__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req) | |
55e303ae | 1520 | { |
2d21ac55 A |
1521 | int new_value, changed; |
1522 | int error = sysctl_io_number(req, aio_max_requests, sizeof(int), &new_value, &changed); | |
1523 | if (changed) { | |
1524 | /* make sure the system-wide limit is greater than the per process limit */ | |
316670eb | 1525 | if (new_value >= aio_max_requests_per_process && new_value <= AIO_MAX_REQUESTS) |
55e303ae A |
1526 | aio_max_requests = new_value; |
1527 | else | |
1528 | error = EINVAL; | |
1529 | } | |
2d21ac55 A |
1530 | return(error); |
1531 | } | |
55e303ae A |
1532 | |
1533 | ||
1534 | /* | |
2d21ac55 | 1535 | * Max number of concurrent aio requests per process |
55e303ae | 1536 | */ |
6d2010ae | 1537 | STATIC int |
2d21ac55 A |
1538 | sysctl_aioprocmax |
1539 | (__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req) | |
55e303ae | 1540 | { |
2d21ac55 A |
1541 | int new_value, changed; |
1542 | int error = sysctl_io_number(req, aio_max_requests_per_process, sizeof(int), &new_value, &changed); | |
1543 | if (changed) { | |
1544 | /* make sure per process limit is less than the system-wide limit */ | |
1545 | if (new_value <= aio_max_requests && new_value >= AIO_LISTIO_MAX) | |
55e303ae A |
1546 | aio_max_requests_per_process = new_value; |
1547 | else | |
1548 | error = EINVAL; | |
1549 | } | |
2d21ac55 A |
1550 | return(error); |
1551 | } | |
55e303ae A |
1552 | |
1553 | ||
1554 | /* | |
2d21ac55 | 1555 | * Max number of async IO worker threads |
55e303ae | 1556 | */ |
6d2010ae | 1557 | STATIC int |
2d21ac55 A |
1558 | sysctl_aiothreads |
1559 | (__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req) | |
55e303ae | 1560 | { |
2d21ac55 A |
1561 | int new_value, changed; |
1562 | int error = sysctl_io_number(req, aio_worker_threads, sizeof(int), &new_value, &changed); | |
1563 | if (changed) { | |
1564 | /* we only allow an increase in the number of worker threads */ | |
55e303ae | 1565 | if (new_value > aio_worker_threads ) { |
2d21ac55 | 1566 | _aio_create_worker_threads((new_value - aio_worker_threads)); |
55e303ae A |
1567 | aio_worker_threads = new_value; |
1568 | } | |
1569 | else | |
1570 | error = EINVAL; | |
1571 | } | |
2d21ac55 A |
1572 | return(error); |
1573 | } | |
55e303ae A |
1574 | |
1575 | ||
1576 | /* | |
2d21ac55 | 1577 | * System-wide limit on the max number of processes |
55e303ae | 1578 | */ |
6d2010ae | 1579 | STATIC int |
2d21ac55 A |
1580 | sysctl_maxproc |
1581 | (__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req) | |
55e303ae | 1582 | { |
2d21ac55 A |
1583 | int new_value, changed; |
1584 | int error = sysctl_io_number(req, maxproc, sizeof(int), &new_value, &changed); | |
1585 | if (changed) { | |
b0d623f7 | 1586 | AUDIT_ARG(value32, new_value); |
2d21ac55 A |
1587 | /* make sure the system-wide limit is less than the configured hard |
1588 | limit set at kernel compilation */ | |
1589 | if (new_value <= hard_maxproc && new_value > 0) | |
1590 | maxproc = new_value; | |
1591 | else | |
55e303ae A |
1592 | error = EINVAL; |
1593 | } | |
2d21ac55 A |
1594 | return(error); |
1595 | } | |
55e303ae | 1596 | |
2d21ac55 | 1597 | SYSCTL_STRING(_kern, KERN_OSTYPE, ostype, |
6d2010ae | 1598 | CTLFLAG_RD | CTLFLAG_KERN | CTLFLAG_LOCKED, |
2d21ac55 A |
1599 | ostype, 0, ""); |
1600 | SYSCTL_STRING(_kern, KERN_OSRELEASE, osrelease, | |
6d2010ae | 1601 | CTLFLAG_RD | CTLFLAG_KERN | CTLFLAG_LOCKED, |
2d21ac55 A |
1602 | osrelease, 0, ""); |
1603 | SYSCTL_INT(_kern, KERN_OSREV, osrevision, | |
6d2010ae | 1604 | CTLFLAG_RD | CTLFLAG_KERN | CTLFLAG_LOCKED, |
b0d623f7 | 1605 | (int *)NULL, BSD, ""); |
2d21ac55 | 1606 | SYSCTL_STRING(_kern, KERN_VERSION, version, |
6d2010ae | 1607 | CTLFLAG_RD | CTLFLAG_KERN | CTLFLAG_LOCKED, |
2d21ac55 | 1608 | version, 0, ""); |
6d2010ae A |
1609 | SYSCTL_STRING(_kern, OID_AUTO, uuid, |
1610 | CTLFLAG_RD | CTLFLAG_KERN | CTLFLAG_LOCKED, | |
39236c6e | 1611 | &kernel_uuid_string[0], 0, ""); |
2d21ac55 | 1612 | |
b0d623f7 A |
1613 | #if DEBUG |
1614 | int debug_kprint_syscall = 0; | |
1615 | char debug_kprint_syscall_process[MAXCOMLEN+1]; | |
1616 | ||
6d2010ae | 1617 | /* Thread safe: bits and string value are not used to reclaim state */ |
b0d623f7 | 1618 | SYSCTL_INT (_debug, OID_AUTO, kprint_syscall, |
6d2010ae | 1619 | CTLFLAG_RW | CTLFLAG_LOCKED, &debug_kprint_syscall, 0, "kprintf syscall tracing"); |
b0d623f7 | 1620 | SYSCTL_STRING(_debug, OID_AUTO, kprint_syscall_process, |
6d2010ae | 1621 | CTLFLAG_RW | CTLFLAG_LOCKED, debug_kprint_syscall_process, sizeof(debug_kprint_syscall_process), |
b0d623f7 A |
1622 | "name of process for kprintf syscall tracing"); |
1623 | ||
1624 | int debug_kprint_current_process(const char **namep) | |
1625 | { | |
1626 | struct proc *p = current_proc(); | |
1627 | ||
1628 | if (p == NULL) { | |
1629 | return 0; | |
1630 | } | |
1631 | ||
1632 | if (debug_kprint_syscall_process[0]) { | |
1633 | /* user asked to scope tracing to a particular process name */ | |
1634 | if(0 == strncmp(debug_kprint_syscall_process, | |
1635 | p->p_comm, sizeof(debug_kprint_syscall_process))) { | |
1636 | /* no value in telling the user that we traced what they asked */ | |
1637 | if(namep) *namep = NULL; | |
1638 | ||
1639 | return 1; | |
1640 | } else { | |
1641 | return 0; | |
1642 | } | |
1643 | } | |
1644 | ||
1645 | /* trace all processes. Tell user what we traced */ | |
1646 | if (namep) { | |
1647 | *namep = p->p_comm; | |
1648 | } | |
1649 | ||
1650 | return 1; | |
1651 | } | |
1652 | #endif | |
1653 | ||
2d21ac55 A |
1654 | /* PR-5293665: need to use a callback function for kern.osversion to set |
1655 | * osversion in IORegistry */ | |
55e303ae | 1656 | |
6d2010ae | 1657 | STATIC int |
2d21ac55 | 1658 | sysctl_osversion(__unused struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req) |
55e303ae | 1659 | { |
2d21ac55 | 1660 | int rval = 0; |
55e303ae | 1661 | |
2d21ac55 A |
1662 | rval = sysctl_handle_string(oidp, arg1, arg2, req); |
1663 | ||
1664 | if (req->newptr) { | |
1665 | IORegistrySetOSBuildVersion((char *)arg1); | |
1666 | } | |
1667 | ||
1668 | return rval; | |
1669 | } | |
1670 | ||
1671 | SYSCTL_PROC(_kern, KERN_OSVERSION, osversion, | |
6d2010ae | 1672 | CTLFLAG_RW | CTLFLAG_KERN | CTLTYPE_STRING | CTLFLAG_LOCKED, |
2d21ac55 A |
1673 | osversion, 256 /* OSVERSIZE*/, |
1674 | sysctl_osversion, "A", ""); | |
1675 | ||
6d2010ae | 1676 | STATIC int |
2d21ac55 A |
1677 | sysctl_sysctl_bootargs |
1678 | (__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req) | |
1679 | { | |
1680 | int error; | |
1681 | char buf[256]; | |
1682 | ||
1683 | strlcpy(buf, PE_boot_args(), 256); | |
1684 | error = sysctl_io_string(req, buf, 256, 0, NULL); | |
1685 | return(error); | |
1686 | } | |
1687 | ||
1688 | SYSCTL_PROC(_kern, OID_AUTO, bootargs, | |
1689 | CTLFLAG_LOCKED | CTLFLAG_RD | CTLFLAG_KERN | CTLTYPE_STRING, | |
1690 | NULL, 0, | |
1691 | sysctl_sysctl_bootargs, "A", "bootargs"); | |
1692 | ||
1693 | SYSCTL_INT(_kern, KERN_MAXFILES, maxfiles, | |
6d2010ae | 1694 | CTLFLAG_RW | CTLFLAG_KERN | CTLFLAG_LOCKED, |
2d21ac55 A |
1695 | &maxfiles, 0, ""); |
1696 | SYSCTL_INT(_kern, KERN_ARGMAX, argmax, | |
6d2010ae | 1697 | CTLFLAG_RD | CTLFLAG_KERN | CTLFLAG_LOCKED, |
b0d623f7 | 1698 | (int *)NULL, ARG_MAX, ""); |
2d21ac55 | 1699 | SYSCTL_INT(_kern, KERN_POSIX1, posix1version, |
6d2010ae | 1700 | CTLFLAG_RD | CTLFLAG_KERN | CTLFLAG_LOCKED, |
b0d623f7 | 1701 | (int *)NULL, _POSIX_VERSION, ""); |
2d21ac55 | 1702 | SYSCTL_INT(_kern, KERN_NGROUPS, ngroups, |
6d2010ae | 1703 | CTLFLAG_RD | CTLFLAG_KERN | CTLFLAG_LOCKED, |
b0d623f7 | 1704 | (int *)NULL, NGROUPS_MAX, ""); |
2d21ac55 | 1705 | SYSCTL_INT(_kern, KERN_JOB_CONTROL, job_control, |
6d2010ae | 1706 | CTLFLAG_RD | CTLFLAG_KERN | CTLFLAG_LOCKED, |
b0d623f7 | 1707 | (int *)NULL, 1, ""); |
2d21ac55 A |
1708 | #if 1 /* _POSIX_SAVED_IDS from <unistd.h> */ |
1709 | SYSCTL_INT(_kern, KERN_SAVED_IDS, saved_ids, | |
6d2010ae | 1710 | CTLFLAG_RD | CTLFLAG_KERN | CTLFLAG_LOCKED, |
b0d623f7 | 1711 | (int *)NULL, 1, ""); |
2d21ac55 A |
1712 | #else |
1713 | SYSCTL_INT(_kern, KERN_SAVED_IDS, saved_ids, | |
6d2010ae | 1714 | CTLFLAG_RD | CTLFLAG_KERN | CTLFLAG_LOCKED, |
2d21ac55 A |
1715 | NULL, 0, ""); |
1716 | #endif | |
b0d623f7 | 1717 | SYSCTL_INT(_kern, OID_AUTO, num_files, |
6d2010ae | 1718 | CTLFLAG_RD | CTLFLAG_LOCKED, |
b0d623f7 A |
1719 | &nfiles, 0, ""); |
1720 | SYSCTL_COMPAT_INT(_kern, OID_AUTO, num_vnodes, | |
6d2010ae | 1721 | CTLFLAG_RD | CTLFLAG_LOCKED, |
b0d623f7 A |
1722 | &numvnodes, 0, ""); |
1723 | SYSCTL_INT(_kern, OID_AUTO, num_tasks, | |
6d2010ae | 1724 | CTLFLAG_RD | CTLFLAG_LOCKED, |
b0d623f7 A |
1725 | &task_max, 0, ""); |
1726 | SYSCTL_INT(_kern, OID_AUTO, num_threads, | |
6d2010ae | 1727 | CTLFLAG_RD | CTLFLAG_LOCKED, |
b0d623f7 A |
1728 | &thread_max, 0, ""); |
1729 | SYSCTL_INT(_kern, OID_AUTO, num_taskthreads, | |
6d2010ae | 1730 | CTLFLAG_RD | CTLFLAG_LOCKED, |
b0d623f7 | 1731 | &task_threadmax, 0, ""); |
2d21ac55 | 1732 | |
6d2010ae | 1733 | STATIC int |
2d21ac55 A |
1734 | sysctl_maxvnodes (__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req) |
1735 | { | |
b0d623f7 | 1736 | int oldval = desiredvnodes; |
2d21ac55 | 1737 | int error = sysctl_io_number(req, desiredvnodes, sizeof(int), &desiredvnodes, NULL); |
b0d623f7 A |
1738 | |
1739 | if (oldval != desiredvnodes) { | |
1740 | reset_vmobjectcache(oldval, desiredvnodes); | |
1741 | resize_namecache(desiredvnodes); | |
1742 | } | |
1743 | ||
2d21ac55 A |
1744 | return(error); |
1745 | } | |
1746 | ||
6d2010ae A |
1747 | SYSCTL_INT(_kern, OID_AUTO, namecache_disabled, |
1748 | CTLFLAG_RW | CTLFLAG_LOCKED, | |
1749 | &nc_disabled, 0, ""); | |
1750 | ||
2d21ac55 | 1751 | SYSCTL_PROC(_kern, KERN_MAXVNODES, maxvnodes, |
6d2010ae | 1752 | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_LOCKED, |
2d21ac55 A |
1753 | 0, 0, sysctl_maxvnodes, "I", ""); |
1754 | ||
1755 | SYSCTL_PROC(_kern, KERN_MAXPROC, maxproc, | |
6d2010ae | 1756 | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_LOCKED, |
2d21ac55 A |
1757 | 0, 0, sysctl_maxproc, "I", ""); |
1758 | ||
1759 | SYSCTL_PROC(_kern, KERN_AIOMAX, aiomax, | |
6d2010ae | 1760 | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_LOCKED, |
2d21ac55 A |
1761 | 0, 0, sysctl_aiomax, "I", ""); |
1762 | ||
1763 | SYSCTL_PROC(_kern, KERN_AIOPROCMAX, aioprocmax, | |
6d2010ae | 1764 | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_LOCKED, |
2d21ac55 A |
1765 | 0, 0, sysctl_aioprocmax, "I", ""); |
1766 | ||
1767 | SYSCTL_PROC(_kern, KERN_AIOTHREADS, aiothreads, | |
6d2010ae | 1768 | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_LOCKED, |
2d21ac55 A |
1769 | 0, 0, sysctl_aiothreads, "I", ""); |
1770 | ||
fe8ab488 A |
1771 | #if (DEVELOPMENT || DEBUG) |
1772 | extern int sched_smt_balance; | |
1773 | SYSCTL_INT(_kern, OID_AUTO, sched_smt_balance, | |
1774 | CTLFLAG_KERN| CTLFLAG_RW| CTLFLAG_LOCKED, | |
1775 | &sched_smt_balance, 0, ""); | |
1776 | #endif | |
1777 | ||
6d2010ae | 1778 | STATIC int |
2d21ac55 A |
1779 | sysctl_securelvl |
1780 | (__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req) | |
1781 | { | |
1782 | int new_value, changed; | |
1783 | int error = sysctl_io_number(req, securelevel, sizeof(int), &new_value, &changed); | |
1784 | if (changed) { | |
1785 | if (!(new_value < securelevel && req->p->p_pid != 1)) { | |
1786 | proc_list_lock(); | |
1787 | securelevel = new_value; | |
1788 | proc_list_unlock(); | |
1789 | } else { | |
1790 | error = EPERM; | |
e5568f75 | 1791 | } |
2d21ac55 A |
1792 | } |
1793 | return(error); | |
1794 | } | |
1795 | ||
1796 | SYSCTL_PROC(_kern, KERN_SECURELVL, securelevel, | |
6d2010ae | 1797 | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_LOCKED, |
2d21ac55 A |
1798 | 0, 0, sysctl_securelvl, "I", ""); |
1799 | ||
1800 | ||
6d2010ae | 1801 | STATIC int |
2d21ac55 A |
1802 | sysctl_domainname |
1803 | (__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req) | |
1804 | { | |
1805 | int error, changed; | |
1806 | error = sysctl_io_string(req, domainname, sizeof(domainname), 0, &changed); | |
1807 | if (changed) { | |
1808 | domainnamelen = strlen(domainname); | |
1809 | } | |
1810 | return(error); | |
1811 | } | |
1812 | ||
1813 | SYSCTL_PROC(_kern, KERN_DOMAINNAME, nisdomainname, | |
6d2010ae | 1814 | CTLTYPE_STRING | CTLFLAG_RW | CTLFLAG_LOCKED, |
2d21ac55 A |
1815 | 0, 0, sysctl_domainname, "A", ""); |
1816 | ||
b0d623f7 | 1817 | SYSCTL_COMPAT_INT(_kern, KERN_HOSTID, hostid, |
6d2010ae | 1818 | CTLFLAG_RW | CTLFLAG_KERN | CTLFLAG_LOCKED, |
2d21ac55 A |
1819 | &hostid, 0, ""); |
1820 | ||
6d2010ae | 1821 | STATIC int |
2d21ac55 A |
1822 | sysctl_hostname |
1823 | (__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req) | |
1824 | { | |
1825 | int error, changed; | |
1826 | error = sysctl_io_string(req, hostname, sizeof(hostname), 1, &changed); | |
1827 | if (changed) { | |
1828 | hostnamelen = req->newlen; | |
1829 | } | |
1830 | return(error); | |
1831 | } | |
1832 | ||
1833 | ||
1834 | SYSCTL_PROC(_kern, KERN_HOSTNAME, hostname, | |
6d2010ae | 1835 | CTLTYPE_STRING | CTLFLAG_RW | CTLFLAG_LOCKED, |
2d21ac55 A |
1836 | 0, 0, sysctl_hostname, "A", ""); |
1837 | ||
6d2010ae | 1838 | STATIC int |
2d21ac55 A |
1839 | sysctl_procname |
1840 | (__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req) | |
1841 | { | |
1842 | /* Original code allowed writing, I'm copying this, although this all makes | |
1843 | no sense to me. Besides, this sysctl is never used. */ | |
1844 | return sysctl_io_string(req, &req->p->p_name[0], (2*MAXCOMLEN+1), 1, NULL); | |
1845 | } | |
1846 | ||
1847 | SYSCTL_PROC(_kern, KERN_PROCNAME, procname, | |
6d2010ae | 1848 | CTLTYPE_STRING | CTLFLAG_RW | CTLFLAG_ANYBODY | CTLFLAG_LOCKED, |
2d21ac55 A |
1849 | 0, 0, sysctl_procname, "A", ""); |
1850 | ||
1851 | SYSCTL_INT(_kern, KERN_SPECULATIVE_READS, speculative_reads_disabled, | |
6d2010ae | 1852 | CTLFLAG_RW | CTLFLAG_KERN | CTLFLAG_LOCKED, |
2d21ac55 A |
1853 | &speculative_reads_disabled, 0, ""); |
1854 | ||
6d2010ae A |
1855 | SYSCTL_INT(_kern, OID_AUTO, ignore_is_ssd, |
1856 | CTLFLAG_RW | CTLFLAG_KERN | CTLFLAG_LOCKED, | |
1857 | &ignore_is_ssd, 0, ""); | |
1858 | ||
fe8ab488 | 1859 | SYSCTL_UINT(_kern, OID_AUTO, preheat_max_bytes, |
6d2010ae | 1860 | CTLFLAG_RW | CTLFLAG_KERN | CTLFLAG_LOCKED, |
fe8ab488 | 1861 | &preheat_max_bytes, 0, ""); |
b0d623f7 | 1862 | |
fe8ab488 | 1863 | SYSCTL_UINT(_kern, OID_AUTO, preheat_min_bytes, |
6d2010ae | 1864 | CTLFLAG_RW | CTLFLAG_KERN | CTLFLAG_LOCKED, |
fe8ab488 | 1865 | &preheat_min_bytes, 0, ""); |
b0d623f7 | 1866 | |
6d2010ae A |
1867 | SYSCTL_UINT(_kern, OID_AUTO, speculative_prefetch_max, |
1868 | CTLFLAG_RW | CTLFLAG_KERN | CTLFLAG_LOCKED, | |
1869 | &speculative_prefetch_max, 0, ""); | |
b0d623f7 | 1870 | |
316670eb A |
1871 | SYSCTL_UINT(_kern, OID_AUTO, speculative_prefetch_max_iosize, |
1872 | CTLFLAG_RW | CTLFLAG_KERN | CTLFLAG_LOCKED, | |
1873 | &speculative_prefetch_max_iosize, 0, ""); | |
1874 | ||
6d2010ae A |
1875 | SYSCTL_UINT(_kern, OID_AUTO, vm_page_free_target, |
1876 | CTLFLAG_RW | CTLFLAG_KERN | CTLFLAG_LOCKED, | |
1877 | &vm_page_free_target, 0, ""); | |
1878 | ||
1879 | SYSCTL_UINT(_kern, OID_AUTO, vm_page_free_min, | |
1880 | CTLFLAG_RW | CTLFLAG_KERN | CTLFLAG_LOCKED, | |
1881 | &vm_page_free_min, 0, ""); | |
1882 | ||
1883 | SYSCTL_UINT(_kern, OID_AUTO, vm_page_free_reserved, | |
1884 | CTLFLAG_RW | CTLFLAG_KERN | CTLFLAG_LOCKED, | |
1885 | &vm_page_free_reserved, 0, ""); | |
1886 | ||
1887 | SYSCTL_UINT(_kern, OID_AUTO, vm_page_speculative_percentage, | |
1888 | CTLFLAG_RW | CTLFLAG_KERN | CTLFLAG_LOCKED, | |
1889 | &vm_page_speculative_percentage, 0, ""); | |
1890 | ||
1891 | SYSCTL_UINT(_kern, OID_AUTO, vm_page_speculative_q_age_ms, | |
1892 | CTLFLAG_RW | CTLFLAG_KERN | CTLFLAG_LOCKED, | |
1893 | &vm_page_speculative_q_age_ms, 0, ""); | |
1894 | ||
1895 | SYSCTL_UINT(_kern, OID_AUTO, vm_max_delayed_work_limit, | |
1896 | CTLFLAG_RW | CTLFLAG_KERN | CTLFLAG_LOCKED, | |
1897 | &vm_max_delayed_work_limit, 0, ""); | |
1898 | ||
1899 | SYSCTL_UINT(_kern, OID_AUTO, vm_max_batch, | |
1900 | CTLFLAG_RW | CTLFLAG_KERN | CTLFLAG_LOCKED, | |
1901 | &vm_max_batch, 0, ""); | |
1902 | ||
39236c6e A |
1903 | SYSCTL_STRING(_kern, OID_AUTO, bootsessionuuid, |
1904 | CTLFLAG_RD | CTLFLAG_LOCKED, | |
1905 | &bootsessionuuid_string, sizeof(bootsessionuuid_string) , ""); | |
6d2010ae A |
1906 | |
1907 | STATIC int | |
2d21ac55 A |
1908 | sysctl_boottime |
1909 | (__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req) | |
1910 | { | |
b0d623f7 A |
1911 | time_t tv_sec = boottime_sec(); |
1912 | struct proc *p = req->p; | |
2d21ac55 | 1913 | |
b0d623f7 A |
1914 | if (proc_is64bit(p)) { |
1915 | struct user64_timeval t; | |
1916 | t.tv_sec = tv_sec; | |
1917 | t.tv_usec = 0; | |
1918 | return sysctl_io_opaque(req, &t, sizeof(t), NULL); | |
1919 | } else { | |
1920 | struct user32_timeval t; | |
1921 | t.tv_sec = tv_sec; | |
1922 | t.tv_usec = 0; | |
1923 | return sysctl_io_opaque(req, &t, sizeof(t), NULL); | |
1924 | } | |
2d21ac55 A |
1925 | } |
1926 | ||
1927 | SYSCTL_PROC(_kern, KERN_BOOTTIME, boottime, | |
fe8ab488 | 1928 | CTLTYPE_STRUCT | CTLFLAG_KERN | CTLFLAG_RD | CTLFLAG_LOCKED, |
2d21ac55 A |
1929 | 0, 0, sysctl_boottime, "S,timeval", ""); |
1930 | ||
6d2010ae | 1931 | STATIC int |
2d21ac55 A |
1932 | sysctl_symfile |
1933 | (__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req) | |
1934 | { | |
1935 | char *str; | |
1936 | int error = get_kernel_symfile(req->p, &str); | |
1937 | if (error) | |
1938 | return (error); | |
1939 | return sysctl_io_string(req, str, 0, 0, NULL); | |
1940 | } | |
1941 | ||
1942 | ||
1943 | SYSCTL_PROC(_kern, KERN_SYMFILE, symfile, | |
6d2010ae | 1944 | CTLTYPE_STRING | CTLFLAG_RD | CTLFLAG_LOCKED, |
2d21ac55 A |
1945 | 0, 0, sysctl_symfile, "A", ""); |
1946 | ||
1947 | #if NFSCLIENT | |
6d2010ae | 1948 | STATIC int |
2d21ac55 A |
1949 | sysctl_netboot |
1950 | (__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req) | |
1951 | { | |
1952 | return sysctl_io_number(req, netboot_root(), sizeof(int), NULL, NULL); | |
1953 | } | |
1954 | ||
1955 | SYSCTL_PROC(_kern, KERN_NETBOOT, netboot, | |
6d2010ae | 1956 | CTLTYPE_INT | CTLFLAG_RD | CTLFLAG_LOCKED, |
2d21ac55 A |
1957 | 0, 0, sysctl_netboot, "I", ""); |
1958 | #endif | |
1959 | ||
b7266188 | 1960 | #ifdef CONFIG_IMGSRC_ACCESS |
6d2010ae A |
1961 | /* |
1962 | * Legacy--act as if only one layer of nesting is possible. | |
1963 | */ | |
1964 | STATIC int | |
b7266188 A |
1965 | sysctl_imgsrcdev |
1966 | (__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req) | |
1967 | { | |
1968 | vfs_context_t ctx = vfs_context_current(); | |
1969 | vnode_t devvp; | |
1970 | int result; | |
1971 | ||
1972 | if (!vfs_context_issuser(ctx)) { | |
1973 | return EPERM; | |
1974 | } | |
1975 | ||
6d2010ae | 1976 | if (imgsrc_rootvnodes[0] == NULL) { |
b7266188 A |
1977 | return ENOENT; |
1978 | } | |
1979 | ||
6d2010ae | 1980 | result = vnode_getwithref(imgsrc_rootvnodes[0]); |
b7266188 A |
1981 | if (result != 0) { |
1982 | return result; | |
1983 | } | |
1984 | ||
6d2010ae | 1985 | devvp = vnode_mount(imgsrc_rootvnodes[0])->mnt_devvp; |
b7266188 A |
1986 | result = vnode_getwithref(devvp); |
1987 | if (result != 0) { | |
1988 | goto out; | |
1989 | } | |
1990 | ||
1991 | result = sysctl_io_number(req, vnode_specrdev(devvp), sizeof(dev_t), NULL, NULL); | |
1992 | ||
1993 | vnode_put(devvp); | |
1994 | out: | |
6d2010ae | 1995 | vnode_put(imgsrc_rootvnodes[0]); |
b7266188 A |
1996 | return result; |
1997 | } | |
1998 | ||
1999 | SYSCTL_PROC(_kern, OID_AUTO, imgsrcdev, | |
6d2010ae | 2000 | CTLTYPE_INT | CTLFLAG_RD | CTLFLAG_LOCKED, |
b7266188 | 2001 | 0, 0, sysctl_imgsrcdev, "I", ""); |
6d2010ae A |
2002 | |
2003 | STATIC int | |
2004 | sysctl_imgsrcinfo | |
2005 | (__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req) | |
2006 | { | |
2007 | int error; | |
2008 | struct imgsrc_info info[MAX_IMAGEBOOT_NESTING]; /* 2 for now, no problem */ | |
2009 | uint32_t i; | |
2010 | vnode_t rvp, devvp; | |
2011 | ||
2012 | if (imgsrc_rootvnodes[0] == NULLVP) { | |
2013 | return ENXIO; | |
2014 | } | |
2015 | ||
2016 | for (i = 0; i < MAX_IMAGEBOOT_NESTING; i++) { | |
2017 | /* | |
2018 | * Go get the root vnode. | |
2019 | */ | |
2020 | rvp = imgsrc_rootvnodes[i]; | |
2021 | if (rvp == NULLVP) { | |
2022 | break; | |
2023 | } | |
2024 | ||
2025 | error = vnode_get(rvp); | |
2026 | if (error != 0) { | |
2027 | return error; | |
2028 | } | |
2029 | ||
2030 | /* | |
2031 | * For now, no getting at a non-local volume. | |
2032 | */ | |
2033 | devvp = vnode_mount(rvp)->mnt_devvp; | |
2034 | if (devvp == NULL) { | |
2035 | vnode_put(rvp); | |
2036 | return EINVAL; | |
2037 | } | |
2038 | ||
2039 | error = vnode_getwithref(devvp); | |
2040 | if (error != 0) { | |
2041 | vnode_put(rvp); | |
2042 | return error; | |
2043 | } | |
2044 | ||
2045 | /* | |
2046 | * Fill in info. | |
2047 | */ | |
2048 | info[i].ii_dev = vnode_specrdev(devvp); | |
2049 | info[i].ii_flags = 0; | |
2050 | info[i].ii_height = i; | |
2051 | bzero(info[i].ii_reserved, sizeof(info[i].ii_reserved)); | |
2052 | ||
2053 | vnode_put(devvp); | |
2054 | vnode_put(rvp); | |
2055 | } | |
2056 | ||
2057 | return sysctl_io_opaque(req, info, i * sizeof(info[0]), NULL); | |
2058 | } | |
2059 | ||
2060 | SYSCTL_PROC(_kern, OID_AUTO, imgsrcinfo, | |
2061 | CTLTYPE_OPAQUE | CTLFLAG_RD | CTLFLAG_LOCKED, | |
2062 | 0, 0, sysctl_imgsrcinfo, "I", ""); | |
2063 | ||
b7266188 A |
2064 | #endif /* CONFIG_IMGSRC_ACCESS */ |
2065 | ||
39236c6e A |
2066 | |
2067 | SYSCTL_DECL(_kern_timer); | |
2068 | SYSCTL_NODE(_kern, OID_AUTO, timer, CTLFLAG_RW | CTLFLAG_LOCKED, 0, "timer"); | |
2069 | ||
fe8ab488 | 2070 | |
39236c6e A |
2071 | SYSCTL_INT(_kern_timer, OID_AUTO, coalescing_enabled, |
2072 | CTLFLAG_KERN | CTLFLAG_RW | CTLFLAG_LOCKED, | |
6d2010ae A |
2073 | &mach_timer_coalescing_enabled, 0, ""); |
2074 | ||
39236c6e A |
2075 | SYSCTL_QUAD(_kern_timer, OID_AUTO, deadline_tracking_bin_1, |
2076 | CTLFLAG_RW | CTLFLAG_LOCKED, | |
2077 | &timer_deadline_tracking_bin_1, ""); | |
2078 | SYSCTL_QUAD(_kern_timer, OID_AUTO, deadline_tracking_bin_2, | |
2079 | CTLFLAG_RW | CTLFLAG_LOCKED, | |
2080 | &timer_deadline_tracking_bin_2, ""); | |
2081 | ||
2082 | SYSCTL_DECL(_kern_timer_longterm); | |
2083 | SYSCTL_NODE(_kern_timer, OID_AUTO, longterm, CTLFLAG_RW | CTLFLAG_LOCKED, 0, "longterm"); | |
2084 | ||
fe8ab488 | 2085 | |
39236c6e A |
2086 | /* Must match definition in osfmk/kern/timer_call.c */ |
2087 | enum { | |
2088 | THRESHOLD, QCOUNT, | |
2089 | ENQUEUES, DEQUEUES, ESCALATES, SCANS, PREEMPTS, | |
2090 | LATENCY, LATENCY_MIN, LATENCY_MAX | |
2091 | }; | |
2092 | extern uint64_t timer_sysctl_get(int); | |
2093 | extern int timer_sysctl_set(int, uint64_t); | |
2094 | ||
2095 | STATIC int | |
2096 | sysctl_timer | |
2097 | (__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req) | |
2098 | { | |
2099 | int oid = (int)arg1; | |
2100 | uint64_t value = timer_sysctl_get(oid); | |
2101 | uint64_t new_value; | |
2102 | int error; | |
2103 | int changed; | |
2104 | ||
2105 | error = sysctl_io_number(req, value, sizeof(value), &new_value, &changed); | |
2106 | if (changed) | |
2107 | error = timer_sysctl_set(oid, new_value); | |
2108 | ||
2109 | return error; | |
2110 | } | |
2111 | ||
2112 | SYSCTL_PROC(_kern_timer_longterm, OID_AUTO, threshold, | |
2113 | CTLTYPE_QUAD | CTLFLAG_RW | CTLFLAG_LOCKED, | |
2114 | (void *) THRESHOLD, 0, sysctl_timer, "Q", ""); | |
2115 | SYSCTL_PROC(_kern_timer_longterm, OID_AUTO, qlen, | |
2116 | CTLTYPE_QUAD | CTLFLAG_RD | CTLFLAG_LOCKED, | |
2117 | (void *) QCOUNT, 0, sysctl_timer, "Q", ""); | |
2118 | #if DEBUG | |
2119 | SYSCTL_PROC(_kern_timer_longterm, OID_AUTO, enqueues, | |
2120 | CTLTYPE_QUAD | CTLFLAG_RD | CTLFLAG_LOCKED, | |
2121 | (void *) ENQUEUES, 0, sysctl_timer, "Q", ""); | |
2122 | SYSCTL_PROC(_kern_timer_longterm, OID_AUTO, dequeues, | |
2123 | CTLTYPE_QUAD | CTLFLAG_RD | CTLFLAG_LOCKED, | |
2124 | (void *) DEQUEUES, 0, sysctl_timer, "Q", ""); | |
2125 | SYSCTL_PROC(_kern_timer_longterm, OID_AUTO, escalates, | |
2126 | CTLTYPE_QUAD | CTLFLAG_RD | CTLFLAG_LOCKED, | |
2127 | (void *) ESCALATES, 0, sysctl_timer, "Q", ""); | |
2128 | SYSCTL_PROC(_kern_timer_longterm, OID_AUTO, scans, | |
2129 | CTLTYPE_QUAD | CTLFLAG_RD | CTLFLAG_LOCKED, | |
2130 | (void *) SCANS, 0, sysctl_timer, "Q", ""); | |
2131 | SYSCTL_PROC(_kern_timer_longterm, OID_AUTO, preempts, | |
2132 | CTLTYPE_QUAD | CTLFLAG_RD | CTLFLAG_LOCKED, | |
2133 | (void *) PREEMPTS, 0, sysctl_timer, "Q", ""); | |
2134 | SYSCTL_PROC(_kern_timer_longterm, OID_AUTO, latency, | |
2135 | CTLTYPE_QUAD | CTLFLAG_RD | CTLFLAG_LOCKED, | |
2136 | (void *) LATENCY, 0, sysctl_timer, "Q", ""); | |
2137 | SYSCTL_PROC(_kern_timer_longterm, OID_AUTO, latency_min, | |
2138 | CTLTYPE_QUAD | CTLFLAG_RD | CTLFLAG_LOCKED, | |
2139 | (void *) LATENCY_MIN, 0, sysctl_timer, "Q", ""); | |
2140 | SYSCTL_PROC(_kern_timer_longterm, OID_AUTO, latency_max, | |
2141 | CTLTYPE_QUAD | CTLFLAG_RD | CTLFLAG_LOCKED, | |
2142 | (void *) LATENCY_MAX, 0, sysctl_timer, "Q", ""); | |
2143 | #endif /* DEBUG */ | |
2144 | ||
6d2010ae | 2145 | STATIC int |
2d21ac55 A |
2146 | sysctl_usrstack |
2147 | (__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req) | |
2148 | { | |
2149 | return sysctl_io_number(req, (int)req->p->user_stack, sizeof(int), NULL, NULL); | |
2150 | } | |
2151 | ||
b0d623f7 | 2152 | SYSCTL_PROC(_kern, KERN_USRSTACK32, usrstack, |
6d2010ae | 2153 | CTLTYPE_INT | CTLFLAG_RD | CTLFLAG_LOCKED, |
2d21ac55 A |
2154 | 0, 0, sysctl_usrstack, "I", ""); |
2155 | ||
6d2010ae | 2156 | STATIC int |
2d21ac55 A |
2157 | sysctl_usrstack64 |
2158 | (__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req) | |
2159 | { | |
2160 | return sysctl_io_number(req, req->p->user_stack, sizeof(req->p->user_stack), NULL, NULL); | |
2161 | } | |
2162 | ||
2163 | SYSCTL_PROC(_kern, KERN_USRSTACK64, usrstack64, | |
6d2010ae | 2164 | CTLTYPE_QUAD | CTLFLAG_RD | CTLFLAG_LOCKED, |
2d21ac55 A |
2165 | 0, 0, sysctl_usrstack64, "Q", ""); |
2166 | ||
2167 | SYSCTL_STRING(_kern, KERN_COREFILE, corefile, | |
6d2010ae | 2168 | CTLFLAG_RW | CTLFLAG_KERN | CTLFLAG_LOCKED, |
2d21ac55 A |
2169 | corefilename, sizeof(corefilename), ""); |
2170 | ||
6d2010ae | 2171 | STATIC int |
2d21ac55 A |
2172 | sysctl_coredump |
2173 | (__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req) | |
2174 | { | |
593a1d5f | 2175 | #ifdef SECURE_KERNEL |
fe8ab488 | 2176 | (void)req; |
593a1d5f | 2177 | return (ENOTSUP); |
fe8ab488 | 2178 | #else |
2d21ac55 A |
2179 | int new_value, changed; |
2180 | int error = sysctl_io_number(req, do_coredump, sizeof(int), &new_value, &changed); | |
2181 | if (changed) { | |
2182 | if ((new_value == 0) || (new_value == 1)) | |
2183 | do_coredump = new_value; | |
2184 | else | |
2185 | error = EINVAL; | |
2186 | } | |
2187 | return(error); | |
fe8ab488 | 2188 | #endif |
2d21ac55 A |
2189 | } |
2190 | ||
2191 | SYSCTL_PROC(_kern, KERN_COREDUMP, coredump, | |
6d2010ae | 2192 | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_LOCKED, |
2d21ac55 A |
2193 | 0, 0, sysctl_coredump, "I", ""); |
2194 | ||
6d2010ae | 2195 | STATIC int |
2d21ac55 A |
2196 | sysctl_suid_coredump |
2197 | (__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req) | |
2198 | { | |
593a1d5f | 2199 | #ifdef SECURE_KERNEL |
fe8ab488 | 2200 | (void)req; |
593a1d5f | 2201 | return (ENOTSUP); |
fe8ab488 | 2202 | #else |
2d21ac55 A |
2203 | int new_value, changed; |
2204 | int error = sysctl_io_number(req, sugid_coredump, sizeof(int), &new_value, &changed); | |
2205 | if (changed) { | |
2206 | if ((new_value == 0) || (new_value == 1)) | |
2207 | sugid_coredump = new_value; | |
55e303ae A |
2208 | else |
2209 | error = EINVAL; | |
2210 | } | |
2d21ac55 | 2211 | return(error); |
fe8ab488 | 2212 | #endif |
2d21ac55 A |
2213 | } |
2214 | ||
2215 | SYSCTL_PROC(_kern, KERN_SUGID_COREDUMP, sugid_coredump, | |
6d2010ae | 2216 | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_LOCKED, |
2d21ac55 A |
2217 | 0, 0, sysctl_suid_coredump, "I", ""); |
2218 | ||
6d2010ae | 2219 | STATIC int |
2d21ac55 A |
2220 | sysctl_delayterm |
2221 | (__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req) | |
2222 | { | |
2223 | struct proc *p = req->p; | |
2224 | int new_value, changed; | |
2225 | int error = sysctl_io_number(req, (req->p->p_lflag & P_LDELAYTERM)? 1: 0, sizeof(int), &new_value, &changed); | |
2226 | if (changed) { | |
2227 | proc_lock(p); | |
2228 | if (new_value) | |
2229 | req->p->p_lflag |= P_LDELAYTERM; | |
2230 | else | |
2231 | req->p->p_lflag &= ~P_LDELAYTERM; | |
2232 | proc_unlock(p); | |
2233 | } | |
2234 | return(error); | |
2235 | } | |
2236 | ||
2237 | SYSCTL_PROC(_kern, KERN_PROCDELAYTERM, delayterm, | |
6d2010ae | 2238 | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_LOCKED, |
2d21ac55 A |
2239 | 0, 0, sysctl_delayterm, "I", ""); |
2240 | ||
55e303ae | 2241 | |
6d2010ae | 2242 | STATIC int |
2d21ac55 A |
2243 | sysctl_rage_vnode |
2244 | (__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req) | |
55e303ae | 2245 | { |
2d21ac55 A |
2246 | struct proc *p = req->p; |
2247 | struct uthread *ut; | |
2248 | int new_value, old_value, changed; | |
2249 | int error; | |
55e303ae | 2250 | |
2d21ac55 A |
2251 | ut = get_bsdthread_info(current_thread()); |
2252 | ||
2253 | if (ut->uu_flag & UT_RAGE_VNODES) | |
2254 | old_value = KERN_RAGE_THREAD; | |
2255 | else if (p->p_lflag & P_LRAGE_VNODES) | |
2256 | old_value = KERN_RAGE_PROC; | |
2257 | else | |
2258 | old_value = 0; | |
2259 | ||
2260 | error = sysctl_io_number(req, old_value, sizeof(int), &new_value, &changed); | |
2261 | ||
2262 | if (error == 0) { | |
2263 | switch (new_value) { | |
2264 | case KERN_RAGE_PROC: | |
2265 | proc_lock(p); | |
2266 | p->p_lflag |= P_LRAGE_VNODES; | |
2267 | proc_unlock(p); | |
2268 | break; | |
2269 | case KERN_UNRAGE_PROC: | |
2270 | proc_lock(p); | |
2271 | p->p_lflag &= ~P_LRAGE_VNODES; | |
2272 | proc_unlock(p); | |
2273 | break; | |
2274 | ||
2275 | case KERN_RAGE_THREAD: | |
2276 | ut->uu_flag |= UT_RAGE_VNODES; | |
2277 | break; | |
2278 | case KERN_UNRAGE_THREAD: | |
2279 | ut = get_bsdthread_info(current_thread()); | |
2280 | ut->uu_flag &= ~UT_RAGE_VNODES; | |
2281 | break; | |
e5568f75 | 2282 | } |
2d21ac55 A |
2283 | } |
2284 | return(error); | |
2285 | } | |
2286 | ||
2287 | SYSCTL_PROC(_kern, KERN_RAGEVNODE, rage_vnode, | |
6d2010ae | 2288 | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_ANYBODY | CTLFLAG_LOCKED, |
2d21ac55 A |
2289 | 0, 0, sysctl_rage_vnode, "I", ""); |
2290 | ||
316670eb A |
2291 | /* XXX move this interface into libproc and remove this sysctl */ |
2292 | STATIC int | |
2293 | sysctl_setthread_cpupercent | |
2294 | (__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req) | |
2295 | { | |
2296 | int new_value, old_value; | |
2297 | int error = 0; | |
2298 | kern_return_t kret = KERN_SUCCESS; | |
2299 | uint8_t percent = 0; | |
2300 | int ms_refill = 0; | |
2301 | ||
39236c6e A |
2302 | if (!req->newptr) |
2303 | return (0); | |
2304 | ||
316670eb A |
2305 | old_value = 0; |
2306 | ||
2307 | if ((error = sysctl_io_number(req, old_value, sizeof(old_value), &new_value, NULL)) != 0) | |
2308 | return (error); | |
2309 | ||
2310 | percent = new_value & 0xff; /* low 8 bytes for perent */ | |
2311 | ms_refill = (new_value >> 8) & 0xffffff; /* upper 24bytes represent ms refill value */ | |
2312 | if (percent > 100) | |
2313 | return (EINVAL); | |
2314 | ||
2315 | /* | |
2316 | * If the caller is specifying a percentage of 0, this will unset the CPU limit, if present. | |
2317 | */ | |
39236c6e | 2318 | if ((kret = thread_set_cpulimit(THREAD_CPULIMIT_BLOCK, percent, ms_refill * (int)NSEC_PER_MSEC)) != 0) |
316670eb A |
2319 | return (EIO); |
2320 | ||
2321 | return (0); | |
2322 | } | |
2323 | ||
2324 | SYSCTL_PROC(_kern, OID_AUTO, setthread_cpupercent, | |
39236c6e | 2325 | CTLTYPE_INT | CTLFLAG_WR | CTLFLAG_ANYBODY, |
316670eb A |
2326 | 0, 0, sysctl_setthread_cpupercent, "I", "set thread cpu percentage limit"); |
2327 | ||
2d21ac55 | 2328 | |
6d2010ae | 2329 | STATIC int |
2d21ac55 A |
2330 | sysctl_kern_check_openevt |
2331 | (__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req) | |
2332 | { | |
2333 | struct proc *p = req->p; | |
2334 | int new_value, old_value, changed; | |
2335 | int error; | |
2336 | ||
2337 | if (p->p_flag & P_CHECKOPENEVT) { | |
2338 | old_value = KERN_OPENEVT_PROC; | |
2339 | } else { | |
2340 | old_value = 0; | |
2341 | } | |
2342 | ||
2343 | error = sysctl_io_number(req, old_value, sizeof(int), &new_value, &changed); | |
2344 | ||
2345 | if (error == 0) { | |
2346 | switch (new_value) { | |
2347 | case KERN_OPENEVT_PROC: | |
b0d623f7 | 2348 | OSBitOrAtomic(P_CHECKOPENEVT, &p->p_flag); |
2d21ac55 A |
2349 | break; |
2350 | ||
2351 | case KERN_UNOPENEVT_PROC: | |
b0d623f7 | 2352 | OSBitAndAtomic(~((uint32_t)P_CHECKOPENEVT), &p->p_flag); |
2d21ac55 A |
2353 | break; |
2354 | ||
2355 | default: | |
55e303ae | 2356 | error = EINVAL; |
2d21ac55 | 2357 | } |
55e303ae | 2358 | } |
2d21ac55 A |
2359 | return(error); |
2360 | } | |
2361 | ||
6d2010ae | 2362 | SYSCTL_PROC(_kern, KERN_CHECKOPENEVT, check_openevt, CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_ANYBODY | CTLFLAG_LOCKED, |
2d21ac55 A |
2363 | 0, 0, sysctl_kern_check_openevt, "I", "set the per-process check-open-evt flag"); |
2364 | ||
2365 | ||
2366 | ||
6d2010ae | 2367 | STATIC int |
2d21ac55 A |
2368 | sysctl_nx |
2369 | (__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req) | |
2370 | { | |
4a3eedf9 | 2371 | #ifdef SECURE_KERNEL |
fe8ab488 | 2372 | (void)req; |
4a3eedf9 | 2373 | return ENOTSUP; |
fe8ab488 | 2374 | #else |
2d21ac55 A |
2375 | int new_value, changed; |
2376 | int error; | |
2377 | ||
2378 | error = sysctl_io_number(req, nx_enabled, sizeof(nx_enabled), &new_value, &changed); | |
4a3eedf9 A |
2379 | if (error) |
2380 | return error; | |
2d21ac55 | 2381 | |
4a3eedf9 | 2382 | if (changed) { |
b0d623f7 | 2383 | #if defined(__i386__) || defined(__x86_64__) |
2d21ac55 A |
2384 | /* |
2385 | * Only allow setting if NX is supported on the chip | |
2386 | */ | |
2387 | if (!(cpuid_extfeatures() & CPUID_EXTFEATURE_XD)) | |
4a3eedf9 | 2388 | return ENOTSUP; |
2d21ac55 | 2389 | #endif |
4a3eedf9 A |
2390 | nx_enabled = new_value; |
2391 | } | |
2d21ac55 | 2392 | return(error); |
fe8ab488 | 2393 | #endif /* SECURE_KERNEL */ |
2d21ac55 A |
2394 | } |
2395 | ||
2396 | ||
2397 | ||
2398 | SYSCTL_PROC(_kern, KERN_NX_PROTECTION, nx, | |
6d2010ae | 2399 | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_KERN | CTLFLAG_LOCKED, |
2d21ac55 A |
2400 | 0, 0, sysctl_nx, "I", ""); |
2401 | ||
6d2010ae | 2402 | STATIC int |
2d21ac55 A |
2403 | sysctl_loadavg |
2404 | (__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req) | |
2405 | { | |
2406 | if (proc_is64bit(req->p)) { | |
b0d623f7 A |
2407 | struct user64_loadavg loadinfo64; |
2408 | fill_loadavg64(&averunnable, &loadinfo64); | |
2d21ac55 A |
2409 | return sysctl_io_opaque(req, &loadinfo64, sizeof(loadinfo64), NULL); |
2410 | } else { | |
b0d623f7 A |
2411 | struct user32_loadavg loadinfo32; |
2412 | fill_loadavg32(&averunnable, &loadinfo32); | |
2413 | return sysctl_io_opaque(req, &loadinfo32, sizeof(loadinfo32), NULL); | |
2d21ac55 A |
2414 | } |
2415 | } | |
2416 | ||
2417 | SYSCTL_PROC(_vm, VM_LOADAVG, loadavg, | |
6d2010ae | 2418 | CTLTYPE_STRUCT | CTLFLAG_RD | CTLFLAG_LOCKED, |
2d21ac55 A |
2419 | 0, 0, sysctl_loadavg, "S,loadavg", ""); |
2420 | ||
6d2010ae A |
2421 | /* |
2422 | * Note: Thread safe; vm_map_lock protects in vm_toggle_entry_reuse() | |
2423 | */ | |
2424 | STATIC int | |
2425 | sysctl_vm_toggle_address_reuse(__unused struct sysctl_oid *oidp, __unused void *arg1, | |
2426 | __unused int arg2, struct sysctl_req *req) | |
2427 | { | |
2428 | int old_value=0, new_value=0, error=0; | |
2429 | ||
2430 | if(vm_toggle_entry_reuse( VM_TOGGLE_GETVALUE, &old_value )) | |
2431 | return(error); | |
2432 | error = sysctl_io_number(req, old_value, sizeof(int), &new_value, NULL); | |
2433 | if (!error) { | |
2434 | return (vm_toggle_entry_reuse(new_value, NULL)); | |
2435 | } | |
2436 | return(error); | |
2437 | } | |
2438 | ||
2439 | SYSCTL_PROC(_debug, OID_AUTO, toggle_address_reuse, CTLFLAG_ANYBODY | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_LOCKED, 0, 0, sysctl_vm_toggle_address_reuse,"I",""); | |
2440 | ||
2441 | STATIC int | |
2d21ac55 A |
2442 | sysctl_swapusage |
2443 | (__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req) | |
2444 | { | |
2445 | int error; | |
2446 | uint64_t swap_total; | |
2447 | uint64_t swap_avail; | |
b0d623f7 | 2448 | vm_size_t swap_pagesize; |
2d21ac55 A |
2449 | boolean_t swap_encrypted; |
2450 | struct xsw_usage xsu; | |
2451 | ||
2452 | error = macx_swapinfo(&swap_total, | |
2453 | &swap_avail, | |
2454 | &swap_pagesize, | |
2455 | &swap_encrypted); | |
2456 | if (error) | |
2457 | return error; | |
2458 | ||
2459 | xsu.xsu_total = swap_total; | |
2460 | xsu.xsu_avail = swap_avail; | |
2461 | xsu.xsu_used = swap_total - swap_avail; | |
2462 | xsu.xsu_pagesize = swap_pagesize; | |
2463 | xsu.xsu_encrypted = swap_encrypted; | |
2464 | return sysctl_io_opaque(req, &xsu, sizeof(xsu), NULL); | |
2465 | } | |
2466 | ||
2467 | ||
2468 | ||
2469 | SYSCTL_PROC(_vm, VM_SWAPUSAGE, swapusage, | |
6d2010ae | 2470 | CTLTYPE_STRUCT | CTLFLAG_RD | CTLFLAG_LOCKED, |
2d21ac55 A |
2471 | 0, 0, sysctl_swapusage, "S,xsw_usage", ""); |
2472 | ||
6d2010ae A |
2473 | #if CONFIG_FREEZE |
2474 | extern void vm_page_reactivate_all_throttled(void); | |
2475 | ||
2476 | static int | |
2477 | sysctl_freeze_enabled SYSCTL_HANDLER_ARGS | |
2478 | { | |
2479 | #pragma unused(arg1, arg2) | |
316670eb | 2480 | int error, val = memorystatus_freeze_enabled ? 1 : 0; |
6d2010ae A |
2481 | boolean_t disabled; |
2482 | ||
2483 | error = sysctl_handle_int(oidp, &val, 0, req); | |
2484 | if (error || !req->newptr) | |
2485 | return (error); | |
2486 | ||
39236c6e A |
2487 | if (COMPRESSED_PAGER_IS_ACTIVE || DEFAULT_FREEZER_COMPRESSED_PAGER_IS_ACTIVE) { |
2488 | //assert(req->newptr); | |
fe8ab488 | 2489 | printf("Failed attempt to set vm.freeze_enabled sysctl\n"); |
39236c6e A |
2490 | return EINVAL; |
2491 | } | |
2492 | ||
6d2010ae A |
2493 | /* |
2494 | * If freeze is being disabled, we need to move dirty pages out from the throttle to the active queue. | |
2495 | */ | |
316670eb | 2496 | disabled = (!val && memorystatus_freeze_enabled); |
6d2010ae | 2497 | |
316670eb | 2498 | memorystatus_freeze_enabled = val ? TRUE : FALSE; |
6d2010ae A |
2499 | |
2500 | if (disabled) { | |
2501 | vm_page_reactivate_all_throttled(); | |
2502 | } | |
2503 | ||
2504 | return (0); | |
2505 | } | |
2506 | ||
316670eb | 2507 | SYSCTL_PROC(_vm, OID_AUTO, freeze_enabled, CTLTYPE_INT|CTLFLAG_RW, &memorystatus_freeze_enabled, 0, sysctl_freeze_enabled, "I", ""); |
6d2010ae | 2508 | #endif /* CONFIG_FREEZE */ |
2d21ac55 A |
2509 | |
2510 | /* this kernel does NOT implement shared_region_make_private_np() */ | |
2511 | SYSCTL_INT(_kern, KERN_SHREG_PRIVATIZABLE, shreg_private, | |
6d2010ae | 2512 | CTLFLAG_RD | CTLFLAG_LOCKED, |
b0d623f7 | 2513 | (int *)NULL, 0, ""); |
0c530ab8 | 2514 | |
6d2010ae | 2515 | STATIC int |
0c530ab8 | 2516 | fetch_process_cputype( |
2d21ac55 | 2517 | proc_t cur_proc, |
0c530ab8 A |
2518 | int *name, |
2519 | u_int namelen, | |
2520 | cpu_type_t *cputype) | |
2521 | { | |
2d21ac55 A |
2522 | proc_t p = PROC_NULL; |
2523 | int refheld = 0; | |
0c530ab8 | 2524 | cpu_type_t ret = 0; |
2d21ac55 | 2525 | int error = 0; |
0c530ab8 A |
2526 | |
2527 | if (namelen == 0) | |
2528 | p = cur_proc; | |
2529 | else if (namelen == 1) { | |
2d21ac55 | 2530 | p = proc_find(name[0]); |
0c530ab8 A |
2531 | if (p == NULL) |
2532 | return (EINVAL); | |
2d21ac55 | 2533 | refheld = 1; |
0c530ab8 | 2534 | } else { |
2d21ac55 A |
2535 | error = EINVAL; |
2536 | goto out; | |
0c530ab8 A |
2537 | } |
2538 | ||
fe8ab488 A |
2539 | ret = cpu_type() & ~CPU_ARCH_MASK; |
2540 | if (IS_64BIT_PROCESS(p)) | |
2541 | ret |= CPU_ARCH_ABI64; | |
2542 | ||
0c530ab8 A |
2543 | *cputype = ret; |
2544 | ||
2d21ac55 A |
2545 | if (refheld != 0) |
2546 | proc_rele(p); | |
2547 | out: | |
2548 | return (error); | |
0c530ab8 A |
2549 | } |
2550 | ||
6d2010ae | 2551 | STATIC int |
2d21ac55 A |
2552 | sysctl_sysctl_native(__unused struct sysctl_oid *oidp, void *arg1, int arg2, |
2553 | struct sysctl_req *req) | |
0c530ab8 A |
2554 | { |
2555 | int error; | |
2556 | cpu_type_t proc_cputype = 0; | |
2557 | if ((error = fetch_process_cputype(req->p, (int *)arg1, arg2, &proc_cputype)) != 0) | |
2558 | return error; | |
2559 | int res = 1; | |
2560 | if ((proc_cputype & ~CPU_ARCH_MASK) != (cpu_type() & ~CPU_ARCH_MASK)) | |
2561 | res = 0; | |
2562 | return SYSCTL_OUT(req, &res, sizeof(res)); | |
2563 | } | |
6d2010ae | 2564 | SYSCTL_PROC(_sysctl, OID_AUTO, proc_native, CTLTYPE_NODE|CTLFLAG_RD | CTLFLAG_LOCKED, 0, 0, sysctl_sysctl_native ,"I","proc_native"); |
0c530ab8 | 2565 | |
6d2010ae | 2566 | STATIC int |
2d21ac55 A |
2567 | sysctl_sysctl_cputype(__unused struct sysctl_oid *oidp, void *arg1, int arg2, |
2568 | struct sysctl_req *req) | |
0c530ab8 A |
2569 | { |
2570 | int error; | |
2571 | cpu_type_t proc_cputype = 0; | |
2572 | if ((error = fetch_process_cputype(req->p, (int *)arg1, arg2, &proc_cputype)) != 0) | |
2573 | return error; | |
2574 | return SYSCTL_OUT(req, &proc_cputype, sizeof(proc_cputype)); | |
2575 | } | |
6d2010ae | 2576 | SYSCTL_PROC(_sysctl, OID_AUTO, proc_cputype, CTLTYPE_NODE|CTLFLAG_RD | CTLFLAG_LOCKED, 0, 0, sysctl_sysctl_cputype ,"I","proc_cputype"); |
0c530ab8 | 2577 | |
6d2010ae | 2578 | STATIC int |
2d21ac55 A |
2579 | sysctl_safeboot |
2580 | (__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req) | |
2581 | { | |
2582 | return sysctl_io_number(req, boothowto & RB_SAFEBOOT ? 1 : 0, sizeof(int), NULL, NULL); | |
2583 | } | |
2584 | ||
2585 | SYSCTL_PROC(_kern, KERN_SAFEBOOT, safeboot, | |
6d2010ae | 2586 | CTLTYPE_INT | CTLFLAG_RD | CTLFLAG_LOCKED, |
2d21ac55 A |
2587 | 0, 0, sysctl_safeboot, "I", ""); |
2588 | ||
6d2010ae | 2589 | STATIC int |
2d21ac55 A |
2590 | sysctl_singleuser |
2591 | (__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req) | |
2592 | { | |
2593 | return sysctl_io_number(req, boothowto & RB_SINGLE ? 1 : 0, sizeof(int), NULL, NULL); | |
2594 | } | |
2595 | ||
2596 | SYSCTL_PROC(_kern, OID_AUTO, singleuser, | |
6d2010ae | 2597 | CTLTYPE_INT | CTLFLAG_RD | CTLFLAG_LOCKED, |
2d21ac55 A |
2598 | 0, 0, sysctl_singleuser, "I", ""); |
2599 | ||
2600 | /* | |
2601 | * Controls for debugging affinity sets - see osfmk/kern/affinity.c | |
2602 | */ | |
2603 | extern boolean_t affinity_sets_enabled; | |
2604 | extern int affinity_sets_mapping; | |
2605 | ||
2606 | SYSCTL_INT (_kern, OID_AUTO, affinity_sets_enabled, | |
6d2010ae | 2607 | CTLFLAG_RW | CTLFLAG_LOCKED, (int *) &affinity_sets_enabled, 0, "hinting enabled"); |
2d21ac55 | 2608 | SYSCTL_INT (_kern, OID_AUTO, affinity_sets_mapping, |
6d2010ae | 2609 | CTLFLAG_RW | CTLFLAG_LOCKED, &affinity_sets_mapping, 0, "mapping policy"); |
2d21ac55 | 2610 | |
316670eb A |
2611 | /* |
2612 | * Boolean indicating if KASLR is active. | |
2613 | */ | |
2614 | STATIC int | |
2615 | sysctl_slide | |
2616 | (__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req) | |
2617 | { | |
2618 | uint32_t slide; | |
2619 | ||
2620 | slide = vm_kernel_slide ? 1 : 0; | |
2621 | ||
2622 | return sysctl_io_number( req, slide, sizeof(int), NULL, NULL); | |
2623 | } | |
2624 | ||
2625 | SYSCTL_PROC(_kern, OID_AUTO, slide, | |
2626 | CTLTYPE_INT | CTLFLAG_RD | CTLFLAG_LOCKED, | |
2627 | 0, 0, sysctl_slide, "I", ""); | |
2628 | ||
2d21ac55 A |
2629 | /* |
2630 | * Limit on total memory users can wire. | |
2631 | * | |
2632 | * vm_global_user_wire_limit - system wide limit on wired memory from all processes combined. | |
2633 | * | |
2634 | * vm_user_wire_limit - per address space limit on wired memory. This puts a cap on the process's rlimit value. | |
2635 | * | |
2636 | * These values are initialized to reasonable defaults at boot time based on the available physical memory in | |
2637 | * kmem_init(). | |
2638 | * | |
2639 | * All values are in bytes. | |
2640 | */ | |
2641 | ||
b0d623f7 | 2642 | vm_map_size_t vm_global_no_user_wire_amount; |
2d21ac55 A |
2643 | vm_map_size_t vm_global_user_wire_limit; |
2644 | vm_map_size_t vm_user_wire_limit; | |
2645 | ||
b0d623f7 A |
2646 | /* |
2647 | * There needs to be a more automatic/elegant way to do this | |
2648 | */ | |
6d2010ae A |
2649 | SYSCTL_QUAD(_vm, OID_AUTO, global_no_user_wire_amount, CTLFLAG_RW | CTLFLAG_LOCKED, &vm_global_no_user_wire_amount, ""); |
2650 | SYSCTL_QUAD(_vm, OID_AUTO, global_user_wire_limit, CTLFLAG_RW | CTLFLAG_LOCKED, &vm_global_user_wire_limit, ""); | |
2651 | SYSCTL_QUAD(_vm, OID_AUTO, user_wire_limit, CTLFLAG_RW | CTLFLAG_LOCKED, &vm_user_wire_limit, ""); | |
b0d623f7 | 2652 | |
e2d2fc5c A |
2653 | extern int vm_map_copy_overwrite_aligned_src_not_internal; |
2654 | extern int vm_map_copy_overwrite_aligned_src_not_symmetric; | |
2655 | extern int vm_map_copy_overwrite_aligned_src_large; | |
2656 | SYSCTL_INT(_vm, OID_AUTO, vm_copy_src_not_internal, CTLFLAG_RD | CTLFLAG_LOCKED, &vm_map_copy_overwrite_aligned_src_not_internal, 0, ""); | |
2657 | SYSCTL_INT(_vm, OID_AUTO, vm_copy_src_not_symmetric, CTLFLAG_RD | CTLFLAG_LOCKED, &vm_map_copy_overwrite_aligned_src_not_symmetric, 0, ""); | |
2658 | SYSCTL_INT(_vm, OID_AUTO, vm_copy_src_large, CTLFLAG_RD | CTLFLAG_LOCKED, &vm_map_copy_overwrite_aligned_src_large, 0, ""); | |
b0d623f7 A |
2659 | |
2660 | ||
39236c6e A |
2661 | extern uint32_t vm_page_external_count; |
2662 | extern uint32_t vm_page_filecache_min; | |
2663 | ||
2664 | SYSCTL_INT(_vm, OID_AUTO, vm_page_external_count, CTLFLAG_RD | CTLFLAG_LOCKED, &vm_page_external_count, 0, ""); | |
2665 | SYSCTL_INT(_vm, OID_AUTO, vm_page_filecache_min, CTLFLAG_RW | CTLFLAG_LOCKED, &vm_page_filecache_min, 0, ""); | |
2666 | ||
2667 | extern int vm_compressor_mode; | |
04b8595b | 2668 | extern int vm_compressor_is_active; |
39236c6e A |
2669 | extern uint32_t swapout_target_age; |
2670 | extern int64_t compressor_bytes_used; | |
2671 | extern uint32_t compressor_eval_period_in_msecs; | |
2672 | extern uint32_t compressor_sample_min_in_msecs; | |
2673 | extern uint32_t compressor_sample_max_in_msecs; | |
2674 | extern uint32_t compressor_thrashing_threshold_per_10msecs; | |
2675 | extern uint32_t compressor_thrashing_min_per_10msecs; | |
2676 | extern uint32_t vm_compressor_minorcompact_threshold_divisor; | |
2677 | extern uint32_t vm_compressor_majorcompact_threshold_divisor; | |
2678 | extern uint32_t vm_compressor_unthrottle_threshold_divisor; | |
2679 | extern uint32_t vm_compressor_catchup_threshold_divisor; | |
2680 | ||
2681 | SYSCTL_INT(_vm, OID_AUTO, compressor_mode, CTLFLAG_RD | CTLFLAG_LOCKED, &vm_compressor_mode, 0, ""); | |
04b8595b | 2682 | SYSCTL_INT(_vm, OID_AUTO, compressor_is_active, CTLFLAG_RD | CTLFLAG_LOCKED, &vm_compressor_is_active, 0, ""); |
39236c6e A |
2683 | SYSCTL_QUAD(_vm, OID_AUTO, compressor_bytes_used, CTLFLAG_RD | CTLFLAG_LOCKED, &compressor_bytes_used, ""); |
2684 | SYSCTL_INT(_vm, OID_AUTO, compressor_swapout_target_age, CTLFLAG_RD | CTLFLAG_LOCKED, &swapout_target_age, 0, ""); | |
2685 | ||
2686 | SYSCTL_INT(_vm, OID_AUTO, compressor_eval_period_in_msecs, CTLFLAG_RW | CTLFLAG_LOCKED, &compressor_eval_period_in_msecs, 0, ""); | |
2687 | SYSCTL_INT(_vm, OID_AUTO, compressor_sample_min_in_msecs, CTLFLAG_RW | CTLFLAG_LOCKED, &compressor_sample_min_in_msecs, 0, ""); | |
2688 | SYSCTL_INT(_vm, OID_AUTO, compressor_sample_max_in_msecs, CTLFLAG_RW | CTLFLAG_LOCKED, &compressor_sample_max_in_msecs, 0, ""); | |
2689 | SYSCTL_INT(_vm, OID_AUTO, compressor_thrashing_threshold_per_10msecs, CTLFLAG_RW | CTLFLAG_LOCKED, &compressor_thrashing_threshold_per_10msecs, 0, ""); | |
2690 | SYSCTL_INT(_vm, OID_AUTO, compressor_thrashing_min_per_10msecs, CTLFLAG_RW | CTLFLAG_LOCKED, &compressor_thrashing_min_per_10msecs, 0, ""); | |
2691 | SYSCTL_INT(_vm, OID_AUTO, compressor_minorcompact_threshold_divisor, CTLFLAG_RW | CTLFLAG_LOCKED, &vm_compressor_minorcompact_threshold_divisor, 0, ""); | |
2692 | SYSCTL_INT(_vm, OID_AUTO, compressor_majorcompact_threshold_divisor, CTLFLAG_RW | CTLFLAG_LOCKED, &vm_compressor_majorcompact_threshold_divisor, 0, ""); | |
2693 | SYSCTL_INT(_vm, OID_AUTO, compressor_unthrottle_threshold_divisor, CTLFLAG_RW | CTLFLAG_LOCKED, &vm_compressor_unthrottle_threshold_divisor, 0, ""); | |
2694 | SYSCTL_INT(_vm, OID_AUTO, compressor_catchup_threshold_divisor, CTLFLAG_RW | CTLFLAG_LOCKED, &vm_compressor_catchup_threshold_divisor, 0, ""); | |
2695 | ||
fe8ab488 A |
2696 | SYSCTL_STRING(_vm, OID_AUTO, swapfileprefix, CTLFLAG_RW | CTLFLAG_KERN | CTLFLAG_LOCKED, swapfilename, sizeof(swapfilename) - SWAPFILENAME_INDEX_LEN, ""); |
2697 | ||
2698 | #if CONFIG_PHANTOM_CACHE | |
2699 | extern uint32_t phantom_cache_thrashing_threshold; | |
2700 | extern uint32_t phantom_cache_eval_period_in_msecs; | |
2701 | extern uint32_t phantom_cache_thrashing_threshold_ssd; | |
2702 | ||
2703 | ||
2704 | SYSCTL_INT(_vm, OID_AUTO, phantom_cache_eval_period_in_msecs, CTLFLAG_RW | CTLFLAG_LOCKED, &phantom_cache_eval_period_in_msecs, 0, ""); | |
2705 | SYSCTL_INT(_vm, OID_AUTO, phantom_cache_thrashing_threshold, CTLFLAG_RW | CTLFLAG_LOCKED, &phantom_cache_thrashing_threshold, 0, ""); | |
2706 | SYSCTL_INT(_vm, OID_AUTO, phantom_cache_thrashing_threshold_ssd, CTLFLAG_RW | CTLFLAG_LOCKED, &phantom_cache_thrashing_threshold_ssd, 0, ""); | |
2707 | #endif | |
2708 | ||
04b8595b A |
2709 | #if (DEVELOPMENT || DEBUG) |
2710 | ||
2711 | SYSCTL_UINT(_vm, OID_AUTO, vm_page_creation_throttled_hard, | |
2712 | CTLFLAG_RD | CTLFLAG_KERN | CTLFLAG_LOCKED, | |
2713 | &vm_page_creation_throttled_hard, 0, ""); | |
2714 | ||
2715 | SYSCTL_UINT(_vm, OID_AUTO, vm_page_creation_throttled_soft, | |
2716 | CTLFLAG_RD | CTLFLAG_KERN | CTLFLAG_LOCKED, | |
2717 | &vm_page_creation_throttled_soft, 0, ""); | |
2718 | ||
2719 | #endif /* DEVELOPMENT || DEBUG */ | |
2720 | ||
b0d623f7 | 2721 | /* |
fe8ab488 | 2722 | * Enable tracing of voucher contents |
b0d623f7 | 2723 | */ |
fe8ab488 | 2724 | extern uint32_t ipc_voucher_trace_contents; |
b0d623f7 | 2725 | |
fe8ab488 A |
2726 | SYSCTL_INT (_kern, OID_AUTO, ipc_voucher_trace_contents, |
2727 | CTLFLAG_RW | CTLFLAG_LOCKED, &ipc_voucher_trace_contents, 0, "Enable tracing voucher contents"); | |
b0d623f7 A |
2728 | |
2729 | /* | |
2730 | * Kernel stack size and depth | |
2731 | */ | |
2732 | SYSCTL_INT (_kern, OID_AUTO, stack_size, | |
6d2010ae | 2733 | CTLFLAG_RD | CTLFLAG_LOCKED, (int *) &kernel_stack_size, 0, "Kernel stack size"); |
b0d623f7 | 2734 | SYSCTL_INT (_kern, OID_AUTO, stack_depth_max, |
6d2010ae | 2735 | CTLFLAG_RD | CTLFLAG_LOCKED, (int *) &kernel_stack_depth_max, 0, "Max kernel stack depth at interrupt or context switch"); |
b0d623f7 | 2736 | |
b7266188 A |
2737 | /* |
2738 | * enable back trace for port allocations | |
2739 | */ | |
2740 | extern int ipc_portbt; | |
2741 | ||
2742 | SYSCTL_INT(_kern, OID_AUTO, ipc_portbt, | |
6d2010ae | 2743 | CTLFLAG_RW | CTLFLAG_KERN | CTLFLAG_LOCKED, |
b7266188 A |
2744 | &ipc_portbt, 0, ""); |
2745 | ||
6d2010ae A |
2746 | /* |
2747 | * Scheduler sysctls | |
2748 | */ | |
2749 | ||
2750 | /* | |
2751 | * See osfmk/kern/sched_prim.c for the corresponding definition | |
2752 | * in osfmk/. If either version changes, update the other. | |
2753 | */ | |
2754 | #define SCHED_STRING_MAX_LENGTH (48) | |
2755 | ||
2756 | extern char sched_string[SCHED_STRING_MAX_LENGTH]; | |
2757 | SYSCTL_STRING(_kern, OID_AUTO, sched, | |
2758 | CTLFLAG_RD | CTLFLAG_KERN | CTLFLAG_LOCKED, | |
2759 | sched_string, sizeof(sched_string), | |
2760 | "Timeshare scheduler implementation"); | |
316670eb A |
2761 | |
2762 | /* | |
2763 | * Only support runtime modification on embedded platforms | |
2764 | * with development config enabled | |
2765 | */ | |
fe8ab488 A |
2766 | |
2767 | ||
2768 | /* Parameters related to timer coalescing tuning, to be replaced | |
2769 | * with a dedicated systemcall in the future. | |
2770 | */ | |
2771 | /* Enable processing pending timers in the context of any other interrupt | |
2772 | * Coalescing tuning parameters for various thread/task attributes */ | |
2773 | STATIC int | |
2774 | sysctl_timer_user_us_kernel_abstime SYSCTL_HANDLER_ARGS | |
2775 | { | |
2776 | #pragma unused(oidp) | |
2777 | int size = arg2; /* subcommand*/ | |
2778 | int error; | |
2779 | int changed = 0; | |
2780 | uint64_t old_value_ns; | |
2781 | uint64_t new_value_ns; | |
2782 | uint64_t value_abstime; | |
2783 | if (size == sizeof(uint32_t)) | |
2784 | value_abstime = *((uint32_t *)arg1); | |
2785 | else if (size == sizeof(uint64_t)) | |
2786 | value_abstime = *((uint64_t *)arg1); | |
2787 | else return ENOTSUP; | |
2788 | ||
2789 | absolutetime_to_nanoseconds(value_abstime, &old_value_ns); | |
2790 | error = sysctl_io_number(req, old_value_ns, sizeof(old_value_ns), &new_value_ns, &changed); | |
2791 | if ((error) || (!changed)) | |
2792 | return error; | |
2793 | ||
2794 | nanoseconds_to_absolutetime(new_value_ns, &value_abstime); | |
2795 | if (size == sizeof(uint32_t)) | |
2796 | *((uint32_t *)arg1) = (uint32_t)value_abstime; | |
2797 | else | |
2798 | *((uint64_t *)arg1) = value_abstime; | |
2799 | return error; | |
2800 | } | |
2801 | ||
2802 | SYSCTL_INT(_kern, OID_AUTO, timer_coalesce_bg_scale, | |
2803 | CTLFLAG_KERN | CTLFLAG_RW | CTLFLAG_LOCKED, | |
2804 | &tcoal_prio_params.timer_coalesce_bg_shift, 0, ""); | |
2805 | SYSCTL_PROC(_kern, OID_AUTO, timer_resort_threshold_ns, | |
2806 | CTLTYPE_QUAD | CTLFLAG_KERN | CTLFLAG_RW | CTLFLAG_LOCKED, | |
2807 | &tcoal_prio_params.timer_resort_threshold_abstime, | |
2808 | sizeof(tcoal_prio_params.timer_resort_threshold_abstime), | |
2809 | sysctl_timer_user_us_kernel_abstime, | |
2810 | "Q", ""); | |
2811 | SYSCTL_PROC(_kern, OID_AUTO, timer_coalesce_bg_ns_max, | |
2812 | CTLTYPE_QUAD | CTLFLAG_KERN | CTLFLAG_RW | CTLFLAG_LOCKED, | |
2813 | &tcoal_prio_params.timer_coalesce_bg_abstime_max, | |
2814 | sizeof(tcoal_prio_params.timer_coalesce_bg_abstime_max), | |
2815 | sysctl_timer_user_us_kernel_abstime, | |
2816 | "Q", ""); | |
2817 | ||
2818 | SYSCTL_INT(_kern, OID_AUTO, timer_coalesce_kt_scale, | |
2819 | CTLFLAG_KERN | CTLFLAG_RW | CTLFLAG_LOCKED, | |
2820 | &tcoal_prio_params.timer_coalesce_kt_shift, 0, ""); | |
2821 | ||
2822 | SYSCTL_PROC(_kern, OID_AUTO, timer_coalesce_kt_ns_max, | |
2823 | CTLTYPE_QUAD | CTLFLAG_KERN | CTLFLAG_RW | CTLFLAG_LOCKED, | |
2824 | &tcoal_prio_params.timer_coalesce_kt_abstime_max, | |
2825 | sizeof(tcoal_prio_params.timer_coalesce_kt_abstime_max), | |
2826 | sysctl_timer_user_us_kernel_abstime, | |
2827 | "Q", ""); | |
2828 | ||
2829 | SYSCTL_INT(_kern, OID_AUTO, timer_coalesce_fp_scale, | |
2830 | CTLFLAG_KERN | CTLFLAG_RW | CTLFLAG_LOCKED, | |
2831 | &tcoal_prio_params.timer_coalesce_fp_shift, 0, ""); | |
2832 | ||
2833 | SYSCTL_PROC(_kern, OID_AUTO, timer_coalesce_fp_ns_max, | |
2834 | CTLTYPE_QUAD | CTLFLAG_KERN | CTLFLAG_RW | CTLFLAG_LOCKED, | |
2835 | &tcoal_prio_params.timer_coalesce_fp_abstime_max, | |
2836 | sizeof(tcoal_prio_params.timer_coalesce_fp_abstime_max), | |
2837 | sysctl_timer_user_us_kernel_abstime, | |
2838 | "Q", ""); | |
2839 | ||
2840 | SYSCTL_INT(_kern, OID_AUTO, timer_coalesce_ts_scale, | |
2841 | CTLFLAG_KERN | CTLFLAG_RW | CTLFLAG_LOCKED, | |
2842 | &tcoal_prio_params.timer_coalesce_ts_shift, 0, ""); | |
2843 | ||
2844 | SYSCTL_PROC(_kern, OID_AUTO, timer_coalesce_ts_ns_max, | |
2845 | CTLTYPE_QUAD | CTLFLAG_KERN | CTLFLAG_RW | CTLFLAG_LOCKED, | |
2846 | &tcoal_prio_params.timer_coalesce_ts_abstime_max, | |
2847 | sizeof(tcoal_prio_params.timer_coalesce_ts_abstime_max), | |
2848 | sysctl_timer_user_us_kernel_abstime, | |
2849 | "Q", ""); | |
2850 | ||
2851 | SYSCTL_INT(_kern, OID_AUTO, timer_coalesce_tier0_scale, | |
2852 | CTLFLAG_KERN | CTLFLAG_RW | CTLFLAG_LOCKED, | |
2853 | &tcoal_prio_params.latency_qos_scale[0], 0, ""); | |
2854 | ||
2855 | SYSCTL_PROC(_kern, OID_AUTO, timer_coalesce_tier0_ns_max, | |
2856 | CTLTYPE_QUAD | CTLFLAG_KERN | CTLFLAG_RW | CTLFLAG_LOCKED, | |
2857 | &tcoal_prio_params.latency_qos_abstime_max[0], | |
2858 | sizeof(tcoal_prio_params.latency_qos_abstime_max[0]), | |
2859 | sysctl_timer_user_us_kernel_abstime, | |
2860 | "Q", ""); | |
2861 | ||
2862 | SYSCTL_INT(_kern, OID_AUTO, timer_coalesce_tier1_scale, | |
2863 | CTLFLAG_KERN | CTLFLAG_RW | CTLFLAG_LOCKED, | |
2864 | &tcoal_prio_params.latency_qos_scale[1], 0, ""); | |
2865 | ||
2866 | SYSCTL_PROC(_kern, OID_AUTO, timer_coalesce_tier1_ns_max, | |
2867 | CTLTYPE_QUAD | CTLFLAG_KERN | CTLFLAG_RW | CTLFLAG_LOCKED, | |
2868 | &tcoal_prio_params.latency_qos_abstime_max[1], | |
2869 | sizeof(tcoal_prio_params.latency_qos_abstime_max[1]), | |
2870 | sysctl_timer_user_us_kernel_abstime, | |
2871 | "Q", ""); | |
2872 | ||
2873 | SYSCTL_INT(_kern, OID_AUTO, timer_coalesce_tier2_scale, | |
2874 | CTLFLAG_KERN | CTLFLAG_RW | CTLFLAG_LOCKED, | |
2875 | &tcoal_prio_params.latency_qos_scale[2], 0, ""); | |
2876 | ||
2877 | SYSCTL_PROC(_kern, OID_AUTO, timer_coalesce_tier2_ns_max, | |
2878 | CTLTYPE_QUAD | CTLFLAG_KERN | CTLFLAG_RW | CTLFLAG_LOCKED, | |
2879 | &tcoal_prio_params.latency_qos_abstime_max[2], | |
2880 | sizeof(tcoal_prio_params.latency_qos_abstime_max[2]), | |
2881 | sysctl_timer_user_us_kernel_abstime, | |
2882 | "Q", ""); | |
2883 | ||
2884 | SYSCTL_INT(_kern, OID_AUTO, timer_coalesce_tier3_scale, | |
2885 | CTLFLAG_KERN | CTLFLAG_RW | CTLFLAG_LOCKED, | |
2886 | &tcoal_prio_params.latency_qos_scale[3], 0, ""); | |
2887 | ||
2888 | SYSCTL_PROC(_kern, OID_AUTO, timer_coalesce_tier3_ns_max, | |
2889 | CTLTYPE_QUAD | CTLFLAG_KERN | CTLFLAG_RW | CTLFLAG_LOCKED, | |
2890 | &tcoal_prio_params.latency_qos_abstime_max[3], | |
2891 | sizeof(tcoal_prio_params.latency_qos_abstime_max[3]), | |
2892 | sysctl_timer_user_us_kernel_abstime, | |
2893 | "Q", ""); | |
2894 | ||
2895 | SYSCTL_INT(_kern, OID_AUTO, timer_coalesce_tier4_scale, | |
2896 | CTLFLAG_KERN | CTLFLAG_RW | CTLFLAG_LOCKED, | |
2897 | &tcoal_prio_params.latency_qos_scale[4], 0, ""); | |
2898 | ||
2899 | SYSCTL_PROC(_kern, OID_AUTO, timer_coalesce_tier4_ns_max, | |
2900 | CTLTYPE_QUAD | CTLFLAG_KERN | CTLFLAG_RW | CTLFLAG_LOCKED, | |
2901 | &tcoal_prio_params.latency_qos_abstime_max[4], | |
2902 | sizeof(tcoal_prio_params.latency_qos_abstime_max[4]), | |
2903 | sysctl_timer_user_us_kernel_abstime, | |
2904 | "Q", ""); | |
2905 | ||
2906 | SYSCTL_INT(_kern, OID_AUTO, timer_coalesce_tier5_scale, | |
2907 | CTLFLAG_KERN | CTLFLAG_RW | CTLFLAG_LOCKED, | |
2908 | &tcoal_prio_params.latency_qos_scale[5], 0, ""); | |
2909 | ||
2910 | SYSCTL_PROC(_kern, OID_AUTO, timer_coalesce_tier5_ns_max, | |
2911 | CTLTYPE_QUAD | CTLFLAG_KERN | CTLFLAG_RW | CTLFLAG_LOCKED, | |
2912 | &tcoal_prio_params.latency_qos_abstime_max[5], | |
2913 | sizeof(tcoal_prio_params.latency_qos_abstime_max[5]), | |
2914 | sysctl_timer_user_us_kernel_abstime, | |
2915 | "Q", ""); | |
2916 | ||
2917 | /* Communicate the "user idle level" heuristic to the timer layer, and | |
2918 | * potentially other layers in the future. | |
2919 | */ | |
2920 | ||
2921 | static int | |
2922 | timer_user_idle_level(__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req) { | |
2923 | int new_value = 0, old_value = 0, changed = 0, error; | |
2924 | ||
2925 | old_value = timer_get_user_idle_level(); | |
2926 | ||
2927 | error = sysctl_io_number(req, old_value, sizeof(int), &new_value, &changed); | |
2928 | ||
2929 | if (error == 0 && changed) { | |
2930 | if (timer_set_user_idle_level(new_value) != KERN_SUCCESS) | |
2931 | error = ERANGE; | |
2932 | } | |
2933 | ||
2934 | return error; | |
2935 | } | |
2936 | ||
2937 | SYSCTL_PROC(_machdep, OID_AUTO, user_idle_level, | |
2938 | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_LOCKED, | |
2939 | 0, 0, | |
2940 | timer_user_idle_level, "I", "User idle level heuristic, 0-128"); | |
2941 | ||
2942 | #if HYPERVISOR | |
2943 | SYSCTL_INT(_kern, OID_AUTO, hv_support, | |
2944 | CTLFLAG_KERN | CTLFLAG_RD | CTLFLAG_LOCKED, | |
2945 | &hv_support_available, 0, ""); | |
2946 | #endif |