2014-11-24 20:55:49 +00:00
|
|
|
/*
|
|
|
|
htop - LinuxProcessList.c
|
|
|
|
(C) 2014 Hisham H. Muhammad
|
2020-10-05 07:51:32 +00:00
|
|
|
Released under the GNU GPLv2, see the COPYING file
|
2014-11-24 20:55:49 +00:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
2020-09-19 11:55:23 +00:00
|
|
|
#include "config.h" // IWYU pragma: keep
|
|
|
|
|
2014-11-24 21:22:50 +00:00
|
|
|
#include "LinuxProcessList.h"
|
2020-10-14 18:21:09 +00:00
|
|
|
|
2020-09-19 11:55:23 +00:00
|
|
|
#include <assert.h>
|
2014-11-24 21:22:50 +00:00
|
|
|
#include <dirent.h>
|
2020-09-19 11:55:23 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
2020-12-06 14:22:41 +00:00
|
|
|
#include <limits.h>
|
2014-11-24 21:22:50 +00:00
|
|
|
#include <math.h>
|
2020-09-19 11:55:23 +00:00
|
|
|
#include <stdbool.h>
|
2020-12-06 14:22:41 +00:00
|
|
|
#include <stdint.h>
|
2020-09-19 11:55:23 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2014-11-24 21:22:50 +00:00
|
|
|
#include <string.h>
|
2020-09-19 11:55:23 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/time.h>
|
2014-11-24 21:22:50 +00:00
|
|
|
#include <sys/types.h>
|
2014-11-24 20:55:49 +00:00
|
|
|
|
2017-12-04 02:15:29 +00:00
|
|
|
#ifdef HAVE_DELAYACCT
|
2020-09-19 11:55:23 +00:00
|
|
|
#include <linux/netlink.h>
|
|
|
|
#include <linux/taskstats.h>
|
2017-12-04 02:15:29 +00:00
|
|
|
#include <netlink/attr.h>
|
2020-09-19 11:55:23 +00:00
|
|
|
#include <netlink/handlers.h>
|
|
|
|
#include <netlink/msg.h>
|
2017-12-04 02:15:29 +00:00
|
|
|
#include <netlink/netlink.h>
|
2020-09-19 11:55:23 +00:00
|
|
|
#include <netlink/socket.h>
|
2017-12-04 02:15:29 +00:00
|
|
|
#include <netlink/genl/genl.h>
|
|
|
|
#include <netlink/genl/ctrl.h>
|
|
|
|
#endif
|
|
|
|
|
2020-11-07 21:51:46 +00:00
|
|
|
#include "Compat.h"
|
2020-11-20 16:50:34 +00:00
|
|
|
#include "CRT.h"
|
2020-09-19 11:55:23 +00:00
|
|
|
#include "LinuxProcess.h"
|
|
|
|
#include "Macros.h"
|
|
|
|
#include "Object.h"
|
|
|
|
#include "Process.h"
|
|
|
|
#include "Settings.h"
|
|
|
|
#include "XUtils.h"
|
|
|
|
|
|
|
|
#ifdef MAJOR_IN_MKDEV
|
|
|
|
#include <sys/mkdev.h>
|
|
|
|
#elif defined(MAJOR_IN_SYSMACROS)
|
|
|
|
#include <sys/sysmacros.h>
|
|
|
|
#endif
|
|
|
|
|
2020-12-01 12:59:19 +00:00
|
|
|
#ifdef HAVE_SENSORS_SENSORS_H
|
|
|
|
#include "LibSensors.h"
|
2020-09-10 17:56:33 +00:00
|
|
|
#endif
|
|
|
|
|
2020-09-19 11:55:23 +00:00
|
|
|
|
2020-12-12 10:41:15 +00:00
|
|
|
// CentOS 6's kernel doesn't provide a definition of O_PATH
|
|
|
|
// based on definition taken from uapi/asm-generic/fcnth.h in Linux kernel tree
|
|
|
|
#ifndef O_PATH
|
|
|
|
# define O_PATH 010000000
|
|
|
|
#endif
|
|
|
|
|
2020-12-14 00:19:54 +00:00
|
|
|
static long long btime;
|
|
|
|
|
|
|
|
static long jiffy;
|
|
|
|
|
2020-11-20 16:50:34 +00:00
|
|
|
static FILE* fopenat(openat_arg_t openatArg, const char* pathname, const char* mode) {
|
2020-11-17 18:46:12 +00:00
|
|
|
assert(String_eq(mode, "r")); /* only currently supported mode */
|
|
|
|
|
2020-11-20 16:50:34 +00:00
|
|
|
int fd = Compat_openat(openatArg, pathname, O_RDONLY);
|
2020-11-17 18:46:12 +00:00
|
|
|
if (fd < 0)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
FILE* stream = fdopen(fd, mode);
|
|
|
|
if (!stream)
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
return stream;
|
|
|
|
}
|
|
|
|
|
2016-10-01 06:09:04 +00:00
|
|
|
static int sortTtyDrivers(const void* va, const void* vb) {
|
2020-09-23 12:15:51 +00:00
|
|
|
const TtyDriver* a = (const TtyDriver*) va;
|
|
|
|
const TtyDriver* b = (const TtyDriver*) vb;
|
2020-11-15 19:12:38 +00:00
|
|
|
|
|
|
|
int r = SPACESHIP_NUMBER(a->major, b->major);
|
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
return SPACESHIP_NUMBER(a->minorFrom, b->minorFrom);
|
2016-10-01 06:09:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void LinuxProcessList_initTtyDrivers(LinuxProcessList* this) {
|
|
|
|
TtyDriver* ttyDrivers;
|
2020-11-01 00:09:51 +00:00
|
|
|
|
2020-11-25 11:42:36 +00:00
|
|
|
char buf[16384];
|
|
|
|
ssize_t r = xReadfile(PROCTTYDRIVERSFILE, buf, sizeof(buf));
|
|
|
|
if (r < 0)
|
2016-10-01 06:09:04 +00:00
|
|
|
return;
|
2020-11-25 11:42:36 +00:00
|
|
|
|
2016-10-01 06:09:04 +00:00
|
|
|
int numDrivers = 0;
|
|
|
|
int allocd = 10;
|
2020-09-21 12:27:32 +00:00
|
|
|
ttyDrivers = xMalloc(sizeof(TtyDriver) * allocd);
|
2016-10-01 06:09:04 +00:00
|
|
|
char* at = buf;
|
|
|
|
while (*at != '\0') {
|
|
|
|
at = strchr(at, ' '); // skip first token
|
|
|
|
while (*at == ' ') at++; // skip spaces
|
|
|
|
char* token = at; // mark beginning of path
|
|
|
|
at = strchr(at, ' '); // find end of path
|
|
|
|
*at = '\0'; at++; // clear and skip
|
2020-09-21 12:27:32 +00:00
|
|
|
ttyDrivers[numDrivers].path = xStrdup(token); // save
|
2016-10-01 06:09:04 +00:00
|
|
|
while (*at == ' ') at++; // skip spaces
|
|
|
|
token = at; // mark beginning of major
|
|
|
|
at = strchr(at, ' '); // find end of major
|
|
|
|
*at = '\0'; at++; // clear and skip
|
|
|
|
ttyDrivers[numDrivers].major = atoi(token); // save
|
|
|
|
while (*at == ' ') at++; // skip spaces
|
|
|
|
token = at; // mark beginning of minorFrom
|
|
|
|
while (*at >= '0' && *at <= '9') at++; //find end of minorFrom
|
|
|
|
if (*at == '-') { // if has range
|
|
|
|
*at = '\0'; at++; // clear and skip
|
|
|
|
ttyDrivers[numDrivers].minorFrom = atoi(token); // save
|
|
|
|
token = at; // mark beginning of minorTo
|
|
|
|
at = strchr(at, ' '); // find end of minorTo
|
|
|
|
*at = '\0'; at++; // clear and skip
|
|
|
|
ttyDrivers[numDrivers].minorTo = atoi(token); // save
|
|
|
|
} else { // no range
|
|
|
|
*at = '\0'; at++; // clear and skip
|
|
|
|
ttyDrivers[numDrivers].minorFrom = atoi(token); // save
|
|
|
|
ttyDrivers[numDrivers].minorTo = atoi(token); // save
|
|
|
|
}
|
|
|
|
at = strchr(at, '\n'); // go to end of line
|
|
|
|
at++; // skip
|
|
|
|
numDrivers++;
|
|
|
|
if (numDrivers == allocd) {
|
|
|
|
allocd += 10;
|
2020-09-21 12:27:32 +00:00
|
|
|
ttyDrivers = xRealloc(ttyDrivers, sizeof(TtyDriver) * allocd);
|
2016-10-01 06:09:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
numDrivers++;
|
2020-09-21 12:27:32 +00:00
|
|
|
ttyDrivers = xRealloc(ttyDrivers, sizeof(TtyDriver) * numDrivers);
|
2016-10-01 06:09:04 +00:00
|
|
|
ttyDrivers[numDrivers - 1].path = NULL;
|
|
|
|
qsort(ttyDrivers, numDrivers - 1, sizeof(TtyDriver), sortTtyDrivers);
|
|
|
|
this->ttyDrivers = ttyDrivers;
|
|
|
|
}
|
|
|
|
|
2017-12-04 02:15:29 +00:00
|
|
|
#ifdef HAVE_DELAYACCT
|
|
|
|
|
|
|
|
static void LinuxProcessList_initNetlinkSocket(LinuxProcessList* this) {
|
|
|
|
this->netlink_socket = nl_socket_alloc();
|
|
|
|
if (this->netlink_socket == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (nl_connect(this->netlink_socket, NETLINK_GENERIC) < 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this->netlink_family = genl_ctrl_resolve(this->netlink_socket, TASKSTATS_GENL_NAME);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2020-09-22 18:04:41 +00:00
|
|
|
static int LinuxProcessList_computeCPUcount(void) {
|
|
|
|
FILE* file = fopen(PROCSTATFILE, "r");
|
2020-11-01 00:09:51 +00:00
|
|
|
if (file == NULL) {
|
2020-09-22 18:04:41 +00:00
|
|
|
CRT_fatalError("Cannot open " PROCSTATFILE);
|
2020-11-01 00:09:51 +00:00
|
|
|
}
|
2020-09-22 18:04:41 +00:00
|
|
|
|
|
|
|
int cpus = 0;
|
|
|
|
char buffer[PROC_LINE_LENGTH + 1];
|
2020-10-31 19:39:01 +00:00
|
|
|
while (fgets(buffer, sizeof(buffer), file)) {
|
2020-11-01 00:09:51 +00:00
|
|
|
if (String_startsWith(buffer, "cpu")) {
|
2020-09-22 18:04:41 +00:00
|
|
|
cpus++;
|
2020-11-01 00:09:51 +00:00
|
|
|
}
|
2020-09-22 18:04:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fclose(file);
|
|
|
|
|
|
|
|
/* subtract raw cpu entry */
|
2020-11-01 00:09:51 +00:00
|
|
|
if (cpus > 0) {
|
2020-09-22 18:04:41 +00:00
|
|
|
cpus--;
|
2020-11-01 00:09:51 +00:00
|
|
|
}
|
2020-09-22 18:04:41 +00:00
|
|
|
|
|
|
|
return cpus;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void LinuxProcessList_updateCPUcount(LinuxProcessList* this) {
|
|
|
|
ProcessList* pl = &(this->super);
|
|
|
|
int cpus = LinuxProcessList_computeCPUcount();
|
|
|
|
if (cpus == 0 || cpus == pl->cpuCount)
|
|
|
|
return;
|
|
|
|
|
|
|
|
pl->cpuCount = cpus;
|
|
|
|
free(this->cpus);
|
|
|
|
this->cpus = xCalloc(cpus + 1, sizeof(CPUData));
|
|
|
|
|
|
|
|
for (int i = 0; i <= cpus; i++) {
|
|
|
|
this->cpus[i].totalTime = 1;
|
|
|
|
this->cpus[i].totalPeriod = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
LinuxProcessList* this = xCalloc(1, sizeof(LinuxProcessList));
|
2015-01-22 01:27:31 +00:00
|
|
|
ProcessList* pl = &(this->super);
|
2018-08-19 04:29:03 +00:00
|
|
|
|
2020-09-09 09:38:15 +00:00
|
|
|
ProcessList_init(pl, Class(LinuxProcess), usersTable, pidMatchList, userId);
|
2016-10-01 06:09:04 +00:00
|
|
|
LinuxProcessList_initTtyDrivers(this);
|
2014-11-24 20:55:49 +00:00
|
|
|
|
2017-12-04 02:15:29 +00:00
|
|
|
#ifdef HAVE_DELAYACCT
|
|
|
|
LinuxProcessList_initNetlinkSocket(this);
|
|
|
|
#endif
|
|
|
|
|
2020-12-10 00:57:48 +00:00
|
|
|
// Initialize page size
|
|
|
|
pageSize = sysconf(_SC_PAGESIZE);
|
|
|
|
if (pageSize == -1)
|
|
|
|
CRT_fatalError("Cannot get pagesize by sysconf(_SC_PAGESIZE)");
|
|
|
|
pageSizeKB = pageSize / ONE_K;
|
|
|
|
|
2020-12-14 00:19:54 +00:00
|
|
|
// Initialize clock ticks
|
|
|
|
jiffy = sysconf(_SC_CLK_TCK);
|
|
|
|
if (jiffy == -1)
|
|
|
|
CRT_fatalError("Cannot get clock ticks by sysconf(_SC_CLK_TCK)");
|
|
|
|
|
2020-12-14 00:27:13 +00:00
|
|
|
// Test /proc/PID/smaps_rollup availability (faster to parse, Linux 4.14+)
|
|
|
|
this->haveSmapsRollup = (access(PROCDIR "/self/smaps_rollup", R_OK) == 0);
|
2018-10-16 18:08:23 +00:00
|
|
|
|
2020-12-14 01:16:32 +00:00
|
|
|
// Read btime (the kernel boot time, as number of seconds since the epoch)
|
2020-09-22 18:04:41 +00:00
|
|
|
{
|
|
|
|
FILE* statfile = fopen(PROCSTATFILE, "r");
|
2020-12-14 01:16:32 +00:00
|
|
|
if (statfile == NULL)
|
2020-09-22 18:04:41 +00:00
|
|
|
CRT_fatalError("Cannot open " PROCSTATFILE);
|
2020-10-31 19:39:01 +00:00
|
|
|
while (true) {
|
2020-09-22 18:04:41 +00:00
|
|
|
char buffer[PROC_LINE_LENGTH + 1];
|
2020-12-14 01:16:32 +00:00
|
|
|
if (fgets(buffer, sizeof(buffer), statfile) == NULL)
|
|
|
|
break;
|
|
|
|
if (String_startsWith(buffer, "btime ") == false)
|
|
|
|
continue;
|
|
|
|
if (sscanf(buffer, "btime %lld\n", &btime) == 1)
|
2020-09-22 18:04:41 +00:00
|
|
|
break;
|
2020-12-14 01:16:32 +00:00
|
|
|
CRT_fatalError("Failed to parse btime from " PROCSTATFILE);
|
2018-08-19 04:29:03 +00:00
|
|
|
}
|
2020-09-22 18:04:41 +00:00
|
|
|
fclose(statfile);
|
2020-12-14 01:16:32 +00:00
|
|
|
|
|
|
|
if (!btime)
|
|
|
|
CRT_fatalError("No btime in " PROCSTATFILE);
|
2020-09-22 18:04:41 +00:00
|
|
|
}
|
2014-11-24 20:55:49 +00:00
|
|
|
|
2020-11-18 12:59:55 +00:00
|
|
|
// Initialize CPU count
|
2020-09-22 18:04:41 +00:00
|
|
|
{
|
|
|
|
int cpus = LinuxProcessList_computeCPUcount();
|
|
|
|
pl->cpuCount = MAXIMUM(cpus, 1);
|
|
|
|
this->cpus = xCalloc(cpus + 1, sizeof(CPUData));
|
2014-11-24 20:55:49 +00:00
|
|
|
|
2020-09-22 18:04:41 +00:00
|
|
|
for (int i = 0; i <= cpus; i++) {
|
|
|
|
this->cpus[i].totalTime = 1;
|
|
|
|
this->cpus[i].totalPeriod = 1;
|
|
|
|
}
|
2014-11-24 20:55:49 +00:00
|
|
|
}
|
2020-09-22 18:04:41 +00:00
|
|
|
|
2015-01-22 01:27:31 +00:00
|
|
|
return pl;
|
2014-11-24 20:55:49 +00:00
|
|
|
}
|
|
|
|
|
2015-01-22 01:27:31 +00:00
|
|
|
void ProcessList_delete(ProcessList* pl) {
|
|
|
|
LinuxProcessList* this = (LinuxProcessList*) pl;
|
|
|
|
ProcessList_done(pl);
|
|
|
|
free(this->cpus);
|
2016-10-01 06:09:04 +00:00
|
|
|
if (this->ttyDrivers) {
|
2020-10-31 19:55:36 +00:00
|
|
|
for (int i = 0; this->ttyDrivers[i].path; i++) {
|
2016-10-01 06:09:04 +00:00
|
|
|
free(this->ttyDrivers[i].path);
|
|
|
|
}
|
|
|
|
free(this->ttyDrivers);
|
|
|
|
}
|
2017-12-04 02:15:29 +00:00
|
|
|
#ifdef HAVE_DELAYACCT
|
|
|
|
if (this->netlink_socket) {
|
|
|
|
nl_close(this->netlink_socket);
|
|
|
|
nl_socket_free(this->netlink_socket);
|
|
|
|
}
|
|
|
|
#endif
|
2014-11-27 19:48:38 +00:00
|
|
|
free(this);
|
|
|
|
}
|
|
|
|
|
2020-12-14 00:19:54 +00:00
|
|
|
static inline unsigned long long LinuxProcessList_adjustTime(unsigned long long t) {
|
2020-11-23 20:03:52 +00:00
|
|
|
return t * 100 / jiffy;
|
2015-03-17 02:01:48 +00:00
|
|
|
}
|
|
|
|
|
2020-11-20 16:50:34 +00:00
|
|
|
static bool LinuxProcessList_readStatFile(Process* process, openat_arg_t procFd, char* command, int* commLen) {
|
2015-03-16 04:43:04 +00:00
|
|
|
LinuxProcess* lp = (LinuxProcess*) process;
|
2020-09-15 17:55:21 +00:00
|
|
|
const int commLenIn = *commLen;
|
|
|
|
*commLen = 0;
|
2014-11-24 20:55:49 +00:00
|
|
|
|
2020-11-25 11:42:36 +00:00
|
|
|
char buf[MAX_READ + 1];
|
|
|
|
ssize_t r = xReadfileat(procFd, "stat", buf, sizeof(buf));
|
|
|
|
if (r < 0)
|
2020-11-01 00:09:51 +00:00
|
|
|
return false;
|
2014-11-24 20:55:49 +00:00
|
|
|
|
|
|
|
assert(process->pid == atoi(buf));
|
2020-10-31 22:28:02 +00:00
|
|
|
char* location = strchr(buf, ' ');
|
2020-11-01 00:09:51 +00:00
|
|
|
if (!location)
|
|
|
|
return false;
|
2014-11-24 20:55:49 +00:00
|
|
|
|
|
|
|
location += 2;
|
2020-10-31 22:28:02 +00:00
|
|
|
char* end = strrchr(location, ')');
|
2020-11-01 00:09:51 +00:00
|
|
|
if (!end)
|
|
|
|
return false;
|
2019-10-31 16:39:12 +00:00
|
|
|
|
2020-09-15 17:55:21 +00:00
|
|
|
int commsize = MINIMUM(end - location, commLenIn - 1);
|
2020-09-24 17:52:08 +00:00
|
|
|
// deepcode ignore BufferOverflow: commsize is bounded by the allocated length passed in by commLen, saved into commLenIn
|
2014-11-24 20:55:49 +00:00
|
|
|
memcpy(command, location, commsize);
|
|
|
|
command[commsize] = '\0';
|
2016-02-02 14:56:52 +00:00
|
|
|
*commLen = commsize;
|
2014-11-24 20:55:49 +00:00
|
|
|
location = end + 2;
|
|
|
|
|
|
|
|
process->state = location[0];
|
|
|
|
location += 2;
|
|
|
|
process->ppid = strtol(location, &location, 10);
|
|
|
|
location += 1;
|
|
|
|
process->pgrp = strtoul(location, &location, 10);
|
|
|
|
location += 1;
|
|
|
|
process->session = strtoul(location, &location, 10);
|
|
|
|
location += 1;
|
|
|
|
process->tty_nr = strtoul(location, &location, 10);
|
|
|
|
location += 1;
|
|
|
|
process->tpgid = strtol(location, &location, 10);
|
|
|
|
location += 1;
|
|
|
|
process->flags = strtoul(location, &location, 10);
|
|
|
|
location += 1;
|
|
|
|
process->minflt = strtoull(location, &location, 10);
|
|
|
|
location += 1;
|
2015-03-16 04:43:04 +00:00
|
|
|
lp->cminflt = strtoull(location, &location, 10);
|
2014-11-24 20:55:49 +00:00
|
|
|
location += 1;
|
|
|
|
process->majflt = strtoull(location, &location, 10);
|
|
|
|
location += 1;
|
2015-03-16 04:43:04 +00:00
|
|
|
lp->cmajflt = strtoull(location, &location, 10);
|
2014-11-24 20:55:49 +00:00
|
|
|
location += 1;
|
2020-12-14 00:19:54 +00:00
|
|
|
lp->utime = LinuxProcessList_adjustTime(strtoull(location, &location, 10));
|
2014-11-24 20:55:49 +00:00
|
|
|
location += 1;
|
2020-12-14 00:19:54 +00:00
|
|
|
lp->stime = LinuxProcessList_adjustTime(strtoull(location, &location, 10));
|
2014-11-24 20:55:49 +00:00
|
|
|
location += 1;
|
2020-12-14 00:19:54 +00:00
|
|
|
lp->cutime = LinuxProcessList_adjustTime(strtoull(location, &location, 10));
|
2014-11-24 20:55:49 +00:00
|
|
|
location += 1;
|
2020-12-14 00:19:54 +00:00
|
|
|
lp->cstime = LinuxProcessList_adjustTime(strtoull(location, &location, 10));
|
2014-11-24 20:55:49 +00:00
|
|
|
location += 1;
|
|
|
|
process->priority = strtol(location, &location, 10);
|
|
|
|
location += 1;
|
|
|
|
process->nice = strtol(location, &location, 10);
|
|
|
|
location += 1;
|
|
|
|
process->nlwp = strtol(location, &location, 10);
|
|
|
|
location += 1;
|
2020-10-31 22:28:02 +00:00
|
|
|
location = strchr(location, ' ') + 1;
|
2020-10-12 10:51:18 +00:00
|
|
|
if (process->starttime_ctime == 0) {
|
2020-12-14 00:19:54 +00:00
|
|
|
process->starttime_ctime = btime + LinuxProcessList_adjustTime(strtoll(location, &location, 10)) / 100;
|
2020-10-12 10:51:18 +00:00
|
|
|
} else {
|
2020-10-31 22:28:02 +00:00
|
|
|
location = strchr(location, ' ') + 1;
|
2020-10-12 10:51:18 +00:00
|
|
|
}
|
2018-08-19 04:29:03 +00:00
|
|
|
location += 1;
|
2020-11-01 00:09:51 +00:00
|
|
|
for (int i = 0; i < 15; i++) {
|
2020-10-31 22:28:02 +00:00
|
|
|
location = strchr(location, ' ') + 1;
|
2020-11-01 00:09:51 +00:00
|
|
|
}
|
2014-11-24 20:55:49 +00:00
|
|
|
process->exit_signal = strtol(location, &location, 10);
|
|
|
|
location += 1;
|
|
|
|
assert(location != NULL);
|
2015-03-17 02:03:40 +00:00
|
|
|
process->processor = strtol(location, &location, 10);
|
2019-10-31 16:39:12 +00:00
|
|
|
|
2015-03-16 04:43:04 +00:00
|
|
|
process->time = lp->utime + lp->stime;
|
2019-10-31 16:39:12 +00:00
|
|
|
|
2014-11-24 20:55:49 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-20 16:50:34 +00:00
|
|
|
static bool LinuxProcessList_statProcessDir(Process* process, openat_arg_t procFd) {
|
2014-11-24 20:55:49 +00:00
|
|
|
struct stat sstat;
|
2020-11-20 16:50:34 +00:00
|
|
|
#ifdef HAVE_OPENAT
|
2020-11-17 18:46:12 +00:00
|
|
|
int statok = fstat(procFd, &sstat);
|
2020-11-20 16:50:34 +00:00
|
|
|
#else
|
|
|
|
int statok = stat(procFd, &sstat);
|
|
|
|
#endif
|
2014-11-24 20:55:49 +00:00
|
|
|
if (statok == -1)
|
|
|
|
return false;
|
|
|
|
process->st_uid = sstat.st_uid;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-11-20 16:50:34 +00:00
|
|
|
static void LinuxProcessList_readIoFile(LinuxProcess* process, openat_arg_t procFd, unsigned long long now) {
|
2020-11-25 11:42:36 +00:00
|
|
|
char buffer[1024];
|
|
|
|
ssize_t r = xReadfileat(procFd, "io", buffer, sizeof(buffer));
|
|
|
|
if (r < 0) {
|
2020-09-07 09:53:58 +00:00
|
|
|
process->io_rate_read_bps = NAN;
|
|
|
|
process->io_rate_write_bps = NAN;
|
2017-07-10 23:57:34 +00:00
|
|
|
process->io_rchar = -1LL;
|
|
|
|
process->io_wchar = -1LL;
|
|
|
|
process->io_syscr = -1LL;
|
|
|
|
process->io_syscw = -1LL;
|
|
|
|
process->io_read_bytes = -1LL;
|
|
|
|
process->io_write_bytes = -1LL;
|
|
|
|
process->io_cancelled_write_bytes = -1LL;
|
|
|
|
process->io_rate_read_time = -1LL;
|
|
|
|
process->io_rate_write_time = -1LL;
|
2014-11-24 20:55:49 +00:00
|
|
|
return;
|
2015-01-22 01:27:31 +00:00
|
|
|
}
|
2019-10-31 16:39:12 +00:00
|
|
|
|
2014-11-24 20:55:49 +00:00
|
|
|
unsigned long long last_read = process->io_read_bytes;
|
|
|
|
unsigned long long last_write = process->io_write_bytes;
|
2020-10-31 22:28:02 +00:00
|
|
|
char* buf = buffer;
|
|
|
|
char* line = NULL;
|
2014-11-24 20:55:49 +00:00
|
|
|
while ((line = strsep(&buf, "\n")) != NULL) {
|
|
|
|
switch (line[0]) {
|
|
|
|
case 'r':
|
2020-10-31 21:14:27 +00:00
|
|
|
if (line[1] == 'c' && String_startsWith(line + 2, "har: ")) {
|
|
|
|
process->io_rchar = strtoull(line + 7, NULL, 10);
|
|
|
|
} else if (String_startsWith(line + 1, "ead_bytes: ")) {
|
|
|
|
process->io_read_bytes = strtoull(line + 12, NULL, 10);
|
2019-10-31 16:39:12 +00:00
|
|
|
process->io_rate_read_bps =
|
2020-10-31 22:28:02 +00:00
|
|
|
((double)(process->io_read_bytes - last_read)) / (((double)(now - process->io_rate_read_time)) / 1000);
|
2014-11-24 20:55:49 +00:00
|
|
|
process->io_rate_read_time = now;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'w':
|
2020-10-31 21:14:27 +00:00
|
|
|
if (line[1] == 'c' && String_startsWith(line + 2, "har: ")) {
|
|
|
|
process->io_wchar = strtoull(line + 7, NULL, 10);
|
|
|
|
} else if (String_startsWith(line + 1, "rite_bytes: ")) {
|
|
|
|
process->io_write_bytes = strtoull(line + 13, NULL, 10);
|
2019-10-31 16:39:12 +00:00
|
|
|
process->io_rate_write_bps =
|
2020-10-31 22:28:02 +00:00
|
|
|
((double)(process->io_write_bytes - last_write)) / (((double)(now - process->io_rate_write_time)) / 1000);
|
2014-11-24 20:55:49 +00:00
|
|
|
process->io_rate_write_time = now;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 's':
|
2020-10-31 22:28:02 +00:00
|
|
|
if (line[4] == 'r' && String_startsWith(line + 1, "yscr: ")) {
|
|
|
|
process->io_syscr = strtoull(line + 7, NULL, 10);
|
|
|
|
} else if (String_startsWith(line + 1, "yscw: ")) {
|
|
|
|
process->io_syscw = strtoull(line + 7, NULL, 10);
|
2016-02-16 16:34:25 +00:00
|
|
|
}
|
2014-11-24 20:55:49 +00:00
|
|
|
break;
|
|
|
|
case 'c':
|
2020-10-31 21:14:27 +00:00
|
|
|
if (String_startsWith(line + 1, "ancelled_write_bytes: ")) {
|
|
|
|
process->io_cancelled_write_bytes = strtoull(line + 23, NULL, 10);
|
2020-10-31 20:10:12 +00:00
|
|
|
}
|
2014-11-24 20:55:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-05 19:25:54 +00:00
|
|
|
typedef struct LibraryData_ {
|
2020-10-09 13:13:06 +00:00
|
|
|
uint64_t size;
|
|
|
|
bool exec;
|
|
|
|
} LibraryData;
|
|
|
|
|
2020-11-18 21:02:44 +00:00
|
|
|
static inline uint64_t fast_strtoull_dec(char **str, int maxlen) {
|
|
|
|
register uint64_t result = 0;
|
|
|
|
|
|
|
|
if (!maxlen)
|
|
|
|
--maxlen;
|
|
|
|
|
|
|
|
while (maxlen-- && **str >= '0' && **str <= '9') {
|
|
|
|
result *= 10;
|
|
|
|
result += **str - '0';
|
|
|
|
(*str)++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline uint64_t fast_strtoull_hex(char **str, int maxlen) {
|
|
|
|
register uint64_t result = 0;
|
|
|
|
register int nibble, letter;
|
|
|
|
const long valid_mask = 0x03FF007E;
|
|
|
|
|
|
|
|
if (!maxlen)
|
|
|
|
--maxlen;
|
|
|
|
|
|
|
|
while (maxlen--) {
|
2020-12-02 15:08:50 +00:00
|
|
|
nibble = (unsigned char)**str;
|
2020-11-18 21:02:44 +00:00
|
|
|
if (!(valid_mask & (1 << (nibble & 0x1F))))
|
|
|
|
break;
|
|
|
|
if ((nibble < '0') || (nibble & ~0x20) > 'F')
|
|
|
|
break;
|
|
|
|
letter = (nibble & 0x40) ? 'A' - '9' - 1 : 0;
|
|
|
|
nibble &=~0x20; // to upper
|
|
|
|
nibble ^= 0x10; // switch letters and digits
|
|
|
|
nibble -= letter;
|
|
|
|
nibble &= 0x0f;
|
|
|
|
result <<= 4;
|
|
|
|
result += (uint64_t)nibble;
|
|
|
|
(*str)++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-10-09 13:13:06 +00:00
|
|
|
static void LinuxProcessList_calcLibSize_helper(ATTR_UNUSED hkey_t key, void* value, void* data) {
|
|
|
|
if (!data)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!value)
|
|
|
|
return;
|
|
|
|
|
|
|
|
LibraryData* v = (LibraryData *)value;
|
|
|
|
uint64_t* d = (uint64_t *)data;
|
|
|
|
if (!v->exec)
|
|
|
|
return;
|
|
|
|
|
|
|
|
*d += v->size;
|
|
|
|
}
|
|
|
|
|
2020-11-20 16:50:34 +00:00
|
|
|
static uint64_t LinuxProcessList_calcLibSize(openat_arg_t procFd) {
|
2020-11-17 18:46:12 +00:00
|
|
|
FILE* mapsfile = fopenat(procFd, "maps", "r");
|
2020-10-09 13:13:06 +00:00
|
|
|
if (!mapsfile)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
Hashtable* ht = Hashtable_new(64, true);
|
|
|
|
|
|
|
|
char buffer[1024];
|
|
|
|
while (fgets(buffer, sizeof(buffer), mapsfile)) {
|
|
|
|
uint64_t map_start;
|
|
|
|
uint64_t map_end;
|
2020-11-17 17:04:30 +00:00
|
|
|
char map_perm[5];
|
2020-11-28 16:06:06 +00:00
|
|
|
unsigned int map_devmaj;
|
|
|
|
unsigned int map_devmin;
|
2020-10-09 13:13:06 +00:00
|
|
|
uint64_t map_inode;
|
|
|
|
|
2020-11-17 17:04:30 +00:00
|
|
|
// Short circuit test: Look for a slash
|
|
|
|
if (!strchr(buffer, '/'))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Parse format: "%Lx-%Lx %4s %x %2x:%2x %Ld"
|
|
|
|
char *readptr = buffer;
|
|
|
|
|
2020-11-18 21:02:44 +00:00
|
|
|
map_start = fast_strtoull_hex(&readptr, 16);
|
|
|
|
if ('-' != *readptr++)
|
2020-11-17 17:04:30 +00:00
|
|
|
continue;
|
|
|
|
|
2020-11-18 21:02:44 +00:00
|
|
|
map_end = fast_strtoull_hex(&readptr, 16);
|
|
|
|
if (' ' != *readptr++)
|
2020-11-17 17:04:30 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
memcpy(map_perm, readptr, 4);
|
|
|
|
map_perm[4] = '\0';
|
|
|
|
readptr += 4;
|
|
|
|
if (' ' != *readptr++)
|
|
|
|
continue;
|
|
|
|
|
2020-11-18 21:02:44 +00:00
|
|
|
while(*readptr > ' ')
|
|
|
|
readptr++; // Skip parsing this hex value
|
|
|
|
if (' ' != *readptr++)
|
2020-11-17 17:04:30 +00:00
|
|
|
continue;
|
|
|
|
|
2020-11-28 16:06:06 +00:00
|
|
|
map_devmaj = fast_strtoull_hex(&readptr, 4);
|
2020-11-18 21:02:44 +00:00
|
|
|
if (':' != *readptr++)
|
2020-11-17 17:04:30 +00:00
|
|
|
continue;
|
|
|
|
|
2020-11-28 16:06:06 +00:00
|
|
|
map_devmin = fast_strtoull_hex(&readptr, 4);
|
2020-11-18 21:02:44 +00:00
|
|
|
if (' ' != *readptr++)
|
2020-11-17 17:04:30 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
//Minor shortcut: Once we know there's no file for this region, we skip
|
|
|
|
if (!map_devmaj && !map_devmin)
|
|
|
|
continue;
|
|
|
|
|
2020-11-18 21:02:44 +00:00
|
|
|
map_inode = fast_strtoull_dec(&readptr, 20);
|
2020-10-09 13:13:06 +00:00
|
|
|
if (!map_inode)
|
|
|
|
continue;
|
|
|
|
|
2020-11-17 17:04:30 +00:00
|
|
|
LibraryData* libdata = Hashtable_get(ht, map_inode);
|
2020-10-09 13:13:06 +00:00
|
|
|
if (!libdata) {
|
|
|
|
libdata = xCalloc(1, sizeof(LibraryData));
|
|
|
|
Hashtable_put(ht, map_inode, libdata);
|
|
|
|
}
|
|
|
|
|
|
|
|
libdata->size += map_end - map_start;
|
|
|
|
libdata->exec |= 'x' == map_perm[2];
|
|
|
|
}
|
|
|
|
|
2020-11-17 17:04:30 +00:00
|
|
|
fclose(mapsfile);
|
|
|
|
|
2020-10-09 13:13:06 +00:00
|
|
|
uint64_t total_size = 0;
|
|
|
|
Hashtable_foreach(ht, LinuxProcessList_calcLibSize_helper, &total_size);
|
|
|
|
|
|
|
|
Hashtable_delete(ht);
|
|
|
|
|
2020-12-10 00:57:48 +00:00
|
|
|
return total_size / pageSize;
|
2020-10-09 13:13:06 +00:00
|
|
|
}
|
|
|
|
|
2020-11-20 16:50:34 +00:00
|
|
|
static bool LinuxProcessList_readStatmFile(LinuxProcess* process, openat_arg_t procFd, bool performLookup, unsigned long long now) {
|
2020-11-17 18:46:12 +00:00
|
|
|
FILE* statmfile = fopenat(procFd, "statm", "r");
|
2020-09-28 10:01:56 +00:00
|
|
|
if (!statmfile)
|
2014-11-24 20:55:49 +00:00
|
|
|
return false;
|
2020-11-01 00:09:51 +00:00
|
|
|
|
2020-11-16 18:12:41 +00:00
|
|
|
long tmp_m_lrs = 0;
|
2020-09-28 10:01:56 +00:00
|
|
|
int r = fscanf(statmfile, "%ld %ld %ld %ld %ld %ld %ld",
|
2020-11-20 16:09:34 +00:00
|
|
|
&process->super.m_virt,
|
2020-09-28 10:01:56 +00:00
|
|
|
&process->super.m_resident,
|
|
|
|
&process->m_share,
|
|
|
|
&process->m_trs,
|
2020-11-16 18:12:41 +00:00
|
|
|
&tmp_m_lrs,
|
2020-09-28 10:01:56 +00:00
|
|
|
&process->m_drs,
|
|
|
|
&process->m_dt);
|
|
|
|
fclose(statmfile);
|
2020-11-16 18:12:41 +00:00
|
|
|
|
|
|
|
if (r == 7) {
|
2020-12-10 00:57:48 +00:00
|
|
|
process->super.m_virt *= pageSizeKB;
|
|
|
|
process->super.m_resident *= pageSizeKB;
|
|
|
|
|
2020-11-16 18:12:41 +00:00
|
|
|
if (tmp_m_lrs) {
|
|
|
|
process->m_lrs = tmp_m_lrs;
|
|
|
|
} else if (performLookup) {
|
|
|
|
// Check if we really should recalculate the M_LRS value for this process
|
2020-11-26 18:59:00 +00:00
|
|
|
uint64_t passedTimeInMs = now - process->last_mlrs_calctime;
|
2020-11-16 18:12:41 +00:00
|
|
|
|
2020-11-26 18:59:00 +00:00
|
|
|
uint64_t recheck = ((uint64_t)rand()) % 2048;
|
|
|
|
|
|
|
|
if(passedTimeInMs > 2000 || passedTimeInMs > recheck) {
|
|
|
|
process->last_mlrs_calctime = now;
|
2020-11-17 18:46:12 +00:00
|
|
|
process->m_lrs = LinuxProcessList_calcLibSize(procFd);
|
2020-11-16 18:12:41 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Keep previous value
|
|
|
|
}
|
2020-10-09 13:13:06 +00:00
|
|
|
}
|
2020-11-16 18:12:41 +00:00
|
|
|
|
2020-09-28 10:01:56 +00:00
|
|
|
return r == 7;
|
2014-11-24 20:55:49 +00:00
|
|
|
}
|
|
|
|
|
2020-11-20 16:50:34 +00:00
|
|
|
static bool LinuxProcessList_readSmapsFile(LinuxProcess* process, openat_arg_t procFd, bool haveSmapsRollup) {
|
2018-10-09 19:49:29 +00:00
|
|
|
//http://elixir.free-electrons.com/linux/v4.10/source/fs/proc/task_mmu.c#L719
|
|
|
|
//kernel will return data in chunks of size PAGE_SIZE or less.
|
2020-11-17 18:46:12 +00:00
|
|
|
FILE* f = fopenat(procFd, haveSmapsRollup ? "smaps_rollup" : "smaps", "r");
|
2020-10-27 18:30:05 +00:00
|
|
|
if (!f)
|
2018-10-09 19:49:29 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
process->m_pss = 0;
|
|
|
|
process->m_swap = 0;
|
|
|
|
process->m_psswp = 0;
|
|
|
|
|
2020-11-17 18:46:12 +00:00
|
|
|
char buffer[256];
|
2020-10-27 18:30:05 +00:00
|
|
|
while (fgets(buffer, sizeof(buffer), f)) {
|
2020-10-31 19:52:20 +00:00
|
|
|
if (!strchr(buffer, '\n')) {
|
2020-10-27 18:30:05 +00:00
|
|
|
// Partial line, skip to end of this line
|
2020-10-31 19:39:01 +00:00
|
|
|
while (fgets(buffer, sizeof(buffer), f)) {
|
2020-10-31 19:52:20 +00:00
|
|
|
if (strchr(buffer, '\n')) {
|
2020-10-27 18:30:05 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (String_startsWith(buffer, "Pss:")) {
|
|
|
|
process->m_pss += strtol(buffer + 4, NULL, 10);
|
|
|
|
} else if (String_startsWith(buffer, "Swap:")) {
|
|
|
|
process->m_swap += strtol(buffer + 5, NULL, 10);
|
|
|
|
} else if (String_startsWith(buffer, "SwapPss:")) {
|
|
|
|
process->m_psswp += strtol(buffer + 8, NULL, 10);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(f);
|
2018-10-09 19:49:29 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-11-24 20:55:49 +00:00
|
|
|
#ifdef HAVE_OPENVZ
|
|
|
|
|
2020-11-20 16:50:34 +00:00
|
|
|
static void LinuxProcessList_readOpenVZData(LinuxProcess* process, openat_arg_t procFd) {
|
2020-09-15 10:29:46 +00:00
|
|
|
if ( (access(PROCDIR "/vz", R_OK) != 0)) {
|
2020-09-30 21:46:52 +00:00
|
|
|
free(process->ctid);
|
|
|
|
process->ctid = NULL;
|
2015-05-13 18:00:58 +00:00
|
|
|
process->vpid = process->super.pid;
|
2014-11-24 20:55:49 +00:00
|
|
|
return;
|
|
|
|
}
|
2020-09-30 21:46:52 +00:00
|
|
|
|
2020-11-17 18:46:12 +00:00
|
|
|
FILE* file = fopenat(procFd, "status", "r");
|
2020-09-30 21:46:52 +00:00
|
|
|
if (!file) {
|
|
|
|
free(process->ctid);
|
|
|
|
process->ctid = NULL;
|
|
|
|
process->vpid = process->super.pid;
|
2014-11-24 20:55:49 +00:00
|
|
|
return;
|
2020-09-30 21:46:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool foundEnvID = false;
|
|
|
|
bool foundVPid = false;
|
|
|
|
char linebuf[256];
|
2020-10-31 19:39:01 +00:00
|
|
|
while (fgets(linebuf, sizeof(linebuf), file) != NULL) {
|
2020-10-31 19:52:20 +00:00
|
|
|
if (strchr(linebuf, '\n') == NULL) {
|
2020-09-30 21:46:52 +00:00
|
|
|
// Partial line, skip to end of this line
|
2020-10-31 19:39:01 +00:00
|
|
|
while (fgets(linebuf, sizeof(linebuf), file) != NULL) {
|
2020-10-31 19:52:20 +00:00
|
|
|
if (strchr(linebuf, '\n') != NULL) {
|
2020-09-30 21:46:52 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
char* name_value_sep = strchr(linebuf, ':');
|
2020-10-31 19:52:20 +00:00
|
|
|
if (name_value_sep == NULL) {
|
2020-09-30 21:46:52 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
int field;
|
2020-10-31 19:52:20 +00:00
|
|
|
if (0 == strncasecmp(linebuf, "envID", name_value_sep - linebuf)) {
|
2020-09-30 21:46:52 +00:00
|
|
|
field = 1;
|
2020-10-31 19:52:20 +00:00
|
|
|
} else if (0 == strncasecmp(linebuf, "VPid", name_value_sep - linebuf)) {
|
2020-09-30 21:46:52 +00:00
|
|
|
field = 2;
|
|
|
|
} else {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
do {
|
|
|
|
name_value_sep++;
|
2020-10-31 19:39:01 +00:00
|
|
|
} while (*name_value_sep != '\0' && *name_value_sep <= 32);
|
2020-09-30 21:46:52 +00:00
|
|
|
|
|
|
|
char* value_end = name_value_sep;
|
|
|
|
|
2020-11-15 13:16:23 +00:00
|
|
|
while(*value_end > 32) {
|
2020-09-30 21:46:52 +00:00
|
|
|
value_end++;
|
|
|
|
}
|
|
|
|
|
2020-10-31 19:52:20 +00:00
|
|
|
if (name_value_sep == value_end) {
|
2020-09-30 21:46:52 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
*value_end = '\0';
|
|
|
|
|
|
|
|
switch(field) {
|
|
|
|
case 1:
|
|
|
|
foundEnvID = true;
|
2020-10-31 19:52:20 +00:00
|
|
|
if (!String_eq(name_value_sep, process->ctid ? process->ctid : "")) {
|
2020-09-30 21:46:52 +00:00
|
|
|
free(process->ctid);
|
|
|
|
process->ctid = xStrdup(name_value_sep);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
foundVPid = true;
|
|
|
|
process->vpid = strtoul(name_value_sep, NULL, 0);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
//Sanity Check: Should never reach here, or the implementation is missing something!
|
|
|
|
assert(false && "OpenVZ handling: Unimplemented case for field handling reached.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-24 20:55:49 +00:00
|
|
|
fclose(file);
|
2020-09-30 21:46:52 +00:00
|
|
|
|
2020-10-31 19:52:20 +00:00
|
|
|
if (!foundEnvID) {
|
2020-09-30 21:46:52 +00:00
|
|
|
free(process->ctid);
|
|
|
|
process->ctid = NULL;
|
|
|
|
}
|
|
|
|
|
2020-10-31 19:52:20 +00:00
|
|
|
if (!foundVPid) {
|
2020-09-30 21:46:52 +00:00
|
|
|
process->vpid = process->super.pid;
|
|
|
|
}
|
2014-11-24 20:55:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2020-11-20 16:50:34 +00:00
|
|
|
static void LinuxProcessList_readCGroupFile(LinuxProcess* process, openat_arg_t procFd) {
|
2020-11-17 18:46:12 +00:00
|
|
|
FILE* file = fopenat(procFd, "cgroup", "r");
|
2014-11-24 20:55:49 +00:00
|
|
|
if (!file) {
|
2020-09-21 11:47:39 +00:00
|
|
|
if (process->cgroup) {
|
|
|
|
free(process->cgroup);
|
|
|
|
process->cgroup = NULL;
|
|
|
|
}
|
2014-11-24 20:55:49 +00:00
|
|
|
return;
|
|
|
|
}
|
2015-12-14 15:27:11 +00:00
|
|
|
char output[PROC_LINE_LENGTH + 1];
|
2015-03-08 22:47:49 +00:00
|
|
|
output[0] = '\0';
|
|
|
|
char* at = output;
|
2015-12-14 15:27:11 +00:00
|
|
|
int left = PROC_LINE_LENGTH;
|
2015-03-08 22:47:49 +00:00
|
|
|
while (!feof(file) && left > 0) {
|
2015-12-14 15:27:11 +00:00
|
|
|
char buffer[PROC_LINE_LENGTH + 1];
|
2020-10-31 22:28:02 +00:00
|
|
|
char* ok = fgets(buffer, PROC_LINE_LENGTH, file);
|
2020-11-01 00:09:51 +00:00
|
|
|
if (!ok)
|
|
|
|
break;
|
|
|
|
|
2015-03-08 22:47:49 +00:00
|
|
|
char* group = strchr(buffer, ':');
|
2020-11-01 00:09:51 +00:00
|
|
|
if (!group)
|
|
|
|
break;
|
|
|
|
|
2015-03-08 22:47:49 +00:00
|
|
|
if (at != output) {
|
|
|
|
*at = ';';
|
|
|
|
at++;
|
|
|
|
left--;
|
2014-11-24 20:55:49 +00:00
|
|
|
}
|
2017-08-01 22:48:43 +00:00
|
|
|
int wrote = snprintf(at, left, "%s", group);
|
2015-03-08 22:47:49 +00:00
|
|
|
left -= wrote;
|
2014-11-24 20:55:49 +00:00
|
|
|
}
|
|
|
|
fclose(file);
|
2015-03-08 22:47:49 +00:00
|
|
|
free(process->cgroup);
|
2016-02-02 14:53:02 +00:00
|
|
|
process->cgroup = xStrdup(output);
|
2014-11-24 20:55:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_VSERVER
|
|
|
|
|
2020-11-20 16:50:34 +00:00
|
|
|
static void LinuxProcessList_readVServerData(LinuxProcess* process, openat_arg_t procFd) {
|
2020-11-17 18:46:12 +00:00
|
|
|
FILE* file = fopenat(procFd, "status", "r");
|
2014-11-24 20:55:49 +00:00
|
|
|
if (!file)
|
|
|
|
return;
|
2020-11-01 00:09:51 +00:00
|
|
|
|
2015-12-14 15:27:11 +00:00
|
|
|
char buffer[PROC_LINE_LENGTH + 1];
|
2014-11-24 20:55:49 +00:00
|
|
|
process->vxid = 0;
|
2015-12-14 15:27:11 +00:00
|
|
|
while (fgets(buffer, PROC_LINE_LENGTH, file)) {
|
2014-11-24 20:55:49 +00:00
|
|
|
if (String_startsWith(buffer, "VxID:")) {
|
|
|
|
int vxid;
|
|
|
|
int ok = sscanf(buffer, "VxID:\t%32d", &vxid);
|
|
|
|
if (ok >= 1) {
|
|
|
|
process->vxid = vxid;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#if defined HAVE_ANCIENT_VSERVER
|
|
|
|
else if (String_startsWith(buffer, "s_context:")) {
|
|
|
|
int vxid;
|
|
|
|
int ok = sscanf(buffer, "s_context:\t%32d", &vxid);
|
|
|
|
if (ok >= 1) {
|
|
|
|
process->vxid = vxid;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
fclose(file);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2020-11-20 16:50:34 +00:00
|
|
|
static void LinuxProcessList_readOomData(LinuxProcess* process, openat_arg_t procFd) {
|
2020-11-17 18:46:12 +00:00
|
|
|
FILE* file = fopenat(procFd, "oom_score", "r");
|
|
|
|
if (!file)
|
2014-11-24 20:55:49 +00:00
|
|
|
return;
|
2020-11-17 18:46:12 +00:00
|
|
|
|
2015-12-14 15:27:11 +00:00
|
|
|
char buffer[PROC_LINE_LENGTH + 1];
|
|
|
|
if (fgets(buffer, PROC_LINE_LENGTH, file)) {
|
2014-11-24 20:55:49 +00:00
|
|
|
unsigned int oom;
|
2020-08-28 12:24:40 +00:00
|
|
|
int ok = sscanf(buffer, "%u", &oom);
|
2014-11-24 20:55:49 +00:00
|
|
|
if (ok >= 1) {
|
|
|
|
process->oom = oom;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fclose(file);
|
|
|
|
}
|
|
|
|
|
2020-11-20 16:50:34 +00:00
|
|
|
static void LinuxProcessList_readCtxtData(LinuxProcess* process, openat_arg_t procFd) {
|
2020-11-17 18:46:12 +00:00
|
|
|
FILE* file = fopenat(procFd, "status", "r");
|
2020-09-11 13:02:00 +00:00
|
|
|
if (!file)
|
|
|
|
return;
|
2020-11-01 00:09:51 +00:00
|
|
|
|
2020-09-11 13:02:00 +00:00
|
|
|
char buffer[PROC_LINE_LENGTH + 1];
|
|
|
|
unsigned long ctxt = 0;
|
|
|
|
while (fgets(buffer, PROC_LINE_LENGTH, file)) {
|
|
|
|
if (String_startsWith(buffer, "voluntary_ctxt_switches:")) {
|
|
|
|
unsigned long vctxt;
|
|
|
|
int ok = sscanf(buffer, "voluntary_ctxt_switches:\t%lu", &vctxt);
|
2020-11-01 00:09:51 +00:00
|
|
|
if (ok >= 1) {
|
2020-09-11 13:02:00 +00:00
|
|
|
ctxt += vctxt;
|
2020-11-01 00:09:51 +00:00
|
|
|
}
|
2020-09-11 13:02:00 +00:00
|
|
|
} else if (String_startsWith(buffer, "nonvoluntary_ctxt_switches:")) {
|
|
|
|
unsigned long nvctxt;
|
|
|
|
int ok = sscanf(buffer, "nonvoluntary_ctxt_switches:\t%lu", &nvctxt);
|
2020-11-01 00:09:51 +00:00
|
|
|
if (ok >= 1) {
|
2020-09-11 13:02:00 +00:00
|
|
|
ctxt += nvctxt;
|
2020-11-01 00:09:51 +00:00
|
|
|
}
|
2020-09-11 13:02:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
fclose(file);
|
|
|
|
process->ctxt_diff = (ctxt > process->ctxt_total) ? (ctxt - process->ctxt_total) : 0;
|
|
|
|
process->ctxt_total = ctxt;
|
|
|
|
}
|
|
|
|
|
2020-11-20 16:50:34 +00:00
|
|
|
static void LinuxProcessList_readSecattrData(LinuxProcess* process, openat_arg_t procFd) {
|
2020-11-17 18:46:12 +00:00
|
|
|
FILE* file = fopenat(procFd, "attr/current", "r");
|
2020-09-28 10:06:13 +00:00
|
|
|
if (!file) {
|
|
|
|
free(process->secattr);
|
|
|
|
process->secattr = NULL;
|
|
|
|
return;
|
|
|
|
}
|
2020-11-17 18:46:12 +00:00
|
|
|
|
2020-09-28 10:06:13 +00:00
|
|
|
char buffer[PROC_LINE_LENGTH + 1];
|
2020-10-31 22:28:02 +00:00
|
|
|
char* res = fgets(buffer, sizeof(buffer), file);
|
2020-09-28 10:06:13 +00:00
|
|
|
fclose(file);
|
|
|
|
if (!res) {
|
|
|
|
free(process->secattr);
|
|
|
|
process->secattr = NULL;
|
|
|
|
return;
|
|
|
|
}
|
2020-10-31 22:28:02 +00:00
|
|
|
char* newline = strchr(buffer, '\n');
|
2020-11-01 00:09:51 +00:00
|
|
|
if (newline) {
|
2020-09-28 10:06:13 +00:00
|
|
|
*newline = '\0';
|
2020-11-01 00:09:51 +00:00
|
|
|
}
|
|
|
|
if (process->secattr && String_eq(process->secattr, buffer)) {
|
2020-09-28 10:06:13 +00:00
|
|
|
return;
|
2020-11-01 00:09:51 +00:00
|
|
|
}
|
2020-09-28 10:06:13 +00:00
|
|
|
free(process->secattr);
|
|
|
|
process->secattr = xStrdup(buffer);
|
|
|
|
}
|
|
|
|
|
2020-11-26 16:51:54 +00:00
|
|
|
static void LinuxProcessList_readCwd(LinuxProcess* process, openat_arg_t procFd) {
|
2020-12-06 10:51:03 +00:00
|
|
|
char pathBuffer[PATH_MAX + 1] = {0};
|
2020-11-26 16:51:54 +00:00
|
|
|
|
|
|
|
#if defined(HAVE_READLINKAT) && defined(HAVE_OPENAT)
|
|
|
|
ssize_t r = readlinkat(procFd, "cwd", pathBuffer, sizeof(pathBuffer) - 1);
|
|
|
|
#else
|
|
|
|
char filename[MAX_NAME + 1];
|
|
|
|
xSnprintf(filename, sizeof(filename), "%s/cwd", procFd);
|
|
|
|
ssize_t r = readlink(filename, pathBuffer, sizeof(pathBuffer) - 1);
|
|
|
|
#endif
|
2020-12-06 10:51:03 +00:00
|
|
|
|
2020-11-26 16:51:54 +00:00
|
|
|
if (r < 0) {
|
|
|
|
free(process->cwd);
|
|
|
|
process->cwd = NULL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
pathBuffer[r] = '\0';
|
|
|
|
|
|
|
|
if (process->cwd && String_eq(process->cwd, pathBuffer))
|
|
|
|
return;
|
|
|
|
|
|
|
|
free(process->cwd);
|
|
|
|
process->cwd = xStrdup(pathBuffer);
|
|
|
|
}
|
|
|
|
|
2017-12-04 02:15:29 +00:00
|
|
|
#ifdef HAVE_DELAYACCT
|
|
|
|
|
2020-10-31 22:28:02 +00:00
|
|
|
static int handleNetlinkMsg(struct nl_msg* nlmsg, void* linuxProcess) {
|
|
|
|
struct nlmsghdr* nlhdr;
|
|
|
|
struct nlattr* nlattrs[TASKSTATS_TYPE_MAX + 1];
|
|
|
|
struct nlattr* nlattr;
|
2020-10-17 21:28:26 +00:00
|
|
|
struct taskstats stats;
|
2018-02-17 22:52:07 +00:00
|
|
|
int rem;
|
|
|
|
LinuxProcess* lp = (LinuxProcess*) linuxProcess;
|
2017-12-04 02:15:29 +00:00
|
|
|
|
2018-02-17 22:52:07 +00:00
|
|
|
nlhdr = nlmsg_hdr(nlmsg);
|
2017-12-04 02:15:29 +00:00
|
|
|
|
|
|
|
if (genlmsg_parse(nlhdr, 0, nlattrs, TASKSTATS_TYPE_MAX, NULL) < 0) {
|
|
|
|
return NL_SKIP;
|
2018-02-17 22:52:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((nlattr = nlattrs[TASKSTATS_TYPE_AGGR_PID]) || (nlattr = nlattrs[TASKSTATS_TYPE_NULL])) {
|
2020-10-17 21:28:26 +00:00
|
|
|
memcpy(&stats, nla_data(nla_next(nla_data(nlattr), &rem)), sizeof(stats));
|
|
|
|
assert(lp->super.pid == (pid_t)stats.ac_pid);
|
|
|
|
|
2020-11-21 23:59:00 +00:00
|
|
|
unsigned long long int timeDelta = stats.ac_etime * 1000 - lp->delay_read_time;
|
2020-10-31 22:28:02 +00:00
|
|
|
#define BOUNDS(x) (isnan(x) ? 0.0 : ((x) > 100) ? 100.0 : (x))
|
2020-10-31 19:08:44 +00:00
|
|
|
#define DELTAPERC(x,y) BOUNDS((float) ((x) - (y)) / timeDelta * 100)
|
2020-10-17 21:28:26 +00:00
|
|
|
lp->cpu_delay_percent = DELTAPERC(stats.cpu_delay_total, lp->cpu_delay_total);
|
|
|
|
lp->blkio_delay_percent = DELTAPERC(stats.blkio_delay_total, lp->blkio_delay_total);
|
|
|
|
lp->swapin_delay_percent = DELTAPERC(stats.swapin_delay_total, lp->swapin_delay_total);
|
2018-02-17 22:52:07 +00:00
|
|
|
#undef DELTAPERC
|
|
|
|
#undef BOUNDS
|
2020-10-31 22:28:02 +00:00
|
|
|
|
2020-10-17 21:28:26 +00:00
|
|
|
lp->swapin_delay_total = stats.swapin_delay_total;
|
|
|
|
lp->blkio_delay_total = stats.blkio_delay_total;
|
|
|
|
lp->cpu_delay_total = stats.cpu_delay_total;
|
2020-10-31 22:28:02 +00:00
|
|
|
lp->delay_read_time = stats.ac_etime * 1000;
|
2018-02-17 22:52:07 +00:00
|
|
|
}
|
|
|
|
return NL_OK;
|
2017-12-04 02:15:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void LinuxProcessList_readDelayAcctData(LinuxProcessList* this, LinuxProcess* process) {
|
2020-10-31 22:28:02 +00:00
|
|
|
struct nl_msg* msg;
|
2017-12-04 02:15:29 +00:00
|
|
|
|
|
|
|
if (nl_socket_modify_cb(this->netlink_socket, NL_CB_VALID, NL_CB_CUSTOM, handleNetlinkMsg, process) < 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! (msg = nlmsg_alloc())) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! genlmsg_put(msg, NL_AUTO_PID, NL_AUTO_SEQ, this->netlink_family, 0, NLM_F_REQUEST, TASKSTATS_CMD_GET, TASKSTATS_VERSION)) {
|
|
|
|
nlmsg_free(msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nla_put_u32(msg, TASKSTATS_CMD_ATTR_PID, process->super.pid) < 0) {
|
|
|
|
nlmsg_free(msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nl_send_sync(this->netlink_socket, msg) < 0) {
|
2020-09-18 15:04:01 +00:00
|
|
|
process->swapin_delay_percent = NAN;
|
|
|
|
process->blkio_delay_percent = NAN;
|
|
|
|
process->cpu_delay_percent = NAN;
|
2017-12-04 02:15:29 +00:00
|
|
|
return;
|
|
|
|
}
|
2019-10-31 16:39:12 +00:00
|
|
|
|
2017-12-04 02:15:29 +00:00
|
|
|
if (nl_recvmsgs_default(this->netlink_socket) < 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2016-02-02 14:56:52 +00:00
|
|
|
static void setCommand(Process* process, const char* command, int len) {
|
2016-02-13 04:18:28 +00:00
|
|
|
if (process->comm && process->commLen >= len) {
|
2016-02-02 14:56:52 +00:00
|
|
|
strncpy(process->comm, command, len + 1);
|
|
|
|
} else {
|
|
|
|
free(process->comm);
|
|
|
|
process->comm = xStrdup(command);
|
|
|
|
}
|
|
|
|
process->commLen = len;
|
|
|
|
}
|
|
|
|
|
2020-11-20 16:50:34 +00:00
|
|
|
static bool LinuxProcessList_readCmdlineFile(Process* process, openat_arg_t procFd) {
|
2020-10-31 22:28:02 +00:00
|
|
|
char command[4096 + 1]; // max cmdline length on Linux
|
2020-11-25 11:42:36 +00:00
|
|
|
ssize_t amtRead = xReadfileat(procFd, "cmdline", command, sizeof(command));
|
|
|
|
if (amtRead < 0)
|
|
|
|
return false;
|
2020-11-07 21:52:28 +00:00
|
|
|
|
2018-03-25 18:26:05 +00:00
|
|
|
if (amtRead == 0) {
|
2019-12-13 12:05:28 +00:00
|
|
|
if (process->state == 'Z') {
|
|
|
|
process->basenameOffset = 0;
|
|
|
|
} else {
|
|
|
|
((LinuxProcess*)process)->isKernelThread = true;
|
|
|
|
}
|
2018-03-25 18:26:05 +00:00
|
|
|
return true;
|
2016-08-24 21:11:10 +00:00
|
|
|
}
|
2020-11-07 21:52:28 +00:00
|
|
|
|
|
|
|
int tokenEnd = 0;
|
|
|
|
int tokenStart = 0;
|
|
|
|
int lastChar = 0;
|
|
|
|
bool argSepNUL = false;
|
|
|
|
bool argSepSpace = false;
|
|
|
|
|
2016-08-24 21:11:10 +00:00
|
|
|
for (int i = 0; i < amtRead; i++) {
|
2020-10-17 10:54:45 +00:00
|
|
|
/* newline used as delimiter - when forming the mergedCommand, newline is
|
|
|
|
* converted to space by LinuxProcess_makeCommandStr */
|
|
|
|
if (command[i] == '\0') {
|
|
|
|
command[i] = '\n';
|
2020-11-07 21:52:28 +00:00
|
|
|
} else {
|
|
|
|
/* Record some information for the argument parsing heuristic below. */
|
|
|
|
if (tokenEnd)
|
|
|
|
argSepNUL = true;
|
|
|
|
if (command[i] <= ' ')
|
|
|
|
argSepSpace = true;
|
2020-10-17 10:54:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (command[i] == '\n') {
|
2016-08-24 21:11:10 +00:00
|
|
|
if (tokenEnd == 0) {
|
|
|
|
tokenEnd = i;
|
2014-11-24 20:55:49 +00:00
|
|
|
}
|
2016-08-24 21:11:10 +00:00
|
|
|
} else {
|
2020-10-17 10:54:45 +00:00
|
|
|
/* htop considers the next character after the last / that is before
|
|
|
|
* basenameOffset, as the start of the basename in cmdline - see
|
|
|
|
* Process_writeCommand */
|
|
|
|
if (!tokenEnd && command[i] == '/') {
|
|
|
|
tokenStart = i + 1;
|
|
|
|
}
|
2016-08-24 21:11:10 +00:00
|
|
|
lastChar = i;
|
|
|
|
}
|
2014-11-24 20:55:49 +00:00
|
|
|
}
|
2020-11-07 21:52:28 +00:00
|
|
|
|
|
|
|
command[lastChar + 1] = '\0';
|
|
|
|
|
|
|
|
if (!argSepNUL && argSepSpace) {
|
|
|
|
/* Argument parsing heuristic.
|
|
|
|
*
|
|
|
|
* This heuristic is used for processes that rewrite their command line.
|
|
|
|
* Normally the command line is split by using NUL bytes between each argument.
|
|
|
|
* But some programs like chrome flatten this using spaces.
|
|
|
|
*
|
|
|
|
* This heuristic tries its best to undo this loss of information.
|
|
|
|
* To achieve this, we treat every character <= 32 as argument separators
|
|
|
|
* (i.e. all of ASCII control sequences and space).
|
|
|
|
* We then search for the basename of the cmdline in the first argument we found that way.
|
|
|
|
* As path names may contain we try to cross-validate if the path we got that way exists.
|
|
|
|
*/
|
|
|
|
|
|
|
|
tokenStart = tokenEnd = 0;
|
|
|
|
|
|
|
|
// From initial scan we know there's at least one space.
|
|
|
|
// Check if that's part of a filename for an existing file.
|
|
|
|
if (Compat_faccessat(AT_FDCWD, command, F_OK, AT_SYMLINK_NOFOLLOW) != 0) {
|
|
|
|
// If we reach here the path does not exist.
|
|
|
|
// Thus begin searching for the part of it that actually is.
|
|
|
|
|
|
|
|
int tokenArg0Start = 0;
|
|
|
|
|
|
|
|
for (int i = 0; i <= lastChar; i++) {
|
|
|
|
/* Any ASCII control or space used as delimiter */
|
|
|
|
char tmpCommandChar = command[i];
|
|
|
|
|
|
|
|
if (command[i] <= ' ') {
|
|
|
|
if (!tokenEnd) {
|
|
|
|
command[i] = '\0';
|
|
|
|
|
|
|
|
bool found = Compat_faccessat(AT_FDCWD, command, F_OK, AT_SYMLINK_NOFOLLOW) == 0;
|
|
|
|
|
|
|
|
// Restore if this wasn't it
|
|
|
|
command[i] = found ? '\n' : tmpCommandChar;
|
|
|
|
|
|
|
|
if (found)
|
|
|
|
tokenEnd = i;
|
|
|
|
if (!tokenArg0Start)
|
|
|
|
tokenArg0Start = tokenStart;
|
|
|
|
} else {
|
|
|
|
// Split on every further separator, regardless of path correctness
|
|
|
|
command[i] = '\n';
|
|
|
|
}
|
|
|
|
} else if (!tokenEnd) {
|
2020-12-02 15:06:19 +00:00
|
|
|
if (command[i] == '/' || (command[i] == '\\' && (!tokenStart || command[tokenStart - 1] == '\\'))) {
|
2020-11-07 21:52:28 +00:00
|
|
|
tokenStart = i + 1;
|
|
|
|
} else if (command[i] == ':' && (command[i + 1] != '/' && command[i + 1] != '\\')) {
|
|
|
|
tokenEnd = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!tokenEnd) {
|
|
|
|
tokenStart = tokenArg0Start;
|
|
|
|
|
|
|
|
// No token delimiter found, forcibly split
|
|
|
|
for (int i = 0; i <= lastChar; i++) {
|
|
|
|
if (command[i] <= ' ') {
|
|
|
|
command[i] = '\n';
|
|
|
|
if (!tokenEnd) {
|
|
|
|
tokenEnd = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-24 20:55:49 +00:00
|
|
|
if (tokenEnd == 0) {
|
2020-11-07 21:52:28 +00:00
|
|
|
tokenEnd = lastChar + 1;
|
2014-11-24 20:55:49 +00:00
|
|
|
}
|
2020-11-07 21:52:28 +00:00
|
|
|
|
2020-11-25 11:42:36 +00:00
|
|
|
LinuxProcess *lp = (LinuxProcess *)process;
|
2020-11-25 11:49:17 +00:00
|
|
|
lp->mergedCommand.maxLen = lastChar + 1; /* accommodate cmdline */
|
2020-12-02 15:11:35 +00:00
|
|
|
if (!process->comm || !String_eq(command, process->comm)) {
|
2020-10-17 10:54:45 +00:00
|
|
|
process->basenameOffset = tokenEnd;
|
|
|
|
setCommand(process, command, lastChar + 1);
|
|
|
|
lp->procCmdlineBasenameOffset = tokenStart;
|
|
|
|
lp->procCmdlineBasenameEnd = tokenEnd;
|
|
|
|
lp->mergedCommand.cmdlineChanged = true;
|
|
|
|
}
|
|
|
|
|
2020-11-25 11:49:17 +00:00
|
|
|
/* /proc/[pid]/comm could change, so should be updated */
|
2020-11-25 11:42:36 +00:00
|
|
|
if ((amtRead = xReadfileat(procFd, "comm", command, sizeof(command))) > 0) {
|
|
|
|
command[amtRead - 1] = '\0';
|
2020-11-25 11:49:17 +00:00
|
|
|
lp->mergedCommand.maxLen += amtRead - 1; /* accommodate comm */
|
2020-12-02 15:11:35 +00:00
|
|
|
if (!lp->procComm || !String_eq(command, lp->procComm)) {
|
2020-10-17 10:54:45 +00:00
|
|
|
free(lp->procComm);
|
|
|
|
lp->procComm = xStrdup(command);
|
|
|
|
lp->mergedCommand.commChanged = true;
|
|
|
|
}
|
|
|
|
} else if (lp->procComm) {
|
|
|
|
free(lp->procComm);
|
|
|
|
lp->procComm = NULL;
|
|
|
|
lp->mergedCommand.commChanged = true;
|
|
|
|
}
|
|
|
|
|
2020-11-17 18:46:12 +00:00
|
|
|
char filename[MAX_NAME + 1];
|
|
|
|
|
2020-11-25 11:49:17 +00:00
|
|
|
/* execve could change /proc/[pid]/exe, so procExe should be updated */
|
2020-11-20 16:50:34 +00:00
|
|
|
#if defined(HAVE_READLINKAT) && defined(HAVE_OPENAT)
|
|
|
|
amtRead = readlinkat(procFd, "exe", filename, sizeof(filename) - 1);
|
|
|
|
#else
|
|
|
|
char path[4096];
|
|
|
|
xSnprintf(path, sizeof(path), "%s/exe", procFd);
|
|
|
|
amtRead = readlink(path, filename, sizeof(filename) - 1);
|
|
|
|
#endif
|
|
|
|
if (amtRead > 0) {
|
2020-10-17 10:54:45 +00:00
|
|
|
filename[amtRead] = 0;
|
2020-11-25 11:49:17 +00:00
|
|
|
lp->mergedCommand.maxLen += amtRead; /* accommodate exe */
|
2020-12-02 15:11:35 +00:00
|
|
|
if (!lp->procExe || !String_eq(filename, lp->procExe)) {
|
2020-10-17 10:54:45 +00:00
|
|
|
free(lp->procExe);
|
|
|
|
lp->procExe = xStrdup(filename);
|
|
|
|
lp->procExeLen = amtRead;
|
|
|
|
/* exe is guaranteed to contain at least one /, but validate anyway */
|
|
|
|
while (amtRead && filename[--amtRead] != '/')
|
|
|
|
;
|
|
|
|
lp->procExeBasenameOffset = amtRead + 1;
|
|
|
|
lp->mergedCommand.exeChanged = true;
|
2020-11-23 21:55:56 +00:00
|
|
|
|
|
|
|
const char* deletedMarker = " (deleted)";
|
|
|
|
if (strlen(lp->procExe) > strlen(deletedMarker)) {
|
|
|
|
lp->procExeDeleted = String_eq(lp->procExe + strlen(lp->procExe) - strlen(deletedMarker), deletedMarker);
|
|
|
|
|
|
|
|
if (lp->procExeDeleted && strlen(lp->procExe) - strlen(deletedMarker) == 1 && lp->procExe[0] == '/') {
|
|
|
|
lp->procExeBasenameOffset = 0;
|
|
|
|
}
|
|
|
|
}
|
2020-10-17 10:54:45 +00:00
|
|
|
}
|
|
|
|
} else if (lp->procExe) {
|
|
|
|
free(lp->procExe);
|
|
|
|
lp->procExe = NULL;
|
|
|
|
lp->procExeLen = 0;
|
|
|
|
lp->procExeBasenameOffset = 0;
|
2020-11-23 21:55:56 +00:00
|
|
|
lp->procExeDeleted = false;
|
2020-10-17 10:54:45 +00:00
|
|
|
lp->mergedCommand.exeChanged = true;
|
|
|
|
}
|
2014-11-24 20:55:49 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-10-01 06:09:04 +00:00
|
|
|
static char* LinuxProcessList_updateTtyDevice(TtyDriver* ttyDrivers, unsigned int tty_nr) {
|
|
|
|
unsigned int maj = major(tty_nr);
|
|
|
|
unsigned int min = minor(tty_nr);
|
|
|
|
|
|
|
|
int i = -1;
|
|
|
|
for (;;) {
|
|
|
|
i++;
|
|
|
|
if ((!ttyDrivers[i].path) || maj < ttyDrivers[i].major) {
|
|
|
|
break;
|
2019-10-31 16:39:12 +00:00
|
|
|
}
|
2016-10-01 06:09:04 +00:00
|
|
|
if (maj > ttyDrivers[i].major) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (min < ttyDrivers[i].minorFrom) {
|
|
|
|
break;
|
2019-10-31 16:39:12 +00:00
|
|
|
}
|
2016-10-01 06:09:04 +00:00
|
|
|
if (min > ttyDrivers[i].minorTo) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
unsigned int idx = min - ttyDrivers[i].minorFrom;
|
|
|
|
struct stat sstat;
|
|
|
|
char* fullPath;
|
2020-10-31 19:55:36 +00:00
|
|
|
for (;;) {
|
2020-08-21 08:37:29 +00:00
|
|
|
xAsprintf(&fullPath, "%s/%d", ttyDrivers[i].path, idx);
|
2016-10-01 06:09:04 +00:00
|
|
|
int err = stat(fullPath, &sstat);
|
2020-11-01 00:09:51 +00:00
|
|
|
if (err == 0 && major(sstat.st_rdev) == maj && minor(sstat.st_rdev) == min) {
|
|
|
|
return fullPath;
|
|
|
|
}
|
2016-10-01 06:09:04 +00:00
|
|
|
free(fullPath);
|
2020-11-01 00:09:51 +00:00
|
|
|
|
2020-08-21 08:37:29 +00:00
|
|
|
xAsprintf(&fullPath, "%s%d", ttyDrivers[i].path, idx);
|
2016-10-01 06:09:04 +00:00
|
|
|
err = stat(fullPath, &sstat);
|
2020-11-01 00:09:51 +00:00
|
|
|
if (err == 0 && major(sstat.st_rdev) == maj && minor(sstat.st_rdev) == min) {
|
|
|
|
return fullPath;
|
|
|
|
}
|
2016-10-01 06:09:04 +00:00
|
|
|
free(fullPath);
|
2020-11-01 00:09:51 +00:00
|
|
|
|
|
|
|
if (idx == min) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2016-10-01 06:09:04 +00:00
|
|
|
idx = min;
|
|
|
|
}
|
|
|
|
int err = stat(ttyDrivers[i].path, &sstat);
|
2020-11-01 00:09:51 +00:00
|
|
|
if (err == 0 && tty_nr == sstat.st_rdev) {
|
|
|
|
return xStrdup(ttyDrivers[i].path);
|
|
|
|
}
|
2016-10-01 06:09:04 +00:00
|
|
|
}
|
|
|
|
char* out;
|
2020-08-21 08:37:29 +00:00
|
|
|
xAsprintf(&out, "/dev/%u:%u", maj, min);
|
2016-10-01 06:09:04 +00:00
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2020-11-20 16:50:34 +00:00
|
|
|
static bool LinuxProcessList_recurseProcTree(LinuxProcessList* this, openat_arg_t parentFd, const char* dirname, const Process* parent, double period, unsigned long long now) {
|
2015-03-16 06:25:43 +00:00
|
|
|
ProcessList* pl = (ProcessList*) this;
|
2020-11-15 19:09:50 +00:00
|
|
|
const struct dirent* entry;
|
2020-10-21 19:26:09 +00:00
|
|
|
const Settings* settings = pl->settings;
|
2014-11-24 20:55:49 +00:00
|
|
|
|
2020-11-20 16:50:34 +00:00
|
|
|
#ifdef HAVE_OPENAT
|
|
|
|
int dirFd = openat(parentFd, dirname, O_RDONLY | O_DIRECTORY | O_NOFOLLOW);
|
|
|
|
if (dirFd < 0)
|
|
|
|
return false;
|
2020-11-17 18:46:12 +00:00
|
|
|
DIR* dir = fdopendir(dirFd);
|
2020-11-20 16:50:34 +00:00
|
|
|
#else
|
|
|
|
char dirFd[4096];
|
|
|
|
xSnprintf(dirFd, sizeof(dirFd), "%s/%s", parentFd, dirname);
|
|
|
|
DIR* dir = opendir(dirFd);
|
|
|
|
#endif
|
2020-11-17 18:46:12 +00:00
|
|
|
if (!dir) {
|
2020-11-20 16:50:34 +00:00
|
|
|
Compat_openatArgClose(dirFd);
|
2020-11-01 00:09:51 +00:00
|
|
|
return false;
|
2020-11-17 18:46:12 +00:00
|
|
|
}
|
2020-11-01 00:09:51 +00:00
|
|
|
|
2015-03-17 02:01:48 +00:00
|
|
|
int cpus = pl->cpuCount;
|
2015-01-22 01:27:31 +00:00
|
|
|
bool hideKernelThreads = settings->hideKernelThreads;
|
|
|
|
bool hideUserlandThreads = settings->hideUserlandThreads;
|
2014-11-24 20:55:49 +00:00
|
|
|
while ((entry = readdir(dir)) != NULL) {
|
2020-11-15 19:09:50 +00:00
|
|
|
const char* name = entry->d_name;
|
|
|
|
|
|
|
|
// Ignore all non-directories
|
|
|
|
if (entry->d_type != DT_DIR && entry->d_type != DT_UNKNOWN) {
|
|
|
|
continue;
|
|
|
|
}
|
2014-11-24 20:55:49 +00:00
|
|
|
|
|
|
|
// The RedHat kernel hides threads with a dot.
|
|
|
|
// I believe this is non-standard.
|
2020-11-15 19:07:24 +00:00
|
|
|
if (name[0] == '.') {
|
2014-11-24 20:55:49 +00:00
|
|
|
name++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Just skip all non-number directories.
|
|
|
|
if (name[0] < '0' || name[0] > '9') {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// filename is a number: process directory
|
|
|
|
int pid = atoi(name);
|
2019-10-31 16:39:12 +00:00
|
|
|
|
2020-11-17 18:46:12 +00:00
|
|
|
if (pid <= 0)
|
2014-11-24 20:55:49 +00:00
|
|
|
continue;
|
|
|
|
|
2020-11-17 18:46:12 +00:00
|
|
|
if (parent && pid == parent->pid)
|
2014-11-24 20:55:49 +00:00
|
|
|
continue;
|
|
|
|
|
2020-11-17 18:46:12 +00:00
|
|
|
bool preExisting;
|
2020-10-21 19:26:05 +00:00
|
|
|
Process* proc = ProcessList_getProcess(pl, pid, &preExisting, LinuxProcess_new);
|
2020-11-17 18:46:12 +00:00
|
|
|
LinuxProcess* lp = (LinuxProcess*) proc;
|
|
|
|
|
2015-03-17 02:01:48 +00:00
|
|
|
proc->tgid = parent ? parent->pid : pid;
|
2019-10-31 16:39:12 +00:00
|
|
|
|
2020-11-20 16:50:34 +00:00
|
|
|
#ifdef HAVE_OPENAT
|
2020-11-29 11:46:25 +00:00
|
|
|
int procFd = openat(dirFd, entry->d_name, O_PATH | O_DIRECTORY | O_NOFOLLOW);
|
2020-11-17 18:46:12 +00:00
|
|
|
if (procFd < 0)
|
|
|
|
goto errorReadingProcess;
|
2020-11-20 16:50:34 +00:00
|
|
|
#else
|
|
|
|
char procFd[4096];
|
2020-11-29 11:46:25 +00:00
|
|
|
xSnprintf(procFd, sizeof(procFd), "%s/%s", dirFd, entry->d_name);
|
2020-11-20 16:50:34 +00:00
|
|
|
#endif
|
2014-11-24 20:55:49 +00:00
|
|
|
|
2020-11-20 16:50:34 +00:00
|
|
|
LinuxProcessList_recurseProcTree(this, procFd, "task", proc, period, now);
|
2014-11-24 20:55:49 +00:00
|
|
|
|
2020-11-19 14:15:02 +00:00
|
|
|
/*
|
2020-11-24 10:46:17 +00:00
|
|
|
* These conditions will not trigger on first occurrence, cause we need to
|
2020-11-19 14:15:02 +00:00
|
|
|
* add the process to the ProcessList and do all one time scans
|
|
|
|
* (e.g. parsing the cmdline to detect a kernel thread)
|
|
|
|
* But it will short-circuit subsequent scans.
|
|
|
|
*/
|
|
|
|
if (preExisting && hideKernelThreads && Process_isKernelThread(proc)) {
|
|
|
|
proc->updated = true;
|
|
|
|
proc->show = false;
|
|
|
|
pl->kernelThreads++;
|
|
|
|
pl->totalTasks++;
|
2020-11-20 16:50:34 +00:00
|
|
|
Compat_openatArgClose(procFd);
|
2020-11-19 14:15:02 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (preExisting && hideUserlandThreads && Process_isUserlandThread(proc)) {
|
|
|
|
proc->updated = true;
|
|
|
|
proc->show = false;
|
|
|
|
pl->userlandThreads++;
|
|
|
|
pl->totalTasks++;
|
2020-11-20 16:50:34 +00:00
|
|
|
Compat_openatArgClose(procFd);
|
2020-11-19 14:15:02 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2015-01-22 01:27:31 +00:00
|
|
|
if (settings->flags & PROCESS_FLAG_IO)
|
2020-11-17 18:46:12 +00:00
|
|
|
LinuxProcessList_readIoFile(lp, procFd, now);
|
2014-11-24 20:55:49 +00:00
|
|
|
|
2020-11-17 18:46:12 +00:00
|
|
|
if (!LinuxProcessList_readStatmFile(lp, procFd, !!(settings->flags & PROCESS_FLAG_LINUX_LRS_FIX), now))
|
2014-11-24 20:55:49 +00:00
|
|
|
goto errorReadingProcess;
|
|
|
|
|
2020-10-31 22:28:02 +00:00
|
|
|
if ((settings->flags & PROCESS_FLAG_LINUX_SMAPS) && !Process_isKernelThread(proc)) {
|
|
|
|
if (!parent) {
|
2018-10-09 19:49:29 +00:00
|
|
|
// Read smaps file of each process only every second pass to improve performance
|
|
|
|
static int smaps_flag = 0;
|
2020-10-31 22:28:02 +00:00
|
|
|
if ((pid & 1) == smaps_flag) {
|
2020-11-17 18:46:12 +00:00
|
|
|
LinuxProcessList_readSmapsFile(lp, procFd, this->haveSmapsRollup);
|
2018-10-09 19:49:29 +00:00
|
|
|
}
|
|
|
|
if (pid == 1) {
|
|
|
|
smaps_flag = !smaps_flag;
|
|
|
|
}
|
2020-10-31 20:10:12 +00:00
|
|
|
} else {
|
2020-11-25 21:14:35 +00:00
|
|
|
lp->m_pss = ((const LinuxProcess*)parent)->m_pss;
|
2020-10-31 20:10:12 +00:00
|
|
|
}
|
2018-10-09 19:49:29 +00:00
|
|
|
}
|
|
|
|
|
2020-10-31 22:28:02 +00:00
|
|
|
char command[MAX_NAME + 1];
|
2015-03-16 04:43:04 +00:00
|
|
|
unsigned long long int lasttimes = (lp->utime + lp->stime);
|
2020-09-15 17:55:21 +00:00
|
|
|
int commLen = sizeof(command);
|
2016-10-01 06:09:04 +00:00
|
|
|
unsigned int tty_nr = proc->tty_nr;
|
2020-11-17 18:46:12 +00:00
|
|
|
if (! LinuxProcessList_readStatFile(proc, procFd, command, &commLen))
|
2014-11-24 20:55:49 +00:00
|
|
|
goto errorReadingProcess;
|
2020-11-01 00:09:51 +00:00
|
|
|
|
2016-10-01 06:09:04 +00:00
|
|
|
if (tty_nr != proc->tty_nr && this->ttyDrivers) {
|
|
|
|
free(lp->ttyDevice);
|
|
|
|
lp->ttyDevice = LinuxProcessList_updateTtyDevice(this->ttyDrivers, proc->tty_nr);
|
|
|
|
}
|
2020-11-01 00:09:51 +00:00
|
|
|
|
|
|
|
if (settings->flags & PROCESS_FLAG_LINUX_IOPRIO) {
|
2015-03-16 04:43:04 +00:00
|
|
|
LinuxProcess_updateIOPriority(lp);
|
2020-11-01 00:09:51 +00:00
|
|
|
}
|
|
|
|
|
2020-11-29 13:03:48 +00:00
|
|
|
/* period might be 0 after system sleep */
|
|
|
|
float percent_cpu = (period < 1e-6) ? 0.0f : ((lp->utime + lp->stime - lasttimes) / period * 100.0);
|
|
|
|
proc->percent_cpu = CLAMP(percent_cpu, 0.0f, cpus * 100.0f);
|
2020-12-10 00:57:48 +00:00
|
|
|
proc->percent_mem = proc->m_resident / (double)(pl->totalMem) * 100.0;
|
2014-11-24 20:55:49 +00:00
|
|
|
|
2020-10-31 19:52:20 +00:00
|
|
|
if (!preExisting) {
|
2014-11-24 20:55:49 +00:00
|
|
|
|
2020-11-17 18:46:12 +00:00
|
|
|
if (! LinuxProcessList_statProcessDir(proc, procFd))
|
2014-11-24 20:55:49 +00:00
|
|
|
goto errorReadingProcess;
|
|
|
|
|
2015-03-17 02:01:48 +00:00
|
|
|
proc->user = UsersTable_getRef(pl->usersTable, proc->st_uid);
|
2014-11-24 20:55:49 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_OPENVZ
|
2015-05-13 18:00:58 +00:00
|
|
|
if (settings->flags & PROCESS_FLAG_LINUX_OPENVZ) {
|
2020-11-17 18:46:12 +00:00
|
|
|
LinuxProcessList_readOpenVZData(lp, procFd);
|
2015-05-13 18:00:58 +00:00
|
|
|
}
|
2014-11-24 20:55:49 +00:00
|
|
|
#endif
|
2019-10-31 16:39:12 +00:00
|
|
|
|
2014-11-24 20:55:49 +00:00
|
|
|
#ifdef HAVE_VSERVER
|
2015-05-13 18:00:58 +00:00
|
|
|
if (settings->flags & PROCESS_FLAG_LINUX_VSERVER) {
|
2020-11-17 18:46:12 +00:00
|
|
|
LinuxProcessList_readVServerData(lp, procFd);
|
2015-05-13 18:00:58 +00:00
|
|
|
}
|
2014-11-24 20:55:49 +00:00
|
|
|
#endif
|
|
|
|
|
2020-11-17 18:46:12 +00:00
|
|
|
if (! LinuxProcessList_readCmdlineFile(proc, procFd)) {
|
2014-11-24 20:55:49 +00:00
|
|
|
goto errorReadingProcess;
|
2015-05-13 18:00:58 +00:00
|
|
|
}
|
2014-11-24 20:55:49 +00:00
|
|
|
|
2020-10-13 12:26:40 +00:00
|
|
|
Process_fillStarttimeBuffer(proc);
|
2020-10-12 10:51:18 +00:00
|
|
|
|
2015-03-17 02:01:48 +00:00
|
|
|
ProcessList_add(pl, proc);
|
2014-11-24 20:55:49 +00:00
|
|
|
} else {
|
2016-02-19 22:51:57 +00:00
|
|
|
if (settings->updateProcessNames && proc->state != 'Z') {
|
2020-11-17 18:46:12 +00:00
|
|
|
if (! LinuxProcessList_readCmdlineFile(proc, procFd)) {
|
2014-11-24 20:55:49 +00:00
|
|
|
goto errorReadingProcess;
|
2015-05-13 18:00:58 +00:00
|
|
|
}
|
2014-11-24 20:55:49 +00:00
|
|
|
}
|
|
|
|
}
|
2020-10-17 10:54:45 +00:00
|
|
|
/* (Re)Generate the Command string, but only if the process is:
|
|
|
|
* - not a kernel thread, and
|
|
|
|
* - not a zombie or it became zombie under htop's watch, and
|
|
|
|
* - not a user thread or if showThreadNames is not set */
|
|
|
|
if (!Process_isKernelThread(proc) &&
|
|
|
|
(proc->state != 'Z' || lp->mergedCommand.str) &&
|
|
|
|
(!Process_isUserlandThread(proc) || !settings->showThreadNames)) {
|
|
|
|
LinuxProcess_makeCommandStr(proc);
|
|
|
|
}
|
2014-11-24 20:55:49 +00:00
|
|
|
|
2017-12-04 02:15:29 +00:00
|
|
|
#ifdef HAVE_DELAYACCT
|
|
|
|
LinuxProcessList_readDelayAcctData(this, lp);
|
|
|
|
#endif
|
|
|
|
|
2020-11-01 00:09:51 +00:00
|
|
|
if (settings->flags & PROCESS_FLAG_LINUX_CGROUP) {
|
2020-11-17 18:46:12 +00:00
|
|
|
LinuxProcessList_readCGroupFile(lp, procFd);
|
2020-11-01 00:09:51 +00:00
|
|
|
}
|
2019-10-31 16:39:12 +00:00
|
|
|
|
2020-11-01 00:09:51 +00:00
|
|
|
if (settings->flags & PROCESS_FLAG_LINUX_OOM) {
|
2020-11-17 18:46:12 +00:00
|
|
|
LinuxProcessList_readOomData(lp, procFd);
|
2020-11-01 00:09:51 +00:00
|
|
|
}
|
2014-11-24 20:55:49 +00:00
|
|
|
|
2020-11-01 00:09:51 +00:00
|
|
|
if (settings->flags & PROCESS_FLAG_LINUX_CTXT) {
|
2020-11-17 18:46:12 +00:00
|
|
|
LinuxProcessList_readCtxtData(lp, procFd);
|
2020-11-01 00:09:51 +00:00
|
|
|
}
|
2020-09-11 13:02:00 +00:00
|
|
|
|
2020-11-01 00:09:51 +00:00
|
|
|
if (settings->flags & PROCESS_FLAG_LINUX_SECATTR) {
|
2020-11-17 18:46:12 +00:00
|
|
|
LinuxProcessList_readSecattrData(lp, procFd);
|
2020-11-01 00:09:51 +00:00
|
|
|
}
|
2020-09-28 10:06:13 +00:00
|
|
|
|
2020-11-26 16:51:54 +00:00
|
|
|
if (settings->flags & PROCESS_FLAG_LINUX_CWD) {
|
|
|
|
LinuxProcessList_readCwd(lp, procFd);
|
|
|
|
}
|
|
|
|
|
2016-02-19 22:51:57 +00:00
|
|
|
if (proc->state == 'Z' && (proc->basenameOffset == 0)) {
|
2015-03-16 04:43:04 +00:00
|
|
|
proc->basenameOffset = -1;
|
2016-02-02 14:56:52 +00:00
|
|
|
setCommand(proc, command, commLen);
|
2015-03-16 04:43:04 +00:00
|
|
|
} else if (Process_isThread(proc)) {
|
2016-02-19 22:51:57 +00:00
|
|
|
if (settings->showThreadNames || Process_isKernelThread(proc) || (proc->state == 'Z' && proc->basenameOffset == 0)) {
|
2015-03-16 04:43:04 +00:00
|
|
|
proc->basenameOffset = -1;
|
2016-02-02 14:56:52 +00:00
|
|
|
setCommand(proc, command, commLen);
|
2015-01-22 01:27:31 +00:00
|
|
|
} else if (settings->showThreadNames) {
|
2020-11-17 18:46:12 +00:00
|
|
|
if (! LinuxProcessList_readCmdlineFile(proc, procFd)) {
|
2014-11-24 20:55:49 +00:00
|
|
|
goto errorReadingProcess;
|
2020-11-01 00:09:51 +00:00
|
|
|
}
|
2014-11-24 20:55:49 +00:00
|
|
|
}
|
2015-03-16 04:43:04 +00:00
|
|
|
if (Process_isKernelThread(proc)) {
|
2015-03-17 02:03:40 +00:00
|
|
|
pl->kernelThreads++;
|
2014-11-24 20:55:49 +00:00
|
|
|
} else {
|
2015-03-17 02:03:40 +00:00
|
|
|
pl->userlandThreads++;
|
2014-11-24 20:55:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-23 13:44:31 +00:00
|
|
|
/* Set at the end when we know if a new entry is a thread */
|
|
|
|
proc->show = ! ((hideKernelThreads && Process_isKernelThread(proc)) || (hideUserlandThreads && Process_isUserlandThread(proc)));
|
|
|
|
|
2015-03-17 02:03:40 +00:00
|
|
|
pl->totalTasks++;
|
2015-03-16 04:43:04 +00:00
|
|
|
if (proc->state == 'R')
|
2015-03-17 02:03:40 +00:00
|
|
|
pl->runningTasks++;
|
2015-03-16 04:43:04 +00:00
|
|
|
proc->updated = true;
|
2020-11-20 16:50:34 +00:00
|
|
|
Compat_openatArgClose(procFd);
|
2014-11-24 20:55:49 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
// Exception handler.
|
2020-10-31 21:14:27 +00:00
|
|
|
|
|
|
|
errorReadingProcess:
|
|
|
|
{
|
2020-11-20 16:50:34 +00:00
|
|
|
#ifdef HAVE_OPENAT
|
2020-11-17 18:46:12 +00:00
|
|
|
if (procFd >= 0)
|
|
|
|
close(procFd);
|
2020-11-20 16:50:34 +00:00
|
|
|
#endif
|
2020-11-17 18:46:12 +00:00
|
|
|
|
2015-03-17 02:01:48 +00:00
|
|
|
if (preExisting) {
|
2015-03-17 02:03:40 +00:00
|
|
|
ProcessList_remove(pl, proc);
|
2015-03-17 02:01:48 +00:00
|
|
|
} else {
|
2015-03-16 04:43:04 +00:00
|
|
|
Process_delete((Object*)proc);
|
2015-03-17 02:01:48 +00:00
|
|
|
}
|
2014-11-24 20:55:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
closedir(dir);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-03-16 06:25:43 +00:00
|
|
|
static inline void LinuxProcessList_scanMemoryInfo(ProcessList* this) {
|
2020-11-27 02:22:21 +00:00
|
|
|
unsigned long long int freeMem = 0;
|
2014-11-27 18:31:42 +00:00
|
|
|
unsigned long long int swapFree = 0;
|
2015-11-29 00:22:00 +00:00
|
|
|
unsigned long long int shmem = 0;
|
|
|
|
unsigned long long int sreclaimable = 0;
|
2014-11-27 18:31:42 +00:00
|
|
|
|
2014-11-24 20:55:49 +00:00
|
|
|
FILE* file = fopen(PROCMEMINFOFILE, "r");
|
|
|
|
if (file == NULL) {
|
|
|
|
CRT_fatalError("Cannot open " PROCMEMINFOFILE);
|
|
|
|
}
|
2014-11-27 18:31:42 +00:00
|
|
|
char buffer[128];
|
|
|
|
while (fgets(buffer, 128, file)) {
|
|
|
|
|
2020-10-31 19:18:40 +00:00
|
|
|
#define tryRead(label, variable) \
|
|
|
|
if (String_startsWith(buffer, label)) { \
|
|
|
|
sscanf(buffer + strlen(label), " %32llu kB", variable); \
|
|
|
|
break; \
|
|
|
|
}
|
|
|
|
|
2014-11-27 18:31:42 +00:00
|
|
|
switch (buffer[0]) {
|
|
|
|
case 'M':
|
2019-02-10 11:32:47 +00:00
|
|
|
tryRead("MemTotal:", &this->totalMem);
|
2020-11-27 02:22:21 +00:00
|
|
|
tryRead("MemFree:", &freeMem);
|
2014-11-27 18:31:42 +00:00
|
|
|
break;
|
|
|
|
case 'B':
|
2019-02-10 11:32:47 +00:00
|
|
|
tryRead("Buffers:", &this->buffersMem);
|
2014-11-27 18:31:42 +00:00
|
|
|
break;
|
|
|
|
case 'C':
|
2019-02-10 11:32:47 +00:00
|
|
|
tryRead("Cached:", &this->cachedMem);
|
2014-11-27 18:31:42 +00:00
|
|
|
break;
|
|
|
|
case 'S':
|
2015-11-29 00:22:00 +00:00
|
|
|
switch (buffer[1]) {
|
|
|
|
case 'w':
|
2019-02-10 11:32:47 +00:00
|
|
|
tryRead("SwapTotal:", &this->totalSwap);
|
|
|
|
tryRead("SwapFree:", &swapFree);
|
2015-11-29 00:22:00 +00:00
|
|
|
break;
|
|
|
|
case 'h':
|
2019-02-10 11:32:47 +00:00
|
|
|
tryRead("Shmem:", &shmem);
|
2015-11-29 00:22:00 +00:00
|
|
|
break;
|
|
|
|
case 'R':
|
2019-02-10 11:32:47 +00:00
|
|
|
tryRead("SReclaimable:", &sreclaimable);
|
2015-11-29 00:22:00 +00:00
|
|
|
break;
|
|
|
|
}
|
2014-11-27 18:31:42 +00:00
|
|
|
break;
|
2014-11-24 20:55:49 +00:00
|
|
|
}
|
2015-11-29 00:22:00 +00:00
|
|
|
#undef tryRead
|
2014-11-24 20:55:49 +00:00
|
|
|
}
|
|
|
|
|
2020-11-27 02:22:21 +00:00
|
|
|
this->usedMem = this->totalMem - freeMem;
|
2015-11-30 01:55:31 +00:00
|
|
|
this->cachedMem = this->cachedMem + sreclaimable - shmem;
|
2014-11-24 20:55:49 +00:00
|
|
|
this->usedSwap = this->totalSwap - swapFree;
|
|
|
|
fclose(file);
|
2014-11-27 18:28:32 +00:00
|
|
|
}
|
2014-11-24 20:55:49 +00:00
|
|
|
|
2020-09-22 11:54:15 +00:00
|
|
|
static inline void LinuxProcessList_scanZramInfo(LinuxProcessList* this) {
|
|
|
|
unsigned long long int totalZram = 0;
|
|
|
|
unsigned long long int usedZramComp = 0;
|
|
|
|
unsigned long long int usedZramOrig = 0;
|
|
|
|
|
|
|
|
char mm_stat[34];
|
|
|
|
char disksize[34];
|
|
|
|
|
|
|
|
unsigned int i = 0;
|
2020-10-31 19:55:36 +00:00
|
|
|
for (;;) {
|
2020-09-22 11:54:15 +00:00
|
|
|
xSnprintf(mm_stat, sizeof(mm_stat), "/sys/block/zram%u/mm_stat", i);
|
|
|
|
xSnprintf(disksize, sizeof(disksize), "/sys/block/zram%u/disksize", i);
|
|
|
|
i++;
|
|
|
|
FILE* disksize_file = fopen(disksize, "r");
|
|
|
|
FILE* mm_stat_file = fopen(mm_stat, "r");
|
|
|
|
if (disksize_file == NULL || mm_stat_file == NULL) {
|
|
|
|
if (disksize_file) {
|
|
|
|
fclose(disksize_file);
|
|
|
|
}
|
|
|
|
if (mm_stat_file) {
|
|
|
|
fclose(mm_stat_file);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
unsigned long long int size = 0;
|
|
|
|
unsigned long long int orig_data_size = 0;
|
|
|
|
unsigned long long int compr_data_size = 0;
|
|
|
|
|
|
|
|
if (!fscanf(disksize_file, "%llu\n", &size) ||
|
|
|
|
!fscanf(mm_stat_file, " %llu %llu", &orig_data_size, &compr_data_size)) {
|
|
|
|
fclose(disksize_file);
|
|
|
|
fclose(mm_stat_file);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
totalZram += size;
|
|
|
|
usedZramComp += compr_data_size;
|
|
|
|
usedZramOrig += orig_data_size;
|
|
|
|
|
|
|
|
fclose(disksize_file);
|
|
|
|
fclose(mm_stat_file);
|
|
|
|
}
|
|
|
|
|
|
|
|
this->zram.totalZram = totalZram / 1024;
|
|
|
|
this->zram.usedZramComp = usedZramComp / 1024;
|
|
|
|
this->zram.usedZramOrig = usedZramOrig / 1024;
|
|
|
|
}
|
|
|
|
|
2019-07-07 02:37:02 +00:00
|
|
|
static inline void LinuxProcessList_scanZfsArcstats(LinuxProcessList* lpl) {
|
2020-08-28 13:31:16 +00:00
|
|
|
unsigned long long int dbufSize = 0;
|
|
|
|
unsigned long long int dnodeSize = 0;
|
|
|
|
unsigned long long int bonusSize = 0;
|
2019-07-07 02:37:02 +00:00
|
|
|
|
|
|
|
FILE* file = fopen(PROCARCSTATSFILE, "r");
|
|
|
|
if (file == NULL) {
|
2019-07-07 23:27:00 +00:00
|
|
|
lpl->zfs.enabled = 0;
|
2019-07-07 02:37:02 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
char buffer[128];
|
|
|
|
while (fgets(buffer, 128, file)) {
|
2020-10-31 19:18:40 +00:00
|
|
|
#define tryRead(label, variable) \
|
|
|
|
if (String_startsWith(buffer, label)) { \
|
|
|
|
sscanf(buffer + strlen(label), " %*2u %32llu", variable); \
|
|
|
|
break; \
|
|
|
|
}
|
|
|
|
#define tryReadFlag(label, variable, flag) \
|
|
|
|
if (String_startsWith(buffer, label)) { \
|
|
|
|
(flag) = sscanf(buffer + strlen(label), " %*2u %32llu", variable); \
|
|
|
|
break; \
|
|
|
|
}
|
|
|
|
|
2019-07-07 02:37:02 +00:00
|
|
|
switch (buffer[0]) {
|
|
|
|
case 'c':
|
2019-07-07 23:27:00 +00:00
|
|
|
tryRead("c_max", &lpl->zfs.max);
|
2019-09-03 19:56:38 +00:00
|
|
|
tryReadFlag("compressed_size", &lpl->zfs.compressed, lpl->zfs.isCompressed);
|
2019-09-03 18:26:02 +00:00
|
|
|
break;
|
|
|
|
case 'u':
|
2019-09-03 19:56:38 +00:00
|
|
|
tryRead("uncompressed_size", &lpl->zfs.uncompressed);
|
2019-07-07 02:37:02 +00:00
|
|
|
break;
|
|
|
|
case 's':
|
2019-07-07 23:27:00 +00:00
|
|
|
tryRead("size", &lpl->zfs.size);
|
2019-07-07 02:37:02 +00:00
|
|
|
break;
|
|
|
|
case 'h':
|
2019-07-07 23:27:00 +00:00
|
|
|
tryRead("hdr_size", &lpl->zfs.header);
|
2019-07-07 02:37:02 +00:00
|
|
|
break;
|
|
|
|
case 'd':
|
|
|
|
tryRead("dbuf_size", &dbufSize);
|
|
|
|
tryRead("dnode_size", &dnodeSize);
|
|
|
|
break;
|
|
|
|
case 'b':
|
|
|
|
tryRead("bonus_size", &bonusSize);
|
|
|
|
break;
|
|
|
|
case 'a':
|
2019-07-07 23:27:00 +00:00
|
|
|
tryRead("anon_size", &lpl->zfs.anon);
|
2019-07-07 02:37:02 +00:00
|
|
|
break;
|
|
|
|
case 'm':
|
2019-07-07 23:27:00 +00:00
|
|
|
tryRead("mfu_size", &lpl->zfs.MFU);
|
|
|
|
tryRead("mru_size", &lpl->zfs.MRU);
|
2019-07-07 02:37:02 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
#undef tryRead
|
2019-09-03 18:26:02 +00:00
|
|
|
#undef tryReadFlag
|
2019-07-07 02:37:02 +00:00
|
|
|
}
|
|
|
|
fclose(file);
|
|
|
|
|
2019-07-07 23:27:00 +00:00
|
|
|
lpl->zfs.enabled = (lpl->zfs.size > 0 ? 1 : 0);
|
|
|
|
lpl->zfs.size /= 1024;
|
|
|
|
lpl->zfs.max /= 1024;
|
|
|
|
lpl->zfs.MFU /= 1024;
|
|
|
|
lpl->zfs.MRU /= 1024;
|
|
|
|
lpl->zfs.anon /= 1024;
|
|
|
|
lpl->zfs.header /= 1024;
|
|
|
|
lpl->zfs.other = (dbufSize + dnodeSize + bonusSize) / 1024;
|
2019-09-03 18:26:02 +00:00
|
|
|
if ( lpl->zfs.isCompressed ) {
|
|
|
|
lpl->zfs.compressed /= 1024;
|
|
|
|
lpl->zfs.uncompressed /= 1024;
|
|
|
|
}
|
2019-07-07 02:37:02 +00:00
|
|
|
}
|
|
|
|
|
2015-01-22 01:27:31 +00:00
|
|
|
static inline double LinuxProcessList_scanCPUTime(LinuxProcessList* this) {
|
2014-11-27 18:31:42 +00:00
|
|
|
|
2014-11-27 18:28:32 +00:00
|
|
|
FILE* file = fopen(PROCSTATFILE, "r");
|
2014-11-24 20:55:49 +00:00
|
|
|
if (file == NULL) {
|
|
|
|
CRT_fatalError("Cannot open " PROCSTATFILE);
|
|
|
|
}
|
2015-01-22 01:27:31 +00:00
|
|
|
int cpus = this->super.cpuCount;
|
2014-11-27 18:31:42 +00:00
|
|
|
assert(cpus > 0);
|
2014-11-24 20:55:49 +00:00
|
|
|
for (int i = 0; i <= cpus; i++) {
|
2015-12-14 15:27:11 +00:00
|
|
|
char buffer[PROC_LINE_LENGTH + 1];
|
2015-08-20 04:12:34 +00:00
|
|
|
unsigned long long int usertime, nicetime, systemtime, idletime;
|
2014-11-24 20:55:49 +00:00
|
|
|
unsigned long long int ioWait, irq, softIrq, steal, guest, guestnice;
|
|
|
|
ioWait = irq = softIrq = steal = guest = guestnice = 0;
|
2015-08-04 13:48:34 +00:00
|
|
|
// Depending on your kernel version,
|
2014-11-24 20:55:49 +00:00
|
|
|
// 5, 7, 8 or 9 of these fields will be set.
|
|
|
|
// The rest will remain at zero.
|
2015-12-14 15:27:11 +00:00
|
|
|
char* ok = fgets(buffer, PROC_LINE_LENGTH, file);
|
2020-11-01 00:09:51 +00:00
|
|
|
if (!ok) {
|
|
|
|
buffer[0] = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i == 0) {
|
2020-08-28 13:28:50 +00:00
|
|
|
(void) sscanf(buffer, "cpu %16llu %16llu %16llu %16llu %16llu %16llu %16llu %16llu %16llu %16llu", &usertime, &nicetime, &systemtime, &idletime, &ioWait, &irq, &softIrq, &steal, &guest, &guestnice);
|
2020-11-01 00:09:51 +00:00
|
|
|
} else {
|
2015-08-20 04:12:34 +00:00
|
|
|
int cpuid;
|
2020-08-28 13:28:50 +00:00
|
|
|
(void) sscanf(buffer, "cpu%4d %16llu %16llu %16llu %16llu %16llu %16llu %16llu %16llu %16llu %16llu", &cpuid, &usertime, &nicetime, &systemtime, &idletime, &ioWait, &irq, &softIrq, &steal, &guest, &guestnice);
|
2014-11-24 20:55:49 +00:00
|
|
|
assert(cpuid == i - 1);
|
|
|
|
}
|
|
|
|
// Guest time is already accounted in usertime
|
|
|
|
usertime = usertime - guest;
|
|
|
|
nicetime = nicetime - guestnice;
|
|
|
|
// Fields existing on kernels >= 2.6
|
|
|
|
// (and RHEL's patched kernel 2.4...)
|
2015-08-20 04:12:34 +00:00
|
|
|
unsigned long long int idlealltime = idletime + ioWait;
|
|
|
|
unsigned long long int systemalltime = systemtime + irq + softIrq;
|
|
|
|
unsigned long long int virtalltime = guest + guestnice;
|
|
|
|
unsigned long long int totaltime = usertime + nicetime + systemalltime + idlealltime + steal + virtalltime;
|
2014-11-24 20:55:49 +00:00
|
|
|
CPUData* cpuData = &(this->cpus[i]);
|
2015-08-30 19:26:47 +00:00
|
|
|
// Since we do a subtraction (usertime - guest) and cputime64_to_clock_t()
|
|
|
|
// used in /proc/stat rounds down numbers, it can lead to a case where the
|
|
|
|
// integer overflow.
|
2020-10-27 20:26:33 +00:00
|
|
|
#define WRAP_SUBTRACT(a,b) (((a) > (b)) ? (a) - (b) : 0)
|
2016-03-01 00:57:03 +00:00
|
|
|
cpuData->userPeriod = WRAP_SUBTRACT(usertime, cpuData->userTime);
|
|
|
|
cpuData->nicePeriod = WRAP_SUBTRACT(nicetime, cpuData->niceTime);
|
|
|
|
cpuData->systemPeriod = WRAP_SUBTRACT(systemtime, cpuData->systemTime);
|
|
|
|
cpuData->systemAllPeriod = WRAP_SUBTRACT(systemalltime, cpuData->systemAllTime);
|
|
|
|
cpuData->idleAllPeriod = WRAP_SUBTRACT(idlealltime, cpuData->idleAllTime);
|
|
|
|
cpuData->idlePeriod = WRAP_SUBTRACT(idletime, cpuData->idleTime);
|
|
|
|
cpuData->ioWaitPeriod = WRAP_SUBTRACT(ioWait, cpuData->ioWaitTime);
|
|
|
|
cpuData->irqPeriod = WRAP_SUBTRACT(irq, cpuData->irqTime);
|
|
|
|
cpuData->softIrqPeriod = WRAP_SUBTRACT(softIrq, cpuData->softIrqTime);
|
|
|
|
cpuData->stealPeriod = WRAP_SUBTRACT(steal, cpuData->stealTime);
|
|
|
|
cpuData->guestPeriod = WRAP_SUBTRACT(virtalltime, cpuData->guestTime);
|
|
|
|
cpuData->totalPeriod = WRAP_SUBTRACT(totaltime, cpuData->totalTime);
|
|
|
|
#undef WRAP_SUBTRACT
|
2014-11-24 20:55:49 +00:00
|
|
|
cpuData->userTime = usertime;
|
|
|
|
cpuData->niceTime = nicetime;
|
|
|
|
cpuData->systemTime = systemtime;
|
|
|
|
cpuData->systemAllTime = systemalltime;
|
|
|
|
cpuData->idleAllTime = idlealltime;
|
|
|
|
cpuData->idleTime = idletime;
|
|
|
|
cpuData->ioWaitTime = ioWait;
|
|
|
|
cpuData->irqTime = irq;
|
|
|
|
cpuData->softIrqTime = softIrq;
|
|
|
|
cpuData->stealTime = steal;
|
|
|
|
cpuData->guestTime = virtalltime;
|
|
|
|
cpuData->totalTime = totaltime;
|
|
|
|
}
|
2020-10-31 20:10:12 +00:00
|
|
|
|
2015-08-30 19:26:47 +00:00
|
|
|
double period = (double)this->cpus[0].totalPeriod / cpus;
|
|
|
|
fclose(file);
|
2014-11-27 18:28:32 +00:00
|
|
|
return period;
|
|
|
|
}
|
|
|
|
|
2020-09-22 12:50:50 +00:00
|
|
|
static int scanCPUFreqencyFromSysCPUFreq(LinuxProcessList* this) {
|
2019-08-11 05:19:32 +00:00
|
|
|
int cpus = this->super.cpuCount;
|
2020-09-22 12:50:50 +00:00
|
|
|
int numCPUsWithFrequency = 0;
|
|
|
|
unsigned long totalFrequency = 0;
|
|
|
|
|
|
|
|
for (int i = 0; i < cpus; ++i) {
|
|
|
|
char pathBuffer[64];
|
|
|
|
xSnprintf(pathBuffer, sizeof(pathBuffer), "/sys/devices/system/cpu/cpu%d/cpufreq/scaling_cur_freq", i);
|
|
|
|
|
|
|
|
FILE* file = fopen(pathBuffer, "r");
|
|
|
|
if (!file)
|
|
|
|
return -errno;
|
|
|
|
|
|
|
|
unsigned long frequency;
|
|
|
|
if (fscanf(file, "%lu", &frequency) == 1) {
|
|
|
|
/* convert kHz to MHz */
|
|
|
|
frequency = frequency / 1000;
|
|
|
|
this->cpus[i + 1].frequency = frequency;
|
|
|
|
numCPUsWithFrequency++;
|
|
|
|
totalFrequency += frequency;
|
|
|
|
}
|
2019-08-11 05:19:32 +00:00
|
|
|
|
2020-09-22 12:50:50 +00:00
|
|
|
fclose(file);
|
2019-08-11 05:19:32 +00:00
|
|
|
}
|
|
|
|
|
2020-09-22 12:50:50 +00:00
|
|
|
if (numCPUsWithFrequency > 0)
|
|
|
|
this->cpus[0].frequency = (double)totalFrequency / numCPUsWithFrequency;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void scanCPUFreqencyFromCPUinfo(LinuxProcessList* this) {
|
|
|
|
FILE* file = fopen(PROCCPUINFOFILE, "r");
|
|
|
|
if (file == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
int cpus = this->super.cpuCount;
|
2019-08-11 05:19:32 +00:00
|
|
|
int numCPUsWithFrequency = 0;
|
|
|
|
double totalFrequency = 0;
|
2020-09-22 12:50:50 +00:00
|
|
|
int cpuid = -1;
|
2019-08-11 05:19:32 +00:00
|
|
|
|
2020-09-22 12:50:50 +00:00
|
|
|
while (!feof(file)) {
|
2019-08-11 05:19:32 +00:00
|
|
|
double frequency;
|
2020-09-22 12:50:50 +00:00
|
|
|
char buffer[PROC_LINE_LENGTH];
|
2019-08-11 05:19:32 +00:00
|
|
|
|
2020-09-22 12:50:50 +00:00
|
|
|
if (fgets(buffer, PROC_LINE_LENGTH, file) == NULL)
|
|
|
|
break;
|
2019-08-11 05:19:32 +00:00
|
|
|
|
2020-09-22 12:50:50 +00:00
|
|
|
if (
|
|
|
|
(sscanf(buffer, "processor : %d", &cpuid) == 1) ||
|
|
|
|
(sscanf(buffer, "processor: %d", &cpuid) == 1)
|
|
|
|
) {
|
|
|
|
continue;
|
|
|
|
} else if (
|
|
|
|
(sscanf(buffer, "cpu MHz : %lf", &frequency) == 1) ||
|
|
|
|
(sscanf(buffer, "cpu MHz: %lf", &frequency) == 1)
|
|
|
|
) {
|
2020-11-01 00:09:51 +00:00
|
|
|
if (cpuid < 0 || cpuid > (cpus - 1)) {
|
2020-09-22 12:50:50 +00:00
|
|
|
continue;
|
2020-11-01 00:09:51 +00:00
|
|
|
}
|
2020-09-22 12:50:50 +00:00
|
|
|
|
|
|
|
CPUData* cpuData = &(this->cpus[cpuid + 1]);
|
|
|
|
/* do not override sysfs data */
|
2020-11-01 00:09:51 +00:00
|
|
|
if (isnan(cpuData->frequency)) {
|
2020-09-22 12:50:50 +00:00
|
|
|
cpuData->frequency = frequency;
|
2020-11-01 00:09:51 +00:00
|
|
|
}
|
2020-09-22 12:50:50 +00:00
|
|
|
numCPUsWithFrequency++;
|
|
|
|
totalFrequency += frequency;
|
|
|
|
} else if (buffer[0] == '\n') {
|
|
|
|
cpuid = -1;
|
2019-08-11 05:19:32 +00:00
|
|
|
}
|
|
|
|
}
|
2020-09-22 12:50:50 +00:00
|
|
|
fclose(file);
|
2019-08-11 05:19:32 +00:00
|
|
|
|
2020-11-01 00:09:51 +00:00
|
|
|
if (numCPUsWithFrequency > 0) {
|
2020-09-22 12:50:50 +00:00
|
|
|
this->cpus[0].frequency = totalFrequency / numCPUsWithFrequency;
|
2020-11-01 00:09:51 +00:00
|
|
|
}
|
2020-09-22 12:50:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void LinuxProcessList_scanCPUFrequency(LinuxProcessList* this) {
|
|
|
|
int cpus = this->super.cpuCount;
|
|
|
|
assert(cpus > 0);
|
|
|
|
|
2020-11-01 00:09:51 +00:00
|
|
|
for (int i = 0; i <= cpus; i++) {
|
2020-09-22 12:50:50 +00:00
|
|
|
this->cpus[i].frequency = NAN;
|
2020-11-01 00:09:51 +00:00
|
|
|
}
|
2020-09-22 12:50:50 +00:00
|
|
|
|
2020-11-01 00:09:51 +00:00
|
|
|
if (scanCPUFreqencyFromSysCPUFreq(this) == 0) {
|
2020-09-22 12:50:50 +00:00
|
|
|
return;
|
2020-11-01 00:09:51 +00:00
|
|
|
}
|
2020-09-22 12:50:50 +00:00
|
|
|
|
|
|
|
scanCPUFreqencyFromCPUinfo(this);
|
2019-08-11 05:19:32 +00:00
|
|
|
}
|
|
|
|
|
2020-10-13 14:03:37 +00:00
|
|
|
void ProcessList_goThroughEntries(ProcessList* super, bool pauseProcessUpdate) {
|
2015-01-22 01:27:31 +00:00
|
|
|
LinuxProcessList* this = (LinuxProcessList*) super;
|
2020-09-22 12:50:50 +00:00
|
|
|
const Settings* settings = super->settings;
|
2014-11-27 18:28:32 +00:00
|
|
|
|
2015-03-16 06:25:43 +00:00
|
|
|
LinuxProcessList_scanMemoryInfo(super);
|
2019-07-07 02:37:02 +00:00
|
|
|
LinuxProcessList_scanZfsArcstats(this);
|
2020-09-22 18:04:41 +00:00
|
|
|
LinuxProcessList_updateCPUcount(this);
|
2020-09-22 11:54:15 +00:00
|
|
|
LinuxProcessList_scanZramInfo(this);
|
2020-09-22 18:04:41 +00:00
|
|
|
|
2014-11-27 18:31:42 +00:00
|
|
|
double period = LinuxProcessList_scanCPUTime(this);
|
2014-11-24 20:55:49 +00:00
|
|
|
|
2020-11-01 00:09:51 +00:00
|
|
|
if (settings->showCPUFrequency) {
|
2020-09-22 12:50:50 +00:00
|
|
|
LinuxProcessList_scanCPUFrequency(this);
|
2020-11-01 00:09:51 +00:00
|
|
|
}
|
2019-08-11 05:19:32 +00:00
|
|
|
|
2020-12-01 12:59:19 +00:00
|
|
|
#ifdef HAVE_SENSORS_SENSORS_H
|
2020-09-10 17:56:33 +00:00
|
|
|
if (settings->showCPUTemperature)
|
2020-12-13 15:46:10 +00:00
|
|
|
LibSensors_getCPUTemperatures(this->cpus, this->super.cpuCount);
|
2020-09-10 17:56:33 +00:00
|
|
|
#endif
|
|
|
|
|
2020-10-13 14:03:37 +00:00
|
|
|
// in pause mode only gather global data for meters (CPU/memory/...)
|
2020-11-01 00:09:51 +00:00
|
|
|
if (pauseProcessUpdate) {
|
2020-10-13 14:03:37 +00:00
|
|
|
return;
|
2020-11-01 00:09:51 +00:00
|
|
|
}
|
2020-10-13 14:03:37 +00:00
|
|
|
|
2014-11-24 20:55:49 +00:00
|
|
|
struct timeval tv;
|
|
|
|
gettimeofday(&tv, NULL);
|
2020-11-25 21:14:35 +00:00
|
|
|
unsigned long long now = tv.tv_sec * 1000ULL + tv.tv_usec / 1000ULL;
|
|
|
|
|
2020-11-20 16:50:34 +00:00
|
|
|
/* PROCDIR is an absolute path */
|
|
|
|
assert(PROCDIR[0] == '/');
|
|
|
|
#ifdef HAVE_OPENAT
|
|
|
|
openat_arg_t rootFd = AT_FDCWD;
|
|
|
|
#else
|
|
|
|
openat_arg_t rootFd = "";
|
|
|
|
#endif
|
2020-11-17 18:46:12 +00:00
|
|
|
|
2020-11-20 16:50:34 +00:00
|
|
|
LinuxProcessList_recurseProcTree(this, rootFd, PROCDIR, NULL, period, now);
|
2014-11-24 20:55:49 +00:00
|
|
|
}
|