Merge branch 'st/python'
[collectd.git] / src / cpu.c
1 /**
2  * collectd - src/cpu.c
3  * Copyright (C) 2005-2009  Florian octo Forster
4  * Copyright (C) 2008       Oleg King
5  * Copyright (C) 2009       Simon Kuhnle
6  *
7  * This program is free software; you can redistribute it and/or modify it
8  * under the terms of the GNU General Public License as published by the
9  * Free Software Foundation; only version 2 of the License is applicable.
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  *   Florian octo Forster <octo at verplant.org>
22  *   Oleg King <king2 at kaluga.ru>
23  *   Simon Kuhnle <simon at blarzwurst.de>
24  **/
25
26 #include "collectd.h"
27 #include "common.h"
28 #include "plugin.h"
29
30 #ifdef HAVE_MACH_KERN_RETURN_H
31 # include <mach/kern_return.h>
32 #endif
33 #ifdef HAVE_MACH_MACH_INIT_H
34 # include <mach/mach_init.h>
35 #endif
36 #ifdef 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 #ifdef HAVE_MACH_PROCESSOR_INFO_H
43 # include <mach/processor_info.h>
44 #endif
45 #ifdef HAVE_MACH_PROCESSOR_H
46 # include <mach/processor.h>
47 #endif
48 #ifdef HAVE_MACH_VM_MAP_H
49 # include <mach/vm_map.h>
50 #endif
51
52 #ifdef HAVE_LIBKSTAT
53 # include <sys/sysinfo.h>
54 #endif /* HAVE_LIBKSTAT */
55
56 #if (defined(HAVE_SYSCTL) && HAVE_SYSCTL) \
57         || (defined(HAVE_SYSCTLBYNAME) && HAVE_SYSCTLBYNAME)
58 # ifdef HAVE_SYS_SYSCTL_H
59 #  include <sys/sysctl.h>
60 # endif
61
62 # ifdef HAVE_SYS_DKSTAT_H
63 #  include <sys/dkstat.h>
64 # endif
65
66 # if !defined(CP_USER) || !defined(CP_NICE) || !defined(CP_SYS) || !defined(CP_INTR) || !defined(CP_IDLE) || !defined(CPUSTATES)
67 #  define CP_USER   0
68 #  define CP_NICE   1
69 #  define CP_SYS    2
70 #  define CP_INTR   3
71 #  define CP_IDLE   4
72 #  define CPUSTATES 5
73 # endif
74 #endif /* HAVE_SYSCTL || HAVE_SYSCTLBYNAME */
75
76 #if HAVE_SYSCTL
77 # if defined(CTL_HW) && defined(HW_NCPU) \
78         && defined(CTL_KERN) && defined(KERN_CPTIME) && defined(CPUSTATES)
79 #  define CAN_USE_SYSCTL 1
80 # else
81 #  define CAN_USE_SYSCTL 0
82 # endif
83 #else
84 # define CAN_USE_SYSCTL 0
85 #endif
86
87 #if HAVE_STATGRAB_H
88 # include <statgrab.h>
89 #endif
90
91 #if !PROCESSOR_CPU_LOAD_INFO && !KERNEL_LINUX && !HAVE_LIBKSTAT \
92         && !CAN_USE_SYSCTL && !HAVE_SYSCTLBYNAME && !HAVE_LIBSTATGRAB
93 # error "No applicable input method."
94 #endif
95
96 #ifdef PROCESSOR_CPU_LOAD_INFO
97 static mach_port_t port_host;
98 static processor_port_array_t cpu_list;
99 static mach_msg_type_number_t cpu_list_len;
100
101 #if PROCESSOR_TEMPERATURE
102 static int cpu_temp_retry_counter = 0;
103 static int cpu_temp_retry_step    = 1;
104 static int cpu_temp_retry_max     = 1;
105 #endif /* PROCESSOR_TEMPERATURE */
106 /* #endif PROCESSOR_CPU_LOAD_INFO */
107
108 #elif defined(KERNEL_LINUX)
109 /* no variables needed */
110 /* #endif KERNEL_LINUX */
111
112 #elif defined(HAVE_LIBKSTAT)
113 /* colleague tells me that Sun doesn't sell systems with more than 100 or so CPUs.. */
114 # define MAX_NUMCPU 256
115 extern kstat_ctl_t *kc;
116 static kstat_t *ksp[MAX_NUMCPU];
117 static int numcpu;
118 /* #endif HAVE_LIBKSTAT */
119
120 #elif CAN_USE_SYSCTL
121 static int numcpu;
122 /* #endif CAN_USE_SYSCTL */
123
124 #elif defined(HAVE_SYSCTLBYNAME)
125 static int numcpu;
126 #  ifdef HAVE_SYSCTL_KERN_CP_TIMES
127 static int maxcpu;
128 #  endif /* HAVE_SYSCTL_KERN_CP_TIMES */
129 /* #endif HAVE_SYSCTLBYNAME */
130
131 #elif defined(HAVE_LIBSTATGRAB)
132 /* no variables needed */
133 #endif /* HAVE_LIBSTATGRAB */
134
135 static int init (void)
136 {
137 #if PROCESSOR_CPU_LOAD_INFO || PROCESSOR_TEMPERATURE
138         kern_return_t status;
139
140         port_host = mach_host_self ();
141
142         /* FIXME: Free `cpu_list' if it's not NULL */
143         if ((status = host_processors (port_host, &cpu_list, &cpu_list_len)) != KERN_SUCCESS)
144         {
145                 ERROR ("cpu plugin: host_processors returned %i", (int) status);
146                 cpu_list_len = 0;
147                 return (-1);
148         }
149
150         DEBUG ("host_processors returned %i %s", (int) cpu_list_len, cpu_list_len == 1 ? "processor" : "processors");
151         INFO ("cpu plugin: Found %i processor%s.", (int) cpu_list_len, cpu_list_len == 1 ? "" : "s");
152
153         cpu_temp_retry_max = 86400 / interval_g;
154 /* #endif PROCESSOR_CPU_LOAD_INFO */
155
156 #elif defined(HAVE_LIBKSTAT)
157         kstat_t *ksp_chain;
158
159         numcpu = 0;
160
161         if (kc == NULL)
162                 return (-1);
163
164         /* Solaris doesn't count linear.. *sigh* */
165         for (numcpu = 0, ksp_chain = kc->kc_chain;
166                         (numcpu < MAX_NUMCPU) && (ksp_chain != NULL);
167                         ksp_chain = ksp_chain->ks_next)
168                 if (strncmp (ksp_chain->ks_module, "cpu_stat", 8) == 0)
169                         ksp[numcpu++] = ksp_chain;
170 /* #endif HAVE_LIBKSTAT */
171
172 #elif CAN_USE_SYSCTL
173         size_t numcpu_size;
174         int mib[2] = {CTL_HW, HW_NCPU};
175         int status;
176
177         numcpu = 0;
178         numcpu_size = sizeof (numcpu);
179
180         status = sysctl (mib, STATIC_ARRAY_SIZE (mib),
181                         &numcpu, &numcpu_size, NULL, 0);
182         if (status == -1)
183         {
184                 char errbuf[1024];
185                 WARNING ("cpu plugin: sysctl: %s",
186                                 sstrerror (errno, errbuf, sizeof (errbuf)));
187                 return (-1);
188         }
189 /* #endif CAN_USE_SYSCTL */
190
191 #elif defined (HAVE_SYSCTLBYNAME)
192         size_t numcpu_size;
193
194         numcpu_size = sizeof (numcpu);
195
196         if (sysctlbyname ("hw.ncpu", &numcpu, &numcpu_size, NULL, 0) < 0)
197         {
198                 char errbuf[1024];
199                 WARNING ("cpu plugin: sysctlbyname(hw.ncpu): %s",
200                                 sstrerror (errno, errbuf, sizeof (errbuf)));
201                 return (-1);
202         }
203
204 #ifdef HAVE_SYSCTL_KERN_CP_TIMES
205         numcpu_size = sizeof (maxcpu);
206
207         if (sysctlbyname("kern.smp.maxcpus", &maxcpu, &numcpu_size, NULL, 0) < 0)
208         {
209                 char errbuf[1024];
210                 WARNING ("cpu plugin: sysctlbyname(kern.smp.maxcpus): %s",
211                                 sstrerror (errno, errbuf, sizeof (errbuf)));
212                 return (-1);
213         }
214 #else
215         if (numcpu != 1)
216                 NOTICE ("cpu: Only one processor supported when using `sysctlbyname' (found %i)", numcpu);
217 #endif
218 /* #endif HAVE_SYSCTLBYNAME */
219
220 #elif defined(HAVE_LIBSTATGRAB)
221         /* nothing to initialize */
222 #endif /* HAVE_LIBSTATGRAB */
223
224         return (0);
225 } /* int init */
226
227 static void submit (int cpu_num, const char *type_instance, counter_t value)
228 {
229         value_t values[1];
230         value_list_t vl = VALUE_LIST_INIT;
231
232         values[0].counter = value;
233
234         vl.values = values;
235         vl.values_len = 1;
236         sstrncpy (vl.host, hostname_g, sizeof (vl.host));
237         sstrncpy (vl.plugin, "cpu", sizeof (vl.plugin));
238         ssnprintf (vl.plugin_instance, sizeof (vl.plugin_instance),
239                         "%i", cpu_num);
240         sstrncpy (vl.type, "cpu", sizeof (vl.type));
241         sstrncpy (vl.type_instance, type_instance, sizeof (vl.type_instance));
242
243         plugin_dispatch_values (&vl);
244 }
245
246 static int cpu_read (void)
247 {
248 #if PROCESSOR_CPU_LOAD_INFO || PROCESSOR_TEMPERATURE
249         int cpu;
250
251         kern_return_t status;
252         
253 #if PROCESSOR_CPU_LOAD_INFO
254         processor_cpu_load_info_data_t cpu_info;
255         mach_msg_type_number_t         cpu_info_len;
256 #endif
257 #if PROCESSOR_TEMPERATURE
258         processor_info_data_t          cpu_temp;
259         mach_msg_type_number_t         cpu_temp_len;
260 #endif
261
262         host_t cpu_host;
263
264         for (cpu = 0; cpu < cpu_list_len; cpu++)
265         {
266 #if PROCESSOR_CPU_LOAD_INFO
267                 cpu_host = 0;
268                 cpu_info_len = PROCESSOR_BASIC_INFO_COUNT;
269
270                 if ((status = processor_info (cpu_list[cpu],
271                                                 PROCESSOR_CPU_LOAD_INFO, &cpu_host,
272                                                 (processor_info_t) &cpu_info, &cpu_info_len)) != KERN_SUCCESS)
273                 {
274                         ERROR ("cpu plugin: processor_info failed with status %i", (int) status);
275                         continue;
276                 }
277
278                 if (cpu_info_len < CPU_STATE_MAX)
279                 {
280                         ERROR ("cpu plugin: processor_info returned only %i elements..", cpu_info_len);
281                         continue;
282                 }
283
284                 submit (cpu, "user", (counter_t) cpu_info.cpu_ticks[CPU_STATE_USER]);
285                 submit (cpu, "nice", (counter_t) cpu_info.cpu_ticks[CPU_STATE_NICE]);
286                 submit (cpu, "system", (counter_t) cpu_info.cpu_ticks[CPU_STATE_SYSTEM]);
287                 submit (cpu, "idle", (counter_t) cpu_info.cpu_ticks[CPU_STATE_IDLE]);
288 #endif /* PROCESSOR_CPU_LOAD_INFO */
289 #if PROCESSOR_TEMPERATURE
290                 /*
291                  * Not all Apple computers do have this ability. To minimize
292                  * the messages sent to the syslog we do an exponential
293                  * stepback if `processor_info' fails. We still try ~once a day
294                  * though..
295                  */
296                 if (cpu_temp_retry_counter > 0)
297                 {
298                         cpu_temp_retry_counter--;
299                         continue;
300                 }
301
302                 cpu_temp_len = PROCESSOR_INFO_MAX;
303
304                 status = processor_info (cpu_list[cpu],
305                                 PROCESSOR_TEMPERATURE,
306                                 &cpu_host,
307                                 cpu_temp, &cpu_temp_len);
308                 if (status != KERN_SUCCESS)
309                 {
310                         ERROR ("cpu plugin: processor_info failed: %s",
311                                         mach_error_string (status));
312
313                         cpu_temp_retry_counter = cpu_temp_retry_step;
314                         cpu_temp_retry_step *= 2;
315                         if (cpu_temp_retry_step > cpu_temp_retry_max)
316                                 cpu_temp_retry_step = cpu_temp_retry_max;
317
318                         continue;
319                 }
320
321                 if (cpu_temp_len != 1)
322                 {
323                         DEBUG ("processor_info (PROCESSOR_TEMPERATURE) returned %i elements..?",
324                                         (int) cpu_temp_len);
325                         continue;
326                 }
327
328                 cpu_temp_retry_counter = 0;
329                 cpu_temp_retry_step    = 1;
330
331                 DEBUG ("cpu_temp = %i", (int) cpu_temp);
332 #endif /* PROCESSOR_TEMPERATURE */
333         }
334 /* #endif PROCESSOR_CPU_LOAD_INFO */
335
336 #elif defined(KERNEL_LINUX)
337         int cpu;
338         counter_t user, nice, syst, idle;
339         counter_t wait, intr, sitr; /* sitr == soft interrupt */
340         FILE *fh;
341         char buf[1024];
342
343         char *fields[9];
344         int numfields;
345
346         if ((fh = fopen ("/proc/stat", "r")) == NULL)
347         {
348                 char errbuf[1024];
349                 ERROR ("cpu plugin: fopen (/proc/stat) failed: %s",
350                                 sstrerror (errno, errbuf, sizeof (errbuf)));
351                 return (-1);
352         }
353
354         while (fgets (buf, 1024, fh) != NULL)
355         {
356                 if (strncmp (buf, "cpu", 3))
357                         continue;
358                 if ((buf[3] < '0') || (buf[3] > '9'))
359                         continue;
360
361                 numfields = strsplit (buf, fields, 9);
362                 if (numfields < 5)
363                         continue;
364
365                 cpu = atoi (fields[0] + 3);
366                 user = atoll (fields[1]);
367                 nice = atoll (fields[2]);
368                 syst = atoll (fields[3]);
369                 idle = atoll (fields[4]);
370
371                 submit (cpu, "user", user);
372                 submit (cpu, "nice", nice);
373                 submit (cpu, "system", syst);
374                 submit (cpu, "idle", idle);
375
376                 if (numfields >= 8)
377                 {
378                         wait = atoll (fields[5]);
379                         intr = atoll (fields[6]);
380                         sitr = atoll (fields[7]);
381
382                         submit (cpu, "wait", wait);
383                         submit (cpu, "interrupt", intr);
384                         submit (cpu, "softirq", sitr);
385
386                         if (numfields >= 9)
387                                 submit (cpu, "steal", atoll (fields[8]));
388                 }
389         }
390
391         fclose (fh);
392 /* #endif defined(KERNEL_LINUX) */
393
394 #elif defined(HAVE_LIBKSTAT)
395         int cpu;
396         counter_t user, syst, idle, wait;
397         static cpu_stat_t cs;
398
399         if (kc == NULL)
400                 return (-1);
401
402         for (cpu = 0; cpu < numcpu; cpu++)
403         {
404                 if (kstat_read (kc, ksp[cpu], &cs) == -1)
405                         continue; /* error message? */
406
407                 idle = (counter_t) cs.cpu_sysinfo.cpu[CPU_IDLE];
408                 user = (counter_t) cs.cpu_sysinfo.cpu[CPU_USER];
409                 syst = (counter_t) cs.cpu_sysinfo.cpu[CPU_KERNEL];
410                 wait = (counter_t) cs.cpu_sysinfo.cpu[CPU_WAIT];
411
412                 submit (ksp[cpu]->ks_instance, "user", user);
413                 submit (ksp[cpu]->ks_instance, "system", syst);
414                 submit (ksp[cpu]->ks_instance, "idle", idle);
415                 submit (ksp[cpu]->ks_instance, "wait", wait);
416         }
417 /* #endif defined(HAVE_LIBKSTAT) */
418
419 #elif CAN_USE_SYSCTL
420         uint64_t cpuinfo[numcpu][CPUSTATES];
421         size_t cpuinfo_size;
422         int status;
423         int i;
424
425         if (numcpu < 1)
426         {
427                 ERROR ("cpu plugin: Could not determine number of "
428                                 "installed CPUs using sysctl(3).");
429                 return (-1);
430         }
431
432         memset (cpuinfo, 0, sizeof (cpuinfo));
433
434 #if defined(KERN_CPTIME2)
435         if (numcpu > 1) {
436                 for (i = 0; i < numcpu; i++) {
437                         int mib[] = {CTL_KERN, KERN_CPTIME2, i};
438
439                         cpuinfo_size = sizeof (cpuinfo[0]);
440
441                         status = sysctl (mib, STATIC_ARRAY_SIZE (mib),
442                                         cpuinfo[i], &cpuinfo_size, NULL, 0);
443                         if (status == -1) {
444                                 char errbuf[1024];
445                                 ERROR ("cpu plugin: sysctl failed: %s.",
446                                                 sstrerror (errno, errbuf, sizeof (errbuf)));
447                                 return (-1);
448                         }
449                 }
450         }
451         else
452 #endif /* defined(KERN_CPTIME2) */
453         {
454                 int mib[] = {CTL_KERN, KERN_CPTIME};
455                 long cpuinfo_tmp[CPUSTATES];
456
457                 cpuinfo_size = sizeof(cpuinfo_tmp);
458
459                 status = sysctl (mib, STATIC_ARRAY_SIZE (mib),
460                                         &cpuinfo_tmp, &cpuinfo_size, NULL, 0);
461                 if (status == -1)
462                 {
463                         char errbuf[1024];
464                         ERROR ("cpu plugin: sysctl failed: %s.",
465                                         sstrerror (errno, errbuf, sizeof (errbuf)));
466                         return (-1);
467                 }
468
469                 for(i = 0; i < CPUSTATES; i++) {
470                         cpuinfo[0][i] = cpuinfo_tmp[i];
471                 }
472         }
473
474         for (i = 0; i < numcpu; i++) {
475                 submit (i, "user",      cpuinfo[i][CP_USER]);
476                 submit (i, "nice",      cpuinfo[i][CP_NICE]);
477                 submit (i, "system",    cpuinfo[i][CP_SYS]);
478                 submit (i, "idle",      cpuinfo[i][CP_IDLE]);
479                 submit (i, "interrupt", cpuinfo[i][CP_INTR]);
480         }
481 /* #endif CAN_USE_SYSCTL */
482 #elif defined(HAVE_SYSCTLBYNAME) && defined(HAVE_SYSCTL_KERN_CP_TIMES)
483         long cpuinfo[maxcpu][CPUSTATES];
484         size_t cpuinfo_size;
485         int i;
486
487         memset (cpuinfo, 0, sizeof (cpuinfo));
488
489         cpuinfo_size = sizeof (cpuinfo);
490         if (sysctlbyname("kern.cp_times", &cpuinfo, &cpuinfo_size, NULL, 0) < 0)
491         {
492                 char errbuf[1024];
493                 ERROR ("cpu plugin: sysctlbyname failed: %s.",
494                                 sstrerror (errno, errbuf, sizeof (errbuf)));
495                 return (-1);
496         }
497
498         for (i = 0; i < numcpu; i++) {
499                 submit (i, "user", cpuinfo[i][CP_USER]);
500                 submit (i, "nice", cpuinfo[i][CP_NICE]);
501                 submit (i, "system", cpuinfo[i][CP_SYS]);
502                 submit (i, "idle", cpuinfo[i][CP_IDLE]);
503                 submit (i, "interrupt", cpuinfo[i][CP_INTR]);
504         }
505 /* #endif HAVE_SYSCTL_KERN_CP_TIMES */
506 #elif defined(HAVE_SYSCTLBYNAME)
507         long cpuinfo[CPUSTATES];
508         size_t cpuinfo_size;
509
510         cpuinfo_size = sizeof (cpuinfo);
511
512         if (sysctlbyname("kern.cp_time", &cpuinfo, &cpuinfo_size, NULL, 0) < 0)
513         {
514                 char errbuf[1024];
515                 ERROR ("cpu plugin: sysctlbyname failed: %s.",
516                                 sstrerror (errno, errbuf, sizeof (errbuf)));
517                 return (-1);
518         }
519
520         submit (0, "user", cpuinfo[CP_USER]);
521         submit (0, "nice", cpuinfo[CP_NICE]);
522         submit (0, "system", cpuinfo[CP_SYS]);
523         submit (0, "idle", cpuinfo[CP_IDLE]);
524         submit (0, "interrupt", cpuinfo[CP_INTR]);
525 /* #endif HAVE_SYSCTLBYNAME */
526
527 #elif defined(HAVE_LIBSTATGRAB)
528         sg_cpu_stats *cs;
529         cs = sg_get_cpu_stats ();
530
531         if (cs == NULL)
532         {
533                 ERROR ("cpu plugin: sg_get_cpu_stats failed.");
534                 return (-1);
535         }
536
537         submit (0, "idle",   (counter_t) cs->idle);
538         submit (0, "nice",   (counter_t) cs->nice);
539         submit (0, "swap",   (counter_t) cs->swap);
540         submit (0, "system", (counter_t) cs->kernel);
541         submit (0, "user",   (counter_t) cs->user);
542         submit (0, "wait",   (counter_t) cs->iowait);
543 #endif /* HAVE_LIBSTATGRAB */
544
545         return (0);
546 }
547
548 void module_register (void)
549 {
550         plugin_register_init ("cpu", init);
551         plugin_register_read ("cpu", cpu_read);
552 } /* void module_register */