LinuxProcessList.c 36.7 KB
Newer Older
1
2
3
4
5
6
7
/*
htop - LinuxProcessList.c
(C) 2014 Hisham H. Muhammad
Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/

Hisham Muhammad's avatar
Hisham Muhammad committed
8
9
10
#include "LinuxProcessList.h"
#include "LinuxProcess.h"
#include "CRT.h"
David Hunt's avatar
David Hunt committed
11
#include "StringUtils.h"
Hisham Muhammad's avatar
Hisham Muhammad committed
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <errno.h>
#include <sys/time.h>
#include <sys/utsname.h>
#include <sys/stat.h>
#include <unistd.h>
#include <dirent.h>
#include <stdlib.h>
#include <stdio.h>
#include <signal.h>
#include <stdbool.h>
#include <stdarg.h>
#include <math.h>
#include <string.h>
#include <time.h>
#include <assert.h>
#include <sys/types.h>
#include <fcntl.h>
29
30
31
32
33
34
#ifdef MAJOR_IN_MKDEV
#include <sys/mkdev.h>
#elif defined(MAJOR_IN_SYSMACROS) || \
   (defined(HAVE_SYS_SYSMACROS_H) && HAVE_SYS_SYSMACROS_H)
#include <sys/sysmacros.h>
#endif
35

36
37
38
39
40
41
42
43
44
45
#ifdef HAVE_DELAYACCT
#include <netlink/attr.h>
#include <netlink/netlink.h>
#include <netlink/genl/genl.h>
#include <netlink/genl/ctrl.h>
#include <netlink/socket.h>
#include <netlink/msg.h>
#include <linux/taskstats.h>
#endif

46
47
/*{

Hisham Muhammad's avatar
Hisham Muhammad committed
48
49
#include "ProcessList.h"

Hisham Muhammad's avatar
Hisham Muhammad committed
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
typedef struct CPUData_ {
   unsigned long long int totalTime;
   unsigned long long int userTime;
   unsigned long long int systemTime;
   unsigned long long int systemAllTime;
   unsigned long long int idleAllTime;
   unsigned long long int idleTime;
   unsigned long long int niceTime;
   unsigned long long int ioWaitTime;
   unsigned long long int irqTime;
   unsigned long long int softIrqTime;
   unsigned long long int stealTime;
   unsigned long long int guestTime;
   
   unsigned long long int totalPeriod;
   unsigned long long int userPeriod;
   unsigned long long int systemPeriod;
   unsigned long long int systemAllPeriod;
   unsigned long long int idleAllPeriod;
   unsigned long long int idlePeriod;
   unsigned long long int nicePeriod;
   unsigned long long int ioWaitPeriod;
   unsigned long long int irqPeriod;
   unsigned long long int softIrqPeriod;
   unsigned long long int stealPeriod;
   unsigned long long int guestPeriod;
} CPUData;

Hisham's avatar
Hisham committed
78
79
80
81
82
83
84
typedef struct TtyDriver_ {
   char* path;
   unsigned int major;
   unsigned int minorFrom;
   unsigned int minorTo;
} TtyDriver;

Hisham Muhammad's avatar
Hisham Muhammad committed
85
86
typedef struct LinuxProcessList_ {
   ProcessList super;
Hisham's avatar
Hisham committed
87
   
Hisham Muhammad's avatar
Hisham Muhammad committed
88
   CPUData* cpus;
Hisham's avatar
Hisham committed
89
90
   TtyDriver* ttyDrivers;
   
91
92
93
94
   #ifdef HAVE_DELAYACCT
   struct nl_sock *netlink_socket;
   int netlink_family;
   #endif
Hisham Muhammad's avatar
Hisham Muhammad committed
95
96
} LinuxProcessList;

97
98
99
100
101
102
103
104
105
106
107
108
#ifndef PROCDIR
#define PROCDIR "/proc"
#endif

#ifndef PROCSTATFILE
#define PROCSTATFILE PROCDIR "/stat"
#endif

#ifndef PROCMEMINFOFILE
#define PROCMEMINFOFILE PROCDIR "/meminfo"
#endif

Hisham's avatar
Hisham committed
109
110
111
112
#ifndef PROCTTYDRIVERSFILE
#define PROCTTYDRIVERSFILE PROCDIR "/tty/drivers"
#endif

113
114
115
116
#ifndef PROC_LINE_LENGTH
#define PROC_LINE_LENGTH 512
#endif

117
}*/
118
119
120
121

#ifndef CLAMP
#define CLAMP(x,low,high) (((x)>(high))?(high):(((x)<(low))?(low):(x)))
#endif
Hisham's avatar
Hisham committed
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

static ssize_t xread(int fd, void *buf, size_t count) {
  // Read some bytes. Retry on EINTR and when we don't get as many bytes as we requested.
  size_t alreadyRead = 0;
  for(;;) {
     ssize_t res = read(fd, buf, count);
     if (res == -1 && errno == EINTR) continue;
     if (res > 0) {
       buf = ((char*)buf)+res;
       count -= res;
       alreadyRead += res;
     }
     if (res == -1) return -1;
     if (count == 0 || res == 0) return alreadyRead;
  }
}

static int sortTtyDrivers(const void* va, const void* vb) {
   TtyDriver* a = (TtyDriver*) va;
   TtyDriver* b = (TtyDriver*) vb;
   return (a->major == b->major) ? (a->minorFrom - b->minorFrom) : (a->major - b->major);
}

