ProcessList.c 24.1 KB
Newer Older
Hisham Muhammad's avatar
Hisham Muhammad committed
1
2
3
4
5
6
7
/*
htop - ProcessList.c
(C) 2004,2005 Hisham H. Muhammad
Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/

8
9
10
11
12
#ifndef CONFIG_H
#define CONFIG_H
#include "config.h"
#endif

Hisham Muhammad's avatar
Hisham Muhammad committed
13
14
#include "ProcessList.h"
#include "Process.h"
15
#include "Vector.h"
Hisham Muhammad's avatar
Hisham Muhammad committed
16
17
#include "UsersTable.h"
#include "Hashtable.h"
18
#include "String.h"
Hisham Muhammad's avatar
Hisham Muhammad committed
19
20
21
22
23
24
25
26
27
28

#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <dirent.h>
#include <stdlib.h>
#include <stdio.h>
#include <signal.h>
#include <stdbool.h>
#include <sys/utsname.h>
Hisham Muhammad's avatar
Hisham Muhammad committed
29
#include <stdarg.h>
Hisham Muhammad's avatar
Hisham Muhammad committed
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47

#include "debug.h"
#include <assert.h>

/*{
#ifndef PROCDIR
#define PROCDIR "/proc"
#endif

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

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

#ifndef MAX_NAME
Hisham Muhammad's avatar
Hisham Muhammad committed
48
49
50
51
#define MAX_NAME 128
#endif

#ifndef MAX_READ
52
#define MAX_READ 2048
Hisham Muhammad's avatar
Hisham Muhammad committed
53
54
#endif

55
56
57
58
#ifndef PER_PROCESSOR_FIELDS
#define PER_PROCESSOR_FIELDS 20
#endif

Hisham Muhammad's avatar
Hisham Muhammad committed
59
60
61
62
}*/

/*{

63
#ifdef DEBUG_PROC
64
65
66
typedef int(*vxscanf)(void*, const char*, va_list);
#endif

Hisham Muhammad's avatar
Hisham Muhammad committed
67
typedef struct ProcessList_ {
68
69
   Vector* processes;
   Vector* processes2;
Hisham Muhammad's avatar
Hisham Muhammad committed
70
71
72
73
74
75
76
77
   Hashtable* processTable;
   Process* prototype;
   UsersTable* usersTable;

   int processorCount;
   int totalTasks;
   int runningTasks;

78
   // Must match number of PER_PROCESSOR_FIELDS constant
79
80
81
   unsigned long long int* totalTime;
   unsigned long long int* userTime;
   unsigned long long int* systemTime;
82
   unsigned long long int* systemAllTime;
83
84
   unsigned long long int* idleTime;
   unsigned long long int* niceTime;
85
86
87
88
   unsigned long long int* ioWaitTime;
   unsigned long long int* irqTime;
   unsigned long long int* softIrqTime;
   unsigned long long int* stealTime;
89
90
91
   unsigned long long int* totalPeriod;
   unsigned long long int* userPeriod;
   unsigned long long int* systemPeriod;
92
   unsigned long long int* systemAllPeriod;
93
94
   unsigned long long int* idlePeriod;
   unsigned long long int* nicePeriod;
95
96
97
98
   unsigned long long int* ioWaitPeriod;
   unsigned long long int* irqPeriod;
   unsigned long long int* softIrqPeriod;
   unsigned long long int* stealPeriod;
99
100
101
102
103
104
105
106
107
108

   unsigned long long int totalMem;
   unsigned long long int usedMem;
   unsigned long long int freeMem;
   unsigned long long int sharedMem;
   unsigned long long int buffersMem;
   unsigned long long int cachedMem;
   unsigned long long int totalSwap;
   unsigned long long int usedSwap;
   unsigned long long int freeSwap;
Hisham Muhammad's avatar
Hisham Muhammad committed
109
110
111
112
113
114
115
116
117
118
119

   ProcessField* fields;
   ProcessField sortKey;
   int direction;
   bool hideThreads;
   bool shadowOtherUsers;
   bool hideKernelThreads;
   bool hideUserlandThreads;
   bool treeView;
   bool highlightBaseName;
   bool highlightMegabytes;
120
   bool expandSystemTime;
121
   #ifdef DEBUG_PROC
Hisham Muhammad's avatar
Hisham Muhammad committed
122
123
   FILE* traceFile;
   #endif
Hisham Muhammad's avatar
Hisham Muhammad committed
124
125
126
127

} ProcessList;
}*/

128
static ProcessField defaultHeaders[] = { PID, USER, PRIORITY, NICE, M_SIZE, M_RESIDENT, M_SHARE, STATE, PERCENT_CPU, PERCENT_MEM, TIME, COMM, 0 };
Hisham Muhammad's avatar
Hisham Muhammad committed
129

