2014-11-27 23:02:52 +00:00
|
|
|
#ifndef HEADER_LinuxProcess
|
|
|
|
#define HEADER_LinuxProcess
|
|
|
|
/*
|
|
|
|
htop - LinuxProcess.h
|
|
|
|
(C) 2014 Hisham H. Muhammad
|
2020-08-19 23:35:24 +00:00
|
|
|
(C) 2020 Red Hat, Inc. All Rights Reserved.
|
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 "IOPriority.h"
|
|
|
|
#include "Object.h"
|
|
|
|
#include "Process.h"
|
|
|
|
#include "RichString.h"
|
|
|
|
#include "Settings.h"
|
|
|
|
|
2015-03-15 23:29:13 +00:00
|
|
|
#define PROCESS_FLAG_LINUX_IOPRIO 0x0100
|
|
|
|
#define PROCESS_FLAG_LINUX_OPENVZ 0x0200
|
|
|
|
#define PROCESS_FLAG_LINUX_VSERVER 0x0400
|
|
|
|
#define PROCESS_FLAG_LINUX_CGROUP 0x0800
|
2015-04-09 18:41:21 +00:00
|
|
|
#define PROCESS_FLAG_LINUX_OOM 0x1000
|
2018-10-09 19:49:29 +00:00
|
|
|
#define PROCESS_FLAG_LINUX_SMAPS 0x2000
|
2020-09-11 13:02:00 +00:00
|
|
|
#define PROCESS_FLAG_LINUX_CTXT 0x4000
|
2020-09-28 10:06:13 +00:00
|
|
|
#define PROCESS_FLAG_LINUX_SECATTR 0x8000
|
2015-03-15 23:29:13 +00:00
|
|
|
|
2015-03-16 04:43:04 +00:00
|
|
|
typedef enum UnsupportedProcessFields {
|
|
|
|
FLAGS = 9,
|
|
|
|
ITREALVALUE = 20,
|
|
|
|
VSIZE = 22,
|
|
|
|
RSS = 23,
|
|
|
|
RLIM = 24,
|
|
|
|
STARTCODE = 25,
|
|
|
|
ENDCODE = 26,
|
|
|
|
STARTSTACK = 27,
|
|
|
|
KSTKESP = 28,
|
|
|
|
KSTKEIP = 29,
|
|
|
|
SIGNAL = 30,
|
|
|
|
BLOCKED = 31,
|
|
|
|
SSIGIGNORE = 32,
|
|
|
|
SIGCATCH = 33,
|
|
|
|
WCHAN = 34,
|
|
|
|
NSWAP = 35,
|
|
|
|
CNSWAP = 36,
|
|
|
|
EXIT_SIGNAL = 37,
|
|
|
|
} UnsupportedProcessField;
|
|
|
|
|
2015-03-15 23:29:13 +00:00
|
|
|
typedef enum LinuxProcessFields {
|
2015-03-16 04:43:04 +00:00
|
|
|
CMINFLT = 11,
|
|
|
|
CMAJFLT = 13,
|
|
|
|
UTIME = 14,
|
|
|
|
STIME = 15,
|
|
|
|
CUTIME = 16,
|
|
|
|
CSTIME = 17,
|
|
|
|
M_SHARE = 41,
|
|
|
|
M_TRS = 42,
|
|
|
|
M_DRS = 43,
|
|
|
|
M_LRS = 44,
|
|
|
|
M_DT = 45,
|
2015-03-15 23:29:13 +00:00
|
|
|
#ifdef HAVE_OPENVZ
|
2015-03-16 04:43:04 +00:00
|
|
|
CTID = 100,
|
|
|
|
VPID = 101,
|
2015-03-15 23:29:13 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_VSERVER
|
2015-03-16 04:43:04 +00:00
|
|
|
VXID = 102,
|
2015-03-15 23:29:13 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_TASKSTATS
|
2015-03-16 04:43:04 +00:00
|
|
|
RCHAR = 103,
|
|
|
|
WCHAR = 104,
|
|
|
|
SYSCR = 105,
|
|
|
|
SYSCW = 106,
|
|
|
|
RBYTES = 107,
|
|
|
|
WBYTES = 108,
|
|
|
|
CNCLWB = 109,
|
|
|
|
IO_READ_RATE = 110,
|
|
|
|
IO_WRITE_RATE = 111,
|
|
|
|
IO_RATE = 112,
|
2015-03-15 23:29:13 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_CGROUP
|
2015-03-16 04:43:04 +00:00
|
|
|
CGROUP = 113,
|
2015-03-15 23:29:13 +00:00
|
|
|
#endif
|
2015-03-16 04:43:04 +00:00
|
|
|
OOM = 114,
|
|
|
|
IO_PRIORITY = 115,
|
2017-12-04 02:15:29 +00:00
|
|
|
#ifdef HAVE_DELAYACCT
|
|
|
|
PERCENT_CPU_DELAY = 116,
|
|
|
|
PERCENT_IO_DELAY = 117,
|
|
|
|
PERCENT_SWAP_DELAY = 118,
|
|
|
|
#endif
|
2018-10-09 19:49:29 +00:00
|
|
|
M_PSS = 119,
|
|
|
|
M_SWAP = 120,
|
|
|
|
M_PSSWP = 121,
|
2020-09-11 13:02:00 +00:00
|
|
|
CTXT = 122,
|
2020-09-28 10:06:13 +00:00
|
|
|
SECATTR = 123,
|
|
|
|
LAST_PROCESSFIELD = 124,
|
2015-03-15 23:29:13 +00:00
|
|
|
} LinuxProcessField;
|
|
|
|
|
2014-11-27 23:02:52 +00:00
|
|
|
typedef struct LinuxProcess_ {
|
|
|
|
Process super;
|
2018-03-25 18:26:05 +00:00
|
|
|
bool isKernelThread;
|
2014-11-27 23:02:52 +00:00
|
|
|
IOPriority ioPriority;
|
2015-03-16 04:43:04 +00:00
|
|
|
unsigned long int cminflt;
|
|
|
|
unsigned long int cmajflt;
|
|
|
|
unsigned long long int utime;
|
|
|
|
unsigned long long int stime;
|
|
|
|
unsigned long long int cutime;
|
|
|
|
unsigned long long int cstime;
|
|
|
|
long m_share;
|
2018-10-09 19:49:29 +00:00
|
|
|
long m_pss;
|
|
|
|
long m_swap;
|
|
|
|
long m_psswp;
|
2015-03-16 04:43:04 +00:00
|
|
|
long m_trs;
|
|
|
|
long m_drs;
|
|
|
|
long m_lrs;
|
|
|
|
long m_dt;
|
|
|
|
#ifdef HAVE_TASKSTATS
|
|
|
|
unsigned long long io_rchar;
|
|
|
|
unsigned long long io_wchar;
|
|
|
|
unsigned long long io_syscr;
|
|
|
|
unsigned long long io_syscw;
|
|
|
|
unsigned long long io_read_bytes;
|
|
|
|
unsigned long long io_write_bytes;
|
|
|
|
unsigned long long io_cancelled_write_bytes;
|
|
|
|
unsigned long long io_rate_read_time;
|
2019-10-31 16:39:12 +00:00
|
|
|
unsigned long long io_rate_write_time;
|
2015-03-16 04:43:04 +00:00
|
|
|
double io_rate_read_bps;
|
|
|
|
double io_rate_write_bps;
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_OPENVZ
|
2020-09-30 21:46:52 +00:00
|
|
|
char* ctid;
|
|
|
|
pid_t vpid;
|
2015-03-16 04:43:04 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_VSERVER
|
|
|
|
unsigned int vxid;
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_CGROUP
|
|
|
|
char* cgroup;
|
|
|
|
#endif
|
|
|
|
unsigned int oom;
|
2016-10-01 06:09:04 +00:00
|
|
|
char* ttyDevice;
|
2017-12-04 02:15:29 +00:00
|
|
|
#ifdef HAVE_DELAYACCT
|
|
|
|
unsigned long long int delay_read_time;
|
|
|
|
unsigned long long cpu_delay_total;
|
|
|
|
unsigned long long blkio_delay_total;
|
|
|
|
unsigned long long swapin_delay_total;
|
|
|
|
float cpu_delay_percent;
|
|
|
|
float blkio_delay_percent;
|
|
|
|
float swapin_delay_percent;
|
|
|
|
#endif
|
2020-09-11 13:02:00 +00:00
|
|
|
unsigned long ctxt_total;
|
|
|
|
unsigned long ctxt_diff;
|
2020-09-28 10:06:13 +00:00
|
|
|
char *secattr;
|
2014-11-27 23:02:52 +00:00
|
|
|
} LinuxProcess;
|
|
|
|
|
2020-10-07 17:02:15 +00:00
|
|
|
#define Process_isKernelThread(_process) (((const LinuxProcess*)(_process))->isKernelThread)
|
2015-03-16 04:43:04 +00:00
|
|
|
|
|
|
|
#define Process_isUserlandThread(_process) (_process->pid != _process->tgid)
|
2015-02-20 16:52:10 +00:00
|
|
|
|
2020-07-10 00:35:32 +00:00
|
|
|
extern long long btime;
|
2018-08-19 04:29:03 +00:00
|
|
|
|
2015-03-15 23:29:13 +00:00
|
|
|
extern ProcessFieldData Process_fields[];
|
|
|
|
|
2015-08-20 03:32:47 +00:00
|
|
|
extern ProcessPidColumn Process_pidColumns[];
|
2015-03-15 23:29:13 +00:00
|
|
|
|
2020-10-13 12:35:30 +00:00
|
|
|
extern const ProcessClass LinuxProcess_class;
|
2015-04-01 02:23:10 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
LinuxProcess* LinuxProcess_new(Settings* settings);
|
2015-02-20 16:52:10 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void Process_delete(Object* cast);
|
2014-11-27 23:02:52 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
[1] Note that before kernel 2.6.26 a process that has not asked for
|
|
|
|
an io priority formally uses "none" as scheduling class, but the
|
|
|
|
io scheduler will treat such processes as if it were in the best
|
|
|
|
effort class. The priority within the best effort class will be
|
|
|
|
dynamically derived from the cpu nice level of the process:
|
|
|
|
extern io_priority;
|
|
|
|
*/
|
|
|
|
#define LinuxProcess_effectiveIOPriority(p_) (IOPriority_class(p_->ioPriority) == IOPRIO_CLASS_NONE ? IOPriority_tuple(IOPRIO_CLASS_BE, (p_->super.nice + 20) / 5) : p_->ioPriority)
|
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
IOPriority LinuxProcess_updateIOPriority(LinuxProcess* this);
|
2014-11-27 23:02:52 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
bool LinuxProcess_setIOPriority(LinuxProcess* this, Arg ioprio);
|
2014-11-27 23:02:52 +00:00
|
|
|
|
2017-12-04 02:15:29 +00:00
|
|
|
#ifdef HAVE_DELAYACCT
|
2020-09-02 07:38:44 +00:00
|
|
|
void LinuxProcess_printDelay(float delay_percent, char* buffer, int n);
|
2017-12-04 02:15:29 +00:00
|
|
|
#endif
|
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void LinuxProcess_writeField(Process* this, RichString* str, ProcessField field);
|
2014-11-27 23:02:52 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
long LinuxProcess_compare(const void* v1, const void* v2);
|
2014-11-27 23:02:52 +00:00
|
|
|
|
2020-10-07 17:02:15 +00:00
|
|
|
bool Process_isThread(const Process* this);
|
2015-03-16 04:43:04 +00:00
|
|
|
|
2014-11-27 23:02:52 +00:00
|
|
|
#endif
|