mirror of
https://github.com/darlinghq/darling-xnu.git
synced 2024-11-30 07:50:34 +00:00
579 lines
13 KiB
C
579 lines
13 KiB
C
/*
|
|
* Copyright (c) 2012 Apple Inc. All rights reserved.
|
|
*
|
|
* @APPLE_OSREFERENCE_LICENSE_HEADER_START@
|
|
*
|
|
* 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.
|
|
*
|
|
* 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, QUIET ENJOYMENT OR NON-INFRINGEMENT.
|
|
* Please see the License for the specific language governing rights and
|
|
* limitations under the License.
|
|
*
|
|
* @APPLE_OSREFERENCE_LICENSE_HEADER_END@
|
|
*/
|
|
|
|
#include <kern/debug.h>
|
|
#include <kern/kalloc.h>
|
|
#include <sys/param.h>
|
|
#include <sys/mman.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/sysctl.h>
|
|
#include <libkern/libkern.h>
|
|
#include <kern/assert.h>
|
|
|
|
#include <kern/kpc.h>
|
|
#include <sys/ktrace.h>
|
|
|
|
#include <pexpert/pexpert.h>
|
|
#include <kperf/kperf.h>
|
|
|
|
/* Various sysctl requests */
|
|
#define REQ_CLASSES (1)
|
|
#define REQ_COUNTING (2)
|
|
#define REQ_THREAD_COUNTING (3)
|
|
#define REQ_CONFIG_COUNT (4)
|
|
#define REQ_COUNTER_COUNT (5)
|
|
#define REQ_THREAD_COUNTERS (6)
|
|
#define REQ_COUNTERS (7)
|
|
#define REQ_SHADOW_COUNTERS (8)
|
|
#define REQ_CONFIG (9)
|
|
#define REQ_PERIOD (10)
|
|
#define REQ_ACTIONID (11)
|
|
#define REQ_SW_INC (14)
|
|
#define REQ_PMU_VERSION (15)
|
|
|
|
/* Type-munging casts */
|
|
typedef int (*getint_t)(void);
|
|
typedef int (*setint_t)(int);
|
|
|
|
static int kpc_initted = 0;
|
|
|
|
static LCK_GRP_DECLARE(sysctl_lckgrp, "kpc");
|
|
static LCK_MTX_DECLARE(sysctl_lock, &sysctl_lckgrp);
|
|
|
|
/*
|
|
* Another element is needed to hold the CPU number when getting counter values.
|
|
*/
|
|
#define KPC_MAX_BUF_LEN (KPC_MAX_COUNTERS_COPIED + 1)
|
|
|
|
typedef int (*setget_func_t)(int);
|
|
|
|
void
|
|
kpc_init(void)
|
|
{
|
|
kpc_arch_init();
|
|
|
|
kpc_initted = 1;
|
|
}
|
|
|
|
static uint64_t *
|
|
kpc_get_bigarray(uint32_t *size_out)
|
|
{
|
|
static uint64_t *bigarray = NULL;
|
|
|
|
LCK_MTX_ASSERT(&sysctl_lock, LCK_MTX_ASSERT_OWNED);
|
|
|
|
uint32_t size = kpc_get_counterbuf_size() + sizeof(uint64_t);
|
|
*size_out = size;
|
|
|
|
if (bigarray) {
|
|
return bigarray;
|
|
}
|
|
|
|
/*
|
|
* Another element is needed to hold the CPU number when getting counter
|
|
* values.
|
|
*/
|
|
bigarray = kheap_alloc_tag(KHEAP_DATA_BUFFERS, size,
|
|
Z_WAITOK, VM_KERN_MEMORY_DIAG);
|
|
assert(bigarray != NULL);
|
|
return bigarray;
|
|
}
|
|
|
|
/* abstract sysctl handlers */
|
|
static int
|
|
sysctl_get_int( struct sysctl_oid *oidp, struct sysctl_req *req,
|
|
uint32_t value )
|
|
{
|
|
int error = 0;
|
|
|
|
/* copy out the old value */
|
|
error = sysctl_handle_int(oidp, &value, 0, req);
|
|
|
|
return error;
|
|
}
|
|
|
|
static int
|
|
sysctl_set_int( struct sysctl_req *req, int (*set_func)(int))
|
|
{
|
|
int error = 0;
|
|
int value = 0;
|
|
|
|
error = SYSCTL_IN( req, &value, sizeof(value));
|
|
if (error) {
|
|
return error;
|
|
}
|
|
|
|
error = set_func( value );
|
|
|
|
return error;
|
|
}
|
|
|
|
static int
|
|
sysctl_getset_int( struct sysctl_oid *oidp, struct sysctl_req *req,
|
|
int (*get_func)(void), int (*set_func)(int))
|
|
{
|
|
int error = 0;
|
|
uint32_t value = 0;
|
|
|
|
/* get the old value and process it */
|
|
value = get_func();
|
|
|
|
/* copy out the old value, get the new value */
|
|
error = sysctl_handle_int(oidp, &value, 0, req);
|
|
if (error || !req->newptr) {
|
|
return error;
|
|
}
|
|
|
|
/* if that worked, and we're writing... */
|
|
error = set_func( value );
|
|
|
|
return error;
|
|
}
|
|
|
|
|
|
static int
|
|
sysctl_setget_int( struct sysctl_req *req,
|
|
int (*setget_func)(int))
|
|
{
|
|
int error = 0;
|
|
int value = 0;
|
|
|
|
error = SYSCTL_IN( req, &value, sizeof(value));
|
|
if (error) {
|
|
return error;
|
|
}
|
|
|
|
value = setget_func(value);
|
|
|
|
error = SYSCTL_OUT( req, &value, sizeof(value));
|
|
|
|
return error;
|
|
}
|
|
|
|
static int
|
|
sysctl_kpc_get_counters(uint32_t counters,
|
|
uint32_t *size, void *buf)
|
|
{
|
|
uint64_t *ctr_buf = (uint64_t*)buf;
|
|
int curcpu;
|
|
uint32_t count;
|
|
|
|
count = kpc_get_cpu_counters(counters & KPC_ALL_CPUS,
|
|
counters,
|
|
&curcpu, &ctr_buf[1]);
|
|
if (!count) {
|
|
return EINVAL;
|
|
}
|
|
|
|
ctr_buf[0] = curcpu;
|
|
|
|
*size = (count + 1) * sizeof(uint64_t);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
sysctl_kpc_get_shadow_counters(uint32_t counters,
|
|
uint32_t *size, void *buf)
|
|
{
|
|
uint64_t *ctr_buf = (uint64_t*)buf;
|
|
int curcpu;
|
|
uint32_t count;
|
|
|
|
count = kpc_get_shadow_counters(counters & KPC_ALL_CPUS,
|
|
counters,
|
|
&curcpu, &ctr_buf[1]);
|
|
|
|
if (!count) {
|
|
return EINVAL;
|
|
}
|
|
|
|
ctr_buf[0] = curcpu;
|
|
|
|
*size = (count + 1) * sizeof(uint64_t);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
sysctl_kpc_get_thread_counters(uint32_t tid,
|
|
uint32_t *size, void *buf)
|
|
{
|
|
uint32_t count = *size / sizeof(uint64_t);
|
|
int r;
|
|
|
|
if (tid != 0) {
|
|
return EINVAL;
|
|
}
|
|
|
|
r = kpc_get_curthread_counters(&count, buf);
|
|
if (!r) {
|
|
*size = count * sizeof(uint64_t);
|
|
}
|
|
|
|
return r;
|
|
}
|
|
|
|
static int
|
|
sysctl_kpc_get_config(uint32_t classes, void* buf)
|
|
{
|
|
return kpc_get_config( classes, buf );
|
|
}
|
|
|
|
static int
|
|
sysctl_kpc_set_config(uint32_t classes, void* buf)
|
|
{
|
|
/* userspace cannot reconfigure the power class */
|
|
if (classes & KPC_CLASS_POWER_MASK) {
|
|
return EPERM;
|
|
}
|
|
return kpc_set_config( classes, buf);
|
|
}
|
|
|
|
static int
|
|
sysctl_kpc_get_period(uint32_t classes, void* buf)
|
|
{
|
|
return kpc_get_period( classes, buf );
|
|
}
|
|
|
|
static int
|
|
sysctl_kpc_set_period(uint32_t classes, void* buf)
|
|
{
|
|
/* userspace cannot reconfigure the power class */
|
|
if (classes & KPC_CLASS_POWER_MASK) {
|
|
return EPERM;
|
|
}
|
|
return kpc_set_period( classes, buf);
|
|
}
|
|
|
|
static int
|
|
sysctl_kpc_get_actionid(uint32_t classes, void* buf)
|
|
{
|
|
return kpc_get_actionid( classes, buf );
|
|
}
|
|
|
|
static int
|
|
sysctl_kpc_set_actionid(uint32_t classes, void* buf)
|
|
{
|
|
return kpc_set_actionid( classes, buf);
|
|
}
|
|
|
|
|
|
static int
|
|
sysctl_get_bigarray(struct sysctl_req *req,
|
|
int (*get_fn)(uint32_t, uint32_t*, void*))
|
|
{
|
|
uint32_t bufsize = 0;
|
|
uint64_t *buf = kpc_get_bigarray(&bufsize);
|
|
uint32_t arg = 0;
|
|
|
|
/* get the argument */
|
|
int error = SYSCTL_IN(req, &arg, sizeof(arg));
|
|
if (error) {
|
|
return error;
|
|
}
|
|
|
|
error = get_fn(arg, &bufsize, buf);
|
|
if (!error) {
|
|
error = SYSCTL_OUT(req, buf, bufsize);
|
|
}
|
|
|
|
return error;
|
|
}
|
|
|
|
/* given a config word, how many bytes does it take? */
|
|
static int
|
|
sysctl_config_size( uint32_t config )
|
|
{
|
|
return kpc_get_config_count(config) * sizeof(kpc_config_t);
|
|
}
|
|
|
|
static int
|
|
sysctl_counter_size( uint32_t classes )
|
|
{
|
|
return kpc_get_counter_count(classes) * sizeof(uint64_t);
|
|
}
|
|
|
|
static int
|
|
sysctl_actionid_size( uint32_t classes )
|
|
{
|
|
return kpc_get_counter_count(classes) * sizeof(int32_t);
|
|
}
|
|
|
|
static int
|
|
sysctl_getset_bigarray(struct sysctl_req *req, int (*size_fn)(uint32_t arg),
|
|
int (*get_fn)(uint32_t, void*), int (*set_fn)(uint32_t, void*))
|
|
{
|
|
int error = 0;
|
|
uint64_t arg;
|
|
|
|
uint32_t bufsize = 0;
|
|
uint64_t *buf = kpc_get_bigarray(&bufsize);
|
|
|
|
/* get the config word */
|
|
error = SYSCTL_IN(req, &arg, sizeof(arg));
|
|
if (error) {
|
|
return error;
|
|
}
|
|
|
|
/* Determine the size of registers to modify. */
|
|
uint32_t regsize = size_fn((uint32_t)arg);
|
|
if (regsize == 0 || regsize > bufsize) {
|
|
return EINVAL;
|
|
}
|
|
|
|
/* if writing */
|
|
if (req->newptr) {
|
|
/* copy the rest -- SYSCTL_IN knows the copyin should be shifted */
|
|
error = SYSCTL_IN(req, buf, regsize);
|
|
|
|
/* SYSCTL_IN failure means only need to read */
|
|
if (!error) {
|
|
error = set_fn((uint32_t)arg, buf);
|
|
if (error) {
|
|
return error;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* if reading */
|
|
if (req->oldptr) {
|
|
error = get_fn((uint32_t)arg, buf);
|
|
if (error) {
|
|
return error;
|
|
}
|
|
|
|
error = SYSCTL_OUT(req, buf, regsize);
|
|
}
|
|
|
|
return error;
|
|
}
|
|
|
|
static int
|
|
kpc_sysctl SYSCTL_HANDLER_ARGS
|
|
{
|
|
int ret;
|
|
|
|
// __unused struct sysctl_oid *unused_oidp = oidp;
|
|
(void)arg2;
|
|
|
|
if (!kpc_initted) {
|
|
panic("kpc_init not called");
|
|
}
|
|
|
|
if (!kpc_supported) {
|
|
return ENOTSUP;
|
|
}
|
|
|
|
ktrace_lock();
|
|
|
|
// Most sysctls require an access check, but a few are public.
|
|
switch ((uintptr_t) arg1) {
|
|
case REQ_CLASSES:
|
|
case REQ_CONFIG_COUNT:
|
|
case REQ_COUNTER_COUNT:
|
|
// These read-only sysctls are public.
|
|
break;
|
|
|
|
default:
|
|
// Require kperf access to read or write anything else.
|
|
// This is either root or the blessed pid.
|
|
if ((ret = ktrace_read_check())) {
|
|
ktrace_unlock();
|
|
return ret;
|
|
}
|
|
break;
|
|
}
|
|
|
|
ktrace_unlock();
|
|
|
|
lck_mtx_lock(&sysctl_lock);
|
|
|
|
/* which request */
|
|
switch ((uintptr_t) arg1) {
|
|
case REQ_CLASSES:
|
|
ret = sysctl_get_int( oidp, req,
|
|
kpc_get_classes());
|
|
break;
|
|
case REQ_COUNTING:
|
|
ret = sysctl_getset_int( oidp, req,
|
|
(getint_t)kpc_get_running,
|
|
(setint_t)kpc_set_running );
|
|
break;
|
|
case REQ_THREAD_COUNTING:
|
|
ret = sysctl_getset_int( oidp, req,
|
|
(getint_t)kpc_get_thread_counting,
|
|
(setint_t)kpc_set_thread_counting );
|
|
break;
|
|
|
|
case REQ_CONFIG_COUNT:
|
|
ret = sysctl_setget_int( req,
|
|
(setget_func_t)kpc_get_config_count );
|
|
break;
|
|
|
|
case REQ_COUNTER_COUNT:
|
|
ret = sysctl_setget_int( req,
|
|
(setget_func_t)kpc_get_counter_count );
|
|
break;
|
|
|
|
|
|
case REQ_THREAD_COUNTERS:
|
|
ret = sysctl_get_bigarray( req, sysctl_kpc_get_thread_counters );
|
|
break;
|
|
|
|
case REQ_COUNTERS:
|
|
ret = sysctl_get_bigarray( req, sysctl_kpc_get_counters );
|
|
break;
|
|
|
|
case REQ_SHADOW_COUNTERS:
|
|
ret = sysctl_get_bigarray( req, sysctl_kpc_get_shadow_counters );
|
|
break;
|
|
|
|
case REQ_CONFIG:
|
|
ret = sysctl_getset_bigarray( req,
|
|
sysctl_config_size,
|
|
sysctl_kpc_get_config,
|
|
sysctl_kpc_set_config );
|
|
break;
|
|
|
|
case REQ_PERIOD:
|
|
ret = sysctl_getset_bigarray( req,
|
|
sysctl_counter_size,
|
|
sysctl_kpc_get_period,
|
|
sysctl_kpc_set_period );
|
|
break;
|
|
|
|
case REQ_ACTIONID:
|
|
ret = sysctl_getset_bigarray( req,
|
|
sysctl_actionid_size,
|
|
sysctl_kpc_get_actionid,
|
|
sysctl_kpc_set_actionid );
|
|
break;
|
|
|
|
|
|
case REQ_SW_INC:
|
|
ret = sysctl_set_int( req, (setget_func_t)kpc_set_sw_inc );
|
|
break;
|
|
|
|
case REQ_PMU_VERSION:
|
|
ret = sysctl_get_int(oidp, req, kpc_get_pmu_version());
|
|
break;
|
|
|
|
default:
|
|
ret = ENOENT;
|
|
break;
|
|
}
|
|
|
|
lck_mtx_unlock(&sysctl_lock);
|
|
|
|
return ret;
|
|
}
|
|
|
|
|
|
/*** sysctl definitions ***/
|
|
|
|
/* root kperf node */
|
|
SYSCTL_NODE(, OID_AUTO, kpc, CTLFLAG_RW | CTLFLAG_LOCKED, 0,
|
|
"kpc");
|
|
|
|
/* values */
|
|
SYSCTL_PROC(_kpc, OID_AUTO, classes,
|
|
CTLTYPE_INT | CTLFLAG_RD | CTLFLAG_ANYBODY | CTLFLAG_MASKED | CTLFLAG_LOCKED,
|
|
(void*)REQ_CLASSES,
|
|
sizeof(int), kpc_sysctl, "I", "Available classes");
|
|
|
|
SYSCTL_PROC(_kpc, OID_AUTO, counting,
|
|
CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_ANYBODY | CTLFLAG_MASKED | CTLFLAG_LOCKED,
|
|
(void*)REQ_COUNTING,
|
|
sizeof(int), kpc_sysctl, "I", "PMCs counting");
|
|
|
|
SYSCTL_PROC(_kpc, OID_AUTO, thread_counting,
|
|
CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_ANYBODY | CTLFLAG_MASKED | CTLFLAG_LOCKED,
|
|
(void*)REQ_THREAD_COUNTING,
|
|
sizeof(int), kpc_sysctl, "I", "Thread accumulation");
|
|
|
|
SYSCTL_PROC(_kpc, OID_AUTO, pmu_version,
|
|
CTLTYPE_INT | CTLFLAG_RD | CTLFLAG_ANYBODY | CTLFLAG_MASKED | CTLFLAG_LOCKED,
|
|
(void *)REQ_PMU_VERSION,
|
|
sizeof(int), kpc_sysctl, "I", "PMU version for hardware");
|
|
|
|
/* faux values */
|
|
SYSCTL_PROC(_kpc, OID_AUTO, config_count,
|
|
CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_ANYBODY | CTLFLAG_MASKED | CTLFLAG_LOCKED,
|
|
(void*)REQ_CONFIG_COUNT,
|
|
sizeof(int), kpc_sysctl, "S", "Config count");
|
|
|
|
SYSCTL_PROC(_kpc, OID_AUTO, counter_count,
|
|
CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_ANYBODY | CTLFLAG_MASKED | CTLFLAG_LOCKED,
|
|
(void*)REQ_COUNTER_COUNT,
|
|
sizeof(int), kpc_sysctl, "S", "Counter count");
|
|
|
|
SYSCTL_PROC(_kpc, OID_AUTO, sw_inc,
|
|
CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_ANYBODY | CTLFLAG_MASKED | CTLFLAG_LOCKED,
|
|
(void*)REQ_SW_INC,
|
|
sizeof(int), kpc_sysctl, "S", "Software increment");
|
|
|
|
/* arrays */
|
|
SYSCTL_PROC(_kpc, OID_AUTO, thread_counters,
|
|
CTLFLAG_RD | CTLFLAG_WR | CTLFLAG_ANYBODY | CTLFLAG_MASKED | CTLFLAG_LOCKED,
|
|
(void*)REQ_THREAD_COUNTERS,
|
|
sizeof(uint64_t), kpc_sysctl,
|
|
"QU", "Current thread counters");
|
|
|
|
SYSCTL_PROC(_kpc, OID_AUTO, counters,
|
|
CTLFLAG_RD | CTLFLAG_WR | CTLFLAG_ANYBODY | CTLFLAG_MASKED | CTLFLAG_LOCKED,
|
|
(void*)REQ_COUNTERS,
|
|
sizeof(uint64_t), kpc_sysctl,
|
|
"QU", "Current counters");
|
|
|
|
SYSCTL_PROC(_kpc, OID_AUTO, shadow_counters,
|
|
CTLFLAG_RD | CTLFLAG_WR | CTLFLAG_ANYBODY | CTLFLAG_MASKED | CTLFLAG_LOCKED,
|
|
(void*)REQ_SHADOW_COUNTERS,
|
|
sizeof(uint64_t), kpc_sysctl,
|
|
"QU", "Current shadow counters");
|
|
|
|
SYSCTL_PROC(_kpc, OID_AUTO, config,
|
|
CTLFLAG_RD | CTLFLAG_WR | CTLFLAG_ANYBODY | CTLFLAG_MASKED | CTLFLAG_LOCKED,
|
|
(void*)REQ_CONFIG,
|
|
sizeof(uint64_t), kpc_sysctl,
|
|
"QU", "Set counter configs");
|
|
|
|
SYSCTL_PROC(_kpc, OID_AUTO, period,
|
|
CTLFLAG_RD | CTLFLAG_WR | CTLFLAG_ANYBODY | CTLFLAG_MASKED | CTLFLAG_LOCKED,
|
|
(void*)REQ_PERIOD,
|
|
sizeof(uint64_t), kpc_sysctl,
|
|
"QU", "Set counter periods");
|
|
|
|
SYSCTL_PROC(_kpc, OID_AUTO, actionid,
|
|
CTLFLAG_RD | CTLFLAG_WR | CTLFLAG_ANYBODY | CTLFLAG_MASKED | CTLFLAG_LOCKED,
|
|
(void*)REQ_ACTIONID,
|
|
sizeof(uint32_t), kpc_sysctl,
|
|
"QU", "Set counter actionids");
|
|
|
|
|