130
#ifdef DEBUG_PROC
Hisham Muhammad's avatar
Hisham Muhammad committed
131
132
133
134

#define ProcessList_read(this, buffer, format, ...) ProcessList_xread(this, (vxscanf) vsscanf, buffer, format, ## __VA_ARGS__ )
#define ProcessList_fread(this, file, format, ...)  ProcessList_xread(this, (vxscanf) vfscanf, file, format, ## __VA_ARGS__ )

135
static FILE* ProcessList_fopen(ProcessList* this, const char* path, const char* mode) {
Hisham Muhammad's avatar
Hisham Muhammad committed
136
137
138
139
140
141
142
143
144
145
146
147
   fprintf(this->traceFile, "[%s]\n", path);
   return fopen(path, mode);
}

static inline int ProcessList_xread(ProcessList* this, vxscanf fn, void* buffer, char* format, ...) {
   va_list ap;
   va_start(ap, format);
   int num = fn(buffer, format, ap);
   va_end(format);
   va_start(ap, format);
   while (*format) {
      char ch = *format;
148
149
150
151
      char* c; int* d;
      long int* ld; unsigned long int* lu;
      long long int* lld; unsigned long long int* llu;
      char** s;
Hisham Muhammad's avatar
Hisham Muhammad committed
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
      if (ch != '%') {
         fprintf(this->traceFile, "%c", ch);
         format++;
         continue;
      }
      format++;
      switch(*format) {
      case 'c': c = va_arg(ap, char*);  fprintf(this->traceFile, "%c", *c); break;
      case 'd': d = va_arg(ap, int*);   fprintf(this->traceFile, "%d", *d); break;
      case 's': s = va_arg(ap, char**); fprintf(this->traceFile, "%s", *s); break;
      case 'l':
         format++;
         switch (*format) {
         case 'd': ld = va_arg(ap, long int*); fprintf(this->traceFile, "%ld", *ld); break;
         case 'u': lu = va_arg(ap, unsigned long int*); fprintf(this->traceFile, "%lu", *lu); break;
167
168
169
170
171
172
         case 'l':
            format++;
            switch (*format) {
            case 'd': lld = va_arg(ap, long long int*); fprintf(this->traceFile, "%lld", *lld); break;
            case 'u': llu = va_arg(ap, unsigned long long int*); fprintf(this->traceFile, "%llu", *llu); break;
            }
Hisham Muhammad's avatar
Hisham Muhammad committed
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
         }
      }
      format++;
   }
   fprintf(this->traceFile, "\n");
   va_end(format);
   return num;
}

#else

#ifndef ProcessList_read
#define ProcessList_fopen(this, path, mode) fopen(path, mode)
#define ProcessList_read(this, buffer, format, ...) sscanf(buffer, format, ## __VA_ARGS__ )
#define ProcessList_fread(this, file, format, ...) fscanf(file, format, ## __VA_ARGS__ )
#endif

#endif

192
193
194
195
196
197
198
199
200
201
static inline void ProcessList_allocatePerProcessorBuffers(ProcessList* this, int procs) {
   unsigned long long int** bufferPtr = &(this->totalTime);
   unsigned long long int* buffer = calloc(procs * PER_PROCESSOR_FIELDS, sizeof(unsigned long long int));
   for (int i = 0; i < PER_PROCESSOR_FIELDS; i++) {
      *bufferPtr = buffer;
      bufferPtr++;
      buffer += procs;
   }
}

