ProcessList.c 29.2 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
#include <math.h>
Hisham Muhammad's avatar
Hisham Muhammad committed
31
32
33
34
35
36
37
38
39
40

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

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

#ifndef PROCSTATFILE
41
#define PROCSTATFILE PROCDIR "/stat"
Hisham Muhammad's avatar
Hisham Muhammad committed
42
43
44
#endif

#ifndef PROCMEMINFOFILE
45
#define PROCMEMINFOFILE PROCDIR "/meminfo"
Hisham Muhammad's avatar
Hisham Muhammad committed
46
47
48
#endif

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

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

56
#ifndef PER_PROCESSOR_FIELDS
57
#define PER_PROCESSOR_FIELDS 22
58
59
#endif

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

/*{

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

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

   int processorCount;
   int totalTasks;
   int runningTasks;

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

   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
112
113
114
115
116
117

   ProcessField* fields;
   ProcessField sortKey;
   int direction;
   bool hideThreads;
   bool shadowOtherUsers;
Hisham Muhammad's avatar
Hisham Muhammad committed
118
119
   bool showThreadNames;
   bool showingThreadNames;
Hisham Muhammad's avatar
Hisham Muhammad committed
120
121
122
123
124
   bool hideKernelThreads;
   bool hideUserlandThreads;
   bool treeView;
   bool highlightBaseName;
   bool highlightMegabytes;
125
   bool highlightThreads;
126
   bool detailedCPUTime;
127
   #ifdef DEBUG_PROC
Hisham Muhammad's avatar
Hisham Muhammad committed
128
129
   FILE* traceFile;
   #endif
Hisham Muhammad's avatar
Hisham Muhammad committed
130
131
132
133

} ProcessList;
}*/

134
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
135

136
#ifdef DEBUG_PROC
Hisham Muhammad's avatar
Hisham Muhammad committed
137
138
139
140

#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__ )

141
static FILE* ProcessList_fopen(ProcessList* this, const char* path, const char* mode) {
Hisham Muhammad's avatar
Hisham Muhammad committed
142
143
144
145
146
147
148
149
150
151
152
153
   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;
154
155
156
157
      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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
      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;
173
174
175
176
177
178
         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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
         }
      }
      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

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

   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;
234
235
236
   
   ProcessList_allocatePerProcessorBuffers(this, procs);

Hisham Muhammad's avatar
Hisham Muhammad committed
237
238
239
240
241
242
   for (int i = 0; i < procs; i++) {
      this->totalTime[i] = 1;
      this->totalPeriod[i] = 1;
   }

   this->fields = calloc(sizeof(ProcessField), LAST_PROCESSFIELD+1);
243
   // TODO: turn 'fields' into a Vector,
Hisham Muhammad's avatar
Hisham Muhammad committed
244
245
246
247
248
249
250
251
   // (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;
Hisham Muhammad's avatar
Hisham Muhammad committed
252
253
   this->showThreadNames = true;
   this->showingThreadNames = true;
Hisham Muhammad's avatar
Hisham Muhammad committed
254
255
256
257
258
   this->hideKernelThreads = false;
   this->hideUserlandThreads = false;
   this->treeView = false;
   this->highlightBaseName = false;
   this->highlightMegabytes = false;
259
   this->detailedCPUTime = false;
Hisham Muhammad's avatar
Hisham Muhammad committed
260
261
262
263
264
265

   return this;
}

