2014-11-27 23:02:52 +00:00
|
|
|
#ifndef HEADER_LinuxProcessList
|
|
|
|
#define HEADER_LinuxProcessList
|
|
|
|
/*
|
|
|
|
htop - LinuxProcessList.h
|
|
|
|
(C) 2014 Hisham H. Muhammad
|
2020-10-05 07:51:32 +00:00
|
|
|
Released under the GNU GPLv2, see the COPYING file
|
2014-11-27 23:02:52 +00:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
2020-09-19 11:55:23 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include "Hashtable.h"
|
2014-11-27 23:02:52 +00:00
|
|
|
#include "ProcessList.h"
|
2020-09-19 11:55:23 +00:00
|
|
|
#include "UsersTable.h"
|
2020-09-22 11:54:15 +00:00
|
|
|
#include "ZramStats.h"
|
2019-07-07 23:27:00 +00:00
|
|
|
#include "zfs/ZfsArcStats.h"
|
2014-11-27 23:02:52 +00:00
|
|
|
|
2021-01-14 14:46:37 +00:00
|
|
|
#define HTOP_HUGEPAGE_BASE_SHIFT 16
|
|
|
|
#define HTOP_HUGEPAGE_COUNT 24
|
2020-09-22 11:54:15 +00:00
|
|
|
|
2015-01-22 01:27:31 +00:00
|
|
|
typedef struct CPUData_ {
|
|
|
|
unsigned long long int totalTime;
|
|
|
|
unsigned long long int userTime;
|
|
|
|
unsigned long long int systemTime;
|
|
|
|
unsigned long long int systemAllTime;
|
|
|
|
unsigned long long int idleAllTime;
|
|
|
|
unsigned long long int idleTime;
|
|
|
|
unsigned long long int niceTime;
|
|
|
|
unsigned long long int ioWaitTime;
|
|
|
|
unsigned long long int irqTime;
|
|
|
|
unsigned long long int softIrqTime;
|
|
|
|
unsigned long long int stealTime;
|
|
|
|
unsigned long long int guestTime;
|
2019-10-31 16:39:12 +00:00
|
|
|
|
2015-01-22 01:27:31 +00:00
|
|
|
unsigned long long int totalPeriod;
|
|
|
|
unsigned long long int userPeriod;
|
|
|
|
unsigned long long int systemPeriod;
|
|
|
|
unsigned long long int systemAllPeriod;
|
|
|
|
unsigned long long int idleAllPeriod;
|
|
|
|
unsigned long long int idlePeriod;
|
|
|
|
unsigned long long int nicePeriod;
|
|
|
|
unsigned long long int ioWaitPeriod;
|
|
|
|
unsigned long long int irqPeriod;
|
|
|
|
unsigned long long int softIrqPeriod;
|
|
|
|
unsigned long long int stealPeriod;
|
|
|
|
unsigned long long int guestPeriod;
|
2019-08-11 05:19:32 +00:00
|
|
|
|
|
|
|
double frequency;
|
2020-09-10 17:56:33 +00:00
|
|
|
|
2020-12-01 12:59:19 +00:00
|
|
|
#ifdef HAVE_SENSORS_SENSORS_H
|
2020-09-10 17:56:33 +00:00
|
|
|
double temperature;
|
|
|
|
#endif
|
2021-06-12 16:17:28 +00:00
|
|
|
|
|
|
|
bool online;
|
2015-01-22 01:27:31 +00:00
|
|
|
} CPUData;
|
|
|
|
|
2016-10-01 06:09:04 +00:00
|
|
|
typedef struct TtyDriver_ {
|
|
|
|
char* path;
|
|
|
|
unsigned int major;
|
|
|
|
unsigned int minorFrom;
|
|
|
|
unsigned int minorTo;
|
|
|
|
} TtyDriver;
|
|
|
|
|
2015-01-22 01:27:31 +00:00
|
|
|
typedef struct LinuxProcessList_ {
|
|
|
|
ProcessList super;
|
2019-10-31 16:39:12 +00:00
|
|
|
|
2021-06-12 16:17:28 +00:00
|
|
|
CPUData* cpuData;
|
|
|
|
|
2016-10-01 06:09:04 +00:00
|
|
|
TtyDriver* ttyDrivers;
|
2018-10-16 18:08:23 +00:00
|
|
|
bool haveSmapsRollup;
|
2021-08-06 06:45:30 +00:00
|
|
|
bool haveAutogroup;
|
2019-10-31 16:39:12 +00:00
|
|
|
|
2017-12-04 02:15:29 +00:00
|
|
|
#ifdef HAVE_DELAYACCT
|
2020-10-31 22:28:02 +00:00
|
|
|
struct nl_sock* netlink_socket;
|
2017-12-04 02:15:29 +00:00
|
|
|
int netlink_family;
|
|
|
|
#endif
|
2019-07-07 02:37:02 +00:00
|
|
|
|
2021-01-06 17:11:24 +00:00
|
|
|
memory_t totalHugePageMem;
|
|
|
|
memory_t usedHugePageMem[HTOP_HUGEPAGE_COUNT];
|
|
|
|
|
|
|
|
memory_t availableMem;
|
2021-01-05 14:50:23 +00:00
|
|
|
|
2019-07-07 23:27:00 +00:00
|
|
|
ZfsArcStats zfs;
|
2020-09-22 11:54:15 +00:00
|
|
|
ZramStats zram;
|
2015-01-22 01:27:31 +00:00
|
|
|
} LinuxProcessList;
|
|
|
|
|
2014-11-27 23:02:52 +00:00
|
|
|
#ifndef PROCDIR
|
|
|
|
#define PROCDIR "/proc"
|
|
|
|
#endif
|
|
|
|
|
2019-08-11 05:19:32 +00:00
|
|
|
#ifndef PROCCPUINFOFILE
|
|
|
|
#define PROCCPUINFOFILE PROCDIR "/cpuinfo"
|
|
|
|
#endif
|
|
|
|
|
2014-11-27 23:02:52 +00:00
|
|
|
#ifndef PROCSTATFILE
|
|
|
|
#define PROCSTATFILE PROCDIR "/stat"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef PROCMEMINFOFILE
|
|
|
|
#define PROCMEMINFOFILE PROCDIR "/meminfo"
|
|
|
|
#endif
|
|
|
|
|
2019-07-07 02:37:02 +00:00
|
|
|
#ifndef PROCARCSTATSFILE
|
|
|
|
#define PROCARCSTATSFILE PROCDIR "/spl/kstat/zfs/arcstats"
|
|
|
|
#endif
|
|
|
|
|
2016-10-01 06:09:04 +00:00
|
|
|
#ifndef PROCTTYDRIVERSFILE
|
|
|
|
#define PROCTTYDRIVERSFILE PROCDIR "/tty/drivers"
|
|
|
|
#endif
|
|
|
|
|
2015-12-14 15:27:11 +00:00
|
|
|
#ifndef PROC_LINE_LENGTH
|
2018-08-19 04:29:03 +00:00
|
|
|
#define PROC_LINE_LENGTH 4096
|
2015-12-14 15:27:11 +00:00
|
|
|
#endif
|
|
|
|
|
PCP: support for 'dynamic columns' added at runtime
Implements support for arbitrary Performance Co-Pilot
metrics with per-process instance domains to form new
htop columns. The column-to-metric mappings are setup
using configuration files which will be documented via
man pages as part of a follow-up commit.
We provide an initial set of column configurations so
as to provide new capabilities to pcp-htop: including
configs for containers, open fd counts, scheduler run
queue time, tcp/udp bytes/calls sent/recv, delay acct,
virtual machine guests, detailed virtual memory, swap.
Note there is a change to the configuration file path
resolution algorithm introduced for 'dynamic meters'.
First, look in any custom PCP_HTOP_DIR location. Then
iterate, in priority order, users home directory, then
local sysadmins files in /etc/pcp/htop, then readonly
configuration files below /usr/share/pcp/htop. This
final location becomes the preferred place for our own
shipped meter and column files.
The Settings file (htoprc) writing code is updated to
not using the numeric identifier for dynamic columns.
The same strategy used for dynamic meters is used here
where we write Dynamic(name) so the name can be setup
once more at start. Regular (static) columns writing
to htoprc - i.e. numerically indexed - is unchanged.
2021-07-11 01:11:29 +00:00
|
|
|
ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* dynamicMeters, Hashtable* dynamicColumns, Hashtable* pidMatchList, uid_t userId);
|
2014-11-27 23:02:52 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void ProcessList_delete(ProcessList* pl);
|
2014-11-27 23:02:52 +00:00
|
|
|
|
2020-10-13 14:03:37 +00:00
|
|
|
void ProcessList_goThroughEntries(ProcessList* super, bool pauseProcessUpdate);
|
2014-11-27 23:02:52 +00:00
|
|
|
|
2021-06-12 20:04:37 +00:00
|
|
|
bool ProcessList_isCPUonline(const ProcessList* super, unsigned int id);
|
|
|
|
|
2014-11-27 23:02:52 +00:00
|
|
|
#endif
|