Hisham Muhammad's avatar
Hisham Muhammad committed
202
203
204
ProcessList* ProcessList_new(UsersTable* usersTable) {
   ProcessList* this;
   this = malloc(sizeof(ProcessList));
205
   this->processes = Vector_new(PROCESS_CLASS, true, DEFAULT_SIZE, Process_compare);
206
   this->processTable = Hashtable_new(70, false);
207
   assert(Hashtable_count(this->processTable) == Vector_count(this->processes));
Hisham Muhammad's avatar
Hisham Muhammad committed
208
209
210
211
   this->prototype = Process_new(this);
   this->usersTable = usersTable;
   
   /* tree-view auxiliary buffers */
212
   this->processes2 = Vector_new(PROCESS_CLASS, true, DEFAULT_SIZE, Process_compare);
Hisham Muhammad's avatar
Hisham Muhammad committed
213
   
214
   #ifdef DEBUG_PROC
Hisham Muhammad's avatar
Hisham Muhammad committed
215
216
   this->traceFile = fopen("/tmp/htop-proc-trace", "w");
   #endif
Hisham Muhammad's avatar
Hisham Muhammad committed
217
218
219
220
221
222
223
224
225
226
227

   FILE* status = fopen(PROCSTATFILE, "r");
   assert(status != NULL);
   char buffer[256];
   int procs = -1;
   do {
      procs++;
      fgets(buffer, 255, status);
   } while (String_startsWith(buffer, "cpu"));
   fclose(status);
   this->processorCount = procs - 1;
228
229
230
   
   ProcessList_allocatePerProcessorBuffers(this, procs);

Hisham Muhammad's avatar
Hisham Muhammad committed
231
232
233
234
235
236
   for (int i = 0; i < procs; i++) {
      this->totalTime[i] = 1;
      this->totalPeriod[i] = 1;
   }

   this->fields = calloc(sizeof(ProcessField), LAST_PROCESSFIELD+1);
237
   // TODO: turn 'fields' into a Vector,
Hisham Muhammad's avatar
Hisham Muhammad committed
238
239
240
241
242
243
244
245
246
247
248
249
250
   // (and ProcessFields into proper objects).
   for (int i = 0; defaultHeaders[i]; i++) {
      this->fields[i] = defaultHeaders[i];
   }
   this->sortKey = PERCENT_CPU;
   this->direction = 1;
   this->hideThreads = false;
   this->shadowOtherUsers = false;
   this->hideKernelThreads = false;
   this->hideUserlandThreads = false;
   this->treeView = false;
   this->highlightBaseName = false;
   this->highlightMegabytes = false;
251
   this->expandSystemTime = false;
Hisham Muhammad's avatar
Hisham Muhammad committed
252
253
254
255
256
257

   return this;
}

void ProcessList_delete(ProcessList* this) {
   Hashtable_delete(this->processTable);
258
259
   Vector_delete(this->processes);
   Vector_delete(this->processes2);
Hisham Muhammad's avatar
Hisham Muhammad committed
260
261
   Process_delete((Object*)this->prototype);

262
263
   // Free first entry only;
   // other fields are offsets of the same buffer
Hisham Muhammad's avatar
Hisham Muhammad committed
264
265
   free(this->totalTime);

266
   #ifdef DEBUG_PROC
Hisham Muhammad's avatar
Hisham Muhammad committed
267
268
269
   fclose(this->traceFile);
   #endif

Hisham Muhammad's avatar
Hisham Muhammad committed
270
271
272
273
274
275
276
277
278
279
280
281
   free(this->fields);
   free(this);
}

void ProcessList_invertSortOrder(ProcessList* this) {
   if (this->direction == 1)
      this->direction = -1;
   else
      this->direction = 1;
}

RichString ProcessList_printHeader(ProcessList* this) {
282
283
   RichString out;
   RichString_init(&out);
Hisham Muhammad's avatar
Hisham Muhammad committed
284
285
286
287
288
289
290
291
292
293
294
295
296
   ProcessField* fields = this->fields;
   for (int i = 0; fields[i]; i++) {
      char* field = Process_printField(fields[i]);
      if (this->sortKey == fields[i])
         RichString_append(&out, CRT_colors[PANEL_HIGHLIGHT_FOCUS], field);
      else
         RichString_append(&out, CRT_colors[PANEL_HEADER_FOCUS], field);
   }
   return out;
}


void ProcessList_prune(ProcessList* this) {
297
   Vector_prune(this->processes);
Hisham Muhammad's avatar
Hisham Muhammad committed
298
299
300
}

void ProcessList_add(ProcessList* this, Process* p) {
301
302
   assert(Vector_indexOf(this->processes, p, Process_pidCompare) == -1);
   assert(Hashtable_get(this->processTable, p->pid) == NULL);
303
   Vector_add(this->processes, p);
Hisham Muhammad's avatar
Hisham Muhammad committed
304
   Hashtable_put(this->processTable, p->pid, p);
305
306
   assert(Vector_indexOf(this->processes, p, Process_pidCompare) != -1);
   assert(Hashtable_get(this->processTable, p->pid) != NULL);
307
   assert(Hashtable_count(this->processTable) == Vector_count(this->processes));
Hisham Muhammad's avatar
Hisham Muhammad committed
308
309
310
}

void ProcessList_remove(ProcessList* this, Process* p) {
311
312
313
   assert(Vector_indexOf(this->processes, p, Process_pidCompare) != -1);
   assert(Hashtable_get(this->processTable, p->pid) != NULL);
   Process* pp = Hashtable_remove(this->processTable, p->pid);
314
   assert(pp == p); (void)pp;
315
   unsigned int pid = p->pid;
316
   int index = Vector_indexOf(this->processes, p, Process_pidCompare);
317
   assert(index != -1);
318
   Vector_remove(this->processes, index);
319
   assert(Hashtable_get(this->processTable, pid) == NULL); (void)pid;
320
   assert(Hashtable_count(this->processTable) == Vector_count(this->processes));
Hisham Muhammad's avatar
Hisham Muhammad committed
321
322
323
}