void ProcessList_delete(ProcessList* this) {
   Hashtable_delete(this->processTable);
266
267
   Vector_delete(this->processes);
   Vector_delete(this->processes2);
Hisham Muhammad's avatar
Hisham Muhammad committed
268
269
   Process_delete((Object*)this->prototype);

270
271
   // Free first entry only;
   // other fields are offsets of the same buffer
Hisham Muhammad's avatar
Hisham Muhammad committed
272
273
   free(this->totalTime);

274
   #ifdef DEBUG_PROC
Hisham Muhammad's avatar
Hisham Muhammad committed
275
276
277
   fclose(this->traceFile);
   #endif

Hisham Muhammad's avatar
Hisham Muhammad committed
278
279
280
281
282
283
284
285
286
287
288
289
   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) {
290
   RichString out;
291
   RichString_initVal(out);
Hisham Muhammad's avatar
Hisham Muhammad committed
292
293
   ProcessField* fields = this->fields;
   for (int i = 0; fields[i]; i++) {
Hisham Muhammad's avatar
Hisham Muhammad committed
294
      const char* field = Process_fieldTitles[fields[i]];
Hisham Muhammad's avatar
Hisham Muhammad committed
295
296
297
298
299
300
301
302
      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;
}

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

313
static void ProcessList_remove(ProcessList* this, Process* p) {
314
315
316
   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);
317
   assert(pp == p); (void)pp;
318
   unsigned int pid = p->pid;
Hisham Muhammad's avatar
Hisham Muhammad committed
319
320
321
   int idx = Vector_indexOf(this->processes, p, Process_pidCompare);
   assert(idx != -1);
   if (idx >= 0) Vector_remove(this->processes, idx);
322
   assert(Hashtable_get(this->processTable, pid) == NULL); (void)pid;
323
   assert(Hashtable_count(this->processTable) == Vector_count(this->processes));
Hisham Muhammad's avatar
Hisham Muhammad committed
324
325
}

Hisham Muhammad's avatar
Hisham Muhammad committed
326
327
Process* ProcessList_get(ProcessList* this, int idx) {
   return (Process*) (Vector_get(this->processes, idx));
Hisham Muhammad's avatar
Hisham Muhammad committed
328
329
330
}

int ProcessList_size(ProcessList* this) {
331
   return (Vector_size(this->processes));
Hisham Muhammad's avatar
Hisham Muhammad committed
332
333
}

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

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

void ProcessList_sort(ProcessList* this) {
   if (!this->treeView) {
364
      Vector_sort(this->processes);
Hisham Muhammad's avatar
Hisham Muhammad committed
365
   } else {
366
      // Save settings
Hisham Muhammad's avatar
Hisham Muhammad committed
367
368
      int direction = this->direction;
      int sortKey = this->sortKey;
369
      // Sort by PID
Hisham Muhammad's avatar
Hisham Muhammad committed
370
371
      this->sortKey = PID;
      this->direction = 1;
372
      Vector_sort(this->processes);
373
      // Restore settings
Hisham Muhammad's avatar
Hisham Muhammad committed
374
375
      this->sortKey = sortKey;
      this->direction = direction;
376
      // Take PID 1 as root and add to the new listing
377
      int vsize = Vector_size(this->processes);
378
      Process* init = (Process*) (Vector_take(this->processes, 0));
379
380
381
      // This assertion crashes on hardened kernels.
      // I wonder how well tree view works on those systems.
      // assert(init->pid == 1);
Hisham Muhammad's avatar
Hisham Muhammad committed
382
      init->indent = 0;
383
      Vector_add(this->processes2, init);
384
      // Recursively empty list
Hisham Muhammad's avatar
Hisham Muhammad committed
385
      ProcessList_buildTree(this, init->pid, 0, 0, direction);
386
      // Add leftovers
387
388
389
390
      while (Vector_size(this->processes)) {
         Process* p = (Process*) (Vector_take(this->processes, 0));
         p->indent = 0;
         Vector_add(this->processes2, p);
391
         ProcessList_buildTree(this, p->pid, 0, 0, direction);
392
393
394
      }
      assert(Vector_size(this->processes2) == vsize); (void)vsize;
      assert(Vector_size(this->processes) == 0);
395
      // Swap listings around
396
      Vector* t = this->processes;
Hisham Muhammad's avatar
Hisham Muhammad committed
397
398
399
400
401
      this->processes = this->processes2;
      this->processes2 = t;
   }
}

