src/Makefile: Don't unnecessarily set plugin specific CXXFLAGS.
[collectd.git] / src / sensors.c
1 /**
2  * collectd - src/sensors.c
3  * Copyright (C) 2005-2008  Florian octo Forster
4  * Copyright (C) 2006       Luboš Staněk
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; only version 2 of the License is applicable.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  *
19  * Authors:
20  *   Florian octo Forster <octo at collectd.org>
21  *
22  *   Lubos Stanek <lubek at users.sourceforge.net> Wed Oct 27, 2006
23  *   - config ExtendedSensorNaming option
24  *   - precise sensor feature selection (chip-bus-address/type-feature)
25  *     with ExtendedSensorNaming
26  *   - more sensor features (finite list)
27  *   - honor sensors.conf's ignored
28  *   - config Sensor option
29  *   - config IgnoreSelected option
30  *
31  *   Henrique de Moraes Holschuh <hmh at debian.org>
32  *   - use default libsensors config file on API 0x400
33  *   - config SensorConfigFile option
34  **/
35
36 #include "collectd.h"
37 #include "common.h"
38 #include "plugin.h"
39 #include "configfile.h"
40 #include "utils_ignorelist.h"
41
42 #if defined(HAVE_SENSORS_SENSORS_H)
43 # include <sensors/sensors.h>
44 #endif
45
46 #if !defined(SENSORS_API_VERSION)
47 # define SENSORS_API_VERSION 0x000
48 #endif
49
50 /*
51  * The sensors library prior to version 3.0 (internal version 0x400) didn't
52  * report the type of values, only a name. The following lists are there to
53  * convert from the names to the type. They are not used with the new
54  * interface.
55  */
56 #if SENSORS_API_VERSION < 0x400
57 static char *sensor_type_name_map[] =
58 {
59 # define SENSOR_TYPE_VOLTAGE     0
60         "voltage",
61 # define SENSOR_TYPE_FANSPEED    1
62         "fanspeed",
63 # define SENSOR_TYPE_TEMPERATURE 2
64         "temperature",
65 # define SENSOR_TYPE_POWER       3
66         "power",
67 # define SENSOR_TYPE_UNKNOWN     4
68         NULL
69 };
70
71 struct sensors_labeltypes_s
72 {
73         char *label;
74         int type;
75 };
76 typedef struct sensors_labeltypes_s sensors_labeltypes_t;
77
78 /* finite list of known labels extracted from lm_sensors */
79 static sensors_labeltypes_t known_features[] =
80 {
81         { "fan1", SENSOR_TYPE_FANSPEED },
82         { "fan2", SENSOR_TYPE_FANSPEED },
83         { "fan3", SENSOR_TYPE_FANSPEED },
84         { "fan4", SENSOR_TYPE_FANSPEED },
85         { "fan5", SENSOR_TYPE_FANSPEED },
86         { "fan6", SENSOR_TYPE_FANSPEED },
87         { "fan7", SENSOR_TYPE_FANSPEED },
88         { "AIN2", SENSOR_TYPE_VOLTAGE },
89         { "AIN1", SENSOR_TYPE_VOLTAGE },
90         { "in10", SENSOR_TYPE_VOLTAGE },
91         { "in9", SENSOR_TYPE_VOLTAGE },
92         { "in8", SENSOR_TYPE_VOLTAGE },
93         { "in7", SENSOR_TYPE_VOLTAGE },
94         { "in6", SENSOR_TYPE_VOLTAGE },
95         { "in5", SENSOR_TYPE_VOLTAGE },
96         { "in4", SENSOR_TYPE_VOLTAGE },
97         { "in3", SENSOR_TYPE_VOLTAGE },
98         { "in2", SENSOR_TYPE_VOLTAGE },
99         { "in0", SENSOR_TYPE_VOLTAGE },
100         { "CPU_Temp", SENSOR_TYPE_TEMPERATURE },
101         { "remote_temp", SENSOR_TYPE_TEMPERATURE },
102         { "temp1", SENSOR_TYPE_TEMPERATURE },
103         { "temp2", SENSOR_TYPE_TEMPERATURE },
104         { "temp3", SENSOR_TYPE_TEMPERATURE },
105         { "temp4", SENSOR_TYPE_TEMPERATURE },
106         { "temp5", SENSOR_TYPE_TEMPERATURE },
107         { "temp6", SENSOR_TYPE_TEMPERATURE },
108         { "temp7", SENSOR_TYPE_TEMPERATURE },
109         { "temp", SENSOR_TYPE_TEMPERATURE },
110         { "Vccp2", SENSOR_TYPE_VOLTAGE },
111         { "Vccp1", SENSOR_TYPE_VOLTAGE },
112         { "vdd", SENSOR_TYPE_VOLTAGE },
113         { "vid5", SENSOR_TYPE_VOLTAGE },
114         { "vid4", SENSOR_TYPE_VOLTAGE },
115         { "vid3", SENSOR_TYPE_VOLTAGE },
116         { "vid2", SENSOR_TYPE_VOLTAGE },
117         { "vid1", SENSOR_TYPE_VOLTAGE },
118         { "vid", SENSOR_TYPE_VOLTAGE },
119         { "vin4", SENSOR_TYPE_VOLTAGE },
120         { "vin3", SENSOR_TYPE_VOLTAGE },
121         { "vin2", SENSOR_TYPE_VOLTAGE },
122         { "vin1", SENSOR_TYPE_VOLTAGE },
123         { "voltbatt", SENSOR_TYPE_VOLTAGE },
124         { "volt12", SENSOR_TYPE_VOLTAGE },
125         { "volt5", SENSOR_TYPE_VOLTAGE },
126         { "vrm", SENSOR_TYPE_VOLTAGE },
127         { "5.0V", SENSOR_TYPE_VOLTAGE },
128         { "5V", SENSOR_TYPE_VOLTAGE },
129         { "3.3V", SENSOR_TYPE_VOLTAGE },
130         { "2.5V", SENSOR_TYPE_VOLTAGE },
131         { "2.0V", SENSOR_TYPE_VOLTAGE },
132         { "12V", SENSOR_TYPE_VOLTAGE },
133         { "power1", SENSOR_TYPE_POWER }
134 };
135 static int known_features_num = STATIC_ARRAY_SIZE (known_features);
136 /* end new naming */
137 #endif /* SENSORS_API_VERSION < 0x400 */
138
139 static const char *config_keys[] =
140 {
141         "Sensor",
142         "IgnoreSelected",
143         "SensorConfigFile",
144         "UseLabels"
145 };
146 static int config_keys_num = STATIC_ARRAY_SIZE (config_keys);
147
148 #if SENSORS_API_VERSION < 0x400
149 typedef struct featurelist
150 {
151         const sensors_chip_name    *chip;
152         const sensors_feature_data *data;
153         int                         type;
154         struct featurelist         *next;
155 } featurelist_t;
156
157 # ifndef SENSORS_CONF_PATH
158 #  define SENSORS_CONF_PATH "/etc/sensors.conf"
159 # endif
160 static char *conffile = SENSORS_CONF_PATH;
161 /* #endif SENSORS_API_VERSION < 0x400 */
162
163 #elif (SENSORS_API_VERSION >= 0x400) && (SENSORS_API_VERSION < 0x500)
164 typedef struct featurelist
165 {
166         const sensors_chip_name    *chip;
167         const sensors_feature      *feature;
168         const sensors_subfeature   *subfeature;
169         struct featurelist         *next;
170 } featurelist_t;
171
172 static char *conffile = NULL;
173 static _Bool use_labels = 0;
174 /* #endif (SENSORS_API_VERSION >= 0x400) && (SENSORS_API_VERSION < 0x500) */
175
176 #else /* if SENSORS_API_VERSION >= 0x500 */
177 # error "This version of libsensors is not supported yet. Please report this " \
178         "as bug."
179 #endif
180
181 static featurelist_t *first_feature = NULL;
182 static ignorelist_t *sensor_list;
183
184 #if SENSORS_API_VERSION < 0x400
185 /* full chip name logic borrowed from lm_sensors */
186 static int sensors_snprintf_chip_name (char *buf, size_t buf_size,
187                 const sensors_chip_name *chip)
188 {
189         int status = -1;
190
191         if (chip->bus == SENSORS_CHIP_NAME_BUS_ISA)
192         {
193                 status = ssnprintf (buf, buf_size,
194                                 "%s-isa-%04x",
195                                 chip->prefix,
196                                 chip->addr);
197         }
198         else if (chip->bus == SENSORS_CHIP_NAME_BUS_DUMMY)
199         {
200                 status = snprintf (buf, buf_size, "%s-%s-%04x",
201                                 chip->prefix,
202                                 chip->busname,
203                                 chip->addr);
204         }
205         else
206         {
207                 status = snprintf (buf, buf_size, "%s-i2c-%d-%02x",
208                                 chip->prefix,
209                                 chip->bus,
210                                 chip->addr);
211         }
212
213         return (status);
214 } /* int sensors_snprintf_chip_name */
215
216 static int sensors_feature_name_to_type (const char *name)
217 {
218         int i;
219
220         /* Yes, this is slow, but it's only ever done during initialization, so
221          * it's a one time cost.. */
222         for (i = 0; i < known_features_num; i++)
223                 if (strcasecmp (known_features[i].label, name) == 0)
224                         return (known_features[i].type);
225
226         return (SENSOR_TYPE_UNKNOWN);
227 } /* int sensors_feature_name_to_type */
228 #endif
229
230 static int sensors_config (const char *key, const char *value)
231 {
232         if (sensor_list == NULL)
233                 sensor_list = ignorelist_create (1);
234
235         /* TODO: This setting exists for compatibility with old versions of
236          * lm-sensors. Remove support for those ancient versions in the next
237          * major release. */
238         if (strcasecmp (key, "SensorConfigFile") == 0)
239         {
240                 char *tmp = strdup (value);
241                 if (tmp != NULL)
242                 {
243                         sfree (conffile);
244                         conffile = tmp;
245                 }
246         }
247         else if (strcasecmp (key, "Sensor") == 0)
248         {
249                 if (ignorelist_add (sensor_list, value))
250                 {
251                         ERROR ("sensors plugin: "
252                                         "Cannot add value to ignorelist.");
253                         return (1);
254                 }
255         }
256         else if (strcasecmp (key, "IgnoreSelected") == 0)
257         {
258                 ignorelist_set_invert (sensor_list, 1);
259                 if (IS_TRUE (value))
260                         ignorelist_set_invert (sensor_list, 0);
261         }
262 #if (SENSORS_API_VERSION >= 0x400) && (SENSORS_API_VERSION < 0x500)
263         else if (strcasecmp (key, "UseLabels") == 0)
264         {
265                 use_labels = IS_TRUE (value) ? 1 : 0;
266         }
267 #endif
268         else
269         {
270                 return (-1);
271         }
272
273         return (0);
274 }
275
276 static void sensors_free_features (void)
277 {
278         featurelist_t *thisft;
279         featurelist_t *nextft;
280
281         if (first_feature == NULL)
282                 return;
283
284         sensors_cleanup ();
285
286         for (thisft = first_feature; thisft != NULL; thisft = nextft)
287         {
288                 nextft = thisft->next;
289                 sfree (thisft);
290         }
291         first_feature = NULL;
292 }
293
294 static int sensors_load_conf (void)
295 {
296         static int call_once = 0;
297
298         FILE *fh = NULL;
299         featurelist_t *last_feature = NULL;
300
301         const sensors_chip_name *chip;
302         int chip_num;
303
304         int status;
305
306         if (call_once)
307                 return 0;
308
309         call_once = 1;
310
311         if (conffile != NULL)
312         {
313                 fh = fopen (conffile, "r");
314                 if (fh == NULL)
315                 {
316                         char errbuf[1024];
317                         ERROR ("sensors plugin: fopen(%s) failed: %s", conffile,
318                                         sstrerror (errno, errbuf, sizeof (errbuf)));
319                         return (-1);
320                 }
321         }
322
323         status = sensors_init (fh);
324         if (fh)
325                 fclose (fh);
326
327         if (status != 0)
328         {
329                 ERROR ("sensors plugin: Cannot initialize sensors. "
330                                 "Data will not be collected.");
331                 return (-1);
332         }
333
334 #if SENSORS_API_VERSION < 0x400
335         chip_num = 0;
336         while ((chip = sensors_get_detected_chips (&chip_num)) != NULL)
337         {
338                 int feature_num0 = 0;
339                 int feature_num1 = 0;
340
341                 while (42)
342                 {
343                         const sensors_feature_data *feature;
344                         int feature_type;
345                         featurelist_t *fl;
346
347                         feature = sensors_get_all_features (*chip,
348                                         &feature_num0, &feature_num1);
349
350                         /* Check if all features have been read. */
351                         if (feature == NULL)
352                                 break;
353
354                         /* "master features" only */
355                         if (feature->mapping != SENSORS_NO_MAPPING)
356                         {
357                                 DEBUG ("sensors plugin: sensors_load_conf: "
358                                                 "Ignoring subfeature `%s', "
359                                                 "because (feature->mapping "
360                                                 "!= SENSORS_NO_MAPPING).",
361                                                 feature->name);
362                                 continue;
363                         }
364
365                         /* skip ignored in sensors.conf */
366                         if (sensors_get_ignored (*chip, feature->number) == 0)
367                         {
368                                 DEBUG ("sensors plugin: sensors_load_conf: "
369                                                 "Ignoring subfeature `%s', "
370                                                 "because "
371                                                 "`sensors_get_ignored' told "
372                                                 "me so.",
373                                                 feature->name);
374                                 continue;
375                         }
376
377                         feature_type = sensors_feature_name_to_type (
378                                         feature->name);
379                         if (feature_type == SENSOR_TYPE_UNKNOWN)
380                         {
381                                 DEBUG ("sensors plugin: sensors_load_conf: "
382                                                 "Ignoring subfeature `%s', "
383                                                 "because its type is "
384                                                 "unknown.",
385                                                 feature->name);
386                                 continue;
387                         }
388
389                         fl = calloc (1, sizeof (*fl));
390                         if (fl == NULL)
391                         {
392                                 ERROR ("sensors plugin: calloc failed.");
393                                 continue;
394                         }
395
396                         fl->chip = chip;
397                         fl->data = feature;
398                         fl->type = feature_type;
399
400                         if (first_feature == NULL)
401                                 first_feature = fl;
402                         else
403                                 last_feature->next = fl;
404                         last_feature = fl;
405                 } /* while sensors_get_all_features */
406         } /* while sensors_get_detected_chips */
407 /* #endif SENSORS_API_VERSION < 0x400 */
408
409 #elif (SENSORS_API_VERSION >= 0x400) && (SENSORS_API_VERSION < 0x500)
410         chip_num = 0;
411         while ((chip = sensors_get_detected_chips (NULL, &chip_num)) != NULL)
412         {
413                 const sensors_feature *feature;
414                 int feature_num = 0;
415
416                 while ((feature = sensors_get_features (chip, &feature_num)) != NULL)
417                 {
418                         const sensors_subfeature *subfeature;
419                         int subfeature_num = 0;
420
421                         /* Only handle voltage, fanspeeds and temperatures */
422                         if ((feature->type != SENSORS_FEATURE_IN)
423                                         && (feature->type != SENSORS_FEATURE_FAN)
424                                         && (feature->type != SENSORS_FEATURE_TEMP)
425                                         && (feature->type != SENSORS_FEATURE_POWER))
426                         {
427                                 DEBUG ("sensors plugin: sensors_load_conf: "
428                                                 "Ignoring feature `%s', "
429                                                 "because its type is not "
430                                                 "supported.", feature->name);
431                                 continue;
432                         }
433
434                         while ((subfeature = sensors_get_all_subfeatures (chip,
435                                                         feature, &subfeature_num)) != NULL)
436                         {
437                                 featurelist_t *fl;
438
439                                 if ((subfeature->type != SENSORS_SUBFEATURE_IN_INPUT)
440                                                 && (subfeature->type != SENSORS_SUBFEATURE_FAN_INPUT)
441                                                 && (subfeature->type != SENSORS_SUBFEATURE_TEMP_INPUT)
442                                                 && (subfeature->type != SENSORS_SUBFEATURE_POWER_INPUT))
443                                         continue;
444
445                                 fl = calloc (1, sizeof (*fl));
446                                 if (fl == NULL)
447                                 {
448                                         ERROR ("sensors plugin: calloc failed.");
449                                         continue;
450                                 }
451
452                                 fl->chip = chip;
453                                 fl->feature = feature;
454                                 fl->subfeature = subfeature;
455
456                                 if (first_feature == NULL)
457                                         first_feature = fl;
458                                 else
459                                         last_feature->next = fl;
460                                 last_feature  = fl;
461                         } /* while (subfeature) */
462                 } /* while (feature) */
463         } /* while (chip) */
464 #endif /* (SENSORS_API_VERSION >= 0x400) && (SENSORS_API_VERSION < 0x500) */
465
466         if (first_feature == NULL)
467         {
468                 sensors_cleanup ();
469                 INFO ("sensors plugin: lm_sensors reports no "
470                                 "features. Data will not be collected.");
471                 return (-1);
472         }
473
474         return (0);
475 } /* int sensors_load_conf */
476
477 static int sensors_shutdown (void)
478 {
479         sensors_free_features ();
480         ignorelist_free (sensor_list);
481
482         return (0);
483 } /* int sensors_shutdown */
484
485 static void sensors_submit (const char *plugin_instance,
486                 const char *type, const char *type_instance,
487                 double val)
488 {
489         char match_key[1024];
490         int status;
491
492         value_t values[1];
493         value_list_t vl = VALUE_LIST_INIT;
494
495         status = ssnprintf (match_key, sizeof (match_key), "%s/%s-%s",
496                         plugin_instance, type, type_instance);
497         if (status < 1)
498                 return;
499
500         if (sensor_list != NULL)
501         {
502                 DEBUG ("sensors plugin: Checking ignorelist for `%s'", match_key);
503                 if (ignorelist_match (sensor_list, match_key))
504                         return;
505         }
506
507         values[0].gauge = val;
508
509         vl.values = values;
510         vl.values_len = 1;
511
512         sstrncpy (vl.host, hostname_g, sizeof (vl.host));
513         sstrncpy (vl.plugin, "sensors", sizeof (vl.plugin));
514         sstrncpy (vl.plugin_instance, plugin_instance,
515                         sizeof (vl.plugin_instance));
516         sstrncpy (vl.type, type, sizeof (vl.type));
517         sstrncpy (vl.type_instance, type_instance, sizeof (vl.type_instance));
518
519         plugin_dispatch_values (&vl);
520 } /* void sensors_submit */
521
522 static int sensors_read (void)
523 {
524         featurelist_t *fl;
525
526         if (sensors_load_conf () != 0)
527                 return (-1);
528
529 #if SENSORS_API_VERSION < 0x400
530         for (fl = first_feature; fl != NULL; fl = fl->next)
531         {
532                 double value;
533                 int status;
534                 char plugin_instance[DATA_MAX_NAME_LEN];
535                 char type_instance[DATA_MAX_NAME_LEN];
536
537                 status = sensors_get_feature (*fl->chip,
538                                 fl->data->number, &value);
539                 if (status < 0)
540                         continue;
541
542                 status = sensors_snprintf_chip_name (plugin_instance,
543                                 sizeof (plugin_instance), fl->chip);
544                 if (status < 0)
545                         continue;
546
547                 sstrncpy (type_instance, fl->data->name,
548                                 sizeof (type_instance));
549
550                 sensors_submit (plugin_instance,
551                                 sensor_type_name_map[fl->type],
552                                 type_instance,
553                                 value);
554         } /* for fl = first_feature .. NULL */
555 /* #endif SENSORS_API_VERSION < 0x400 */
556
557 #elif (SENSORS_API_VERSION >= 0x400) && (SENSORS_API_VERSION < 0x500)
558         for (fl = first_feature; fl != NULL; fl = fl->next)
559         {
560                 double value;
561                 int status;
562                 char plugin_instance[DATA_MAX_NAME_LEN];
563                 char type_instance[DATA_MAX_NAME_LEN];
564                 char *sensor_label;
565                 const char *type;
566
567                 status = sensors_get_value (fl->chip,
568                                 fl->subfeature->number, &value);
569                 if (status < 0)
570                         continue;
571
572                 status = sensors_snprintf_chip_name (plugin_instance,
573                                 sizeof (plugin_instance), fl->chip);
574                 if (status < 0)
575                         continue;
576
577                 if (use_labels)
578                 {
579                         sensor_label = sensors_get_label (fl->chip, fl->feature);
580                         sstrncpy (type_instance, sensor_label, sizeof (type_instance));
581                         free (sensor_label);
582                 }
583                 else
584                 {
585                         sstrncpy (type_instance, fl->feature->name,
586                                         sizeof (type_instance));
587                 }
588
589                 if (fl->feature->type == SENSORS_FEATURE_IN)
590                         type = "voltage";
591                 else if (fl->feature->type
592                                 == SENSORS_FEATURE_FAN)
593                         type = "fanspeed";
594                 else if (fl->feature->type
595                                 == SENSORS_FEATURE_TEMP)
596                         type = "temperature";
597                 else if (fl->feature->type
598                                 == SENSORS_FEATURE_POWER)
599                         type = "power";
600                 else
601                         continue;
602
603                 sensors_submit (plugin_instance, type, type_instance, value);
604         } /* for fl = first_feature .. NULL */
605 #endif /* (SENSORS_API_VERSION >= 0x400) && (SENSORS_API_VERSION < 0x500) */
606
607         return (0);
608 } /* int sensors_read */
609
610 void module_register (void)
611 {
612         plugin_register_config ("sensors", sensors_config,
613                         config_keys, config_keys_num);
614         plugin_register_read ("sensors", sensors_read);
615         plugin_register_shutdown ("sensors", sensors_shutdown);
616 } /* void module_register */