2015-09-18 04:46:48 +00:00
|
|
|
/*
|
|
|
|
htop - OpenBSDProcess.c
|
|
|
|
(C) 2015 Hisham H. Muhammad
|
|
|
|
(C) 2015 Michael McConville
|
2020-10-05 07:51:32 +00:00
|
|
|
Released under the GNU GPLv2, see the COPYING file
|
2015-09-18 04:46:48 +00:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "OpenBSDProcess.h"
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2020-12-05 21:57:07 +00:00
|
|
|
#include "CRT.h"
|
|
|
|
#include "Process.h"
|
|
|
|
#include "RichString.h"
|
|
|
|
#include "XUtils.h"
|
2015-09-18 04:46:48 +00:00
|
|
|
|
|
|
|
|
2020-12-15 18:44:52 +00:00
|
|
|
const ProcessFieldData Process_fields[LAST_PROCESSFIELD] = {
|
2015-09-18 04:46:48 +00:00
|
|
|
[0] = {
|
2015-09-19 16:08:34 +00:00
|
|
|
.name = "",
|
|
|
|
.title = NULL,
|
|
|
|
.description = NULL,
|
2020-10-31 21:14:27 +00:00
|
|
|
.flags = 0,
|
|
|
|
},
|
2015-09-18 04:46:48 +00:00
|
|
|
[PID] = {
|
2015-09-19 16:08:34 +00:00
|
|
|
.name = "PID",
|
2020-12-15 18:44:52 +00:00
|
|
|
.title = "PID",
|
2015-09-19 16:08:34 +00:00
|
|
|
.description = "Process/thread ID",
|
2020-10-31 21:14:27 +00:00
|
|
|
.flags = 0,
|
2020-12-15 18:44:52 +00:00
|
|
|
.pidColumn = true,
|
2020-10-31 21:14:27 +00:00
|
|
|
},
|
2015-09-18 04:46:48 +00:00
|
|
|
[COMM] = {
|
2015-09-19 16:08:34 +00:00
|
|
|
.name = "Command",
|
|
|
|
.title = "Command ",
|
|
|
|
.description = "Command line",
|
2020-10-31 21:14:27 +00:00
|
|
|
.flags = 0,
|
|
|
|
},
|
2015-09-18 04:46:48 +00:00
|
|
|
[STATE] = {
|
2015-09-19 16:08:34 +00:00
|
|
|
.name = "STATE",
|
|
|
|
.title = "S ",
|
|
|
|
.description = "Process state (S sleeping, R running, D disk, Z zombie, T traced, W paging)",
|
2020-10-31 21:14:27 +00:00
|
|
|
.flags = 0,
|
|
|
|
},
|
2015-09-18 04:46:48 +00:00
|
|
|
[PPID] = {
|
2015-09-19 16:08:34 +00:00
|
|
|
.name = "PPID",
|
2020-12-15 18:44:52 +00:00
|
|
|
.title = "PPID",
|
2015-09-19 16:08:34 +00:00
|
|
|
.description = "Parent process ID",
|
2020-10-31 21:14:27 +00:00
|
|
|
.flags = 0,
|
2020-12-15 18:44:52 +00:00
|
|
|
.pidColumn = true,
|
2020-10-31 21:14:27 +00:00
|
|
|
},
|
2015-09-18 04:46:48 +00:00
|
|
|
[PGRP] = {
|
2015-09-19 16:08:34 +00:00
|
|
|
.name = "PGRP",
|
2020-12-15 18:44:52 +00:00
|
|
|
.title = "PGRP",
|
2015-09-19 16:08:34 +00:00
|
|
|
.description = "Process group ID",
|
2020-10-31 21:14:27 +00:00
|
|
|
.flags = 0,
|
2020-12-15 18:44:52 +00:00
|
|
|
.pidColumn = true,
|
2020-10-31 21:14:27 +00:00
|
|
|
},
|
2015-09-18 04:46:48 +00:00
|
|
|
[SESSION] = {
|
2015-09-19 16:08:34 +00:00
|
|
|
.name = "SESSION",
|
2020-12-15 18:44:52 +00:00
|
|
|
.title = "SESN",
|
2015-09-19 16:08:34 +00:00
|
|
|
.description = "Process's session ID",
|
2020-10-31 21:14:27 +00:00
|
|
|
.flags = 0,
|
2020-12-15 18:44:52 +00:00
|
|
|
.pidColumn = true,
|
2020-10-31 21:14:27 +00:00
|
|
|
},
|
2015-09-18 04:46:48 +00:00
|
|
|
[TTY_NR] = {
|
2015-09-19 16:08:34 +00:00
|
|
|
.name = "TTY_NR",
|
2016-10-01 06:09:04 +00:00
|
|
|
.title = " TTY ",
|
2015-09-19 16:08:34 +00:00
|
|
|
.description = "Controlling terminal",
|
2020-10-31 21:14:27 +00:00
|
|
|
.flags = 0,
|
|
|
|
},
|
2015-09-18 04:46:48 +00:00
|
|
|
[TPGID] = {
|
2015-09-19 16:08:34 +00:00
|
|
|
.name = "TPGID",
|
2020-12-15 18:44:52 +00:00
|
|
|
.title = "TPGID",
|
2015-09-19 16:08:34 +00:00
|
|
|
.description = "Process ID of the fg process group of the controlling terminal",
|
2020-10-31 21:14:27 +00:00
|
|
|
.flags = 0,
|
2020-12-15 18:44:52 +00:00
|
|
|
.pidColumn = true,
|
2020-10-31 21:14:27 +00:00
|
|
|
},
|
2015-09-18 04:46:48 +00:00
|
|
|
[MINFLT] = {
|
2015-09-19 16:08:34 +00:00
|
|
|
.name = "MINFLT",
|
|
|
|
.title = " MINFLT ",
|
|
|
|
.description = "Number of minor faults which have not required loading a memory page from disk",
|
2020-10-31 21:14:27 +00:00
|
|
|
.flags = 0,
|
|
|
|
},
|
2015-09-18 04:46:48 +00:00
|
|
|
[MAJFLT] = {
|
2015-09-19 16:08:34 +00:00
|
|
|
.name = "MAJFLT",
|
|
|
|
.title = " MAJFLT ",
|
|
|
|
.description = "Number of major faults which have required loading a memory page from disk",
|
2020-10-31 21:14:27 +00:00
|
|
|
.flags = 0,
|
|
|
|
},
|
2015-09-18 04:46:48 +00:00
|
|
|
[PRIORITY] = {
|
2015-09-19 16:08:34 +00:00
|
|
|
.name = "PRIORITY",
|
|
|
|
.title = "PRI ",
|
|
|
|
.description = "Kernel's internal priority for the process",
|
2020-10-31 21:14:27 +00:00
|
|
|
.flags = 0,
|
|
|
|
},
|
2015-09-18 04:46:48 +00:00
|
|
|
[NICE] = {
|
2015-09-19 16:08:34 +00:00
|
|
|
.name = "NICE",
|
|
|
|
.title = " NI ",
|
|
|
|
.description = "Nice value (the higher the value, the more it lets other processes take priority)",
|
2020-10-31 21:14:27 +00:00
|
|
|
.flags = 0,
|
|
|
|
},
|
2015-09-18 04:46:48 +00:00
|
|
|
[STARTTIME] = {
|
2015-09-19 16:08:34 +00:00
|
|
|
.name = "STARTTIME",
|
|
|
|
.title = "START ",
|
|
|
|
.description = "Time the process was started",
|
2020-10-31 21:14:27 +00:00
|
|
|
.flags = 0,
|
|
|
|
},
|
2015-09-18 04:46:48 +00:00
|
|
|
[PROCESSOR] = {
|
2015-09-19 16:08:34 +00:00
|
|
|
.name = "PROCESSOR",
|
|
|
|
.title = "CPU ",
|
|
|
|
.description = "Id of the CPU the process last executed on",
|
2020-10-31 21:14:27 +00:00
|
|
|
.flags = 0,
|
|
|
|
},
|
2020-11-20 16:09:34 +00:00
|
|
|
[M_VIRT] = {
|
|
|
|
.name = "M_VIRT",
|
2015-09-19 16:08:34 +00:00
|
|
|
.title = " VIRT ",
|
|
|
|
.description = "Total program size in virtual memory",
|
2020-10-31 21:14:27 +00:00
|
|
|
.flags = 0,
|
|
|
|
},
|
2015-09-18 04:46:48 +00:00
|
|
|
[M_RESIDENT] = {
|
2015-09-19 16:08:34 +00:00
|
|
|
.name = "M_RESIDENT",
|
|
|
|
.title = " RES ",
|
|
|
|
.description = "Resident set size, size of the text and data sections, plus stack usage",
|
2020-10-31 21:14:27 +00:00
|
|
|
.flags = 0,
|
|
|
|
},
|
2015-09-18 04:46:48 +00:00
|
|
|
[ST_UID] = {
|
2015-09-19 16:08:34 +00:00
|
|
|
.name = "ST_UID",
|
2018-10-07 09:16:12 +00:00
|
|
|
.title = " UID ",
|
2015-09-19 16:08:34 +00:00
|
|
|
.description = "User ID of the process owner",
|
2020-10-31 21:14:27 +00:00
|
|
|
.flags = 0,
|
|
|
|
},
|
2015-09-18 04:46:48 +00:00
|
|
|
[PERCENT_CPU] = {
|
2015-09-19 16:08:34 +00:00
|
|
|
.name = "PERCENT_CPU",
|
|
|
|
.title = "CPU% ",
|
|
|
|
.description = "Percentage of the CPU time the process used in the last sampling",
|
2020-10-31 21:14:27 +00:00
|
|
|
.flags = 0,
|
|
|
|
},
|
2020-10-30 16:02:20 +00:00
|
|
|
[PERCENT_NORM_CPU] = {
|
|
|
|
.name = "PERCENT_NORM_CPU",
|
|
|
|
.title = "NCPU%",
|
|
|
|
.description = "Normalized percentage of the CPU time the process used in the last sampling (normalized by cpu count)",
|
|
|
|
.flags = 0,
|
|
|
|
},
|
2015-09-18 04:46:48 +00:00
|
|
|
[PERCENT_MEM] = {
|
2015-09-19 16:08:34 +00:00
|
|
|
.name = "PERCENT_MEM",
|
|
|
|
.title = "MEM% ",
|
|
|
|
.description = "Percentage of the memory the process is using, based on resident memory size",
|
2020-10-31 21:14:27 +00:00
|
|
|
.flags = 0,
|
|
|
|
},
|
2015-09-18 04:46:48 +00:00
|
|
|
[USER] = {
|
2015-09-19 16:08:34 +00:00
|
|
|
.name = "USER",
|
|
|
|
.title = "USER ",
|
|
|
|
.description = "Username of the process owner (or user ID if name cannot be determined)",
|
2020-10-31 21:14:27 +00:00
|
|
|
.flags = 0,
|
|
|
|
},
|
2015-09-18 04:46:48 +00:00
|
|
|
[TIME] = {
|
2015-09-19 16:08:34 +00:00
|
|
|
.name = "TIME",
|
|
|
|
.title = " TIME+ ",
|
|
|
|
.description = "Total time the process has spent in user and system time",
|
2020-10-31 21:14:27 +00:00
|
|
|
.flags = 0,
|
|
|
|
},
|
2015-09-18 04:46:48 +00:00
|
|
|
[NLWP] = {
|
2015-09-19 16:08:34 +00:00
|
|
|
.name = "NLWP",
|
|
|
|
.title = "NLWP ",
|
|
|
|
.description = "Number of threads in the process",
|
2020-10-31 21:14:27 +00:00
|
|
|
.flags = 0,
|
|
|
|
},
|
2015-09-18 04:46:48 +00:00
|
|
|
[TGID] = {
|
2015-09-19 16:08:34 +00:00
|
|
|
.name = "TGID",
|
2020-12-15 18:44:52 +00:00
|
|
|
.title = "TGID",
|
2015-09-19 16:08:34 +00:00
|
|
|
.description = "Thread group ID (i.e. process ID)",
|
2020-10-31 21:14:27 +00:00
|
|
|
.flags = 0,
|
2020-12-15 18:44:52 +00:00
|
|
|
.pidColumn = true,
|
2020-10-31 21:14:27 +00:00
|
|
|
},
|
2015-09-18 04:46:48 +00:00
|
|
|
};
|
|
|
|
|
2020-10-21 19:26:05 +00:00
|
|
|
Process* OpenBSDProcess_new(const Settings* settings) {
|
2016-02-02 14:53:02 +00:00
|
|
|
OpenBSDProcess* this = xCalloc(sizeof(OpenBSDProcess), 1);
|
2015-09-18 04:46:48 +00:00
|
|
|
Object_setClass(this, Class(OpenBSDProcess));
|
|
|
|
Process_init(&this->super, settings);
|
2020-12-05 21:57:07 +00:00
|
|
|
return &this->super;
|
2015-09-18 04:46:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Process_delete(Object* cast) {
|
|
|
|
OpenBSDProcess* this = (OpenBSDProcess*) cast;
|
|
|
|
Process_done((Process*)cast);
|
|
|
|
free(this);
|
|
|
|
}
|
|
|
|
|
2020-12-05 21:57:07 +00:00
|
|
|
static void OpenBSDProcess_writeField(const Process* this, RichString* str, ProcessField field) {
|
|
|
|
//const OpenBSDProcess* op = (const OpenBSDProcess*) this;
|
2015-09-18 04:46:48 +00:00
|
|
|
char buffer[256]; buffer[255] = '\0';
|
|
|
|
int attr = CRT_colors[DEFAULT_COLOR];
|
|
|
|
//int n = sizeof(buffer) - 1;
|
|
|
|
switch (field) {
|
|
|
|
// add OpenBSD-specific fields here
|
|
|
|
default:
|
|
|
|
Process_writeField(this, str, field);
|
|
|
|
return;
|
|
|
|
}
|
2020-12-04 13:44:57 +00:00
|
|
|
RichString_appendWide(str, attr, buffer);
|
2015-09-18 04:46:48 +00:00
|
|
|
}
|
|
|
|
|
2020-12-17 23:09:55 +00:00
|
|
|
static long OpenBSDProcess_compareByKey(const Process* v1, const Process* v2, ProcessField key) {
|
|
|
|
const OpenBSDProcess* p1 = (const OpenBSDProcess*)v1;
|
|
|
|
const OpenBSDProcess* p2 = (const OpenBSDProcess*)v2;
|
2020-11-04 16:46:24 +00:00
|
|
|
|
2020-12-05 21:57:07 +00:00
|
|
|
// remove if actually used
|
|
|
|
(void)p1; (void)p2;
|
|
|
|
|
2020-12-15 18:44:48 +00:00
|
|
|
switch (key) {
|
2015-09-18 04:46:48 +00:00
|
|
|
// add OpenBSD-specific fields here
|
|
|
|
default:
|
2020-12-18 21:12:26 +00:00
|
|
|
return Process_compareByKey_Base(v1, v2, key);
|
2015-09-18 04:46:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-05 21:57:07 +00:00
|
|
|
const ProcessClass OpenBSDProcess_class = {
|
|
|
|
.super = {
|
|
|
|
.extends = Class(Process),
|
|
|
|
.display = Process_display,
|
|
|
|
.delete = Process_delete,
|
2020-12-17 23:09:55 +00:00
|
|
|
.compare = Process_compare
|
2020-12-05 21:57:07 +00:00
|
|
|
},
|
|
|
|
.writeField = OpenBSDProcess_writeField,
|
2020-12-17 23:09:55 +00:00
|
|
|
.compareByKey = OpenBSDProcess_compareByKey
|
2020-12-05 21:57:07 +00:00
|
|
|
};
|
|
|
|
|
2020-10-07 17:02:15 +00:00
|
|
|
bool Process_isThread(const Process* this) {
|
2020-12-05 21:57:07 +00:00
|
|
|
return Process_isKernelThread(this) || Process_isUserlandThread(this);
|
2015-09-18 04:46:48 +00:00
|
|
|
}
|