2 * collectd - src/hddtemp.c
3 * Copyright (C) 2005,2006 Vincent Stehlé
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version.
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.
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
20 * Vincent Stehlé <vincent.stehle at free.fr>
21 * Florian octo Forster <octo at verplant.org>
24 * Do a pass, some day, and spare some memory. We consume too much for now
25 * in string buffers and the like.
32 #include "configfile.h"
35 # include <sys/socket.h>
36 # include <netinet/in.h>
37 # include <netinet/tcp.h>
38 # include <libgen.h> /* for basename */
40 #if HAVE_LINUX_MAJOR_H
41 # include <linux/major.h>
44 #define HDDTEMP_DEF_HOST "127.0.0.1"
45 #define HDDTEMP_DEF_PORT "7634"
47 static const char *config_keys[] =
53 static int config_keys_num = STATIC_ARRAY_SIZE (config_keys);
55 typedef struct hddname
63 static hddname_t *first_hddname = NULL;
64 static char *hddtemp_host = NULL;
65 static char hddtemp_port[16];
66 static int translate_devicename = 1;
70 * hddtemp_query_daemon
73 * Connect to the hddtemp daemon and receive data.
76 * `buffer' The buffer where we put the received ascii string.
77 * `buffer_size' Size of the buffer
80 * >= 0 if ok, < 0 otherwise.
83 * Example of possible strings, as received from daemon:
84 * |/dev/hda|ST340014A|36|C|
85 * |/dev/hda|ST380011A|46|C||/dev/hdd|ST340016A|SLP|*|
88 * we need to create a new socket each time. Is there another way?
89 * Hm, maybe we can re-use the `sockaddr' structure? -octo
91 static int hddtemp_query_daemon (char *buffer, int buffer_size)
100 struct addrinfo ai_hints;
101 struct addrinfo *ai_list, *ai_ptr;
104 memset (&ai_hints, '\0', sizeof (ai_hints));
105 ai_hints.ai_flags = 0;
107 ai_hints.ai_flags |= AI_ADDRCONFIG;
109 ai_hints.ai_family = PF_UNSPEC;
110 ai_hints.ai_socktype = SOCK_STREAM;
111 ai_hints.ai_protocol = IPPROTO_TCP;
115 host = HDDTEMP_DEF_HOST;
118 if (strlen (port) == 0)
119 port = HDDTEMP_DEF_PORT;
121 if ((ai_return = getaddrinfo (host, port, &ai_hints, &ai_list)) != 0)
124 ERROR ("hddtemp plugin: getaddrinfo (%s, %s): %s",
126 (ai_return == EAI_SYSTEM)
127 ? sstrerror (errno, errbuf, sizeof (errbuf))
128 : gai_strerror (ai_return));
133 for (ai_ptr = ai_list; ai_ptr != NULL; ai_ptr = ai_ptr->ai_next)
135 /* create our socket descriptor */
136 fd = socket (ai_ptr->ai_family, ai_ptr->ai_socktype,
137 ai_ptr->ai_protocol);
141 ERROR ("hddtemp plugin: socket: %s",
142 sstrerror (errno, errbuf, sizeof (errbuf)));
146 /* connect to the hddtemp daemon */
147 if (connect (fd, (struct sockaddr *) ai_ptr->ai_addr,
151 INFO ("hddtemp plugin: connect (%s, %s) failed: %s",
153 sstrerror (errno, errbuf, sizeof (errbuf)));
159 /* A socket could be opened and connecting succeeded. We're
164 freeaddrinfo (ai_list);
168 ERROR ("hddtemp plugin: Could not connect to daemon.");
172 /* receive data from the hddtemp daemon */
173 memset (buffer, '\0', buffer_size);
176 while ((status = read (fd, buffer + buffer_fill, buffer_size - buffer_fill)) != 0)
182 if ((errno == EAGAIN) || (errno == EINTR))
185 ERROR ("hddtemp plugin: Error reading from socket: %s",
186 sstrerror (errno, errbuf, sizeof (errbuf)));
190 buffer_fill += status;
192 if (buffer_fill >= buffer_size)
196 if (buffer_fill >= buffer_size)
198 buffer[buffer_size - 1] = '\0';
199 WARNING ("hddtemp plugin: Message from hddtemp has been "
202 else if (buffer_fill == 0)
204 WARNING ("hddtemp plugin: Peer has unexpectedly shut down "
205 "the socket. Buffer: `%s'", buffer);
214 static int hddtemp_config (const char *key, const char *value)
216 if (strcasecmp (key, "Host") == 0)
218 if (hddtemp_host != NULL)
220 hddtemp_host = strdup (value);
222 else if (strcasecmp (key, "Port") == 0)
224 int port = (int) (atof (value));
225 if ((port > 0) && (port <= 65535))
226 ssnprintf (hddtemp_port, sizeof (hddtemp_port),
229 sstrncpy (hddtemp_port, value, sizeof (hddtemp_port));
231 else if (strcasecmp (key, "TranslateDevicename") == 0)
233 if ((strcasecmp ("true", value) == 0)
234 || (strcasecmp ("yes", value) == 0)
235 || (strcasecmp ("on", value) == 0))
236 translate_devicename = 1;
238 translate_devicename = 0;
248 /* In the init-function we initialize the `hddname_t' list used to translate
249 * disk-names. Under Linux that's done using `/proc/partitions'. Under other
250 * operating-systems, it's not done at all. */
251 static int hddtemp_init (void)
267 next = first_hddname;
276 first_hddname = NULL;
278 if ((fh = fopen ("/proc/partitions", "r")) != NULL)
280 DEBUG ("hddtemp plugin: Looking at /proc/partitions...");
282 while (fgets (buf, sizeof (buf), fh) != NULL)
284 /* Delete trailing newlines */
285 buflen = strlen (buf);
287 while ((buflen > 0) && ((buf[buflen-1] == '\n') || (buf[buflen-1] == '\r')))
288 buf[--buflen] = '\0';
290 /* We want lines of the form:
294 * ...so, skip everything else. */
298 num_fields = strsplit (buf, fields, 16);
303 major = atoi (fields[0]);
304 minor = atoi (fields[1]);
306 /* We try to keep only entries, which may correspond to
307 * physical disks and that may have a corresponding
308 * entry in the hddtemp daemon. Basically, this means
313 case SCSI_DISK0_MAJOR:
314 case SCSI_DISK1_MAJOR:
315 case SCSI_DISK2_MAJOR:
316 case SCSI_DISK3_MAJOR:
317 case SCSI_DISK4_MAJOR:
318 case SCSI_DISK5_MAJOR:
319 case SCSI_DISK6_MAJOR:
320 case SCSI_DISK7_MAJOR:
321 #ifdef SCSI_DISK8_MAJOR
322 case SCSI_DISK8_MAJOR:
323 case SCSI_DISK9_MAJOR:
324 case SCSI_DISK10_MAJOR:
325 case SCSI_DISK11_MAJOR:
326 case SCSI_DISK12_MAJOR:
327 case SCSI_DISK13_MAJOR:
328 case SCSI_DISK14_MAJOR:
329 case SCSI_DISK15_MAJOR:
330 #endif /* SCSI_DISK8_MAJOR */
331 /* SCSI disks minors are multiples of 16.
332 * Keep only those. */
348 /* IDE disks minors can only be 0 or 64.
349 * Keep only those. */
350 if(minor != 0 && minor != 64)
354 /* Skip all other majors. */
356 DEBUG ("hddtemp plugin: Skipping unknown major %i", major);
358 } /* switch (major) */
360 if ((name = strdup (fields[3])) == NULL)
362 ERROR ("hddtemp plugin: strdup(%s) == NULL", fields[3]);
366 if ((entry = (hddname_t *) malloc (sizeof (hddname_t))) == NULL)
368 ERROR ("hddtemp plugin: malloc (%u) == NULL",
369 (unsigned int) sizeof (hddname_t));
374 DEBUG ("hddtemp plugin: Found disk: %s (%u:%u).", name, major, minor);
376 entry->major = major;
377 entry->minor = minor;
381 if (first_hddname == NULL)
383 first_hddname = entry;
387 entry->next = first_hddname;
388 first_hddname = entry;
397 DEBUG ("hddtemp plugin: Could not open /proc/partitions: %s",
398 sstrerror (errno, errbuf, sizeof (errbuf)));
400 #endif /* COLLECT_DEBUG */
401 #endif /* KERNEL_LINUX */
404 } /* int hddtemp_init */
407 * hddtemp_get_major_minor
410 * Try to "cook" a bit the drive name as returned
411 * by the hddtemp daemon. The intend is to transform disk
412 * names into <major>-<minor> when possible.
414 static char *hddtemp_get_major_minor (char *drive)
419 for (list = first_hddname; list != NULL; list = list->next)
420 if (strcmp (drive, list->name) == 0)
425 DEBUG ("hddtemp plugin: Don't know %s, keeping name as-is.", drive);
426 return (strdup (drive));
429 if ((ret = (char *) malloc (128 * sizeof (char))) == NULL)
432 if (ssnprintf (ret, 128, "%i-%i", list->major, list->minor) >= 128)
441 static void hddtemp_submit (char *type_instance, double value)
444 value_list_t vl = VALUE_LIST_INIT;
446 values[0].gauge = value;
450 vl.time = time (NULL);
451 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
452 sstrncpy (vl.plugin, "hddtemp", sizeof (vl.plugin));
453 sstrncpy (vl.type, "temperature", sizeof (vl.type));
454 sstrncpy (vl.type_instance, type_instance, sizeof (vl.type_instance));
456 plugin_dispatch_values (&vl);
459 static int hddtemp_read (void)
469 /* get data from daemon */
470 if (hddtemp_query_daemon (buf, sizeof (buf)) < 0)
473 /* NB: strtok_r will eat up "||" and leading "|"'s */
477 while ((fields[num_fields] = strtok_r (ptr, "|", &saveptr)) != NULL)
482 if (num_fields >= 128)
486 num_disks = num_fields / 4;
488 for (i = 0; i < num_disks; i++)
490 char *name, *major_minor;
494 mode = fields[4*i + 3];
495 name = basename (fields[4*i + 0]);
497 /* Skip non-temperature information */
498 if (mode[0] != 'C' && mode[0] != 'F')
501 temperature = atof (fields[4*i + 2]);
503 /* Convert farenheit to celsius */
505 temperature = (temperature - 32.0) * 5.0 / 9.0;
507 if (translate_devicename
508 && (major_minor = hddtemp_get_major_minor (name)) != NULL)
510 hddtemp_submit (major_minor, temperature);
515 hddtemp_submit (name, temperature);
520 } /* int hddtemp_read */
523 Register collectd plugin. */
524 void module_register (void)
526 plugin_register_config ("hddtemp", hddtemp_config,
527 config_keys, config_keys_num);
528 plugin_register_init ("hddtemp", hddtemp_init);
529 plugin_register_read ("hddtemp", hddtemp_read);