2018-03-02 21:20:46 +00:00
|
|
|
/*
|
|
|
|
htop - solaris/Platform.c
|
|
|
|
(C) 2014 Hisham H. Muhammad
|
|
|
|
(C) 2015 David C. Hunt
|
2018-04-03 15:20:50 +00:00
|
|
|
(C) 2017,2018 Guy M. Broome
|
2020-10-05 07:51:32 +00:00
|
|
|
Released under the GNU GPLv2, see the COPYING file
|
2018-03-02 21:20:46 +00:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
2021-04-03 18:49:45 +00:00
|
|
|
#include "solaris/Platform.h"
|
|
|
|
|
|
|
|
#include <kstat.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <utmpx.h>
|
|
|
|
#include <sys/loadavg.h>
|
|
|
|
#include <sys/resource.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/var.h>
|
|
|
|
|
2020-10-03 20:00:27 +00:00
|
|
|
#include "Macros.h"
|
2018-03-02 21:20:46 +00:00
|
|
|
#include "Meter.h"
|
|
|
|
#include "CPUMeter.h"
|
|
|
|
#include "MemoryMeter.h"
|
|
|
|
#include "SwapMeter.h"
|
|
|
|
#include "TasksMeter.h"
|
|
|
|
#include "LoadAverageMeter.h"
|
|
|
|
#include "ClockMeter.h"
|
2020-10-05 11:52:58 +00:00
|
|
|
#include "DateMeter.h"
|
|
|
|
#include "DateTimeMeter.h"
|
2018-03-02 21:20:46 +00:00
|
|
|
#include "HostnameMeter.h"
|
2021-01-27 09:45:48 +00:00
|
|
|
#include "SysArchMeter.h"
|
2018-03-02 21:20:46 +00:00
|
|
|
#include "UptimeMeter.h"
|
2019-07-08 02:43:39 +00:00
|
|
|
#include "zfs/ZfsArcMeter.h"
|
2019-09-03 18:26:02 +00:00
|
|
|
#include "zfs/ZfsCompressedArcMeter.h"
|
2018-03-02 21:20:46 +00:00
|
|
|
#include "SolarisProcess.h"
|
|
|
|
#include "SolarisProcessList.h"
|
|
|
|
|
|
|
|
|
|
|
|
double plat_loadavg[3] = {0};
|
|
|
|
|
|
|
|
const SignalItem Platform_signals[] = {
|
|
|
|
{ .name = " 0 Cancel", .number = 0 },
|
|
|
|
{ .name = " 1 SIGHUP", .number = 1 },
|
|
|
|
{ .name = " 2 SIGINT", .number = 2 },
|
|
|
|
{ .name = " 3 SIGQUIT", .number = 3 },
|
|
|
|
{ .name = " 4 SIGILL", .number = 4 },
|
|
|
|
{ .name = " 5 SIGTRAP", .number = 5 },
|
|
|
|
{ .name = " 6 SIGABRT/IOT", .number = 6 },
|
|
|
|
{ .name = " 7 SIGEMT", .number = 7 },
|
|
|
|
{ .name = " 8 SIGFPE", .number = 8 },
|
|
|
|
{ .name = " 9 SIGKILL", .number = 9 },
|
|
|
|
{ .name = "10 SIGBUS", .number = 10 },
|
|
|
|
{ .name = "11 SIGSEGV", .number = 11 },
|
|
|
|
{ .name = "12 SIGSYS", .number = 12 },
|
|
|
|
{ .name = "13 SIGPIPE", .number = 13 },
|
|
|
|
{ .name = "14 SIGALRM", .number = 14 },
|
|
|
|
{ .name = "15 SIGTERM", .number = 15 },
|
|
|
|
{ .name = "16 SIGUSR1", .number = 16 },
|
|
|
|
{ .name = "17 SIGUSR2", .number = 17 },
|
|
|
|
{ .name = "18 SIGCHLD/CLD", .number = 18 },
|
|
|
|
{ .name = "19 SIGPWR", .number = 19 },
|
|
|
|
{ .name = "20 SIGWINCH", .number = 20 },
|
|
|
|
{ .name = "21 SIGURG", .number = 21 },
|
|
|
|
{ .name = "22 SIGPOLL/IO", .number = 22 },
|
|
|
|
{ .name = "23 SIGSTOP", .number = 23 },
|
|
|
|
{ .name = "24 SIGTSTP", .number = 24 },
|
|
|
|
{ .name = "25 SIGCONT", .number = 25 },
|
|
|
|
{ .name = "26 SIGTTIN", .number = 26 },
|
|
|
|
{ .name = "27 SIGTTOU", .number = 27 },
|
|
|
|
{ .name = "28 SIGVTALRM", .number = 28 },
|
|
|
|
{ .name = "29 SIGPROF", .number = 29 },
|
|
|
|
{ .name = "30 SIGXCPU", .number = 30 },
|
|
|
|
{ .name = "31 SIGXFSZ", .number = 31 },
|
|
|
|
{ .name = "32 SIGWAITING", .number = 32 },
|
|
|
|
{ .name = "33 SIGLWP", .number = 33 },
|
|
|
|
{ .name = "34 SIGFREEZE", .number = 34 },
|
|
|
|
{ .name = "35 SIGTHAW", .number = 35 },
|
|
|
|
{ .name = "36 SIGCANCEL", .number = 36 },
|
|
|
|
{ .name = "37 SIGLOST", .number = 37 },
|
|
|
|
{ .name = "38 SIGXRES", .number = 38 },
|
|
|
|
{ .name = "39 SIGJVM1", .number = 39 },
|
|
|
|
{ .name = "40 SIGJVM2", .number = 40 },
|
|
|
|
{ .name = "41 SIGINFO", .number = 41 },
|
|
|
|
};
|
|
|
|
|
2020-10-03 20:00:27 +00:00
|
|
|
const unsigned int Platform_numberOfSignals = ARRAYSIZE(Platform_signals);
|
2018-03-02 21:20:46 +00:00
|
|
|
|
2020-12-19 17:10:03 +00:00
|
|
|
const ProcessField Platform_defaultFields[] = { PID, LWPID, USER, PRIORITY, NICE, M_VIRT, M_RESIDENT, STATE, PERCENT_CPU, PERCENT_MEM, TIME, COMM, 0 };
|
2018-03-02 21:20:46 +00:00
|
|
|
|
2020-10-05 11:19:50 +00:00
|
|
|
const MeterClass* const Platform_meterTypes[] = {
|
2018-03-02 21:20:46 +00:00
|
|
|
&CPUMeter_class,
|
|
|
|
&ClockMeter_class,
|
2020-10-05 11:52:58 +00:00
|
|
|
&DateMeter_class,
|
|
|
|
&DateTimeMeter_class,
|
2018-03-02 21:20:46 +00:00
|
|
|
&LoadAverageMeter_class,
|
|
|
|
&LoadMeter_class,
|
|
|
|
&MemoryMeter_class,
|
|
|
|
&SwapMeter_class,
|
|
|
|
&TasksMeter_class,
|
|
|
|
&BatteryMeter_class,
|
|
|
|
&HostnameMeter_class,
|
2021-01-27 09:45:48 +00:00
|
|
|
&SysArchMeter_class,
|
2018-03-02 21:20:46 +00:00
|
|
|
&UptimeMeter_class,
|
|
|
|
&AllCPUsMeter_class,
|
|
|
|
&AllCPUs2Meter_class,
|
2020-09-24 19:50:29 +00:00
|
|
|
&AllCPUs4Meter_class,
|
2020-09-24 19:56:40 +00:00
|
|
|
&AllCPUs8Meter_class,
|
2018-03-02 21:20:46 +00:00
|
|
|
&LeftCPUsMeter_class,
|
|
|
|
&RightCPUsMeter_class,
|
|
|
|
&LeftCPUs2Meter_class,
|
|
|
|
&RightCPUs2Meter_class,
|
2020-09-24 19:50:29 +00:00
|
|
|
&LeftCPUs4Meter_class,
|
|
|
|
&RightCPUs4Meter_class,
|
2020-09-24 19:56:40 +00:00
|
|
|
&LeftCPUs8Meter_class,
|
|
|
|
&RightCPUs8Meter_class,
|
2019-07-08 02:43:39 +00:00
|
|
|
&ZfsArcMeter_class,
|
2019-09-03 18:26:02 +00:00
|
|
|
&ZfsCompressedArcMeter_class,
|
2018-03-02 21:20:46 +00:00
|
|
|
&BlankMeter_class,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2020-11-19 01:32:07 +00:00
|
|
|
void Platform_init(void) {
|
|
|
|
/* no platform-specific setup needed */
|
|
|
|
}
|
|
|
|
|
|
|
|
void Platform_done(void) {
|
|
|
|
/* no platform-specific cleanup needed */
|
|
|
|
}
|
|
|
|
|
|
|
|
void Platform_setBindings(Htop_Action* keys) {
|
|
|
|
/* no platform-specific key bindings */
|
|
|
|
(void) keys;
|
|
|
|
}
|
|
|
|
|
2018-03-02 21:20:46 +00:00
|
|
|
int Platform_getUptime() {
|
|
|
|
int boot_time = 0;
|
2019-10-31 16:39:12 +00:00
|
|
|
int curr_time = time(NULL);
|
2020-10-31 22:28:02 +00:00
|
|
|
struct utmpx* ent;
|
2018-03-02 21:20:46 +00:00
|
|
|
|
|
|
|
while (( ent = getutxent() )) {
|
2021-01-27 14:12:06 +00:00
|
|
|
if ( String_eq("system boot", ent->ut_line )) {
|
2018-03-02 21:20:46 +00:00
|
|
|
boot_time = ent->ut_tv.tv_sec;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
endutxent();
|
|
|
|
|
2020-10-31 22:28:02 +00:00
|
|
|
return (curr_time - boot_time);
|
2018-03-02 21:20:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Platform_getLoadAverage(double* one, double* five, double* fifteen) {
|
|
|
|
getloadavg( plat_loadavg, 3 );
|
|
|
|
*one = plat_loadavg[LOADAVG_1MIN];
|
|
|
|
*five = plat_loadavg[LOADAVG_5MIN];
|
|
|
|
*fifteen = plat_loadavg[LOADAVG_15MIN];
|
|
|
|
}
|
|
|
|
|
|
|
|
int Platform_getMaxPid() {
|
|
|
|
int vproc = 32778; // Reasonable Solaris default
|
2020-11-21 23:47:00 +00:00
|
|
|
|
|
|
|
kstat_ctl_t* kc = kstat_open();
|
2020-11-01 00:09:51 +00:00
|
|
|
if (kc != NULL) {
|
2020-11-21 23:47:00 +00:00
|
|
|
kstat_t* kshandle = kstat_lookup(kc, "unix", 0, "var");
|
|
|
|
if (kshandle != NULL) {
|
|
|
|
kstat_read(kc, kshandle, NULL);
|
|
|
|
|
|
|
|
kvar_t* ksvar = kshandle->ks_data;
|
|
|
|
if (ksvar && ksvar->v_proc > 0) {
|
|
|
|
vproc = ksvar->v_proc;
|
|
|
|
}
|
|
|
|
}
|
2020-11-01 00:09:51 +00:00
|
|
|
kstat_close(kc);
|
|
|
|
}
|
2020-11-21 23:47:00 +00:00
|
|
|
|
2019-10-31 16:39:12 +00:00
|
|
|
return vproc;
|
2018-03-02 21:20:46 +00:00
|
|
|
}
|
|
|
|
|
2021-02-17 16:38:35 +00:00
|
|
|
double Platform_setCPUValues(Meter* this, unsigned int cpu) {
|
2020-10-21 19:25:50 +00:00
|
|
|
const SolarisProcessList* spl = (const SolarisProcessList*) this->pl;
|
2021-02-17 16:38:35 +00:00
|
|
|
unsigned int cpus = this->pl->cpuCount;
|
2020-10-21 19:25:50 +00:00
|
|
|
const CPUData* cpuData = NULL;
|
2018-03-02 21:20:46 +00:00
|
|
|
|
|
|
|
if (cpus == 1) {
|
2020-10-31 21:14:27 +00:00
|
|
|
// single CPU box has everything in spl->cpus[0]
|
|
|
|
cpuData = &(spl->cpus[0]);
|
2018-03-02 21:20:46 +00:00
|
|
|
} else {
|
2020-10-31 21:14:27 +00:00
|
|
|
cpuData = &(spl->cpus[cpu]);
|
2018-03-02 21:20:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
double percent;
|
|
|
|
double* v = this->values;
|
|
|
|
|
|
|
|
v[CPU_METER_NICE] = cpuData->nicePercent;
|
|
|
|
v[CPU_METER_NORMAL] = cpuData->userPercent;
|
|
|
|
if (this->pl->settings->detailedCPUTime) {
|
|
|
|
v[CPU_METER_KERNEL] = cpuData->systemPercent;
|
|
|
|
v[CPU_METER_IRQ] = cpuData->irqPercent;
|
2020-10-04 15:55:08 +00:00
|
|
|
this->curItems = 4;
|
2020-10-31 22:28:02 +00:00
|
|
|
percent = v[0] + v[1] + v[2] + v[3];
|
2018-03-02 21:20:46 +00:00
|
|
|
} else {
|
|
|
|
v[2] = cpuData->systemAllPercent;
|
2020-10-04 15:55:08 +00:00
|
|
|
this->curItems = 3;
|
2020-10-31 22:28:02 +00:00
|
|
|
percent = v[0] + v[1] + v[2];
|
2018-03-02 21:20:46 +00:00
|
|
|
}
|
|
|
|
|
2020-11-02 20:36:20 +00:00
|
|
|
percent = isnan(percent) ? 0.0 : CLAMP(percent, 0.0, 100.0);
|
2019-08-11 00:17:45 +00:00
|
|
|
|
2020-12-24 13:01:23 +00:00
|
|
|
v[CPU_METER_FREQUENCY] = cpuData->frequency;
|
2020-09-10 17:56:33 +00:00
|
|
|
v[CPU_METER_TEMPERATURE] = NAN;
|
2019-08-11 00:17:45 +00:00
|
|
|
|
2018-03-02 21:20:46 +00:00
|
|
|
return percent;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Platform_setMemoryValues(Meter* this) {
|
2020-10-21 19:25:50 +00:00
|
|
|
const ProcessList* pl = this->pl;
|
2018-03-02 21:20:46 +00:00
|
|
|
this->total = pl->totalMem;
|
|
|
|
this->values[0] = pl->usedMem;
|
|
|
|
this->values[1] = pl->buffersMem;
|
2021-03-17 15:32:16 +00:00
|
|
|
// this->values[2] = "shared memory, like tmpfs and shm"
|
|
|
|
this->values[3] = pl->cachedMem;
|
|
|
|
// this->values[4] = "available memory"
|
2018-03-02 21:20:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Platform_setSwapValues(Meter* this) {
|
2020-10-21 19:25:50 +00:00
|
|
|
const ProcessList* pl = this->pl;
|
2018-03-02 21:20:46 +00:00
|
|
|
this->total = pl->totalSwap;
|
|
|
|
this->values[0] = pl->usedSwap;
|
2021-01-07 13:38:18 +00:00
|
|
|
this->values[1] = NAN;
|
2018-03-02 21:20:46 +00:00
|
|
|
}
|
|
|
|
|
2019-07-08 02:43:39 +00:00
|
|
|
void Platform_setZfsArcValues(Meter* this) {
|
2020-10-21 19:25:50 +00:00
|
|
|
const SolarisProcessList* spl = (const SolarisProcessList*) this->pl;
|
2019-07-08 02:43:39 +00:00
|
|
|
|
2019-09-03 18:21:33 +00:00
|
|
|
ZfsArcMeter_readStats(this, &(spl->zfs));
|
2019-07-08 02:43:39 +00:00
|
|
|
}
|
|
|
|
|
2019-09-03 18:26:02 +00:00
|
|
|
void Platform_setZfsCompressedArcValues(Meter* this) {
|
2020-10-21 19:25:50 +00:00
|
|
|
const SolarisProcessList* spl = (const SolarisProcessList*) this->pl;
|
2019-09-03 18:26:02 +00:00
|
|
|
|
|
|
|
ZfsCompressedArcMeter_readStats(this, &(spl->zfs));
|
|
|
|
}
|
|
|
|
|
2020-10-31 22:28:02 +00:00
|
|
|
static int Platform_buildenv(void* accum, struct ps_prochandle* Phandle, uintptr_t addr, const char* str) {
|
|
|
|
envAccum* accump = accum;
|
2018-03-29 17:28:43 +00:00
|
|
|
(void) Phandle;
|
2019-10-31 16:39:12 +00:00
|
|
|
(void) addr;
|
2018-03-29 17:28:43 +00:00
|
|
|
size_t thissz = strlen(str);
|
2020-11-01 00:09:51 +00:00
|
|
|
if ((thissz + 2) > (accump->capacity - accump->size)) {
|
2018-03-29 17:28:43 +00:00
|
|
|
accump->env = xRealloc(accump->env, accump->capacity *= 2);
|
2020-11-01 00:09:51 +00:00
|
|
|
}
|
|
|
|
if ((thissz + 2) > (accump->capacity - accump->size)) {
|
2018-03-29 17:28:43 +00:00
|
|
|
return 1;
|
2020-11-01 00:09:51 +00:00
|
|
|
}
|
2018-03-29 17:28:43 +00:00
|
|
|
strlcpy( accump->env + accump->size, str, (accump->capacity - accump->size));
|
|
|
|
strncpy( accump->env + accump->size + thissz + 1, "\n", 1);
|
|
|
|
accump->size = accump->size + thissz + 1;
|
2019-10-31 16:39:12 +00:00
|
|
|
return 0;
|
2018-03-29 17:28:43 +00:00
|
|
|
}
|
|
|
|
|
2018-03-02 21:20:46 +00:00
|
|
|
char* Platform_getProcessEnv(pid_t pid) {
|
2018-03-29 17:28:43 +00:00
|
|
|
envAccum envBuilder;
|
|
|
|
pid_t realpid = pid / 1024;
|
|
|
|
int graberr;
|
2020-10-31 22:28:02 +00:00
|
|
|
struct ps_prochandle* Phandle;
|
2019-10-31 16:39:12 +00:00
|
|
|
|
2020-11-01 00:09:51 +00:00
|
|
|
if ((Phandle = Pgrab(realpid, PGRAB_RDONLY, &graberr)) == NULL) {
|
2018-03-29 17:28:43 +00:00
|
|
|
return "Unable to read process environment.";
|
2020-11-01 00:09:51 +00:00
|
|
|
}
|
2018-03-29 17:28:43 +00:00
|
|
|
|
|
|
|
envBuilder.capacity = 4096;
|
|
|
|
envBuilder.size = 0;
|
|
|
|
envBuilder.env = xMalloc(envBuilder.capacity);
|
|
|
|
|
2020-10-31 22:28:02 +00:00
|
|
|
(void) Penv_iter(Phandle, Platform_buildenv, &envBuilder);
|
2018-03-29 17:28:43 +00:00
|
|
|
|
|
|
|
Prelease(Phandle, 0);
|
|
|
|
|
|
|
|
strncpy( envBuilder.env + envBuilder.size, "\0", 1);
|
|
|
|
return envBuilder.env;
|
2018-03-02 21:20:46 +00:00
|
|
|
}
|
2020-09-13 17:46:34 +00:00
|
|
|
|
2020-11-11 21:15:35 +00:00
|
|
|
char* Platform_getInodeFilename(pid_t pid, ino_t inode) {
|
|
|
|
(void)pid;
|
|
|
|
(void)inode;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
FileLocks_ProcessData* Platform_getProcessLocks(pid_t pid) {
|
|
|
|
(void)pid;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-10-21 15:06:32 +00:00
|
|
|
bool Platform_getDiskIO(DiskIOData* data) {
|
2020-09-13 17:46:34 +00:00
|
|
|
// TODO
|
2020-10-21 15:06:32 +00:00
|
|
|
(void)data;
|
2020-10-20 19:40:51 +00:00
|
|
|
return false;
|
2020-09-13 17:46:34 +00:00
|
|
|
}
|
2020-10-08 14:34:54 +00:00
|
|
|
|
2021-03-01 00:55:15 +00:00
|
|
|
bool Platform_getNetworkIO(NetworkIOData* data) {
|
2020-10-08 14:34:54 +00:00
|
|
|
// TODO
|
2021-03-01 00:55:15 +00:00
|
|
|
(void)data;
|
2020-10-20 19:40:51 +00:00
|
|
|
return false;
|
2020-10-08 14:34:54 +00:00
|
|
|
}
|
2020-11-17 07:12:38 +00:00
|
|
|
|
2020-11-25 11:46:00 +00:00
|
|
|
void Platform_getBattery(double* percent, ACPresence* isOnAC) {
|
|
|
|
*percent = NAN;
|
2020-11-17 07:12:38 +00:00
|
|
|
*isOnAC = AC_ERROR;
|
|
|
|
}
|