Hisham Muhammad's avatar
Hisham Muhammad committed
402
static int ProcessList_readStatFile(Process *proc, FILE *f, char *command) {
Hisham Muhammad's avatar
Hisham Muhammad committed
403
   static char buf[MAX_READ];
404
   unsigned long int zero;
Hisham Muhammad's avatar
Hisham Muhammad committed
405
406
407
408

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

409
   assert(proc->pid == atoi(buf));
Hisham Muhammad's avatar
Hisham Muhammad committed
410
411
412
413
414
415
416
417
418
419
420
421
   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;
   
422
   #ifdef DEBUG_PROC
Hisham Muhammad's avatar
Hisham Muhammad committed
423
   int num = ProcessList_read(this, location, 
424
      "%c %u %u %u %u %d %lu %lu %lu %lu "
Hisham Muhammad's avatar
Hisham Muhammad committed
425
426
427
428
429
      "%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, 
430
431
432
      &proc->tpgid, &proc->flags,
      &proc->minflt, &proc->cminflt, &proc->majflt, &proc->cmajflt,
      &proc->utime, &proc->stime, &proc->cutime, &proc->cstime, 
433
      &proc->priority, &proc->nice, &proc->nlwp, &proc->itrealvalue,
Hisham Muhammad's avatar
Hisham Muhammad committed
434
435
436
437
438
      &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);
439
440
441
   #else
   long int uzero;
   int num = ProcessList_read(this, location, 
Hisham Muhammad's avatar
Hisham Muhammad committed
442
      "%c %d %u %u %u %d %lu %lu %lu %lu "
443
444
445
446
447
448
449
450
      "%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, 
451
      &proc->priority, &proc->nice, &proc->nlwp, &uzero,
452
453
454
455
456
457
      &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
458
459
460
461
462
463
464
465
466
   
   // 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
467
static bool ProcessList_readStatusFile(Process* proc, const char* dirname, char* name) {
Hisham Muhammad's avatar
Hisham Muhammad committed
468
469
   char statusfilename[MAX_NAME+1];
   statusfilename[MAX_NAME] = '\0';
470
471
472
473
474
475
476
477

   snprintf(statusfilename, MAX_NAME, "%s/%s", dirname, name);
   struct stat sstat;
   int statok = stat(statusfilename, &sstat);
   if (statok == -1)
      return false;
   proc->st_uid = sstat.st_uid;
   return true;
Hisham Muhammad's avatar
Hisham Muhammad committed
478
479
}

480
#ifdef HAVE_TASKSTATS
481

Hisham Muhammad's avatar
Hisham Muhammad committed
482
static void ProcessList_readIoFile(Process* proc, const char* dirname, char* name) {
483
484
485
486
487
488
   char iofilename[MAX_NAME+1];
   iofilename[MAX_NAME] = '\0';

   snprintf(iofilename, MAX_NAME, "%s/%s/io", dirname, name);
   FILE* io = ProcessList_fopen(this, iofilename, "r");
   if (io) {
489
490
      char buffer[256];
      buffer[255] = '\0';
491
492
493
494
495
      struct timeval tv;
      gettimeofday(&tv,NULL);
      unsigned long long now = tv.tv_sec*1000+tv.tv_usec/1000;
      unsigned long long last_read = proc->io_read_bytes;
      unsigned long long last_write = proc->io_write_bytes;
Hisham Muhammad's avatar
Hisham Muhammad committed
496
      while (fgets(buffer, 255, io)) {
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
         if (ProcessList_read(this, buffer, "rchar: %llu", &proc->io_rchar)) continue;
         if (ProcessList_read(this, buffer, "wchar: %llu", &proc->io_wchar)) continue;
         if (ProcessList_read(this, buffer, "syscr: %llu", &proc->io_syscr)) continue;
         if (ProcessList_read(this, buffer, "syscw: %llu", &proc->io_syscw)) continue;
         if (ProcessList_read(this, buffer, "read_bytes: %llu", &proc->io_read_bytes)) {
            proc->io_rate_read_bps = 
               ((double)(proc->io_read_bytes - last_read))/(((double)(now - proc->io_rate_read_time))/1000);
            proc->io_rate_read_time = now;
            continue;
         }
         if (ProcessList_read(this, buffer, "write_bytes: %llu", &proc->io_write_bytes)) {
            proc->io_rate_write_bps = 
               ((double)(proc->io_write_bytes - last_write))/(((double)(now - proc->io_rate_write_time))/1000);
            proc->io_rate_write_time = now;
            continue;
         }
         ProcessList_read(this, buffer, "cancelled_write_bytes: %llu", &proc->io_cancelled_write_bytes);
      }
      fclose(io);
   }
}
518

519
520
#endif

Hisham Muhammad's avatar
Hisham Muhammad committed
521
static bool ProcessList_processEntries(ProcessList* this, const char* dirname, Process* parent, pid_t parentPid, float period) {
Hisham Muhammad's avatar
Hisham Muhammad committed
522
523
524
525
526
   DIR* dir;
   struct dirent* entry;
   Process* prototype = this->prototype;

   dir = opendir(dirname);
527
528
529
   if (!dir) return false;
   int processors = this->processorCount;
   bool showUserlandThreads = !this->hideUserlandThreads;
Hisham Muhammad's avatar
Hisham Muhammad committed
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
   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;
      }

546
      if (pid > 0) {
Hisham Muhammad's avatar
Hisham Muhammad committed
547

Hisham Muhammad's avatar
Hisham Muhammad committed
548
549
550
551
         FILE* status;
         char statusfilename[MAX_NAME+1];
         char command[PROCESS_COMM_LEN + 1];

552
         Process* process = NULL;
Hisham Muhammad's avatar
Hisham Muhammad committed
553
         Process* existingProcess = (Process*) Hashtable_get(this->processTable, pid);
554

555
         if (existingProcess) {
556
            assert(Vector_indexOf(this->processes, existingProcess, Process_pidCompare) != -1);
557
            process = existingProcess;
558
            assert(process->pid == pid);
559
         } else {
560
561
562
563
564
565
566
            if (parent && parent->pid == pid) {
               process = parent;
            } else {
               process = prototype;
               assert(process->comm == NULL);
               process->pid = pid;
            }
Hisham Muhammad's avatar
Hisham Muhammad committed
567
         }
568
         process->tgid = parent ? parent->pid : pid;
569
570
571
572
573

         if (showUserlandThreads && (!parent || pid != parent->pid)) {
            char subdirname[MAX_NAME+1];
            snprintf(subdirname, MAX_NAME, "%s/%s/task", dirname, name);
   
Hisham Muhammad's avatar
Hisham Muhammad committed
574
            if (ProcessList_processEntries(this, subdirname, process, pid, period))
575
576
577
               continue;
         }

578
         #ifdef HAVE_TASKSTATS        
Hisham Muhammad's avatar
Hisham Muhammad committed
579
         ProcessList_readIoFile(process, dirname, name);
580
581
         #endif

Hisham Muhammad's avatar
Hisham Muhammad committed
582
583
         process->updated = true;

584
         if (!existingProcess)
Hisham Muhammad's avatar
Hisham Muhammad committed
585
            if (! ProcessList_readStatusFile(process, dirname, name))
586
587
               goto errorReadingProcess;

588
589
590
591
592
593
594
595
         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, 
596
             &process->m_trs, &process->m_lrs, &process->m_drs, 
597
598
599
600
601
602
603
604
605
             &process->m_dt);

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

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

606
607
608
609
610
         int lasttimes = (process->utime + process->stime);

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

Hisham Muhammad's avatar
Hisham Muhammad committed
614
         int success = ProcessList_readStatFile(process, status, command);
615
         fclose(status);
616
         if(!success) {
617
            goto errorReadingProcess;
618
         }
619

Hisham Muhammad's avatar
Hisham Muhammad committed
620
         if(!existingProcess) {
621
            process->user = UsersTable_getRef(this->usersTable, process->st_uid);
622
623
624
625

            #ifdef HAVE_OPENVZ
            if (access("/proc/vz", R_OK) != 0) {
               process->vpid = process->pid;
626
               process->ctid = 0;
627
628
629
630
631
632
633
634
635
636
637
638
            } else {
               snprintf(statusfilename, MAX_NAME, "%s/%s/stat", dirname, name);
               status = ProcessList_fopen(this, statusfilename, "r");
               if (status == NULL) 
                  goto errorReadingProcess;
               num = ProcessList_fread(this, status, 
                  "%*u %*s %*c %*u %*u %*u %*u %*u %*u %*u "
                  "%*u %*u %*u %*u %*u %*u %*u %*u "
                  "%*u %*u %*u %*u %*u %*u %*u %*u "
                  "%*u %*u %*u %*u %*u %*u %*u %*u "
                  "%*u %*u %*u %*u %*u %*u %*u %*u "
                  "%*u %*u %*u %*u %*u %*u %*u "
639
                  "%*u %*u %u %u",
640
                  &process->vpid, &process->ctid);
641
642
643
               fclose(status);
            }
            #endif
Hisham Muhammad's avatar
Hisham Muhammad committed
644
645
646
647
648
649
650
651
652

            #ifdef HAVE_VSERVER
            snprintf(statusfilename, MAX_NAME, "%s/%s/status", dirname, name);
            status = ProcessList_fopen(this, statusfilename, "r");
            if (status == NULL) 
               goto errorReadingProcess;
            else {
               char buffer[256];
               process->vxid = 0;
Hisham Muhammad's avatar
Hisham Muhammad committed
653
               while (fgets(buffer, 255, status)) {
Hisham Muhammad's avatar
Hisham Muhammad committed
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674

                  if (String_startsWith(buffer, "VxID:")) {
                     int vxid;
                     int ok = ProcessList_read(this, buffer, "VxID:\t%d", &vxid);
                     if (ok >= 1) {
                        process->vxid = vxid;
                     }
                  }
                  #if defined HAVE_ANCIENT_VSERVER
                  else if (String_startsWith(buffer, "s_context:")) {
                     int vxid;
                     int ok = ProcessList_read(this, buffer, "s_context:\t%d", &vxid);
                     if (ok >= 1) {
                        process->vxid = vxid;
                     }
                  }
                  #endif
               }
               fclose(status);
            }
            #endif
Hisham Muhammad's avatar
Hisham Muhammad committed
675
676
677
678
679
         }

         if ( ((!existingProcess) && (!showUserlandThreads || pid == parentPid || !this->showThreadNames))
              || (this->showingThreadNames && !this->showThreadNames) ) {

Hisham Muhammad's avatar
Hisham Muhammad committed
680
            snprintf(statusfilename, MAX_NAME, "%s/%s/cmdline", dirname, name);
Hisham Muhammad's avatar
Hisham Muhammad committed
681
            status = ProcessList_fopen(this, statusfilename, "r");
Hisham Muhammad's avatar
Hisham Muhammad committed
682
683
684
            if (!status) {
               goto errorReadingProcess;
            }
Hisham Muhammad's avatar
Hisham Muhammad committed
685
            
Hisham Muhammad's avatar
Hisham Muhammad committed
686
687
688
689
690
691
692
            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';
            }
Hisham Muhammad's avatar
Hisham Muhammad committed
693
            fclose(status);
Hisham Muhammad's avatar
Hisham Muhammad committed
694
695
            command[PROCESS_COMM_LEN] = '\0';
            process->comm = String_copy(command);
Hisham Muhammad's avatar
Hisham Muhammad committed
696
697
         } else if (pid != parentPid && this->showThreadNames) {
            process->comm = String_copy(command);
Hisham Muhammad's avatar
Hisham Muhammad committed
698
699
         }

700
         int percent_cpu = (process->utime + process->stime - lasttimes) / 
701
            period * 100.0;
702
         process->percent_cpu = MAX(MIN(percent_cpu, processors*100.0), 0.0);
Hisham Muhammad's avatar
Hisham Muhammad committed
703
         if (isnan(process->percent_cpu)) process->percent_cpu = 0.0;
704

Hisham Muhammad's avatar
Hisham Muhammad committed
705
         process->percent_mem = (process->m_resident * PAGE_SIZE_KB) / 
706
            (float)(this->totalMem) * 
Hisham Muhammad's avatar
Hisham Muhammad committed
707
708
709
            100.0;

         this->totalTasks++;
Hisham Muhammad's avatar
Hisham Muhammad committed
710
711
712
         if (process->state == 'R') {
            this->runningTasks++;
         }
Hisham Muhammad's avatar
Hisham Muhammad committed
713

714
         if (!existingProcess) {
715
716
            process = Process_clone(process);
            ProcessList_add(this, process);
717
         }
Hisham Muhammad's avatar
Hisham Muhammad committed
718
719
720
721
722

         continue;

         // Exception handler.
         errorReadingProcess: {
723
724
725
726
            if (process->comm) {
               free(process->comm);
               process->comm = NULL;
            }
727
728
            if (existingProcess)
               ProcessList_remove(this, process);
729
            assert(Hashtable_count(this->processTable) == Vector_count(this->processes));
Hisham Muhammad's avatar
Hisham Muhammad committed
730
731
732
733
         }
      }
   }
   closedir(dir);