Process* ProcessList_get(ProcessList* this, int index) {
324
   return (Process*) (Vector_get(this->processes, index));
Hisham Muhammad's avatar
Hisham Muhammad committed
325
326
327
}

int ProcessList_size(ProcessList* this) {
328
   return (Vector_size(this->processes));
Hisham Muhammad's avatar
Hisham Muhammad committed
329
330
}

331
static void ProcessList_buildTree(ProcessList* this, int pid, int level, int indent, int direction) {
332
   Vector* children = Vector_new(PROCESS_CLASS, false, DEFAULT_SIZE, Process_compare);
Hisham Muhammad's avatar
Hisham Muhammad committed
333

334
   for (int i = Vector_size(this->processes) - 1; i >= 0; i--) {
335
      Process* process = (Process*) (Vector_get(this->processes, i));
Hisham Muhammad's avatar
Hisham Muhammad committed
336
      if (process->ppid == pid) {
337
338
         Process* process = (Process*) (Vector_take(this->processes, i));
         Vector_add(children, process);
Hisham Muhammad's avatar
Hisham Muhammad committed
339
340
      }
   }
341
   int size = Vector_size(children);
Hisham Muhammad's avatar
Hisham Muhammad committed
342
   for (int i = 0; i < size; i++) {
343
      Process* process = (Process*) (Vector_get(children, i));
344
      int s = this->processes2->items;
Hisham Muhammad's avatar
Hisham Muhammad committed
345
      if (direction == 1)
346
         Vector_add(this->processes2, process);
Hisham Muhammad's avatar
Hisham Muhammad committed
347
      else
348
         Vector_insert(this->processes2, 0, process);
349
      assert(this->processes2->items == s+1); (void)s;
Hisham Muhammad's avatar
Hisham Muhammad committed
350
351
352
353
354
355
      int nextIndent = indent;
      if (i < size - 1)
         nextIndent = indent | (1 << level);
      ProcessList_buildTree(this, process->pid, level+1, nextIndent, direction);
      process->indent = indent | (1 << level);
   }
356
   Vector_delete(children);
Hisham Muhammad's avatar
Hisham Muhammad committed
357
358
359
360
}

void ProcessList_sort(ProcessList* this) {
   if (!this->treeView) {
361
      Vector_sort(this->processes);
Hisham Muhammad's avatar
Hisham Muhammad committed
362
363
364
365
366
   } else {
      int direction = this->direction;
      int sortKey = this->sortKey;
      this->sortKey = PID;
      this->direction = 1;
367
      Vector_sort(this->processes);
Hisham Muhammad's avatar
Hisham Muhammad committed
368
369
      this->sortKey = sortKey;
      this->direction = direction;
370
      int vsize = Vector_size(this->processes);
371
      Process* init = (Process*) (Vector_take(this->processes, 0));
Hisham Muhammad's avatar
Hisham Muhammad committed
372
373
      assert(init->pid == 1);
      init->indent = 0;
374
      Vector_add(this->processes2, init);
Hisham Muhammad's avatar
Hisham Muhammad committed
375
      ProcessList_buildTree(this, init->pid, 0, 0, direction);
376
377
378
379
380
381
382
      while (Vector_size(this->processes)) {
         Process* p = (Process*) (Vector_take(this->processes, 0));
         p->indent = 0;
         Vector_add(this->processes2, p);
      }
      assert(Vector_size(this->processes2) == vsize); (void)vsize;
      assert(Vector_size(this->processes) == 0);
383
      Vector* t = this->processes;
Hisham Muhammad's avatar
Hisham Muhammad committed
384
385
386
387
388
      this->processes = this->processes2;
      this->processes2 = t;
   }
}

