2015-07-12 18:47:43 +00:00
|
|
|
/*
|
|
|
|
htop - DarwinProcessList.c
|
|
|
|
(C) 2014 Hisham H. Muhammad
|
2020-10-05 07:51:32 +00:00
|
|
|
Released under the GNU GPLv2, see the COPYING file
|
2015-07-12 18:47:43 +00:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "DarwinProcessList.h"
|
|
|
|
|
2020-11-17 14:17:19 +00:00
|
|
|
#include <errno.h>
|
2020-11-17 14:10:44 +00:00
|
|
|
#include <libproc.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdio.h>
|
2015-07-12 18:47:43 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2015-07-13 06:17:14 +00:00
|
|
|
#include <unistd.h>
|
2015-07-14 02:02:40 +00:00
|
|
|
#include <utmpx.h>
|
2020-11-17 14:10:44 +00:00
|
|
|
#include <sys/mman.h>
|
2018-03-25 20:04:16 +00:00
|
|
|
#include <sys/sysctl.h>
|
2020-11-17 14:10:44 +00:00
|
|
|
|
|
|
|
#include "CRT.h"
|
|
|
|
#include "DarwinProcess.h"
|
2020-12-09 04:12:44 +00:00
|
|
|
#include "Platform.h"
|
2020-11-17 14:10:44 +00:00
|
|
|
#include "ProcessList.h"
|
|
|
|
#include "zfs/openzfs_sysctl.h"
|
|
|
|
#include "zfs/ZfsArcStats.h"
|
|
|
|
|
2018-03-25 20:04:16 +00:00
|
|
|
|
|
|
|
struct kern {
|
2020-10-31 21:14:27 +00:00
|
|
|
short int version[3];
|
2018-03-25 20:04:16 +00:00
|
|
|
};
|
|
|
|
|
2020-11-17 14:10:44 +00:00
|
|
|
static void GetKernelVersion(struct kern* k) {
|
2018-03-25 20:04:16 +00:00
|
|
|
static short int version_[3] = {0};
|
|
|
|
if (!version_[0]) {
|
|
|
|
// just in case it fails someday
|
|
|
|
version_[0] = version_[1] = version_[2] = -1;
|
|
|
|
char str[256] = {0};
|
|
|
|
size_t size = sizeof(str);
|
|
|
|
int ret = sysctlbyname("kern.osrelease", str, &size, NULL, 0);
|
2020-10-31 21:14:27 +00:00
|
|
|
if (ret == 0) {
|
|
|
|
sscanf(str, "%hd.%hd.%hd", &version_[0], &version_[1], &version_[2]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
memcpy(k->version, version_, sizeof(version_));
|
2018-03-25 20:04:16 +00:00
|
|
|
}
|
|
|
|
|
2018-04-05 22:41:22 +00:00
|
|
|
/* compare the given os version with the one installed returns:
|
|
|
|
0 if equals the installed version
|
|
|
|
positive value if less than the installed version
|
|
|
|
negative value if more than the installed version
|
|
|
|
*/
|
2020-11-17 14:10:44 +00:00
|
|
|
static int CompareKernelVersion(short int major, short int minor, short int component) {
|
2020-10-31 21:14:27 +00:00
|
|
|
struct kern k;
|
|
|
|
GetKernelVersion(&k);
|
|
|
|
|
|
|
|
if (k.version[0] != major) {
|
|
|
|
return k.version[0] - major;
|
|
|
|
}
|
|
|
|
if (k.version[1] != minor) {
|
|
|
|
return k.version[1] - minor;
|
|
|
|
}
|
|
|
|
if (k.version[2] != component) {
|
|
|
|
return k.version[2] - component;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2018-03-25 20:04:16 +00:00
|
|
|
}
|
2015-07-12 18:47:43 +00:00
|
|
|
|
2020-11-17 14:10:44 +00:00
|
|
|
static void ProcessList_getHostInfo(host_basic_info_data_t* p) {
|
2015-07-13 06:17:14 +00:00
|
|
|
mach_msg_type_number_t info_size = HOST_BASIC_INFO_COUNT;
|
|
|
|
|
2020-10-31 19:52:20 +00:00
|
|
|
if (0 != host_info(mach_host_self(), HOST_BASIC_INFO, (host_info_t)p, &info_size)) {
|
2020-12-19 20:25:18 +00:00
|
|
|
CRT_fatalError("Unable to retrieve host info");
|
2015-07-13 06:17:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-17 14:10:44 +00:00
|
|
|
static void ProcessList_freeCPULoadInfo(processor_cpu_load_info_t* p) {
|
2020-10-31 19:52:20 +00:00
|
|
|
if (NULL != p && NULL != *p) {
|
2020-10-31 21:14:27 +00:00
|
|
|
if (0 != munmap(*p, vm_page_size)) {
|
2020-12-19 20:25:18 +00:00
|
|
|
CRT_fatalError("Unable to free old CPU load information");
|
2020-10-31 21:14:27 +00:00
|
|
|
}
|
|
|
|
*p = NULL;
|
2015-07-13 21:53:46 +00:00
|
|
|
}
|
2015-07-13 22:09:18 +00:00
|
|
|
}
|
|
|
|
|
2020-11-17 14:10:44 +00:00
|
|
|
static unsigned ProcessList_allocateCPULoadInfo(processor_cpu_load_info_t* p) {
|
2015-07-13 22:09:18 +00:00
|
|
|
mach_msg_type_number_t info_size = sizeof(processor_cpu_load_info_t);
|
|
|
|
unsigned cpu_count;
|
|
|
|
|
2015-07-14 16:46:16 +00:00
|
|
|
// TODO Improving the accuracy of the load counts woule help a lot.
|
2020-10-31 21:14:27 +00:00
|
|
|
if (0 != host_processor_info(mach_host_self(), PROCESSOR_CPU_LOAD_INFO, &cpu_count, (processor_info_array_t*)p, &info_size)) {
|
2020-12-19 20:25:18 +00:00
|
|
|
CRT_fatalError("Unable to retrieve CPU info");
|
2015-07-13 06:17:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return cpu_count;
|
|
|
|
}
|
|
|
|
|
2020-11-17 14:10:44 +00:00
|
|
|
static void ProcessList_getVMStats(vm_statistics_t p) {
|
2020-10-31 21:14:27 +00:00
|
|
|
mach_msg_type_number_t info_size = HOST_VM_INFO_COUNT;
|
2015-07-14 02:02:40 +00:00
|
|
|
|
2020-10-31 21:14:27 +00:00
|
|
|
if (host_statistics(mach_host_self(), HOST_VM_INFO, (host_info_t)p, &info_size) != 0) {
|
2020-12-19 20:25:18 +00:00
|
|
|
CRT_fatalError("Unable to retrieve VM statistics");
|
2020-10-31 21:14:27 +00:00
|
|
|
}
|
2015-07-14 02:02:40 +00:00
|
|
|
}
|
|
|
|
|
2020-11-17 14:10:44 +00:00
|
|
|
static struct kinfo_proc* ProcessList_getKInfoProcs(size_t* count) {
|
2015-07-13 06:17:14 +00:00
|
|
|
int mib[4] = { CTL_KERN, KERN_PROC, KERN_PROC_ALL, 0 };
|
2020-10-31 22:28:02 +00:00
|
|
|
struct kinfo_proc* processes = NULL;
|
2015-07-13 06:17:14 +00:00
|
|
|
|
2020-11-17 14:17:19 +00:00
|
|
|
for (int retry = 3; retry > 0; retry--) {
|
|
|
|
size_t size = 0;
|
|
|
|
if (sysctl(mib, 4, NULL, &size, NULL, 0) < 0 || size == 0) {
|
|
|
|
CRT_fatalError("Unable to get size of kproc_infos");
|
|
|
|
}
|
2015-07-13 06:17:14 +00:00
|
|
|
|
2020-11-17 14:17:19 +00:00
|
|
|
processes = xRealloc(processes, size);
|
2015-07-13 06:17:14 +00:00
|
|
|
|
2020-11-17 14:17:19 +00:00
|
|
|
if (sysctl(mib, 4, processes, &size, NULL, 0) == 0) {
|
|
|
|
*count = size / sizeof(struct kinfo_proc);
|
|
|
|
return processes;
|
|
|
|
}
|
2015-07-13 06:17:14 +00:00
|
|
|
|
2020-11-17 14:17:19 +00:00
|
|
|
if (errno != ENOMEM)
|
|
|
|
break;
|
|
|
|
}
|
2015-07-13 06:17:14 +00:00
|
|
|
|
2020-11-17 14:17:19 +00:00
|
|
|
CRT_fatalError("Unable to get kinfo_procs");
|
2015-07-13 06:17:14 +00:00
|
|
|
}
|
|
|
|
|
2020-09-09 09:38:15 +00:00
|
|
|
ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* pidMatchList, uid_t userId) {
|
2016-02-02 14:53:02 +00:00
|
|
|
DarwinProcessList* this = xCalloc(1, sizeof(DarwinProcessList));
|
2015-07-13 06:17:14 +00:00
|
|
|
|
2020-12-13 14:54:13 +00:00
|
|
|
ProcessList_init(&this->super, Class(DarwinProcess), usersTable, pidMatchList, userId);
|
2015-07-14 02:02:40 +00:00
|
|
|
|
|
|
|
/* Initialize the CPU information */
|
2015-07-13 22:09:18 +00:00
|
|
|
this->super.cpuCount = ProcessList_allocateCPULoadInfo(&this->prev_load);
|
2015-07-13 21:53:46 +00:00
|
|
|
ProcessList_getHostInfo(&this->host_info);
|
2015-07-13 22:09:18 +00:00
|
|
|
ProcessList_allocateCPULoadInfo(&this->curr_load);
|
2015-07-13 06:17:14 +00:00
|
|
|
|
2015-07-14 02:02:40 +00:00
|
|
|
/* Initialize the VM statistics */
|
|
|
|
ProcessList_getVMStats(&this->vm_stats);
|
|
|
|
|
2019-07-07 21:30:37 +00:00
|
|
|
/* Initialize the ZFS kstats, if zfs.kext loaded */
|
2019-09-03 18:21:33 +00:00
|
|
|
openzfs_sysctl_init(&this->zfs);
|
2019-07-07 23:27:00 +00:00
|
|
|
openzfs_sysctl_updateArcStats(&this->zfs);
|
2019-07-07 21:30:37 +00:00
|
|
|
|
2015-07-14 02:02:40 +00:00
|
|
|
this->super.kernelThreads = 0;
|
|
|
|
this->super.userlandThreads = 0;
|
|
|
|
this->super.totalTasks = 0;
|
|
|
|
this->super.runningTasks = 0;
|
|
|
|
|
2015-07-13 06:17:14 +00:00
|
|
|
return &this->super;
|
2015-07-12 18:47:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ProcessList_delete(ProcessList* this) {
|
|
|
|
ProcessList_done(this);
|
|
|
|
free(this);
|
|
|
|
}
|
|
|
|
|
2020-12-09 04:12:44 +00:00
|
|
|
static double ticksToNanoseconds(const double ticks) {
|
|
|
|
const double nanos_per_sec = 1e9;
|
2021-01-02 06:45:53 +00:00
|
|
|
return (ticks / Platform_timebaseToNS) * (nanos_per_sec / (double) Platform_clockTicksPerSec);
|
2020-12-09 04:12:44 +00:00
|
|
|
}
|
|
|
|
|
2020-10-13 14:03:37 +00:00
|
|
|
void ProcessList_goThroughEntries(ProcessList* super, bool pauseProcessUpdate) {
|
2020-10-31 21:14:27 +00:00
|
|
|
DarwinProcessList* dpl = (DarwinProcessList*)super;
|
|
|
|
bool preExisting = true;
|
|
|
|
struct kinfo_proc* ps;
|
|
|
|
size_t count;
|
|
|
|
DarwinProcess* proc;
|
|
|
|
|
|
|
|
/* Update the global data (CPU times and VM stats) */
|
|
|
|
ProcessList_freeCPULoadInfo(&dpl->prev_load);
|
|
|
|
dpl->prev_load = dpl->curr_load;
|
|
|
|
ProcessList_allocateCPULoadInfo(&dpl->curr_load);
|
|
|
|
ProcessList_getVMStats(&dpl->vm_stats);
|
|
|
|
openzfs_sysctl_updateArcStats(&dpl->zfs);
|
|
|
|
|
|
|
|
// in pause mode only gather global data for meters (CPU/memory/...)
|
|
|
|
if (pauseProcessUpdate) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the time difference */
|
|
|
|
dpl->global_diff = 0;
|
|
|
|
for (int i = 0; i < dpl->super.cpuCount; ++i) {
|
|
|
|
for (size_t j = 0; j < CPU_STATE_MAX; ++j) {
|
|
|
|
dpl->global_diff += dpl->curr_load[i].cpu_ticks[j] - dpl->prev_load[i].cpu_ticks[j];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-09 04:12:44 +00:00
|
|
|
const double time_interval = ticksToNanoseconds(dpl->global_diff) / (double) dpl->super.cpuCount;
|
|
|
|
|
2020-10-31 21:14:27 +00:00
|
|
|
/* Clear the thread counts */
|
|
|
|
super->kernelThreads = 0;
|
|
|
|
super->userlandThreads = 0;
|
|
|
|
super->totalTasks = 0;
|
|
|
|
super->runningTasks = 0;
|
|
|
|
|
|
|
|
/* We use kinfo_procs for initial data since :
|
|
|
|
*
|
|
|
|
* 1) They always succeed.
|
|
|
|
* 2) The contain the basic information.
|
|
|
|
*
|
|
|
|
* We attempt to fill-in additional information with libproc.
|
|
|
|
*/
|
|
|
|
ps = ProcessList_getKInfoProcs(&count);
|
|
|
|
|
|
|
|
for (size_t i = 0; i < count; ++i) {
|
|
|
|
proc = (DarwinProcess*)ProcessList_getProcess(super, ps[i].kp_proc.p_pid, &preExisting, DarwinProcess_new);
|
|
|
|
|
|
|
|
DarwinProcess_setFromKInfoProc(&proc->super, &ps[i], preExisting);
|
2020-12-09 04:12:44 +00:00
|
|
|
DarwinProcess_setFromLibprocPidinfo(proc, dpl, time_interval);
|
2020-10-31 21:14:27 +00:00
|
|
|
|
|
|
|
// Disabled for High Sierra due to bug in macOS High Sierra
|
|
|
|
bool isScanThreadSupported = ! ( CompareKernelVersion(17, 0, 0) >= 0 && CompareKernelVersion(17, 5, 0) < 0);
|
|
|
|
|
|
|
|
if (isScanThreadSupported) {
|
|
|
|
DarwinProcess_scanThreads(proc);
|
|
|
|
}
|
|
|
|
|
|
|
|
super->totalTasks += 1;
|
|
|
|
|
|
|
|
if (!preExisting) {
|
|
|
|
proc->super.user = UsersTable_getRef(super->usersTable, proc->super.st_uid);
|
|
|
|
|
|
|
|
ProcessList_add(super, &proc->super);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
free(ps);
|
2015-07-12 18:47:43 +00:00
|
|
|
}
|