734
   return true;
Hisham Muhammad's avatar
Hisham Muhammad committed
735
736
737
}

void ProcessList_scan(ProcessList* this) {
738
   unsigned long long int usertime, nicetime, systemtime, systemalltime, idlealltime, idletime, totaltime;
Hisham Muhammad's avatar
Hisham Muhammad committed
739
   unsigned long long int swapFree = 0;
Hisham Muhammad's avatar
Hisham Muhammad committed
740
741

   FILE* status;
Hisham Muhammad's avatar
Hisham Muhammad committed
742
   status = ProcessList_fopen(this, PROCMEMINFOFILE, "r");
Hisham Muhammad's avatar
Hisham Muhammad committed
743
   assert(status != NULL);
744
   int processors = this->processorCount;
Hisham Muhammad's avatar
Hisham Muhammad committed
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
   {
      char buffer[128];
      while (fgets(buffer, 128, status)) {
   
         switch (buffer[0]) {
         case 'M':
            if (String_startsWith(buffer, "MemTotal:"))
               ProcessList_read(this, buffer, "MemTotal: %llu kB", &this->totalMem);
            else if (String_startsWith(buffer, "MemFree:"))
               ProcessList_read(this, buffer, "MemFree: %llu kB", &this->freeMem);
            else if (String_startsWith(buffer, "MemShared:"))
               ProcessList_read(this, buffer, "MemShared: %llu kB", &this->sharedMem);
            break;
         case 'B':
            if (String_startsWith(buffer, "Buffers:"))
               ProcessList_read(this, buffer, "Buffers: %llu kB", &this->buffersMem);
            break;
         case 'C':
            if (String_startsWith(buffer, "Cached:"))
               ProcessList_read(this, buffer, "Cached: %llu kB", &this->cachedMem);
            break;
         case 'S':
            if (String_startsWith(buffer, "SwapTotal:"))
               ProcessList_read(this, buffer, "SwapTotal: %llu kB", &this->totalSwap);
            if (String_startsWith(buffer, "SwapFree:"))
               ProcessList_read(this, buffer, "SwapFree: %llu kB", &swapFree);
            break;
         }
Hisham Muhammad's avatar
Hisham Muhammad committed
773
774
      }
   }
Hisham Muhammad's avatar
Hisham Muhammad committed
775

Hisham Muhammad's avatar
Hisham Muhammad committed
776
777
778
779
   this->usedMem = this->totalMem - this->freeMem;
   this->usedSwap = this->totalSwap - swapFree;
   fclose(status);

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

Hisham Muhammad's avatar
Hisham Muhammad committed
782
   assert(status != NULL);
783
   for (int i = 0; i <= processors; i++) {
Hisham Muhammad's avatar
Hisham Muhammad committed
784
785
      char buffer[256];
      int cpuid;
786
      unsigned long long int ioWait, irq, softIrq, steal;
Hisham Muhammad's avatar
Hisham Muhammad committed
787
788
789
790
791
792
      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)
793
         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
794
      else {
795
         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
796
797
798
799
         assert(cpuid == i - 1);
      }
      // Fields existing on kernels >= 2.6
      // (and RHEL's patched kernel 2.4...)
800
801
802
      idlealltime = idletime + ioWait;
      systemalltime = systemtime + irq + softIrq + steal;
      totaltime = usertime + nicetime + systemalltime + idlealltime;
Hisham Muhammad's avatar
Hisham Muhammad committed
803
804
805
806
807
      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]);
