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