2 * collectd - src/processes.c
3 * Copyright (C) 2005 Lyonel Vincent
4 * Copyright (C) 2006-2010 Florian octo Forster
5 * Copyright (C) 2008 Oleg King
6 * Copyright (C) 2009 Sebastian Harl
7 * Copyright (C) 2009 Andrés J. Díaz
8 * Copyright (C) 2009 Manuel Sanmartin
9 * Copyright (C) 2010 Clément Stenac
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version.
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
21 * You should have received a copy of the GNU General Public License along
22 * with this program; if not, write to the Free Software Foundation, Inc.,
23 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
26 * Lyonel Vincent <lyonel at ezix.org>
27 * Florian octo Forster <octo at verplant.org>
28 * Oleg King <king2 at kaluga.ru>
29 * Sebastian Harl <sh at tokkee.org>
30 * Andrés J. Díaz <ajdiaz at connectical.com>
32 * Clément Stenac <clement.stenac at diwi.org>
38 #include "configfile.h"
40 /* Include header files for the mach system, if they exist.. */
42 # if HAVE_MACH_MACH_INIT_H
43 # include <mach/mach_init.h>
45 # if HAVE_MACH_HOST_PRIV_H
46 # include <mach/host_priv.h>
48 # if HAVE_MACH_MACH_ERROR_H
49 # include <mach/mach_error.h>
51 # if HAVE_MACH_MACH_HOST_H
52 # include <mach/mach_host.h>
54 # if HAVE_MACH_MACH_PORT_H
55 # include <mach/mach_port.h>
57 # if HAVE_MACH_MACH_TYPES_H
58 # include <mach/mach_types.h>
60 # if HAVE_MACH_MESSAGE_H
61 # include <mach/message.h>
63 # if HAVE_MACH_PROCESSOR_SET_H
64 # include <mach/processor_set.h>
67 # include <mach/task.h>
69 # if HAVE_MACH_THREAD_ACT_H
70 # include <mach/thread_act.h>
72 # if HAVE_MACH_VM_REGION_H
73 # include <mach/vm_region.h>
75 # if HAVE_MACH_VM_MAP_H
76 # include <mach/vm_map.h>
78 # if HAVE_MACH_VM_PROT_H
79 # include <mach/vm_prot.h>
81 # if HAVE_SYS_SYSCTL_H
82 # include <sys/sysctl.h>
84 /* #endif HAVE_THREAD_INFO */
87 # if HAVE_LINUX_CONFIG_H
88 # include <linux/config.h>
91 # define CONFIG_HZ 100
93 /* #endif KERNEL_LINUX */
95 #elif HAVE_LIBKVM_GETPROCS && HAVE_STRUCT_KINFO_PROC_FREEBSD
97 # include <sys/param.h>
98 # include <sys/sysctl.h>
99 # include <sys/user.h>
100 # include <sys/proc.h>
101 /* #endif HAVE_LIBKVM_GETPROCS && HAVE_STRUCT_KINFO_PROC_FREEBSD */
103 #elif HAVE_PROCINFO_H
104 # include <procinfo.h>
105 # include <sys/types.h>
107 #define MAXPROCENTRY 32
108 #define MAXTHRDENTRY 16
109 #define MAXARGLN 1024
110 /* #endif HAVE_PROCINFO_H */
113 # error "No applicable input method."
121 # define ARG_MAX 4096
124 static const char *config_keys[] =
129 static int config_keys_num = STATIC_ARRAY_SIZE (config_keys);
131 typedef struct procstat_entry_s
136 unsigned long num_proc;
137 unsigned long num_lwp;
138 unsigned long vmem_size;
139 unsigned long vmem_rss;
140 unsigned long vmem_data;
141 unsigned long vmem_code;
142 unsigned long stack_size;
144 unsigned long vmem_minflt;
145 unsigned long vmem_majflt;
146 derive_t vmem_minflt_counter;
147 derive_t vmem_majflt_counter;
149 unsigned long cpu_user;
150 unsigned long cpu_system;
151 derive_t cpu_user_counter;
152 derive_t cpu_system_counter;
160 struct procstat_entry_s *next;
163 #define PROCSTAT_NAME_LEN 256
164 typedef struct procstat
166 char name[PROCSTAT_NAME_LEN];
171 unsigned long num_proc;
172 unsigned long num_lwp;
173 unsigned long vmem_size;
174 unsigned long vmem_rss;
175 unsigned long vmem_data;
176 unsigned long vmem_code;
177 unsigned long stack_size;
179 derive_t vmem_minflt_counter;
180 derive_t vmem_majflt_counter;
182 derive_t cpu_user_counter;
183 derive_t cpu_system_counter;
191 struct procstat *next;
192 struct procstat_entry_s *instances;
195 static procstat_t *list_head_g = NULL;
198 static mach_port_t port_host_self;
199 static mach_port_t port_task_self;
201 static processor_set_name_array_t pset_list;
202 static mach_msg_type_number_t pset_list_len;
203 /* #endif HAVE_THREAD_INFO */
206 static long pagesize_g;
207 /* #endif KERNEL_LINUX */
209 #elif HAVE_LIBKVM_GETPROCS && HAVE_STRUCT_KINFO_PROC_FREEBSD
210 /* no global variables */
211 /* #endif HAVE_LIBKVM_GETPROCS && HAVE_STRUCT_KINFO_PROC_FREEBSD */
213 #elif HAVE_PROCINFO_H
214 static struct procentry64 procentry[MAXPROCENTRY];
215 static struct thrdentry64 thrdentry[MAXTHRDENTRY];
218 #ifndef _AIXVERSION_610
219 int getprocs64 (void *procsinfo, int sizproc, void *fdsinfo, int sizfd, pid_t *index, int count);
220 int getthrds64( pid_t, void *, int, tid64_t *, int );
222 int getargs (struct procentry64 *processBuffer, int bufferLen, char *argsBuffer, int argsLen);
223 #endif /* HAVE_PROCINFO_H */
225 /* put name of process from config to list_head_g tree
226 list_head_g is a list of 'procstat_t' structs with
227 processes names we want to watch */
228 static void ps_list_register (const char *name, const char *regexp)
234 new = (procstat_t *) malloc (sizeof (procstat_t));
237 ERROR ("processes plugin: ps_list_register: malloc failed.");
240 memset (new, 0, sizeof (procstat_t));
241 sstrncpy (new->name, name, sizeof (new->name));
246 DEBUG ("ProcessMatch: adding \"%s\" as criteria to process %s.", regexp, name);
247 new->re = (regex_t *) malloc (sizeof (regex_t));
250 ERROR ("processes plugin: ps_list_register: malloc failed.");
255 status = regcomp (new->re, regexp, REG_EXTENDED | REG_NOSUB);
258 DEBUG ("ProcessMatch: compiling the regular expression \"%s\" failed.", regexp);
266 ERROR ("processes plugin: ps_list_register: "
267 "Regular expression \"%s\" found in config "
268 "file, but support for regular expressions "
269 "has been disabled at compile time.",
276 for (ptr = list_head_g; ptr != NULL; ptr = ptr->next)
278 if (strcmp (ptr->name, name) == 0)
280 WARNING ("processes plugin: You have configured more "
281 "than one `Process' or "
282 "`ProcessMatch' with the same name. "
283 "All but the first setting will be "
290 if (ptr->next == NULL)
298 } /* void ps_list_register */
300 /* try to match name against entry, returns 1 if success */
301 static int ps_list_match (const char *name, const char *cmdline, procstat_t *ps)
310 if ((str == NULL) || (str[0] == 0))
313 assert (str != NULL);
315 status = regexec (ps->re, str,
324 if (strcmp (ps->name, name) == 0)
328 } /* int ps_list_match */
330 /* add process entry to 'instances' of process 'name' (or refresh it) */
331 static void ps_list_add (const char *name, const char *cmdline, procstat_entry_t *entry)
334 procstat_entry_t *pse;
339 for (ps = list_head_g; ps != NULL; ps = ps->next)
341 if ((ps_list_match (name, cmdline, ps)) == 0)
344 for (pse = ps->instances; pse != NULL; pse = pse->next)
345 if ((pse->id == entry->id) || (pse->next == NULL))
348 if ((pse == NULL) || (pse->id != entry->id))
350 procstat_entry_t *new;
352 new = (procstat_entry_t *) malloc (sizeof (procstat_entry_t));
355 memset (new, 0, sizeof (procstat_entry_t));
367 pse->num_proc = entry->num_proc;
368 pse->num_lwp = entry->num_lwp;
369 pse->vmem_size = entry->vmem_size;
370 pse->vmem_rss = entry->vmem_rss;
371 pse->vmem_data = entry->vmem_data;
372 pse->vmem_code = entry->vmem_code;
373 pse->stack_size = entry->stack_size;
374 pse->io_rchar = entry->io_rchar;
375 pse->io_wchar = entry->io_wchar;
376 pse->io_syscr = entry->io_syscr;
377 pse->io_syscw = entry->io_syscw;
379 ps->num_proc += pse->num_proc;
380 ps->num_lwp += pse->num_lwp;
381 ps->vmem_size += pse->vmem_size;
382 ps->vmem_rss += pse->vmem_rss;
383 ps->vmem_data += pse->vmem_data;
384 ps->vmem_code += pse->vmem_code;
385 ps->stack_size += pse->stack_size;
387 ps->io_rchar += ((pse->io_rchar == -1)?0:pse->io_rchar);
388 ps->io_wchar += ((pse->io_wchar == -1)?0:pse->io_wchar);
389 ps->io_syscr += ((pse->io_syscr == -1)?0:pse->io_syscr);
390 ps->io_syscw += ((pse->io_syscw == -1)?0:pse->io_syscw);
392 if ((entry->vmem_minflt_counter == 0)
393 && (entry->vmem_majflt_counter == 0))
395 pse->vmem_minflt_counter += entry->vmem_minflt;
396 pse->vmem_minflt = entry->vmem_minflt;
398 pse->vmem_majflt_counter += entry->vmem_majflt;
399 pse->vmem_majflt = entry->vmem_majflt;
403 if (entry->vmem_minflt_counter < pse->vmem_minflt_counter)
405 pse->vmem_minflt = entry->vmem_minflt_counter
406 + (ULONG_MAX - pse->vmem_minflt_counter);
410 pse->vmem_minflt = entry->vmem_minflt_counter - pse->vmem_minflt_counter;
412 pse->vmem_minflt_counter = entry->vmem_minflt_counter;
414 if (entry->vmem_majflt_counter < pse->vmem_majflt_counter)
416 pse->vmem_majflt = entry->vmem_majflt_counter
417 + (ULONG_MAX - pse->vmem_majflt_counter);
421 pse->vmem_majflt = entry->vmem_majflt_counter - pse->vmem_majflt_counter;
423 pse->vmem_majflt_counter = entry->vmem_majflt_counter;
426 ps->vmem_minflt_counter += pse->vmem_minflt;
427 ps->vmem_majflt_counter += pse->vmem_majflt;
429 if ((entry->cpu_user_counter == 0)
430 && (entry->cpu_system_counter == 0))
432 pse->cpu_user_counter += entry->cpu_user;
433 pse->cpu_user = entry->cpu_user;
435 pse->cpu_system_counter += entry->cpu_system;
436 pse->cpu_system = entry->cpu_system;
440 if (entry->cpu_user_counter < pse->cpu_user_counter)
442 pse->cpu_user = entry->cpu_user_counter
443 + (ULONG_MAX - pse->cpu_user_counter);
447 pse->cpu_user = entry->cpu_user_counter - pse->cpu_user_counter;
449 pse->cpu_user_counter = entry->cpu_user_counter;
451 if (entry->cpu_system_counter < pse->cpu_system_counter)
453 pse->cpu_system = entry->cpu_system_counter
454 + (ULONG_MAX - pse->cpu_system_counter);
458 pse->cpu_system = entry->cpu_system_counter - pse->cpu_system_counter;
460 pse->cpu_system_counter = entry->cpu_system_counter;
463 ps->cpu_user_counter += pse->cpu_user;
464 ps->cpu_system_counter += pse->cpu_system;
468 /* remove old entries from instances of processes in list_head_g */
469 static void ps_list_reset (void)
472 procstat_entry_t *pse;
473 procstat_entry_t *pse_prev;
475 for (ps = list_head_g; ps != NULL; ps = ps->next)
495 DEBUG ("Removing this procstat entry cause it's too old: "
496 "id = %lu; name = %s;",
499 if (pse_prev == NULL)
501 ps->instances = pse->next;
507 pse_prev->next = pse->next;
509 pse = pse_prev->next;
518 } /* while (pse != NULL) */
519 } /* for (ps = list_head_g; ps != NULL; ps = ps->next) */
522 /* put all pre-defined 'Process' names from config to list_head_g tree */
523 static int ps_config (const char *key, const char *value)
525 if (strcasecmp (key, "Process") == 0)
527 ps_list_register (value, NULL);
529 else if (strcasecmp (key, "ProcessMatch") == 0)
535 new_val = strdup (value);
536 if (new_val == NULL) {
537 ERROR ("processes plugin: strdup failed when processing "
538 "`ProcessMatch %s'.", value);
542 fields_num = strsplit (new_val, fields,
543 STATIC_ARRAY_SIZE (fields));
546 ERROR ("processes plugin: `ProcessMatch' needs exactly "
547 "two string arguments.");
551 ps_list_register (fields[0], fields[1]);
556 ERROR ("processes plugin: The `%s' configuration option is not "
557 "understood and will be ignored.", key);
564 static int ps_init (void)
567 kern_return_t status;
569 port_host_self = mach_host_self ();
570 port_task_self = mach_task_self ();
572 if (pset_list != NULL)
574 vm_deallocate (port_task_self,
575 (vm_address_t) pset_list,
576 pset_list_len * sizeof (processor_set_t));
581 if ((status = host_processor_sets (port_host_self,
583 &pset_list_len)) != KERN_SUCCESS)
585 ERROR ("host_processor_sets failed: %s\n",
586 mach_error_string (status));
591 /* #endif HAVE_THREAD_INFO */
594 pagesize_g = sysconf(_SC_PAGESIZE);
595 DEBUG ("pagesize_g = %li; CONFIG_HZ = %i;",
596 pagesize_g, CONFIG_HZ);
597 /* #endif KERNEL_LINUX */
599 #elif HAVE_LIBKVM_GETPROCS && HAVE_STRUCT_KINFO_PROC_FREEBSD
600 /* no initialization */
601 /* #endif HAVE_LIBKVM_GETPROCS && HAVE_STRUCT_KINFO_PROC_FREEBSD */
603 #elif HAVE_PROCINFO_H
604 pagesize = getpagesize();
605 #endif /* HAVE_PROCINFO_H */
610 /* submit global state (e.g.: qty of zombies, running, etc..) */
611 static void ps_submit_state (const char *state, double value)
614 value_list_t vl = VALUE_LIST_INIT;
616 values[0].gauge = value;
620 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
621 sstrncpy (vl.plugin, "processes", sizeof (vl.plugin));
622 sstrncpy (vl.plugin_instance, "", sizeof (vl.plugin_instance));
623 sstrncpy (vl.type, "ps_state", sizeof (vl.type));
624 sstrncpy (vl.type_instance, state, sizeof (vl.type_instance));
626 plugin_dispatch_values (&vl);
629 /* submit info about specific process (e.g.: memory taken, cpu usage, etc..) */
630 static void ps_submit_proc_list (procstat_t *ps)
633 value_list_t vl = VALUE_LIST_INIT;
637 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
638 sstrncpy (vl.plugin, "processes", sizeof (vl.plugin));
639 sstrncpy (vl.plugin_instance, ps->name, sizeof (vl.plugin_instance));
641 sstrncpy (vl.type, "ps_vm", sizeof (vl.type));
642 vl.values[0].gauge = ps->vmem_size;
644 plugin_dispatch_values (&vl);
646 sstrncpy (vl.type, "ps_rss", sizeof (vl.type));
647 vl.values[0].gauge = ps->vmem_rss;
649 plugin_dispatch_values (&vl);
651 sstrncpy (vl.type, "ps_data", sizeof (vl.type));
652 vl.values[0].gauge = ps->vmem_data;
654 plugin_dispatch_values (&vl);
656 sstrncpy (vl.type, "ps_code", sizeof (vl.type));
657 vl.values[0].gauge = ps->vmem_code;
659 plugin_dispatch_values (&vl);
661 sstrncpy (vl.type, "ps_stacksize", sizeof (vl.type));
662 vl.values[0].gauge = ps->stack_size;
664 plugin_dispatch_values (&vl);
666 sstrncpy (vl.type, "ps_cputime", sizeof (vl.type));
667 vl.values[0].derive = ps->cpu_user_counter;
668 vl.values[1].derive = ps->cpu_system_counter;
670 plugin_dispatch_values (&vl);
672 sstrncpy (vl.type, "ps_count", sizeof (vl.type));
673 vl.values[0].gauge = ps->num_proc;
674 vl.values[1].gauge = ps->num_lwp;
676 plugin_dispatch_values (&vl);
678 sstrncpy (vl.type, "ps_pagefaults", sizeof (vl.type));
679 vl.values[0].derive = ps->vmem_minflt_counter;
680 vl.values[1].derive = ps->vmem_majflt_counter;
682 plugin_dispatch_values (&vl);
684 if ( (ps->io_rchar != -1) && (ps->io_wchar != -1) )
686 sstrncpy (vl.type, "ps_disk_octets", sizeof (vl.type));
687 vl.values[0].derive = ps->io_rchar;
688 vl.values[1].derive = ps->io_wchar;
690 plugin_dispatch_values (&vl);
693 if ( (ps->io_syscr != -1) && (ps->io_syscw != -1) )
695 sstrncpy (vl.type, "ps_disk_ops", sizeof (vl.type));
696 vl.values[0].derive = ps->io_syscr;
697 vl.values[1].derive = ps->io_syscw;
699 plugin_dispatch_values (&vl);
702 DEBUG ("name = %s; num_proc = %lu; num_lwp = %lu; "
703 "vmem_size = %lu; vmem_rss = %lu; vmem_data = %lu; "
705 "vmem_minflt_counter = %"PRIi64"; vmem_majflt_counter = %"PRIi64"; "
706 "cpu_user_counter = %"PRIi64"; cpu_system_counter = %"PRIi64"; "
707 "io_rchar = %"PRIi64"; io_wchar = %"PRIi64"; "
708 "io_syscr = %"PRIi64"; io_syscw = %"PRIi64";",
709 ps->name, ps->num_proc, ps->num_lwp,
710 ps->vmem_size, ps->vmem_rss,
711 ps->vmem_data, ps->vmem_code,
712 ps->vmem_minflt_counter, ps->vmem_majflt_counter,
713 ps->cpu_user_counter, ps->cpu_system_counter,
714 ps->io_rchar, ps->io_wchar, ps->io_syscr, ps->io_syscw);
715 } /* void ps_submit_proc_list */
717 /* ------- additional functions for KERNEL_LINUX/HAVE_THREAD_INFO ------- */
719 static int ps_read_tasks (int pid)
726 ssnprintf (dirname, sizeof (dirname), "/proc/%i/task", pid);
728 if ((dh = opendir (dirname)) == NULL)
730 DEBUG ("Failed to open directory `%s'", dirname);
734 while ((ent = readdir (dh)) != NULL)
736 if (!isdigit ((int) ent->d_name[0]))
743 return ((count >= 1) ? count : 1);
744 } /* int *ps_read_tasks */
746 /* Read advanced virtual memory data from /proc/pid/status */
747 static procstat_t *ps_read_vmem (int pid, procstat_t *ps)
752 unsigned long long lib = 0;
753 unsigned long long exe = 0;
754 unsigned long long data = 0;
758 ssnprintf (filename, sizeof (filename), "/proc/%i/status", pid);
759 if ((fh = fopen (filename, "r")) == NULL)
762 while (fgets (buffer, sizeof(buffer), fh) != NULL)
767 if (strncmp (buffer, "Vm", 2) != 0)
770 numfields = strsplit (buffer, fields,
771 STATIC_ARRAY_SIZE (fields));
778 tmp = strtoll (fields[1], &endptr, /* base = */ 10);
779 if ((errno == 0) && (endptr != fields[1]))
781 if (strncmp (buffer, "VmData", 6) == 0)
785 else if (strncmp (buffer, "VmLib", 5) == 0)
789 else if (strncmp(buffer, "VmExe", 5) == 0)
794 } /* while (fgets) */
799 WARNING ("processes: fclose: %s",
800 sstrerror (errno, errbuf, sizeof (errbuf)));
803 ps->vmem_data = data * 1024;
804 ps->vmem_code = (exe + lib) * 1024;
807 } /* procstat_t *ps_read_vmem */
809 static procstat_t *ps_read_io (int pid, procstat_t *ps)
818 ssnprintf (filename, sizeof (filename), "/proc/%i/io", pid);
819 if ((fh = fopen (filename, "r")) == NULL)
822 while (fgets (buffer, sizeof (buffer), fh) != NULL)
824 derive_t *val = NULL;
828 if (strncasecmp (buffer, "rchar:", 6) == 0)
829 val = &(ps->io_rchar);
830 else if (strncasecmp (buffer, "wchar:", 6) == 0)
831 val = &(ps->io_wchar);
832 else if (strncasecmp (buffer, "syscr:", 6) == 0)
833 val = &(ps->io_syscr);
834 else if (strncasecmp (buffer, "syscw:", 6) == 0)
835 val = &(ps->io_syscw);
839 numfields = strsplit (buffer, fields,
840 STATIC_ARRAY_SIZE (fields));
847 tmp = strtoll (fields[1], &endptr, /* base = */ 10);
848 if ((errno != 0) || (endptr == fields[1]))
851 *val = (derive_t) tmp;
852 } /* while (fgets) */
857 WARNING ("processes: fclose: %s",
858 sstrerror (errno, errbuf, sizeof (errbuf)));
862 } /* procstat_t *ps_read_io */
864 int ps_read_process (int pid, procstat_t *ps, char *state)
877 derive_t cpu_user_counter;
878 derive_t cpu_system_counter;
879 long long unsigned vmem_size;
880 long long unsigned vmem_rss;
881 long long unsigned stack_size;
883 memset (ps, 0, sizeof (procstat_t));
885 ssnprintf (filename, sizeof (filename), "/proc/%i/stat", pid);
887 i = read_file_contents (filename, buffer, sizeof(buffer) - 1);
892 fields_len = strsplit (buffer, fields, STATIC_ARRAY_SIZE (fields));
895 DEBUG ("processes plugin: ps_read_process (pid = %i):"
896 " `%s' has only %i fields..",
897 (int) pid, filename, fields_len);
901 /* copy the name, strip brackets in the process */
902 name_len = strlen (fields[1]) - 2;
903 if ((fields[1][0] != '(') || (fields[1][name_len + 1] != ')'))
905 DEBUG ("No brackets found in process name: `%s'", fields[1]);
908 fields[1] = fields[1] + 1;
909 fields[1][name_len] = '\0';
910 strncpy (ps->name, fields[1], PROCSTAT_NAME_LEN);
912 ppid = atoi (fields[3]);
914 *state = fields[2][0];
923 if ( (ps->num_lwp = ps_read_tasks (pid)) == -1 )
925 /* returns -1 => kernel 2.4 */
931 /* Leave the rest at zero if this is only a zombi */
932 if (ps->num_proc == 0)
934 DEBUG ("processes plugin: This is only a zombi: pid = %i; "
935 "name = %s;", pid, ps->name);
939 cpu_user_counter = atoll (fields[13]);
940 cpu_system_counter = atoll (fields[14]);
941 vmem_size = atoll (fields[22]);
942 vmem_rss = atoll (fields[23]);
943 ps->vmem_minflt_counter = atoll (fields[9]);
944 ps->vmem_majflt_counter = atoll (fields[11]);
947 unsigned long long stack_start = atoll (fields[27]);
948 unsigned long long stack_ptr = atoll (fields[28]);
950 stack_size = (stack_start > stack_ptr)
951 ? stack_start - stack_ptr
952 : stack_ptr - stack_start;
955 /* Convert jiffies to useconds */
956 cpu_user_counter = cpu_user_counter * 1000000 / CONFIG_HZ;
957 cpu_system_counter = cpu_system_counter * 1000000 / CONFIG_HZ;
958 vmem_rss = vmem_rss * pagesize_g;
960 if ( (ps_read_vmem(pid, ps)) == NULL)
965 DEBUG("ps_read_process: did not get vmem data for pid %i",pid);
968 ps->cpu_user_counter = cpu_user_counter;
969 ps->cpu_system_counter = cpu_system_counter;
970 ps->vmem_size = (unsigned long) vmem_size;
971 ps->vmem_rss = (unsigned long) vmem_rss;
972 ps->stack_size = (unsigned long) stack_size;
974 if ( (ps_read_io (pid, ps)) == NULL)
982 DEBUG("ps_read_process: not get io data for pid %i",pid);
987 } /* int ps_read_process (...) */
989 static char *ps_get_cmdline (pid_t pid, char *name, char *buf, size_t buf_len)
999 if ((pid < 1) || (NULL == buf) || (buf_len < 2))
1002 ssnprintf (file, sizeof (file), "/proc/%u/cmdline",
1003 (unsigned int) pid);
1006 fd = open (file, O_RDONLY);
1009 /* ENOENT means the process exited while we were handling it.
1010 * Don't complain about this, it only fills the logs. */
1011 if (errno != ENOENT)
1012 WARNING ("processes plugin: Failed to open `%s': %s.", file,
1013 sstrerror (errno, errbuf, sizeof (errbuf)));
1025 status = read (fd, (void *)buf_ptr, len);
1030 if ((EAGAIN == errno) || (EINTR == errno))
1033 WARNING ("processes plugin: Failed to read from `%s': %s.", file,
1034 sstrerror (errno, errbuf, sizeof (errbuf)));
1054 /* cmdline not available; e.g. kernel thread, zombie */
1058 ssnprintf (buf, buf_len, "[%s]", name);
1062 assert (n <= buf_len);
1069 /* remove trailing whitespace */
1070 while ((n > 0) && (isspace (buf[n]) || ('\0' == buf[n]))) {
1075 /* arguments are separated by '\0' in /proc/<pid>/cmdline */
1082 } /* char *ps_get_cmdline (...) */
1084 static unsigned long read_fork_rate ()
1088 unsigned long result = 0;
1092 proc_stat = fopen("/proc/stat", "r");
1093 if (proc_stat == NULL) {
1095 ERROR ("processes plugin: fopen (/proc/stat) failed: %s",
1096 sstrerror (errno, errbuf, sizeof (errbuf)));
1100 while (fgets (buf, sizeof(buf), proc_stat) != NULL)
1104 numfields = strsplit(buf, fields, STATIC_ARRAY_SIZE (fields));
1108 if (strcmp ("processes", fields[0]) != 0)
1113 result = strtoul(fields[1], &endptr, /* base = */ 10);
1114 if ((endptr == fields[1]) || (errno != 0)) {
1115 ERROR ("processes plugin: Cannot parse fork rate: %s",
1129 static void ps_submit_fork_rate (unsigned long value)
1132 value_list_t vl = VALUE_LIST_INIT;
1134 values[0].derive = (derive_t) value;
1138 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
1139 sstrncpy (vl.plugin, "processes", sizeof (vl.plugin));
1140 sstrncpy (vl.plugin_instance, "", sizeof (vl.plugin_instance));
1141 sstrncpy (vl.type, "fork_rate", sizeof (vl.type));
1142 sstrncpy (vl.type_instance, "", sizeof (vl.type_instance));
1144 plugin_dispatch_values (&vl);
1147 #endif /* KERNEL_LINUX */
1149 #if HAVE_THREAD_INFO
1150 static int mach_get_task_name (task_t t, int *pid, char *name, size_t name_max_len)
1154 struct kinfo_proc kp;
1159 mib[2] = KERN_PROC_PID;
1161 if (pid_for_task (t, pid) != KERN_SUCCESS)
1165 kp_size = sizeof (kp);
1166 if (sysctl (mib, 4, &kp, &kp_size, NULL, 0) != 0)
1169 if (name_max_len > (MAXCOMLEN + 1))
1170 name_max_len = MAXCOMLEN + 1;
1172 strncpy (name, kp.kp_proc.p_comm, name_max_len - 1);
1173 name[name_max_len - 1] = '\0';
1175 DEBUG ("pid = %i; name = %s;", *pid, name);
1177 /* We don't do the special handling for `p_comm == "LaunchCFMApp"' as
1178 * `top' does it, because it is a lot of work and only used when
1179 * debugging. -octo */
1183 #endif /* HAVE_THREAD_INFO */
1184 /* ------- end of additional functions for KERNEL_LINUX/HAVE_THREAD_INFO ------- */
1186 /* do actual readings from kernel */
1187 static int ps_read (void)
1189 #if HAVE_THREAD_INFO
1190 kern_return_t status;
1193 processor_set_t port_pset_priv;
1196 task_array_t task_list;
1197 mach_msg_type_number_t task_list_len;
1200 char task_name[MAXCOMLEN + 1];
1203 thread_act_array_t thread_list;
1204 mach_msg_type_number_t thread_list_len;
1205 thread_basic_info_data_t thread_data;
1206 mach_msg_type_number_t thread_data_len;
1215 procstat_entry_t pse;
1220 * The Mach-concept is a little different from the traditional UNIX
1221 * concept: All the work is done in threads. Threads are contained in
1222 * `tasks'. Therefore, `task status' doesn't make much sense, since
1223 * it's actually a `thread status'.
1224 * Tasks are assigned to sets of processors, so that's where you go to
1227 for (pset = 0; pset < pset_list_len; pset++)
1229 if ((status = host_processor_set_priv (port_host_self,
1231 &port_pset_priv)) != KERN_SUCCESS)
1233 ERROR ("host_processor_set_priv failed: %s\n",
1234 mach_error_string (status));
1238 if ((status = processor_set_tasks (port_pset_priv,
1240 &task_list_len)) != KERN_SUCCESS)
1242 ERROR ("processor_set_tasks failed: %s\n",
1243 mach_error_string (status));
1244 mach_port_deallocate (port_task_self, port_pset_priv);
1248 for (task = 0; task < task_list_len; task++)
1251 if (mach_get_task_name (task_list[task],
1253 task_name, PROCSTAT_NAME_LEN) == 0)
1255 /* search for at least one match */
1256 for (ps = list_head_g; ps != NULL; ps = ps->next)
1257 /* FIXME: cmdline should be here instead of NULL */
1258 if (ps_list_match (task_name, NULL, ps) == 1)
1262 /* Collect more detailed statistics for this process */
1265 task_basic_info_data_t task_basic_info;
1266 mach_msg_type_number_t task_basic_info_len;
1267 task_events_info_data_t task_events_info;
1268 mach_msg_type_number_t task_events_info_len;
1269 task_absolutetime_info_data_t task_absolutetime_info;
1270 mach_msg_type_number_t task_absolutetime_info_len;
1272 memset (&pse, '\0', sizeof (pse));
1275 task_basic_info_len = TASK_BASIC_INFO_COUNT;
1276 status = task_info (task_list[task],
1278 (task_info_t) &task_basic_info,
1279 &task_basic_info_len);
1280 if (status != KERN_SUCCESS)
1282 ERROR ("task_info failed: %s",
1283 mach_error_string (status));
1284 continue; /* with next thread_list */
1287 task_events_info_len = TASK_EVENTS_INFO_COUNT;
1288 status = task_info (task_list[task],
1290 (task_info_t) &task_events_info,
1291 &task_events_info_len);
1292 if (status != KERN_SUCCESS)
1294 ERROR ("task_info failed: %s",
1295 mach_error_string (status));
1296 continue; /* with next thread_list */
1299 task_absolutetime_info_len = TASK_ABSOLUTETIME_INFO_COUNT;
1300 status = task_info (task_list[task],
1301 TASK_ABSOLUTETIME_INFO,
1302 (task_info_t) &task_absolutetime_info,
1303 &task_absolutetime_info_len);
1304 if (status != KERN_SUCCESS)
1306 ERROR ("task_info failed: %s",
1307 mach_error_string (status));
1308 continue; /* with next thread_list */
1312 pse.vmem_size = task_basic_info.virtual_size;
1313 pse.vmem_rss = task_basic_info.resident_size;
1314 /* Does not seem to be easily exposed */
1318 pse.vmem_minflt_counter = task_events_info.cow_faults;
1319 pse.vmem_majflt_counter = task_events_info.faults;
1321 pse.cpu_user_counter = task_absolutetime_info.total_user;
1322 pse.cpu_system_counter = task_absolutetime_info.total_system;
1325 status = task_threads (task_list[task], &thread_list,
1327 if (status != KERN_SUCCESS)
1329 /* Apple's `top' treats this case a zombie. It
1330 * makes sense to some extend: A `zombie'
1331 * thread is nonsense, since the task/process
1334 DEBUG ("task_threads failed: %s",
1335 mach_error_string (status));
1336 if (task_list[task] != port_task_self)
1337 mach_port_deallocate (port_task_self,
1339 continue; /* with next task_list */
1342 for (thread = 0; thread < thread_list_len; thread++)
1344 thread_data_len = THREAD_BASIC_INFO_COUNT;
1345 status = thread_info (thread_list[thread],
1347 (thread_info_t) &thread_data,
1349 if (status != KERN_SUCCESS)
1351 ERROR ("thread_info failed: %s",
1352 mach_error_string (status));
1353 if (task_list[task] != port_task_self)
1354 mach_port_deallocate (port_task_self,
1355 thread_list[thread]);
1356 continue; /* with next thread_list */
1362 switch (thread_data.run_state)
1364 case TH_STATE_RUNNING:
1367 case TH_STATE_STOPPED:
1368 /* What exactly is `halted'? */
1369 case TH_STATE_HALTED:
1372 case TH_STATE_WAITING:
1375 case TH_STATE_UNINTERRUPTIBLE:
1378 /* There is no `zombie' case here,
1379 * since there are no zombie-threads.
1380 * There's only zombie tasks, which are
1383 WARNING ("Unknown thread status: %i",
1384 thread_data.run_state);
1386 } /* switch (thread_data.run_state) */
1388 if (task_list[task] != port_task_self)
1390 status = mach_port_deallocate (port_task_self,
1391 thread_list[thread]);
1392 if (status != KERN_SUCCESS)
1393 ERROR ("mach_port_deallocate failed: %s",
1394 mach_error_string (status));
1396 } /* for (thread_list) */
1398 if ((status = vm_deallocate (port_task_self,
1399 (vm_address_t) thread_list,
1400 thread_list_len * sizeof (thread_act_t)))
1403 ERROR ("vm_deallocate failed: %s",
1404 mach_error_string (status));
1407 thread_list_len = 0;
1409 /* Only deallocate the task port, if it isn't our own.
1410 * Don't know what would happen in that case, but this
1411 * is what Apple's top does.. ;) */
1412 if (task_list[task] != port_task_self)
1414 status = mach_port_deallocate (port_task_self,
1416 if (status != KERN_SUCCESS)
1417 ERROR ("mach_port_deallocate failed: %s",
1418 mach_error_string (status));
1422 /* FIXME: cmdline should be here instead of NULL */
1423 ps_list_add (task_name, NULL, &pse);
1424 } /* for (task_list) */
1426 if ((status = vm_deallocate (port_task_self,
1427 (vm_address_t) task_list,
1428 task_list_len * sizeof (task_t))) != KERN_SUCCESS)
1430 ERROR ("vm_deallocate failed: %s",
1431 mach_error_string (status));
1436 if ((status = mach_port_deallocate (port_task_self, port_pset_priv))
1439 ERROR ("mach_port_deallocate failed: %s",
1440 mach_error_string (status));
1442 } /* for (pset_list) */
1444 ps_submit_state ("running", running);
1445 ps_submit_state ("sleeping", sleeping);
1446 ps_submit_state ("zombies", zombies);
1447 ps_submit_state ("stopped", stopped);
1448 ps_submit_state ("blocked", blocked);
1450 for (ps = list_head_g; ps != NULL; ps = ps->next)
1451 ps_submit_proc_list (ps);
1452 /* #endif HAVE_THREAD_INFO */
1466 char cmdline[ARG_MAX];
1470 procstat_entry_t pse;
1473 unsigned long fork_rate;
1477 running = sleeping = zombies = stopped = paging = blocked = 0;
1480 if ((proc = opendir ("/proc")) == NULL)
1483 ERROR ("Cannot open `/proc': %s",
1484 sstrerror (errno, errbuf, sizeof (errbuf)));
1488 while ((ent = readdir (proc)) != NULL)
1490 if (!isdigit (ent->d_name[0]))
1493 if ((pid = atoi (ent->d_name)) < 1)
1496 status = ps_read_process (pid, &ps, &state);
1499 DEBUG ("ps_read_process failed: %i", status);
1506 pse.num_proc = ps.num_proc;
1507 pse.num_lwp = ps.num_lwp;
1508 pse.vmem_size = ps.vmem_size;
1509 pse.vmem_rss = ps.vmem_rss;
1510 pse.vmem_data = ps.vmem_data;
1511 pse.vmem_code = ps.vmem_code;
1512 pse.stack_size = ps.stack_size;
1514 pse.vmem_minflt = 0;
1515 pse.vmem_minflt_counter = ps.vmem_minflt_counter;
1516 pse.vmem_majflt = 0;
1517 pse.vmem_majflt_counter = ps.vmem_majflt_counter;
1520 pse.cpu_user_counter = ps.cpu_user_counter;
1522 pse.cpu_system_counter = ps.cpu_system_counter;
1524 pse.io_rchar = ps.io_rchar;
1525 pse.io_wchar = ps.io_wchar;
1526 pse.io_syscr = ps.io_syscr;
1527 pse.io_syscw = ps.io_syscw;
1531 case 'R': running++; break;
1532 case 'S': sleeping++; break;
1533 case 'D': blocked++; break;
1534 case 'Z': zombies++; break;
1535 case 'T': stopped++; break;
1536 case 'W': paging++; break;
1539 ps_list_add (ps.name,
1540 ps_get_cmdline (pid, ps.name, cmdline, sizeof (cmdline)),
1546 ps_submit_state ("running", running);
1547 ps_submit_state ("sleeping", sleeping);
1548 ps_submit_state ("zombies", zombies);
1549 ps_submit_state ("stopped", stopped);
1550 ps_submit_state ("paging", paging);
1551 ps_submit_state ("blocked", blocked);
1553 for (ps_ptr = list_head_g; ps_ptr != NULL; ps_ptr = ps_ptr->next)
1554 ps_submit_proc_list (ps_ptr);
1556 fork_rate = read_fork_rate();
1557 if (fork_rate != ULONG_MAX)
1558 ps_submit_fork_rate(fork_rate);
1559 /* #endif KERNEL_LINUX */
1561 #elif HAVE_LIBKVM_GETPROCS && HAVE_STRUCT_KINFO_PROC_FREEBSD
1572 char cmdline[ARG_MAX];
1574 struct kinfo_proc *procs; /* array of processes */
1576 int count; /* returns number of processes */
1580 procstat_entry_t pse;
1584 /* Open the kvm interface, get a descriptor */
1585 kd = kvm_open (NULL, NULL, NULL, 0, errbuf);
1588 ERROR ("processes plugin: Cannot open kvm interface: %s",
1593 /* Get the list of processes. */
1594 procs = kvm_getprocs(kd, KERN_PROC_ALL, 0, &count);
1598 ERROR ("processes plugin: Cannot get kvm processes list: %s",
1603 /* Iterate through the processes in kinfo_proc */
1604 for (i = 0; i < count; i++)
1606 /* retrieve the arguments */
1610 argv = kvm_getargv (kd, (const struct kinfo_proc *) &(procs[i]), 0);
1617 while (argv[argc] != NULL)
1620 status = strjoin (cmdline, sizeof (cmdline),
1625 WARNING ("processes plugin: Command line did "
1626 "not fit into buffer.");
1630 cmdline_ptr = &cmdline[0];
1634 pse.id = procs[i].ki_pid;
1638 pse.num_lwp = procs[i].ki_numthreads;
1640 pse.vmem_size = procs[i].ki_size;
1641 pse.vmem_rss = procs[i].ki_rssize * getpagesize();
1642 pse.vmem_data = procs[i].ki_dsize * getpagesize();
1643 pse.vmem_code = procs[i].ki_tsize * getpagesize();
1644 pse.stack_size = procs[i].ki_ssize * getpagesize();
1645 pse.vmem_minflt = 0;
1646 pse.vmem_minflt_counter = procs[i].ki_rusage.ru_minflt;
1647 pse.vmem_majflt = 0;
1648 pse.vmem_majflt_counter = procs[i].ki_rusage.ru_majflt;
1651 pse.cpu_user_counter = procs[i].ki_rusage.ru_utime.tv_sec
1653 + procs[i].ki_rusage.ru_utime.tv_usec;
1655 pse.cpu_system_counter = procs[i].ki_rusage.ru_stime.tv_sec
1657 + procs[i].ki_rusage.ru_stime.tv_usec;
1665 switch (procs[i].ki_stat)
1667 case SSTOP: stopped++; break;
1668 case SSLEEP: sleeping++; break;
1669 case SRUN: running++; break;
1670 case SIDL: idle++; break;
1671 case SWAIT: wait++; break;
1672 case SLOCK: blocked++; break;
1673 case SZOMB: zombies++; break;
1676 ps_list_add (procs[i].ki_comm, cmdline_ptr, &pse);
1681 ps_submit_state ("running", running);
1682 ps_submit_state ("sleeping", sleeping);
1683 ps_submit_state ("zombies", zombies);
1684 ps_submit_state ("stopped", stopped);
1685 ps_submit_state ("blocked", blocked);
1686 ps_submit_state ("idle", idle);
1687 ps_submit_state ("wait", wait);
1689 for (ps_ptr = list_head_g; ps_ptr != NULL; ps_ptr = ps_ptr->next)
1690 ps_submit_proc_list (ps_ptr);
1691 /* #endif HAVE_LIBKVM_GETPROCS && HAVE_STRUCT_KINFO_PROC_FREEBSD */
1693 #elif HAVE_PROCINFO_H
1706 procstat_entry_t pse;
1709 while ((nprocs = getprocs64 (procentry, sizeof(struct procentry64),
1710 /* fdsinfo = */ NULL, sizeof(struct fdsinfo64),
1711 &pindex, MAXPROCENTRY)) > 0)
1715 for (i = 0; i < nprocs; i++)
1719 char arglist[MAXARGLN+1];
1723 if (procentry[i].pi_state == SNONE) continue;
1724 /* if (procentry[i].pi_state == SZOMB) FIXME */
1726 cmdline = procentry[i].pi_comm;
1727 cargs = procentry[i].pi_comm;
1728 if ( procentry[i].pi_flags & SKPROC )
1730 if (procentry[i].pi_pid == 0)
1731 cmdline = "swapper";
1736 if (getargs(&procentry[i], sizeof(struct procentry64), arglist, MAXARGLN) >= 0)
1741 while (++n < MAXARGLN)
1743 if (arglist[n] == '\0')
1745 if (arglist[n+1] == '\0')
1754 pse.id = procentry[i].pi_pid;
1756 pse.num_lwp = procentry[i].pi_thcount;
1760 while ((nthreads = getthrds64(procentry[i].pi_pid,
1761 thrdentry, sizeof(struct thrdentry64),
1762 &thindex, MAXTHRDENTRY)) > 0)
1766 for (j=0; j< nthreads; j++)
1768 switch (thrdentry[j].ti_state)
1770 /* case TSNONE: break; */
1771 case TSIDL: blocked++; break; /* FIXME is really blocked */
1772 case TSRUN: running++; break;
1773 case TSSLEEP: sleeping++; break;
1774 case TSSWAP: paging++; break;
1775 case TSSTOP: stopped++; break;
1776 case TSZOMB: zombies++; break;
1779 if (nthreads < MAXTHRDENTRY)
1784 /* tv_usec is nanosec ??? */
1785 pse.cpu_user_counter = procentry[i].pi_ru.ru_utime.tv_sec * 1000000 +
1786 procentry[i].pi_ru.ru_utime.tv_usec / 1000;
1789 /* tv_usec is nanosec ??? */
1790 pse.cpu_system_counter = procentry[i].pi_ru.ru_stime.tv_sec * 1000000 +
1791 procentry[i].pi_ru.ru_stime.tv_usec / 1000;
1793 pse.vmem_minflt = 0;
1794 pse.vmem_minflt_counter = procentry[i].pi_minflt;
1795 pse.vmem_majflt = 0;
1796 pse.vmem_majflt_counter = procentry[i].pi_majflt;
1798 pse.vmem_size = procentry[i].pi_tsize + procentry[i].pi_dvm * pagesize;
1799 pse.vmem_rss = (procentry[i].pi_drss + procentry[i].pi_trss) * pagesize;
1810 ps_list_add (cmdline, cargs, &pse);
1811 } /* for (i = 0 .. nprocs) */
1813 if (nprocs < MAXPROCENTRY)
1815 } /* while (getprocs64() > 0) */
1816 ps_submit_state ("running", running);
1817 ps_submit_state ("sleeping", sleeping);
1818 ps_submit_state ("zombies", zombies);
1819 ps_submit_state ("stopped", stopped);
1820 ps_submit_state ("paging", paging);
1821 ps_submit_state ("blocked", blocked);
1823 for (ps = list_head_g; ps != NULL; ps = ps->next)
1824 ps_submit_proc_list (ps);
1825 #endif /* HAVE_PROCINFO_H */
1830 void module_register (void)
1832 plugin_register_config ("processes", ps_config,
1833 config_keys, config_keys_num);
1834 plugin_register_init ("processes", ps_init);
1835 plugin_register_read ("processes", ps_read);
1836 } /* void module_register */