389
static int ProcessList_readStatFile(ProcessList* this, Process *proc, FILE *f, char *command) {
Hisham Muhammad's avatar
Hisham Muhammad committed
390
   static char buf[MAX_READ];
391
   unsigned long int zero;
Hisham Muhammad's avatar
Hisham Muhammad committed
392
393
394
395

   int size = fread(buf, 1, MAX_READ, f);
   if(!size) return 0;

396
   assert(proc->pid == atoi(buf));
Hisham Muhammad's avatar
Hisham Muhammad committed
397
398
399
400
401
402
403
404
405
406
407
408
   char *location = strchr(buf, ' ');
   if(!location) return 0;

   location += 2;
   char *end = strrchr(location, ')');
   if(!end) return 0;
   
   int commsize = end - location;
   memcpy(command, location, commsize);
   command[commsize] = '\0';
   location = end + 2;
   
409
   #ifdef DEBUG_PROC
Hisham Muhammad's avatar
Hisham Muhammad committed
410
   int num = ProcessList_read(this, location, 
Hisham Muhammad's avatar
Hisham Muhammad committed
411
412
413
414
415
416
      "%c %d %d %d %d %d %lu %lu %lu %lu "
      "%lu %lu %lu %ld %ld %ld %ld %ld %ld "
      "%lu %lu %ld %lu %lu %lu %lu %lu "
      "%lu %lu %lu %lu %lu %lu %lu %lu "
      "%d %d",
      &proc->state, &proc->ppid, &proc->pgrp, &proc->session, &proc->tty_nr, 
417
418
419
      &proc->tpgid, &proc->flags,
      &proc->minflt, &proc->cminflt, &proc->majflt, &proc->cmajflt,
      &proc->utime, &proc->stime, &proc->cutime, &proc->cstime, 
Hisham Muhammad's avatar
Hisham Muhammad committed
420
421
422
423
424
425
      &proc->priority, &proc->nice, &zero, &proc->itrealvalue, 
      &proc->starttime, &proc->vsize, &proc->rss, &proc->rlim, 
      &proc->startcode, &proc->endcode, &proc->startstack, &proc->kstkesp, 
      &proc->kstkeip, &proc->signal, &proc->blocked, &proc->sigignore, 
      &proc->sigcatch, &proc->wchan, &proc->nswap, &proc->cnswap, 
      &proc->exit_signal, &proc->processor);
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
   #else
   long int uzero;
   int num = ProcessList_read(this, location, 
      "%c %d %d %d %d %d %lu %lu %lu %lu "
      "%lu %lu %lu %ld %ld %ld %ld %ld %ld "
      "%lu %lu %ld %lu %lu %lu %lu %lu "
      "%lu %lu %lu %lu %lu %lu %lu %lu "
      "%d %d",
      &proc->state, &proc->ppid, &proc->pgrp, &proc->session, &proc->tty_nr, 
      &proc->tpgid, &proc->flags,
      &zero, &zero, &zero, &zero,
      &proc->utime, &proc->stime, &proc->cutime, &proc->cstime, 
      &proc->priority, &proc->nice, &uzero, &uzero, 
      &zero, &zero, &uzero, &zero, 
      &zero, &zero, &zero, &zero, 
      &zero, &zero, &zero, &zero, 
      &zero, &zero, &zero, &zero, 
      &proc->exit_signal, &proc->processor);
   #endif
Hisham Muhammad's avatar
Hisham Muhammad committed
445
446
447
448
449
450
451
452
453
   
   // This assert is always valid on 2.4, but reportedly not always valid on 2.6.
   // TODO: Check if the semantics of this field has changed.
   // assert(zero == 0);
   
   if(num != 37) return 0;
   return 1;
}

Hisham Muhammad's avatar
Hisham Muhammad committed
454
bool ProcessList_readStatusFile(ProcessList* this, Process* proc, char* dirname, char* name) {
Hisham Muhammad's avatar
Hisham Muhammad committed
455
456
   char statusfilename[MAX_NAME+1];
   statusfilename[MAX_NAME] = '\0';
457
458
459
460
   /*
   bool success = false;
   char buffer[256];
   buffer[255] = '\0';
Hisham Muhammad's avatar
Hisham Muhammad committed
461
   snprintf(statusfilename, MAX_NAME, "%s/%s/status", dirname, name);
Hisham Muhammad's avatar
Hisham Muhammad committed
462
   FILE* status = ProcessList_fopen(this, statusfilename, "r");
Hisham Muhammad's avatar
Hisham Muhammad committed
463
464
   if (status) {
      while (!feof(status)) {
465
         char* ok = fgets(buffer, 255, status);
Hisham Muhammad's avatar
Hisham Muhammad committed
466
467
468
469
470
         if (!ok)
            break;
         if (String_startsWith(buffer, "Uid:")) {
            int uid1, uid2, uid3, uid4;
            // TODO: handle other uid's.
Hisham Muhammad's avatar
Hisham Muhammad committed
471
            int ok = ProcessList_read(this, buffer, "Uid:\t%d\t%d\t%d\t%d", &uid1, &uid2, &uid3, &uid4);
Hisham Muhammad's avatar
Hisham Muhammad committed
472
473
474
475
476
477
478
479
480
481
            if (ok >= 1) {
               proc->st_uid = uid1;
               success = true;
            }
            break;
         }
      }
      fclose(status);
   }
   if (!success) {
482
483
   */
      snprintf(statusfilename, MAX_NAME, "%s/%s", dirname, name);
Hisham Muhammad's avatar
Hisham Muhammad committed
484
485
486
487
488
      struct stat sstat;
      int statok = stat(statusfilename, &sstat);
      if (statok == -1)
         return false;
      proc->st_uid = sstat.st_uid;
489
490
491
492
493
      return true;
   /*
   } else
      return true;
   */
Hisham Muhammad's avatar
Hisham Muhammad committed
494
495
496
497
498
499
500
501
}

