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 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845
|
#ifndef _GNU_SOURCE
#define _GNU_SOURCE /* for canonicalize_file_name */
#endif
#include <ctype.h> /* is_digit */
#include <dirent.h> /* opendir, readdir_r */
#include <fcntl.h>
#include <stdbool.h> /* BOOL */
#include <stdio.h> /* *scanf family */
#include <stdlib.h> /* malloc family */
#include <string.h> /* strchr */
#include <time.h> /* time_t */
#include <unistd.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/vfs.h> /* statfs */
/* glibc only goodness */
#include "obstack.h" /* glibc's handy obstacks */
/* pthreads */
#include <pthread.h> /* pthread_once */
#define obstack_chunk_alloc malloc
#define obstack_chunk_free free
#include "os/Cygwin.h"
/* NOTE: Before this was actually milliseconds even though it said microseconds, now it is correct. */
#define JIFFIES_TO_MICROSECONDS(x) (((x) * 1e6) / system_hertz)
/* some static values that won't change, */
static pthread_once_t globals_init = PTHREAD_ONCE_INIT;
static long long boot_time;
static unsigned page_size;
static unsigned long long system_memory;
static unsigned system_hertz;
static bool init_failed = false;
/* get_string()
*
* Access strings in read only section
*
* @param elem String we want to retrive (look at enum strings)
* @return Address of string
*/
inline static const char *get_string(int elem)
{
return strings + strings_index[elem];
}
/* init_static_vars()
*
* Called by pthread_once to initialize global variables (system settings that don't change)
*/
static void init_static_vars()
{
struct obstack mem_pool;
char *file_text, *file_off;
off_t file_len;
unsigned long long total_memory;
boot_time = -1;
system_memory = -1;
page_size = getpagesize();
/* initilize our mem stack, tempoary memory */
obstack_init(&mem_pool);
/* find hertz size, I'm hoping this is gotten from elf note AT_CLKTCK */
system_hertz = sysconf(_SC_CLK_TCK);
/* find boot time */
/* read /proc/stat in */
if((file_text = read_file("stat", NULL, &file_len, &mem_pool)) == NULL) {
goto fail;
}
/* look for the line that starts with btime
* NOTE: incrementing file_off after strchr is legal because file_text will
* be null terminated, so worst case after '\n' there will be '\0' and
* strncmp will fail or sscanf won't return 1
* Only increment on the first line */
for(file_off = file_text; file_off; file_off = strchr(file_off, '\n')) {
if(file_off != file_text) {
file_off++;
}
if(strncmp(file_off, "btime", 5) == 0) {
if(sscanf(file_off, "btime %lld", &boot_time) == 1) {
break;
}
}
}
obstack_free(&mem_pool, file_text);
/* did we scrape the number of pages successfuly? */
if(boot_time == -1) {
goto fail;
}
/* find total number of system pages */
/* read /proc/meminfo */
if((file_text = read_file("meminfo", NULL, &file_len, &mem_pool)) == NULL) {
goto fail;
}
/* look for the line that starts with: MemTotal */
for(file_off = file_text; file_off; file_off = strchr(file_off, '\n')) {
if(file_off != file_text) {
file_off++;
}
if(strncmp(file_off, "MemTotal:", 9) == 0) {
if(sscanf(file_off, "MemTotal: %llu", &system_memory) == 1) {
system_memory *= 1024; /* convert to bytes */
break;
}
}
}
obstack_free(&mem_pool, file_text);
/* did we scrape the number of pages successfuly? */
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
if(total_memory == -1) {
goto fail;
}
#pragma GCC diagnostic pop
/* initialize system hertz value */
/* cleanup */
obstack_free(&mem_pool, NULL);
return;
/* mark failure and cleanup allocated resources */
fail:
obstack_free(&mem_pool, NULL);
init_failed = true;
}
/* OS_initialize()
*
* Called by XS parts whenever Proc::ProcessTable::new is called
*
* NOTE: There's a const char* -> char* conversion that's evil, but can't fix
* this without breaking the Proc::ProcessTable XS API.
*/
char *OS_initialize()
{
struct statfs sfs;
/* did we already try to initilize before and fail, if pthrad_once only
* let us flag a failure from the init function; behavor of longjmp is
* undefined, so that avaue is out out of the question */
if(init_failed) {
return (char *)get_string(STR_ERR_INIT);
}
/* check if /proc is mounted, let this go before initializing globals (below),
* since the missing /proc message might me helpful */
if(statfs("/proc", &sfs) == -1) {
return (char *)get_string(STR_ERR_PROC_STATFS);
}
/* one time initialization of some values that won't change */
pthread_once(&globals_init, init_static_vars);
return NULL;
}
inline static void field_enable(char *format_str, enum field field)
{
format_str[field] = tolower(format_str[field]);
}
inline static void field_enable_range(char *format_str, enum field field1,
enum field field2)
{
int i;
for(i = field1; i <= field2; i++) {
format_str[i] = tolower(format_str[i]);
}
}
/* proc_pid_file()
*
* Build a path to the pid directory in proc '/proc/${pid}' with an optional
* relative path at the end. Put the resultant path on top of the obstack.
*
* @return Address of the create path string.
*/
inline static char *proc_pid_file(const char *pid, const char *file,
struct obstack *mem_pool)
{
/* path to dir */
obstack_printf(mem_pool, "/proc/%s", pid);
/* additional path (not just the dir) */
if(file) {
obstack_printf(mem_pool, "/%s", file);
}
obstack_1grow(mem_pool, '\0');
return (char *)obstack_finish(mem_pool);
}
/* read_file()
*
* Reads the contents of a file using an obstack for memory. It can read files like
* /proc/stat or /proc/${pid}/stat.
*
* @param path String representing the part following /proc (usualy this is
* the process pid number)
* @param extra_path Path to the file to read in (relative to /proc/${path}/)
* @param len Pointer to the value where the length will be saved
*
* @return Pointer to a null terminate string allocated on the obstack, or
* NULL when it fails (doesn't clean up the obstack).
*/
static char *read_file(const char *path, const char *extra_path,
off_t *len, struct obstack *mem_pool)
{
int fd, result = -1;
char *text, *file, *start;
/* build the filename in our tempoary storage */
file = proc_pid_file(path, extra_path, mem_pool);
fd = open(file, O_RDONLY);
/* free tmp memory we allocated for the file contents, this way we are not
* poluting the obstack and the only thing left on it is the file */
obstack_free(mem_pool, file);
if(fd == -1) {
return NULL;
}
/* read file into our buffer */
for(*len = 0; result; *len += result) {
obstack_blank(mem_pool, 1024);
start = obstack_base(mem_pool) + *len;
if((result = read(fd, start, 1024)) == -1) {
obstack_free(mem_pool, obstack_finish(mem_pool));
close(fd);
return NULL;
}
}
start = obstack_base(mem_pool) + *len;
*start = '\0';
/* finalize our text buffer */
text = obstack_finish(mem_pool);
/* not bothering checking return value, because it's possible that the
* process went away */
close(fd);
return text;
}
/* get_user_info()
*
* Find the user/group id of the process
*
* @param pid String representing the pid
* @param prs Data structure where to put the scraped values
* @param mem_pool Obstack to use for temory storage
*/
static void get_user_info(char *pid, char *format_str, struct procstat *prs,
struct obstack *mem_pool)
{
char * path_pid;
struct stat stat_pid;
int result;
/* (temp) /proc/${pid} */
path_pid = proc_pid_file(pid, NULL, mem_pool);
result = stat(path_pid, &stat_pid);
obstack_free(mem_pool, path_pid);
if(result == -1) {
return;
}
prs->uid = stat_pid.st_uid;
prs->gid = stat_pid.st_gid;
field_enable(format_str, F_UID);
field_enable(format_str, F_GID);
}
/* get_proc_stat()
*
* Reads a processes stat file in the proc filesystem '/proc/${pid}/stat' and
* fills the procstat structure with the values.
*
* @param pid String representing the pid
* @param prs Data structure where to put the scraped values
* @param mem_pool Obstack to use for temory storage
*/
static bool get_proc_stat(char *pid, char *format_str, struct procstat *prs,
struct obstack *mem_pool)
{
char *stat_text, *stat_cont, *close_paren, *open_paren;
int result;
off_t stat_len;
long dummy_l;
int dummy_i;
bool read_ok = true;
if((stat_text = read_file(pid, "stat", &stat_len, mem_pool)) == NULL) {
return false;
}
if(sscanf(stat_text, "%d (", &prs->pid) != 1) {
goto done;
}
/* replace the first ')' with a '\0', the contents look like this:
* pid (program_name) state ...
* if we don't find ')' then it's incorrectly formated */
if((close_paren = strrchr(stat_text, ')')) == NULL) {
read_ok = false;
goto done;
}
*close_paren = '\0';
if((open_paren = strchr(stat_text, '(')) == NULL) {
read_ok = false;
goto done;
}
int comm_esize = sizeof(prs->comm) - 1;
int comm_len = close_paren - open_paren - 1;
if(comm_len > comm_esize) {
comm_len = comm_esize;
}
if(comm_len > 0) {
strncpy(prs->comm, open_paren + 1, comm_esize);
prs->comm[comm_esize] = '\0';
}
/* address at which we pickup again, after the ')'
* NOTE: we don't bother checking bounds since strchr didn't return NULL
* thus the NULL terminator will be at least close_paren+1, which is ok */
stat_cont = close_paren + 1;
/* scrape the remaining values */
result = sscanf(stat_cont,
" %c" /* 3 state*/
" %d" /* 4 ppid */
" %d" /* 5 pgrp */
" %d" /* 6 sid */
" %d" /* 7 tty */
" %d" /* 8 tty_pgid */
" %u" /* 9 flags */
" %lu" /* 10 minflt */
" %lu" /* 11 cminflt */
" %lu" /* 12 majflt */
" %lu" /* 13 cmajflt */
" %llu" /* 14 utime */
" %llu" /* 15 stime */
" %lld" /* 16 cutime */
" %lld" /* 17 cstime */
" %ld" /* 18 priority */
" %ld" /* 19 nice */
" %ld" /* 20 num_threads */
" %d" /* 21 itrealvalue */
" %llu" /* 22 starttime */
" %lu" /* 23 vsize */
" %ld" /* 24 rss */
" %ld" /* 25 rsslim */
,
&prs->state_c, /* %c */
&prs->ppid, &prs->pgrp, /* %d %d */
&prs->sid, /* %d */
&prs->tty, &dummy_i, /* tty, tty_pgid */
&prs->flags, /* %u */
&prs->minflt, &prs->cminflt,
&prs->majflt, &prs->cmajflt, /* %lu %lu %lu %lu */
&prs->utime, &prs->stime,
&prs->cutime, &prs->cstime,
&prs->priority,
&dummy_l, /* nice */
&dummy_l, /* num threads */
&dummy_i, /* timeout obsolete */
&prs->start_time,
&prs->vsize, &prs->rss,
&dummy_l);
/* 23 items in scanf's list... It's all or nothing baby */
if(result != 23) {
read_ok = false;
goto done;
}
/* enable fields; F_STATE is not the range */
field_enable_range(format_str, F_PID, F_RSS);
done:
obstack_free(mem_pool, stat_text);
return read_ok;
}
static void eval_link(char *pid, char *link_rel, enum field field, char **ptr,
char *format_str, struct obstack *mem_pool)
{
char *link_file, *link;
/* path to the link file like. /proc/{pid}/{link_rel} */
link_file = proc_pid_file(pid, link_rel, mem_pool);
/* It's okay to use canonicalize_file_name instead of readlink on linux
* for the cwd symlink, since on linux the links we care about will never
* be relative links (cwd, exec)
* Doing this because readlink works on static buffers */
/* canonicalize_file_name is no good for musl, use realpath instead */
link = realpath(link_file, NULL);
/* we no longer need need the path to the link file */
obstack_free(mem_pool, link_file);
if(link == NULL) {
return;
}
/* copy the path onto our obstack, set the value (somewhere in pts)
* and free the results of canonicalize_file_name */
obstack_printf(mem_pool, "%s", link);
obstack_1grow(mem_pool, '\0');
*ptr = (char *)obstack_finish(mem_pool);
free(link);
/* enable whatever field we successfuly retrived */
field_enable(format_str, field);
}
static void get_proc_cmndline(char *pid, char *format_str, struct procstat *prs,
struct obstack *mem_pool)
{
char *cmndline_text, *cur;
off_t cmndline_off;
if((cmndline_text = read_file(pid, "cmdline", &cmndline_off, mem_pool)) == NULL) {
return;
}
/* replace all '\0' with spaces (except for the last one */
for(cur = cmndline_text; cur < cmndline_text + cmndline_off - 1; cur++) {
if(*cur == '\0') {
*cur = ' ';
}
}
prs->cmndline = cmndline_text;
field_enable(format_str, F_CMNDLINE);
}
static void get_proc_cmdline(char *pid, char *format_str, struct procstat *prs,
struct obstack *mem_pool)
{
char *cmdline_text;
off_t cmdline_off;
if((cmdline_text = read_file(pid, "cmdline", &cmdline_off, mem_pool)) == NULL) {
return;
}
prs->cmdline = cmdline_text;
prs->cmdline_len = cmdline_off;
field_enable(format_str, F_CMDLINE);
}
static void get_proc_environ(char *pid, char *format_str, struct procstat *prs,
struct obstack *mem_pool)
{
char *environ_text;
off_t environ_off;
if((environ_text = read_file(pid, "environ", &environ_off, mem_pool)) == NULL) {
return;
}
prs->environ = environ_text;
prs->environ_len = environ_off;
field_enable(format_str, F_ENVIRON);
}
static void get_proc_winexename(char *pid, char *format_str, struct procstat *prs,
struct obstack *mem_pool)
{
char *winexename_text;
off_t winexename_len;
if((winexename_text = read_file(pid, "winexename", &winexename_len, mem_pool)) == NULL) {
return;
}
prs->winexename = winexename_text;
field_enable(format_str, F_WINEXENAME);
}
static void get_proc_winpid(char *pid, char *format_str, struct procstat *prs,
struct obstack *mem_pool)
{
char *winpid_text;
off_t winpid_len;
int res;
if((winpid_text = read_file(pid, "winpid", &winpid_len, mem_pool)) == NULL) {
return;
}
res = sscanf(winpid_text, "%d", &prs->winpid);
if(res == 1) {
field_enable(format_str, F_WINPID);
}
obstack_free(mem_pool, winpid_text);
}
static void get_proc_status(char *pid, char *format_str, struct procstat *prs,
struct obstack *mem_pool)
{
char *status_text, *loc;
off_t status_len;
int dummy_i;
if((status_text = read_file(pid, "status", &status_len, mem_pool)) == NULL) {
return;
}
loc = status_text;
/*
* get the euid, egid and so on out of /proc/$$/status
* where the 2 lines in which we are interested in are:
* [5] Uid: 500 500 500 500
* [6] Gid: 500 500 500 500
* added by scip
*/
for(loc = status_text; loc; loc = strchr(loc, '\n')) {
/* skip past the \n character */
if(loc != status_text) {
loc++;
}
if(strncmp(loc, "Uid:", 4) == 0) {
sscanf(loc + 4, " %d %d %d %d", &dummy_i, &prs->euid, &prs->suid, &prs->fuid);
field_enable_range(format_str, F_EUID, F_FUID);
} else if(strncmp(loc, "Gid:", 4) == 0) {
sscanf(loc + 4, " %d %d %d %d", &dummy_i, &prs->egid, &prs->sgid, &prs->fgid);
field_enable_range(format_str, F_EGID, F_FGID);
}
/* short circuit condition */
if(islower((int)format_str[F_EUID]) && islower((int)format_str[F_EGID])) {
goto done;
}
}
done:
obstack_free(mem_pool, status_text);
}
/* fixup_stat_values()
*
* Correct, calculate, covert values to user expected values.
*
* @param format_str String containing field index types
* @param prs Data structure to peform fixups on
*/
static void fixup_stat_values(char *format_str, struct procstat *prs)
{
/* set the state pointer to the right (const) string */
switch(prs->state_c) {
case 'S':
prs->state = get_string(SLEEP);
break;
case 'O':
case 'R':
prs->state = get_string(RUN);
break;
case 'Z':
prs->state = get_string(DEFUNCT);
break;
case 'D':
prs->state = get_string(UWAIT);
break;
case 'T':
prs->state = get_string(STOP);
break;
/* unknown state, state is already set to NULL */
default:
ppt_warn("Ran into unknown state (hex char: %x)", (int)prs->state_c);
goto skip_state_format;
}
field_enable(format_str, F_STATE);
skip_state_format:
prs->start_time = (prs->start_time / system_hertz) + boot_time;
/* fix time */
prs->stime = JIFFIES_TO_MICROSECONDS(prs->stime);
prs->utime = JIFFIES_TO_MICROSECONDS(prs->utime);
prs->cstime = JIFFIES_TO_MICROSECONDS(prs->cstime);
prs->cutime = JIFFIES_TO_MICROSECONDS(prs->cutime);
/* derived time values */
prs->time = prs->utime + prs->stime;
prs->ctime = prs->cutime + prs->cstime;
field_enable_range(format_str, F_TIME, F_CTIME);
/* fix rss to be in bytes (returned from kernel in pages) */
prs->rss *= page_size;
}
/* calc_prec()
*
* calculate the two cpu/memory precentage values
*/
static void calc_prec(char *format_str, struct procstat *prs, struct obstack *mem_pool)
{
int len;
/* calculate pctcpu - NOTE: This assumes the cpu time is in microsecond units!
* multiplying by 1/1e6 puts all units back in seconds. Then multiply by 100.0f to get a percentage.
*/
float pctcpu = (100.0f * (prs->utime + prs->stime) * 1 / 1e6) / (time(NULL) - prs->start_time);
len = snprintf(prs->pctcpu, LENGTH_PCTCPU, "%6.2f", pctcpu);
if(len >= LENGTH_PCTCPU) {
ppt_warn("percent cpu truncated from %d, set LENGTH_PCTCPU to at least: %d)", len, len + 1);
}
field_enable(format_str, F_PCTCPU);
/* calculate pctmem */
if(system_memory > 0) {
sprintf(prs->pctmem, "%3.2f", (float)prs->rss / system_memory * 100.f);
field_enable(format_str, F_PCTMEM);
}
}
/* is_pid()
*
*
* @return Boolean value.
*/
inline static bool is_pid(const char *str)
{
for(; *str; str++) {
if(!isdigit((int)*str)) {
return false;
}
}
return true;
}
inline static bool pid_exists(const char *str, struct obstack *mem_pool)
{
char *pid_dir_path = NULL;
int result;
obstack_printf(mem_pool, "/proc/%s", str);
obstack_1grow(mem_pool, '\0');
pid_dir_path = obstack_finish(mem_pool);
/* directory exists? */
result = (access(pid_dir_path, F_OK) != -1);
obstack_free(mem_pool, pid_dir_path);
return result;
}
void OS_get_table()
{
/* dir walker storage */
DIR * dir;
struct dirent *dir_ent, *dir_result;
/* all our storage is going to be here */
struct obstack mem_pool;
/* container for scraped process values */
struct procstat *prs;
/* string containing our local copy of format_str, elements will be
* lower cased if we are able to figure them out */
char *format_str;
/* initialize a small memory pool for this function */
obstack_init(&mem_pool);
/* put the dirent on the obstack, since it's rather large */
dir_ent = obstack_alloc(&mem_pool, sizeof(struct dirent));
if((dir = opendir("/proc")) == NULL) {
return;
}
/* Iterate through all the process entries (numeric) under /proc */
while(readdir_r(dir, dir_ent, &dir_result) == 0 && dir_result) {
/* Only look at this file if it's a proc id; that is, all numbers */
if(!is_pid(dir_result->d_name)) {
continue;
}
/* allocate container for storing process values */
prs = obstack_alloc(&mem_pool, sizeof(struct procstat));
bzero(prs, sizeof(struct procstat));
/* initialize the format string */
obstack_printf(&mem_pool, "%s", get_string(STR_DEFAULT_FORMAT));
obstack_1grow(&mem_pool, '\0');
format_str = (char *)obstack_finish(&mem_pool);
/* get process' uid/guid */
get_user_info(dir_result->d_name, format_str, prs, &mem_pool);
/* scrape /proc/${pid}/stat */
if(get_proc_stat(dir_result->d_name, format_str, prs, &mem_pool) == false) {
/* did the pid directory go away mid flight? */
if(pid_exists(dir_result->d_name, &mem_pool) == false) {
continue;
}
}
/* correct values (times) found in /proc/${pid}/stat */
fixup_stat_values(format_str, prs);
/* get process' cmndline */
get_proc_cmndline(dir_result->d_name, format_str, prs, &mem_pool);
/* get process' cmdline */
get_proc_cmdline(dir_result->d_name, format_str, prs, &mem_pool);
/* get process' environ */
get_proc_environ(dir_result->d_name, format_str, prs, &mem_pool);
/* get process' cwd & exec values from the symblink */
eval_link(dir_result->d_name, "cwd", F_CWD, &prs->cwd, format_str,
&mem_pool);
eval_link(dir_result->d_name, "exe", F_EXEC, &prs->exec, format_str,
&mem_pool);
/* scrape from /proc/{$pid}/status */
get_proc_status(dir_result->d_name, format_str, prs, &mem_pool);
/* extra Windows stuff */
get_proc_winexename(dir_result->d_name, format_str, prs, &mem_pool);
get_proc_winpid(dir_result->d_name, format_str, prs, &mem_pool);
/* calculate precent cpu & mem values */
calc_prec(format_str, prs, &mem_pool);
/* Go ahead and bless into a perl object */
/* Linux.h defines const char* const* Fiels, but we cast it away, as bless_into_proc only understands char** */
bless_into_proc(format_str, (char **)field_names,
prs->uid,
prs->gid,
prs->pid,
prs->comm,
prs->ppid,
prs->pgrp,
prs->sid,
prs->tty,
prs->flags,
prs->minflt,
prs->cminflt,
prs->majflt,
prs->cmajflt,
prs->utime,
prs->stime,
prs->cutime,
prs->cstime,
prs->priority,
prs->start_time,
prs->vsize,
prs->rss,
prs->time,
prs->ctime,
prs->state,
prs->euid,
prs->suid,
prs->fuid,
prs->egid,
prs->sgid,
prs->fgid,
prs->pctcpu,
prs->pctmem,
prs->cmndline,
prs->exec,
prs->cwd,
prs->cmdline,
prs->cmdline_len,
prs->environ,
prs->environ_len,
prs->winexename,
prs->winpid
);
/* we want a new prs, for the next itteration */
obstack_free(&mem_pool, prs);
}
closedir(dir);
/* free all our tempoary memory */
obstack_free(&mem_pool, NULL);
}
|