static void LinuxProcessList_initTtyDrivers(LinuxProcessList* this) {
   TtyDriver* ttyDrivers;
   int fd = open(PROCTTYDRIVERSFILE, O_RDONLY);
   if (fd == -1)
      return;
   char* buf = NULL;
   int bufSize = MAX_READ;
   int bufLen = 0;
   for(;;) {
      buf = realloc(buf, bufSize);
      int size = xread(fd, buf + bufLen, MAX_READ);
      if (size <= 0) {
         buf[bufLen] = '\0';
         close(fd);
         break;
      }
      bufLen += size;
      bufSize += MAX_READ;
   }
   if (bufLen == 0) {
      free(buf);
      return;
   }
   int numDrivers = 0;
   int allocd = 10;
   ttyDrivers = malloc(sizeof(TtyDriver) * allocd);
   char* at = buf;
   while (*at != '\0') {
      at = strchr(at, ' ');    // skip first token
      while (*at == ' ') at++; // skip spaces
      char* token = at;        // mark beginning of path
      at = strchr(at, ' ');    // find end of path
      *at = '\0'; at++;        // clear and skip
      ttyDrivers[numDrivers].path = strdup(token); // save
      while (*at == ' ') at++; // skip spaces
      token = at;              // mark beginning of major
      at = strchr(at, ' ');    // find end of major
      *at = '\0'; at++;        // clear and skip
      ttyDrivers[numDrivers].major = atoi(token); // save
      while (*at == ' ') at++; // skip spaces
      token = at;              // mark beginning of minorFrom
      while (*at >= '0' && *at <= '9') at++; //find end of minorFrom
      if (*at == '-') {        // if has range
         *at = '\0'; at++;        // clear and skip
         ttyDrivers[numDrivers].minorFrom = atoi(token); // save
         token = at;              // mark beginning of minorTo
         at = strchr(at, ' ');    // find end of minorTo
         *at = '\0'; at++;        // clear and skip
         ttyDrivers[numDrivers].minorTo = atoi(token); // save
      } else {                 // no range
         *at = '\0'; at++;        // clear and skip
         ttyDrivers[numDrivers].minorFrom = atoi(token); // save
         ttyDrivers[numDrivers].minorTo = atoi(token); // save
      }
      at = strchr(at, '\n');   // go to end of line
      at++;                    // skip
      numDrivers++;
      if (numDrivers == allocd) {
         allocd += 10;
         ttyDrivers = realloc(ttyDrivers, sizeof(TtyDriver) * allocd);
      }
   }
   free(buf);
   numDrivers++;
   ttyDrivers = realloc(ttyDrivers, sizeof(TtyDriver) * numDrivers);
   ttyDrivers[numDrivers - 1].path = NULL;
   qsort(ttyDrivers, numDrivers - 1, sizeof(TtyDriver), sortTtyDrivers);
   this->ttyDrivers = ttyDrivers;
}

215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
#ifdef HAVE_DELAYACCT

static void LinuxProcessList_initNetlinkSocket(LinuxProcessList* this) {
   this->netlink_socket = nl_socket_alloc();
   if (this->netlink_socket == NULL) {
      return;
   }
   if (nl_connect(this->netlink_socket, NETLINK_GENERIC) < 0) {
      return;
   }
   this->netlink_family = genl_ctrl_resolve(this->netlink_socket, TASKSTATS_GENL_NAME);
}

#endif

Hisham Muhammad's avatar
Hisham Muhammad committed
230
ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* pidWhiteList, uid_t userId) {
Hisham's avatar
Hisham committed
231
   LinuxProcessList* this = xCalloc(1, sizeof(LinuxProcessList));
Hisham Muhammad's avatar
Hisham Muhammad committed
232
   ProcessList* pl = &(this->super);
233
   ProcessList_init(pl, Class(LinuxProcess), usersTable, pidWhiteList, userId);
Hisham's avatar
Hisham committed
234
235
   
   LinuxProcessList_initTtyDrivers(this);
236

237
238
239
240
   #ifdef HAVE_DELAYACCT
   LinuxProcessList_initNetlinkSocket(this);
   #endif

241
242
243
244
245
   // Update CPU count:
   FILE* file = fopen(PROCSTATFILE, "r");
   if (file == NULL) {
      CRT_fatalError("Cannot open " PROCSTATFILE);
   }
246
   char buffer[PROC_LINE_LENGTH + 1];
247
248
249
   int cpus = -1;
   do {
      cpus++;
250
      char * s = fgets(buffer, PROC_LINE_LENGTH, file);
Christian Hesse's avatar
Christian Hesse committed
251
      (void) s;
252
253
254
   } while (String_startsWith(buffer, "cpu"));
   fclose(file);

Hisham Muhammad's avatar
Hisham Muhammad committed
255
   pl->cpuCount = MAX(cpus - 1, 1);
Hisham's avatar
Hisham committed
256
   this->cpus = xCalloc(cpus, sizeof(CPUData));
257
258
259
260
261
262

   for (int i = 0; i < cpus; i++) {
      this->cpus[i].totalTime = 1;
      this->cpus[i].totalPeriod = 1;
   }

Hisham Muhammad's avatar
Hisham Muhammad committed
263
   return pl;
264
265
}

Hisham Muhammad's avatar
Hisham Muhammad committed
266
267
268
269
void ProcessList_delete(ProcessList* pl) {
   LinuxProcessList* this = (LinuxProcessList*) pl;
   ProcessList_done(pl);
   free(this->cpus);
Hisham's avatar
Hisham committed
270
271
272
273
274
275
   if (this->ttyDrivers) {
      for(int i = 0; this->ttyDrivers[i].path; i++) {
         free(this->ttyDrivers[i].path);
      }
      free(this->ttyDrivers);
   }
276
277
278
279
280
281
   #ifdef HAVE_DELAYACCT
   if (this->netlink_socket) {
      nl_close(this->netlink_socket);
      nl_socket_free(this->netlink_socket);
   }
   #endif
282
283
284
   free(this);
}

285
286
287
288
289
290
291
292
static double jiffy = 0.0;

static inline unsigned long long LinuxProcess_adjustTime(unsigned long long t) {
   if(jiffy == 0.0) jiffy = sysconf(_SC_CLK_TCK);
   double jiffytime = 1.0 / jiffy;
   return (unsigned long long) t * jiffytime * 100;
}

