/*
- * Copyright (c) 2000-2004 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 2000-2007 Apple Inc. All rights reserved.
*
- * @APPLE_LICENSE_HEADER_START@
+ * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
*
- * The contents of this file constitute Original Code as defined in and
- * are subject to the Apple Public Source License Version 1.1 (the
- * "License"). You may not use this file except in compliance with the
- * License. Please obtain a copy of the License at
- * http://www.apple.com/publicsource and read it before using this file.
+ * This file contains Original Code and/or Modifications of Original Code
+ * as defined in and that are subject to the Apple Public Source License
+ * Version 2.0 (the 'License'). You may not use this file except in
+ * compliance with the License. The rights granted to you under the License
+ * may not be used to create, or enable the creation or redistribution of,
+ * unlawful or unlicensed copies of an Apple operating system, or to
+ * circumvent, violate, or enable the circumvention or violation of, any
+ * terms of an Apple operating system software license agreement.
*
- * This Original Code and all software distributed under the License are
- * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
+ * Please obtain a copy of the License at
+ * http://www.opensource.apple.com/apsl/ and read it before using this file.
+ *
+ * The Original Code and all software distributed under the License are
+ * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
* EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
* INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
- * License for the specific language governing rights and limitations
- * under the License.
+ * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
+ * Please see the License for the specific language governing rights and
+ * limitations under the License.
*
- * @APPLE_LICENSE_HEADER_END@
+ * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
*/
/* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */
/*-
*
* @(#)kern_sysctl.c 8.4 (Berkeley) 4/14/94
*/
+/*
+ * NOTICE: This file was modified by SPARTA, Inc. in 2005 to introduce
+ * support for mandatory and extensible security protections. This notice
+ * is included in support of clause 2.2 (b) of the Apple Public License,
+ * Version 2.0.
+ */
/*
- * sysctl system call.
+* DEPRECATED sysctl system call code
+ *
+ * Everything in this file is deprecated. Sysctls should be handled
+ * by the code in kern_newsysctl.c.
+ * The remaining "case" sections are supposed to be converted into
+ * SYSCTL_*-style definitions, and as soon as all of them are gone,
+ * this source file is supposed to die.
+ *
+ * DO NOT ADD ANY MORE "case" SECTIONS TO THIS FILE, instead define
+ * your sysctl with SYSCTL_INT, SYSCTL_PROC etc. in your source file.
*/
#include <sys/param.h>
#include <sys/sysctl.h>
#include <sys/user.h>
#include <sys/aio_kern.h>
+#include <sys/reboot.h>
-#include <bsm/audit_kernel.h>
+#include <security/audit/audit.h>
+#include <kern/kalloc.h>
#include <mach/machine.h>
#include <mach/mach_types.h>
#include <mach/vm_param.h>
+#include <kern/mach_param.h>
#include <kern/task.h>
#include <kern/lock.h>
+#include <kern/debug.h>
#include <vm/vm_kern.h>
#include <vm/vm_map.h>
#include <mach/host_info.h>
-extern vm_map_t bsd_pageable_map;
-
#include <sys/mount_internal.h>
#include <sys/kdebug.h>
#include <sys/sysproto.h>
#include <vm/vm_protos.h>
-#ifdef __i386__
+#if defined(__i386__) || defined(__x86_64__)
#include <i386/cpuid.h>
#endif
sysctlfn kern_sysctl;
-#ifdef DEBUG
+#if DEBUG
sysctlfn debug_sysctl;
#endif
-extern sysctlfn vm_sysctl;
-extern sysctlfn vfs_sysctl;
extern sysctlfn net_sysctl;
extern sysctlfn cpu_sysctl;
extern int aio_max_requests;
extern int aio_max_requests_per_process;
extern int aio_worker_threads;
-extern int maxfilesperproc;
extern int lowpri_IO_window_msecs;
extern int lowpri_IO_delay_msecs;
extern int nx_enabled;
+extern int speculative_reads_disabled;
+extern unsigned int preheat_pages_max;
+extern unsigned int preheat_pages_min;
+extern unsigned int preheat_pages_mult;
+extern long numvnodes;
static void
-fill_eproc(struct proc *p, struct eproc *ep);
+fill_user32_eproc(proc_t p, struct user32_eproc *ep);
static void
-fill_externproc(struct proc *p, struct extern_proc *exp);
+fill_user32_externproc(proc_t p, struct user32_extern_proc *exp);
static void
-fill_user_eproc(struct proc *p, struct user_eproc *ep);
+fill_user64_eproc(proc_t p, struct user64_eproc *ep);
static void
-fill_user_proc(struct proc *p, struct user_kinfo_proc *kp);
+fill_user64_proc(proc_t p, struct user64_kinfo_proc *kp);
static void
-fill_user_externproc(struct proc *p, struct user_extern_proc *exp);
+fill_user64_externproc(proc_t p, struct user64_extern_proc *exp);
extern int
kdbg_control(int *name, u_int namelen, user_addr_t where, size_t * sizep);
int
-kdebug_ops(int *name, u_int namelen, user_addr_t where, size_t *sizep, struct proc *p);
+kdebug_ops(int *name, u_int namelen, user_addr_t where, size_t *sizep, proc_t p);
#if NFSCLIENT
extern int
netboot_root(void);
#endif
int
pcsamples_ops(int *name, u_int namelen, user_addr_t where, size_t *sizep,
- struct proc *p);
+ proc_t p);
__private_extern__ kern_return_t
reset_vmobjectcache(unsigned int val1, unsigned int val2);
-extern int
-resize_namecache(u_int newsize);
-static int
-sysctl_aiomax(user_addr_t oldp, size_t *oldlenp, user_addr_t newp, size_t newlen);
-static int
-sysctl_aioprocmax(user_addr_t oldp, size_t *oldlenp, user_addr_t newp, size_t newlen);
-static int
-sysctl_aiothreads(user_addr_t oldp, size_t *oldlenp, user_addr_t newp, size_t newlen);
-extern int
-sysctl_clockrate(user_addr_t where, size_t *sizep);
int
sysctl_doproc(int *name, u_int namelen, user_addr_t where, size_t *sizep);
int
sysctl_doprof(int *name, u_int namelen, user_addr_t oldp, size_t *oldlenp,
user_addr_t newp, size_t newlen);
-int
-sysctl_file(user_addr_t where, size_t *sizep);
static void
-fill_proc(struct proc *p, struct kinfo_proc *kp);
-static int
-sysctl_maxfilesperproc(user_addr_t oldp, size_t *oldlenp,
- user_addr_t newp, size_t newlen);
-static int
-sysctl_maxprocperuid(user_addr_t oldp, size_t *oldlenp,
- user_addr_t newp, size_t newlen);
-static int
-sysctl_maxproc(user_addr_t oldp, size_t *oldlenp,
- user_addr_t newp, size_t newlen);
+fill_user32_proc(proc_t p, struct user32_kinfo_proc *kp);
int
sysctl_procargs(int *name, u_int namelen, user_addr_t where,
- size_t *sizep, struct proc *cur_proc);
+ size_t *sizep, proc_t cur_proc);
static int
sysctl_procargs2(int *name, u_int namelen, user_addr_t where, size_t *sizep,
- struct proc *cur_proc);
+ proc_t cur_proc);
static int
sysctl_procargsx(int *name, u_int namelen, user_addr_t where, size_t *sizep,
- struct proc *cur_proc, int argc_yes);
+ proc_t cur_proc, int argc_yes);
int
sysctl_struct(user_addr_t oldp, size_t *oldlenp, user_addr_t newp,
size_t newlen, void *sp, int len);
-extern int
-sysctl_vnode(user_addr_t where, size_t *sizep);
+static int sysdoproc_filt_KERN_PROC_PID(proc_t p, void * arg);
+static int sysdoproc_filt_KERN_PROC_PGRP(proc_t p, void * arg);
+static int sysdoproc_filt_KERN_PROC_TTY(proc_t p, void * arg);
+static int sysdoproc_filt_KERN_PROC_UID(proc_t p, void * arg);
+static int sysdoproc_filt_KERN_PROC_RUID(proc_t p, void * arg);
+#if CONFIG_LCTX
+static int sysdoproc_filt_KERN_PROC_LCID(proc_t p, void * arg);
+#endif
+int sysdoproc_callback(proc_t p, void *arg);
-/*
- * temporary location for vm_sysctl. This should be machine independant
- */
-
-extern uint32_t mach_factor[3];
+static int __sysctl_funneled(proc_t p, struct __sysctl_args *uap, int32_t *retval);
+
+extern void IORegistrySetOSBuildVersion(char * build_version);
static void
-loadavg32to64(struct loadavg *la32, struct user_loadavg *la64)
+fill_loadavg64(struct loadavg *la, struct user64_loadavg *la64)
{
- la64->ldavg[0] = la32->ldavg[0];
- la64->ldavg[1] = la32->ldavg[1];
- la64->ldavg[2] = la32->ldavg[2];
- la64->fscale = (user_long_t)la32->fscale;
+ la64->ldavg[0] = la->ldavg[0];
+ la64->ldavg[1] = la->ldavg[1];
+ la64->ldavg[2] = la->ldavg[2];
+ la64->fscale = (user64_long_t)la->fscale;
}
-int
-vm_sysctl(int *name, __unused u_int namelen, user_addr_t oldp, size_t *oldlenp,
- user_addr_t newp, size_t newlen, __unused struct proc *p)
+static void
+fill_loadavg32(struct loadavg *la, struct user32_loadavg *la32)
{
- struct loadavg loadinfo;
-
- switch (name[0]) {
- case VM_LOADAVG:
- if (proc_is64bit(p)) {
- struct user_loadavg loadinfo64;
- loadavg32to64(&averunnable, &loadinfo64);
- return (sysctl_struct(oldp, oldlenp, newp, newlen,
- &loadinfo64, sizeof(loadinfo64)));
- } else {
- return (sysctl_struct(oldp, oldlenp, newp, newlen,
- &averunnable, sizeof(struct loadavg)));
- }
- case VM_MACHFACTOR:
- loadinfo.ldavg[0] = mach_factor[0];
- loadinfo.ldavg[1] = mach_factor[1];
- loadinfo.ldavg[2] = mach_factor[2];
- loadinfo.fscale = LSCALE;
- if (proc_is64bit(p)) {
- struct user_loadavg loadinfo64;
- loadavg32to64(&loadinfo, &loadinfo64);
- return (sysctl_struct(oldp, oldlenp, newp, newlen,
- &loadinfo64, sizeof(loadinfo64)));
- } else {
- return (sysctl_struct(oldp, oldlenp, newp, newlen,
- &loadinfo, sizeof(struct loadavg)));
- }
- case VM_SWAPUSAGE: {
- int error;
- uint64_t swap_total;
- uint64_t swap_avail;
- uint32_t swap_pagesize;
- boolean_t swap_encrypted;
- struct xsw_usage xsu;
-
- error = macx_swapinfo(&swap_total,
- &swap_avail,
- &swap_pagesize,
- &swap_encrypted);
- if (error)
- return error;
-
- xsu.xsu_total = swap_total;
- xsu.xsu_avail = swap_avail;
- xsu.xsu_used = swap_total - swap_avail;
- xsu.xsu_pagesize = swap_pagesize;
- xsu.xsu_encrypted = swap_encrypted;
- return sysctl_struct(oldp, oldlenp, newp, newlen,
- &xsu, sizeof (struct xsw_usage));
- }
- case VM_METER:
- return (ENOTSUP);
- case VM_MAXID:
- return (ENOTSUP);
- default:
- return (ENOTSUP);
- }
- /* NOTREACHED */
- return (ENOTSUP);
+ la32->ldavg[0] = la->ldavg[0];
+ la32->ldavg[1] = la->ldavg[1];
+ la32->ldavg[2] = la->ldavg[2];
+ la32->fscale = (user32_long_t)la->fscale;
}
/*
* Locking and stats
*/
-static struct sysctl_lock {
- int sl_lock;
- int sl_want;
- int sl_locked;
-} memlock;
+static struct sysctl_lock memlock;
+/* sysctl() syscall */
int
-__sysctl(struct proc *p, struct __sysctl_args *uap, __unused register_t *retval)
+__sysctl(proc_t p, struct __sysctl_args *uap, int32_t *retval)
+{
+ boolean_t funnel_state;
+ int error;
+
+ funnel_state = thread_funnel_set(kernel_flock, TRUE);
+ error = __sysctl_funneled(p, uap, retval);
+ thread_funnel_set(kernel_flock, funnel_state);
+ return(error);
+}
+
+static int
+__sysctl_funneled(proc_t p, struct __sysctl_args *uap, __unused int32_t *retval)
{
int error, dolock = 1;
size_t savelen = 0, oldlen = 0, newlen;
sysctlfn *fnp = NULL;
int name[CTL_MAXNAME];
- int i;
int error1;
+ boolean_t memlock_taken = FALSE;
+ boolean_t vslock_taken = FALSE;
+#if CONFIG_MACF
+ kauth_cred_t my_cred;
+#endif
/*
* all top-level sysctl names are non-terminal
else {
newlen = uap->newlen;
}
-
+
/* CTL_UNSPEC is used to get oid to AUTO_OID */
if (uap->new != USER_ADDR_NULL
&& ((name[0] == CTL_KERN
&& !(name[1] == KERN_IPC || name[1] == KERN_PANICINFO || name[1] == KERN_PROCDELAYTERM ||
- name[1] == KERN_PROC_LOW_PRI_IO || name[1] == KERN_PROCNAME || name[1] == KERN_THALTSTACK))
+ name[1] == KERN_PROCNAME || name[1] == KERN_RAGEVNODE || name[1] == KERN_CHECKOPENEVT || name[1] == KERN_THREADNAME))
|| (name[0] == CTL_HW)
- || (name[0] == CTL_VM)
- || (name[0] == CTL_VFS))
+ || (name[0] == CTL_VM))
&& (error = suser(kauth_cred_get(), &p->p_acflag)))
return (error);
+/* XXX: KERN, VFS and DEBUG are handled by their respective functions,
+ * but there is a fallback for all sysctls other than VFS to
+ * userland_sysctl() - KILL THIS! */
switch (name[0]) {
case CTL_KERN:
fnp = kern_sysctl;
&& (name[1] != KERN_PROC))
dolock = 0;
break;
- case CTL_VM:
- fnp = vm_sysctl;
- break;
-
case CTL_VFS:
fnp = vfs_sysctl;
break;
-#ifdef DEBUG
+#if DEBUG
case CTL_DEBUG:
fnp = debug_sysctl;
break;
if (uap->old != USER_ADDR_NULL) {
if (!useracc(uap->old, (user_size_t)oldlen, B_WRITE))
return (EFAULT);
-
- /* The pc sampling mechanism does not need to take this lock */
- if ((name[1] != KERN_PCSAMPLES) &&
- (!((name[1] == KERN_KDEBUG) && (name[2] == KERN_KDGETENTROPY)))) {
- while (memlock.sl_lock) {
- memlock.sl_want = 1;
- sleep((caddr_t)&memlock, PRIBIO+1);
- memlock.sl_locked++;
- }
- memlock.sl_lock = 1;
- }
-
- if (dolock && oldlen &&
- (error = vslock(uap->old, (user_size_t)oldlen))) {
- if ((name[1] != KERN_PCSAMPLES) &&
- (! ((name[1] == KERN_KDEBUG) && (name[2] == KERN_KDGETENTROPY)))) {
- memlock.sl_lock = 0;
- if (memlock.sl_want) {
- memlock.sl_want = 0;
- wakeup((caddr_t)&memlock);
- }
+ /*
+ * The kernel debug mechanism does not need to take this lock, and
+ * we don't grab the memlock around calls to KERN_PROC because it is reentrant.
+ * Grabbing the lock for a KERN_PROC sysctl makes a deadlock possible 5024049.
+ */
+ if (!((name[1] == KERN_KDEBUG) && (name[2] == KERN_KDGETENTROPY)) &&
+ !(name[1] == KERN_PROC)) {
+ MEMLOCK_LOCK();
+ memlock_taken = TRUE;
+ }
+
+ if (dolock && oldlen) {
+ if ((error = vslock(uap->old, (user_size_t)oldlen))) {
+ if (memlock_taken == TRUE)
+ MEMLOCK_UNLOCK();
+ return(error);
}
- return(error);
+ savelen = oldlen;
+ vslock_taken = TRUE;
}
- savelen = oldlen;
}
+#if CONFIG_MACF
+ my_cred = kauth_cred_proc_ref(p);
+ error = mac_system_check_sysctl(
+ my_cred,
+ (int *) name,
+ uap->namelen,
+ uap->old,
+ uap->oldlenp,
+ fnp == kern_sysctl ? 1 : 0,
+ uap->new,
+ newlen
+ );
+ kauth_cred_unref(&my_cred);
+ if (!error) {
+#endif
if (fnp) {
- error = (*fnp)(name + 1, uap->namelen - 1, uap->old,
+ error = (*fnp)(name + 1, uap->namelen - 1, uap->old,
&oldlen, uap->new, newlen, p);
}
else
- error = ENOTSUP;
+ error = ENOTSUP;
+#if CONFIG_MACF
+ }
+#endif
+
+ if (vslock_taken == TRUE) {
+ error1 = vsunlock(uap->old, (user_size_t)savelen, B_WRITE);
+ if (!error)
+ error = error1;
+ }
+ if (memlock_taken == TRUE)
+ MEMLOCK_UNLOCK();
if ( (name[0] != CTL_VFS) && (error == ENOTSUP)) {
- size_t tmp = oldlen;
+ size_t tmp = oldlen;
+ boolean_t funnel_state;
+
+ /*
+ * Drop the funnel when calling new sysctl code, which will conditionally
+ * grab the funnel if it really needs to.
+ */
+ funnel_state = thread_funnel_set(kernel_flock, FALSE);
+
error = userland_sysctl(p, name, uap->namelen, uap->old, &tmp,
- 1, uap->new, newlen, &oldlen);
- }
+ uap->new, newlen, &oldlen);
- if (uap->old != USER_ADDR_NULL) {
- if (dolock && savelen) {
- error1 = vsunlock(uap->old, (user_size_t)savelen, B_WRITE);
- if (!error && error1)
- error = error1;
- }
- if (name[1] != KERN_PCSAMPLES) {
- memlock.sl_lock = 0;
- if (memlock.sl_want) {
- memlock.sl_want = 0;
- wakeup((caddr_t)&memlock);
- }
- }
+ thread_funnel_set(kernel_flock, funnel_state);
}
+
if ((error) && (error != ENOMEM))
return (error);
- if (uap->oldlenp != USER_ADDR_NULL) {
- i = suulong(uap->oldlenp, oldlen);
- if (i)
- return i;
- }
+ if (uap->oldlenp != USER_ADDR_NULL)
+ error = suulong(uap->oldlenp, oldlen);
return (error);
}
__private_extern__ int do_coredump;
__private_extern__ int sugid_coredump;
+#if COUNT_SYSCALLS
+__private_extern__ int do_count_syscalls;
+#endif
#ifdef INSECURE
int securelevel = -1;
size_t *oldSize,
user_addr_t newBuf,
__unused size_t newSize,
- struct proc *cur_proc)
+ proc_t cur_proc)
{
if (namelen < 1)
return (ENOTSUP);
(cur_proc->p_flag & P_AFFINITY) ? 1 : 0);
} else if (name[0] == 1 && 2 == namelen) {
if (name[1] == 0) {
- cur_proc->p_flag &= ~P_AFFINITY;
+ OSBitAndAtomic(~((uint32_t)P_AFFINITY), &cur_proc->p_flag);
} else {
- cur_proc->p_flag |= P_AFFINITY;
+ OSBitOrAtomic(P_AFFINITY, &cur_proc->p_flag);
}
return 0;
}
return (ENOTSUP);
}
-
static int
sysctl_translate(
int *name,
size_t *oldSize,
user_addr_t newBuf,
__unused size_t newSize,
- struct proc *cur_proc)
+ proc_t cur_proc)
{
- struct proc *p;
+ proc_t p;
+ int istranslated = 0;
+ kauth_cred_t my_cred;
+ uid_t uid;
if (namelen != 1)
return (ENOTSUP);
- p = pfind(name[0]);
+ p = proc_find(name[0]);
if (p == NULL)
return (EINVAL);
- if ((kauth_cred_getuid(p->p_ucred) != kauth_cred_getuid(kauth_cred_get()))
- && suser(kauth_cred_get(), &cur_proc->p_acflag))
+ my_cred = kauth_cred_proc_ref(p);
+ uid = kauth_cred_getuid(my_cred);
+ kauth_cred_unref(&my_cred);
+ if ((uid != kauth_cred_getuid(kauth_cred_get()))
+ && suser(kauth_cred_get(), &cur_proc->p_acflag)) {
+ proc_rele(p);
return (EPERM);
+ }
+ istranslated = (p->p_flag & P_TRANSLATED);
+ proc_rele(p);
return sysctl_rdint(oldBuf, oldSize, newBuf,
- (p->p_flag & P_TRANSLATED) ? 1 : 0);
+ (istranslated != 0) ? 1 : 0);
}
int
-set_archhandler(struct proc *p, int arch)
+set_archhandler(__unused proc_t p, int arch)
{
int error;
struct nameidata nd;
struct vnode_attr va;
- struct vfs_context context;
- char *archhandler;
+ vfs_context_t ctx = vfs_context_current();
+ struct exec_archhandler *archhandler;
switch(arch) {
case CPU_TYPE_POWERPC:
- archhandler = exec_archhandler_ppc.path;
+ archhandler = &exec_archhandler_ppc;
break;
default:
return (EBADARCH);
}
- context.vc_proc = p;
- context.vc_ucred = kauth_cred_get();
-
- NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF, UIO_SYSSPACE32,
- CAST_USER_ADDR_T(archhandler), &context);
+ NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF, UIO_SYSSPACE,
+ CAST_USER_ADDR_T(archhandler->path), ctx);
error = namei(&nd);
if (error)
return (error);
VATTR_INIT(&va);
VATTR_WANTED(&va, va_fsid);
VATTR_WANTED(&va, va_fileid);
- error = vnode_getattr(nd.ni_vp, &va, &context);
+ error = vnode_getattr(nd.ni_vp, &va, ctx);
if (error) {
vnode_put(nd.ni_vp);
return (error);
}
vnode_put(nd.ni_vp);
- exec_archhandler_ppc.fsid = va.va_fsid;
- exec_archhandler_ppc.fileid = (u_long)va.va_fileid;
+ archhandler->fsid = va.va_fsid;
+ archhandler->fileid = (u_int32_t)va.va_fileid;
return 0;
}
+/* XXX remove once Rosetta is rev'ed */
+/*****************************************************************************/
static int
sysctl_exec_archhandler_ppc(
__unused int *name,
size_t *oldSize,
user_addr_t newBuf,
size_t newSize,
- struct proc *p)
+ proc_t p)
{
int error;
size_t len;
- struct nameidata nd;
- struct vnode_attr va;
char handler[sizeof(exec_archhandler_ppc.path)];
- struct vfs_context context;
-
- context.vc_proc = p;
- context.vc_ucred = kauth_cred_get();
+ vfs_context_t ctx = vfs_context_current();
if (oldSize) {
len = strlen(exec_archhandler_ppc.path) + 1;
*oldSize = len - 1;
}
if (newBuf) {
- error = suser(context.vc_ucred, &p->p_acflag);
+ error = suser(vfs_context_ucred(ctx), &p->p_acflag);
if (error)
return (error);
if (newSize >= sizeof(exec_archhandler_ppc.path))
if (error)
return (error);
handler[newSize] = 0;
- strcpy(exec_archhandler_ppc.path, handler);
+ strlcpy(exec_archhandler_ppc.path, handler, MAXPATHLEN);
error = set_archhandler(p, CPU_TYPE_POWERPC);
if (error)
return (error);
}
return 0;
}
+/*****************************************************************************/
+
+static int
+sysctl_handle_exec_archhandler_ppc(struct sysctl_oid *oidp, void *arg1,
+ int arg2, struct sysctl_req *req)
+{
+ int error = 0;
+
+ error = sysctl_handle_string(oidp, arg1, arg2, req);
+
+ if (error)
+ goto done;
+
+ if (req->newptr)
+ error = set_archhandler(req->p, CPU_TYPE_POWERPC);
+
+done:
+ return error;
+
+}
+
+static int
+sysctl_handle_kern_threadname( __unused struct sysctl_oid *oidp, __unused void *arg1,
+ __unused int arg2, struct sysctl_req *req)
+{
+ int error;
+ struct uthread *ut = get_bsdthread_info(current_thread());
+ user_addr_t oldp=0, newp=0;
+ size_t *oldlenp=NULL;
+ size_t newlen=0;
+
+ oldp = req->oldptr;
+ oldlenp = &(req->oldlen);
+ newp = req->newptr;
+ newlen = req->newlen;
+
+ /* We want the current length, and maybe the string itself */
+ if(oldlenp) {
+ /* if we have no thread name yet tell'em we want MAXTHREADNAMESIZE - 1 */
+ size_t currlen = MAXTHREADNAMESIZE - 1;
+
+ if(ut->pth_name)
+ /* use length of current thread name */
+ currlen = strlen(ut->pth_name);
+ if(oldp) {
+ if(*oldlenp < currlen)
+ return ENOMEM;
+ /* NOTE - we do not copy the NULL terminator */
+ if(ut->pth_name) {
+ error = copyout(ut->pth_name,oldp,currlen);
+ if(error)
+ return error;
+ }
+ }
+ /* return length of thread name minus NULL terminator (just like strlen) */
+ req->oldidx = currlen;
+ }
+
+ /* We want to set the name to something */
+ if(newp)
+ {
+ if(newlen > (MAXTHREADNAMESIZE - 1))
+ return ENAMETOOLONG;
+ if(!ut->pth_name)
+ {
+ ut->pth_name = (char*)kalloc( MAXTHREADNAMESIZE );
+ if(!ut->pth_name)
+ return ENOMEM;
+ }
+ bzero(ut->pth_name, MAXTHREADNAMESIZE);
+ error = copyin(newp, ut->pth_name, newlen);
+ if(error)
+ return error;
+ }
+
+ return 0;
+}
+
+SYSCTL_PROC(_kern, KERN_THREADNAME, threadname, CTLFLAG_ANYBODY | CTLTYPE_STRING | CTLFLAG_RW, 0, 0, sysctl_handle_kern_threadname,"A","");
-SYSCTL_NODE(_kern, KERN_EXEC, exec, CTLFLAG_RD, 0, "");
+SYSCTL_NODE(_kern, KERN_EXEC, exec, CTLFLAG_RD|CTLFLAG_LOCKED, 0, "");
-SYSCTL_NODE(_kern_exec, OID_AUTO, archhandler, CTLFLAG_RD, 0, "");
+SYSCTL_NODE(_kern_exec, OID_AUTO, archhandler, CTLFLAG_RD|CTLFLAG_LOCKED, 0, "");
-SYSCTL_STRING(_kern_exec_archhandler, OID_AUTO, powerpc, CTLFLAG_RD,
- exec_archhandler_ppc.path, 0, "");
+SYSCTL_PROC(_kern_exec_archhandler, OID_AUTO, powerpc,
+ CTLTYPE_STRING | CTLFLAG_RW, exec_archhandler_ppc.path, 0,
+ sysctl_handle_exec_archhandler_ppc, "A", "");
-extern int get_kernel_symfile( struct proc *, char **);
+extern int get_kernel_symfile(proc_t, char **);
__private_extern__ int
sysctl_dopanicinfo(int *, u_int, user_addr_t, size_t *, user_addr_t,
- size_t, struct proc *);
+ size_t, proc_t);
/*
* kernel related system variables.
*/
int
kern_sysctl(int *name, u_int namelen, user_addr_t oldp, size_t *oldlenp,
- user_addr_t newp, size_t newlen, struct proc *p)
+ user_addr_t newp, size_t newlen, proc_t p)
{
- int error, level, inthostid, tmp;
- unsigned int oldval=0;
- char *str;
/* all sysctl names not listed below are terminal at this level */
if (namelen != 1
&& !(name[0] == KERN_PROC
|| name[0] == KERN_PROF
|| name[0] == KERN_KDEBUG
+#if !CONFIG_EMBEDDED
|| name[0] == KERN_PROCARGS
+#endif
|| name[0] == KERN_PROCARGS2
- || name[0] == KERN_PCSAMPLES
|| name[0] == KERN_IPC
|| name[0] == KERN_SYSV
|| name[0] == KERN_AFFINITY
|| name[0] == KERN_EXEC
|| name[0] == KERN_PANICINFO
|| name[0] == KERN_POSIX
- || name[0] == KERN_TFP)
+ || name[0] == KERN_TFP
+ || name[0] == KERN_TTY
+#if CONFIG_LCTX
+ || name[0] == KERN_LCTX
+#endif
+ )
)
return (ENOTDIR); /* overloaded */
switch (name[0]) {
- case KERN_OSTYPE:
- return (sysctl_rdstring(oldp, oldlenp, newp, ostype));
- case KERN_OSRELEASE:
- return (sysctl_rdstring(oldp, oldlenp, newp, osrelease));
- case KERN_OSREV:
- return (sysctl_rdint(oldp, oldlenp, newp, BSD));
- case KERN_VERSION:
- return (sysctl_rdstring(oldp, oldlenp, newp, version));
- case KERN_MAXVNODES:
- oldval = desiredvnodes;
- error = sysctl_int(oldp, oldlenp, newp,
- newlen, &desiredvnodes);
- reset_vmobjectcache(oldval, desiredvnodes);
- resize_namecache(desiredvnodes);
- return(error);
- case KERN_MAXPROC:
- return (sysctl_maxproc(oldp, oldlenp, newp, newlen));
- case KERN_MAXFILES:
- return (sysctl_int(oldp, oldlenp, newp, newlen, &maxfiles));
- case KERN_MAXPROCPERUID:
- return( sysctl_maxprocperuid( oldp, oldlenp, newp, newlen ) );
- case KERN_MAXFILESPERPROC:
- return( sysctl_maxfilesperproc( oldp, oldlenp, newp, newlen ) );
- case KERN_ARGMAX:
- return (sysctl_rdint(oldp, oldlenp, newp, ARG_MAX));
- case KERN_SECURELVL:
- level = securelevel;
- if ((error = sysctl_int(oldp, oldlenp, newp, newlen, &level)) ||
- newp == USER_ADDR_NULL)
- return (error);
- if (level < securelevel && p->p_pid != 1)
- return (EPERM);
- securelevel = level;
- return (0);
- case KERN_HOSTNAME:
- error = sysctl_trstring(oldp, oldlenp, newp, newlen,
- hostname, sizeof(hostname));
- if (newp && !error)
- hostnamelen = newlen;
- return (error);
- case KERN_DOMAINNAME:
- error = sysctl_string(oldp, oldlenp, newp, newlen,
- domainname, sizeof(domainname));
- if (newp && !error)
- domainnamelen = newlen;
- return (error);
- case KERN_HOSTID:
- inthostid = hostid; /* XXX assumes sizeof long <= sizeof int */
- error = sysctl_int(oldp, oldlenp, newp, newlen, &inthostid);
- hostid = inthostid;
- return (error);
- case KERN_CLOCKRATE:
- return (sysctl_clockrate(oldp, oldlenp));
- case KERN_BOOTTIME:
- {
- struct timeval t;
-
- t.tv_sec = boottime_sec();
- t.tv_usec = 0;
-
- return (sysctl_rdstruct(oldp, oldlenp, newp, &t,
- sizeof(struct timeval)));
- }
- case KERN_VNODE:
- return (sysctl_vnode(oldp, oldlenp));
case KERN_PROC:
return (sysctl_doproc(name + 1, namelen - 1, oldp, oldlenp));
- case KERN_FILE:
- return (sysctl_file(oldp, oldlenp));
#ifdef GPROF
case KERN_PROF:
return (sysctl_doprof(name + 1, namelen - 1, oldp, oldlenp,
newp, newlen));
-#endif
- case KERN_POSIX1:
- return (sysctl_rdint(oldp, oldlenp, newp, _POSIX_VERSION));
- case KERN_NGROUPS:
- return (sysctl_rdint(oldp, oldlenp, newp, NGROUPS_MAX));
- case KERN_JOB_CONTROL:
- return (sysctl_rdint(oldp, oldlenp, newp, 1));
- case KERN_SAVED_IDS:
-#ifdef _POSIX_SAVED_IDS
- return (sysctl_rdint(oldp, oldlenp, newp, 1));
-#else
- return (sysctl_rdint(oldp, oldlenp, newp, 0));
#endif
case KERN_KDEBUG:
return (kdebug_ops(name + 1, namelen - 1, oldp, oldlenp, p));
- case KERN_PCSAMPLES:
- return (pcsamples_ops(name + 1, namelen - 1, oldp, oldlenp, p));
+#if !CONFIG_EMBEDDED
case KERN_PROCARGS:
/* new one as it does not use kinfo_proc */
return (sysctl_procargs(name + 1, namelen - 1, oldp, oldlenp, p));
+#endif
case KERN_PROCARGS2:
/* new one as it does not use kinfo_proc */
return (sysctl_procargs2(name + 1, namelen - 1, oldp, oldlenp, p));
- case KERN_SYMFILE:
- error = get_kernel_symfile( p, &str );
- if ( error )
- return error;
- return (sysctl_rdstring(oldp, oldlenp, newp, str));
-#if NFSCLIENT
- case KERN_NETBOOT:
- return (sysctl_rdint(oldp, oldlenp, newp, netboot_root()));
-#endif
+#if PANIC_INFO
case KERN_PANICINFO:
return(sysctl_dopanicinfo(name + 1, namelen - 1, oldp, oldlenp,
newp, newlen, p));
+#endif
case KERN_AFFINITY:
return sysctl_affinity(name+1, namelen-1, oldp, oldlenp,
newp, newlen, p);
case KERN_TRANSLATE:
return sysctl_translate(name+1, namelen-1, oldp, oldlenp, newp,
newlen, p);
- case KERN_CLASSICHANDLER:
+
+ /* XXX remove once Rosetta has rev'ed */
+ case KERN_EXEC:
return sysctl_exec_archhandler_ppc(name+1, namelen-1, oldp,
oldlenp, newp, newlen, p);
- case KERN_AIOMAX:
- return( sysctl_aiomax( oldp, oldlenp, newp, newlen ) );
- case KERN_AIOPROCMAX:
- return( sysctl_aioprocmax( oldp, oldlenp, newp, newlen ) );
- case KERN_AIOTHREADS:
- return( sysctl_aiothreads( oldp, oldlenp, newp, newlen ) );
- case KERN_USRSTACK:
- return (sysctl_rdint(oldp, oldlenp, newp, (uintptr_t)p->user_stack));
- case KERN_USRSTACK64:
- return (sysctl_rdquad(oldp, oldlenp, newp, p->user_stack));
- case KERN_COREFILE:
- error = sysctl_string(oldp, oldlenp, newp, newlen,
- corefilename, sizeof(corefilename));
- return (error);
- case KERN_COREDUMP:
- tmp = do_coredump;
- error = sysctl_int(oldp, oldlenp, newp, newlen, &do_coredump);
- if (!error && ((do_coredump < 0) || (do_coredump > 1))) {
- do_coredump = tmp;
- error = EINVAL;
- }
- return (error);
- case KERN_SUGID_COREDUMP:
- tmp = sugid_coredump;
- error = sysctl_int(oldp, oldlenp, newp, newlen, &sugid_coredump);
- if (!error && ((sugid_coredump < 0) || (sugid_coredump > 1))) {
- sugid_coredump = tmp;
- error = EINVAL;
- }
- return (error);
- case KERN_PROCDELAYTERM:
- {
- int old_value, new_value;
-
- error = 0;
- if (oldp && *oldlenp < sizeof(int))
- return (ENOMEM);
- if ( newp && newlen != sizeof(int) )
- return(EINVAL);
- *oldlenp = sizeof(int);
- old_value = (p->p_lflag & P_LDELAYTERM)? 1: 0;
- if (oldp && (error = copyout( &old_value, oldp, sizeof(int))))
- return(error);
- if (error == 0 && newp )
- error = copyin( newp, &new_value, sizeof(int) );
- if (error == 0 && newp) {
- if (new_value)
- p->p_lflag |= P_LDELAYTERM;
- else
- p->p_lflag &= ~P_LDELAYTERM;
- }
- return(error);
- }
- case KERN_PROC_LOW_PRI_IO:
- {
- int old_value, new_value;
-
- error = 0;
- if (oldp && *oldlenp < sizeof(int))
- return (ENOMEM);
- if ( newp && newlen != sizeof(int) )
- return(EINVAL);
- *oldlenp = sizeof(int);
-
- old_value = (p->p_lflag & P_LLOW_PRI_IO)? 0x01: 0;
- if (p->p_lflag & P_LBACKGROUND_IO)
- old_value |= 0x02;
-
- if (oldp && (error = copyout( &old_value, oldp, sizeof(int))))
- return(error);
- if (error == 0 && newp )
- error = copyin( newp, &new_value, sizeof(int) );
- if (error == 0 && newp) {
- if (new_value & 0x01)
- p->p_lflag |= P_LLOW_PRI_IO;
- else if (new_value & 0x02)
- p->p_lflag |= P_LBACKGROUND_IO;
- else if (new_value == 0)
- p->p_lflag &= ~(P_LLOW_PRI_IO | P_LBACKGROUND_IO);
- }
- return(error);
- }
- case KERN_LOW_PRI_WINDOW:
- {
- int old_value, new_value;
-
- error = 0;
- if (oldp && *oldlenp < sizeof(old_value) )
- return (ENOMEM);
- if ( newp && newlen != sizeof(new_value) )
- return(EINVAL);
- *oldlenp = sizeof(old_value);
-
- old_value = lowpri_IO_window_msecs;
-
- if (oldp && (error = copyout( &old_value, oldp, *oldlenp)))
- return(error);
- if (error == 0 && newp )
- error = copyin( newp, &new_value, sizeof(newlen) );
- if (error == 0 && newp) {
- lowpri_IO_window_msecs = new_value;
- }
- return(error);
- }
- case KERN_LOW_PRI_DELAY:
- {
- int old_value, new_value;
-
- error = 0;
- if (oldp && *oldlenp < sizeof(old_value) )
- return (ENOMEM);
- if ( newp && newlen != sizeof(new_value) )
- return(EINVAL);
- *oldlenp = sizeof(old_value);
-
- old_value = lowpri_IO_delay_msecs;
-
- if (oldp && (error = copyout( &old_value, oldp, *oldlenp)))
- return(error);
- if (error == 0 && newp )
- error = copyin( newp, &new_value, sizeof(newlen) );
- if (error == 0 && newp) {
- lowpri_IO_delay_msecs = new_value;
- }
- return(error);
- }
- case KERN_NX_PROTECTION:
+#if COUNT_SYSCALLS
+ case KERN_COUNT_SYSCALLS:
{
- int old_value, new_value;
-
- error = 0;
- if (oldp && *oldlenp < sizeof(old_value) )
- return (ENOMEM);
- if ( newp && newlen != sizeof(new_value) )
- return(EINVAL);
- *oldlenp = sizeof(old_value);
-
- old_value = nx_enabled;
-
- if (oldp && (error = copyout( &old_value, oldp, *oldlenp)))
- return(error);
-#ifdef __i386__
- /*
- * Only allow setting if NX is supported on the chip
+ /* valid values passed in:
+ * = 0 means don't keep called counts for each bsd syscall
+ * > 0 means keep called counts for each bsd syscall
+ * = 2 means dump current counts to the system log
+ * = 3 means reset all counts
+ * for example, to dump current counts:
+ * sysctl -w kern.count_calls=2
*/
- if (cpuid_extfeatures() & CPUID_EXTFEATURE_XD) {
-#endif
- if (error == 0 && newp)
- error = copyin(newp, &new_value,
- sizeof(newlen));
- if (error == 0 && newp)
- nx_enabled = new_value;
-#ifdef __i386__
- } else if (newp) {
- error = ENOTSUP;
+ error = sysctl_int(oldp, oldlenp, newp, newlen, &tmp);
+ if ( error != 0 ) {
+ return (error);
}
-#endif
- return(error);
- }
- case KERN_SHREG_PRIVATIZABLE:
- /* this kernel does implement shared_region_make_private_np() */
- return (sysctl_rdint(oldp, oldlenp, newp, 1));
- case KERN_PROCNAME:
- error = sysctl_trstring(oldp, oldlenp, newp, newlen,
- &p->p_name[0], (2*MAXCOMLEN+1));
- return (error);
- case KERN_THALTSTACK:
- {
- int old_value, new_value;
-
- error = 0;
- if (oldp && *oldlenp < sizeof(int))
- return (ENOMEM);
- if ( newp && newlen != sizeof(int) )
- return(EINVAL);
- *oldlenp = sizeof(int);
- old_value = (p->p_lflag & P_LTHSIGSTACK)? 1: 0;
- if (oldp && (error = copyout( &old_value, oldp, sizeof(int))))
- return(error);
- if (error == 0 && newp )
- error = copyin( newp, &new_value, sizeof(int) );
- if (error == 0 && newp) {
- if (new_value) {
- /* we cannot swich midstream if inuse */
- if ((p->p_sigacts->ps_flags & SAS_ALTSTACK) == SAS_ALTSTACK)
- return(EPERM);
- p->p_lflag |= P_LTHSIGSTACK;
- } else {
- /* we cannot swich midstream */
- if ((p->p_lflag & P_LTHSIGSTACK) == P_LTHSIGSTACK)
- return(EPERM);
- p->p_lflag &= ~P_LTHSIGSTACK;
+
+ if ( tmp == 1 ) {
+ do_count_syscalls = 1;
+ }
+ else if ( tmp == 0 || tmp == 2 || tmp == 3 ) {
+ extern int nsysent;
+ extern int syscalls_log[];
+ extern const char * syscallnames[];
+ int i;
+ for ( i = 0; i < nsysent; i++ ) {
+ if ( syscalls_log[i] != 0 ) {
+ if ( tmp == 2 ) {
+ printf("%d calls - name %s \n", syscalls_log[i], syscallnames[i]);
}
- }
- return(error);
+ else {
+ syscalls_log[i] = 0;
+ }
+ }
+ }
+ if ( tmp != 0 ) {
+ do_count_syscalls = 1;
+ }
+ }
+ return (0);
}
+#endif
default:
return (ENOTSUP);
}
/* NOTREACHED */
}
-#ifdef DEBUG
+#if DEBUG
/*
* Debugging related system variables.
*/
};
int
debug_sysctl(int *name, u_int namelen, user_addr_t oldp, size_t *oldlenp,
- user_addr_t newp, size_t newlen, struct proc *p)
+ user_addr_t newp, size_t newlen, __unused proc_t p)
{
struct ctldebug *cdp;
/* all sysctl names at this level are name and field */
if (namelen != 2)
- return (ENOTDIR); /* overloaded */
+ return (ENOTSUP); /* overloaded */
+ if (name[0] < 0 || name[0] >= CTL_DEBUG_MAXID)
+ return (ENOTSUP);
cdp = debugvars[name[0]];
if (cdp->debugname == 0)
return (ENOTSUP);
}
#endif /* DEBUG */
+/*
+ * The following sysctl_* functions should not be used
+ * any more, as they can only cope with callers in
+ * user mode: Use new-style
+ * sysctl_io_number()
+ * sysctl_io_string()
+ * sysctl_io_opaque()
+ * instead.
+ */
+
/*
* Validate parameters and get old / set new parameters
* for an integer-valued sysctl function.
error = copyout(valp, oldp, sizeof(int));
if (error == 0 && newp) {
error = copyin(newp, valp, sizeof(int));
- AUDIT_ARG(value, *valp);
+ AUDIT_ARG(value32, *valp);
}
return (error);
}
* As above, but read-only.
*/
int
-sysctl_rdquad(oldp, oldlenp, newp, val)
- void *oldp;
- size_t *oldlenp;
- void *newp;
- quad_t val;
+sysctl_rdquad(user_addr_t oldp, size_t *oldlenp, user_addr_t newp, quad_t val)
{
int error = 0;
return (EPERM);
*oldlenp = sizeof(quad_t);
if (oldp)
- error = copyout((caddr_t)&val, CAST_USER_ADDR_T(oldp), sizeof(quad_t));
+ error = copyout((caddr_t)&val, oldp, sizeof(quad_t));
return (error);
}
/*
* Get file structures.
*/
-int
-sysctl_file(user_addr_t where, size_t *sizep)
+static int
+sysctl_file
+(__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req)
{
- int buflen, error;
+ int error;
struct fileglob *fg;
- user_addr_t start = where;
struct extern_file nef;
- buflen = *sizep;
- if (where == USER_ADDR_NULL) {
+ if (req->oldptr == USER_ADDR_NULL) {
/*
* overestimate by 10 files
*/
- *sizep = sizeof(filehead) + (nfiles + 10) * sizeof(struct extern_file);
+ req->oldidx = sizeof(filehead) + (nfiles + 10) * sizeof(struct extern_file);
return (0);
}
/*
* first copyout filehead
*/
- if (buflen < 0 || (size_t)buflen < sizeof(filehead)) {
- *sizep = 0;
- return (0);
- }
- error = copyout((caddr_t)&filehead, where, sizeof(filehead));
+ error = SYSCTL_OUT(req, &filehead, sizeof(filehead));
if (error)
return (error);
- buflen -= sizeof(filehead);
- where += sizeof(filehead);
/*
* followed by an array of file structures
*/
for (fg = filehead.lh_first; fg != 0; fg = fg->f_list.le_next) {
- if (buflen < 0 || (size_t)buflen < sizeof(struct extern_file)) {
- *sizep = where - start;
- return (ENOMEM);
- }
nef.f_list.le_next = (struct extern_file *)fg->f_list.le_next;
nef.f_list.le_prev = (struct extern_file **)fg->f_list.le_prev;
nef.f_flag = (fg->fg_flag & FMASK);
nef.f_ops = fg->fg_ops;
nef.f_offset = fg->fg_offset;
nef.f_data = fg->fg_data;
- error = copyout((caddr_t)&nef, where, sizeof (struct extern_file));
+ error = SYSCTL_OUT(req, &nef, sizeof(nef));
if (error)
return (error);
- buflen -= sizeof(struct extern_file);
- where += sizeof(struct extern_file);
}
- *sizep = where - start;
return (0);
}
-/*
- * try over estimating by 5 procs
- */
-#define KERN_PROCSLOP (5 * sizeof (struct kinfo_proc))
+SYSCTL_PROC(_kern, KERN_FILE, file,
+ CTLTYPE_STRUCT | CTLFLAG_RW,
+ 0, 0, sysctl_file, "S,filehead", "");
-int
-sysctl_doproc(int *name, u_int namelen, user_addr_t where, size_t *sizep)
+static int
+sysdoproc_filt_KERN_PROC_PID(proc_t p, void * arg)
{
- struct proc *p;
- user_addr_t dp = where;
- size_t needed = 0;
- int buflen = where != USER_ADDR_NULL ? *sizep : 0;
- int doingzomb;
- int error = 0;
- boolean_t is_64_bit = FALSE;
- struct kinfo_proc kproc;
- struct user_kinfo_proc user_kproc;
- int sizeof_kproc;
- caddr_t kprocp;
+ if (p->p_pid != (pid_t)*(int*)arg)
+ return(0);
+ else
+ return(1);
+}
- if (namelen != 2 && !(namelen == 1 && name[0] == KERN_PROC_ALL))
- return (EINVAL);
- p = allproc.lh_first;
- doingzomb = 0;
- is_64_bit = proc_is64bit(current_proc());
- if (is_64_bit) {
- sizeof_kproc = sizeof(user_kproc);
- kprocp = (caddr_t) &user_kproc;
- }
- else {
- sizeof_kproc = sizeof(kproc);
- kprocp = (caddr_t) &kproc;
- }
-again:
- for (; p != 0; p = p->p_list.le_next) {
- /*
- * Skip embryonic processes.
- */
- if (p->p_stat == SIDL)
- continue;
- /*
- * TODO - make more efficient (see notes below).
- * do by session.
- */
- switch (name[0]) {
+static int
+sysdoproc_filt_KERN_PROC_PGRP(proc_t p, void * arg)
+{
+ if (p->p_pgrpid != (pid_t)*(int*)arg)
+ return(0);
+ else
+ return(1);
+}
- case KERN_PROC_PID:
- /* could do this with just a lookup */
- if (p->p_pid != (pid_t)name[1])
- continue;
- break;
+static int
+sysdoproc_filt_KERN_PROC_TTY(proc_t p, void * arg)
+{
+ boolean_t funnel_state;
+ int retval;
+ struct tty *tp;
- case KERN_PROC_PGRP:
- /* could do this by traversing pgrp */
- if (p->p_pgrp->pg_id != (pid_t)name[1])
- continue;
- break;
+
+ funnel_state = thread_funnel_set(kernel_flock, TRUE);
+ /* This is very racy but list lock is held.. Hmmm. */
+ if ((p->p_flag & P_CONTROLT) == 0 ||
+ (p->p_pgrp == NULL) || (p->p_pgrp->pg_session == NULL) ||
+ (tp = SESSION_TP(p->p_pgrp->pg_session)) == TTY_NULL ||
+ tp->t_dev != (dev_t)*(int*)arg)
+ retval = 0;
+ else
+ retval = 1;
- case KERN_PROC_TTY:
- if ((p->p_flag & P_CONTROLT) == 0 ||
- (p->p_session == NULL) ||
- p->p_session->s_ttyp == NULL ||
- p->p_session->s_ttyp->t_dev != (dev_t)name[1])
- continue;
- break;
+ thread_funnel_set(kernel_flock, funnel_state);
- case KERN_PROC_UID:
- if ((p->p_ucred == NULL) ||
- (kauth_cred_getuid(p->p_ucred) != (uid_t)name[1]))
- continue;
- break;
+ return(retval);
+}
- case KERN_PROC_RUID:
- if ((p->p_ucred == NULL) ||
- (p->p_ucred->cr_ruid != (uid_t)name[1]))
- continue;
- break;
- }
- if (buflen >= sizeof_kproc) {
- bzero(kprocp, sizeof_kproc);
- if (is_64_bit) {
- fill_user_proc(p, (struct user_kinfo_proc *) kprocp);
- }
- else {
- fill_proc(p, (struct kinfo_proc *) kprocp);
- }
- error = copyout(kprocp, dp, sizeof_kproc);
- if (error)
- return (error);
- dp += sizeof_kproc;
- buflen -= sizeof_kproc;
+static int
+sysdoproc_filt_KERN_PROC_UID(proc_t p, void * arg)
+{
+ kauth_cred_t my_cred;
+ uid_t uid;
+
+ if (p->p_ucred == NULL)
+ return(0);
+ my_cred = kauth_cred_proc_ref(p);
+ uid = kauth_cred_getuid(my_cred);
+ kauth_cred_unref(&my_cred);
+
+ if (uid != (uid_t)*(int*)arg)
+ return(0);
+ else
+ return(1);
+}
+
+
+static int
+sysdoproc_filt_KERN_PROC_RUID(proc_t p, void * arg)
+{
+ kauth_cred_t my_cred;
+ uid_t ruid;
+
+ if (p->p_ucred == NULL)
+ return(0);
+ my_cred = kauth_cred_proc_ref(p);
+ ruid = my_cred->cr_ruid;
+ kauth_cred_unref(&my_cred);
+
+ if (ruid != (uid_t)*(int*)arg)
+ return(0);
+ else
+ return(1);
+}
+
+#if CONFIG_LCTX
+static int
+sysdoproc_filt_KERN_PROC_LCID(proc_t p, void * arg)
+{
+ if ((p->p_lctx == NULL) ||
+ (p->p_lctx->lc_id != (pid_t)*(int*)arg))
+ return(0);
+ else
+ return(1);
+}
+#endif
+
+/*
+ * try over estimating by 5 procs
+ */
+#define KERN_PROCSLOP (5 * sizeof (struct kinfo_proc))
+struct sysdoproc_args {
+ int buflen;
+ caddr_t kprocp;
+ boolean_t is_64_bit;
+ user_addr_t dp;
+ size_t needed;
+ int sizeof_kproc;
+ int * errorp;
+ int uidcheck;
+ int ruidcheck;
+ int ttycheck;
+ int uidval;
+};
+
+int
+sysdoproc_callback(proc_t p, void * arg)
+{
+ struct sysdoproc_args * args = (struct sysdoproc_args *)arg;
+ int error=0;
+
+ if (args->buflen >= args->sizeof_kproc) {
+ if ((args->ruidcheck != 0) && (sysdoproc_filt_KERN_PROC_RUID(p, &args->uidval) == 0))
+ return(PROC_RETURNED);
+ if ((args->uidcheck != 0) && (sysdoproc_filt_KERN_PROC_UID(p, &args->uidval) == 0))
+ return(PROC_RETURNED);
+ if ((args->ttycheck != 0) && (sysdoproc_filt_KERN_PROC_TTY(p, &args->uidval) == 0))
+ return(PROC_RETURNED);
+
+ bzero(args->kprocp, args->sizeof_kproc);
+ if (args->is_64_bit) {
+ fill_user64_proc(p, (struct user64_kinfo_proc *) args->kprocp);
+ }
+ else {
+ fill_user32_proc(p, (struct user32_kinfo_proc *) args->kprocp);
}
- needed += sizeof_kproc;
+ error = copyout(args->kprocp, args->dp, args->sizeof_kproc);
+ if (error) {
+ *args->errorp = error;
+ return(PROC_RETURNED_DONE);
+ return (error);
+ }
+ args->dp += args->sizeof_kproc;
+ args->buflen -= args->sizeof_kproc;
}
- if (doingzomb == 0) {
- p = zombproc.lh_first;
- doingzomb++;
- goto again;
+ args->needed += args->sizeof_kproc;
+ return(PROC_RETURNED);
+}
+
+int
+sysctl_doproc(int *name, u_int namelen, user_addr_t where, size_t *sizep)
+{
+ user_addr_t dp = where;
+ size_t needed = 0;
+ int buflen = where != USER_ADDR_NULL ? *sizep : 0;
+ int error = 0;
+ boolean_t is_64_bit = FALSE;
+ struct user32_kinfo_proc user32_kproc;
+ struct user64_kinfo_proc user_kproc;
+ int sizeof_kproc;
+ caddr_t kprocp;
+ int (*filterfn)(proc_t, void *) = 0;
+ struct sysdoproc_args args;
+ int uidcheck = 0;
+ int ruidcheck = 0;
+ int ttycheck = 0;
+
+ if (namelen != 2 && !(namelen == 1 && name[0] == KERN_PROC_ALL))
+ return (EINVAL);
+ is_64_bit = proc_is64bit(current_proc());
+ if (is_64_bit) {
+ sizeof_kproc = sizeof(user_kproc);
+ kprocp = (caddr_t) &user_kproc;
+ }
+ else {
+ sizeof_kproc = sizeof(user32_kproc);
+ kprocp = (caddr_t) &user32_kproc;
+ }
+
+
+ switch (name[0]) {
+
+ case KERN_PROC_PID:
+ filterfn = sysdoproc_filt_KERN_PROC_PID;
+ break;
+
+ case KERN_PROC_PGRP:
+ filterfn = sysdoproc_filt_KERN_PROC_PGRP;
+ break;
+
+ case KERN_PROC_TTY:
+ ttycheck = 1;
+ break;
+
+ case KERN_PROC_UID:
+ uidcheck = 1;
+ break;
+
+ case KERN_PROC_RUID:
+ ruidcheck = 1;
+ break;
+
+#if CONFIG_LCTX
+ case KERN_PROC_LCID:
+ filterfn = sysdoproc_filt_KERN_PROC_LCID;
+ break;
+#endif
}
+
+ error = 0;
+ args.buflen = buflen;
+ args.kprocp = kprocp;
+ args.is_64_bit = is_64_bit;
+ args.dp = dp;
+ args.needed = needed;
+ args.errorp = &error;
+ args.uidcheck = uidcheck;
+ args.ruidcheck = ruidcheck;
+ args.ttycheck = ttycheck;
+ args.sizeof_kproc = sizeof_kproc;
+ args.uidval = name[1];
+
+ proc_iterate((PROC_ALLPROCLIST | PROC_ZOMBPROCLIST), sysdoproc_callback, &args, filterfn, &name[1]);
+
+ if (error)
+ return(error);
+
+ dp = args.dp;
+ needed = args.needed;
+
if (where != USER_ADDR_NULL) {
*sizep = dp - where;
if (needed > *sizep)
* Fill in an eproc structure for the specified process.
*/
static void
-fill_eproc(p, ep)
- register struct proc *p;
- register struct eproc *ep;
-{
- register struct tty *tp;
-
- ep->e_paddr = p;
- if (p->p_pgrp) {
- ep->e_sess = p->p_pgrp->pg_session;
- ep->e_pgid = p->p_pgrp->pg_id;
- ep->e_jobc = p->p_pgrp->pg_jobc;
- if (ep->e_sess && ep->e_sess->s_ttyvp)
+fill_user32_eproc(proc_t p, struct user32_eproc *ep)
+{
+ struct tty *tp;
+ kauth_cred_t my_cred;
+ struct pgrp * pg;
+ struct session * sessp;
+
+ pg = proc_pgrp(p);
+ sessp = proc_session(p);
+
+ ep->e_paddr = CAST_DOWN_EXPLICIT(uint32_t,p);
+
+ if (pg != PGRP_NULL) {
+ ep->e_sess = CAST_DOWN_EXPLICIT(uint32_t,sessp);
+ ep->e_pgid = p->p_pgrpid;
+ ep->e_jobc = pg->pg_jobc;
+ if ((sessp != SESSION_NULL) && sessp->s_ttyvp)
ep->e_flag = EPROC_CTTY;
} else {
- ep->e_sess = (struct session *)0;
+ ep->e_sess = 0;
ep->e_pgid = 0;
ep->e_jobc = 0;
}
- ep->e_ppid = (p->p_pptr) ? p->p_pptr->p_pid : 0;
+#if CONFIG_LCTX
+ if (p->p_lctx) {
+ ep->e_lcid = p->p_lctx->lc_id;
+ } else {
+ ep->e_lcid = 0;
+ }
+#endif
+ ep->e_ppid = p->p_ppid;
/* Pre-zero the fake historical pcred */
- bzero(&ep->e_pcred, sizeof(struct _pcred));
+ bzero(&ep->e_pcred, sizeof(ep->e_pcred));
if (p->p_ucred) {
- /* XXX not ref-counted */
+ my_cred = kauth_cred_proc_ref(p);
/* A fake historical pcred */
- ep->e_pcred.p_ruid = p->p_ucred->cr_ruid;
- ep->e_pcred.p_svuid = p->p_ucred->cr_svuid;
- ep->e_pcred.p_rgid = p->p_ucred->cr_rgid;
- ep->e_pcred.p_svgid = p->p_ucred->cr_svgid;
-
+ ep->e_pcred.p_ruid = my_cred->cr_ruid;
+ ep->e_pcred.p_svuid = my_cred->cr_svuid;
+ ep->e_pcred.p_rgid = my_cred->cr_rgid;
+ ep->e_pcred.p_svgid = my_cred->cr_svgid;
/* A fake historical *kauth_cred_t */
- ep->e_ucred.cr_ref = p->p_ucred->cr_ref;
- ep->e_ucred.cr_uid = kauth_cred_getuid(p->p_ucred);
- ep->e_ucred.cr_ngroups = p->p_ucred->cr_ngroups;
- bcopy(p->p_ucred->cr_groups, ep->e_ucred.cr_groups, NGROUPS*sizeof(gid_t));
+ ep->e_ucred.cr_ref = my_cred->cr_ref;
+ ep->e_ucred.cr_uid = kauth_cred_getuid(my_cred);
+ ep->e_ucred.cr_ngroups = my_cred->cr_ngroups;
+ bcopy(my_cred->cr_groups, ep->e_ucred.cr_groups, NGROUPS*sizeof(gid_t));
+ kauth_cred_unref(&my_cred);
}
if (p->p_stat == SIDL || p->p_stat == SZOMB) {
ep->e_vm.vm_tsize = 0;
}
ep->e_vm.vm_rssize = 0;
- if ((p->p_flag & P_CONTROLT) && (ep->e_sess) &&
- (tp = ep->e_sess->s_ttyp)) {
+ if ((p->p_flag & P_CONTROLT) && (sessp != SESSION_NULL) &&
+ (tp = SESSION_TP(sessp))) {
ep->e_tdev = tp->t_dev;
- ep->e_tpgid = tp->t_pgrp ? tp->t_pgrp->pg_id : NO_PID;
- ep->e_tsess = tp->t_session;
+ ep->e_tpgid = sessp->s_ttypgrpid;
+ ep->e_tsess = CAST_DOWN_EXPLICIT(uint32_t,tp->t_session);
} else
ep->e_tdev = NODEV;
- if (SESS_LEADER(p))
+ if (SESS_LEADER(p, sessp))
ep->e_flag |= EPROC_SLEADER;
- if (p->p_wmesg)
- strncpy(ep->e_wmesg, p->p_wmesg, WMESGLEN);
+ bzero(&ep->e_wmesg[0], WMESGLEN+1);
ep->e_xsize = ep->e_xrssize = 0;
ep->e_xccount = ep->e_xswrss = 0;
+ if (sessp != SESSION_NULL)
+ session_rele(sessp);
+ if(pg != PGRP_NULL)
+ pg_rele(pg);
}
/*
* Fill in an LP64 version of eproc structure for the specified process.
*/
static void
-fill_user_eproc(register struct proc *p, register struct user_eproc *ep)
+fill_user64_eproc(proc_t p, struct user64_eproc *ep)
{
- register struct tty *tp;
- struct session *sessionp = NULL;
+ struct tty *tp;
+ struct session *sessp = NULL;
+ struct pgrp * pg;
+ kauth_cred_t my_cred;
+
+ pg = proc_pgrp(p);
+ sessp = proc_session(p);
ep->e_paddr = CAST_USER_ADDR_T(p);
- if (p->p_pgrp) {
- sessionp = p->p_pgrp->pg_session;
- ep->e_sess = CAST_USER_ADDR_T(sessionp);
- ep->e_pgid = p->p_pgrp->pg_id;
- ep->e_jobc = p->p_pgrp->pg_jobc;
- if (sessionp) {
- if (sessionp->s_ttyvp)
+ if (pg != PGRP_NULL) {
+ ep->e_sess = CAST_USER_ADDR_T(sessp);
+ ep->e_pgid = p->p_pgrpid;
+ ep->e_jobc = pg->pg_jobc;
+ if (sessp != SESSION_NULL) {
+ if (sessp->s_ttyvp)
ep->e_flag = EPROC_CTTY;
}
} else {
ep->e_pgid = 0;
ep->e_jobc = 0;
}
- ep->e_ppid = (p->p_pptr) ? p->p_pptr->p_pid : 0;
+#if CONFIG_LCTX
+ if (p->p_lctx) {
+ ep->e_lcid = p->p_lctx->lc_id;
+ } else {
+ ep->e_lcid = 0;
+ }
+#endif
+ ep->e_ppid = p->p_ppid;
/* Pre-zero the fake historical pcred */
bzero(&ep->e_pcred, sizeof(ep->e_pcred));
if (p->p_ucred) {
- /* XXX not ref-counted */
+ my_cred = kauth_cred_proc_ref(p);
/* A fake historical pcred */
- ep->e_pcred.p_ruid = p->p_ucred->cr_ruid;
- ep->e_pcred.p_svuid = p->p_ucred->cr_svuid;
- ep->e_pcred.p_rgid = p->p_ucred->cr_rgid;
- ep->e_pcred.p_svgid = p->p_ucred->cr_svgid;
+ ep->e_pcred.p_ruid = my_cred->cr_ruid;
+ ep->e_pcred.p_svuid = my_cred->cr_svuid;
+ ep->e_pcred.p_rgid = my_cred->cr_rgid;
+ ep->e_pcred.p_svgid = my_cred->cr_svgid;
/* A fake historical *kauth_cred_t */
- ep->e_ucred.cr_ref = p->p_ucred->cr_ref;
- ep->e_ucred.cr_uid = kauth_cred_getuid(p->p_ucred);
- ep->e_ucred.cr_ngroups = p->p_ucred->cr_ngroups;
- bcopy(p->p_ucred->cr_groups, ep->e_ucred.cr_groups, NGROUPS*sizeof(gid_t));
+ ep->e_ucred.cr_ref = my_cred->cr_ref;
+ ep->e_ucred.cr_uid = kauth_cred_getuid(my_cred);
+ ep->e_ucred.cr_ngroups = my_cred->cr_ngroups;
+ bcopy(my_cred->cr_groups, ep->e_ucred.cr_groups, NGROUPS*sizeof(gid_t));
+ kauth_cred_unref(&my_cred);
}
if (p->p_stat == SIDL || p->p_stat == SZOMB) {
ep->e_vm.vm_tsize = 0;
}
ep->e_vm.vm_rssize = 0;
- if ((p->p_flag & P_CONTROLT) && (sessionp) &&
- (tp = sessionp->s_ttyp)) {
+ if ((p->p_flag & P_CONTROLT) && (sessp != SESSION_NULL) &&
+ (tp = SESSION_TP(sessp))) {
ep->e_tdev = tp->t_dev;
- ep->e_tpgid = tp->t_pgrp ? tp->t_pgrp->pg_id : NO_PID;
+ ep->e_tpgid = sessp->s_ttypgrpid;
ep->e_tsess = CAST_USER_ADDR_T(tp->t_session);
} else
ep->e_tdev = NODEV;
- if (SESS_LEADER(p))
+ if (SESS_LEADER(p, sessp))
ep->e_flag |= EPROC_SLEADER;
- if (p->p_wmesg)
- strncpy(ep->e_wmesg, p->p_wmesg, WMESGLEN);
+ bzero(&ep->e_wmesg[0], WMESGLEN+1);
ep->e_xsize = ep->e_xrssize = 0;
ep->e_xccount = ep->e_xswrss = 0;
+ if (sessp != SESSION_NULL)
+ session_rele(sessp);
+ if (pg != PGRP_NULL)
+ pg_rele(pg);
}
/*
* Fill in an eproc structure for the specified process.
*/
static void
-fill_externproc(p, exp)
- register struct proc *p;
- register struct extern_proc *exp;
-{
- exp->p_forw = exp->p_back = NULL;
- if (p->p_stats)
- exp->p_starttime = p->p_stats->p_start;
- exp->p_vmspace = NULL;
- exp->p_sigacts = p->p_sigacts;
+fill_user32_externproc(proc_t p, struct user32_extern_proc *exp)
+{
+ exp->p_forw = exp->p_back = 0;
+ exp->p_starttime.tv_sec = p->p_start.tv_sec;
+ exp->p_starttime.tv_usec = p->p_start.tv_usec;
+ exp->p_vmspace = 0;
+ exp->p_sigacts = CAST_DOWN_EXPLICIT(uint32_t,p->p_sigacts);
exp->p_flag = p->p_flag;
+ if (p->p_lflag & P_LTRACED)
+ exp->p_flag |= P_TRACED;
+ if (p->p_lflag & P_LPPWAIT)
+ exp->p_flag |= P_PPWAIT;
+ if (p->p_lflag & P_LEXIT)
+ exp->p_flag |= P_WEXIT;
exp->p_stat = p->p_stat ;
exp->p_pid = p->p_pid ;
exp->p_oppid = p->p_oppid ;
- exp->p_dupfd = p->p_dupfd ;
/* Mach related */
- exp->user_stack = CAST_DOWN(caddr_t, p->user_stack);
- exp->exit_thread = p->exit_thread ;
+ exp->user_stack = p->user_stack;
+ exp->exit_thread = CAST_DOWN_EXPLICIT(uint32_t,p->exit_thread);
exp->p_debugger = p->p_debugger ;
exp->sigwait = p->sigwait ;
/* scheduling */
+#ifdef _PROC_HAS_SCHEDINFO_
exp->p_estcpu = p->p_estcpu ;
- exp->p_cpticks = p->p_cpticks ;
exp->p_pctcpu = p->p_pctcpu ;
- exp->p_wchan = p->p_wchan ;
- exp->p_wmesg = p->p_wmesg ;
- exp->p_swtime = p->p_swtime ;
exp->p_slptime = p->p_slptime ;
+#else
+ exp->p_estcpu = 0 ;
+ exp->p_pctcpu = 0 ;
+ exp->p_slptime = 0 ;
+#endif
+ exp->p_cpticks = 0 ;
+ exp->p_wchan = 0 ;
+ exp->p_wmesg = 0 ;
+ exp->p_swtime = 0 ;
bcopy(&p->p_realtimer, &exp->p_realtimer,sizeof(struct itimerval));
bcopy(&p->p_rtime, &exp->p_rtime,sizeof(struct timeval));
- exp->p_uticks = p->p_uticks ;
- exp->p_sticks = p->p_sticks ;
- exp->p_iticks = p->p_iticks ;
- exp->p_traceflag = p->p_traceflag ;
- exp->p_tracep = p->p_tracep ;
+ exp->p_uticks = 0 ;
+ exp->p_sticks = 0 ;
+ exp->p_iticks = 0 ;
+ exp->p_traceflag = 0;
+ exp->p_tracep = 0 ;
exp->p_siglist = 0 ; /* No longer relevant */
- exp->p_textvp = p->p_textvp ;
+ exp->p_textvp = CAST_DOWN_EXPLICIT(uint32_t,p->p_textvp) ;
exp->p_holdcnt = 0 ;
exp->p_sigmask = 0 ; /* no longer avaialable */
exp->p_sigignore = p->p_sigignore ;
exp->p_sigcatch = p->p_sigcatch ;
exp->p_priority = p->p_priority ;
- exp->p_usrpri = p->p_usrpri ;
+ exp->p_usrpri = 0 ;
exp->p_nice = p->p_nice ;
bcopy(&p->p_comm, &exp->p_comm,MAXCOMLEN);
exp->p_comm[MAXCOMLEN] = '\0';
- exp->p_pgrp = p->p_pgrp ;
- exp->p_addr = NULL;
+ exp->p_pgrp = CAST_DOWN_EXPLICIT(uint32_t,p->p_pgrp) ;
+ exp->p_addr = 0;
exp->p_xstat = p->p_xstat ;
exp->p_acflag = p->p_acflag ;
- exp->p_ru = p->p_ru ; /* XXX may be NULL */
+ exp->p_ru = CAST_DOWN_EXPLICIT(uint32_t,p->p_ru) ; /* XXX may be NULL */
}
/*
* Fill in an LP64 version of extern_proc structure for the specified process.
*/
static void
-fill_user_externproc(register struct proc *p, register struct user_extern_proc *exp)
+fill_user64_externproc(proc_t p, struct user64_extern_proc *exp)
{
exp->p_forw = exp->p_back = USER_ADDR_NULL;
- if (p->p_stats) {
- exp->p_starttime.tv_sec = p->p_stats->p_start.tv_sec;
- exp->p_starttime.tv_usec = p->p_stats->p_start.tv_usec;
- }
+ exp->p_starttime.tv_sec = p->p_start.tv_sec;
+ exp->p_starttime.tv_usec = p->p_start.tv_usec;
exp->p_vmspace = USER_ADDR_NULL;
exp->p_sigacts = CAST_USER_ADDR_T(p->p_sigacts);
exp->p_flag = p->p_flag;
+ if (p->p_lflag & P_LTRACED)
+ exp->p_flag |= P_TRACED;
+ if (p->p_lflag & P_LPPWAIT)
+ exp->p_flag |= P_PPWAIT;
+ if (p->p_lflag & P_LEXIT)
+ exp->p_flag |= P_WEXIT;
exp->p_stat = p->p_stat ;
exp->p_pid = p->p_pid ;
exp->p_oppid = p->p_oppid ;
- exp->p_dupfd = p->p_dupfd ;
/* Mach related */
exp->user_stack = p->user_stack;
exp->exit_thread = CAST_USER_ADDR_T(p->exit_thread);
exp->p_debugger = p->p_debugger ;
exp->sigwait = p->sigwait ;
/* scheduling */
+#ifdef _PROC_HAS_SCHEDINFO_
exp->p_estcpu = p->p_estcpu ;
- exp->p_cpticks = p->p_cpticks ;
exp->p_pctcpu = p->p_pctcpu ;
- exp->p_wchan = CAST_USER_ADDR_T(p->p_wchan);
- exp->p_wmesg = CAST_USER_ADDR_T(p->p_wmesg);
- exp->p_swtime = p->p_swtime ;
exp->p_slptime = p->p_slptime ;
+#else
+ exp->p_estcpu = 0 ;
+ exp->p_pctcpu = 0 ;
+ exp->p_slptime = 0 ;
+#endif
+ exp->p_cpticks = 0 ;
+ exp->p_wchan = 0;
+ exp->p_wmesg = 0;
+ exp->p_swtime = 0 ;
exp->p_realtimer.it_interval.tv_sec = p->p_realtimer.it_interval.tv_sec;
exp->p_realtimer.it_interval.tv_usec = p->p_realtimer.it_interval.tv_usec;
exp->p_realtimer.it_value.tv_sec = p->p_realtimer.it_value.tv_sec;
exp->p_realtimer.it_value.tv_usec = p->p_realtimer.it_value.tv_usec;
exp->p_rtime.tv_sec = p->p_rtime.tv_sec;
exp->p_rtime.tv_usec = p->p_rtime.tv_usec;
- exp->p_uticks = p->p_uticks ;
- exp->p_sticks = p->p_sticks ;
- exp->p_iticks = p->p_iticks ;
- exp->p_traceflag = p->p_traceflag ;
- exp->p_tracep = CAST_USER_ADDR_T(p->p_tracep);
+ exp->p_uticks = 0 ;
+ exp->p_sticks = 0 ;
+ exp->p_iticks = 0 ;
+ exp->p_traceflag = 0 ;
+ exp->p_tracep = 0;
exp->p_siglist = 0 ; /* No longer relevant */
exp->p_textvp = CAST_USER_ADDR_T(p->p_textvp);
exp->p_holdcnt = 0 ;
exp->p_sigignore = p->p_sigignore ;
exp->p_sigcatch = p->p_sigcatch ;
exp->p_priority = p->p_priority ;
- exp->p_usrpri = p->p_usrpri ;
+ exp->p_usrpri = 0 ;
exp->p_nice = p->p_nice ;
bcopy(&p->p_comm, &exp->p_comm,MAXCOMLEN);
exp->p_comm[MAXCOMLEN] = '\0';
}
static void
-fill_proc(p, kp)
- register struct proc *p;
- register struct kinfo_proc *kp;
+fill_user32_proc(proc_t p, struct user32_kinfo_proc *kp)
{
- fill_externproc(p, &kp->kp_proc);
- fill_eproc(p, &kp->kp_eproc);
+ /* on a 64 bit kernel, 32 bit users will get some truncated information */
+ fill_user32_externproc(p, &kp->kp_proc);
+ fill_user32_eproc(p, &kp->kp_eproc);
}
static void
-fill_user_proc(register struct proc *p, register struct user_kinfo_proc *kp)
+fill_user64_proc(proc_t p, struct user64_kinfo_proc *kp)
{
- fill_user_externproc(p, &kp->kp_proc);
- fill_user_eproc(p, &kp->kp_eproc);
+ fill_user64_externproc(p, &kp->kp_proc);
+ fill_user64_eproc(p, &kp->kp_eproc);
}
int
kdebug_ops(int *name, u_int namelen, user_addr_t where,
- size_t *sizep, struct proc *p)
+ size_t *sizep, proc_t p)
{
int ret=0;
+ if (namelen == 0)
+ return(ENOTSUP);
+
ret = suser(kauth_cred_get(), &p->p_acflag);
if (ret)
return(ret);
-
+
switch(name[0]) {
case KERN_KDEFLAGS:
case KERN_KDDFLAGS:
return(ret);
}
-extern int pcsamples_control(int *name, u_int namelen, user_addr_t where,
- size_t * sizep);
-
-int
-pcsamples_ops(int *name, u_int namelen, user_addr_t where,
- size_t *sizep, struct proc *p)
-{
- int ret=0;
-
- ret = suser(kauth_cred_get(), &p->p_acflag);
- if (ret)
- return(ret);
-
- switch(name[0]) {
- case KERN_PCDISABLE:
- case KERN_PCGETBUF:
- case KERN_PCSETUP:
- case KERN_PCREMOVE:
- case KERN_PCREADBUF:
- case KERN_PCSETREG:
- case KERN_PCSETBUF:
- case KERN_PCCOMM:
- ret = pcsamples_control(name, namelen, where, sizep);
- break;
- default:
- ret= ENOTSUP;
- break;
- }
- return(ret);
-}
/*
* Return the top *sizep bytes of the user stack, or the entire area of the
*/
int
sysctl_procargs(int *name, u_int namelen, user_addr_t where,
- size_t *sizep, struct proc *cur_proc)
+ size_t *sizep, proc_t cur_proc)
{
return sysctl_procargsx( name, namelen, where, sizep, cur_proc, 0);
}
static int
sysctl_procargs2(int *name, u_int namelen, user_addr_t where,
- size_t *sizep, struct proc *cur_proc)
+ size_t *sizep, proc_t cur_proc)
{
return sysctl_procargsx( name, namelen, where, sizep, cur_proc, 1);
}
static int
-sysctl_procargsx(int *name, __unused u_int namelen, user_addr_t where,
- size_t *sizep, struct proc *cur_proc, int argc_yes)
+sysctl_procargsx(int *name, u_int namelen, user_addr_t where,
+ size_t *sizep, proc_t cur_proc, int argc_yes)
{
- struct proc *p;
+ proc_t p;
int buflen = where != USER_ADDR_NULL ? *sizep : 0;
int error = 0;
- struct vm_map *proc_map;
+ struct _vm_map *proc_map;
struct task * task;
vm_map_copy_t tmp;
user_addr_t arg_addr;
size_t arg_size;
caddr_t data;
+ size_t argslen=0;
int size;
vm_offset_t copy_start, copy_end;
kern_return_t ret;
int pid;
+ kauth_cred_t my_cred;
+ uid_t uid;
+ if ( namelen < 1 )
+ return(EINVAL);
+
if (argc_yes)
buflen -= sizeof(int); /* reserve first word to return argc */
* Lookup process by pid
*/
pid = name[0];
- p = pfind(pid);
+ p = proc_find(pid);
if (p == NULL) {
return(EINVAL);
}
* size.
*/
- if (!p->user_stack)
+ if (!p->user_stack) {
+ proc_rele(p);
return(EINVAL);
+ }
if (where == USER_ADDR_NULL) {
/* caller only wants to know length of proc args data */
- if (sizep == NULL)
+ if (sizep == NULL) {
+ proc_rele(p);
return(EFAULT);
+ }
size = p->p_argslen;
+ proc_rele(p);
if (argc_yes) {
size += sizeof(int);
}
return (0);
}
- if ((kauth_cred_getuid(p->p_ucred) != kauth_cred_getuid(kauth_cred_get()))
- && suser(kauth_cred_get(), &cur_proc->p_acflag))
+ my_cred = kauth_cred_proc_ref(p);
+ uid = kauth_cred_getuid(my_cred);
+ kauth_cred_unref(&my_cred);
+
+ if ((uid != kauth_cred_getuid(kauth_cred_get()))
+ && suser(kauth_cred_get(), &cur_proc->p_acflag)) {
+ proc_rele(p);
return (EINVAL);
+ }
if ((u_int)arg_size > p->p_argslen)
arg_size = round_page(p->p_argslen);
* that by getting a reference on the task itself.
*/
task = p->task;
- if (task == NULL)
+ if (task == NULL) {
+ proc_rele(p);
return(EINVAL);
+ }
+ argslen = p->p_argslen;
/*
* Once we have a task reference we can convert that into a
* map reference, which we will use in the calls below. The
* of stale info (which is always a possibility).
*/
task_reference(task);
+ proc_rele(p);
proc_map = get_task_map_reference(task);
task_deallocate(task);
+
if (proc_map == NULL)
return(EINVAL);
return (EIO);
}
- if (arg_size > p->p_argslen) {
- data = (caddr_t) (copy_end - p->p_argslen);
- size = p->p_argslen;
+ if (arg_size > argslen) {
+ data = (caddr_t) (copy_end - argslen);
+ size = argslen;
} else {
data = (caddr_t) (copy_end - arg_size);
size = arg_size;
*
* Note: we keep all pointers&sizes aligned to word boundries
*/
- if ( (! error) && (buflen > 0 && (u_int)buflen > p->p_argslen) )
+ if ( (! error) && (buflen > 0 && (u_int)buflen > argslen) )
{
int binPath_sz, alignedBinPath_sz = 0;
int extraSpaceNeeded, addThis;
extraSpaceNeeded = alignedBinPath_sz + addThis + binPath_sz + (4 * sizeof(int));
/* is there is room to tack on argv[0]? */
- if ( (buflen & ~(sizeof(int)-1)) >= ( p->p_argslen + extraSpaceNeeded ))
+ if ( (buflen & ~(sizeof(int)-1)) >= ( argslen + extraSpaceNeeded ))
{
placeHere += addThis;
suword(placeHere, 0);
/*
- * Validate parameters and get old / set new parameters
- * for max number of concurrent aio requests. Makes sure
- * the system wide limit is greater than the per process
- * limit.
+ * Max number of concurrent aio requests
*/
static int
-sysctl_aiomax(user_addr_t oldp, size_t *oldlenp, user_addr_t newp, size_t newlen)
+sysctl_aiomax
+(__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req)
{
- int error = 0;
- int new_value;
-
- if ( oldp && *oldlenp < sizeof(int) )
- return (ENOMEM);
- if ( newp && newlen != sizeof(int) )
- return (EINVAL);
-
- *oldlenp = sizeof(int);
- if ( oldp )
- error = copyout( &aio_max_requests, oldp, sizeof(int) );
- if ( error == 0 && newp )
- error = copyin( newp, &new_value, sizeof(int) );
- if ( error == 0 && newp ) {
- if ( new_value >= aio_max_requests_per_process )
+ int new_value, changed;
+ int error = sysctl_io_number(req, aio_max_requests, sizeof(int), &new_value, &changed);
+ if (changed) {
+ /* make sure the system-wide limit is greater than the per process limit */
+ if (new_value >= aio_max_requests_per_process)
aio_max_requests = new_value;
else
error = EINVAL;
}
- return( error );
-
-} /* sysctl_aiomax */
+ return(error);
+}
/*
- * Validate parameters and get old / set new parameters
- * for max number of concurrent aio requests per process.
- * Makes sure per process limit is less than the system wide
- * limit.
+ * Max number of concurrent aio requests per process
*/
static int
-sysctl_aioprocmax(user_addr_t oldp, size_t *oldlenp, user_addr_t newp, size_t newlen )
+sysctl_aioprocmax
+(__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req)
{
- int error = 0;
- int new_value = 0;
-
- if ( oldp && *oldlenp < sizeof(int) )
- return (ENOMEM);
- if ( newp && newlen != sizeof(int) )
- return (EINVAL);
-
- *oldlenp = sizeof(int);
- if ( oldp )
- error = copyout( &aio_max_requests_per_process, oldp, sizeof(int) );
- if ( error == 0 && newp )
- error = copyin( newp, &new_value, sizeof(int) );
- if ( error == 0 && newp ) {
- if ( new_value <= aio_max_requests && new_value >= AIO_LISTIO_MAX )
+ int new_value, changed;
+ int error = sysctl_io_number(req, aio_max_requests_per_process, sizeof(int), &new_value, &changed);
+ if (changed) {
+ /* make sure per process limit is less than the system-wide limit */
+ if (new_value <= aio_max_requests && new_value >= AIO_LISTIO_MAX)
aio_max_requests_per_process = new_value;
else
error = EINVAL;
}
- return( error );
-
-} /* sysctl_aioprocmax */
+ return(error);
+}
/*
- * Validate parameters and get old / set new parameters
- * for max number of async IO worker threads.
- * We only allow an increase in the number of worker threads.
+ * Max number of async IO worker threads
*/
static int
-sysctl_aiothreads(user_addr_t oldp, size_t *oldlenp, user_addr_t newp, size_t newlen)
+sysctl_aiothreads
+(__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req)
{
- int error = 0;
- int new_value;
-
- if ( oldp && *oldlenp < sizeof(int) )
- return (ENOMEM);
- if ( newp && newlen != sizeof(int) )
- return (EINVAL);
-
- *oldlenp = sizeof(int);
- if ( oldp )
- error = copyout( &aio_worker_threads, oldp, sizeof(int) );
- if ( error == 0 && newp )
- error = copyin( newp, &new_value, sizeof(int) );
- if ( error == 0 && newp ) {
+ int new_value, changed;
+ int error = sysctl_io_number(req, aio_worker_threads, sizeof(int), &new_value, &changed);
+ if (changed) {
+ /* we only allow an increase in the number of worker threads */
if (new_value > aio_worker_threads ) {
- _aio_create_worker_threads( (new_value - aio_worker_threads) );
+ _aio_create_worker_threads((new_value - aio_worker_threads));
aio_worker_threads = new_value;
}
else
error = EINVAL;
}
- return( error );
-
-} /* sysctl_aiothreads */
+ return(error);
+}
/*
- * Validate parameters and get old / set new parameters
- * for max number of processes per UID.
- * Makes sure per UID limit is less than the system wide limit.
+ * System-wide limit on the max number of processes
*/
static int
-sysctl_maxprocperuid(user_addr_t oldp, size_t *oldlenp,
- user_addr_t newp, size_t newlen)
+sysctl_maxproc
+(__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req)
{
- int error = 0;
- int new_value;
+ int new_value, changed;
+ int error = sysctl_io_number(req, maxproc, sizeof(int), &new_value, &changed);
+ if (changed) {
+ AUDIT_ARG(value32, new_value);
+ /* make sure the system-wide limit is less than the configured hard
+ limit set at kernel compilation */
+ if (new_value <= hard_maxproc && new_value > 0)
+ maxproc = new_value;
+ else
+ error = EINVAL;
+ }
+ return(error);
+}
- if ( oldp != USER_ADDR_NULL && *oldlenp < sizeof(int) )
- return (ENOMEM);
- if ( newp != USER_ADDR_NULL && newlen != sizeof(int) )
- return (EINVAL);
-
- *oldlenp = sizeof(int);
- if ( oldp != USER_ADDR_NULL )
- error = copyout( &maxprocperuid, oldp, sizeof(int) );
- if ( error == 0 && newp != USER_ADDR_NULL ) {
- error = copyin( newp, &new_value, sizeof(int) );
- if ( error == 0 ) {
- AUDIT_ARG(value, new_value);
- if ( new_value <= maxproc && new_value > 0 )
- maxprocperuid = new_value;
- else
- error = EINVAL;
+SYSCTL_STRING(_kern, KERN_OSTYPE, ostype,
+ CTLFLAG_RD | CTLFLAG_KERN,
+ ostype, 0, "");
+SYSCTL_STRING(_kern, KERN_OSRELEASE, osrelease,
+ CTLFLAG_RD | CTLFLAG_KERN,
+ osrelease, 0, "");
+SYSCTL_INT(_kern, KERN_OSREV, osrevision,
+ CTLFLAG_RD | CTLFLAG_KERN,
+ (int *)NULL, BSD, "");
+SYSCTL_STRING(_kern, KERN_VERSION, version,
+ CTLFLAG_RD | CTLFLAG_KERN,
+ version, 0, "");
+
+#if DEBUG
+int debug_kprint_syscall = 0;
+char debug_kprint_syscall_process[MAXCOMLEN+1];
+
+SYSCTL_INT (_debug, OID_AUTO, kprint_syscall,
+ CTLFLAG_RW, &debug_kprint_syscall, 0, "kprintf syscall tracing");
+SYSCTL_STRING(_debug, OID_AUTO, kprint_syscall_process,
+ CTLFLAG_RW, debug_kprint_syscall_process, sizeof(debug_kprint_syscall_process),
+ "name of process for kprintf syscall tracing");
+
+int debug_kprint_current_process(const char **namep)
+{
+ struct proc *p = current_proc();
+
+ if (p == NULL) {
+ return 0;
+ }
+
+ if (debug_kprint_syscall_process[0]) {
+ /* user asked to scope tracing to a particular process name */
+ if(0 == strncmp(debug_kprint_syscall_process,
+ p->p_comm, sizeof(debug_kprint_syscall_process))) {
+ /* no value in telling the user that we traced what they asked */
+ if(namep) *namep = NULL;
+
+ return 1;
+ } else {
+ return 0;
}
- else
- error = EINVAL;
}
- return( error );
-
-} /* sysctl_maxprocperuid */
+ /* trace all processes. Tell user what we traced */
+ if (namep) {
+ *namep = p->p_comm;
+ }
+
+ return 1;
+}
+#endif
+
+/* PR-5293665: need to use a callback function for kern.osversion to set
+ * osversion in IORegistry */
-/*
- * Validate parameters and get old / set new parameters
- * for max number of files per process.
- * Makes sure per process limit is less than the system-wide limit.
- */
static int
-sysctl_maxfilesperproc(user_addr_t oldp, size_t *oldlenp,
- user_addr_t newp, size_t newlen)
+sysctl_osversion(__unused struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req)
{
- int error = 0;
- int new_value;
+ int rval = 0;
- if ( oldp != USER_ADDR_NULL && *oldlenp < sizeof(int) )
- return (ENOMEM);
- if ( newp != USER_ADDR_NULL && newlen != sizeof(int) )
- return (EINVAL);
-
- *oldlenp = sizeof(int);
- if ( oldp != USER_ADDR_NULL )
- error = copyout( &maxfilesperproc, oldp, sizeof(int) );
- if ( error == 0 && newp != USER_ADDR_NULL ) {
- error = copyin( newp, &new_value, sizeof(int) );
- if ( error == 0 ) {
- AUDIT_ARG(value, new_value);
- if ( new_value < maxfiles && new_value > 0 )
- maxfilesperproc = new_value;
- else
- error = EINVAL;
+ rval = sysctl_handle_string(oidp, arg1, arg2, req);
+
+ if (req->newptr) {
+ IORegistrySetOSBuildVersion((char *)arg1);
+ }
+
+ return rval;
+}
+
+SYSCTL_PROC(_kern, KERN_OSVERSION, osversion,
+ CTLFLAG_RW | CTLFLAG_KERN | CTLTYPE_STRING,
+ osversion, 256 /* OSVERSIZE*/,
+ sysctl_osversion, "A", "");
+
+static int
+sysctl_sysctl_bootargs
+(__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req)
+{
+ int error;
+ char buf[256];
+
+ strlcpy(buf, PE_boot_args(), 256);
+ error = sysctl_io_string(req, buf, 256, 0, NULL);
+ return(error);
+}
+
+SYSCTL_PROC(_kern, OID_AUTO, bootargs,
+ CTLFLAG_LOCKED | CTLFLAG_RD | CTLFLAG_KERN | CTLTYPE_STRING,
+ NULL, 0,
+ sysctl_sysctl_bootargs, "A", "bootargs");
+
+SYSCTL_INT(_kern, KERN_MAXFILES, maxfiles,
+ CTLFLAG_RW | CTLFLAG_KERN,
+ &maxfiles, 0, "");
+SYSCTL_INT(_kern, KERN_ARGMAX, argmax,
+ CTLFLAG_RD | CTLFLAG_KERN,
+ (int *)NULL, ARG_MAX, "");
+SYSCTL_INT(_kern, KERN_POSIX1, posix1version,
+ CTLFLAG_RD | CTLFLAG_KERN,
+ (int *)NULL, _POSIX_VERSION, "");
+SYSCTL_INT(_kern, KERN_NGROUPS, ngroups,
+ CTLFLAG_RD | CTLFLAG_KERN,
+ (int *)NULL, NGROUPS_MAX, "");
+SYSCTL_INT(_kern, KERN_JOB_CONTROL, job_control,
+ CTLFLAG_RD | CTLFLAG_KERN,
+ (int *)NULL, 1, "");
+#if 1 /* _POSIX_SAVED_IDS from <unistd.h> */
+SYSCTL_INT(_kern, KERN_SAVED_IDS, saved_ids,
+ CTLFLAG_RD | CTLFLAG_KERN,
+ (int *)NULL, 1, "");
+#else
+SYSCTL_INT(_kern, KERN_SAVED_IDS, saved_ids,
+ CTLFLAG_RD | CTLFLAG_KERN,
+ NULL, 0, "");
+#endif
+SYSCTL_INT(_kern, OID_AUTO, num_files,
+ CTLFLAG_RD,
+ &nfiles, 0, "");
+SYSCTL_COMPAT_INT(_kern, OID_AUTO, num_vnodes,
+ CTLFLAG_RD,
+ &numvnodes, 0, "");
+SYSCTL_INT(_kern, OID_AUTO, num_tasks,
+ CTLFLAG_RD,
+ &task_max, 0, "");
+SYSCTL_INT(_kern, OID_AUTO, num_threads,
+ CTLFLAG_RD,
+ &thread_max, 0, "");
+SYSCTL_INT(_kern, OID_AUTO, num_taskthreads,
+ CTLFLAG_RD,
+ &task_threadmax, 0, "");
+
+static int
+sysctl_maxvnodes (__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req)
+{
+ int oldval = desiredvnodes;
+ int error = sysctl_io_number(req, desiredvnodes, sizeof(int), &desiredvnodes, NULL);
+
+ if (oldval != desiredvnodes) {
+ reset_vmobjectcache(oldval, desiredvnodes);
+ resize_namecache(desiredvnodes);
+ }
+
+ return(error);
+}
+
+SYSCTL_PROC(_kern, KERN_MAXVNODES, maxvnodes,
+ CTLTYPE_INT | CTLFLAG_RW,
+ 0, 0, sysctl_maxvnodes, "I", "");
+
+SYSCTL_PROC(_kern, KERN_MAXPROC, maxproc,
+ CTLTYPE_INT | CTLFLAG_RW,
+ 0, 0, sysctl_maxproc, "I", "");
+
+SYSCTL_PROC(_kern, KERN_AIOMAX, aiomax,
+ CTLTYPE_INT | CTLFLAG_RW,
+ 0, 0, sysctl_aiomax, "I", "");
+
+SYSCTL_PROC(_kern, KERN_AIOPROCMAX, aioprocmax,
+ CTLTYPE_INT | CTLFLAG_RW,
+ 0, 0, sysctl_aioprocmax, "I", "");
+
+SYSCTL_PROC(_kern, KERN_AIOTHREADS, aiothreads,
+ CTLTYPE_INT | CTLFLAG_RW,
+ 0, 0, sysctl_aiothreads, "I", "");
+
+static int
+sysctl_securelvl
+(__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req)
+{
+ int new_value, changed;
+ int error = sysctl_io_number(req, securelevel, sizeof(int), &new_value, &changed);
+ if (changed) {
+ if (!(new_value < securelevel && req->p->p_pid != 1)) {
+ proc_list_lock();
+ securelevel = new_value;
+ proc_list_unlock();
+ } else {
+ error = EPERM;
}
+ }
+ return(error);
+}
+
+SYSCTL_PROC(_kern, KERN_SECURELVL, securelevel,
+ CTLTYPE_INT | CTLFLAG_RW,
+ 0, 0, sysctl_securelvl, "I", "");
+
+
+static int
+sysctl_domainname
+(__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req)
+{
+ int error, changed;
+ error = sysctl_io_string(req, domainname, sizeof(domainname), 0, &changed);
+ if (changed) {
+ domainnamelen = strlen(domainname);
+ }
+ return(error);
+}
+
+SYSCTL_PROC(_kern, KERN_DOMAINNAME, nisdomainname,
+ CTLTYPE_STRING | CTLFLAG_RW,
+ 0, 0, sysctl_domainname, "A", "");
+
+SYSCTL_COMPAT_INT(_kern, KERN_HOSTID, hostid,
+ CTLFLAG_RW | CTLFLAG_KERN,
+ &hostid, 0, "");
+
+static int
+sysctl_hostname
+(__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req)
+{
+ int error, changed;
+ error = sysctl_io_string(req, hostname, sizeof(hostname), 1, &changed);
+ if (changed) {
+ hostnamelen = req->newlen;
+ }
+ return(error);
+}
+
+
+SYSCTL_PROC(_kern, KERN_HOSTNAME, hostname,
+ CTLTYPE_STRING | CTLFLAG_RW,
+ 0, 0, sysctl_hostname, "A", "");
+
+static int
+sysctl_procname
+(__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req)
+{
+ /* Original code allowed writing, I'm copying this, although this all makes
+ no sense to me. Besides, this sysctl is never used. */
+ return sysctl_io_string(req, &req->p->p_name[0], (2*MAXCOMLEN+1), 1, NULL);
+}
+
+SYSCTL_PROC(_kern, KERN_PROCNAME, procname,
+ CTLTYPE_STRING | CTLFLAG_RW | CTLFLAG_ANYBODY,
+ 0, 0, sysctl_procname, "A", "");
+
+SYSCTL_INT(_kern, KERN_SPECULATIVE_READS, speculative_reads_disabled,
+ CTLFLAG_RW | CTLFLAG_KERN,
+ &speculative_reads_disabled, 0, "");
+
+SYSCTL_UINT(_kern, OID_AUTO, preheat_pages_max,
+ CTLFLAG_RW | CTLFLAG_KERN,
+ &preheat_pages_max, 0, "");
+
+SYSCTL_UINT(_kern, OID_AUTO, preheat_pages_min,
+ CTLFLAG_RW | CTLFLAG_KERN,
+ &preheat_pages_min, 0, "");
+
+SYSCTL_UINT(_kern, OID_AUTO, preheat_pages_mult,
+ CTLFLAG_RW | CTLFLAG_KERN,
+ &preheat_pages_mult, 0, "");
+
+static int
+sysctl_boottime
+(__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req)
+{
+ time_t tv_sec = boottime_sec();
+ struct proc *p = req->p;
+
+ if (proc_is64bit(p)) {
+ struct user64_timeval t;
+ t.tv_sec = tv_sec;
+ t.tv_usec = 0;
+ return sysctl_io_opaque(req, &t, sizeof(t), NULL);
+ } else {
+ struct user32_timeval t;
+ t.tv_sec = tv_sec;
+ t.tv_usec = 0;
+ return sysctl_io_opaque(req, &t, sizeof(t), NULL);
+ }
+}
+
+SYSCTL_PROC(_kern, KERN_BOOTTIME, boottime,
+ CTLTYPE_STRUCT | CTLFLAG_RD,
+ 0, 0, sysctl_boottime, "S,timeval", "");
+
+static int
+sysctl_symfile
+(__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req)
+{
+ char *str;
+ int error = get_kernel_symfile(req->p, &str);
+ if (error)
+ return (error);
+ return sysctl_io_string(req, str, 0, 0, NULL);
+}
+
+
+SYSCTL_PROC(_kern, KERN_SYMFILE, symfile,
+ CTLTYPE_STRING | CTLFLAG_RD,
+ 0, 0, sysctl_symfile, "A", "");
+
+#if NFSCLIENT
+static int
+sysctl_netboot
+(__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req)
+{
+ return sysctl_io_number(req, netboot_root(), sizeof(int), NULL, NULL);
+}
+
+SYSCTL_PROC(_kern, KERN_NETBOOT, netboot,
+ CTLTYPE_INT | CTLFLAG_RD,
+ 0, 0, sysctl_netboot, "I", "");
+#endif
+
+#ifdef CONFIG_IMGSRC_ACCESS
+static int
+sysctl_imgsrcdev
+(__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req)
+{
+ vfs_context_t ctx = vfs_context_current();
+ vnode_t devvp;
+ int result;
+
+ if (!vfs_context_issuser(ctx)) {
+ return EPERM;
+ }
+
+ if (imgsrc_rootvnode == NULL) {
+ return ENOENT;
+ }
+
+ result = vnode_getwithref(imgsrc_rootvnode);
+ if (result != 0) {
+ return result;
+ }
+
+ devvp = vnode_mount(imgsrc_rootvnode)->mnt_devvp;
+ result = vnode_getwithref(devvp);
+ if (result != 0) {
+ goto out;
+ }
+
+ result = sysctl_io_number(req, vnode_specrdev(devvp), sizeof(dev_t), NULL, NULL);
+
+ vnode_put(devvp);
+out:
+ vnode_put(imgsrc_rootvnode);
+ return result;
+}
+
+SYSCTL_PROC(_kern, OID_AUTO, imgsrcdev,
+ CTLTYPE_INT | CTLFLAG_RD,
+ 0, 0, sysctl_imgsrcdev, "I", "");
+#endif /* CONFIG_IMGSRC_ACCESS */
+
+static int
+sysctl_usrstack
+(__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req)
+{
+ return sysctl_io_number(req, (int)req->p->user_stack, sizeof(int), NULL, NULL);
+}
+
+SYSCTL_PROC(_kern, KERN_USRSTACK32, usrstack,
+ CTLTYPE_INT | CTLFLAG_RD,
+ 0, 0, sysctl_usrstack, "I", "");
+
+static int
+sysctl_usrstack64
+(__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req)
+{
+ return sysctl_io_number(req, req->p->user_stack, sizeof(req->p->user_stack), NULL, NULL);
+}
+
+SYSCTL_PROC(_kern, KERN_USRSTACK64, usrstack64,
+ CTLTYPE_QUAD | CTLFLAG_RD,
+ 0, 0, sysctl_usrstack64, "Q", "");
+
+SYSCTL_STRING(_kern, KERN_COREFILE, corefile,
+ CTLFLAG_RW | CTLFLAG_KERN,
+ corefilename, sizeof(corefilename), "");
+
+static int
+sysctl_coredump
+(__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req)
+{
+#ifdef SECURE_KERNEL
+ return (ENOTSUP);
+#endif
+ int new_value, changed;
+ int error = sysctl_io_number(req, do_coredump, sizeof(int), &new_value, &changed);
+ if (changed) {
+ if ((new_value == 0) || (new_value == 1))
+ do_coredump = new_value;
else
error = EINVAL;
}
- return( error );
-
-} /* sysctl_maxfilesperproc */
+ return(error);
+}
+SYSCTL_PROC(_kern, KERN_COREDUMP, coredump,
+ CTLTYPE_INT | CTLFLAG_RW,
+ 0, 0, sysctl_coredump, "I", "");
-/*
- * Validate parameters and get old / set new parameters
- * for the system-wide limit on the max number of processes.
- * Makes sure the system-wide limit is less than the configured hard
- * limit set at kernel compilation.
- */
static int
-sysctl_maxproc(user_addr_t oldp, size_t *oldlenp,
- user_addr_t newp, size_t newlen )
+sysctl_suid_coredump
+(__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req)
{
- int error = 0;
- int new_value;
+#ifdef SECURE_KERNEL
+ return (ENOTSUP);
+#endif
+ int new_value, changed;
+ int error = sysctl_io_number(req, sugid_coredump, sizeof(int), &new_value, &changed);
+ if (changed) {
+ if ((new_value == 0) || (new_value == 1))
+ sugid_coredump = new_value;
+ else
+ error = EINVAL;
+ }
+ return(error);
+}
- if ( oldp != USER_ADDR_NULL && *oldlenp < sizeof(int) )
- return (ENOMEM);
- if ( newp != USER_ADDR_NULL && newlen != sizeof(int) )
- return (EINVAL);
-
- *oldlenp = sizeof(int);
- if ( oldp != USER_ADDR_NULL )
- error = copyout( &maxproc, oldp, sizeof(int) );
- if ( error == 0 && newp != USER_ADDR_NULL ) {
- error = copyin( newp, &new_value, sizeof(int) );
- if ( error == 0 ) {
- AUDIT_ARG(value, new_value);
- if ( new_value <= hard_maxproc && new_value > 0 )
- maxproc = new_value;
- else
- error = EINVAL;
- }
+SYSCTL_PROC(_kern, KERN_SUGID_COREDUMP, sugid_coredump,
+ CTLTYPE_INT | CTLFLAG_RW,
+ 0, 0, sysctl_suid_coredump, "I", "");
+
+static int
+sysctl_delayterm
+(__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req)
+{
+ struct proc *p = req->p;
+ int new_value, changed;
+ int error = sysctl_io_number(req, (req->p->p_lflag & P_LDELAYTERM)? 1: 0, sizeof(int), &new_value, &changed);
+ if (changed) {
+ proc_lock(p);
+ if (new_value)
+ req->p->p_lflag |= P_LDELAYTERM;
else
+ req->p->p_lflag &= ~P_LDELAYTERM;
+ proc_unlock(p);
+ }
+ return(error);
+}
+
+SYSCTL_PROC(_kern, KERN_PROCDELAYTERM, delayterm,
+ CTLTYPE_INT | CTLFLAG_RW,
+ 0, 0, sysctl_delayterm, "I", "");
+
+
+static int
+sysctl_rage_vnode
+(__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req)
+{
+ struct proc *p = req->p;
+ struct uthread *ut;
+ int new_value, old_value, changed;
+ int error;
+
+ ut = get_bsdthread_info(current_thread());
+
+ if (ut->uu_flag & UT_RAGE_VNODES)
+ old_value = KERN_RAGE_THREAD;
+ else if (p->p_lflag & P_LRAGE_VNODES)
+ old_value = KERN_RAGE_PROC;
+ else
+ old_value = 0;
+
+ error = sysctl_io_number(req, old_value, sizeof(int), &new_value, &changed);
+
+ if (error == 0) {
+ switch (new_value) {
+ case KERN_RAGE_PROC:
+ proc_lock(p);
+ p->p_lflag |= P_LRAGE_VNODES;
+ proc_unlock(p);
+ break;
+ case KERN_UNRAGE_PROC:
+ proc_lock(p);
+ p->p_lflag &= ~P_LRAGE_VNODES;
+ proc_unlock(p);
+ break;
+
+ case KERN_RAGE_THREAD:
+ ut->uu_flag |= UT_RAGE_VNODES;
+ break;
+ case KERN_UNRAGE_THREAD:
+ ut = get_bsdthread_info(current_thread());
+ ut->uu_flag &= ~UT_RAGE_VNODES;
+ break;
+ }
+ }
+ return(error);
+}
+
+SYSCTL_PROC(_kern, KERN_RAGEVNODE, rage_vnode,
+ CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_ANYBODY,
+ 0, 0, sysctl_rage_vnode, "I", "");
+
+
+static int
+sysctl_kern_check_openevt
+(__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req)
+{
+ struct proc *p = req->p;
+ int new_value, old_value, changed;
+ int error;
+
+ if (p->p_flag & P_CHECKOPENEVT) {
+ old_value = KERN_OPENEVT_PROC;
+ } else {
+ old_value = 0;
+ }
+
+ error = sysctl_io_number(req, old_value, sizeof(int), &new_value, &changed);
+
+ if (error == 0) {
+ switch (new_value) {
+ case KERN_OPENEVT_PROC:
+ OSBitOrAtomic(P_CHECKOPENEVT, &p->p_flag);
+ break;
+
+ case KERN_UNOPENEVT_PROC:
+ OSBitAndAtomic(~((uint32_t)P_CHECKOPENEVT), &p->p_flag);
+ break;
+
+ default:
error = EINVAL;
+ }
}
- return( error );
-
-} /* sysctl_maxproc */
+ return(error);
+}
+
+SYSCTL_PROC(_kern, KERN_CHECKOPENEVT, check_openevt, CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_ANYBODY,
+ 0, 0, sysctl_kern_check_openevt, "I", "set the per-process check-open-evt flag");
+
+
-#if __i386__
static int
-sysctl_sysctl_exec_affinity SYSCTL_HANDLER_ARGS
+sysctl_nx
+(__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req)
{
- struct proc *cur_proc = req->p;
+#ifdef SECURE_KERNEL
+ return ENOTSUP;
+#endif
+ int new_value, changed;
+ int error;
+
+ error = sysctl_io_number(req, nx_enabled, sizeof(nx_enabled), &new_value, &changed);
+ if (error)
+ return error;
+
+ if (changed) {
+#if defined(__i386__) || defined(__x86_64__)
+ /*
+ * Only allow setting if NX is supported on the chip
+ */
+ if (!(cpuid_extfeatures() & CPUID_EXTFEATURE_XD))
+ return ENOTSUP;
+#endif
+ nx_enabled = new_value;
+ }
+ return(error);
+}
+
+
+
+SYSCTL_PROC(_kern, KERN_NX_PROTECTION, nx,
+ CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_KERN,
+ 0, 0, sysctl_nx, "I", "");
+
+static int
+sysctl_loadavg
+(__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req)
+{
+ if (proc_is64bit(req->p)) {
+ struct user64_loadavg loadinfo64;
+ fill_loadavg64(&averunnable, &loadinfo64);
+ return sysctl_io_opaque(req, &loadinfo64, sizeof(loadinfo64), NULL);
+ } else {
+ struct user32_loadavg loadinfo32;
+ fill_loadavg32(&averunnable, &loadinfo32);
+ return sysctl_io_opaque(req, &loadinfo32, sizeof(loadinfo32), NULL);
+ }
+}
+
+SYSCTL_PROC(_vm, VM_LOADAVG, loadavg,
+ CTLTYPE_STRUCT | CTLFLAG_RD,
+ 0, 0, sysctl_loadavg, "S,loadavg", "");
+
+static int
+sysctl_swapusage
+(__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req)
+{
+ int error;
+ uint64_t swap_total;
+ uint64_t swap_avail;
+ vm_size_t swap_pagesize;
+ boolean_t swap_encrypted;
+ struct xsw_usage xsu;
+
+ error = macx_swapinfo(&swap_total,
+ &swap_avail,
+ &swap_pagesize,
+ &swap_encrypted);
+ if (error)
+ return error;
+
+ xsu.xsu_total = swap_total;
+ xsu.xsu_avail = swap_avail;
+ xsu.xsu_used = swap_total - swap_avail;
+ xsu.xsu_pagesize = swap_pagesize;
+ xsu.xsu_encrypted = swap_encrypted;
+ return sysctl_io_opaque(req, &xsu, sizeof(xsu), NULL);
+}
+
+
+
+SYSCTL_PROC(_vm, VM_SWAPUSAGE, swapusage,
+ CTLTYPE_STRUCT | CTLFLAG_RD,
+ 0, 0, sysctl_swapusage, "S,xsw_usage", "");
+
+
+/* this kernel does NOT implement shared_region_make_private_np() */
+SYSCTL_INT(_kern, KERN_SHREG_PRIVATIZABLE, shreg_private,
+ CTLFLAG_RD,
+ (int *)NULL, 0, "");
+
+#if defined(__i386__) || defined(__x86_64__)
+static int
+sysctl_sysctl_exec_affinity(__unused struct sysctl_oid *oidp,
+ __unused void *arg1, __unused int arg2,
+ struct sysctl_req *req)
+{
+ proc_t cur_proc = req->p;
int error;
if (req->oldptr != USER_ADDR_NULL) {
if ((error = SYSCTL_IN(req, &newcputype, sizeof(newcputype))))
return error;
if (newcputype == CPU_TYPE_I386)
- cur_proc->p_flag &= ~P_AFFINITY;
+ OSBitAndAtomic(~((uint32_t)P_AFFINITY), &cur_proc->p_flag);
else if (newcputype == CPU_TYPE_POWERPC)
- cur_proc->p_flag |= P_AFFINITY;
+ OSBitOrAtomic(P_AFFINITY, &cur_proc->p_flag);
else
return (EINVAL);
}
static int
fetch_process_cputype(
- struct proc *cur_proc,
+ proc_t cur_proc,
int *name,
u_int namelen,
cpu_type_t *cputype)
{
- struct proc *p = NULL;
+ proc_t p = PROC_NULL;
+ int refheld = 0;
cpu_type_t ret = 0;
+ int error = 0;
if (namelen == 0)
p = cur_proc;
else if (namelen == 1) {
- p = pfind(name[0]);
+ p = proc_find(name[0]);
if (p == NULL)
return (EINVAL);
- if ((kauth_cred_getuid(p->p_ucred) != kauth_cred_getuid(kauth_cred_get()))
- && suser(kauth_cred_get(), &cur_proc->p_acflag))
- return (EPERM);
+ refheld = 1;
} else {
- return EINVAL;
+ error = EINVAL;
+ goto out;
}
-#if __i386__
+#if defined(__i386__) || defined(__x86_64__)
if (p->p_flag & P_TRANSLATED) {
ret = CPU_TYPE_POWERPC;
}
}
*cputype = ret;
- return 0;
+ if (refheld != 0)
+ proc_rele(p);
+out:
+ return (error);
}
static int
-sysctl_sysctl_native SYSCTL_HANDLER_ARGS
+sysctl_sysctl_native(__unused struct sysctl_oid *oidp, void *arg1, int arg2,
+ struct sysctl_req *req)
{
int error;
cpu_type_t proc_cputype = 0;
SYSCTL_PROC(_sysctl, OID_AUTO, proc_native, CTLTYPE_NODE|CTLFLAG_RD, 0, 0, sysctl_sysctl_native ,"I","proc_native");
static int
-sysctl_sysctl_cputype SYSCTL_HANDLER_ARGS
+sysctl_sysctl_cputype(__unused struct sysctl_oid *oidp, void *arg1, int arg2,
+ struct sysctl_req *req)
{
int error;
cpu_type_t proc_cputype = 0;
}
SYSCTL_PROC(_sysctl, OID_AUTO, proc_cputype, CTLTYPE_NODE|CTLFLAG_RD, 0, 0, sysctl_sysctl_cputype ,"I","proc_cputype");
+static int
+sysctl_safeboot
+(__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req)
+{
+ return sysctl_io_number(req, boothowto & RB_SAFEBOOT ? 1 : 0, sizeof(int), NULL, NULL);
+}
+
+SYSCTL_PROC(_kern, KERN_SAFEBOOT, safeboot,
+ CTLTYPE_INT | CTLFLAG_RD,
+ 0, 0, sysctl_safeboot, "I", "");
+
+static int
+sysctl_singleuser
+(__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, struct sysctl_req *req)
+{
+ return sysctl_io_number(req, boothowto & RB_SINGLE ? 1 : 0, sizeof(int), NULL, NULL);
+}
+
+SYSCTL_PROC(_kern, OID_AUTO, singleuser,
+ CTLTYPE_INT | CTLFLAG_RD,
+ 0, 0, sysctl_singleuser, "I", "");
+
+/*
+ * Controls for debugging affinity sets - see osfmk/kern/affinity.c
+ */
+extern boolean_t affinity_sets_enabled;
+extern int affinity_sets_mapping;
+
+SYSCTL_INT (_kern, OID_AUTO, affinity_sets_enabled,
+ CTLFLAG_RW, (int *) &affinity_sets_enabled, 0, "hinting enabled");
+SYSCTL_INT (_kern, OID_AUTO, affinity_sets_mapping,
+ CTLFLAG_RW, &affinity_sets_mapping, 0, "mapping policy");
+
+/*
+ * Limit on total memory users can wire.
+ *
+ * vm_global_user_wire_limit - system wide limit on wired memory from all processes combined.
+ *
+ * vm_user_wire_limit - per address space limit on wired memory. This puts a cap on the process's rlimit value.
+ *
+ * These values are initialized to reasonable defaults at boot time based on the available physical memory in
+ * kmem_init().
+ *
+ * All values are in bytes.
+ */
+
+vm_map_size_t vm_global_no_user_wire_amount;
+vm_map_size_t vm_global_user_wire_limit;
+vm_map_size_t vm_user_wire_limit;
+
+/*
+ * There needs to be a more automatic/elegant way to do this
+ */
+
+SYSCTL_QUAD(_vm, OID_AUTO, global_no_user_wire_amount, CTLFLAG_RW, &vm_global_no_user_wire_amount, "");
+SYSCTL_QUAD(_vm, OID_AUTO, global_user_wire_limit, CTLFLAG_RW, &vm_global_user_wire_limit, "");
+SYSCTL_QUAD(_vm, OID_AUTO, user_wire_limit, CTLFLAG_RW, &vm_user_wire_limit, "");
+
+
+
+/*
+ * enable back trace events for thread blocks
+ */
+
+extern uint32_t kdebug_thread_block;
+
+SYSCTL_INT (_kern, OID_AUTO, kdebug_thread_block,
+ CTLFLAG_RW, &kdebug_thread_block, 0, "kdebug thread_block");
+
+/*
+ * Kernel stack size and depth
+ */
+SYSCTL_INT (_kern, OID_AUTO, stack_size,
+ CTLFLAG_RD, (int *) &kernel_stack_size, 0, "Kernel stack size");
+SYSCTL_INT (_kern, OID_AUTO, stack_depth_max,
+ CTLFLAG_RD, (int *) &kernel_stack_depth_max, 0, "Max kernel stack depth at interrupt or context switch");
+
+/*
+ * enable back trace for port allocations
+ */
+extern int ipc_portbt;
+
+SYSCTL_INT(_kern, OID_AUTO, ipc_portbt,
+ CTLFLAG_RW | CTLFLAG_KERN,
+ &ipc_portbt, 0, "");
+