1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582
|
// proc.h emacs, this is written in -*-c++-*-
//
// This program is free software. See the file COPYING for details.
// Author: Mattias Engdegrd, 1997-1999
#ifndef PROC_H
#define PROC_H
#include "config.h"
#include <unistd.h>
#include <sys/time.h>
#ifdef SOLARIS
#include <procfs.h>
#include <kstat.h>
#endif
#include <qstring.h>
#include <qwindowdefs.h>
#include <qintdict.h>
#include "svec.h"
#if QT_VERSION >= 200 && !defined(QTNAME)
#define QTNAME(x) Qt::x
#else
#define QTNAME(x) x
#endif
enum fields {
F_PID, F_PPID, F_PGID, F_SID, F_TTY,
#ifdef LINUX
F_TPGID,
#endif
F_USER, F_GROUP,
F_UID, F_EUID,
#ifdef LINUX
F_SUID, F_FSUID,
#endif
F_GID, F_EGID,
#ifdef LINUX
F_SGID, F_FSGID,
#endif
F_PRI, F_NICE,
F_PLCY, F_RPRI,
#ifdef SOLARIS
F_NLWP,
#endif
F_MAJFLT, F_MINFLT,
#ifdef LINUX
F_TRS, F_DRS,
#endif
F_SIZE, F_SWAP, F_RSS,
#ifdef LINUX
F_SHARE, F_DT,
#endif
F_STAT,
F_FLAGS,
F_WCHAN,
F_WCPU, F_CPU, F_MEM,
F_START, F_TIME,
F_CPUNUM,
F_COMM,
F_CWD, F_ROOT,
F_CMDLINE,
F_END = -1 };
class Details;
#ifdef LINUX
class Sockinfo
{
public:
enum proto_t { TCP, UDP };
proto_t proto;
unsigned char st;
unsigned char tr;
unsigned local_addr;
unsigned rem_addr;
unsigned short local_port;
unsigned short rem_port;
unsigned tx_queue;
unsigned rx_queue;
unsigned tm_when;
unsigned rexmits;
int uid;
int timeout;
int inode;
};
#endif // LINUX
class Mapsinfo
{
public:
unsigned long from, to;
unsigned long offset;
unsigned long inode;
QString filename; // null if name unknown
char perm[4]; // "rwx[ps]"; last is private/shared flag
unsigned char minor, major;
};
#define OPEN_READ 1
#define OPEN_WRITE 2
class Fileinfo
{
public:
Fileinfo(int descr, QString name, int open_mode = 0)
: fd(descr), filename(name), mode(open_mode) {};
int fd;
QString filename; // "major:minor inode" in Linux 2.0,
// texual description in Solaris 2.6
unsigned mode; // bits from OPEN_* above (Linux only)
};
#ifdef LINUX
class SockInode
{
public:
SockInode(int descr, unsigned long ino) : fd(descr), inode(ino) {};
int fd;
unsigned long inode;
};
class UnixSocket
{
public:
unsigned long inode;
QString name;
unsigned flags;
unsigned char type; // probably SOCK_STREAM or SOCK_DGRAM
unsigned char state; // SS_FREE, SS_UNCONNECTED, SS_CONNECTING,
// SS_CONNECTED, SS_DISCONNECTING
};
#endif // LINUX
class NameValue
{
public:
NameValue(const char *n, const char *val) : name(n), value(val) {};
const char *name;
const char *value;
};
class Procinfo
{
public:
Procinfo(int pid);
~Procinfo();
Procinfo *ref() { refcnt++; return this; };
void deref() { if(!--refcnt) delete this; };
int readproc(int pid);
static void init_static();
static void read_common();
static void read_loadavg();
static int read_file(char *name, void *buf, int max);
void read_fd(int fdnum, char *path);
bool read_fds();
bool read_maps();
bool read_environ();
#ifdef LINUX
static bool read_socket_list(Sockinfo::proto_t proto, char *pseudofile);
static void read_sockets();
static bool read_usocket_list();
static void read_usockets();
static void invalidate_sockets();
#endif
int get_policy();
int get_rtprio();
int pid;
int uid, euid;
int gid, egid;
#ifdef LINUX
int suid, fsuid;
int sgid, fsgid;
#endif
QString cmdline;
QString comm;
char state;
int ppid;
int pgrp;
int session;
int tty;
#ifdef LINUX
int tpgid;
#endif
unsigned long flags;
unsigned long minflt;
unsigned long majflt;
#ifdef LINUX
unsigned long cminflt;
unsigned long cmajflt;
#endif
long utime;
long cutime;
int priority;
int nice;
unsigned long starttime; // in jiffies since boot
unsigned long wchan;
unsigned long size; // total memory (K)
unsigned long resident; // pages in resident set (non-swapped) (K)
#ifdef LINUX
unsigned long share; // shared memory pages (mmaped) (K)
unsigned long trs; // text resident set size (K)
unsigned long lrs; // shared-lib resident set size (K)
unsigned long drs; // data resident set size (K)
unsigned long dt; // dirty pages (number of pages, not K)
#endif
#ifdef SOLARIS
int nthreads; // number of LWPs
#endif
struct timeval tv; // time when the snapshot was taken
// Posix.1b scheduling
int policy; // -1 = uninitialized
#ifdef SOLARIS
char policy_name[2]; // two first letters of scheduling class
#endif
int rtprio; // 0-99, higher can pre-empt lower (-1 = uninitialized)
#ifdef LINUX
// from proc/XX/cpu (in 2.2 SMP kernels)
unsigned long *per_cpu_times; // vector of num_cpus times
#endif
// Linux: the cpu used most of the time of the process
// Solaris: the cpu on which the process last ran
int which_cpu;
// computed %cpu and %mem since last update
float wcpu;
float pcpu;
float pmem;
static float loadavg[3]; // 1, 5 and 15 minutes load avgs
// these are in kB
static int mem_total, mem_free;
#ifdef LINUX
static int mem_shared, mem_buffers, mem_cached;
#endif
static int swap_total, swap_free;
// Solaris <sys/sysinfo.h> #defines CPU_xxx so we must avoid them
enum { CPUTIME_USER,
#ifdef LINUX
CPUTIME_NICE,
#endif
CPUTIME_SYSTEM,
#ifdef SOLARIS
CPUTIME_WAIT,
#endif
CPUTIME_IDLE,
CPUTIMES };
// the following are pointers to matrices indexed by kind (above) and cpu
static unsigned *cpu_times_vec;
static unsigned *old_cpu_times_vec;
static unsigned num_cpus; // current number of CPUs
static unsigned old_num_cpus; // previous number of CPUs
// accessors for (old_)cpu_times_vec
static unsigned &cpu_times(int cpu, int kind)
{ return cpu_times_vec[cpu * CPUTIMES + kind]; }
static unsigned &old_cpu_times(int cpu, int kind)
{ return old_cpu_times_vec[cpu * CPUTIMES + kind]; }
static long boot_time; // seconds since epoch
#ifdef LINUX
// from /proc/net/{tcp,udp,unix}
static QIntDict<Sockinfo> socks; // tcp/udp sockets
static bool socks_current; // true if the socks list is current
static QIntDict<UnixSocket> usocks; // unix domain sockets
static bool usocks_current; // true if the usocks list is current
#endif
Svec<Fileinfo*> *fd_files; // file names or NULL if not read
Svec<Mapsinfo*> *maps; // maps or NULL if not read
QString cwd; // null if not read
QString root; // null if not read
#ifdef LINUX
Svec<SockInode> *sock_inodes; // socket inodes or NULL if not read
#endif
Svec<NameValue> *environ; // environment or NULL if not read
char *envblock; // malloc()ed environment data block
#ifdef SOLARIS
unsigned long env_ofs;
static kstat_ctl_t *kc; // NULL if kstat not opened
#endif
Details *details; // details window or NULL (backlink)
bool selected:1; // true if selected in current view
bool generation:1; // whether new or old generation (alternating)
bool hidekids:1; // true if children are hidden in tree view
bool lastchild:1; // true if last (visible) child in tree view
Svec<Procinfo *> *children; // children or NULL if none (or uninit'ed)
short level; // distance from process root
static const int MAX_CMD_LEN = 4096;
static int page_k_shift; // log2(pagesize / 1024)
char refcnt;
};
class Category
{
public:
Category(const char *heading, const char *explain)
: name(heading), help(explain) {};
virtual ~Category();
virtual int alignment() = 0;
virtual QString string(Procinfo *p) = 0;
virtual int width() = 0;
virtual int compare(Procinfo *a, Procinfo *b);
virtual int gap() { return 0; };
const char *name;
const char *help;
int index;
};
class Cat_int : public Category
{
public:
Cat_int(const char *heading, const char *explain,
int w, int Procinfo::*member);
virtual int alignment() { return QTNAME(AlignRight); };
virtual QString string(Procinfo *p);
virtual int width() { return field_width; };
virtual int compare(Procinfo *a, Procinfo *b);
protected:
int Procinfo::*int_member;
int field_width;
};
class Cat_uintl : public Category
{
public:
Cat_uintl(const char *heading, const char *explain, int w,
unsigned long Procinfo::*member);
virtual int alignment() { return QTNAME(AlignRight); };
virtual QString string(Procinfo *p);
virtual int width() { return field_width; };
virtual int compare(Procinfo *a, Procinfo *b);
protected:
unsigned long Procinfo::*uintl_member;
int field_width;
};
class Cat_hex : public Cat_uintl
{
public:
Cat_hex(const char *heading, const char *explain, int w,
unsigned long Procinfo::*member);
virtual QString string(Procinfo *p);
};
class Cat_swap : public Category
{
public:
Cat_swap(const char *heading, const char *explain);
virtual int alignment() { return QTNAME(AlignRight); };
virtual QString string(Procinfo *p);
virtual int width() { return 8; };
virtual int compare(Procinfo *a, Procinfo *b);
};
class Cat_string : public Category
{
public:
Cat_string(const char *heading, const char *explain,
QString Procinfo::*member = 0);
virtual int alignment() { return QTNAME(AlignLeft); };
virtual QString string(Procinfo *p);
virtual int width() { return -1; };
virtual int gap() { return 8; };
protected:
QString Procinfo::*str_member;
};
class Cat_user : public Cat_string
{
public:
Cat_user(const char *heading, const char *explain);
virtual QString string(Procinfo *p);
};
class Cat_group : public Cat_string
{
public:
Cat_group(const char *heading, const char *explain);
virtual QString string(Procinfo *p);
};
class Cat_wchan : public Cat_string
{
public:
Cat_wchan(const char *heading, const char *explain);
virtual QString string(Procinfo *p);
};
class Cat_dir : public Cat_string
{
public:
Cat_dir(const char *heading, const char *explain, const char *dirname,
QString Procinfo::*member);
virtual QString string(Procinfo *p);
protected:
const char *dir;
QString Procinfo::*cache;
};
class Cat_cmdline : public Cat_string
{
public:
Cat_cmdline(const char *heading, const char *explain);
virtual QString string(Procinfo *p);
};
class Cat_state : public Category
{
public:
Cat_state(const char *heading, const char *explain);
virtual int alignment() { return QTNAME(AlignLeft); };
virtual QString string(Procinfo *p);
virtual int width() { return 6; };
virtual int gap() { return 8; };
};
class Cat_policy : public Category
{
public:
Cat_policy(const char *heading, const char *explain);
virtual int alignment() { return QTNAME(AlignLeft); };
virtual QString string(Procinfo *p);
virtual int width() { return 3; };
virtual int gap() { return 8; };
virtual int compare(Procinfo *a, Procinfo *b);
};
class Cat_rtprio : public Category
{
public:
Cat_rtprio(const char *heading, const char *explain);
virtual int alignment() { return QTNAME(AlignRight); };
virtual QString string(Procinfo *p);
virtual int width() { return 5; };
virtual int compare(Procinfo *a, Procinfo *b);
};
class Cat_time : public Category
{
public:
Cat_time(const char *heading, const char *explain);
virtual int alignment() { return QTNAME(AlignRight); };
virtual QString string(Procinfo *p);
virtual int width() { return 7; };
virtual int compare(Procinfo *a, Procinfo *b);
};
class Cat_start : public Category
{
public:
Cat_start(const char *heading, const char *explain);
virtual int alignment() { return QTNAME(AlignRight); };
virtual QString string(Procinfo *p);
virtual int width() { return 8; };
virtual int compare(Procinfo *a, Procinfo *b);
};
class Cat_percent : public Category
{
public:
Cat_percent(const char *heading, const char *explain,
int w, float Procinfo::*member);
virtual int alignment() { return QTNAME(AlignRight); };
virtual QString string(Procinfo *p);
virtual int width() { return field_width; };
virtual int compare(Procinfo *a, Procinfo *b);
protected:
float Procinfo::*float_member;
int field_width;
};
class Cat_tty : public Cat_string
{
public:
Cat_tty(const char *heading, const char *explain);
virtual QString string(Procinfo *p);
};
class Proc
{
public:
Proc();
void refresh();
void newproc(Procinfo *p);
QIntDict<Procinfo> procs; // processes indexed by pid
Svec<Category *> allcats;
};
class Procview
{
public:
Procview(Proc *p);
static int compare(Procinfo *const *a, Procinfo *const *b);
static int compare_backwards(Procinfo *const *a, Procinfo *const *b);
void refresh();
void rebuild();
bool accept_proc(Procinfo *p);
void linearize_tree(Svec<Procinfo *> *ps, int level, int prow);
void build_tree();
void set_fields();
void set_fields_list(int fields[]);
void add_cat(Category *c);
void remove_cat(int index);
int findCol(int field);
Svec<Procinfo *> procs;
Svec<Procinfo *> old_procs;
// root_procs contains processes without parent; normally only init, but
// we cannot rely on this (Solaris has several parentless processes).
// Also, if the view is restricted, all processes whose parent isn't in
// the table.
Svec<Procinfo *> root_procs;
Svec<int> parent_rows;
Svec<Category *> cats;
Category *sortcat;
bool reversed; // true if sorted backwards
bool treeview; // true if viewed in tree form
enum procstates {ALL, OWNED, NROOT, RUNNING} viewproc;
enum fieldstates {USER = RUNNING + 1, JOBS, MEM, CUSTOM} viewfields;
// lists of fields to be used for different views, terminated by -1:
static int user_fields[];
static int jobs_fields[];
static int mem_fields[];
static float avg_factor; // exponential factor for averaging
static const int cpu_avg_time = 30 * 1000; // averaging time for WCPU (ms)
private:
static Category *static_sortcat; // kludge: to be used by compare
Proc *proc;
};
#endif // PROC_H
|