293
static bool LinuxProcessList_readStatFile(Process *process, const char* dirname, const char* name, char* command, int* commLen) {
294
   LinuxProcess* lp = (LinuxProcess*) process;
295
   char filename[MAX_NAME+1];
296
   xSnprintf(filename, MAX_NAME, "%s/%s/stat", dirname, name);
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
   int fd = open(filename, O_RDONLY);
   if (fd == -1)
      return false;

   static char buf[MAX_READ+1];

   int size = xread(fd, buf, MAX_READ);
   close(fd);
   if (size <= 0) return false;
   buf[size] = '\0';

   assert(process->pid == atoi(buf));
   char *location = strchr(buf, ' ');
   if (!location) return false;

   location += 2;
   char *end = strrchr(location, ')');
   if (!end) return false;
   
   int commsize = end - location;
   memcpy(command, location, commsize);
   command[commsize] = '\0';
319
   *commLen = commsize;
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
   location = end + 2;

   process->state = location[0];
   location += 2;
   process->ppid = strtol(location, &location, 10);
   location += 1;
   process->pgrp = strtoul(location, &location, 10);
   location += 1;
   process->session = strtoul(location, &location, 10);
   location += 1;
   process->tty_nr = strtoul(location, &location, 10);
   location += 1;
   process->tpgid = strtol(location, &location, 10);
   location += 1;
   process->flags = strtoul(location, &location, 10);
   location += 1;
   process->minflt = strtoull(location, &location, 10);
   location += 1;
338
   lp->cminflt = strtoull(location, &location, 10);
339
340
341
   location += 1;
   process->majflt = strtoull(location, &location, 10);
   location += 1;
342
   lp->cmajflt = strtoull(location, &location, 10);
343
   location += 1;
344
   lp->utime = LinuxProcess_adjustTime(strtoull(location, &location, 10));
345
   location += 1;
346
   lp->stime = LinuxProcess_adjustTime(strtoull(location, &location, 10));
347
   location += 1;
348
   lp->cutime = LinuxProcess_adjustTime(strtoull(location, &location, 10));
349
   location += 1;
350
   lp->cstime = LinuxProcess_adjustTime(strtoull(location, &location, 10));
351
352
353
354
355
356
357
358
359
360
361
   location += 1;
   process->priority = strtol(location, &location, 10);
   location += 1;
   process->nice = strtol(location, &location, 10);
   location += 1;
   process->nlwp = strtol(location, &location, 10);
   location += 1;
   for (int i=0; i<17; i++) location = strchr(location, ' ')+1;
   process->exit_signal = strtol(location, &location, 10);
   location += 1;
   assert(location != NULL);
362
   process->processor = strtol(location, &location, 10);
363
364
   
   process->time = lp->utime + lp->stime;
Hisham's avatar
Hisham committed
365
   
366
367
368
369
370
371
372
373
   return true;
}


static bool LinuxProcessList_statProcessDir(Process* process, const char* dirname, char* name, time_t curTime) {
   char filename[MAX_NAME+1];
   filename[MAX_NAME] = '\0';

374
   xSnprintf(filename, MAX_NAME, "%s/%s", dirname, name);
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
   struct stat sstat;
   int statok = stat(filename, &sstat);
   if (statok == -1)
      return false;
   process->st_uid = sstat.st_uid;
  
   struct tm date;
   time_t ctime = sstat.st_ctime;
   process->starttime_ctime = ctime;
   (void) localtime_r((time_t*) &ctime, &date);
   strftime(process->starttime_show, 7, ((ctime > curTime - 86400) ? "%R " : "%b%d "), &date);
   
   return true;
}

#ifdef HAVE_TASKSTATS