808
      assert (systemalltime >= this->systemAllTime[i]);
809
      assert (idlealltime >= this->idleAllTime[i]);
810
      assert (ioWait >= this->ioWaitTime[i]);
811
812
813
      assert (irq >= this->irqTime[i]);
      assert (softIrq >= this->softIrqTime[i]);
      assert (steal >= this->stealTime[i]);
Hisham Muhammad's avatar
Hisham Muhammad committed
814
815
816
      this->userPeriod[i] = usertime - this->userTime[i];
      this->nicePeriod[i] = nicetime - this->niceTime[i];
      this->systemPeriod[i] = systemtime - this->systemTime[i];
817
      this->systemAllPeriod[i] = systemalltime - this->systemAllTime[i];
818
      this->idleAllPeriod[i] = idlealltime - this->idleAllTime[i];
Hisham Muhammad's avatar
Hisham Muhammad committed
819
      this->idlePeriod[i] = idletime - this->idleTime[i];
820
821
822
823
      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
824
825
826
827
      this->totalPeriod[i] = totaltime - this->totalTime[i];
      this->userTime[i] = usertime;
      this->niceTime[i] = nicetime;
      this->systemTime[i] = systemtime;
828
      this->systemAllTime[i] = systemalltime;
829
      this->idleAllTime[i] = idlealltime;