void ProcessList_processEntries(ProcessList* this, char* dirname, int parent, float period) {
   DIR* dir;
   struct dirent* entry;
   Process* prototype = this->prototype;

   dir = opendir(dirname);
502
   if (!dir) return;
Hisham Muhammad's avatar
Hisham Muhammad committed
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
   while ((entry = readdir(dir)) != NULL) {
      char* name = entry->d_name;
      int pid;
      // filename is a number: process directory
      pid = atoi(name);

      // The RedHat kernel hides threads with a dot.
      // I believe this is non-standard.
      bool isThread = false;
      if ((!this->hideThreads) && pid == 0 && name[0] == '.') {
         char* tname = name + 1;
         pid = atoi(tname);
         if (pid > 0)
            isThread = true;
      }

      if (pid > 0 && pid != parent) {
         if (!this->hideUserlandThreads) {
            char subdirname[MAX_NAME+1];
            snprintf(subdirname, MAX_NAME, "%s/%s/task", dirname, name);
   
            if (access(subdirname, X_OK) == 0) {
               ProcessList_processEntries(this, subdirname, pid, period);
            }
Hisham Muhammad's avatar
Hisham Muhammad committed
527
528
         }

Hisham Muhammad's avatar
Hisham Muhammad committed
529
530
531
532
         FILE* status;
         char statusfilename[MAX_NAME+1];
         char command[PROCESS_COMM_LEN + 1];

533
         Process* process = NULL;
534

535
         assert(Hashtable_count(this->processTable) == Vector_count(this->processes));
Hisham Muhammad's avatar
Hisham Muhammad committed
536
         Process* existingProcess = (Process*) Hashtable_get(this->processTable, pid);
537
         if (existingProcess) {
538
            assert(Vector_indexOf(this->processes, existingProcess, Process_pidCompare) != -1);
539
            process = existingProcess;
540
            assert(process->pid == pid);
541
542
         } else {
            process = prototype;
543
            assert(process->comm == NULL);
Hisham Muhammad's avatar
Hisham Muhammad committed
544
            process->pid = pid;
Hisham Muhammad's avatar
Hisham Muhammad committed
545
            if (! ProcessList_readStatusFile(this, process, dirname, name))
Hisham Muhammad's avatar
Hisham Muhammad committed
546
547
548
549
               goto errorReadingProcess;
         }
         process->updated = true;

550
551
552
553
554
555
556
557
         snprintf(statusfilename, MAX_NAME, "%s/%s/statm", dirname, name);
         status = ProcessList_fopen(this, statusfilename, "r");

         if(!status) {
            goto errorReadingProcess;
         }
         int num = ProcessList_fread(this, status, "%d %d %d %d %d %d %d",
             &process->m_size, &process->m_resident, &process->m_share, 
558
             &process->m_trs, &process->m_lrs, &process->m_drs, 
559
560
561
562
563
564
565
566
567
             &process->m_dt);

         fclose(status);
         if(num != 7)
            goto errorReadingProcess;

         if (this->hideKernelThreads && process->m_size == 0)
            goto errorReadingProcess;

568
569
570
571
572
573
574
575
576
577
578
579
580
         int lasttimes = (process->utime + process->stime);

         snprintf(statusfilename, MAX_NAME, "%s/%s/stat", dirname, name);
         
         status = ProcessList_fopen(this, statusfilename, "r");
         if (status == NULL) 
            goto errorReadingProcess;

         int success = ProcessList_readStatFile(this, process, status, command);
         fclose(status);
         if(!success)
            goto errorReadingProcess;

Hisham Muhammad's avatar
Hisham Muhammad committed
581
         if(!existingProcess) {
582
            process->user = UsersTable_getRef(this->usersTable, process->st_uid);
583
 
Hisham Muhammad's avatar
Hisham Muhammad committed
584
            snprintf(statusfilename, MAX_NAME, "%s/%s/cmdline", dirname, name);
Hisham Muhammad's avatar
Hisham Muhammad committed
585
            status = ProcessList_fopen(this, statusfilename, "r");
Hisham Muhammad's avatar
Hisham Muhammad committed
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
            if (!status) {
               goto errorReadingProcess;
            }

            int amtRead = fread(command, 1, PROCESS_COMM_LEN - 1, status);
            if (amtRead > 0) {
               for (int i = 0; i < amtRead; i++)
                  if (command[i] == '\0' || command[i] == '\n')
                     command[i] = ' ';
               command[amtRead] = '\0';
            }
            command[PROCESS_COMM_LEN] = '\0';
            process->comm = String_copy(command);
            fclose(status);
         }

602
603
604
         process->percent_cpu = (process->utime + process->stime - lasttimes) / 
            period * 100.0;

Hisham Muhammad's avatar
Hisham Muhammad committed
605
606
607
608
609
         process->percent_mem = process->m_resident / 
            (float)(this->usedMem - this->cachedMem - this->buffersMem) * 
            100.0;

         this->totalTasks++;
Hisham Muhammad's avatar
Hisham Muhammad committed
610
611
612
         if (process->state == 'R') {
            this->runningTasks++;
         }
Hisham Muhammad's avatar
Hisham Muhammad committed
613

614
         if (!existingProcess) {
Hisham Muhammad's avatar
Hisham Muhammad committed
615
            ProcessList_add(this, Process_clone(process));
616
         }
Hisham Muhammad's avatar
Hisham Muhammad committed
617
618
619
620
621

         continue;

         // Exception handler.
         errorReadingProcess: {
622
623
624
625
            if (process->comm) {
               free(process->comm);
               process->comm = NULL;
            }
626
627
            if (existingProcess)
               ProcessList_remove(this, process);
628
            assert(Hashtable_count(this->processTable) == Vector_count(this->processes));
Hisham Muhammad's avatar
Hisham Muhammad committed
629
630
631
632
633
634
635
         }
      }
   }
   closedir(dir);
}