392
static void LinuxProcessList_readIoFile(LinuxProcess* process, const char* dirname, char* name, unsigned long long now) {
393
394
395
   char filename[MAX_NAME+1];
   filename[MAX_NAME] = '\0';

396
   xSnprintf(filename, MAX_NAME, "%s/%s/io", dirname, name);
397
   int fd = open(filename, O_RDONLY);
Hisham Muhammad's avatar
Hisham Muhammad committed
398
399
400
   if (fd == -1) {
      process->io_rate_read_bps = -1;
      process->io_rate_write_bps = -1;
401
402
403
404
405
406
407
408
409
      process->io_rchar = -1LL;
      process->io_wchar = -1LL;
      process->io_syscr = -1LL;
      process->io_syscw = -1LL;
      process->io_read_bytes = -1LL;
      process->io_write_bytes = -1LL;
      process->io_cancelled_write_bytes = -1LL;
      process->io_rate_read_time = -1LL;
      process->io_rate_write_time = -1LL;
410
      return;
Hisham Muhammad's avatar
Hisham Muhammad committed
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
   
   char buffer[1024];
   ssize_t buflen = xread(fd, buffer, 1023);
   close(fd);
   if (buflen < 1) return;
   buffer[buflen] = '\0';
   unsigned long long last_read = process->io_read_bytes;
   unsigned long long last_write = process->io_write_bytes;
   char *buf = buffer;
   char *line = NULL;
   while ((line = strsep(&buf, "\n")) != NULL) {
      switch (line[0]) {
      case 'r':
         if (line[1] == 'c' && strncmp(line+2, "har: ", 5) == 0)
            process->io_rchar = strtoull(line+7, NULL, 10);
         else if (strncmp(line+1, "ead_bytes: ", 11) == 0) {
            process->io_read_bytes = strtoull(line+12, NULL, 10);
            process->io_rate_read_bps = 
               ((double)(process->io_read_bytes - last_read))/(((double)(now - process->io_rate_read_time))/1000);
            process->io_rate_read_time = now;
         }
         break;
      case 'w':
         if (line[1] == 'c' && strncmp(line+2, "har: ", 5) == 0)
            process->io_wchar = strtoull(line+7, NULL, 10);
         else if (strncmp(line+1, "rite_bytes: ", 12) == 0) {
            process->io_write_bytes = strtoull(line+13, NULL, 10);
            process->io_rate_write_bps = 
               ((double)(process->io_write_bytes - last_write))/(((double)(now - process->io_rate_write_time))/1000);
            process->io_rate_write_time = now;
         }
         break;
      case 's':
445
         if (line[4] == 'r' && strncmp(line+1, "yscr: ", 6) == 0) {
446
            process->io_syscr = strtoull(line+7, NULL, 10);
Hisham's avatar
Hisham committed
447
         } else if (strncmp(line+1, "yscw: ", 6) == 0) {
448
            process->io_syscw = strtoull(line+7, NULL, 10);
Hisham's avatar
Hisham committed
449
         }
450
451
         break;
      case 'c':
Hisham's avatar
Hisham committed
452
         if (strncmp(line+1, "ancelled_write_bytes: ", 22) == 0) {
453
           process->io_cancelled_write_bytes = strtoull(line+23, NULL, 10);
Hisham's avatar
Hisham committed
454
        }
455
456
457
458
459
460
461
462
      }
   }
}

#endif



463
static bool LinuxProcessList_readStatmFile(LinuxProcess* process, const char* dirname, const char* name) {
464
   char filename[MAX_NAME+1];
465
   xSnprintf(filename, MAX_NAME, "%s/%s/statm", dirname, name);
466
467
468
   int fd = open(filename, O_RDONLY);
   if (fd == -1)
      return false;
469
470
   char buf[PROC_LINE_LENGTH + 1];
   ssize_t rres = xread(fd, buf, PROC_LINE_LENGTH);
471
472
473
474
475
   close(fd);
   if (rres < 1) return false;

   char *p = buf;
   errno = 0;
476
477
   process->super.m_size = strtol(p, &p, 10); if (*p == ' ') p++;
   process->super.m_resident = strtol(p, &p, 10); if (*p == ' ') p++;
478
479
480
481
482
483
484
485
486
487
   process->m_share = strtol(p, &p, 10); if (*p == ' ') p++;
   process->m_trs = strtol(p, &p, 10); if (*p == ' ') p++;
   process->m_lrs = strtol(p, &p, 10); if (*p == ' ') p++;
   process->m_drs = strtol(p, &p, 10); if (*p == ' ') p++;
   process->m_dt = strtol(p, &p, 10);
   return (errno == 0);
}

#ifdef HAVE_OPENVZ

488
489
490
static void LinuxProcessList_readOpenVZData(LinuxProcess* process, const char* dirname, const char* name) {
   if ( (access("/proc/vz", R_OK) != 0)) {
      process->vpid = process->super.pid;
491
492
493
494
      process->ctid = 0;
      return;
   }
   char filename[MAX_NAME+1];
495
   xSnprintf(filename, MAX_NAME, "%s/%s/stat", dirname, name);
496
   FILE* file = fopen(filename, "r");
497
   if (!file)
498
      return;
499
   (void) fscanf(file,
500
501
502
503
504
505
506
507
508
      "%*32u %*32s %*1c %*32u %*32u %*32u %*32u %*32u %*32u %*32u "
      "%*32u %*32u %*32u %*32u %*32u %*32u %*32u %*32u "
      "%*32u %*32u %*32u %*32u %*32u %*32u %*32u %*32u "
      "%*32u %*32u %*32u %*32u %*32u %*32u %*32u %*32u "
      "%*32u %*32u %*32u %*32u %*32u %*32u %*32u %*32u "
      "%*32u %*32u %*32u %*32u %*32u %*32u %*32u "
      "%*32u %*32u %32u %32u",
      &process->vpid, &process->ctid);
   fclose(file);
509
   return;
510
511
512
513
514
515
}

#endif

#ifdef HAVE_CGROUP

516
static void LinuxProcessList_readCGroupFile(LinuxProcess* process, const char* dirname, const char* name) {
517
   char filename[MAX_NAME+1];
518
   xSnprintf(filename, MAX_NAME, "%s/%s/cgroup", dirname, name);
519
520
   FILE* file = fopen(filename, "r");
   if (!file) {
Hisham's avatar
Hisham committed
521
      process->cgroup = xStrdup("");
522
523
      return;
   }
524
   char output[PROC_LINE_LENGTH + 1];
Hisham Muhammad's avatar
Hisham Muhammad committed
525
526
   output[0] = '\0';
   char* at = output;
527
   int left = PROC_LINE_LENGTH;
Hisham Muhammad's avatar
Hisham Muhammad committed
528
   while (!feof(file) && left > 0) {
529
530
      char buffer[PROC_LINE_LENGTH + 1];
      char *ok = fgets(buffer, PROC_LINE_LENGTH, file);
Hisham Muhammad's avatar
Hisham Muhammad committed
531
532
533
534
535
536
537
      if (!ok) break;
      char* group = strchr(buffer, ':');
      if (!group) break;
      if (at != output) {
         *at = ';';
         at++;
         left--;
538
      }
539
      int wrote = snprintf(at, left, "%s", group);
Hisham Muhammad's avatar
Hisham Muhammad committed
540
      left -= wrote;
541
542
   }
   fclose(file);
Hisham Muhammad's avatar
Hisham Muhammad committed
543
   free(process->cgroup);
Hisham's avatar
Hisham committed
544
   process->cgroup = xStrdup(output);
545
546
547
548
549
550
}

#endif

#ifdef HAVE_VSERVER

551
static void LinuxProcessList_readVServerData(LinuxProcess* process, const char* dirname, const char* name) {
552
   char filename[MAX_NAME+1];
553
   xSnprintf(filename, MAX_NAME, "%s/%s/status", dirname, name);
554
555
556
   FILE* file = fopen(filename, "r");
   if (!file)
      return;
557
   char buffer[PROC_LINE_LENGTH + 1];
558
   process->vxid = 0;
559
   while (fgets(buffer, PROC_LINE_LENGTH, file)) {
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
      if (String_startsWith(buffer, "VxID:")) {
         int vxid;
         int ok = sscanf(buffer, "VxID:\t%32d", &vxid);
         if (ok >= 1) {
            process->vxid = vxid;
         }
      }
      #if defined HAVE_ANCIENT_VSERVER
      else if (String_startsWith(buffer, "s_context:")) {
         int vxid;
         int ok = sscanf(buffer, "s_context:\t%32d", &vxid);
         if (ok >= 1) {
            process->vxid = vxid;
         }
      }
      #endif
   }
   fclose(file);
}

#endif

582
static void LinuxProcessList_readOomData(LinuxProcess* process, const char* dirname, const char* name) {
583
   char filename[MAX_NAME+1];
584
   xSnprintf(filename, MAX_NAME, "%s/%s/oom_score", dirname, name);
585
   FILE* file = fopen(filename, "r");
586
   if (!file) {
587
      return;
588
   }
589
590
   char buffer[PROC_LINE_LENGTH + 1];
   if (fgets(buffer, PROC_LINE_LENGTH, file)) {
591
592
593
594
595
596
597
598
599
      unsigned int oom;
      int ok = sscanf(buffer, "%32u", &oom);
      if (ok >= 1) {
         process->oom = oom;
      }
   }
   fclose(file);
}

600
601
602
603
#ifdef HAVE_DELAYACCT

static int handleNetlinkMsg(struct nl_msg *nlmsg, void *linuxProcess) {
   struct nlmsghdr *nlhdr;
604
605
606
607
608
609
   struct nlattr *nlattrs[TASKSTATS_TYPE_MAX + 1];
   struct nlattr *nlattr;
   struct taskstats *stats;
   int rem;
   unsigned long long int timeDelta;
   LinuxProcess* lp = (LinuxProcess*) linuxProcess;
610

611
   nlhdr = nlmsg_hdr(nlmsg);
612
613
614

   if (genlmsg_parse(nlhdr, 0, nlattrs, TASKSTATS_TYPE_MAX, NULL) < 0) {
      return NL_SKIP;
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
   }

   if ((nlattr = nlattrs[TASKSTATS_TYPE_AGGR_PID]) || (nlattr = nlattrs[TASKSTATS_TYPE_NULL])) {
      stats = nla_data(nla_next(nla_data(nlattr), &rem));
      assert(lp->super.pid == stats->ac_pid);
      timeDelta = (stats->ac_etime*1000 - lp->delay_read_time);
      #define BOUNDS(x) isnan(x) ? 0.0 : (x > 100) ? 100.0 : x;
      #define DELTAPERC(x,y) BOUNDS((float) (x - y) / timeDelta * 100);
      lp->cpu_delay_percent = DELTAPERC(stats->cpu_delay_total, lp->cpu_delay_total);
      lp->blkio_delay_percent = DELTAPERC(stats->blkio_delay_total, lp->blkio_delay_total);
      lp->swapin_delay_percent = DELTAPERC(stats->swapin_delay_total, lp->swapin_delay_total);
      #undef DELTAPERC
      #undef BOUNDS
      lp->swapin_delay_total = stats->swapin_delay_total;
      lp->blkio_delay_total = stats->blkio_delay_total;
      lp->cpu_delay_total = stats->cpu_delay_total;
      lp->delay_read_time = stats->ac_etime*1000;
   }
   return NL_OK;
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
}

static void LinuxProcessList_readDelayAcctData(LinuxProcessList* this, LinuxProcess* process) {
   struct nl_msg *msg;

   if (nl_socket_modify_cb(this->netlink_socket, NL_CB_VALID, NL_CB_CUSTOM, handleNetlinkMsg, process) < 0) {
      return;
   }

   if (! (msg = nlmsg_alloc())) {
      return;
   }

   if (! genlmsg_put(msg, NL_AUTO_PID, NL_AUTO_SEQ, this->netlink_family, 0, NLM_F_REQUEST, TASKSTATS_CMD_GET, TASKSTATS_VERSION)) {
      nlmsg_free(msg);
   }

   if (nla_put_u32(msg, TASKSTATS_CMD_ATTR_PID, process->super.pid) < 0) {
      nlmsg_free(msg);
   }

   if (nl_send_sync(this->netlink_socket, msg) < 0) {
656
657
658
      process->swapin_delay_percent = -1;
      process->blkio_delay_percent = -1;
      process->cpu_delay_percent = -1;
659
660
661
662
663
664
665
666
667
668
      return;
   }
   
   if (nl_recvmsgs_default(this->netlink_socket) < 0) {
      return;
   }
}

#endif

669
670
#ifdef HAVE_PERFCOUNTERS

671
672
673
#define READ_COUNTER(_b, _var, _flag, _type, _config)           \
   bool _b ## Ok = false;                                       \
   uint64_t _b ## Delta = 0;                                    \
674
   if (flags & _flag && lp->super.show) {                       \
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
      if (!_var) {                                              \
         _var = PerfCounter_new(lp->super.pid, _type, _config); \
         _b ## Ok = PerfCounter_read(_var);                     \
         _b ## Delta = 0;                                       \
      } else {                                                  \
         _b ## Ok = PerfCounter_read(_var);                     \
         _b ## Delta = PerfCounter_delta(_var);                 \
      }                                                         \
      if (_b ## Ok) {                                           \
      }                                                         \
   } else {                                                     \
      if (_var) {                                               \
         PerfCounter_delete(_var);                              \
         _var = NULL;                                           \
      }                                                         \
   }

#define SET_IF(_ok, _var, _exp) \
   if (_ok) {                   \
      _var = _exp;              \
   } else {                     \
      _var = -1;                \
   }

#define SET_IFNZ(_ok, _z, _var, _exp) \
   if (_ok) {                         \
      if (_z > 0) {                   \
         _var = _exp;                 \
      } else {                        \
         _var = 0;                    \
      }                               \
   } else {                           \
      _var = -1;                      \
   }

#define L1DR  (PERF_COUNT_HW_CACHE_L1D | (PERF_COUNT_HW_CACHE_OP_READ  << 8) | (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16))
#define L1DRM (PERF_COUNT_HW_CACHE_L1D | (PERF_COUNT_HW_CACHE_OP_READ  << 8) | (PERF_COUNT_HW_CACHE_RESULT_MISS   << 16))
#define L1DW  (PERF_COUNT_HW_CACHE_L1D | (PERF_COUNT_HW_CACHE_OP_WRITE << 8) | (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16))
#define L1DWM (PERF_COUNT_HW_CACHE_L1D | (PERF_COUNT_HW_CACHE_OP_WRITE << 8) | (PERF_COUNT_HW_CACHE_RESULT_MISS   << 16))

static void LinuxProcessList_readPerfCounters(LinuxProcess* lp, uint64_t flags) {

   READ_COUNTER(c, lp->cycleCounter, PROCESS_FLAG_LINUX_HPC_CYCLE, PERF_TYPE_HARDWARE, PERF_COUNT_HW_CPU_CYCLES);
   READ_COUNTER(i, lp->insnCounter,  PROCESS_FLAG_LINUX_HPC_INSN,  PERF_TYPE_HARDWARE, PERF_COUNT_HW_INSTRUCTIONS);
   READ_COUNTER(m, lp->missCounter,  PROCESS_FLAG_LINUX_HPC_MISS,  PERF_TYPE_HARDWARE, PERF_COUNT_HW_CACHE_MISSES);
   READ_COUNTER(b, lp->brCounter,    PROCESS_FLAG_LINUX_HPC_BMISS, PERF_TYPE_HARDWARE, PERF_COUNT_HW_BRANCH_MISSES);

   READ_COUNTER(r, lp->l1drCounter,  PROCESS_FLAG_LINUX_HPC_L1DR,  PERF_TYPE_HW_CACHE, L1DR);
   READ_COUNTER(R, lp->l1drmCounter, PROCESS_FLAG_LINUX_HPC_L1DRM, PERF_TYPE_HW_CACHE, L1DRM);
   READ_COUNTER(w, lp->l1dwCounter,  PROCESS_FLAG_LINUX_HPC_L1DW,  PERF_TYPE_HW_CACHE, L1DW);
   READ_COUNTER(W, lp->l1dwmCounter, PROCESS_FLAG_LINUX_HPC_L1DWM, PERF_TYPE_HW_CACHE, L1DWM);

   SET_IF(cOk, lp->mcycle, (double)cDelta / 1000000);
   SET_IF(iOk, lp->minstr, (double)iDelta / 1000000);
   SET_IFNZ(cOk && iOk, cDelta, lp->ipc,    (double)iDelta / cDelta);
   SET_IFNZ(mOk && iOk, iDelta, lp->pMiss,  100 * ((double)mDelta / iDelta));
   SET_IFNZ(bOk && iOk, iDelta, lp->pBMiss, 100 * ((double)bDelta / iDelta));
   SET_IF(rOk, lp->l1dr,  (double)rDelta / 1000);
   SET_IF(ROk, lp->l1drm, (double)RDelta / 1000);
   SET_IF(wOk, lp->l1dw,  (double)wDelta / 1000);
   SET_IF(WOk, lp->l1dwm, (double)WDelta / 1000);
736
737
738
739
}

#endif

740
static void setCommand(Process* process, const char* command, int len) {
Hisham's avatar
Hisham committed
741
   if (process->comm && process->commLen >= len) {
742
743
744
745
746
747
748
749
      strncpy(process->comm, command, len + 1);
   } else {
      free(process->comm);
      process->comm = xStrdup(command);
   }
   process->commLen = len;
}

750
751
752
753
754
static bool LinuxProcessList_readCmdlineFile(Process* process, const char* dirname, const char* name) {
   if (Process_isKernelThread(process))
      return true;

   char filename[MAX_NAME+1];
755
   xSnprintf(filename, MAX_NAME, "%s/%s/cmdline", dirname, name);
756
757
758
759
760
761
762
763
   int fd = open(filename, O_RDONLY);
   if (fd == -1)
      return false;
         
   char command[4096+1]; // max cmdline length on Linux
   int amtRead = xread(fd, command, sizeof(command) - 1);
   close(fd);
   int tokenEnd = 0; 
764
   int lastChar = 0;
765
766
767
768
769
770
771
   if (amtRead <= 0) {
      return false;
   }
   for (int i = 0; i < amtRead; i++) {
      if (command[i] == '\0' || command[i] == '\n') {
         if (tokenEnd == 0) {
            tokenEnd = i;
772
         }
773
774
775
776
         command[i] = ' ';
      } else {
         lastChar = i;
      }
777
778
779
780
   }
   if (tokenEnd == 0) {
      tokenEnd = amtRead;
   }
781
   command[lastChar + 1] = '\0';
782
   process->basenameOffset = tokenEnd;
783
   setCommand(process, command, lastChar);
784
785
786
787

   return true;
}

Hisham's avatar
Hisham committed
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
static char* LinuxProcessList_updateTtyDevice(TtyDriver* ttyDrivers, unsigned int tty_nr) {
   unsigned int maj = major(tty_nr);
   unsigned int min = minor(tty_nr);

   int i = -1;
   for (;;) {
      i++;
      if ((!ttyDrivers[i].path) || maj < ttyDrivers[i].major) {
         break;
      } 
      if (maj > ttyDrivers[i].major) {
         continue;
      }
      if (min < ttyDrivers[i].minorFrom) {
         break;
      } 
      if (min > ttyDrivers[i].minorTo) {
         continue;
      }
      unsigned int idx = min - ttyDrivers[i].minorFrom;
      struct stat sstat;
      char* fullPath;
      for(;;) {
         asprintf(&fullPath, "%s/%d", ttyDrivers[i].path, idx);
         int err = stat(fullPath, &sstat);
         if (err == 0 && major(sstat.st_rdev) == maj && minor(sstat.st_rdev) == min) return fullPath;
         free(fullPath);
         asprintf(&fullPath, "%s%d", ttyDrivers[i].path, idx);
         err = stat(fullPath, &sstat);
         if (err == 0 && major(sstat.st_rdev) == maj && minor(sstat.st_rdev) == min) return fullPath;
         free(fullPath);
         if (idx == min) break;
         idx = min;
      }
      int err = stat(ttyDrivers[i].path, &sstat);
      if (err == 0 && tty_nr == sstat.st_rdev) return strdup(ttyDrivers[i].path);
   }
   char* out;
   asprintf(&out, "/dev/%u:%u", maj, min);
   return out;
}

830
static bool LinuxProcessList_recurseProcTree(LinuxProcessList* this, const char* dirname, Process* parent, double period, struct timeval tv) {
Hisham Muhammad's avatar
Hisham Muhammad committed
831
   ProcessList* pl = (ProcessList*) this;
832
833
   DIR* dir;
   struct dirent* entry;
834
   Settings* settings = pl->settings;
835
   ScreenSettings* ss = settings->ss;
836
837
838
839
840
841
842
843

   time_t curTime = tv.tv_sec;
   #ifdef HAVE_TASKSTATS
   unsigned long long now = tv.tv_sec*1000LL+tv.tv_usec/1000LL;
   #endif

   dir = opendir(dirname);
   if (!dir) return false;
844
   int cpus = pl->cpuCount;
Hisham Muhammad's avatar
Hisham Muhammad committed
845
846
   bool hideKernelThreads = settings->hideKernelThreads;
   bool hideUserlandThreads = settings->hideUserlandThreads;
847
848
849
850
851
   while ((entry = readdir(dir)) != NULL) {
      char* name = entry->d_name;

      // The RedHat kernel hides threads with a dot.
      // I believe this is non-standard.
Hisham Muhammad's avatar
Hisham Muhammad committed
852
      if ((!settings->hideThreads) && name[0] == '.') {
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
         name++;
      }

      // Just skip all non-number directories.
      if (name[0] < '0' || name[0] > '9') {
         continue;
      }

      // filename is a number: process directory
      int pid = atoi(name);
     
      if (parent && pid == parent->pid)
         continue;

      if (pid <= 0) 
         continue;

870
      bool preExisting = false;
871
      Process* proc = ProcessList_getProcess(pl, pid, &preExisting, (Process_New) LinuxProcess_new);
872
      proc->tgid = parent ? parent->pid : pid;
873
874
      
      LinuxProcess* lp = (LinuxProcess*) proc;
875
876

      char subdirname[MAX_NAME+1];
877
      xSnprintf(subdirname, MAX_NAME, "%s/%s/task", dirname, name);
878
      LinuxProcessList_recurseProcTree(this, subdirname, proc, period, tv);
879
880

      #ifdef HAVE_TASKSTATS
881
      if (ss->flags & PROCESS_FLAG_IO)
882
         LinuxProcessList_readIoFile(lp, dirname, name, now);
883
884
      #endif

885
      if (! LinuxProcessList_readStatmFile(lp, dirname, name))
886
887
         goto errorReadingProcess;

888
      proc->show = ! ((hideKernelThreads && Process_isKernelThread(proc)) || (hideUserlandThreads && Process_isUserlandThread(proc)));
889
890

      char command[MAX_NAME+1];
891
      unsigned long long int lasttimes = (lp->utime + lp->stime);
892
      int commLen = 0;
Hisham's avatar
Hisham committed
893
      unsigned int tty_nr = proc->tty_nr;
894
      if (! LinuxProcessList_readStatFile(proc, dirname, name, command, &commLen))
895
         goto errorReadingProcess;
Hisham's avatar
Hisham committed
896
897
898
899
      if (tty_nr != proc->tty_nr && this->ttyDrivers) {
         free(lp->ttyDevice);
         lp->ttyDevice = LinuxProcessList_updateTtyDevice(this->ttyDrivers, proc->tty_nr);
      }
900
      if (ss->flags & PROCESS_FLAG_LINUX_IOPRIO)
901
902
         LinuxProcess_updateIOPriority(lp);
      float percent_cpu = (lp->utime + lp->stime - lasttimes) / period * 100.0;
903
      proc->percent_cpu = CLAMP(percent_cpu, 0.0, cpus * 100.0);
904
      if (isnan(proc->percent_cpu)) proc->percent_cpu = 0.0;
Hisham Muhammad's avatar
Hisham Muhammad committed
905
      proc->percent_mem = (proc->m_resident * PAGE_SIZE_KB) / (double)(pl->totalMem) * 100.0;
906

907
      if(!preExisting) {
908

909
         if (! LinuxProcessList_statProcessDir(proc, dirname, name, curTime))
910
911
            goto errorReadingProcess;

912
         proc->user = UsersTable_getRef(pl->usersTable, proc->st_uid);
913
914

         #ifdef HAVE_OPENVZ
915
         if (ss->flags & PROCESS_FLAG_LINUX_OPENVZ) {
916
917
            LinuxProcessList_readOpenVZData(lp, dirname, name);
         }
918
919
920
         #endif
         
         #ifdef HAVE_VSERVER
921
         if (ss->flags & PROCESS_FLAG_LINUX_VSERVER) {
922
            LinuxProcessList_readVServerData(lp, dirname, name);
923
         }
924
925
         #endif

926
         if (! LinuxProcessList_readCmdlineFile(proc, dirname, name)) {
927
            goto errorReadingProcess;
928
         }
929

930
         ProcessList_add(pl, proc);
931
      } else {
932
         if (settings->updateProcessNames && proc->state != 'Z') {
933
            if (! LinuxProcessList_readCmdlineFile(proc, dirname, name)) {
934
               goto errorReadingProcess;
935
            }
936
937
938
         }
      }

939
940
941
942
      #ifdef HAVE_DELAYACCT
      LinuxProcessList_readDelayAcctData(this, lp);
      #endif

943
      #ifdef HAVE_CGROUP
944
      if (ss->flags & PROCESS_FLAG_LINUX_CGROUP)
945
         LinuxProcessList_readCGroupFile(lp, dirname, name);
946
947
      #endif
      
948
      if (ss->flags & PROCESS_FLAG_LINUX_OOM)
949
         LinuxProcessList_readOomData(lp, dirname, name);
950

951
952
      #ifdef HAVE_PERFCOUNTERS
      if (ss->flags & PROCESS_FLAG_LINUX_HPC)
953
         LinuxProcessList_readPerfCounters(lp, ss->flags);
954
955
      #endif

956
      if (proc->state == 'Z' && (proc->basenameOffset == 0)) {
957
         proc->basenameOffset = -1;
958
         setCommand(proc, command, commLen);
959
      } else if (Process_isThread(proc)) {
960
         if (settings->showThreadNames || Process_isKernelThread(proc) || (proc->state == 'Z' && proc->basenameOffset == 0)) {
961
            proc->basenameOffset = -1;
962
            setCommand(proc, command, commLen);
Hisham Muhammad's avatar
Hisham Muhammad committed
963
         } else if (settings->showThreadNames) {
964
            if (! LinuxProcessList_readCmdlineFile(proc, dirname, name))
965
966
               goto errorReadingProcess;
         }
967
         if (Process_isKernelThread(proc)) {
968
            pl->kernelThreads++;
969
         } else {
970
            pl->userlandThreads++;
971
972
973
         }
      }

974
      pl->totalTasks++;
975
      if (proc->state == 'R')
976
         pl->runningTasks++;
977
      proc->updated = true;
978
979
980
981
      continue;

      // Exception handler.
      errorReadingProcess: {
982
         if (preExisting) {
983
            ProcessList_remove(pl, proc);
984
         } else {
985
            Process_delete((Object*)proc);
986
         }
987
988
989
990
991
992
      }
   }
   closedir(dir);
   return true;
}

Hisham Muhammad's avatar
Hisham Muhammad committed
993
static inline void LinuxProcessList_scanMemoryInfo(ProcessList* this) {
Hisham Muhammad's avatar
Hisham Muhammad committed
994
   unsigned long long int swapFree = 0;
995
996
   unsigned long long int shmem = 0;
   unsigned long long int sreclaimable = 0;
Hisham Muhammad's avatar
Hisham Muhammad committed
997

998
999
1000
1001
   FILE* file = fopen(PROCMEMINFOFILE, "r");
   if (file == NULL) {
      CRT_fatalError("Cannot open " PROCMEMINFOFILE);
   }
Hisham Muhammad's avatar
Hisham Muhammad committed
1002
1003
1004
   char buffer[128];
   while (fgets(buffer, 128, file)) {

1005
      #define tryRead(label, variable) (String_startsWith(buffer, label) && sscanf(buffer + strlen(label), " %32llu kB", variable))
Hisham Muhammad's avatar
Hisham Muhammad committed
1006
1007
      switch (buffer[0]) {
      case 'M':
1008
1009
1010
         if (tryRead("MemTotal:", &this->totalMem)) {}
         else if (tryRead("MemFree:", &this->freeMem)) {}
         else if (tryRead("MemShared:", &this->sharedMem)) {}
Hisham Muhammad's avatar
Hisham Muhammad committed
1011
1012
         break;
      case 'B':
1013
         if (tryRead("Buffers:", &this->buffersMem)) {}
Hisham Muhammad's avatar
Hisham Muhammad committed
1014
1015
         break;
      case 'C':
1016
         if (tryRead("Cached:", &this->cachedMem)) {}
Hisham Muhammad's avatar
Hisham Muhammad committed
1017
1018
         break;
      case 'S':
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
         switch (buffer[1]) {
         case 'w':
            if (tryRead("SwapTotal:", &this->totalSwap)) {}
            else if (tryRead("SwapFree:", &swapFree)) {}
            break;
         case 'h':
            if (tryRead("Shmem:", &shmem)) {}
            break;
         case 'R':
            if (tryRead("SReclaimable:", &sreclaimable)) {}
            break;
         }
Hisham Muhammad's avatar
Hisham Muhammad committed
1031
         break;
1032
      }
1033
      #undef tryRead
1034
1035
   }

1036
1037
   this->usedMem = this->totalMem - this->freeMem;
   this->cachedMem = this->cachedMem + sreclaimable - shmem;
1038
1039
   this->usedSwap = this->totalSwap - swapFree;
   fclose(file);
Hisham Muhammad's avatar
Hisham Muhammad committed
1040
}
1041

Hisham Muhammad's avatar
Hisham Muhammad committed
1042
static inline double LinuxProcessList_scanCPUTime(LinuxProcessList* this) {
Hisham Muhammad's avatar
Hisham Muhammad committed
1043

Hisham Muhammad's avatar
Hisham Muhammad committed
1044
   FILE* file = fopen(PROCSTATFILE, "r");
1045
1046
1047
   if (file == NULL) {
      CRT_fatalError("Cannot open " PROCSTATFILE);
   }
Hisham Muhammad's avatar
Hisham Muhammad committed
1048
   int cpus = this->super.cpuCount;
Hisham Muhammad's avatar
Hisham Muhammad committed
1049
   assert(cpus > 0);
1050
   for (int i = 0; i <= cpus; i++) {
1051
      char buffer[PROC_LINE_LENGTH + 1];
Hisham Muhammad's avatar
Hisham Muhammad committed
1052
      unsigned long long int usertime, nicetime, systemtime, idletime;
1053
1054
      unsigned long long int ioWait, irq, softIrq, steal, guest, guestnice;
      ioWait = irq = softIrq = steal = guest = guestnice = 0;
peter-warhzner's avatar
peter-warhzner committed
1055
      // Depending on your kernel version,
1056
1057
      // 5, 7, 8 or 9 of these fields will be set.
      // The rest will remain at zero.
1058
      char* ok = fgets(buffer, PROC_LINE_LENGTH, file);
1059
      if (!ok) buffer[0] = '\0';
1060
      if (i == 0)
Hisham Muhammad's avatar
Hisham Muhammad committed
1061
         sscanf(buffer,   "cpu  %16llu %16llu %16llu %16llu %16llu %16llu %16llu %16llu %16llu %16llu",         &usertime, &nicetime, &systemtime, &idletime, &ioWait, &irq, &softIrq, &steal, &guest, &guestnice);
1062
      else {
Hisham Muhammad's avatar
Hisham Muhammad committed
1063
         int cpuid;
1064
1065
1066
1067
1068
1069
1070
1071
         sscanf(buffer, "cpu%4d %16llu %16llu %16llu %16llu %16llu %16llu %16llu %16llu %16llu %16llu", &cpuid, &usertime, &nicetime, &systemtime, &idletime, &ioWait, &irq, &softIrq, &steal, &guest, &guestnice);
         assert(cpuid == i - 1);
      }
      // Guest time is already accounted in usertime
      usertime = usertime - guest;
      nicetime = nicetime - guestnice;
      // Fields existing on kernels >= 2.6
      // (and RHEL's patched kernel 2.4...)
Hisham Muhammad's avatar
Hisham Muhammad committed
1072
1073
1074
1075
      unsigned long long int idlealltime = idletime + ioWait;
      unsigned long long int systemalltime = systemtime + irq + softIrq;
      unsigned long long int virtalltime = guest + guestnice;
      unsigned long long int totaltime = usertime + nicetime + systemalltime + idlealltime + steal + virtalltime;
1076
      CPUData* cpuData = &(this->cpus[i]);
1077
1078
1079
      // Since we do a subtraction (usertime - guest) and cputime64_to_clock_t()
      // used in /proc/stat rounds down numbers, it can lead to a case where the
      // integer overflow.
Hisham's avatar
Hisham committed
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
      #define WRAP_SUBTRACT(a,b) (a > b) ? a - b : 0
      cpuData->userPeriod = WRAP_SUBTRACT(usertime, cpuData->userTime);
      cpuData->nicePeriod = WRAP_SUBTRACT(nicetime, cpuData->niceTime);
      cpuData->systemPeriod = WRAP_SUBTRACT(systemtime, cpuData->systemTime);
      cpuData->systemAllPeriod = WRAP_SUBTRACT(systemalltime, cpuData->systemAllTime);
      cpuData->idleAllPeriod = WRAP_SUBTRACT(idlealltime, cpuData->idleAllTime);
      cpuData->idlePeriod = WRAP_SUBTRACT(idletime, cpuData->idleTime);
      cpuData->ioWaitPeriod = WRAP_SUBTRACT(ioWait, cpuData->ioWaitTime);
      cpuData->irqPeriod = WRAP_SUBTRACT(irq, cpuData->irqTime);
      cpuData->softIrqPeriod = WRAP_SUBTRACT(softIrq, cpuData->softIrqTime);
      cpuData->stealPeriod = WRAP_SUBTRACT(steal, cpuData->stealTime);
      cpuData->guestPeriod = WRAP_SUBTRACT(virtalltime, cpuData->guestTime);
      cpuData->totalPeriod = WRAP_SUBTRACT(totaltime, cpuData->totalTime);
      #undef WRAP_SUBTRACT
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
      cpuData->userTime = usertime;
      cpuData->niceTime = nicetime;
      cpuData->systemTime = systemtime;
      cpuData->systemAllTime = systemalltime;
      cpuData->idleAllTime = idlealltime;
      cpuData->idleTime = idletime;
      cpuData->ioWaitTime = ioWait;
      cpuData->irqTime = irq;
      cpuData->softIrqTime = softIrq;
      cpuData->stealTime = steal;
      cpuData->guestTime = virtalltime;
      cpuData->totalTime = totaltime;
   }
1107
1108
   double period = (double)this->cpus[0].totalPeriod / cpus;
   fclose(file);
Hisham Muhammad's avatar
Hisham Muhammad committed
1109
1110
1111
   return period;
}

1112
void ProcessList_goThroughEntries(ProcessList* super) {
Hisham Muhammad's avatar
Hisham Muhammad committed
1113
   LinuxProcessList* this = (LinuxProcessList*) super;
Hisham Muhammad's avatar
Hisham Muhammad committed
1114

Hisham Muhammad's avatar
Hisham Muhammad committed
1115
   LinuxProcessList_scanMemoryInfo(super);
Hisham Muhammad's avatar
Hisham Muhammad committed
1116
   double period = LinuxProcessList_scanCPUTime(this);
1117
1118
1119

   struct timeval tv;
   gettimeofday(&tv, NULL);
1120
   LinuxProcessList_recurseProcTree(this, PROCDIR, NULL, period, tv);
1121
}