Hisham Muhammad's avatar
Hisham Muhammad committed
830
      this->idleTime[i] = idletime;
831
832
833
834
      this->ioWaitTime[i] = ioWait;
      this->irqTime[i] = irq;
      this->softIrqTime[i] = softIrq;
      this->stealTime[i] = steal;
Hisham Muhammad's avatar
Hisham Muhammad committed
835
836
      this->totalTime[i] = totaltime;
   }
837
   float period = (float)this->totalPeriod[0] / processors;
Hisham Muhammad's avatar
Hisham Muhammad committed
838
839
840
   fclose(status);

   // mark all process as "dirty"
841
842
   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
843
844
845
846
847
      p->updated = false;
   }
   
   this->totalTasks = 0;
   this->runningTasks = 0;
848

Hisham Muhammad's avatar
Hisham Muhammad committed
849
850
851
   ProcessList_processEntries(this, PROCDIR, NULL, 0, period);
   
   this->showingThreadNames = this->showThreadNames;
Hisham Muhammad's avatar
Hisham Muhammad committed
852
   
853
854
   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
855
856
857
858
859
860
861
      if (p->updated == false)
         ProcessList_remove(this, p);
      else
         p->updated = false;
   }

}
862
863
864
865
866
867
868
869
870
871
872
873
874
875

ProcessField ProcessList_keyAt(ProcessList* this, int at) {
   int x = 0;
   ProcessField* fields = this->fields;
   ProcessField field;
   for (int i = 0; (field = fields[i]); i++) {
      int len = strlen(Process_fieldTitles[field]);
      if (at >= x && at <= x + len) {
         return field;
      }
      x += len;
   }
   return COMM;
}