void ProcessList_scan(ProcessList* this) {
636
   unsigned long long int usertime, nicetime, systemtime, systemalltime, idletime, totaltime;
637
   unsigned long long int swapFree;
Hisham Muhammad's avatar
Hisham Muhammad committed
638
639
640

   FILE* status;
   char buffer[128];
Hisham Muhammad's avatar
Hisham Muhammad committed
641
   status = ProcessList_fopen(this, PROCMEMINFOFILE, "r");
Hisham Muhammad's avatar
Hisham Muhammad committed
642
643
644
645
646
647
648
   assert(status != NULL);
   while (!feof(status)) {
      fgets(buffer, 128, status);

      switch (buffer[0]) {
      case 'M':
         if (String_startsWith(buffer, "MemTotal:"))
649
            ProcessList_read(this, buffer, "MemTotal: %llu kB", &this->totalMem);
Hisham Muhammad's avatar
Hisham Muhammad committed
650
         else if (String_startsWith(buffer, "MemFree:"))
651
            ProcessList_read(this, buffer, "MemFree: %llu kB", &this->freeMem);
Hisham Muhammad's avatar
Hisham Muhammad committed
652
         else if (String_startsWith(buffer, "MemShared:"))
653
            ProcessList_read(this, buffer, "MemShared: %llu kB", &this->sharedMem);
Hisham Muhammad's avatar
Hisham Muhammad committed
654
655
656
         break;
      case 'B':
         if (String_startsWith(buffer, "Buffers:"))
657
            ProcessList_read(this, buffer, "Buffers: %llu kB", &this->buffersMem);
Hisham Muhammad's avatar
Hisham Muhammad committed
658
659
660
         break;
      case 'C':
         if (String_startsWith(buffer, "Cached:"))
661
            ProcessList_read(this, buffer, "Cached: %llu kB", &this->cachedMem);
Hisham Muhammad's avatar
Hisham Muhammad committed
662
663
664
         break;
      case 'S':
         if (String_startsWith(buffer, "SwapTotal:"))
665
            ProcessList_read(this, buffer, "SwapTotal: %llu kB", &this->totalSwap);
Hisham Muhammad's avatar
Hisham Muhammad committed
666
         if (String_startsWith(buffer, "SwapFree:"))
667
            ProcessList_read(this, buffer, "SwapFree: %llu kB", &swapFree);
Hisham Muhammad's avatar
Hisham Muhammad committed
668
669
670
         break;
      }
   }
Hisham Muhammad's avatar
Hisham Muhammad committed
671

Hisham Muhammad's avatar
Hisham Muhammad committed
672
673
674
675
   this->usedMem = this->totalMem - this->freeMem;
   this->usedSwap = this->totalSwap - swapFree;
   fclose(status);

Hisham Muhammad's avatar
Hisham Muhammad committed
676
677
   status = ProcessList_fopen(this, PROCSTATFILE, "r");

Hisham Muhammad's avatar
Hisham Muhammad committed
678
679
680
681
   assert(status != NULL);
   for (int i = 0; i <= this->processorCount; i++) {
      char buffer[256];
      int cpuid;
682
      unsigned long long int ioWait, irq, softIrq, steal;
Hisham Muhammad's avatar
Hisham Muhammad committed
683
684
685
686
687
688
      ioWait = irq = softIrq = steal = 0;
      // Dependending on your kernel version,
      // 5, 7 or 8 of these fields will be set.
      // The rest will remain at zero.
      fgets(buffer, 255, status);
      if (i == 0)
689
         ProcessList_read(this, buffer, "cpu  %llu %llu %llu %llu %llu %llu %llu %llu", &usertime, &nicetime, &systemtime, &idletime, &ioWait, &irq, &softIrq, &steal);
Hisham Muhammad's avatar
Hisham Muhammad committed
690
      else {
691
         ProcessList_read(this, buffer, "cpu%d %llu %llu %llu %llu %llu %llu %llu %llu", &cpuid, &usertime, &nicetime, &systemtime, &idletime, &ioWait, &irq, &softIrq, &steal);
Hisham Muhammad's avatar
Hisham Muhammad committed
692
693
694
695
         assert(cpuid == i - 1);
      }
      // Fields existing on kernels >= 2.6
      // (and RHEL's patched kernel 2.4...)
696
697
      systemalltime = systemtime + ioWait + irq + softIrq + steal;
      totaltime = usertime + nicetime + systemalltime + idletime;
Hisham Muhammad's avatar
Hisham Muhammad committed
698
699
700
701
702
      assert (usertime >= this->userTime[i]);
      assert (nicetime >= this->niceTime[i]);
      assert (systemtime >= this->systemTime[i]);
      assert (idletime >= this->idleTime[i]);
      assert (totaltime >= this->totalTime[i]);
703
704
      assert (systemalltime >= this->systemAllTime[i]);
      assert (ioWait >= this->ioWaitTime[i]);
705
706
707
      assert (irq >= this->irqTime[i]);
      assert (softIrq >= this->softIrqTime[i]);
      assert (steal >= this->stealTime[i]);
Hisham Muhammad's avatar
Hisham Muhammad committed
708
709
710
      this->userPeriod[i] = usertime - this->userTime[i];
      this->nicePeriod[i] = nicetime - this->niceTime[i];
      this->systemPeriod[i] = systemtime - this->systemTime[i];
711
      this->systemAllPeriod[i] = systemalltime - this->systemAllTime[i];
Hisham Muhammad's avatar
Hisham Muhammad committed
712
      this->idlePeriod[i] = idletime - this->idleTime[i];
713
714
715
716
      this->ioWaitPeriod[i] = ioWait - this->ioWaitTime[i];
      this->irqPeriod[i] = irq - this->irqTime[i];
      this->softIrqPeriod[i] = softIrq - this->softIrqTime[i];
      this->stealPeriod[i] = steal - this->stealTime[i];
Hisham Muhammad's avatar
Hisham Muhammad committed
717
718
719
720
      this->totalPeriod[i] = totaltime - this->totalTime[i];
      this->userTime[i] = usertime;
      this->niceTime[i] = nicetime;
      this->systemTime[i] = systemtime;
721
      this->systemAllTime[i] = systemalltime;
Hisham Muhammad's avatar
Hisham Muhammad committed
722
      this->idleTime[i] = idletime;
723
724
725
726
      this->ioWaitTime[i] = ioWait;
      this->irqTime[i] = irq;
      this->softIrqTime[i] = softIrq;
      this->stealTime[i] = steal;
Hisham Muhammad's avatar
Hisham Muhammad committed
727
728
729
730
731
732
      this->totalTime[i] = totaltime;
   }
   float period = (float)this->totalPeriod[0] / this->processorCount;
   fclose(status);

   // mark all process as "dirty"
733
734
   for (int i = 0; i < Vector_size(this->processes); i++) {
      Process* p = (Process*) Vector_get(this->processes, i);
Hisham Muhammad's avatar
Hisham Muhammad committed
735
736
737
738
739
740
741
742
      p->updated = false;
   }
   
   this->totalTasks = 0;
   this->runningTasks = 0;
   
   ProcessList_processEntries(this, PROCDIR, 0, period);
   
743
744
   for (int i = Vector_size(this->processes) - 1; i >= 0; i--) {
      Process* p = (Process*) Vector_get(this->processes, i);
Hisham Muhammad's avatar
Hisham Muhammad committed
745
746
747
748
749
750
751
      if (p->updated == false)
         ProcessList_remove(this, p);
      else
         p->updated = false;
   }

}