processes plugin: ps_read_tasks will fail under Linux 2.4.
[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         *state = fields[2][0];
712  
713         if (*state == 'Z')
714         {
715                 ps->num_lwp  = 0;
716                 ps->num_proc = 0;
717         }
718         else if ((tasks = ps_read_tasks (pid)) == NULL)
719         {
720                 /* Kernel 2.4 or so */
721                 ps->num_lwp  = 1;
722                 ps->num_proc = 1;
723         }
724         else
725         {
726                 ps->num_lwp  = 0;
727                 ps->num_proc = 1;
728                 for (i = 0; tasks[i] != 0; i++)
729                         ps->num_lwp++;
730
731                 free (tasks);
732                 tasks = NULL;
733         }
734
735         /* Leave the rest at zero if this is only a zombi */
736         if (ps->num_proc == 0)
737         {
738                 DBG ("This is only a zombi: pid = %i; name = %s;",
739                                 pid, ps->name);
740                 return (0);
741         }
742
743         cpu_user_counter   = atoll (fields[13]);
744         cpu_system_counter = atoll (fields[14]);
745         vmem_rss = atoll (fields[23]);
746         ps->vmem_minflt_counter = atol (fields[9]);
747         ps->vmem_majflt_counter = atol (fields[11]);
748         
749         /* Convert jiffies to useconds */
750         cpu_user_counter   = cpu_user_counter   * 1000000 / CONFIG_HZ;
751         cpu_system_counter = cpu_system_counter * 1000000 / CONFIG_HZ;
752         vmem_rss = vmem_rss * pagesize_g;
753
754         ps->cpu_user_counter = (unsigned long) cpu_user_counter;
755         ps->cpu_system_counter = (unsigned long) cpu_system_counter;
756         ps->vmem_rss = (unsigned long) vmem_rss;
757
758         /* success */
759         return (0);
760 } /* int ps_read_process (...) */
761 #endif /* KERNEL_LINUX */
762
763 #if HAVE_THREAD_INFO
764 static int mach_get_task_name (task_t t, int *pid, char *name, size_t name_max_len)
765 {
766         int mib[4];
767
768         struct kinfo_proc kp;
769         size_t            kp_size;
770
771         mib[0] = CTL_KERN;
772         mib[1] = KERN_PROC;
773         mib[2] = KERN_PROC_PID;
774
775         if (pid_for_task (t, pid) != KERN_SUCCESS)
776                 return (-1);
777         mib[3] = *pid;
778
779         kp_size = sizeof (kp);
780         if (sysctl (mib, 4, &kp, &kp_size, NULL, 0) != 0)
781                 return (-1);
782
783         if (name_max_len > (MAXCOMLEN + 1))
784                 name_max_len = MAXCOMLEN + 1;
785
786         strncpy (name, kp.kp_proc.p_comm, name_max_len - 1);
787         name[name_max_len - 1] = '\0';
788
789         DBG ("pid = %i; name = %s;", *pid, name);
790
791         /* We don't do the special handling for `p_comm == "LaunchCFMApp"' as
792          * `top' does it, because it is a lot of work and only used when
793          * debugging. -octo */
794
795         return (0);
796 }
797 #endif /* HAVE_THREAD_INFO */
798
799 static void ps_read (void)
800 {
801 #if HAVE_THREAD_INFO
802         kern_return_t            status;
803
804         int                      pset;
805         processor_set_t          port_pset_priv;
806
807         int                      task;
808         task_array_t             task_list;
809         mach_msg_type_number_t   task_list_len;
810
811         int                      task_pid;
812         char                     task_name[MAXCOMLEN + 1];
813
814         int                      thread;
815         thread_act_array_t       thread_list;
816         mach_msg_type_number_t   thread_list_len;
817         thread_basic_info_data_t thread_data;
818         mach_msg_type_number_t   thread_data_len;
819
820         int running  = 0;
821         int sleeping = 0;
822         int zombies  = 0;
823         int stopped  = 0;
824         int blocked  = 0;
825
826         procstat_t *ps;
827         procstat_entry_t pse;
828
829         ps_list_reset ();
830
831         /*
832          * The Mach-concept is a little different from the traditional UNIX
833          * concept: All the work is done in threads. Threads are contained in
834          * `tasks'. Therefore, `task status' doesn't make much sense, since
835          * it's actually a `thread status'.
836          * Tasks are assigned to sets of processors, so that's where you go to
837          * get a list.
838          */
839         for (pset = 0; pset < pset_list_len; pset++)
840         {
841                 if ((status = host_processor_set_priv (port_host_self,
842                                                 pset_list[pset],
843                                                 &port_pset_priv)) != KERN_SUCCESS)
844                 {
845                         syslog (LOG_ERR, "host_processor_set_priv failed: %s\n",
846                                         mach_error_string (status));
847                         continue;
848                 }
849
850                 if ((status = processor_set_tasks (port_pset_priv,
851                                                 &task_list,
852                                                 &task_list_len)) != KERN_SUCCESS)
853                 {
854                         syslog (LOG_ERR, "processor_set_tasks failed: %s\n",
855                                         mach_error_string (status));
856                         mach_port_deallocate (port_task_self, port_pset_priv);
857                         continue;
858                 }
859
860                 for (task = 0; task < task_list_len; task++)
861                 {
862                         ps = NULL;
863                         if (mach_get_task_name (task_list[task],
864                                                 &task_pid,
865                                                 task_name, PROCSTAT_NAME_LEN) == 0)
866                                 ps = ps_list_search (task_name);
867
868                         /* Collect more detailed statistics for this process */
869                         if (ps != NULL)
870                         {
871                                 task_basic_info_data_t        task_basic_info;
872                                 mach_msg_type_number_t        task_basic_info_len;
873                                 task_events_info_data_t       task_events_info;
874                                 mach_msg_type_number_t        task_events_info_len;
875                                 task_absolutetime_info_data_t task_absolutetime_info;
876                                 mach_msg_type_number_t        task_absolutetime_info_len;
877
878                                 memset (&pse, '\0', sizeof (pse));
879                                 pse.id = task_pid;
880
881                                 task_basic_info_len = TASK_BASIC_INFO_COUNT;
882                                 status = task_info (task_list[task],
883                                                 TASK_BASIC_INFO,
884                                                 (task_info_t) &task_basic_info,
885                                                 &task_basic_info_len);
886                                 if (status != KERN_SUCCESS)
887                                 {
888                                         syslog (LOG_ERR, "task_info failed: %s",
889                                                         mach_error_string (status));
890                                         continue; /* with next thread_list */
891                                 }
892
893                                 task_events_info_len = TASK_EVENTS_INFO_COUNT;
894                                 status = task_info (task_list[task],
895                                                 TASK_EVENTS_INFO,
896                                                 (task_info_t) &task_events_info,
897                                                 &task_events_info_len);
898                                 if (status != KERN_SUCCESS)
899                                 {
900                                         syslog (LOG_ERR, "task_info failed: %s",
901                                                         mach_error_string (status));
902                                         continue; /* with next thread_list */
903                                 }
904
905                                 task_absolutetime_info_len = TASK_ABSOLUTETIME_INFO_COUNT;
906                                 status = task_info (task_list[task],
907                                                 TASK_ABSOLUTETIME_INFO,
908                                                 (task_info_t) &task_absolutetime_info,
909                                                 &task_absolutetime_info_len);
910                                 if (status != KERN_SUCCESS)
911                                 {
912                                         syslog (LOG_ERR, "task_info failed: %s",
913                                                         mach_error_string (status));
914                                         continue; /* with next thread_list */
915                                 }
916
917                                 pse.num_proc++;
918                                 pse.vmem_rss = task_basic_info.resident_size;
919
920                                 pse.vmem_minflt_counter = task_events_info.cow_faults;
921                                 pse.vmem_majflt_counter = task_events_info.faults;
922
923                                 pse.cpu_user_counter = task_absolutetime_info.total_user;
924                                 pse.cpu_system_counter = task_absolutetime_info.total_system;
925                         }
926
927                         status = task_threads (task_list[task], &thread_list,
928                                         &thread_list_len);
929                         if (status != KERN_SUCCESS)
930                         {
931                                 /* Apple's `top' treats this case a zombie. It
932                                  * makes sense to some extend: A `zombie'
933                                  * thread is nonsense, since the task/process
934                                  * is dead. */
935                                 zombies++;
936                                 DBG ("task_threads failed: %s",
937                                                 mach_error_string (status));
938                                 if (task_list[task] != port_task_self)
939                                         mach_port_deallocate (port_task_self,
940                                                         task_list[task]);
941                                 continue; /* with next task_list */
942                         }
943
944                         for (thread = 0; thread < thread_list_len; thread++)
945                         {
946                                 thread_data_len = THREAD_BASIC_INFO_COUNT;
947                                 status = thread_info (thread_list[thread],
948                                                 THREAD_BASIC_INFO,
949                                                 (thread_info_t) &thread_data,
950                                                 &thread_data_len);
951                                 if (status != KERN_SUCCESS)
952                                 {
953                                         syslog (LOG_ERR, "thread_info failed: %s",
954                                                         mach_error_string (status));
955                                         if (task_list[task] != port_task_self)
956                                                 mach_port_deallocate (port_task_self,
957                                                                 thread_list[thread]);
958                                         continue; /* with next thread_list */
959                                 }
960
961                                 if (ps != NULL)
962                                         pse.num_lwp++;
963
964                                 switch (thread_data.run_state)
965                                 {
966                                         case TH_STATE_RUNNING:
967                                                 running++;
968                                                 break;
969                                         case TH_STATE_STOPPED:
970                                         /* What exactly is `halted'? */
971                                         case TH_STATE_HALTED:
972                                                 stopped++;
973                                                 break;
974                                         case TH_STATE_WAITING:
975                                                 sleeping++;
976                                                 break;
977                                         case TH_STATE_UNINTERRUPTIBLE:
978                                                 blocked++;
979                                                 break;
980                                         /* There is no `zombie' case here,
981                                          * since there are no zombie-threads.
982                                          * There's only zombie tasks, which are
983                                          * handled above. */
984                                         default:
985                                                 syslog (LOG_WARNING,
986                                                                 "Unknown thread status: %s",
987                                                                 thread_data.run_state);
988                                                 break;
989                                 } /* switch (thread_data.run_state) */
990
991                                 if (task_list[task] != port_task_self)
992                                 {
993                                         status = mach_port_deallocate (port_task_self,
994                                                         thread_list[thread]);
995                                         if (status != KERN_SUCCESS)
996                                                 syslog (LOG_ERR, "mach_port_deallocate failed: %s",
997                                                                 mach_error_string (status));
998                                 }
999                         } /* for (thread_list) */
1000
1001                         if ((status = vm_deallocate (port_task_self,
1002                                                         (vm_address_t) thread_list,
1003                                                         thread_list_len * sizeof (thread_act_t)))
1004                                         != KERN_SUCCESS)
1005                         {
1006                                 syslog (LOG_ERR, "vm_deallocate failed: %s",
1007                                                 mach_error_string (status));
1008                         }
1009                         thread_list = NULL;
1010                         thread_list_len = 0;
1011
1012                         /* Only deallocate the task port, if it isn't our own.
1013                          * Don't know what would happen in that case, but this
1014                          * is what Apple's top does.. ;) */
1015                         if (task_list[task] != port_task_self)
1016                         {
1017                                 status = mach_port_deallocate (port_task_self,
1018                                                 task_list[task]);
1019                                 if (status != KERN_SUCCESS)
1020                                         syslog (LOG_ERR, "mach_port_deallocate failed: %s",
1021                                                         mach_error_string (status));
1022                         }
1023
1024                         if (ps != NULL)
1025                                 ps_list_add (task_name, &pse);
1026                 } /* for (task_list) */
1027
1028                 if ((status = vm_deallocate (port_task_self,
1029                                 (vm_address_t) task_list,
1030                                 task_list_len * sizeof (task_t))) != KERN_SUCCESS)
1031                 {
1032                         syslog (LOG_ERR, "vm_deallocate failed: %s",
1033                                         mach_error_string (status));
1034                 }
1035                 task_list = NULL;
1036                 task_list_len = 0;
1037
1038                 if ((status = mach_port_deallocate (port_task_self, port_pset_priv))
1039                                 != KERN_SUCCESS)
1040                 {
1041                         syslog (LOG_ERR, "mach_port_deallocate failed: %s",
1042                                         mach_error_string (status));
1043                 }
1044         } /* for (pset_list) */
1045
1046         ps_submit (running, sleeping, zombies, stopped, -1, blocked);
1047
1048         for (ps = list_head_g; ps != NULL; ps = ps->next)
1049                 ps_submit_proc_list (ps);
1050 /* #endif HAVE_THREAD_INFO */
1051
1052 #elif KERNEL_LINUX
1053         int running  = 0;
1054         int sleeping = 0;
1055         int zombies  = 0;
1056         int stopped  = 0;
1057         int paging   = 0;
1058         int blocked  = 0;
1059
1060         struct dirent *ent;
1061         DIR           *proc;
1062         int            pid;
1063
1064         int        status;
1065         procstat_t ps;
1066         procstat_entry_t pse;
1067         char       state;
1068
1069         procstat_t *ps_ptr;
1070
1071         running = sleeping = zombies = stopped = paging = blocked = 0;
1072         ps_list_reset ();
1073
1074         if ((proc = opendir ("/proc")) == NULL)
1075         {
1076                 syslog (LOG_ERR, "Cannot open `/proc': %s", strerror (errno));
1077                 return;
1078         }
1079
1080         while ((ent = readdir (proc)) != NULL)
1081         {
1082                 if (!isdigit (ent->d_name[0]))
1083                         continue;
1084
1085                 if ((pid = atoi (ent->d_name)) < 1)
1086                         continue;
1087
1088                 status = ps_read_process (pid, &ps, &state);
1089                 if (status != 0)
1090                 {
1091                         DBG ("ps_read_process failed: %i", status);
1092                         continue;
1093                 }
1094
1095                 pse.id       = pid;
1096                 pse.age      = 0;
1097
1098                 pse.num_proc = ps.num_proc;
1099                 pse.num_lwp  = ps.num_lwp;
1100                 pse.vmem_rss = ps.vmem_rss;
1101
1102                 pse.vmem_minflt = 0;
1103                 pse.vmem_minflt_counter = ps.vmem_minflt_counter;
1104                 pse.vmem_majflt = 0;
1105                 pse.vmem_majflt_counter = ps.vmem_majflt_counter;
1106
1107                 pse.cpu_user = 0;
1108                 pse.cpu_user_counter = ps.cpu_user_counter;
1109                 pse.cpu_system = 0;
1110                 pse.cpu_system_counter = ps.cpu_system_counter;
1111
1112                 switch (state)
1113                 {
1114                         case 'R': running++;  break;
1115                         case 'S': sleeping++; break;
1116                         case 'D': blocked++;  break;
1117                         case 'Z': zombies++;  break;
1118                         case 'T': stopped++;  break;
1119                         case 'W': paging++;   break;
1120                 }
1121
1122                 ps_list_add (ps.name, &pse);
1123         }
1124
1125         closedir (proc);
1126
1127         ps_submit (running, sleeping, zombies, stopped, paging, blocked);
1128
1129         for (ps_ptr = list_head_g; ps_ptr != NULL; ps_ptr = ps_ptr->next)
1130                 ps_submit_proc_list (ps_ptr);
1131 #endif /* KERNEL_LINUX */
1132 }
1133 #else
1134 # define ps_read NULL
1135 #endif /* PROCESSES_HAVE_READ */
1136
1137 void module_register (void)
1138 {
1139         plugin_register (MODULE_NAME, ps_init, ps_read, ps_write);
1140         plugin_register ("ps_rss", NULL, NULL, ps_rss_write);
1141         plugin_register ("ps_cputime", NULL, NULL, ps_cputime_write);
1142         plugin_register ("ps_count", NULL, NULL, ps_count_write);
1143         plugin_register ("ps_pagefaults", NULL, NULL, ps_pagefaults_write);
1144 #if HAVE_THREAD_INFO | KERNEL_LINUX
1145         cf_register (MODULE_NAME, ps_config, config_keys, config_keys_num);
1146 #endif
1147 }
1148
1149 #undef BUFSIZE
1150 #undef MODULE_NAME