2018-03-02 21:20:46 +00:00
|
|
|
/*
|
|
|
|
htop - SolarisProcessList.c
|
|
|
|
(C) 2014 Hisham H. Muhammad
|
2018-03-05 21:52:03 +00:00
|
|
|
(C) 2017,2018 Guy M. Broome
|
2018-03-02 21:20:46 +00:00
|
|
|
Released under the GNU GPL, see the COPYING file
|
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ProcessList.h"
|
|
|
|
#include "SolarisProcess.h"
|
2018-03-05 21:27:27 +00:00
|
|
|
#include "SolarisProcessList.h"
|
2018-03-02 21:20:46 +00:00
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/user.h>
|
|
|
|
#include <err.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <procfs.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <pwd.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#define MAXCMDLINE 255
|
|
|
|
|
2018-03-05 21:27:27 +00:00
|
|
|
char* SolarisProcessList_readZoneName(kstat_ctl_t* kd, SolarisProcess* sproc) {
|
|
|
|
char* zname;
|
2018-03-02 21:20:46 +00:00
|
|
|
if ( sproc->zoneid == 0 ) {
|
2019-05-26 19:20:35 +00:00
|
|
|
zname = xStrdup(GZONE);
|
2018-03-02 21:20:46 +00:00
|
|
|
} else if ( kd == NULL ) {
|
2019-05-26 19:20:35 +00:00
|
|
|
zname = xStrdup(UZONE);
|
2018-03-02 21:20:46 +00:00
|
|
|
} else {
|
|
|
|
kstat_t* ks = kstat_lookup( kd, "zones", sproc->zoneid, NULL );
|
2019-05-26 19:20:35 +00:00
|
|
|
zname = xStrdup(ks == NULL ? UZONE : ks->ks_name);
|
2018-03-02 21:20:46 +00:00
|
|
|
}
|
2018-03-05 21:27:27 +00:00
|
|
|
return zname;
|
2018-03-02 21:20:46 +00:00
|
|
|
}
|
|
|
|
|
2020-09-09 09:38:15 +00:00
|
|
|
ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* pidMatchList, uid_t userId) {
|
2018-03-02 21:20:46 +00:00
|
|
|
SolarisProcessList* spl = xCalloc(1, sizeof(SolarisProcessList));
|
|
|
|
ProcessList* pl = (ProcessList*) spl;
|
2020-09-09 09:38:15 +00:00
|
|
|
ProcessList_init(pl, Class(SolarisProcess), usersTable, pidMatchList, userId);
|
2018-03-02 21:20:46 +00:00
|
|
|
|
|
|
|
spl->kd = kstat_open();
|
|
|
|
|
|
|
|
pl->cpuCount = sysconf(_SC_NPROCESSORS_ONLN);
|
|
|
|
|
|
|
|
if (pl->cpuCount == 1 ) {
|
|
|
|
spl->cpus = xRealloc(spl->cpus, sizeof(CPUData));
|
|
|
|
} else {
|
|
|
|
spl->cpus = xRealloc(spl->cpus, (pl->cpuCount + 1) * sizeof(CPUData));
|
|
|
|
}
|
|
|
|
|
|
|
|
return pl;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void SolarisProcessList_scanCPUTime(ProcessList* pl) {
|
|
|
|
const SolarisProcessList* spl = (SolarisProcessList*) pl;
|
|
|
|
int cpus = pl->cpuCount;
|
|
|
|
kstat_t *cpuinfo = NULL;
|
|
|
|
int kchain = 0;
|
|
|
|
kstat_named_t *idletime = NULL;
|
|
|
|
kstat_named_t *intrtime = NULL;
|
|
|
|
kstat_named_t *krnltime = NULL;
|
|
|
|
kstat_named_t *usertime = NULL;
|
|
|
|
double idlebuf = 0;
|
|
|
|
double intrbuf = 0;
|
|
|
|
double krnlbuf = 0;
|
|
|
|
double userbuf = 0;
|
|
|
|
uint64_t totaltime = 0;
|
|
|
|
int arrskip = 0;
|
|
|
|
|
|
|
|
assert(cpus > 0);
|
|
|
|
|
|
|
|
if (cpus > 1) {
|
|
|
|
// Store values for the stats loop one extra element up in the array
|
|
|
|
// to leave room for the average to be calculated afterwards
|
|
|
|
arrskip++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Calculate per-CPU statistics first
|
|
|
|
for (int i = 0; i < cpus; i++) {
|
|
|
|
if (spl->kd != NULL) { cpuinfo = kstat_lookup(spl->kd,"cpu",i,"sys"); }
|
|
|
|
if (cpuinfo != NULL) { kchain = kstat_read(spl->kd,cpuinfo,NULL); }
|
|
|
|
if (kchain != -1 ) {
|
|
|
|
idletime = kstat_data_lookup(cpuinfo,"cpu_nsec_idle");
|
|
|
|
intrtime = kstat_data_lookup(cpuinfo,"cpu_nsec_intr");
|
|
|
|
krnltime = kstat_data_lookup(cpuinfo,"cpu_nsec_kernel");
|
|
|
|
usertime = kstat_data_lookup(cpuinfo,"cpu_nsec_user");
|
|
|
|
}
|
|
|
|
|
|
|
|
assert( (idletime != NULL) && (intrtime != NULL)
|
|
|
|
&& (krnltime != NULL) && (usertime != NULL) );
|
|
|
|
|
|
|
|
CPUData* cpuData = &(spl->cpus[i+arrskip]);
|
|
|
|
totaltime = (idletime->value.ui64 - cpuData->lidle)
|
|
|
|
+ (intrtime->value.ui64 - cpuData->lintr)
|
|
|
|
+ (krnltime->value.ui64 - cpuData->lkrnl)
|
|
|
|
+ (usertime->value.ui64 - cpuData->luser);
|
|
|
|
// Calculate percentages of deltas since last reading
|
|
|
|
cpuData->userPercent = ((usertime->value.ui64 - cpuData->luser) / (double)totaltime) * 100.0;
|
|
|
|
cpuData->nicePercent = (double)0.0; // Not implemented on Solaris
|
|
|
|
cpuData->systemPercent = ((krnltime->value.ui64 - cpuData->lkrnl) / (double)totaltime) * 100.0;
|
|
|
|
cpuData->irqPercent = ((intrtime->value.ui64 - cpuData->lintr) / (double)totaltime) * 100.0;
|
|
|
|
cpuData->systemAllPercent = cpuData->systemPercent + cpuData->irqPercent;
|
|
|
|
cpuData->idlePercent = ((idletime->value.ui64 - cpuData->lidle) / (double)totaltime) * 100.0;
|
|
|
|
// Store current values to use for the next round of deltas
|
|
|
|
cpuData->luser = usertime->value.ui64;
|
|
|
|
cpuData->lkrnl = krnltime->value.ui64;
|
|
|
|
cpuData->lintr = intrtime->value.ui64;
|
|
|
|
cpuData->lidle = idletime->value.ui64;
|
|
|
|
// Accumulate the current percentages into buffers for later average calculation
|
|
|
|
if (cpus > 1) {
|
|
|
|
userbuf += cpuData->userPercent;
|
|
|
|
krnlbuf += cpuData->systemPercent;
|
|
|
|
intrbuf += cpuData->irqPercent;
|
|
|
|
idlebuf += cpuData->idlePercent;
|
|
|
|
}
|
|
|
|
}
|
2019-10-31 16:39:12 +00:00
|
|
|
|
2018-03-02 21:20:46 +00:00
|
|
|
if (cpus > 1) {
|
|
|
|
CPUData* cpuData = &(spl->cpus[0]);
|
|
|
|
cpuData->userPercent = userbuf / cpus;
|
|
|
|
cpuData->nicePercent = (double)0.0; // Not implemented on Solaris
|
|
|
|
cpuData->systemPercent = krnlbuf / cpus;
|
|
|
|
cpuData->irqPercent = intrbuf / cpus;
|
|
|
|
cpuData->systemAllPercent = cpuData->systemPercent + cpuData->irqPercent;
|
|
|
|
cpuData->idlePercent = idlebuf / cpus;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void SolarisProcessList_scanMemoryInfo(ProcessList* pl) {
|
|
|
|
SolarisProcessList* spl = (SolarisProcessList*) pl;
|
2020-09-18 19:37:00 +00:00
|
|
|
static kstat_t *meminfo = NULL;
|
2018-03-27 20:18:29 +00:00
|
|
|
int ksrphyserr = -1;
|
2018-03-02 21:20:46 +00:00
|
|
|
kstat_named_t *totalmem_pgs = NULL;
|
2020-09-18 19:37:00 +00:00
|
|
|
kstat_named_t *freemem_pgs = NULL;
|
2018-03-02 21:20:46 +00:00
|
|
|
kstat_named_t *pages = NULL;
|
|
|
|
struct swaptable *sl = NULL;
|
|
|
|
struct swapent *swapdev = NULL;
|
|
|
|
uint64_t totalswap = 0;
|
|
|
|
uint64_t totalfree = 0;
|
|
|
|
int nswap = 0;
|
2019-10-31 16:39:12 +00:00
|
|
|
char *spath = NULL;
|
2018-03-30 18:34:12 +00:00
|
|
|
char *spathbase = NULL;
|
2018-03-02 21:20:46 +00:00
|
|
|
|
|
|
|
// Part 1 - physical memory
|
2020-09-18 19:37:00 +00:00
|
|
|
if (spl->kd != NULL && meminfo == NULL) {
|
|
|
|
// Look up the kstat chain just one, it never changes
|
|
|
|
meminfo = kstat_lookup(spl->kd,"unix",0,"system_pages");
|
|
|
|
}
|
2018-03-02 21:20:46 +00:00
|
|
|
if (meminfo != NULL) { ksrphyserr = kstat_read(spl->kd,meminfo,NULL); }
|
|
|
|
if (ksrphyserr != -1) {
|
2020-09-18 19:37:00 +00:00
|
|
|
totalmem_pgs = kstat_data_lookup(meminfo, "physmem");
|
|
|
|
freemem_pgs = kstat_data_lookup(meminfo, "freemem");
|
|
|
|
pages = kstat_data_lookup(meminfo, "pagestotal");
|
2018-03-02 21:20:46 +00:00
|
|
|
|
2018-03-27 20:18:29 +00:00
|
|
|
pl->totalMem = totalmem_pgs->value.ui64 * PAGE_SIZE_KB;
|
2020-09-18 19:37:00 +00:00
|
|
|
if (pl->totalMem > freemem_pgs->value.ui64 * PAGE_SIZE_KB)
|
|
|
|
pl->usedMem = pl->totalMem - freemem_pgs->value.ui64 * PAGE_SIZE_KB;
|
|
|
|
else
|
|
|
|
pl->usedMem = 0; // This can happen in non-global zone (in theory)
|
2018-03-02 21:20:46 +00:00
|
|
|
// Not sure how to implement this on Solaris - suggestions welcome!
|
2019-10-31 16:39:12 +00:00
|
|
|
pl->cachedMem = 0;
|
2018-03-02 21:20:46 +00:00
|
|
|
// Not really "buffers" but the best Solaris analogue that I can find to
|
|
|
|
// "memory in use but not by programs or the kernel itself"
|
2018-03-27 20:18:29 +00:00
|
|
|
pl->buffersMem = (totalmem_pgs->value.ui64 - pages->value.ui64) * PAGE_SIZE_KB;
|
2018-03-30 18:34:12 +00:00
|
|
|
} else {
|
2018-03-02 21:20:46 +00:00
|
|
|
// Fall back to basic sysconf if kstat isn't working
|
2018-03-27 20:18:29 +00:00
|
|
|
pl->totalMem = sysconf(_SC_PHYS_PAGES) * PAGE_SIZE;
|
2018-03-02 21:20:46 +00:00
|
|
|
pl->buffersMem = 0;
|
|
|
|
pl->cachedMem = 0;
|
2018-03-27 20:18:29 +00:00
|
|
|
pl->usedMem = pl->totalMem - (sysconf(_SC_AVPHYS_PAGES) * PAGE_SIZE);
|
2018-03-02 21:20:46 +00:00
|
|
|
}
|
2019-10-31 16:39:12 +00:00
|
|
|
|
2018-03-02 21:20:46 +00:00
|
|
|
// Part 2 - swap
|
|
|
|
nswap = swapctl(SC_GETNSWP, NULL);
|
2018-03-30 18:34:12 +00:00
|
|
|
if (nswap > 0) { sl = xMalloc((nswap * sizeof(swapent_t)) + sizeof(int)); }
|
|
|
|
if (sl != NULL) { spathbase = xMalloc( nswap * MAXPATHLEN ); }
|
2019-10-31 16:39:12 +00:00
|
|
|
if (spathbase != NULL) {
|
2018-03-30 18:34:12 +00:00
|
|
|
spath = spathbase;
|
2018-03-02 21:20:46 +00:00
|
|
|
swapdev = sl->swt_ent;
|
|
|
|
for (int i = 0; i < nswap; i++, swapdev++) {
|
|
|
|
swapdev->ste_path = spath;
|
|
|
|
spath += MAXPATHLEN;
|
|
|
|
}
|
|
|
|
sl->swt_n = nswap;
|
|
|
|
}
|
|
|
|
nswap = swapctl(SC_LIST, sl);
|
2019-10-31 16:39:12 +00:00
|
|
|
if (nswap > 0) {
|
2018-03-02 21:20:46 +00:00
|
|
|
swapdev = sl->swt_ent;
|
|
|
|
for (int i = 0; i < nswap; i++, swapdev++) {
|
|
|
|
totalswap += swapdev->ste_pages;
|
|
|
|
totalfree += swapdev->ste_free;
|
|
|
|
}
|
|
|
|
}
|
2018-03-30 18:34:12 +00:00
|
|
|
free(spathbase);
|
|
|
|
free(sl);
|
2018-03-27 20:18:29 +00:00
|
|
|
pl->totalSwap = totalswap * PAGE_SIZE_KB;
|
2019-10-31 16:39:12 +00:00
|
|
|
pl->usedSwap = pl->totalSwap - (totalfree * PAGE_SIZE_KB);
|
2018-03-02 21:20:46 +00:00
|
|
|
}
|
|
|
|
|
2019-07-08 02:43:39 +00:00
|
|
|
static inline void SolarisProcessList_scanZfsArcstats(ProcessList* pl) {
|
|
|
|
SolarisProcessList* spl = (SolarisProcessList*) pl;
|
|
|
|
kstat_t *arcstats = NULL;
|
|
|
|
int ksrphyserr = -1;
|
|
|
|
kstat_named_t *cur_kstat = NULL;
|
|
|
|
|
2020-09-18 19:13:51 +00:00
|
|
|
if (spl->kd != NULL) { arcstats = kstat_lookup(spl->kd, "zfs", 0, "arcstats"); }
|
|
|
|
if (arcstats != NULL) { ksrphyserr = kstat_read(spl->kd, arcstats, NULL); }
|
2019-07-08 02:43:39 +00:00
|
|
|
if (ksrphyserr != -1) {
|
|
|
|
cur_kstat = kstat_data_lookup( arcstats, "size" );
|
|
|
|
spl->zfs.size = cur_kstat->value.ui64 / 1024;
|
|
|
|
spl->zfs.enabled = spl->zfs.size > 0 ? 1 : 0;
|
|
|
|
|
|
|
|
cur_kstat = kstat_data_lookup( arcstats, "c_max" );
|
|
|
|
spl->zfs.max = cur_kstat->value.ui64 / 1024;
|
|
|
|
|
|
|
|
cur_kstat = kstat_data_lookup( arcstats, "mfu_size" );
|
2020-09-18 19:13:51 +00:00
|
|
|
spl->zfs.MFU = cur_kstat != NULL ? cur_kstat->value.ui64 / 1024 : 0;
|
2019-07-08 02:43:39 +00:00
|
|
|
|
|
|
|
cur_kstat = kstat_data_lookup( arcstats, "mru_size" );
|
2020-09-18 19:13:51 +00:00
|
|
|
spl->zfs.MRU = cur_kstat != NULL ? cur_kstat->value.ui64 / 1024 : 0;
|
2019-07-08 02:43:39 +00:00
|
|
|
|
|
|
|
cur_kstat = kstat_data_lookup( arcstats, "anon_size" );
|
2020-09-18 19:13:51 +00:00
|
|
|
spl->zfs.anon = cur_kstat != NULL ? cur_kstat->value.ui64 / 1024 : 0;
|
2019-07-08 02:43:39 +00:00
|
|
|
|
|
|
|
cur_kstat = kstat_data_lookup( arcstats, "hdr_size" );
|
2020-09-18 19:13:51 +00:00
|
|
|
spl->zfs.header = cur_kstat != NULL ? cur_kstat->value.ui64 / 1024 : 0;
|
2019-07-08 02:43:39 +00:00
|
|
|
|
|
|
|
cur_kstat = kstat_data_lookup( arcstats, "other_size" );
|
2020-09-18 19:13:51 +00:00
|
|
|
spl->zfs.other = cur_kstat != NULL ? cur_kstat->value.ui64 / 1024 : 0;
|
2019-09-03 18:26:02 +00:00
|
|
|
|
|
|
|
if ((cur_kstat = kstat_data_lookup( arcstats, "compressed_size" )) != NULL) {
|
|
|
|
spl->zfs.compressed = cur_kstat->value.ui64 / 1024;
|
|
|
|
spl->zfs.isCompressed = 1;
|
|
|
|
|
|
|
|
cur_kstat = kstat_data_lookup( arcstats, "uncompressed_size" );
|
|
|
|
spl->zfs.uncompressed = cur_kstat->value.ui64 / 1024;
|
|
|
|
} else {
|
|
|
|
spl->zfs.isCompressed = 0;
|
|
|
|
}
|
2019-07-08 02:43:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-30 18:34:12 +00:00
|
|
|
void ProcessList_delete(ProcessList* pl) {
|
|
|
|
SolarisProcessList* spl = (SolarisProcessList*) pl;
|
|
|
|
ProcessList_done(pl);
|
2018-03-02 21:20:46 +00:00
|
|
|
free(spl->cpus);
|
2018-03-30 18:34:12 +00:00
|
|
|
if (spl->kd) kstat_close(spl->kd);
|
|
|
|
free(spl);
|
2018-03-02 21:20:46 +00:00
|
|
|
}
|
|
|
|
|
2018-03-28 20:04:49 +00:00
|
|
|
/* NOTE: the following is a callback function of type proc_walk_f
|
|
|
|
* and MUST conform to the appropriate definition in order
|
|
|
|
* to work. See libproc(3LIB) on a Solaris or Illumos
|
|
|
|
* system for more info.
|
2019-10-31 16:39:12 +00:00
|
|
|
*/
|
2018-03-28 20:04:49 +00:00
|
|
|
|
2018-03-28 19:54:36 +00:00
|
|
|
int SolarisProcessList_walkproc(psinfo_t *_psinfo, lwpsinfo_t *_lwpsinfo, void *listptr) {
|
|
|
|
struct timeval tv;
|
2018-03-27 16:27:12 +00:00
|
|
|
struct tm date;
|
2018-03-28 19:54:36 +00:00
|
|
|
bool preExisting;
|
2018-03-30 18:34:12 +00:00
|
|
|
pid_t getpid;
|
2018-03-27 21:22:07 +00:00
|
|
|
|
2018-03-28 19:54:36 +00:00
|
|
|
// Setup process list
|
|
|
|
ProcessList *pl = (ProcessList*) listptr;
|
|
|
|
SolarisProcessList *spl = (SolarisProcessList*) listptr;
|
|
|
|
|
|
|
|
id_t lwpid_real = _lwpsinfo->pr_lwpid;
|
|
|
|
if (lwpid_real > 1023) return 0;
|
2018-03-30 18:34:12 +00:00
|
|
|
pid_t lwpid = (_psinfo->pr_pid * 1024) + lwpid_real;
|
2018-03-28 19:54:36 +00:00
|
|
|
bool onMasterLWP = (_lwpsinfo->pr_lwpid == _psinfo->pr_lwp.pr_lwpid);
|
|
|
|
if (onMasterLWP) {
|
2018-03-30 18:34:12 +00:00
|
|
|
getpid = _psinfo->pr_pid * 1024;
|
2018-03-28 19:54:36 +00:00
|
|
|
} else {
|
2018-03-30 18:34:12 +00:00
|
|
|
getpid = lwpid;
|
2019-10-31 16:39:12 +00:00
|
|
|
}
|
2018-03-30 18:34:12 +00:00
|
|
|
Process *proc = ProcessList_getProcess(pl, getpid, &preExisting, (Process_New) SolarisProcess_new);
|
|
|
|
SolarisProcess *sproc = (SolarisProcess*) proc;
|
2018-03-27 21:22:07 +00:00
|
|
|
|
2018-03-28 19:54:36 +00:00
|
|
|
gettimeofday(&tv, NULL);
|
|
|
|
|
|
|
|
// Common code pass 1
|
2018-03-30 18:34:12 +00:00
|
|
|
proc->show = false;
|
|
|
|
sproc->taskid = _psinfo->pr_taskid;
|
|
|
|
sproc->projid = _psinfo->pr_projid;
|
|
|
|
sproc->poolid = _psinfo->pr_poolid;
|
|
|
|
sproc->contid = _psinfo->pr_contract;
|
|
|
|
proc->priority = _lwpsinfo->pr_pri;
|
2020-09-05 05:29:15 +00:00
|
|
|
proc->nice = _lwpsinfo->pr_nice - NZERO;
|
2018-03-30 18:34:12 +00:00
|
|
|
proc->processor = _lwpsinfo->pr_onpro;
|
|
|
|
proc->state = _lwpsinfo->pr_sname;
|
2018-03-28 19:54:36 +00:00
|
|
|
// NOTE: This 'percentage' is a 16-bit BINARY FRACTIONS where 1.0 = 0x8000
|
|
|
|
// Source: https://docs.oracle.com/cd/E19253-01/816-5174/proc-4/index.html
|
|
|
|
// (accessed on 18 November 2017)
|
2018-03-30 18:34:12 +00:00
|
|
|
proc->percent_mem = ((uint16_t)_psinfo->pr_pctmem/(double)32768)*(double)100.0;
|
|
|
|
proc->st_uid = _psinfo->pr_euid;
|
|
|
|
proc->pgrp = _psinfo->pr_pgid;
|
|
|
|
proc->nlwp = _psinfo->pr_nlwp;
|
|
|
|
proc->tty_nr = _psinfo->pr_ttydev;
|
|
|
|
proc->m_resident = _psinfo->pr_rssize/PAGE_SIZE_KB;
|
|
|
|
proc->m_size = _psinfo->pr_size/PAGE_SIZE_KB;
|
2018-03-27 21:22:07 +00:00
|
|
|
|
2018-03-28 19:54:36 +00:00
|
|
|
if (!preExisting) {
|
2018-03-30 18:34:12 +00:00
|
|
|
sproc->realpid = _psinfo->pr_pid;
|
|
|
|
sproc->lwpid = lwpid_real;
|
|
|
|
sproc->zoneid = _psinfo->pr_zoneid;
|
2019-10-31 16:39:12 +00:00
|
|
|
sproc->zname = SolarisProcessList_readZoneName(spl->kd,sproc);
|
2018-03-30 18:34:12 +00:00
|
|
|
proc->user = UsersTable_getRef(pl->usersTable, proc->st_uid);
|
|
|
|
proc->comm = xStrdup(_psinfo->pr_fname);
|
|
|
|
proc->commLen = strnlen(_psinfo->pr_fname,PRFNSZ);
|
2018-03-28 19:54:36 +00:00
|
|
|
}
|
2018-03-27 16:27:12 +00:00
|
|
|
|
2018-03-28 19:54:36 +00:00
|
|
|
// End common code pass 1
|
2018-03-02 21:20:46 +00:00
|
|
|
|
2018-03-28 19:54:36 +00:00
|
|
|
if (onMasterLWP) { // Are we on the representative LWP?
|
2018-03-28 16:48:37 +00:00
|
|
|
proc->ppid = (_psinfo->pr_ppid * 1024);
|
|
|
|
proc->tgid = (_psinfo->pr_ppid * 1024);
|
|
|
|
sproc->realppid = _psinfo->pr_ppid;
|
2018-03-28 19:54:36 +00:00
|
|
|
// See note above (in common section) about this BINARY FRACTION
|
2018-03-28 16:48:37 +00:00
|
|
|
proc->percent_cpu = ((uint16_t)_psinfo->pr_pctcpu/(double)32768)*(double)100.0;
|
|
|
|
proc->time = _psinfo->pr_time.tv_sec;
|
2018-03-30 18:34:12 +00:00
|
|
|
if(!preExisting) { // Tasks done only for NEW processes
|
2018-03-27 21:22:07 +00:00
|
|
|
sproc->is_lwp = false;
|
2018-03-28 16:48:37 +00:00
|
|
|
proc->starttime_ctime = _psinfo->pr_start.tv_sec;
|
2018-03-27 16:27:12 +00:00
|
|
|
}
|
2018-03-27 20:18:29 +00:00
|
|
|
|
2018-03-28 19:54:36 +00:00
|
|
|
// Update proc and thread counts based on settings
|
2018-03-28 16:48:37 +00:00
|
|
|
if (sproc->kernel && !pl->settings->hideKernelThreads) {
|
|
|
|
pl->kernelThreads += proc->nlwp;
|
|
|
|
pl->totalTasks += proc->nlwp+1;
|
|
|
|
if (proc->state == 'O') pl->runningTasks++;
|
2018-03-27 20:18:29 +00:00
|
|
|
} else if (!sproc->kernel) {
|
2018-03-28 16:48:37 +00:00
|
|
|
if (proc->state == 'O') pl->runningTasks++;
|
|
|
|
if (pl->settings->hideUserlandThreads) {
|
|
|
|
pl->totalTasks++;
|
2018-03-02 21:20:46 +00:00
|
|
|
} else {
|
2018-03-28 16:48:37 +00:00
|
|
|
pl->userlandThreads += proc->nlwp;
|
|
|
|
pl->totalTasks += proc->nlwp+1;
|
2018-03-02 21:20:46 +00:00
|
|
|
}
|
|
|
|
}
|
2018-03-28 16:48:37 +00:00
|
|
|
proc->show = !(pl->settings->hideKernelThreads && sproc->kernel);
|
2018-03-28 19:54:36 +00:00
|
|
|
} else { // We are not in the master LWP, so jump to the LWP handling code
|
2018-03-30 18:34:12 +00:00
|
|
|
proc->percent_cpu = ((uint16_t)_lwpsinfo->pr_pctcpu/(double)32768)*(double)100.0;
|
|
|
|
proc->time = _lwpsinfo->pr_time.tv_sec;
|
|
|
|
if (!preExisting) { // Tasks done only for NEW LWPs
|
2019-10-31 16:39:12 +00:00
|
|
|
sproc->is_lwp = true;
|
2018-03-30 18:34:12 +00:00
|
|
|
proc->basenameOffset = -1;
|
|
|
|
proc->ppid = _psinfo->pr_pid * 1024;
|
|
|
|
proc->tgid = _psinfo->pr_pid * 1024;
|
|
|
|
sproc->realppid = _psinfo->pr_pid;
|
|
|
|
proc->starttime_ctime = _lwpsinfo->pr_start.tv_sec;
|
2018-03-28 19:54:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Top-level process only gets this for the representative LWP
|
2018-03-30 18:34:12 +00:00
|
|
|
if (sproc->kernel && !pl->settings->hideKernelThreads) proc->show = true;
|
|
|
|
if (!sproc->kernel && !pl->settings->hideUserlandThreads) proc->show = true;
|
2018-03-28 19:54:36 +00:00
|
|
|
} // Top-level LWP or subordinate LWP
|
|
|
|
|
|
|
|
// Common code pass 2
|
|
|
|
|
|
|
|
if (!preExisting) {
|
|
|
|
if ((sproc->realppid <= 0) && !(sproc->realpid <= 1)) {
|
2018-03-30 18:34:12 +00:00
|
|
|
sproc->kernel = true;
|
2018-03-28 19:54:36 +00:00
|
|
|
} else {
|
2018-03-30 18:34:12 +00:00
|
|
|
sproc->kernel = false;
|
2018-03-28 19:54:36 +00:00
|
|
|
}
|
2018-03-30 18:34:12 +00:00
|
|
|
(void) localtime_r((time_t*) &proc->starttime_ctime, &date);
|
|
|
|
strftime(proc->starttime_show, 7, ((proc->starttime_ctime > tv.tv_sec - 86400) ? "%R " : "%b%d "), &date);
|
|
|
|
ProcessList_add(pl, proc);
|
2018-03-28 16:48:37 +00:00
|
|
|
}
|
2018-03-30 18:34:12 +00:00
|
|
|
proc->updated = true;
|
2018-03-28 19:54:36 +00:00
|
|
|
|
|
|
|
// End common code pass 2
|
|
|
|
|
2018-03-28 16:48:37 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2018-03-27 20:48:58 +00:00
|
|
|
|
2018-03-28 16:48:37 +00:00
|
|
|
void ProcessList_goThroughEntries(ProcessList* this) {
|
|
|
|
SolarisProcessList_scanCPUTime(this);
|
|
|
|
SolarisProcessList_scanMemoryInfo(this);
|
2019-07-08 02:43:39 +00:00
|
|
|
SolarisProcessList_scanZfsArcstats(this);
|
2018-03-28 16:48:37 +00:00
|
|
|
this->kernelThreads = 1;
|
2018-03-28 19:54:36 +00:00
|
|
|
proc_walk(&SolarisProcessList_walkproc, this, PR_WALK_LWP);
|
2018-03-02 21:20:46 +00:00
|
|
|
}
|