Merge branch 'collectd-5.4'
[collectd.git] / src / cpu.c
1 /**
2  * collectd - src/cpu.c
3  * Copyright (C) 2005-2014  Florian octo Forster
4  * Copyright (C) 2008       Oleg King
5  * Copyright (C) 2009       Simon Kuhnle
6  * Copyright (C) 2009       Manuel Sanmartin
7  * Copyright (C) 2013-2014  Pierre-Yves Ritschard
8  *
9  * This program is free software; you can redistribute it and/or modify it
10  * under the terms of the GNU General Public License as published by the
11  * Free Software Foundation; only version 2 of the License is applicable.
12  *
13  * This program is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License along
19  * with this program; if not, write to the Free Software Foundation, Inc.,
20  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
21  *
22  * Authors:
23  *   Florian octo Forster <octo at collectd.org>
24  *   Oleg King <king2 at kaluga.ru>
25  *   Simon Kuhnle <simon at blarzwurst.de>
26  *   Manuel Sanmartin
27  *   Pierre-Yves Ritschard <pyr at spootnik.org>
28  **/
29
30 #include "collectd.h"
31 #include "common.h"
32 #include "plugin.h"
33
34 #ifdef HAVE_MACH_KERN_RETURN_H
35 # include <mach/kern_return.h>
36 #endif
37 #ifdef HAVE_MACH_MACH_INIT_H
38 # include <mach/mach_init.h>
39 #endif
40 #ifdef HAVE_MACH_HOST_PRIV_H
41 # include <mach/host_priv.h>
42 #endif
43 #if HAVE_MACH_MACH_ERROR_H
44 #  include <mach/mach_error.h>
45 #endif
46 #ifdef HAVE_MACH_PROCESSOR_INFO_H
47 # include <mach/processor_info.h>
48 #endif
49 #ifdef HAVE_MACH_PROCESSOR_H
50 # include <mach/processor.h>
51 #endif
52 #ifdef HAVE_MACH_VM_MAP_H
53 # include <mach/vm_map.h>
54 #endif
55
56 #ifdef HAVE_LIBKSTAT
57 # include <sys/sysinfo.h>
58 #endif /* HAVE_LIBKSTAT */
59
60 #if (defined(HAVE_SYSCTL) && HAVE_SYSCTL) \
61         || (defined(HAVE_SYSCTLBYNAME) && HAVE_SYSCTLBYNAME)
62 # ifdef HAVE_SYS_SYSCTL_H
63 #  include <sys/sysctl.h>
64 # endif
65
66 # ifdef HAVE_SYS_DKSTAT_H
67 #  include <sys/dkstat.h>
68 # endif
69
70 # if !defined(CP_USER) || !defined(CP_NICE) || !defined(CP_SYS) || !defined(CP_INTR) || !defined(CP_IDLE) || !defined(CPUSTATES)
71 #  define CP_USER   0
72 #  define CP_NICE   1
73 #  define CP_SYS    2
74 #  define CP_INTR   3
75 #  define CP_IDLE   4
76 #  define CPUSTATES 5
77 # endif
78 #endif /* HAVE_SYSCTL || HAVE_SYSCTLBYNAME */
79
80 #if HAVE_SYSCTL
81 # if defined(CTL_HW) && defined(HW_NCPU) \
82         && defined(CTL_KERN) && defined(KERN_CPTIME) && defined(CPUSTATES)
83 #  define CAN_USE_SYSCTL 1
84 # else
85 #  define CAN_USE_SYSCTL 0
86 # endif
87 #else
88 # define CAN_USE_SYSCTL 0
89 #endif
90
91 #define CPU_STATE_USER 0
92 #define CPU_STATE_SYSTEM 1
93 #define CPU_STATE_WAIT 2
94 #define CPU_STATE_NICE 3
95 #define CPU_STATE_SWAP 4
96 #define CPU_STATE_INTERRUPT 5
97 #define CPU_STATE_SOFTIRQ 6
98 #define CPU_STATE_STEAL 7
99 #define CPU_STATE_IDLE 8
100 #define CPU_STATE_ACTIVE 9 /* sum of (!idle) */
101 #define CPU_STATE_MAX 10 /* #states */
102
103 #if HAVE_STATGRAB_H
104 # include <statgrab.h>
105 #endif
106
107 # ifdef HAVE_PERFSTAT
108 #  include <sys/protosw.h>
109 #  include <libperfstat.h>
110 # endif /* HAVE_PERFSTAT */
111
112 #if !PROCESSOR_CPU_LOAD_INFO && !KERNEL_LINUX && !HAVE_LIBKSTAT \
113         && !CAN_USE_SYSCTL && !HAVE_SYSCTLBYNAME && !HAVE_LIBSTATGRAB && !HAVE_PERFSTAT
114 # error "No applicable input method."
115 #endif
116
117 static const char *cpu_state_names[] = {
118         "user",
119         "system",
120         "wait",
121         "nice",
122         "swap",
123         "interrupt",
124         "softirq",
125         "steal",
126         "idle",
127         "active"
128 };
129
130 #ifdef PROCESSOR_CPU_LOAD_INFO
131 static mach_port_t port_host;
132 static processor_port_array_t cpu_list;
133 static mach_msg_type_number_t cpu_list_len;
134 /* #endif PROCESSOR_CPU_LOAD_INFO */
135
136 #elif defined(KERNEL_LINUX)
137 /* no variables needed */
138 /* #endif KERNEL_LINUX */
139
140 #elif defined(HAVE_LIBKSTAT)
141 /* colleague tells me that Sun doesn't sell systems with more than 100 or so CPUs.. */
142 # define MAX_NUMCPU 256
143 extern kstat_ctl_t *kc;
144 static kstat_t *ksp[MAX_NUMCPU];
145 static int numcpu;
146 /* #endif HAVE_LIBKSTAT */
147
148 #elif CAN_USE_SYSCTL
149 static int numcpu;
150 /* #endif CAN_USE_SYSCTL */
151
152 #elif defined(HAVE_SYSCTLBYNAME)
153 static int numcpu;
154 #  ifdef HAVE_SYSCTL_KERN_CP_TIMES
155 static int maxcpu;
156 #  endif /* HAVE_SYSCTL_KERN_CP_TIMES */
157 /* #endif HAVE_SYSCTLBYNAME */
158
159 #elif defined(HAVE_LIBSTATGRAB)
160 /* no variables needed */
161 /* #endif  HAVE_LIBSTATGRAB */
162
163 #elif defined(HAVE_PERFSTAT)
164 static perfstat_cpu_t *perfcpu;
165 static int numcpu;
166 static int pnumcpu;
167 #endif /* HAVE_PERFSTAT */
168
169 #define RATE_ADD(sum, val) do { \
170         if (isnan (sum))        \
171         (sum) = (val);          \
172         else if (!isnan (val))  \
173         (sum) += (val);         \
174 } while (0)
175
176 struct cpu_state_s
177 {
178         value_to_rate_state_t conv;
179         gauge_t rate;
180         _Bool has_value;
181 };
182 typedef struct cpu_state_s cpu_state_t;
183
184 static cpu_state_t *cpu_states = NULL;
185 static size_t cpu_states_num = 0; /* #cpu_states allocated */
186
187 /* Highest CPU number in the current iteration. Used by the dispatch logic to
188  * determine how many CPUs there were. Reset to 0 by cpu_reset(). */
189 static size_t global_cpu_num = 0;
190
191 static _Bool report_by_cpu = 1;
192 static _Bool report_by_state = 1;
193 static _Bool report_percent = 0;
194
195 static const char *config_keys[] =
196 {
197         "ReportByCpu",
198         "ReportByState",
199         "ValuesPercentage"
200 };
201 static int config_keys_num = STATIC_ARRAY_SIZE (config_keys);
202
203 static int cpu_config (char const *key, char const *value) /* {{{ */
204 {
205         if (strcasecmp (key, "ReportByCpu") == 0)
206                 report_by_cpu = IS_TRUE (value) ? 1 : 0;
207         else if (strcasecmp (key, "ValuesPercentage") == 0)
208                 report_percent = IS_TRUE (value) ? 1 : 0;
209         else if (strcasecmp (key, "ReportByState") == 0)
210                 report_by_state = IS_TRUE (value) ? 1 : 0;
211         else
212                 return (-1);
213
214         return (0);
215 } /* }}} int cpu_config */
216
217 static int init (void)
218 {
219 #if PROCESSOR_CPU_LOAD_INFO
220         kern_return_t status;
221
222         port_host = mach_host_self ();
223
224         /* FIXME: Free `cpu_list' if it's not NULL */
225         if ((status = host_processors (port_host, &cpu_list, &cpu_list_len)) != KERN_SUCCESS)
226         {
227                 ERROR ("cpu plugin: host_processors returned %i", (int) status);
228                 cpu_list_len = 0;
229                 return (-1);
230         }
231
232         DEBUG ("host_processors returned %i %s", (int) cpu_list_len, cpu_list_len == 1 ? "processor" : "processors");
233         INFO ("cpu plugin: Found %i processor%s.", (int) cpu_list_len, cpu_list_len == 1 ? "" : "s");
234
235         cpu_temp_retry_max = 86400 / CDTIME_T_TO_TIME_T (plugin_get_interval ());
236 /* #endif PROCESSOR_CPU_LOAD_INFO */
237
238 #elif defined(HAVE_LIBKSTAT)
239         kstat_t *ksp_chain;
240
241         numcpu = 0;
242
243         if (kc == NULL)
244                 return (-1);
245
246         /* Solaris doesn't count linear.. *sigh* */
247         for (numcpu = 0, ksp_chain = kc->kc_chain;
248                         (numcpu < MAX_NUMCPU) && (ksp_chain != NULL);
249                         ksp_chain = ksp_chain->ks_next)
250                 if (strncmp (ksp_chain->ks_module, "cpu_stat", 8) == 0)
251                         ksp[numcpu++] = ksp_chain;
252 /* #endif HAVE_LIBKSTAT */
253
254 #elif CAN_USE_SYSCTL
255         size_t numcpu_size;
256         int mib[2] = {CTL_HW, HW_NCPU};
257         int status;
258
259         numcpu = 0;
260         numcpu_size = sizeof (numcpu);
261
262         status = sysctl (mib, STATIC_ARRAY_SIZE (mib),
263                         &numcpu, &numcpu_size, NULL, 0);
264         if (status == -1)
265         {
266                 char errbuf[1024];
267                 WARNING ("cpu plugin: sysctl: %s",
268                                 sstrerror (errno, errbuf, sizeof (errbuf)));
269                 return (-1);
270         }
271 /* #endif CAN_USE_SYSCTL */
272
273 #elif defined (HAVE_SYSCTLBYNAME)
274         size_t numcpu_size;
275
276         numcpu_size = sizeof (numcpu);
277
278         if (sysctlbyname ("hw.ncpu", &numcpu, &numcpu_size, NULL, 0) < 0)
279         {
280                 char errbuf[1024];
281                 WARNING ("cpu plugin: sysctlbyname(hw.ncpu): %s",
282                                 sstrerror (errno, errbuf, sizeof (errbuf)));
283                 return (-1);
284         }
285
286 #ifdef HAVE_SYSCTL_KERN_CP_TIMES
287         numcpu_size = sizeof (maxcpu);
288
289         if (sysctlbyname("kern.smp.maxcpus", &maxcpu, &numcpu_size, NULL, 0) < 0)
290         {
291                 char errbuf[1024];
292                 WARNING ("cpu plugin: sysctlbyname(kern.smp.maxcpus): %s",
293                                 sstrerror (errno, errbuf, sizeof (errbuf)));
294                 return (-1);
295         }
296 #else
297         if (numcpu != 1)
298                 NOTICE ("cpu: Only one processor supported when using `sysctlbyname' (found %i)", numcpu);
299 #endif
300 /* #endif HAVE_SYSCTLBYNAME */
301
302 #elif defined(HAVE_LIBSTATGRAB)
303         /* nothing to initialize */
304 /* #endif HAVE_LIBSTATGRAB */
305
306 #elif defined(HAVE_PERFSTAT)
307         /* nothing to initialize */
308 #endif /* HAVE_PERFSTAT */
309
310         return (0);
311 } /* int init */
312
313 static void submit_value (int cpu_num, int cpu_state, const char *type, value_t value)
314 {
315         value_t values[1];
316         value_list_t vl = VALUE_LIST_INIT;
317
318         memcpy(&values[0], &value, sizeof(value));
319
320         vl.values = values;
321         vl.values_len = 1;
322
323         sstrncpy (vl.host, hostname_g, sizeof (vl.host));
324         sstrncpy (vl.plugin, "cpu", sizeof (vl.plugin));
325         sstrncpy (vl.type, type, sizeof (vl.type));
326         sstrncpy (vl.type_instance, cpu_state_names[cpu_state],
327                         sizeof (vl.type_instance));
328
329         if (cpu_num >= 0) {
330                 ssnprintf (vl.plugin_instance, sizeof (vl.plugin_instance),
331                                 "%i", cpu_num);
332         }
333         plugin_dispatch_values (&vl);
334 }
335
336 static void submit_percent(int cpu_num, int cpu_state, gauge_t percent)
337 {
338         value_t value;
339
340         /* This function is called for all known CPU states, but each read
341          * method will only report a subset. The remaining states are left as
342          * NAN and we ignore them here. */
343         if (isnan (percent))
344                 return;
345
346         value.gauge = percent;
347         submit_value (cpu_num, cpu_state, "percent", value);
348 }
349
350 static void submit_derive(int cpu_num, int cpu_state, derive_t derive)
351 {
352         value_t value;
353
354         value.derive = derive;
355         submit_value (cpu_num, cpu_state, "cpu", value);
356 }
357
358 /* Takes the zero-index number of a CPU and makes sure that the module-global
359  * cpu_states buffer is large enough. Returne ENOMEM on erorr. */
360 static int cpu_states_alloc (size_t cpu_num) /* {{{ */
361 {
362         cpu_state_t *tmp;
363         size_t sz;
364
365         sz = (((size_t) cpu_num) + 1) * CPU_STATE_MAX;
366         assert (sz > 0);
367
368         /* We already have enough space. */
369         if (cpu_states_num >= sz)
370                 return 0;
371
372         tmp = realloc (cpu_states, sz * sizeof (*cpu_states));
373         if (tmp == NULL)
374         {
375                 ERROR ("cpu plugin: realloc failed.");
376                 return (ENOMEM);
377         }
378         cpu_states = tmp;
379         tmp = cpu_states + cpu_states_num;
380
381         memset (tmp, 0, (sz - cpu_states_num) * sizeof (*cpu_states));
382         cpu_states_num = sz;
383         return 0;
384 } /* }}} cpu_states_alloc */
385
386 static cpu_state_t *get_cpu_state (size_t cpu_num, size_t state) /* {{{ */
387 {
388         size_t index = ((cpu_num * CPU_STATE_MAX) + state);
389
390         if (index >= cpu_states_num)
391                 return (NULL);
392
393         return (&cpu_states[index]);
394 } /* }}} cpu_state_t *get_cpu_state */
395
396 /* Populates the per-CPU CPU_STATE_ACTIVE rate and the global rate_by_state
397  * array. */
398 static void aggregate (gauge_t *sum_by_state) /* {{{ */
399 {
400         size_t cpu_num;
401         size_t state;
402
403         for (state = 0; state < CPU_STATE_MAX; state++)
404                 sum_by_state[state] = NAN;
405
406         for (cpu_num = 0; cpu_num < global_cpu_num; cpu_num++)
407         {
408                 cpu_state_t *this_cpu_states = get_cpu_state (cpu_num, 0);
409
410                 this_cpu_states[CPU_STATE_ACTIVE].rate = NAN;
411
412                 for (state = 0; state < CPU_STATE_ACTIVE; state++)
413                 {
414                         if (!this_cpu_states[state].has_value)
415                                 continue;
416
417                         RATE_ADD (sum_by_state[state], this_cpu_states[state].rate);
418                         if (state != CPU_STATE_IDLE)
419                                 RATE_ADD (this_cpu_states[CPU_STATE_ACTIVE].rate, this_cpu_states[state].rate);
420                 }
421
422                 RATE_ADD (sum_by_state[CPU_STATE_ACTIVE], this_cpu_states[CPU_STATE_ACTIVE].rate);
423         }
424 } /* }}} void aggregate */
425
426 /* Commits (dispatches) the values for one CPU or the global aggregation.
427  * cpu_num is the index of the CPU to be committed or -1 in case of the global
428  * aggregation. rates is a pointer to CPU_STATE_MAX gauge_t values holding the
429  * current rate; each rate may be NAN. Calculates the percentage of each state
430  * and dispatches the metric. */
431 static void cpu_commit_one (int cpu_num, /* {{{ */
432                 gauge_t rates[static CPU_STATE_MAX])
433 {
434         size_t state;
435         gauge_t sum;
436
437         sum = rates[CPU_STATE_ACTIVE];
438         RATE_ADD (sum, rates[CPU_STATE_IDLE]);
439
440         if (!report_by_state)
441         {
442                 gauge_t percent = 100.0 * rates[CPU_STATE_ACTIVE] / sum;
443                 submit_percent (cpu_num, CPU_STATE_ACTIVE, percent);
444                 return;
445         }
446
447         for (state = 0; state < CPU_STATE_ACTIVE; state++)
448         {
449                 gauge_t percent = 100.0 * rates[state] / sum;
450                 submit_percent (cpu_num, state, percent);
451         }
452 } /* }}} void cpu_commit_one */
453
454 /* Resets the internal aggregation. This is called by the read callback after
455  * each iteration / after each call to cpu_commit(). */
456 static void cpu_reset (void) /* {{{ */
457 {
458         size_t i;
459
460         for (i = 0; i < cpu_states_num; i++)
461                 cpu_states[i].has_value = 0;
462
463         global_cpu_num = 0;
464 } /* }}} void cpu_reset */
465
466 /* Legacy behavior: Dispatches the raw derive values without any aggregation. */
467 static void cpu_commit_without_aggregation (void) /* {{{ */
468 {
469         int state;
470
471         for (state = 0; state < CPU_STATE_ACTIVE; state++)
472         {
473                 size_t cpu_num;
474                 if (report_by_cpu) {
475                         for (cpu_num = 0; cpu_num < global_cpu_num; cpu_num++)
476                         {
477                                 cpu_state_t *s = get_cpu_state (cpu_num, state);
478
479                                 if (!s->has_value)
480                                         continue;
481
482                                 submit_derive ((int) cpu_num, (int) state, s->conv.last_value.derive);
483                         }
484                 } else {
485                         derive_t derive_total = 0;
486                         for (cpu_num = 0; cpu_num < global_cpu_num; cpu_num++)
487                                 {
488                                         cpu_state_t *s = get_cpu_state (cpu_num, state);
489
490                                         if (!s->has_value)
491                                                 continue;
492
493                                         derive_total += s->conv.last_value.derive;
494                         
495                                 }
496                         submit_derive (-1, (int) state, derive_total);
497                 }
498         }
499 } /* }}} void cpu_commit_without_aggregation */
500
501 /* Aggregates the internal state and dispatches the metrics. */
502 static void cpu_commit (void) /* {{{ */
503 {
504         gauge_t global_rates[CPU_STATE_MAX] = {
505                 NAN, NAN, NAN, NAN, NAN, NAN, NAN, NAN, NAN, NAN
506         };
507         size_t cpu_num;
508
509         if (report_by_state && !report_percent)
510         {
511                 cpu_commit_without_aggregation ();
512                 return;
513         }
514
515         aggregate (global_rates);
516
517         if (!report_by_cpu)
518         {
519                 cpu_commit_one (-1, global_rates);
520                 return;
521         }
522
523         for (cpu_num = 0; cpu_num < global_cpu_num; cpu_num++)
524         {
525                 cpu_state_t *this_cpu_states = get_cpu_state (cpu_num, 0);
526                 gauge_t local_rates[CPU_STATE_MAX] = {
527                         NAN, NAN, NAN, NAN, NAN, NAN, NAN, NAN, NAN, NAN
528                 };
529                 size_t state;
530
531                 for (state = 0; state < CPU_STATE_ACTIVE; state++)
532                         if (this_cpu_states[state].has_value)
533                                 local_rates[state] = this_cpu_states[state].rate;
534
535                 cpu_commit_one ((int) cpu_num, local_rates);
536         }
537 } /* }}} void cpu_commit */
538
539 /* Adds a derive value to the internal state. This should be used by each read
540  * function for each state. At the end of the iteration, the read function
541  * should call cpu_commit(). */
542 static int cpu_stage (size_t cpu_num, size_t state, derive_t value, cdtime_t now) /* {{{ */
543 {
544         int status;
545         cpu_state_t *s;
546         value_t v;
547
548         if (state >= CPU_STATE_ACTIVE)
549                 return (EINVAL);
550
551         status = cpu_states_alloc (cpu_num);
552         if (status != 0)
553                 return (status);
554
555         if (global_cpu_num <= cpu_num)
556                 global_cpu_num = cpu_num + 1;
557
558         s = get_cpu_state (cpu_num, state);
559
560         v.gauge = NAN;
561         status = value_to_rate (&v, value, &s->conv, DS_TYPE_DERIVE, now);
562         if (status != 0)
563                 return (status);
564
565         s->rate = v.gauge;
566         s->has_value = 1;
567         return (0);
568 } /* }}} int cpu_stage */
569
570 static int cpu_read (void)
571 {
572         cdtime_t now = cdtime ();
573
574 #if PROCESSOR_CPU_LOAD_INFO /* {{{ */
575         int cpu;
576
577         kern_return_t status;
578
579         processor_cpu_load_info_data_t cpu_info;
580         mach_msg_type_number_t         cpu_info_len;
581
582         host_t cpu_host;
583
584         for (cpu = 0; cpu < cpu_list_len; cpu++)
585         {
586                 cpu_host = 0;
587                 cpu_info_len = PROCESSOR_BASIC_INFO_COUNT;
588
589                 status = processor_info (cpu_list[cpu], PROCESSOR_CPU_LOAD_INFO, &cpu_host,
590                                 (processor_info_t) &cpu_info, &cpu_info_len);
591                 if (status != KERN_SUCCESS)
592                 {
593                         ERROR ("cpu plugin: processor_info (PROCESSOR_CPU_LOAD_INFO) failed: %s",
594                                         mach_error_string (status));
595                         continue;
596                 }
597
598                 if (cpu_info_len < CPU_STATE_MAX)
599                 {
600                         ERROR ("cpu plugin: processor_info returned only %i elements..", cpu_info_len);
601                         continue;
602                 }
603
604                 cpu_stage (cpu, CPU_STATE_USER,   (derive_t) cpu_info.cpu_ticks[CPU_STATE_USER],   now);
605                 cpu_stage (cpu, CPU_STATE_NICE,   (derive_t) cpu_info.cpu_ticks[CPU_STATE_NICE],   now);
606                 cpu_stage (cpu, CPU_STATE_SYSTEM, (derive_t) cpu_info.cpu_ticks[CPU_STATE_SYSTEM], now);
607                 cpu_stage (cpu, CPU_STATE_IDLE,   (derive_t) cpu_info.cpu_ticks[CPU_STATE_IDLE],   now);
608         }
609 /* }}} #endif PROCESSOR_CPU_LOAD_INFO */
610
611 #elif defined(KERNEL_LINUX) /* {{{ */
612         int cpu;
613         FILE *fh;
614         char buf[1024];
615
616         char *fields[9];
617         int numfields;
618
619         if ((fh = fopen ("/proc/stat", "r")) == NULL)
620         {
621                 char errbuf[1024];
622                 ERROR ("cpu plugin: fopen (/proc/stat) failed: %s",
623                                 sstrerror (errno, errbuf, sizeof (errbuf)));
624                 return (-1);
625         }
626
627         while (fgets (buf, 1024, fh) != NULL)
628         {
629                 if (strncmp (buf, "cpu", 3))
630                         continue;
631                 if ((buf[3] < '0') || (buf[3] > '9'))
632                         continue;
633
634                 numfields = strsplit (buf, fields, 9);
635                 if (numfields < 5)
636                         continue;
637
638                 cpu = atoi (fields[0] + 3);
639
640                 cpu_stage (cpu, CPU_STATE_USER,   (derive_t) atoll(fields[1]), now);
641                 cpu_stage (cpu, CPU_STATE_NICE,   (derive_t) atoll(fields[2]), now);
642                 cpu_stage (cpu, CPU_STATE_SYSTEM, (derive_t) atoll(fields[3]), now);
643                 cpu_stage (cpu, CPU_STATE_IDLE,   (derive_t) atoll(fields[4]), now);
644
645                 if (numfields >= 8)
646                 {
647                         cpu_stage (cpu, CPU_STATE_WAIT,      (derive_t) atoll(fields[5]), now);
648                         cpu_stage (cpu, CPU_STATE_INTERRUPT, (derive_t) atoll(fields[6]), now);
649                         cpu_stage (cpu, CPU_STATE_SOFTIRQ,   (derive_t) atoll(fields[7]), now);
650
651                         if (numfields >= 9)
652                                 cpu_stage (cpu, CPU_STATE_STEAL, (derive_t) atoll(fields[8]), now);
653                 }
654         }
655         fclose (fh);
656 /* }}} #endif defined(KERNEL_LINUX) */
657
658 #elif defined(HAVE_LIBKSTAT) /* {{{ */
659         int cpu;
660         static cpu_stat_t cs;
661
662         if (kc == NULL)
663                 return (-1);
664
665         for (cpu = 0; cpu < numcpu; cpu++)
666         {
667                 if (kstat_read (kc, ksp[cpu], &cs) == -1)
668                         continue; /* error message? */
669
670                 cpu_stage (ksp[cpu]->ks_instance, CPU_STATE_IDLE,   (derive_t) cs.cpu_sysinfo.cpu[CPU_IDLE],   now);
671                 cpu_stage (ksp[cpu]->ks_instance, CPU_STATE_USER,   (derive_t) cs.cpu_sysinfo.cpu[CPU_USER],   now);
672                 cpu_stage (ksp[cpu]->ks_instance, CPU_STATE_SYSTEM, (derive_t) cs.cpu_sysinfo.cpu[CPU_KERNEL], now);
673                 cpu_stage (ksp[cpu]->ks_instance, CPU_STATE_WAIT,   (derive_t) cs.cpu_sysinfo.cpu[CPU_WAIT],   now);
674         }
675 /* }}} #endif defined(HAVE_LIBKSTAT) */
676
677 #elif CAN_USE_SYSCTL /* {{{ */
678         uint64_t cpuinfo[numcpu][CPUSTATES];
679         size_t cpuinfo_size;
680         int status;
681         int i;
682
683         if (numcpu < 1)
684         {
685                 ERROR ("cpu plugin: Could not determine number of "
686                                 "installed CPUs using sysctl(3).");
687                 return (-1);
688         }
689
690         memset (cpuinfo, 0, sizeof (cpuinfo));
691
692 #if defined(KERN_CPTIME2)
693         if (numcpu > 1) {
694                 for (i = 0; i < numcpu; i++) {
695                         int mib[] = {CTL_KERN, KERN_CPTIME2, i};
696
697                         cpuinfo_size = sizeof (cpuinfo[0]);
698
699                         status = sysctl (mib, STATIC_ARRAY_SIZE (mib),
700                                         cpuinfo[i], &cpuinfo_size, NULL, 0);
701                         if (status == -1) {
702                                 char errbuf[1024];
703                                 ERROR ("cpu plugin: sysctl failed: %s.",
704                                                 sstrerror (errno, errbuf, sizeof (errbuf)));
705                                 return (-1);
706                         }
707                 }
708         }
709         else
710 #endif /* defined(KERN_CPTIME2) */
711         {
712                 int mib[] = {CTL_KERN, KERN_CPTIME};
713                 long cpuinfo_tmp[CPUSTATES];
714
715                 cpuinfo_size = sizeof(cpuinfo_tmp);
716
717                 status = sysctl (mib, STATIC_ARRAY_SIZE (mib),
718                                         &cpuinfo_tmp, &cpuinfo_size, NULL, 0);
719                 if (status == -1)
720                 {
721                         char errbuf[1024];
722                         ERROR ("cpu plugin: sysctl failed: %s.",
723                                         sstrerror (errno, errbuf, sizeof (errbuf)));
724                         return (-1);
725                 }
726
727                 for(i = 0; i < CPUSTATES; i++) {
728                         cpuinfo[0][i] = cpuinfo_tmp[i];
729                 }
730         }
731
732         for (i = 0; i < numcpu; i++) {
733                 cpu_stage (i, CPU_STATE_USER,      (derive_t) cpuinfo[i][CP_USER], now);
734                 cpu_stage (i, CPU_STATE_NICE,      (derive_t) cpuinfo[i][CP_NICE], now);
735                 cpu_stage (i, CPU_STATE_SYSTEM,    (derive_t) cpuinfo[i][CP_SYS], now);
736                 cpu_stage (i, CPU_STATE_IDLE,      (derive_t) cpuinfo[i][CP_IDLE], now);
737                 cpu_stage (i, CPU_STATE_INTERRUPT, (derive_t) cpuinfo[i][CP_INTR], now);
738         }
739 /* }}} #endif CAN_USE_SYSCTL */
740
741 #elif defined(HAVE_SYSCTLBYNAME) && defined(HAVE_SYSCTL_KERN_CP_TIMES) /* {{{ */
742         long cpuinfo[maxcpu][CPUSTATES];
743         size_t cpuinfo_size;
744         int i;
745
746         memset (cpuinfo, 0, sizeof (cpuinfo));
747
748         cpuinfo_size = sizeof (cpuinfo);
749         if (sysctlbyname("kern.cp_times", &cpuinfo, &cpuinfo_size, NULL, 0) < 0)
750         {
751                 char errbuf[1024];
752                 ERROR ("cpu plugin: sysctlbyname failed: %s.",
753                                 sstrerror (errno, errbuf, sizeof (errbuf)));
754                 return (-1);
755         }
756
757         for (i = 0; i < numcpu; i++) {
758                 cpu_stage (i, CPU_STATE_USER,      (derive_t) cpuinfo[i][CP_USER], now);
759                 cpu_stage (i, CPU_STATE_NICE,      (derive_t) cpuinfo[i][CP_NICE], now);
760                 cpu_stage (i, CPU_STATE_SYSTEM,    (derive_t) cpuinfo[i][CP_SYS], now);
761                 cpu_stage (i, CPU_STATE_IDLE,      (derive_t) cpuinfo[i][CP_IDLE], now);
762                 cpu_stage (i, CPU_STATE_INTERRUPT, (derive_t) cpuinfo[i][CP_INTR], now);
763         }
764 /* }}} #endif HAVE_SYSCTL_KERN_CP_TIMES */
765
766 #elif defined(HAVE_SYSCTLBYNAME) /* {{{ */
767         long cpuinfo[CPUSTATES];
768         size_t cpuinfo_size;
769
770         cpuinfo_size = sizeof (cpuinfo);
771
772         if (sysctlbyname("kern.cp_time", &cpuinfo, &cpuinfo_size, NULL, 0) < 0)
773         {
774                 char errbuf[1024];
775                 ERROR ("cpu plugin: sysctlbyname failed: %s.",
776                                 sstrerror (errno, errbuf, sizeof (errbuf)));
777                 return (-1);
778         }
779
780         cpu_stage (0, CPU_STATE_USER,      (derive_t) cpuinfo[CP_USER], now);
781         cpu_stage (0, CPU_STATE_NICE,      (derive_t) cpuinfo[CP_NICE], now);
782         cpu_stage (0, CPU_STATE_SYSTEM,    (derive_t) cpuinfo[CP_SYS], now);
783         cpu_stage (0, CPU_STATE_IDLE,      (derive_t) cpuinfo[CP_IDLE], now);
784         cpu_stage (0, CPU_STATE_INTERRUPT, (derive_t) cpuinfo[CP_INTR], now);
785 /* }}} #endif HAVE_SYSCTLBYNAME */
786
787 #elif defined(HAVE_LIBSTATGRAB) /* {{{ */
788         sg_cpu_stats *cs;
789         cs = sg_get_cpu_stats ();
790
791         if (cs == NULL)
792         {
793                 ERROR ("cpu plugin: sg_get_cpu_stats failed.");
794                 return (-1);
795         }
796
797         cpu_state (0, CPU_STATE_IDLE,   (derive_t) cs->idle);
798         cpu_state (0, CPU_STATE_NICE,   (derive_t) cs->nice);
799         cpu_state (0, CPU_STATE_SWAP,   (derive_t) cs->swap);
800         cpu_state (0, CPU_STATE_SYSTEM, (derive_t) cs->kernel);
801         cpu_state (0, CPU_STATE_USER,   (derive_t) cs->user);
802         cpu_state (0, CPU_STATE_WAIT,   (derive_t) cs->iowait);
803 /* }}} #endif HAVE_LIBSTATGRAB */
804
805 #elif defined(HAVE_PERFSTAT) /* {{{ */
806         perfstat_id_t id;
807         int i, cpus;
808
809         numcpu =  perfstat_cpu(NULL, NULL, sizeof(perfstat_cpu_t), 0);
810         if(numcpu == -1)
811         {
812                 char errbuf[1024];
813                 WARNING ("cpu plugin: perfstat_cpu: %s",
814                         sstrerror (errno, errbuf, sizeof (errbuf)));
815                 return (-1);
816         }
817
818         if (pnumcpu != numcpu || perfcpu == NULL)
819         {
820                 if (perfcpu != NULL)
821                         free(perfcpu);
822                 perfcpu = malloc(numcpu * sizeof(perfstat_cpu_t));
823         }
824         pnumcpu = numcpu;
825
826         id.name[0] = '\0';
827         if ((cpus = perfstat_cpu(&id, perfcpu, sizeof(perfstat_cpu_t), numcpu)) < 0)
828         {
829                 char errbuf[1024];
830                 WARNING ("cpu plugin: perfstat_cpu: %s",
831                         sstrerror (errno, errbuf, sizeof (errbuf)));
832                 return (-1);
833         }
834
835         for (i = 0; i < cpus; i++)
836         {
837                 cpu_stage (i, CPU_STATE_IDLE,   (derive_t) perfcpu[i].idle, now);
838                 cpu_stage (i, CPU_STATE_SYSTEM, (derive_t) perfcpu[i].sys,  now);
839                 cpu_stage (i, CPU_STATE_USER,   (derive_t) perfcpu[i].user, now);
840                 cpu_stage (i, CPU_STATE_WAIT,   (derive_t) perfcpu[i].wait, now);
841         }
842 #endif /* }}} HAVE_PERFSTAT */
843
844         cpu_commit ();
845         cpu_reset ();
846         return (0);
847 }
848
849 void module_register (void)
850 {
851         plugin_register_init ("cpu", init);
852         plugin_register_config ("cpu", cpu_config, config_keys, config_keys_num);
853         plugin_register_read ("cpu", cpu_read);
854 } /* void module_register */
855
856 /* vim: set sw=8 sts=8 noet fdm=marker : */