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 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989
|
/*
** ATOP - System & Process Monitor
**
** The program 'atop' offers the possibility to view the activity of
** the system on system-level as well as process-/thread-level.
**
** This source-file contains functions to read the process-administration
** of every running process from kernel-space and extract the required
** activity-counters.
** ==========================================================================
** Author: Gerlof Langeveld
** E-mail: gerlof.langeveld@atoptool.nl
** Date: November 1996
** LINUX-port: June 2000
** --------------------------------------------------------------------------
** Copyright (C) 2000-2022 Gerlof Langeveld
**
** This program is free software; you can redistribute it and/or modify it
** under the terms of the GNU General Public License as published by the
** Free Software Foundation; either version 2, or (at your option) any
** later version.
**
** This program is distributed in the hope that it will be useful, but
** WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
** See the GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
** --------------------------------------------------------------------------
*/
#include <sys/types.h>
#include <sys/param.h>
#include <dirent.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <ctype.h>
#include <time.h>
#include <stdlib.h>
#include <regex.h>
#include <glib.h>
#include "atop.h"
#include "photoproc.h"
#include "netatop.h"
#define SCANSTAT "%c %d %*d %*d %*d %*d " \
"%*d %lld %*d %lld %*d %lld " \
"%lld %*d %*d %d %d %*d " \
"%*d %ld %lld %lld %*d %*d " \
"%*d %*d %*d %*d %*d %*d " \
"%*d %*d %*d %*d %*d %*d " \
"%d %d %d %lld"
static int procstat(struct tstat *, unsigned long long, char);
static int procstatus(struct tstat *);
static int procio(struct tstat *);
static void proccmd(struct tstat *);
static void procsmaps(struct tstat *);
static void procwchan(struct tstat *);
static count_t procschedstat(struct tstat *);
extern GHashTable *ghash_net;
extern char prependenv;
extern regex_t envregex;
unsigned long
photoproc(struct tstat *tasklist, int maxtask)
{
static int firstcall = 1;
static unsigned long long bootepoch;
register struct tstat *curtask;
FILE *fp;
DIR *dirp;
struct dirent *entp;
char origdir[4096], dockstat=0;
unsigned long tval=0;
/*
** one-time initialization stuff
*/
if (firstcall)
{
/*
** check if this kernel offers io-statistics per task
*/
regainrootprivs();
if ( (fp = fopen("/proc/1/io", "r")) )
{
supportflags |= IOSTAT;
fclose(fp);
}
if (! droprootprivs())
mcleanstop(42, "failed to drop root privs\n");
/*
** find epoch time of boot moment
*/
bootepoch = getboot();
firstcall = 0;
}
/*
** probe if the netatop module and (optionally) the
** netatopd daemon are active
*/
regainrootprivs();
/*
** if netatop kernel module is not active on this system,
** try to connect to netatop-bpf
*/
if (connectnetatop && !(supportflags & NETATOP)) {
netatop_bpf_probe();
}
/*
** if netatop-bpf is not active on this system,
** try to connect to kernel module
*/
if (connectnetatop && !(supportflags & NETATOPBPF)) {
netatop_probe();
}
/*
** if netatop-bpf is active on this system, fetch data
*/
if (supportflags & NETATOPBPF) {
netatop_bpf_gettask();
}
if (! droprootprivs())
mcleanstop(42, "failed to drop root privs\n");
/*
** read all subdirectory-names below the /proc directory
*/
if ( getcwd(origdir, sizeof origdir) == NULL)
mcleanstop(53, "failed to save current dir\n");
if ( chdir("/proc") == -1)
mcleanstop(54, "failed to change to /proc\n");
dirp = opendir(".");
while ( (entp = readdir(dirp)) && tval < maxtask )
{
/*
** skip non-numerical names
*/
if (!isdigit(entp->d_name[0]))
continue;
/*
** change to the process' subdirectory
*/
if ( chdir(entp->d_name) != 0 )
continue;
/*
** gather process-level information
*/
curtask = tasklist+tval;
if ( !procstat(curtask, bootepoch, 1)) /* from /proc/pid/stat */
{
if ( chdir("..") == -1)
;
continue;
}
if ( !procstatus(curtask) ) /* from /proc/pid/status */
{
if ( chdir("..") == -1)
;
continue;
}
if ( !procio(curtask) ) /* from /proc/pid/io */
{
if ( chdir("..") == -1)
;
continue;
}
procschedstat(curtask); /* from /proc/pid/schedstat */
proccmd(curtask); /* from /proc/pid/cmdline */
dockstat += getutsname(curtask); /* retrieve container/pod name */
/*
** reading the smaps file for every process with every sample
** is a really 'expensive' from a CPU consumption point-of-view,
** so gathering this info is optional
*/
if (calcpss)
procsmaps(curtask); /* from /proc/pid/smaps */
/*
** determine thread's wchan, if wanted ('expensive' from
** a CPU consumption point-of-view)
*/
if (getwchan)
procwchan(curtask);
if (supportflags & NETATOPBPF) {
struct taskcount *tc = g_hash_table_lookup(ghash_net, &(curtask->gen.tgid));
if (tc) {
// printf("%d %d %d %d %d\n",curtask->gen.tgid, tc->tcpsndpacks, tc->tcprcvpacks, tc->udpsndpacks, tc->udprcvpacks);
curtask->net.tcpsnd = tc->tcpsndpacks;
curtask->net.tcprcv = tc->tcprcvpacks;
curtask->net.tcpssz = tc->tcpsndbytes;
curtask->net.tcprsz = tc->tcprcvbytes;
curtask->net.udpsnd = tc->udpsndpacks;
curtask->net.udprcv = tc->udprcvpacks;
curtask->net.udpssz = tc->udpsndbytes;
curtask->net.udprsz = tc->udprcvbytes;
}
} else {
// read network stats from netatop (if active)
netatop_gettask(curtask->gen.tgid, 'g', curtask);
}
tval++; /* increment for process-level info */
/*
** if needed (when number of threads is larger than 1):
** read and fill new entries with thread-level info
*/
if (curtask->gen.nthr > 1)
{
DIR *dirtask;
struct dirent *tent;
curtask->gen.nthrrun = 0;
curtask->gen.nthrslpi = 0;
curtask->gen.nthrslpu = 0;
curtask->gen.nthridle = 0;
/*
** rundelay and blkdelay on process level only
** concerns the delays of the main thread;
** totalize the delays of all threads
*/
curtask->cpu.rundelay = 0;
curtask->cpu.blkdelay = 0;
/*
** nvcsw and nivcsw on process level only
** concerns the delays of the main thread;
** totalize the delays of all threads
*/
curtask->cpu.nvcsw = 0;
curtask->cpu.nivcsw = 0;
/*
** open underlying task directory
*/
if ( chdir("task") == 0 )
{
unsigned long cur_nth = 0;
dirtask = opendir(".");
/*
** due to race condition, opendir() might
** have failed (leave task and process-level
** directories)
*/
if( dirtask == NULL )
{
if(chdir("../..") == -1)
;
continue;
}
while ((tent=readdir(dirtask)) && tval<maxtask)
{
struct tstat *curthr = tasklist+tval;
/*
** change to the thread's subdirectory
*/
if ( tent->d_name[0] == '.' ||
chdir(tent->d_name) != 0 )
continue;
if ( !procstat(curthr, bootepoch, 0))
{
if ( chdir("..") == -1)
;
continue;
}
if ( !procstatus(curthr) )
{
if ( chdir("..") == -1)
;
continue;
}
if ( !procio(curthr) )
{
if ( chdir("..") == -1)
;
continue;
}
/*
** determine thread's wchan, if wanted
** ('expensive' from a CPU consumption
** point-of-view)
*/
if (getwchan)
procwchan(curthr);
// totalize values of all threads
curtask->cpu.rundelay +=
procschedstat(curthr);
curtask->cpu.blkdelay +=
curthr->cpu.blkdelay;
curtask->cpu.nvcsw +=
curthr->cpu.nvcsw;
curtask->cpu.nivcsw +=
curthr->cpu.nivcsw;
// continue gathering
strcpy(curthr->gen.utsname,
curtask->gen.utsname);
switch (curthr->gen.state)
{
case 'R':
curtask->gen.nthrrun += 1;
break;
case 'S':
curtask->gen.nthrslpi += 1;
break;
case 'D':
curtask->gen.nthrslpu += 1;
break;
case 'I':
curtask->gen.nthridle += 1;
break;
}
curthr->gen.nthr = 1;
// try to read network stats from netatop's module
if (!(supportflags & NETATOPBPF)) {
netatop_gettask(curthr->gen.pid, 't',
curthr);
}
// all stats read now
tval++; /* increment thread-level */
cur_nth++; /* increment # threads */
if ( chdir("..") == -1)
; /* thread */
}
closedir(dirtask);
if ( chdir("..") == -1)
; /* leave task */
// calibrate number of threads
curtask->gen.nthr = cur_nth;
}
}
if ( chdir("..") == -1)
; /* leave process-level directry */
}
closedir(dirp);
if ( chdir(origdir) == -1)
mcleanstop(55, "cannot change to %s\n", origdir);
if (dockstat)
supportflags |= CONTAINERSTAT;
else
supportflags &= ~CONTAINERSTAT;
resetutsname(); // reassociate atop with own UTS namespace
return tval;
}
/*
** count number of tasks in the system, i.e.
** the number of processes plus the total number of threads
*/
unsigned long
counttasks(void)
{
unsigned long nrproc=0, nrthread=0;
char linebuf[256];
FILE *fp;
DIR *dirp;
struct dirent *entp;
char origdir[1024];
/*
** determine total number of threads
*/
if ( (fp = fopen("/proc/loadavg", "r")) != NULL)
{
if ( fgets(linebuf, sizeof(linebuf), fp) != NULL)
{
if ( sscanf(linebuf, "%*f %*f %*f %*d/%lu", &nrthread) < 1)
mcleanstop(53, "wrong /proc/loadavg\n");
}
else
mcleanstop(53, "unreadable /proc/loadavg\n");
fclose(fp);
}
else
mcleanstop(53, "can not open /proc/loadavg\n");
/*
** add total number of processes
*/
if ( getcwd(origdir, sizeof origdir) == NULL)
mcleanstop(53, "cannot determine cwd\n");
if ( chdir("/proc") == -1)
mcleanstop(53, "cannot change to /proc\n");
dirp = opendir(".");
while ( (entp = readdir(dirp)) )
{
/*
** count subdirectory names under /proc starting with a digit
*/
if (isdigit(entp->d_name[0]))
nrproc++;
}
closedir(dirp);
if ( chdir(origdir) == -1)
mcleanstop(53, "cannot change to %s\n", origdir);
if (nrthread < nrproc)
mcleanstop(53, "#threads (%ld) < #procs (%ld)\n",
nrthread, nrproc);
return nrproc + nrthread;
}
/*
** open file "stat" and obtain required info
*/
static int
procstat(struct tstat *curtask, unsigned long long bootepoch, char isproc)
{
FILE *fp;
int nr;
char line[4096], *p, *cmdhead, *cmdtail;
if ( (fp = fopen("stat", "r")) == NULL)
return 0;
if ( (nr = fread(line, 1, sizeof line-1, fp)) == 0)
{
fclose(fp);
return 0;
}
line[nr] = '\0'; // terminate string
/*
** fetch command name
*/
cmdhead = strchr (line, '(');
cmdtail = strrchr(line, ')');
if (!cmdhead || !cmdtail || cmdtail < cmdhead) // parsing failed?
{
fclose(fp);
return 0;
}
if ( (nr = cmdtail-cmdhead-1) > PNAMLEN)
nr = PNAMLEN;
p = curtask->gen.name;
memcpy(p, cmdhead+1, nr);
*(p+nr) = 0;
while ( (p = strchr(p, '\n')) != NULL)
{
*p = '?';
p++;
}
/*
** fetch other values
*/
curtask->gen.isproc = isproc;
curtask->cpu.rtprio = 0;
curtask->cpu.policy = 0;
curtask->gen.excode = 0;
sscanf(line, "%d", &(curtask->gen.pid)); /* fetch pid */
nr = sscanf(cmdtail+2, SCANSTAT,
&(curtask->gen.state), &(curtask->gen.ppid),
&(curtask->mem.minflt), &(curtask->mem.majflt),
&(curtask->cpu.utime), &(curtask->cpu.stime),
&(curtask->cpu.prio), &(curtask->cpu.nice),
&(curtask->gen.btime),
&(curtask->mem.vmem), &(curtask->mem.rmem),
&(curtask->cpu.curcpu), &(curtask->cpu.rtprio),
&(curtask->cpu.policy), &(curtask->cpu.blkdelay));
if (nr < 12) /* parsing failed? */
{
fclose(fp);
return 0;
}
/*
** normalization
*/
curtask->gen.btime = (curtask->gen.btime+bootepoch)/hertz;
curtask->cpu.prio += 100; /* was subtracted by kernel */
curtask->mem.vmem /= 1024;
curtask->mem.rmem *= pagesize/1024;
fclose(fp);
switch (curtask->gen.state)
{
case 'R':
curtask->gen.nthrrun = 1;
break;
case 'S':
curtask->gen.nthrslpi = 1;
break;
case 'D':
curtask->gen.nthrslpu = 1;
break;
case 'I':
curtask->gen.nthridle = 1;
break;
}
return 1;
}
/*
** open file "status" and obtain required info
*/
static int
procstatus(struct tstat *curtask)
{
FILE *fp;
char line[4096];
if ( (fp = fopen("status", "r")) == NULL)
return 0;
curtask->gen.nthr = 1; /* for compat with 2.4 */
curtask->cpu.sleepavg = 0; /* for compat with 2.4 */
curtask->mem.vgrow = 0; /* calculated later */
curtask->mem.rgrow = 0; /* calculated later */
while (fgets(line, sizeof line, fp))
{
if (memcmp(line, "Tgid:", 5) ==0)
{
sscanf(line, "Tgid: %d", &(curtask->gen.tgid));
continue;
}
if (memcmp(line, "Pid:", 4) ==0)
{
sscanf(line, "Pid: %d", &(curtask->gen.pid));
continue;
}
if (memcmp(line, "SleepAVG:", 9)==0)
{
sscanf(line, "SleepAVG: %d%%",
&(curtask->cpu.sleepavg));
continue;
}
if (memcmp(line, "Uid:", 4)==0)
{
sscanf(line, "Uid: %d %d %d %d",
&(curtask->gen.ruid), &(curtask->gen.euid),
&(curtask->gen.suid), &(curtask->gen.fsuid));
continue;
}
if (memcmp(line, "Gid:", 4)==0)
{
sscanf(line, "Gid: %d %d %d %d",
&(curtask->gen.rgid), &(curtask->gen.egid),
&(curtask->gen.sgid), &(curtask->gen.fsgid));
continue;
}
if (memcmp(line, "envID:", 6) ==0)
{
sscanf(line, "envID: %d", &(curtask->gen.ctid));
continue;
}
if (memcmp(line, "VPid:", 5) ==0)
{
sscanf(line, "VPid: %d", &(curtask->gen.vpid));
continue;
}
if (memcmp(line, "Threads:", 8)==0)
{
sscanf(line, "Threads: %d", &(curtask->gen.nthr));
continue;
}
if (memcmp(line, "VmData:", 7)==0)
{
sscanf(line, "VmData: %lld", &(curtask->mem.vdata));
continue;
}
if (memcmp(line, "VmStk:", 6)==0)
{
sscanf(line, "VmStk: %lld", &(curtask->mem.vstack));
continue;
}
if (memcmp(line, "VmExe:", 6)==0)
{
sscanf(line, "VmExe: %lld", &(curtask->mem.vexec));
continue;
}
if (memcmp(line, "VmLib:", 6)==0)
{
sscanf(line, "VmLib: %lld", &(curtask->mem.vlibs));
continue;
}
if (memcmp(line, "VmSwap:", 7)==0)
{
sscanf(line, "VmSwap: %lld", &(curtask->mem.vswap));
continue;
}
if (memcmp(line, "VmLck:", 6)==0)
{
sscanf(line, "VmLck: %lld", &(curtask->mem.vlock));
continue;
}
if (memcmp(line, "voluntary_ctxt_switches:", 24)==0)
{
sscanf(line, "voluntary_ctxt_switches: %lld", &(curtask->cpu.nvcsw));
continue;
}
if (memcmp(line, "nonvoluntary_ctxt_switches:", 27)==0)
{
sscanf(line, "nonvoluntary_ctxt_switches: %lld", &(curtask->cpu.nivcsw));
continue;
}
}
fclose(fp);
return 1;
}
/*
** open file "io" (>= 2.6.20) and obtain required info
*/
#define IO_READ "read_bytes:"
#define IO_WRITE "write_bytes:"
#define IO_CWRITE "cancelled_write_bytes:"
static int
procio(struct tstat *curtask)
{
FILE *fp;
char line[4096];
count_t dskrsz=0, dskwsz=0, dskcwsz=0;
if (supportflags & IOSTAT)
{
regainrootprivs();
if ( (fp = fopen("io", "r")) )
{
while (fgets(line, sizeof line, fp))
{
if (memcmp(line, IO_READ,
sizeof IO_READ -1) == 0)
{
sscanf(line, "%*s %llu", &dskrsz);
dskrsz /= 512; // in sectors
continue;
}
if (memcmp(line, IO_WRITE,
sizeof IO_WRITE -1) == 0)
{
sscanf(line, "%*s %llu", &dskwsz);
dskwsz /= 512; // in sectors
continue;
}
if (memcmp(line, IO_CWRITE,
sizeof IO_CWRITE -1) == 0)
{
sscanf(line, "%*s %llu", &dskcwsz);
dskcwsz /= 512; // in sectors
continue;
}
}
fclose(fp);
curtask->dsk.rsz = dskrsz;
curtask->dsk.rio = dskrsz; // to enable sort
curtask->dsk.wsz = dskwsz;
curtask->dsk.wio = dskwsz; // to enable sort
curtask->dsk.cwsz = dskcwsz;
}
if (! droprootprivs())
mcleanstop(42, "failed to drop root privs\n");
}
return 1;
}
/*
** store the full command line
**
** the command-line may contain:
** - null-bytes as a separator between the arguments
** - newlines (e.g. arguments for awk or sed)
** - tabs (e.g. arguments for awk or sed)
** these special bytes will be converted to spaces
**
** the command line may be prepended by environment variables
*/
#define ABBENVLEN 16
static void
proccmd(struct tstat *curtask)
{
FILE *fp, *fpe;
register int i, nr;
ssize_t env_len = 0;
register char *pc = curtask->gen.cmdline;
memset(curtask->gen.cmdline, 0, CMDLEN+1); // initialize command line
// prepend by environment variables (if required)
//
if ( prependenv && (fpe = fopen("environ", "r")) != NULL)
{
char *line = NULL;
ssize_t nread;
size_t len = 0;
while ((nread = getdelim(&line, &len, '\0', fpe)) != -1)
{
if (nread > 0 && !regexec(&envregex, line, 0, NULL, 0))
{
if (env_len + nread >= CMDLEN)
{
// try to add abbreviated env string
//
if (env_len + ABBENVLEN + 1 >= CMDLEN)
{
break;
}
else
{
line[ABBENVLEN-4] = '.';
line[ABBENVLEN-3] = '.';
line[ABBENVLEN-2] = '.';
line[ABBENVLEN-1] = '\0';
line[ABBENVLEN] = '\0';
nread = ABBENVLEN;
}
}
env_len += nread;
*(line+nread-1) = ' '; // modify NULL byte to space
strcpy(pc, line);
pc += nread;
}
}
/* line has been (re)allocated within the first call to getdelim */
/* even if the call fails, see getline(3) */
free(line);
fclose(fpe);
}
// add command line and parameters
//
if ( (fp = fopen("cmdline", "r")) != NULL)
{
nr = fread(pc, 1, CMDLEN-env_len, fp);
fclose(fp);
if (nr > 0) /* anything read? */
{
for (i=0; i < nr-1; i++, pc++)
{
switch (*pc)
{
case '\0':
case '\n':
case '\t':
*pc = ' ';
}
}
}
else
{
// nothing read (usually for kernel processes)
// wipe prepended environment vars not to disturb
// checks on an empty command line in other places
//
curtask->gen.cmdline[0] = '\0';
}
}
}
/*
** determine the wait channel of a sleeping thread
** i.e. the name of the kernel function in which the thread
** has been put in sleep state)
*/
static void
procwchan(struct tstat *curtask)
{
FILE *fp;
register int nr = 0;
if ( (fp = fopen("wchan", "r")) != NULL)
{
nr = fread(curtask->cpu.wchan, 1,
sizeof(curtask->cpu.wchan)-1, fp);
if (nr < 0)
nr = 0;
fclose(fp);
}
curtask->cpu.wchan[nr] = 0;
}
/*
** open file "smaps" and obtain required info
** since Linux-4.14, kernel supports "smaps_rollup" which has better
** performence. check "smaps_rollup" in first call
** if kernel supports "smaps_rollup", use "smaps_rollup" instead
*/
static void
procsmaps(struct tstat *curtask)
{
FILE *fp;
char line[4096];
count_t pssval;
static int procsmaps_firstcall = 1;
static char *smapsfile = "smaps";
if (procsmaps_firstcall)
{
regainrootprivs();
if ( (fp = fopen("/proc/1/smaps_rollup", "r")) )
{
smapsfile = "smaps_rollup";
fclose(fp);
}
procsmaps_firstcall = 0;
}
/*
** open the file (always succeeds, even if no root privs)
*/
regainrootprivs();
if ( (fp = fopen(smapsfile, "r")) )
{
curtask->mem.pmem = 0;
while (fgets(line, sizeof line, fp))
{
if (memcmp(line, "Pss:", 4) != 0)
continue;
// PSS line found to be accumulated
sscanf(line, "Pss: %llu", &pssval);
curtask->mem.pmem += pssval;
}
/*
** verify if fgets returned NULL due to error i.s.o. EOF
*/
if (ferror(fp))
curtask->mem.pmem = (unsigned long long)-1LL;
fclose(fp);
}
else
{
curtask->mem.pmem = (unsigned long long)-1LL;
}
if (! droprootprivs())
mcleanstop(42, "failed to drop root privs\n");
}
/*
** get run_delay from /proc/<pid>/schedstat
** ref: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/scheduler/sched-stats.rst?h=v5.7-rc6
*/
static count_t
procschedstat(struct tstat *curtask)
{
FILE *fp;
char line[4096];
count_t runtime, rundelay = 0;
unsigned long pcount;
static char *schedstatfile = "schedstat";
/*
** open the schedstat file
*/
if ( (fp = fopen(schedstatfile, "r")) )
{
curtask->cpu.rundelay = 0;
if (fgets(line, sizeof line, fp))
{
sscanf(line, "%llu %llu %lu\n",
&runtime, &rundelay, &pcount);
curtask->cpu.rundelay = rundelay;
}
/*
** verify if fgets returned NULL due to error i.s.o. EOF
*/
if (ferror(fp))
curtask->cpu.rundelay = 0;
fclose(fp);
}
else
{
curtask->cpu.rundelay = 0;
}
return curtask->cpu.rundelay;
}
|