README: Updated the informatioin about plugins and prerequisites.
[collectd.git] / src / processes.c
1 /**
2  * collectd - src/processes.c
3  * Copyright (C) 2005  Lyonel Vincent
4  * Copyright (C) 2006  Florian Forster (Mach code)
5  *
6  * This program is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License as published by the
8  * Free Software Foundation; either version 2 of the License, or (at your
9  * option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License along
17  * with this program; if not, write to the Free Software Foundation, Inc.,
18  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  *
20  * Authors:
21  *   Lyonel Vincent <lyonel at ezix.org>
22  *   Florian octo Forster <octo at verplant.org>
23  **/
24
25 #include "collectd.h"
26 #include "common.h"
27 #include "plugin.h"
28 #include "utils_debug.h"
29 #include "configfile.h"
30
31 /* Include header files for the mach system, if they exist.. */
32 #if HAVE_THREAD_INFO
33 #  if HAVE_MACH_MACH_INIT_H
34 #    include <mach/mach_init.h>
35 #  endif
36 #  if HAVE_MACH_HOST_PRIV_H
37 #    include <mach/host_priv.h>
38 #  endif
39 #  if HAVE_MACH_MACH_ERROR_H
40 #    include <mach/mach_error.h>
41 #  endif
42 #  if HAVE_MACH_MACH_HOST_H
43 #    include <mach/mach_host.h>
44 #  endif
45 #  if HAVE_MACH_MACH_PORT_H
46 #    include <mach/mach_port.h>
47 #  endif
48 #  if HAVE_MACH_MACH_TYPES_H
49 #    include <mach/mach_types.h>
50 #  endif
51 #  if HAVE_MACH_MESSAGE_H
52 #    include <mach/message.h>
53 #  endif
54 #  if HAVE_MACH_PROCESSOR_SET_H
55 #    include <mach/processor_set.h>
56 #  endif
57 #  if HAVE_MACH_TASK_H
58 #    include <mach/task.h>
59 #  endif
60 #  if HAVE_MACH_THREAD_ACT_H
61 #    include <mach/thread_act.h>
62 #  endif
63 #  if HAVE_MACH_VM_REGION_H
64 #    include <mach/vm_region.h>
65 #  endif
66 #  if HAVE_MACH_VM_MAP_H
67 #    include <mach/vm_map.h>
68 #  endif
69 #  if HAVE_MACH_VM_PROT_H
70 #    include <mach/vm_prot.h>
71 #  endif
72 #  if HAVE_SYS_SYSCTL_H
73 #    include <sys/sysctl.h>
74 #  endif
75 /* #endif HAVE_THREAD_INFO */
76
77 #elif KERNEL_LINUX
78 #  if HAVE_LINUX_CONFIG_H
79 #    include <linux/config.h>
80 #  endif
81 #  ifndef CONFIG_HZ
82 #    define CONFIG_HZ 100
83 #  endif
84 #endif /* KERNEL_LINUX */
85
86 #define MODULE_NAME "processes"
87
88 #if HAVE_THREAD_INFO || KERNEL_LINUX
89 # define PROCESSES_HAVE_READ 1
90 #else
91 # define PROCESSES_HAVE_READ 0
92 #endif
93
94 #define BUFSIZE 256
95
96 static char *processes_file = "processes.rrd";
97 static char *processes_ds_def[] =
98 {
99         "DS:running:GAUGE:"COLLECTD_HEARTBEAT":0:65535",
100         "DS:sleeping:GAUGE:"COLLECTD_HEARTBEAT":0:65535",
101         "DS:zombies:GAUGE:"COLLECTD_HEARTBEAT":0:65535",
102         "DS:stopped:GAUGE:"COLLECTD_HEARTBEAT":0:65535",
103         "DS:paging:GAUGE:"COLLECTD_HEARTBEAT":0:65535",
104         "DS:blocked:GAUGE:"COLLECTD_HEARTBEAT":0:65535",
105         NULL
106 };
107 static int processes_ds_num = 6;
108
109 static char *ps_rss_file = "processes/ps_rss-%s.rrd";
110 static char *ps_rss_ds_def[] =
111 {
112         /* max = 2^63 - 1 */
113         "DS:byte:GAUGE:"COLLECTD_HEARTBEAT":0:9223372036854775807",
114         NULL
115 };
116 static int ps_rss_ds_num = 1;
117
118 static char *ps_cputime_file = "processes/ps_cputime-%s.rrd";
119 static char *ps_cputime_ds_def[] =
120 {
121         /* 1 second in user-mode per second ought to be enough.. */
122         "DS:user:COUNTER:"COLLECTD_HEARTBEAT":0:1000000",
123         "DS:syst:COUNTER:"COLLECTD_HEARTBEAT":0:1000000",
124         NULL
125 };
126 static int ps_cputime_ds_num = 2;
127
128 static char *ps_count_file = "processes/ps_count-%s.rrd";
129 static char *ps_count_ds_def[] =
130 {
131         "DS:processes:GAUGE:"COLLECTD_HEARTBEAT":0:65535",
132         "DS:threads:GAUGE:"COLLECTD_HEARTBEAT":0:65535",
133         NULL
134 };
135 static int ps_count_ds_num = 2;
136
137 static char *ps_pagefaults_file = "processes/ps_pagefaults-%s.rrd";
138 static char *ps_pagefaults_ds_def[] =
139 {
140         /* max = 2^63 - 1 */
141         "DS:minflt:COUNTER:"COLLECTD_HEARTBEAT":0:9223372036854775807",
142         "DS:majflt:COUNTER:"COLLECTD_HEARTBEAT":0:9223372036854775807",
143         NULL
144 };
145 static int ps_pagefaults_ds_num = 2;
146
147 #if HAVE_THREAD_INFO | KERNEL_LINUX
148 static char *config_keys[] =
149 {
150         "Process",
151         NULL
152 };
153 static int config_keys_num = 1;
154 #endif
155
156 typedef struct procstat_entry_s
157 {
158         unsigned long id;
159         unsigned long age;
160
161         unsigned long num_proc;
162         unsigned long num_lwp;
163         unsigned long vmem_rss;
164
165         unsigned long vmem_minflt;
166         unsigned long vmem_majflt;
167         unsigned long vmem_minflt_counter;
168         unsigned long vmem_majflt_counter;
169
170         unsigned long cpu_user;
171         unsigned long cpu_system;
172         unsigned long cpu_user_counter;
173         unsigned long cpu_system_counter;
174
175         struct procstat_entry_s *next;
176 } procstat_entry_t;
177
178 #define PROCSTAT_NAME_LEN 256
179 typedef struct procstat
180 {
181         char          name[PROCSTAT_NAME_LEN];
182
183         unsigned long num_proc;
184         unsigned long num_lwp;
185         unsigned long vmem_rss;
186
187         unsigned long vmem_minflt_counter;
188         unsigned long vmem_majflt_counter;
189
190         unsigned long cpu_user_counter;
191         unsigned long cpu_system_counter;
192
193         struct procstat   *next;
194         struct procstat_entry_s *instances;
195 } procstat_t;
196
197 #if HAVE_THREAD_INFO | KERNEL_LINUX
198 static procstat_t *list_head_g = NULL;
199 #endif
200
201 #if HAVE_THREAD_INFO
202 static mach_port_t port_host_self;
203 static mach_port_t port_task_self;
204
205 static processor_set_name_array_t pset_list;
206 static mach_msg_type_number_t     pset_list_len;
207 /* #endif HAVE_THREAD_INFO */
208
209 #elif KERNEL_LINUX
210 static long pagesize_g;
211 #endif /* KERNEL_LINUX */
212
213 #if HAVE_THREAD_INFO | KERNEL_LINUX
214 static void ps_list_register (const char *name)
215 {
216         procstat_t *new;
217         procstat_t *ptr;
218
219         if ((new = (procstat_t *) malloc (sizeof (procstat_t))) == NULL)
220                 return;
221         memset (new, 0, sizeof (procstat_t));
222         strncpy (new->name, name, PROCSTAT_NAME_LEN);
223
224         for (ptr = list_head_g; ptr != NULL; ptr = ptr->next)
225         {
226                 if (strcmp (ptr->name, name) == 0)
227                         return;
228                 if (ptr->next == NULL)
229                         break;
230         }
231
232         if (ptr == NULL)
233                 list_head_g = new;
234         else
235                 ptr->next = new;
236 }
237
238 static procstat_t *ps_list_search (const char *name)
239 {
240         procstat_t *ptr;
241
242         for (ptr = list_head_g; ptr != NULL; ptr = ptr->next)
243                 if (strcmp (ptr->name, name) == 0)
244                         break;
245
246         return (ptr);
247 }
248
249 static void ps_list_add (const char *name, procstat_entry_t *entry)
250 {
251         procstat_t *ps;
252         procstat_entry_t *pse;
253
254         if (entry->id == 0)
255                 return;
256
257         if ((ps = ps_list_search (name)) == NULL)
258                 return;
259
260         for (pse = ps->instances; pse != NULL; pse = pse->next)
261                 if ((pse->id == entry->id) || (pse->next == NULL))
262                         break;
263
264         if ((pse == NULL) || (pse->id != entry->id))
265         {
266                 procstat_entry_t *new;
267
268                 new = (procstat_entry_t *) malloc (sizeof (procstat_entry_t));
269                 if (new == NULL)
270                         return;
271                 memset (new, 0, sizeof (procstat_entry_t));
272                 new->id = entry->id;
273
274                 if (pse == NULL)
275                         ps->instances = new;
276                 else
277                         pse->next = new;
278
279                 pse = new;
280         }
281
282         pse->age = 0;
283         pse->num_proc = entry->num_proc;
284         pse->num_lwp  = entry->num_lwp;
285         pse->vmem_rss = entry->vmem_rss;
286
287         ps->num_proc += pse->num_proc;
288         ps->num_lwp  += pse->num_lwp;
289         ps->vmem_rss += pse->vmem_rss;
290
291         if ((entry->vmem_minflt_counter == 0)
292                         && (entry->vmem_majflt_counter == 0))
293         {
294                 pse->vmem_minflt_counter += entry->vmem_minflt;
295                 pse->vmem_minflt = entry->vmem_minflt;
296
297                 pse->vmem_majflt_counter += entry->vmem_majflt;
298                 pse->vmem_majflt = entry->vmem_majflt;
299         }
300         else
301         {
302                 if (entry->vmem_minflt_counter < pse->vmem_minflt_counter)
303                 {
304                         pse->vmem_minflt = entry->vmem_minflt_counter
305                                 + (ULONG_MAX - pse->vmem_minflt_counter);
306                 }
307                 else
308                 {
309                         pse->vmem_minflt = entry->vmem_minflt_counter - pse->vmem_minflt_counter;
310                 }
311                 pse->vmem_minflt_counter = entry->vmem_minflt_counter;
312
313                 if (entry->vmem_majflt_counter < pse->vmem_majflt_counter)
314                 {
315                         pse->vmem_majflt = entry->vmem_majflt_counter
316                                 + (ULONG_MAX - pse->vmem_majflt_counter);
317                 }
318                 else
319                 {
320                         pse->vmem_majflt = entry->vmem_majflt_counter - pse->vmem_majflt_counter;
321                 }
322                 pse->vmem_majflt_counter = entry->vmem_majflt_counter;
323         }
324
325         ps->vmem_minflt_counter += pse->vmem_minflt;
326         ps->vmem_majflt_counter += pse->vmem_majflt;
327
328         if ((entry->cpu_user_counter == 0)
329                         && (entry->cpu_system_counter == 0))
330         {
331                 pse->cpu_user_counter += entry->cpu_user;
332                 pse->cpu_user = entry->cpu_user;
333
334                 pse->cpu_system_counter += entry->cpu_system;
335                 pse->cpu_system = entry->cpu_system;
336         }
337         else
338         {
339                 if (entry->cpu_user_counter < pse->cpu_user_counter)
340                 {
341                         pse->cpu_user = entry->cpu_user_counter
342                                 + (ULONG_MAX - pse->cpu_user_counter);
343                 }
344                 else
345                 {
346                         pse->cpu_user = entry->cpu_user_counter - pse->cpu_user_counter;
347                 }
348                 pse->cpu_user_counter = entry->cpu_user_counter;
349
350                 if (entry->cpu_system_counter < pse->cpu_system_counter)
351                 {
352                         pse->cpu_system = entry->cpu_system_counter
353                                 + (ULONG_MAX - pse->cpu_system_counter);
354                 }
355                 else
356                 {
357                         pse->cpu_system = entry->cpu_system_counter - pse->cpu_system_counter;
358                 }
359                 pse->cpu_system_counter = entry->cpu_system_counter;
360         }
361
362         ps->cpu_user_counter   += pse->cpu_user;
363         ps->cpu_system_counter += pse->cpu_system;
364 }
365
366 static void ps_list_reset (void)
367 {
368         procstat_t *ps;
369         procstat_entry_t *pse;
370         procstat_entry_t *pse_prev;
371
372         for (ps = list_head_g; ps != NULL; ps = ps->next)
373         {
374                 ps->num_proc    = 0;
375                 ps->num_lwp     = 0;
376                 ps->vmem_rss    = 0;
377
378                 pse_prev = NULL;
379                 pse = ps->instances;
380                 while (pse != NULL)
381                 {
382                         if (pse->age > 10)
383                         {
384                                 DBG ("Removing this procstat entry cause it's too old: "
385                                                 "id = %lu; name = %s;",
386                                                 pse->id, ps->name);
387
388                                 if (pse_prev == NULL)
389                                 {
390                                         ps->instances = pse->next;
391                                         free (pse);
392                                         pse = ps->instances;
393                                 }
394                                 else
395                                 {
396                                         pse_prev->next = pse->next;
397                                         free (pse);
398                                         pse = pse_prev->next;
399                                 }
400                         }
401                         else
402                         {
403                                 pse->age++;
404                                 pse_prev = pse;
405                                 pse = pse->next;
406                         }
407                 } /* while (pse != NULL) */
408         } /* for (ps = list_head_g; ps != NULL; ps = ps->next) */
409 }
410
411 static int ps_config (char *key, char *value)
412 {
413         if (strcasecmp (key, "Process") == 0)
414         {
415                 ps_list_register (value);
416         }
417         else
418         {
419                 return (-1);
420         }
421
422         return (0);
423 }
424 #endif /* HAVE_THREAD_INFO | KERNEL_LINUX */
425
426 static void ps_init (void)
427 {
428 #if HAVE_THREAD_INFO
429         kern_return_t status;
430
431         port_host_self = mach_host_self ();
432         port_task_self = mach_task_self ();
433
434         if (pset_list != NULL)
435         {
436                 vm_deallocate (port_task_self,
437                                 (vm_address_t) pset_list,
438                                 pset_list_len * sizeof (processor_set_t));
439                 pset_list = NULL;
440                 pset_list_len = 0;
441         }
442
443         if ((status = host_processor_sets (port_host_self,
444                                         &pset_list,
445                                         &pset_list_len)) != KERN_SUCCESS)
446         {
447                 syslog (LOG_ERR, "host_processor_sets failed: %s\n",
448                                 mach_error_string (status));
449                 pset_list = NULL;
450                 pset_list_len = 0;
451                 return;
452         }
453 /* #endif HAVE_THREAD_INFO */
454
455 #elif KERNEL_LINUX
456         pagesize_g = sysconf(_SC_PAGESIZE);
457         DBG ("pagesize_g = %li; CONFIG_HZ = %i;",
458                         pagesize_g, CONFIG_HZ);
459 #endif /* KERNEL_LINUX */
460
461         return;
462 }
463
464 static void ps_write (char *host, char *inst, char *val)
465 {
466         rrd_update_file (host, processes_file, val,
467                         processes_ds_def, processes_ds_num);
468 }
469
470 static void ps_rss_write (char *host, char *inst, char *val)
471 {
472         char filename[256];
473         int status;
474
475         status = snprintf (filename, 256, ps_rss_file, inst);
476         if ((status < 1) || (status >= 256))
477                 return;
478
479         rrd_update_file (host, filename, val, ps_rss_ds_def, ps_rss_ds_num);
480 }
481
482 static void ps_cputime_write (char *host, char *inst, char *val)
483 {
484         char filename[256];
485         int status;
486
487         status = snprintf (filename, 256, ps_cputime_file, inst);
488         if ((status < 1) || (status >= 256))
489                 return;
490
491         DBG ("host = %s; filename = %s; val = %s;",
492                         host, filename, val);
493         rrd_update_file (host, filename, val,
494                         ps_cputime_ds_def, ps_cputime_ds_num);
495 }
496
497 static void ps_count_write (char *host, char *inst, char *val)
498 {
499         char filename[256];
500         int status;
501
502         status = snprintf (filename, 256, ps_count_file, inst);
503         if ((status < 1) || (status >= 256))
504                 return;
505
506         DBG ("host = %s; filename = %s; val = %s;",
507                         host, filename, val);
508         rrd_update_file (host, filename, val,
509                         ps_count_ds_def, ps_count_ds_num);
510 }
511
512 static void ps_pagefaults_write (char *host, char *inst, char *val)
513 {
514         char filename[256];
515         int status;
516
517         status = snprintf (filename, 256, ps_pagefaults_file, inst);
518         if ((status < 1) || (status >= 256))
519                 return;
520
521         DBG ("host = %s; filename = %s; val = %s;",
522                         host, filename, val);
523         rrd_update_file (host, filename, val,
524                         ps_pagefaults_ds_def, ps_pagefaults_ds_num);
525 }
526
527 #if PROCESSES_HAVE_READ
528 static void ps_submit (int running,
529                 int sleeping,
530                 int zombies,
531                 int stopped,
532                 int paging,
533                 int blocked)
534 {
535         char buf[BUFSIZE];
536
537         if (snprintf (buf, BUFSIZE, "%u:%i:%i:%i:%i:%i:%i",
538                                 (unsigned int) curtime,
539                                 running, sleeping, zombies, stopped, paging,
540                                 blocked) >= BUFSIZE)
541                 return;
542
543         DBG ("running = %i; sleeping = %i; zombies = %i; stopped = %i; paging = %i; blocked = %i;",
544                         running, sleeping, zombies, stopped, paging, blocked);
545
546         plugin_submit (MODULE_NAME, "-", buf);
547 }
548
549 static void ps_submit_proc_list (procstat_t *ps)
550 {
551         char buffer[64];
552
553         if (ps == NULL)
554                 return;
555
556         snprintf (buffer, 64, "%u:%lu",
557                         (unsigned int) curtime,
558                         ps->vmem_rss);
559         buffer[63] = '\0';
560         plugin_submit ("ps_rss", ps->name, buffer);
561
562         snprintf (buffer, 64, "%u:%u:%u",
563                         (unsigned int) curtime,
564                         /* Make the counter overflow */
565                         (unsigned int) (ps->cpu_user_counter   & 0xFFFFFFFF),
566                         (unsigned int) (ps->cpu_system_counter & 0xFFFFFFFF));
567         buffer[63] = '\0';
568         plugin_submit ("ps_cputime", ps->name, buffer);
569
570         snprintf (buffer, 64, "%u:%lu:%lu",
571                         (unsigned int) curtime,
572                         ps->num_proc, ps->num_lwp);
573         buffer[63] = '\0';
574         plugin_submit ("ps_count", ps->name, buffer);
575
576         snprintf (buffer, 64, "%u:%lu:%lu",
577                         (unsigned int) curtime,
578                         ps->vmem_minflt_counter, ps->vmem_majflt_counter);
579         buffer[63] = '\0';
580         plugin_submit ("ps_pagefaults", ps->name, buffer);
581
582         DBG ("name = %s; num_proc = %lu; num_lwp = %lu; vmem_rss = %lu; "
583                         "vmem_minflt_counter = %lu; vmem_majflt_counter = %lu; "
584                         "cpu_user_counter = %lu; cpu_system_counter = %lu;",
585                         ps->name, ps->num_proc, ps->num_lwp, ps->vmem_rss,
586                         ps->vmem_minflt_counter, ps->vmem_majflt_counter, ps->cpu_user_counter,
587                         ps->cpu_system_counter);
588
589 }
590
591 #if KERNEL_LINUX
592 static int *ps_read_tasks (int pid)
593 {
594         int *list = NULL;
595         int  list_size = 1; /* size of allocated space, in elements */
596         int  list_len = 0;  /* number of currently used elements */
597
598         char           dirname[64];
599         DIR           *dh;
600         struct dirent *ent;
601
602         snprintf (dirname, 64, "/proc/%i/task", pid);
603         dirname[63] = '\0';
604
605         if ((dh = opendir (dirname)) == NULL)
606         {
607                 DBG ("Failed to open directory `%s'", dirname);
608                 return (NULL);
609         }
610
611         while ((ent = readdir (dh)) != NULL)
612         {
613                 if (!isdigit (ent->d_name[0]))
614                         continue;
615
616                 if ((list_len + 1) >= list_size)
617                 {
618                         int *new_ptr;
619                         int  new_size = 2 * list_size;
620                         /* Comes in sizes: 2, 4, 8, 16, ... */
621
622                         new_ptr = (int *) realloc (list, (size_t) (sizeof (int) * new_size));
623                         if (new_ptr == NULL)
624                         {
625                                 if (list != NULL)
626                                         free (list);
627                                 syslog (LOG_ERR, "processes plugin: "
628                                                 "Failed to allocate more memory.");
629                                 return (NULL);
630                         }
631
632                         list = new_ptr;
633                         list_size = new_size;
634
635                         memset (list + list_len, 0, sizeof (int) * (list_size - list_len));
636                 }
637
638                 list[list_len] = atoi (ent->d_name);
639                 if (list[list_len] != 0)
640                         list_len++;
641         }
642
643         closedir (dh);
644
645         assert (list_len < list_size);
646         assert (list[list_len] == 0);
647
648         return (list);
649 }
650
651 int ps_read_process (int pid, procstat_t *ps, char *state)
652 {
653         char  filename[64];
654         char  buffer[1024];
655         FILE *fh;
656
657         char *fields[64];
658         char  fields_len;
659
660         int  *tasks;
661         int   i;
662
663         int   ppid;
664         int   name_len;
665
666         long long unsigned cpu_user_counter;
667         long long unsigned cpu_system_counter;
668         long long unsigned vmem_rss;
669
670         memset (ps, 0, sizeof (procstat_t));
671
672         snprintf (filename, 64, "/proc/%i/stat", pid);
673         filename[63] = '\0';
674
675         if ((fh = fopen (filename, "r")) == NULL)
676                 return (-1);
677
678         if (fgets (buffer, 1024, fh) == NULL)
679         {
680                 fclose (fh);
681                 return (-1);
682         }
683
684         fclose (fh);
685
686         fields_len = strsplit (buffer, fields, 64);
687         if (fields_len < 24)
688         {
689                 DBG ("`%s' has only %i fields..",
690                                 filename, fields_len);
691                 return (-1);
692         }
693         else if (fields_len != 41)
694         {
695                 DBG ("WARNING: (fields_len = %i) != 41", fields_len);
696         }
697
698         /* copy the name, strip brackets in the process */
699         name_len = strlen (fields[1]) - 2;
700         if ((fields[1][0] != '(') || (fields[1][name_len + 1] != ')'))
701         {
702                 DBG ("No brackets found in process name: `%s'", fields[1]);
703                 return (-1);
704         }
705         fields[1] = fields[1] + 1;
706         fields[1][name_len] = '\0';
707         strncpy (ps->name, fields[1], PROCSTAT_NAME_LEN);
708
709         ppid = atoi (fields[3]);
710
711         if ((tasks = ps_read_tasks (pid)) == NULL)
712         {
713                 /* This happends for zombied, e.g. */
714                 DBG ("ps_read_tasks (%i) failed.", pid);
715                 *state = 'Z';
716                 ps->num_lwp  = 0;
717                 ps->num_proc = 0;
718         }
719         else
720         {
721                 *state = '\0';
722                 ps->num_lwp  = 0;
723                 ps->num_proc = 1;
724                 for (i = 0; tasks[i] != 0; i++)
725                         ps->num_lwp++;
726
727                 free (tasks);
728                 tasks = NULL;
729         }
730
731         /* Leave the rest at zero if this is only an LWP */
732         if (ps->num_proc == 0)
733         {
734                 DBG ("This is only an LWP: pid = %i; name = %s;",
735                                 pid, ps->name);
736                 return (0);
737         }
738
739         cpu_user_counter   = atoll (fields[13]);
740         cpu_system_counter = atoll (fields[14]);
741         vmem_rss = atoll (fields[23]);
742         ps->vmem_minflt_counter = atol (fields[9]);
743         ps->vmem_majflt_counter = atol (fields[11]);
744         
745         /* Convert jiffies to useconds */
746         cpu_user_counter   = cpu_user_counter   * 1000000 / CONFIG_HZ;
747         cpu_system_counter = cpu_system_counter * 1000000 / CONFIG_HZ;
748         vmem_rss = vmem_rss * pagesize_g;
749
750         ps->cpu_user_counter = (unsigned long) cpu_user_counter;
751         ps->cpu_system_counter = (unsigned long) cpu_system_counter;
752         ps->vmem_rss = (unsigned long) vmem_rss;
753
754         *state = fields[2][0];
755
756         /* success */
757         return (0);
758 } /* int ps_read_process (...) */
759 #endif /* KERNEL_LINUX */
760
761 #if HAVE_THREAD_INFO
762 static int mach_get_task_name (task_t t, int *pid, char *name, size_t name_max_len)
763 {
764         int mib[4];
765
766         struct kinfo_proc kp;
767         size_t            kp_size;
768
769         mib[0] = CTL_KERN;
770         mib[1] = KERN_PROC;
771         mib[2] = KERN_PROC_PID;
772
773         if (pid_for_task (t, pid) != KERN_SUCCESS)
774                 return (-1);
775         mib[3] = *pid;
776
777         kp_size = sizeof (kp);
778         if (sysctl (mib, 4, &kp, &kp_size, NULL, 0) != 0)
779                 return (-1);
780
781         if (name_max_len > (MAXCOMLEN + 1))
782                 name_max_len = MAXCOMLEN + 1;
783
784         strncpy (name, kp.kp_proc.p_comm, name_max_len - 1);
785         name[name_max_len - 1] = '\0';
786
787         DBG ("pid = %i; name = %s;", *pid, name);
788
789         /* We don't do the special handling for `p_comm == "LaunchCFMApp"' as
790          * `top' does it, because it is a lot of work and only used when
791          * debugging. -octo */
792
793         return (0);
794 }
795 #endif /* HAVE_THREAD_INFO */
796
797 static void ps_read (void)
798 {
799 #if HAVE_THREAD_INFO
800         kern_return_t            status;
801
802         int                      pset;
803         processor_set_t          port_pset_priv;
804
805         int                      task;
806         task_array_t             task_list;
807         mach_msg_type_number_t   task_list_len;
808
809         int                      task_pid;
810         char                     task_name[MAXCOMLEN + 1];
811
812         int                      thread;
813         thread_act_array_t       thread_list;
814         mach_msg_type_number_t   thread_list_len;
815         thread_basic_info_data_t thread_data;
816         mach_msg_type_number_t   thread_data_len;
817
818         int running  = 0;
819         int sleeping = 0;
820         int zombies  = 0;
821         int stopped  = 0;
822         int blocked  = 0;
823
824         procstat_t *ps;
825         procstat_entry_t pse;
826
827         ps_list_reset ();
828
829         /*
830          * The Mach-concept is a little different from the traditional UNIX
831          * concept: All the work is done in threads. Threads are contained in
832          * `tasks'. Therefore, `task status' doesn't make much sense, since
833          * it's actually a `thread status'.
834          * Tasks are assigned to sets of processors, so that's where you go to
835          * get a list.
836          */
837         for (pset = 0; pset < pset_list_len; pset++)
838         {
839                 if ((status = host_processor_set_priv (port_host_self,
840                                                 pset_list[pset],
841                                                 &port_pset_priv)) != KERN_SUCCESS)
842                 {
843                         syslog (LOG_ERR, "host_processor_set_priv failed: %s\n",
844                                         mach_error_string (status));
845                         continue;
846                 }
847
848                 if ((status = processor_set_tasks (port_pset_priv,
849                                                 &task_list,
850                                                 &task_list_len)) != KERN_SUCCESS)
851                 {
852                         syslog (LOG_ERR, "processor_set_tasks failed: %s\n",
853                                         mach_error_string (status));
854                         mach_port_deallocate (port_task_self, port_pset_priv);
855                         continue;
856                 }
857
858                 for (task = 0; task < task_list_len; task++)
859                 {
860                         ps = NULL;
861                         if (mach_get_task_name (task_list[task],
862                                                 &task_pid,
863                                                 task_name, PROCSTAT_NAME_LEN) == 0)
864                                 ps = ps_list_search (task_name);
865
866                         /* Collect more detailed statistics for this process */
867                         if (ps != NULL)
868                         {
869                                 task_basic_info_data_t        task_basic_info;
870                                 mach_msg_type_number_t        task_basic_info_len;
871                                 task_events_info_data_t       task_events_info;
872                                 mach_msg_type_number_t        task_events_info_len;
873                                 task_absolutetime_info_data_t task_absolutetime_info;
874                                 mach_msg_type_number_t        task_absolutetime_info_len;
875
876                                 memset (&pse, '\0', sizeof (pse));
877                                 pse.id = task_pid;
878
879                                 task_basic_info_len = TASK_BASIC_INFO_COUNT;
880                                 status = task_info (task_list[task],
881                                                 TASK_BASIC_INFO,
882                                                 (task_info_t) &task_basic_info,
883                                                 &task_basic_info_len);
884                                 if (status != KERN_SUCCESS)
885                                 {
886                                         syslog (LOG_ERR, "task_info failed: %s",
887                                                         mach_error_string (status));
888                                         continue; /* with next thread_list */
889                                 }
890
891                                 task_events_info_len = TASK_EVENTS_INFO_COUNT;
892                                 status = task_info (task_list[task],
893                                                 TASK_EVENTS_INFO,
894                                                 (task_info_t) &task_events_info,
895                                                 &task_events_info_len);
896                                 if (status != KERN_SUCCESS)
897                                 {
898                                         syslog (LOG_ERR, "task_info failed: %s",
899                                                         mach_error_string (status));
900                                         continue; /* with next thread_list */
901                                 }
902
903                                 task_absolutetime_info_len = TASK_ABSOLUTETIME_INFO_COUNT;
904                                 status = task_info (task_list[task],
905                                                 TASK_ABSOLUTETIME_INFO,
906                                                 (task_info_t) &task_absolutetime_info,
907                                                 &task_absolutetime_info_len);
908                                 if (status != KERN_SUCCESS)
909                                 {
910                                         syslog (LOG_ERR, "task_info failed: %s",
911                                                         mach_error_string (status));
912                                         continue; /* with next thread_list */
913                                 }
914
915                                 pse.num_proc++;
916                                 pse.vmem_rss = task_basic_info.resident_size;
917
918                                 pse.vmem_minflt_counter = task_events_info.cow_faults;
919                                 pse.vmem_majflt_counter = task_events_info.faults;
920
921                                 pse.cpu_user_counter = task_absolutetime_info.total_user;
922                                 pse.cpu_system_counter = task_absolutetime_info.total_system;
923                         }
924
925                         status = task_threads (task_list[task], &thread_list,
926                                         &thread_list_len);
927                         if (status != KERN_SUCCESS)
928                         {
929                                 /* Apple's `top' treats this case a zombie. It
930                                  * makes sense to some extend: A `zombie'
931                                  * thread is nonsense, since the task/process
932                                  * is dead. */
933                                 zombies++;
934                                 DBG ("task_threads failed: %s",
935                                                 mach_error_string (status));
936                                 if (task_list[task] != port_task_self)
937                                         mach_port_deallocate (port_task_self,
938                                                         task_list[task]);
939                                 continue; /* with next task_list */
940                         }
941
942                         for (thread = 0; thread < thread_list_len; thread++)
943                         {
944                                 thread_data_len = THREAD_BASIC_INFO_COUNT;
945                                 status = thread_info (thread_list[thread],
946                                                 THREAD_BASIC_INFO,
947                                                 (thread_info_t) &thread_data,
948                                                 &thread_data_len);
949                                 if (status != KERN_SUCCESS)
950                                 {
951                                         syslog (LOG_ERR, "thread_info failed: %s",
952                                                         mach_error_string (status));
953                                         if (task_list[task] != port_task_self)
954                                                 mach_port_deallocate (port_task_self,
955                                                                 thread_list[thread]);
956                                         continue; /* with next thread_list */
957                                 }
958
959                                 if (ps != NULL)
960                                         pse.num_lwp++;
961
962                                 switch (thread_data.run_state)
963                                 {
964                                         case TH_STATE_RUNNING:
965                                                 running++;
966                                                 break;
967                                         case TH_STATE_STOPPED:
968                                         /* What exactly is `halted'? */
969                                         case TH_STATE_HALTED:
970                                                 stopped++;
971                                                 break;
972                                         case TH_STATE_WAITING:
973                                                 sleeping++;
974                                                 break;
975                                         case TH_STATE_UNINTERRUPTIBLE:
976                                                 blocked++;
977                                                 break;
978                                         /* There is no `zombie' case here,
979                                          * since there are no zombie-threads.
980                                          * There's only zombie tasks, which are
981                                          * handled above. */
982                                         default:
983                                                 syslog (LOG_WARNING,
984                                                                 "Unknown thread status: %s",
985                                                                 thread_data.run_state);
986                                                 break;
987                                 } /* switch (thread_data.run_state) */
988
989                                 if (task_list[task] != port_task_self)
990                                 {
991                                         status = mach_port_deallocate (port_task_self,
992                                                         thread_list[thread]);
993                                         if (status != KERN_SUCCESS)
994                                                 syslog (LOG_ERR, "mach_port_deallocate failed: %s",
995                                                                 mach_error_string (status));
996                                 }
997                         } /* for (thread_list) */
998
999                         if ((status = vm_deallocate (port_task_self,
1000                                                         (vm_address_t) thread_list,
1001                                                         thread_list_len * sizeof (thread_act_t)))
1002                                         != KERN_SUCCESS)
1003                         {
1004                                 syslog (LOG_ERR, "vm_deallocate failed: %s",
1005                                                 mach_error_string (status));
1006                         }
1007                         thread_list = NULL;
1008                         thread_list_len = 0;
1009
1010                         /* Only deallocate the task port, if it isn't our own.
1011                          * Don't know what would happen in that case, but this
1012                          * is what Apple's top does.. ;) */
1013                         if (task_list[task] != port_task_self)
1014                         {
1015                                 status = mach_port_deallocate (port_task_self,
1016                                                 task_list[task]);
1017                                 if (status != KERN_SUCCESS)
1018                                         syslog (LOG_ERR, "mach_port_deallocate failed: %s",
1019                                                         mach_error_string (status));
1020                         }
1021
1022                         if (ps != NULL)
1023                                 ps_list_add (task_name, &pse);
1024                 } /* for (task_list) */
1025
1026                 if ((status = vm_deallocate (port_task_self,
1027                                 (vm_address_t) task_list,
1028                                 task_list_len * sizeof (task_t))) != KERN_SUCCESS)
1029                 {
1030                         syslog (LOG_ERR, "vm_deallocate failed: %s",
1031                                         mach_error_string (status));
1032                 }
1033                 task_list = NULL;
1034                 task_list_len = 0;
1035
1036                 if ((status = mach_port_deallocate (port_task_self, port_pset_priv))
1037                                 != KERN_SUCCESS)
1038                 {
1039                         syslog (LOG_ERR, "mach_port_deallocate failed: %s",
1040                                         mach_error_string (status));
1041                 }
1042         } /* for (pset_list) */
1043
1044         ps_submit (running, sleeping, zombies, stopped, -1, blocked);
1045
1046         for (ps = list_head_g; ps != NULL; ps = ps->next)
1047                 ps_submit_proc_list (ps);
1048 /* #endif HAVE_THREAD_INFO */
1049
1050 #elif KERNEL_LINUX
1051         int running  = 0;
1052         int sleeping = 0;
1053         int zombies  = 0;
1054         int stopped  = 0;
1055         int paging   = 0;
1056         int blocked  = 0;
1057
1058         struct dirent *ent;
1059         DIR           *proc;
1060         int            pid;
1061
1062         int        status;
1063         procstat_t ps;
1064         procstat_entry_t pse;
1065         char       state;
1066
1067         procstat_t *ps_ptr;
1068
1069         running = sleeping = zombies = stopped = paging = blocked = 0;
1070         ps_list_reset ();
1071
1072         if ((proc = opendir ("/proc")) == NULL)
1073         {
1074                 syslog (LOG_ERR, "Cannot open `/proc': %s", strerror (errno));
1075                 return;
1076         }
1077
1078         while ((ent = readdir (proc)) != NULL)
1079         {
1080                 if (!isdigit (ent->d_name[0]))
1081                         continue;
1082
1083                 if ((pid = atoi (ent->d_name)) < 1)
1084                         continue;
1085
1086                 status = ps_read_process (pid, &ps, &state);
1087                 if (status != 0)
1088                 {
1089                         DBG ("ps_read_process failed: %i", status);
1090                         continue;
1091                 }
1092
1093                 pse.id       = pid;
1094                 pse.age      = 0;
1095
1096                 pse.num_proc = ps.num_proc;
1097                 pse.num_lwp  = ps.num_lwp;
1098                 pse.vmem_rss = ps.vmem_rss;
1099
1100                 pse.vmem_minflt = 0;
1101                 pse.vmem_minflt_counter = ps.vmem_minflt_counter;
1102                 pse.vmem_majflt = 0;
1103                 pse.vmem_majflt_counter = ps.vmem_majflt_counter;
1104
1105                 pse.cpu_user = 0;
1106                 pse.cpu_user_counter = ps.cpu_user_counter;
1107                 pse.cpu_system = 0;
1108                 pse.cpu_system_counter = ps.cpu_system_counter;
1109
1110                 switch (state)
1111                 {
1112                         case 'R': running++;  break;
1113                         case 'S': sleeping++; break;
1114                         case 'D': blocked++;  break;
1115                         case 'Z': zombies++;  break;
1116                         case 'T': stopped++;  break;
1117                         case 'W': paging++;   break;
1118                 }
1119
1120                 ps_list_add (ps.name, &pse);
1121         }
1122
1123         closedir (proc);
1124
1125         ps_submit (running, sleeping, zombies, stopped, paging, blocked);
1126
1127         for (ps_ptr = list_head_g; ps_ptr != NULL; ps_ptr = ps_ptr->next)
1128                 ps_submit_proc_list (ps_ptr);
1129 #endif /* KERNEL_LINUX */
1130 }
1131 #else
1132 # define ps_read NULL
1133 #endif /* PROCESSES_HAVE_READ */
1134
1135 void module_register (void)
1136 {
1137         plugin_register (MODULE_NAME, ps_init, ps_read, ps_write);
1138         plugin_register ("ps_rss", NULL, NULL, ps_rss_write);
1139         plugin_register ("ps_cputime", NULL, NULL, ps_cputime_write);
1140         plugin_register ("ps_count", NULL, NULL, ps_count_write);
1141         plugin_register ("ps_pagefaults", NULL, NULL, ps_pagefaults_write);
1142 #if HAVE_THREAD_INFO | KERNEL_LINUX
1143         cf_register (MODULE_NAME, ps_config, config_keys, config_keys_num);
1144 #endif
1145 }
1146
1147 #undef BUFSIZE
1148 #undef MODULE_NAME