b60fefa03bd1186aede7264bbc2d6e640ecd38e0
[collectd.git] / src / disk.c
1 /**
2  * collectd - src/disk.c
3  * Copyright (C) 2005-2012  Florian octo Forster
4  * Copyright (C) 2009       Manuel Sanmartin
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  *   Manuel Sanmartin
22  **/
23
24 #include "collectd.h"
25 #include "common.h"
26 #include "plugin.h"
27 #include "utils_ignorelist.h"
28
29 #if HAVE_MACH_MACH_TYPES_H
30 #  include <mach/mach_types.h>
31 #endif
32 #if HAVE_MACH_MACH_INIT_H
33 #  include <mach/mach_init.h>
34 #endif
35 #if HAVE_MACH_MACH_ERROR_H
36 #  include <mach/mach_error.h>
37 #endif
38 #if HAVE_MACH_MACH_PORT_H
39 #  include <mach/mach_port.h>
40 #endif
41 #if HAVE_COREFOUNDATION_COREFOUNDATION_H
42 #  include <CoreFoundation/CoreFoundation.h>
43 #endif
44 #if HAVE_IOKIT_IOKITLIB_H
45 #  include <IOKit/IOKitLib.h>
46 #endif
47 #if HAVE_IOKIT_IOTYPES_H
48 #  include <IOKit/IOTypes.h>
49 #endif
50 #if HAVE_IOKIT_STORAGE_IOBLOCKSTORAGEDRIVER_H
51 #  include <IOKit/storage/IOBlockStorageDriver.h>
52 #endif
53 #if HAVE_IOKIT_IOBSD_H
54 #  include <IOKit/IOBSD.h>
55 #endif
56 #if KERNEL_FREEBSD
57 #include <devstat.h>
58 #include <libgeom.h>
59 #endif
60
61 #if HAVE_LIMITS_H
62 # include <limits.h>
63 #endif
64 #ifndef UINT_MAX
65 #  define UINT_MAX 4294967295U
66 #endif
67
68 #if HAVE_STATGRAB_H
69 # include <statgrab.h>
70 #endif
71
72 #if HAVE_PERFSTAT
73 # ifndef _AIXVERSION_610
74 # include <sys/systemcfg.h>
75 # endif
76 # include <sys/protosw.h>
77 # include <libperfstat.h>
78 #endif
79
80 #if HAVE_IOKIT_IOKITLIB_H
81 static mach_port_t io_master_port = MACH_PORT_NULL;
82 /* This defaults to false for backwards compatibility. Please fix in the next
83  * major version. */
84 static _Bool use_bsd_name = 0;
85 /* #endif HAVE_IOKIT_IOKITLIB_H */
86
87 #elif KERNEL_LINUX
88 typedef struct diskstats
89 {
90         char *name;
91
92         /* This overflows in roughly 1361 years */
93         unsigned int poll_count;
94
95         derive_t read_sectors;
96         derive_t write_sectors;
97
98         derive_t read_bytes;
99         derive_t write_bytes;
100
101         derive_t read_ops;
102         derive_t write_ops;
103         derive_t read_time;
104         derive_t write_time;
105
106         derive_t avg_read_time;
107         derive_t avg_write_time;
108
109         struct diskstats *next;
110 } diskstats_t;
111
112 static diskstats_t *disklist;
113 /* #endif KERNEL_LINUX */
114 #elif KERNEL_FREEBSD
115 static struct gmesh geom_tree;
116 /* #endif KERNEL_FREEBSD */
117
118 #elif HAVE_LIBKSTAT
119 #define MAX_NUMDISK 1024
120 extern kstat_ctl_t *kc;
121 static kstat_t *ksp[MAX_NUMDISK];
122 static int numdisk = 0;
123 /* #endif HAVE_LIBKSTAT */
124
125 #elif defined(HAVE_LIBSTATGRAB)
126 /* #endif HAVE_LIBKSTATGRAB */
127
128 #elif HAVE_PERFSTAT
129 static perfstat_disk_t * stat_disk;
130 static int numdisk;
131 static int pnumdisk;
132 /* #endif HAVE_PERFSTAT */
133
134 #else
135 # error "No applicable input method."
136 #endif
137
138 #if HAVE_LIBUDEV
139 #include <libudev.h>
140
141 static char *conf_udev_name_attr = NULL;
142 static struct udev *handle_udev;
143 #endif
144
145 static const char *config_keys[] =
146 {
147         "Disk",
148         "UseBSDName",
149         "IgnoreSelected",
150         "UdevNameAttr"
151 };
152 static int config_keys_num = STATIC_ARRAY_SIZE (config_keys);
153
154 static ignorelist_t *ignorelist = NULL;
155
156 static int disk_config (const char *key, const char *value)
157 {
158   if (ignorelist == NULL)
159     ignorelist = ignorelist_create (/* invert = */ 1);
160   if (ignorelist == NULL)
161     return (1);
162
163   if (strcasecmp ("Disk", key) == 0)
164   {
165     ignorelist_add (ignorelist, value);
166   }
167   else if (strcasecmp ("IgnoreSelected", key) == 0)
168   {
169     int invert = 1;
170     if (IS_TRUE (value))
171       invert = 0;
172     ignorelist_set_invert (ignorelist, invert);
173   }
174   else if (strcasecmp ("UseBSDName", key) == 0)
175   {
176 #if HAVE_IOKIT_IOKITLIB_H
177     use_bsd_name = IS_TRUE (value) ? 1 : 0;
178 #else
179     WARNING ("disk plugin: The \"UseBSDName\" option is only supported "
180         "on Mach / Mac OS X and will be ignored.");
181 #endif
182   }
183   else if (strcasecmp ("UdevNameAttr", key) == 0)
184   {
185 #if HAVE_LIBUDEV
186     if (conf_udev_name_attr != NULL)
187     {
188       free (conf_udev_name_attr);
189       conf_udev_name_attr = NULL;
190     }
191     if ((conf_udev_name_attr = strdup (value)) == NULL)
192       return (1);
193 #else
194     WARNING ("disk plugin: The \"UdevNameAttr\" option is only supported "
195         "if collectd is built with libudev support");
196 #endif
197   }
198   else
199   {
200     return (-1);
201   }
202
203   return (0);
204 } /* int disk_config */
205
206 static int disk_init (void)
207 {
208 #if HAVE_IOKIT_IOKITLIB_H
209         kern_return_t status;
210
211         if (io_master_port != MACH_PORT_NULL)
212         {
213                 mach_port_deallocate (mach_task_self (),
214                                 io_master_port);
215                 io_master_port = MACH_PORT_NULL;
216         }
217
218         status = IOMasterPort (MACH_PORT_NULL, &io_master_port);
219         if (status != kIOReturnSuccess)
220         {
221                 ERROR ("IOMasterPort failed: %s",
222                                 mach_error_string (status));
223                 io_master_port = MACH_PORT_NULL;
224                 return (-1);
225         }
226 /* #endif HAVE_IOKIT_IOKITLIB_H */
227
228 #elif KERNEL_LINUX
229         /* do nothing */
230 /* #endif KERNEL_LINUX */
231
232 #elif KERNEL_FREEBSD
233         int rv;
234
235         rv = geom_gettree(&geom_tree);
236         if (rv != 0) {
237                 ERROR ("geom_gettree() failed, returned %d", rv);
238                 return (-1);
239         }
240         rv = geom_stats_open();
241         if (rv != 0) {
242                 ERROR ("geom_stats_open() failed, returned %d", rv);
243                 return (-1);
244         }
245 /* #endif KERNEL_FREEBSD */
246
247 #elif HAVE_LIBKSTAT
248         kstat_t *ksp_chain;
249
250         numdisk = 0;
251
252         if (kc == NULL)
253                 return (-1);
254
255         for (numdisk = 0, ksp_chain = kc->kc_chain;
256                         (numdisk < MAX_NUMDISK) && (ksp_chain != NULL);
257                         ksp_chain = ksp_chain->ks_next)
258         {
259                 if (strncmp (ksp_chain->ks_class, "disk", 4)
260                                 && strncmp (ksp_chain->ks_class, "partition", 9))
261                         continue;
262                 if (ksp_chain->ks_type != KSTAT_TYPE_IO)
263                         continue;
264                 ksp[numdisk++] = ksp_chain;
265         }
266 #endif /* HAVE_LIBKSTAT */
267
268         return (0);
269 } /* int disk_init */
270
271 static void disk_submit (const char *plugin_instance,
272                 const char *type,
273                 derive_t read, derive_t write)
274 {
275         value_t values[2];
276         value_list_t vl = VALUE_LIST_INIT;
277
278         /* Both `ignorelist' and `plugin_instance' may be NULL. */
279         if (ignorelist_match (ignorelist, plugin_instance) != 0)
280           return;
281
282         values[0].derive = read;
283         values[1].derive = write;
284
285         vl.values = values;
286         vl.values_len = 2;
287         sstrncpy (vl.host, hostname_g, sizeof (vl.host));
288         sstrncpy (vl.plugin, "disk", sizeof (vl.plugin));
289         sstrncpy (vl.plugin_instance, plugin_instance,
290                         sizeof (vl.plugin_instance));
291         sstrncpy (vl.type, type, sizeof (vl.type));
292
293         plugin_dispatch_values (&vl);
294 } /* void disk_submit */
295
296 #if KERNEL_LINUX
297 static void submit_in_progress (char const *disk_name, gauge_t in_progress)
298 {
299         value_t v;
300         value_list_t vl = VALUE_LIST_INIT;
301
302         if (ignorelist_match (ignorelist, disk_name) != 0)
303           return;
304
305         v.gauge = in_progress;
306
307         vl.values = &v;
308         vl.values_len = 1;
309         sstrncpy (vl.host, hostname_g, sizeof (vl.host));
310         sstrncpy (vl.plugin, "disk", sizeof (vl.plugin));
311         sstrncpy (vl.plugin_instance, disk_name, sizeof (vl.plugin_instance));
312         sstrncpy (vl.type, "pending_operations", sizeof (vl.type));
313
314         plugin_dispatch_values (&vl);
315 }
316
317 static void submit_io_time (char const *plugin_instance, derive_t io_time, derive_t weighted_time)
318 {
319         value_t values[2];
320         value_list_t vl = VALUE_LIST_INIT;
321
322         if (ignorelist_match (ignorelist, plugin_instance) != 0)
323           return;
324
325         values[0].derive = io_time;
326         values[1].derive = weighted_time;
327
328         vl.values = values;
329         vl.values_len = 2;
330         sstrncpy (vl.host, hostname_g, sizeof (vl.host));
331         sstrncpy (vl.plugin, "disk", sizeof (vl.plugin));
332         sstrncpy (vl.plugin_instance, plugin_instance, sizeof (vl.plugin_instance));
333         sstrncpy (vl.type, "disk_io_time", sizeof (vl.type));
334
335         plugin_dispatch_values (&vl);
336 }
337
338
339 static counter_t disk_calc_time_incr (counter_t delta_time, counter_t delta_ops)
340 {
341         double interval = CDTIME_T_TO_DOUBLE (plugin_get_interval ());
342         double avg_time = ((double) delta_time) / ((double) delta_ops);
343         double avg_time_incr = interval * avg_time;
344
345         return ((counter_t) (avg_time_incr + .5));
346 }
347 #endif
348
349 #if HAVE_LIBUDEV
350 /**
351  * Attempt to provide an rename disk instance from an assigned udev attribute.
352  *
353  * On success, it returns a strduped char* to the desired attribute value.
354  * Otherwise it returns NULL.
355  */
356
357 static char *disk_udev_attr_name (struct udev *udev, char *disk_name, const char *attr)
358 {
359         struct udev_device *dev;
360         const char *prop;
361         char *output = NULL;
362
363         dev = udev_device_new_from_subsystem_sysname (udev, "block", disk_name);
364         if (dev != NULL)
365         {
366                 prop = udev_device_get_property_value (dev, attr);
367                 if (prop) {
368                         output = strdup (prop);
369                         DEBUG ("disk plugin: renaming %s => %s", disk_name, output);
370                 }
371                 udev_device_unref (dev);
372         }
373         return output;
374 }
375 #endif
376
377 #if HAVE_IOKIT_IOKITLIB_H
378 static signed long long dict_get_value (CFDictionaryRef dict, const char *key)
379 {
380         signed long long val_int;
381         CFNumberRef      val_obj;
382         CFStringRef      key_obj;
383
384         /* `key_obj' needs to be released. */
385         key_obj = CFStringCreateWithCString (kCFAllocatorDefault, key,
386                         kCFStringEncodingASCII);
387         if (key_obj == NULL)
388         {
389                 DEBUG ("CFStringCreateWithCString (%s) failed.", key);
390                 return (-1LL);
391         }
392         
393         /* get => we don't need to release (== free) the object */
394         val_obj = (CFNumberRef) CFDictionaryGetValue (dict, key_obj);
395
396         CFRelease (key_obj);
397
398         if (val_obj == NULL)
399         {
400                 DEBUG ("CFDictionaryGetValue (%s) failed.", key);
401                 return (-1LL);
402         }
403
404         if (!CFNumberGetValue (val_obj, kCFNumberSInt64Type, &val_int))
405         {
406                 DEBUG ("CFNumberGetValue (%s) failed.", key);
407                 return (-1LL);
408         }
409
410         return (val_int);
411 }
412 #endif /* HAVE_IOKIT_IOKITLIB_H */
413
414 static int disk_read (void)
415 {
416 #if HAVE_IOKIT_IOKITLIB_H
417         io_registry_entry_t     disk;
418         io_registry_entry_t     disk_child;
419         io_iterator_t           disk_list;
420         CFMutableDictionaryRef  props_dict, child_dict;
421         CFDictionaryRef         stats_dict;
422         CFStringRef             tmp_cf_string_ref;
423         kern_return_t           status;
424
425         signed long long read_ops, read_byt, read_tme;
426         signed long long write_ops, write_byt, write_tme;
427
428         int  disk_major, disk_minor;
429         char disk_name[DATA_MAX_NAME_LEN];
430         char child_disk_name_bsd[DATA_MAX_NAME_LEN], props_disk_name_bsd[DATA_MAX_NAME_LEN];
431
432         /* Get the list of all disk objects. */
433         if (IOServiceGetMatchingServices (io_master_port, IOServiceMatching (kIOBlockStorageDriverClass), &disk_list) != kIOReturnSuccess) {
434                 ERROR ("disk plugin: IOServiceGetMatchingServices failed.");
435                 return (-1);
436         }
437
438         while ((disk = IOIteratorNext (disk_list)) != 0) {
439                 props_dict = NULL;
440                 stats_dict = NULL;
441                 child_dict = NULL;
442
443                 /* get child of disk entry and corresponding property dictionary */
444                 if ((status = IORegistryEntryGetChildEntry (disk, kIOServicePlane, &disk_child)) != kIOReturnSuccess) {
445                         /* This fails for example for DVD/CD drives, which we want to ignore anyway */
446                         DEBUG ("IORegistryEntryGetChildEntry (disk) failed: 0x%08x", status);
447                         IOObjectRelease (disk);
448                         continue;
449                 }
450                 if (IORegistryEntryCreateCFProperties (disk_child, (CFMutableDictionaryRef *) &child_dict, kCFAllocatorDefault, kNilOptions) != kIOReturnSuccess || child_dict == NULL) {
451                         ERROR ("disk plugin: IORegistryEntryCreateCFProperties (disk_child) failed.");
452                         IOObjectRelease (disk_child);
453                         IOObjectRelease (disk);
454                         continue;
455                 }
456
457                 /* extract name and major/minor numbers */
458                 memset (child_disk_name_bsd, 0, sizeof (child_disk_name_bsd));
459                 tmp_cf_string_ref = (CFStringRef) CFDictionaryGetValue (child_dict, CFSTR(kIOBSDNameKey));
460                 if (tmp_cf_string_ref) {
461                         assert (CFGetTypeID (tmp_cf_string_ref) == CFStringGetTypeID ());
462                         CFStringGetCString (tmp_cf_string_ref, child_disk_name_bsd, sizeof (child_disk_name_bsd), kCFStringEncodingUTF8);
463                 }
464                 disk_major = (int) dict_get_value (child_dict, kIOBSDMajorKey);
465                 disk_minor = (int) dict_get_value (child_dict, kIOBSDMinorKey);
466                 DEBUG ("disk plugin: child_disk_name_bsd=\"%s\" major=%d minor=%d", child_disk_name_bsd, disk_major, disk_minor);
467                 CFRelease (child_dict);
468                 IOObjectRelease (disk_child);
469
470                 /* get property dictionary of the disk entry itself */
471                 if (IORegistryEntryCreateCFProperties (disk, (CFMutableDictionaryRef *) &props_dict, kCFAllocatorDefault, kNilOptions) != kIOReturnSuccess || props_dict == NULL) {
472                         ERROR ("disk-plugin: IORegistryEntryCreateCFProperties failed.");
473                         IOObjectRelease (disk);
474                         continue;
475                 }
476
477                 /* extract name and stats dictionary */
478                 memset (props_disk_name_bsd, 0, sizeof (props_disk_name_bsd));
479                 tmp_cf_string_ref = (CFStringRef) CFDictionaryGetValue (props_dict, CFSTR(kIOBSDNameKey));
480                 if (tmp_cf_string_ref) {
481                         assert (CFGetTypeID (tmp_cf_string_ref) == CFStringGetTypeID ());
482                         CFStringGetCString (tmp_cf_string_ref, props_disk_name_bsd, sizeof (props_disk_name_bsd), kCFStringEncodingUTF8);
483                 }
484                 stats_dict = (CFDictionaryRef) CFDictionaryGetValue (props_dict, CFSTR (kIOBlockStorageDriverStatisticsKey));
485                 if (stats_dict == NULL) {
486                         ERROR ("disk plugin: CFDictionaryGetValue (%s) failed.", kIOBlockStorageDriverStatisticsKey);
487                         CFRelease (props_dict);
488                         IOObjectRelease (disk);
489                         continue;
490                 }
491                 DEBUG ("disk plugin: props_disk_name_bsd=\"%s\"", props_disk_name_bsd);
492
493                 /* choose name */
494                 if (use_bsd_name) {
495                         if (child_disk_name_bsd[0] != 0)
496                                 sstrncpy (disk_name, child_disk_name_bsd, sizeof (disk_name));
497                         else if (props_disk_name_bsd[0] != 0)
498                                 sstrncpy (disk_name, props_disk_name_bsd, sizeof (disk_name));
499                         else {
500                                 ERROR ("disk plugin: can't find bsd disk name.");
501                                 ssnprintf (disk_name, sizeof (disk_name), "%i-%i", disk_major, disk_minor);
502                         }
503                 }
504                 else
505                         ssnprintf (disk_name, sizeof (disk_name), "%i-%i", disk_major, disk_minor);
506
507                 /* extract the stats */
508                 read_ops  = dict_get_value (stats_dict, kIOBlockStorageDriverStatisticsReadsKey);
509                 read_byt  = dict_get_value (stats_dict, kIOBlockStorageDriverStatisticsBytesReadKey);
510                 read_tme  = dict_get_value (stats_dict, kIOBlockStorageDriverStatisticsTotalReadTimeKey);
511                 write_ops = dict_get_value (stats_dict, kIOBlockStorageDriverStatisticsWritesKey);
512                 write_byt = dict_get_value (stats_dict, kIOBlockStorageDriverStatisticsBytesWrittenKey);
513                 write_tme = dict_get_value (stats_dict, kIOBlockStorageDriverStatisticsTotalWriteTimeKey);
514                 CFRelease (props_dict);
515                 IOObjectRelease (disk);
516
517                 /* and submit */
518                 DEBUG ("disk plugin: disk_name = \"%s\"", disk_name);
519                 if ((read_byt != -1LL) || (write_byt != -1LL))
520                         disk_submit (disk_name, "disk_octets", read_byt, write_byt);
521                 if ((read_ops != -1LL) || (write_ops != -1LL))
522                         disk_submit (disk_name, "disk_ops", read_ops, write_ops);
523                 if ((read_tme != -1LL) || (write_tme != -1LL))
524                         disk_submit (disk_name, "disk_time", read_tme / 1000, write_tme / 1000);
525
526         }
527         IOObjectRelease (disk_list);
528 /* #endif HAVE_IOKIT_IOKITLIB_H */
529
530 #elif KERNEL_FREEBSD
531         int retry, dirty;
532
533         void *snap = NULL;
534         struct devstat *snap_iter;
535
536         struct gident *geom_id;
537
538         const char *disk_name;
539         long double read_time, write_time;
540
541         for (retry = 0, dirty = 1; retry < 5 && dirty == 1; retry++) {
542                 if (snap != NULL)
543                         geom_stats_snapshot_free(snap);
544
545                 /* Get a fresh copy of stats snapshot */
546                 snap = geom_stats_snapshot_get();
547                 if (snap == NULL) {
548                         ERROR("disk plugin: geom_stats_snapshot_get() failed.");
549                         return (-1);
550                 }
551
552                 /* Check if we have dirty read from this snapshot */
553                 dirty = 0;
554                 geom_stats_snapshot_reset(snap);
555                 while ((snap_iter = geom_stats_snapshot_next(snap)) != NULL) {
556                         if (snap_iter->id == NULL)
557                                 continue;
558                         geom_id = geom_lookupid(&geom_tree, snap_iter->id);
559
560                         /* New device? refresh GEOM tree */
561                         if (geom_id == NULL) {
562                                 geom_deletetree(&geom_tree);
563                                 if (geom_gettree(&geom_tree) != 0) {
564                                         ERROR("disk plugin: geom_gettree() failed");
565                                         geom_stats_snapshot_free(snap);
566                                         return (-1);
567                                 }
568                                 geom_id = geom_lookupid(&geom_tree, snap_iter->id);
569                         }
570                         /*
571                          * This should be rare: the device come right before we take the
572                          * snapshot and went away right after it.  We will handle this
573                          * case later, so don't mark dirty but silently ignore it.
574                          */
575                         if (geom_id == NULL)
576                                 continue;
577
578                         /* Only collect PROVIDER data */
579                         if (geom_id->lg_what != ISPROVIDER)
580                                 continue;
581
582                         /* Only collect data when rank is 1 (physical devices) */
583                         if (((struct gprovider *)(geom_id->lg_ptr))->lg_geom->lg_rank != 1)
584                                 continue;
585
586                         /* Check if this is a dirty read quit for another try */
587                         if (snap_iter->sequence0 != snap_iter->sequence1) {
588                                 dirty = 1;
589                                 break;
590                         }
591                 }
592         }
593
594         /* Reset iterator */
595         geom_stats_snapshot_reset(snap);
596         for (;;) {
597                 snap_iter = geom_stats_snapshot_next(snap);
598                 if (snap_iter == NULL)
599                         break;
600
601                 if (snap_iter->id == NULL)
602                         continue;
603                 geom_id = geom_lookupid(&geom_tree, snap_iter->id);
604                 if (geom_id == NULL)
605                         continue;
606                 if (geom_id->lg_what != ISPROVIDER)
607                         continue;
608                 if (((struct gprovider *)(geom_id->lg_ptr))->lg_geom->lg_rank != 1)
609                         continue;
610                 /* Skip dirty reads, if present */
611                 if (dirty && (snap_iter->sequence0 != snap_iter->sequence1))
612                         continue;
613
614                 disk_name = ((struct gprovider *)geom_id->lg_ptr)->lg_name;
615
616                 if ((snap_iter->bytes[DEVSTAT_READ] != 0) || (snap_iter->bytes[DEVSTAT_WRITE] != 0)) {
617                         disk_submit(disk_name, "disk_octets",
618                                         (derive_t)snap_iter->bytes[DEVSTAT_READ],
619                                         (derive_t)snap_iter->bytes[DEVSTAT_WRITE]);
620                 }
621
622                 if ((snap_iter->operations[DEVSTAT_READ] != 0) || (snap_iter->operations[DEVSTAT_WRITE] != 0)) {
623                         disk_submit(disk_name, "disk_ops",
624                                         (derive_t)snap_iter->operations[DEVSTAT_READ],
625                                         (derive_t)snap_iter->operations[DEVSTAT_WRITE]);
626                 }
627
628                 read_time = devstat_compute_etime(&snap_iter->duration[DEVSTAT_READ], NULL);
629                 write_time = devstat_compute_etime(&snap_iter->duration[DEVSTAT_WRITE], NULL);
630                 if ((read_time != 0) || (write_time != 0)) {
631                         disk_submit (disk_name, "disk_time",
632                                         (derive_t)(read_time*1000), (derive_t)(write_time*1000));
633                 }
634         }
635         geom_stats_snapshot_free(snap);
636
637 #elif KERNEL_LINUX
638         FILE *fh;
639         char buffer[1024];
640         
641         char *fields[32];
642         int numfields;
643         int fieldshift = 0;
644
645         int minor = 0;
646
647         derive_t read_sectors  = 0;
648         derive_t write_sectors = 0;
649
650         derive_t read_ops      = 0;
651         derive_t read_merged   = 0;
652         derive_t read_time     = 0;
653         derive_t write_ops     = 0;
654         derive_t write_merged  = 0;
655         derive_t write_time    = 0;
656         gauge_t in_progress    = NAN;
657         derive_t io_time       = 0;
658         derive_t weighted_time = 0;
659         int is_disk = 0;
660
661         diskstats_t *ds, *pre_ds;
662
663         if ((fh = fopen ("/proc/diskstats", "r")) == NULL)
664         {
665                 fh = fopen ("/proc/partitions", "r");
666                 if (fh == NULL)
667                 {
668                         ERROR ("disk plugin: fopen (/proc/{diskstats,partitions}) failed.");
669                         return (-1);
670                 }
671
672                 /* Kernel is 2.4.* */
673                 fieldshift = 1;
674         }
675
676 #if HAVE_LIBUDEV
677         handle_udev = udev_new();
678 #endif
679
680         while (fgets (buffer, sizeof (buffer), fh) != NULL)
681         {
682                 char *disk_name;
683                 char *output_name;
684
685                 numfields = strsplit (buffer, fields, 32);
686
687                 if ((numfields != (14 + fieldshift)) && (numfields != 7))
688                         continue;
689
690                 minor = atoll (fields[1]);
691
692                 disk_name = fields[2 + fieldshift];
693
694                 for (ds = disklist, pre_ds = disklist; ds != NULL; pre_ds = ds, ds = ds->next)
695                         if (strcmp (disk_name, ds->name) == 0)
696                                 break;
697
698                 if (ds == NULL)
699                 {
700                         if ((ds = (diskstats_t *) calloc (1, sizeof (diskstats_t))) == NULL)
701                                 continue;
702
703                         if ((ds->name = strdup (disk_name)) == NULL)
704                         {
705                                 free (ds);
706                                 continue;
707                         }
708
709                         if (pre_ds == NULL)
710                                 disklist = ds;
711                         else
712                                 pre_ds->next = ds;
713                 }
714
715                 is_disk = 0;
716                 if (numfields == 7)
717                 {
718                         /* Kernel 2.6, Partition */
719                         read_ops      = atoll (fields[3]);
720                         read_sectors  = atoll (fields[4]);
721                         write_ops     = atoll (fields[5]);
722                         write_sectors = atoll (fields[6]);
723                 }
724                 else if (numfields == (14 + fieldshift))
725                 {
726                         read_ops  =  atoll (fields[3 + fieldshift]);
727                         write_ops =  atoll (fields[7 + fieldshift]);
728
729                         read_sectors  = atoll (fields[5 + fieldshift]);
730                         write_sectors = atoll (fields[9 + fieldshift]);
731
732                         if ((fieldshift == 0) || (minor == 0))
733                         {
734                                 is_disk = 1;
735                                 read_merged  = atoll (fields[4 + fieldshift]);
736                                 read_time    = atoll (fields[6 + fieldshift]);
737                                 write_merged = atoll (fields[8 + fieldshift]);
738                                 write_time   = atoll (fields[10+ fieldshift]);
739
740                                 in_progress = atof (fields[11 + fieldshift]);
741
742                                 io_time       = atof (fields[12 + fieldshift]);
743                                 weighted_time = atof (fields[13 + fieldshift]);
744                         }
745                 }
746                 else
747                 {
748                         DEBUG ("numfields = %i; => unknown file format.", numfields);
749                         continue;
750                 }
751
752                 {
753                         derive_t diff_read_sectors;
754                         derive_t diff_write_sectors;
755
756                 /* If the counter wraps around, it's only 32 bits.. */
757                         if (read_sectors < ds->read_sectors)
758                                 diff_read_sectors = 1 + read_sectors
759                                         + (UINT_MAX - ds->read_sectors);
760                         else
761                                 diff_read_sectors = read_sectors - ds->read_sectors;
762                         if (write_sectors < ds->write_sectors)
763                                 diff_write_sectors = 1 + write_sectors
764                                         + (UINT_MAX - ds->write_sectors);
765                         else
766                                 diff_write_sectors = write_sectors - ds->write_sectors;
767
768                         ds->read_bytes += 512 * diff_read_sectors;
769                         ds->write_bytes += 512 * diff_write_sectors;
770                         ds->read_sectors = read_sectors;
771                         ds->write_sectors = write_sectors;
772                 }
773
774                 /* Calculate the average time an io-op needs to complete */
775                 if (is_disk)
776                 {
777                         derive_t diff_read_ops;
778                         derive_t diff_write_ops;
779                         derive_t diff_read_time;
780                         derive_t diff_write_time;
781
782                         if (read_ops < ds->read_ops)
783                                 diff_read_ops = 1 + read_ops
784                                         + (UINT_MAX - ds->read_ops);
785                         else
786                                 diff_read_ops = read_ops - ds->read_ops;
787                         DEBUG ("disk plugin: disk_name = %s; read_ops = %"PRIi64"; "
788                                         "ds->read_ops = %"PRIi64"; diff_read_ops = %"PRIi64";",
789                                         disk_name,
790                                         read_ops, ds->read_ops, diff_read_ops);
791
792                         if (write_ops < ds->write_ops)
793                                 diff_write_ops = 1 + write_ops
794                                         + (UINT_MAX - ds->write_ops);
795                         else
796                                 diff_write_ops = write_ops - ds->write_ops;
797
798                         if (read_time < ds->read_time)
799                                 diff_read_time = 1 + read_time
800                                         + (UINT_MAX - ds->read_time);
801                         else
802                                 diff_read_time = read_time - ds->read_time;
803
804                         if (write_time < ds->write_time)
805                                 diff_write_time = 1 + write_time
806                                         + (UINT_MAX - ds->write_time);
807                         else
808                                 diff_write_time = write_time - ds->write_time;
809
810                         if (diff_read_ops != 0)
811                                 ds->avg_read_time += disk_calc_time_incr (
812                                                 diff_read_time, diff_read_ops);
813                         if (diff_write_ops != 0)
814                                 ds->avg_write_time += disk_calc_time_incr (
815                                                 diff_write_time, diff_write_ops);
816
817                         ds->read_ops = read_ops;
818                         ds->read_time = read_time;
819                         ds->write_ops = write_ops;
820                         ds->write_time = write_time;
821                 } /* if (is_disk) */
822
823                 /* Don't write to the RRDs if we've just started.. */
824                 ds->poll_count++;
825                 if (ds->poll_count <= 2)
826                 {
827                         DEBUG ("disk plugin: (ds->poll_count = %i) <= "
828                                         "(min_poll_count = 2); => Not writing.",
829                                         ds->poll_count);
830                         continue;
831                 }
832
833                 if ((read_ops == 0) && (write_ops == 0))
834                 {
835                         DEBUG ("disk plugin: ((read_ops == 0) && "
836                                         "(write_ops == 0)); => Not writing.");
837                         continue;
838                 }
839
840                 output_name = disk_name;
841
842 #if HAVE_LIBUDEV
843                 char *alt_name = disk_udev_attr_name (handle_udev, disk_name, conf_udev_name_attr);
844                 if (alt_name != NULL)
845                         output_name = alt_name;
846 #endif
847
848                 if ((ds->read_bytes != 0) || (ds->write_bytes != 0))
849                         disk_submit (output_name, "disk_octets",
850                                         ds->read_bytes, ds->write_bytes);
851
852                 if ((ds->read_ops != 0) || (ds->write_ops != 0))
853                         disk_submit (output_name, "disk_ops",
854                                         read_ops, write_ops);
855
856                 if ((ds->avg_read_time != 0) || (ds->avg_write_time != 0))
857                         disk_submit (output_name, "disk_time",
858                                         ds->avg_read_time, ds->avg_write_time);
859
860                 if (is_disk)
861                 {
862                         disk_submit (output_name, "disk_merged",
863                                         read_merged, write_merged);
864                         submit_in_progress (output_name, in_progress);
865                         submit_io_time (output_name, io_time, weighted_time);
866                 } /* if (is_disk) */
867
868 #if HAVE_LIBUDEV
869                 /* release udev-based alternate name, if allocated */
870                 sfree (alt_name);
871 #endif
872         } /* while (fgets (buffer, sizeof (buffer), fh) != NULL) */
873
874 #if HAVE_LIBUDEV
875         udev_unref(handle_udev);
876 #endif
877
878         fclose (fh);
879 /* #endif defined(KERNEL_LINUX) */
880
881 #elif HAVE_LIBKSTAT
882 # if HAVE_KSTAT_IO_T_WRITES && HAVE_KSTAT_IO_T_NWRITES && HAVE_KSTAT_IO_T_WTIME
883 #  define KIO_ROCTETS reads
884 #  define KIO_WOCTETS writes
885 #  define KIO_ROPS    nreads
886 #  define KIO_WOPS    nwrites
887 #  define KIO_RTIME   rtime
888 #  define KIO_WTIME   wtime
889 # elif HAVE_KSTAT_IO_T_NWRITTEN && HAVE_KSTAT_IO_T_WRITES && HAVE_KSTAT_IO_T_WTIME
890 #  define KIO_ROCTETS nread
891 #  define KIO_WOCTETS nwritten
892 #  define KIO_ROPS    reads
893 #  define KIO_WOPS    writes
894 #  define KIO_RTIME   rtime
895 #  define KIO_WTIME   wtime
896 # else
897 #  error "kstat_io_t does not have the required members"
898 # endif
899         static kstat_io_t kio;
900         int i;
901
902         if (kc == NULL)
903                 return (-1);
904
905         for (i = 0; i < numdisk; i++)
906         {
907                 if (kstat_read (kc, ksp[i], &kio) == -1)
908                         continue;
909
910                 if (strncmp (ksp[i]->ks_class, "disk", 4) == 0)
911                 {
912                         disk_submit (ksp[i]->ks_name, "disk_octets",
913                                         kio.KIO_ROCTETS, kio.KIO_WOCTETS);
914                         disk_submit (ksp[i]->ks_name, "disk_ops",
915                                         kio.KIO_ROPS, kio.KIO_WOPS);
916                         /* FIXME: Convert this to microseconds if necessary */
917                         disk_submit (ksp[i]->ks_name, "disk_time",
918                                         kio.KIO_RTIME, kio.KIO_WTIME);
919                 }
920                 else if (strncmp (ksp[i]->ks_class, "partition", 9) == 0)
921                 {
922                         disk_submit (ksp[i]->ks_name, "disk_octets",
923                                         kio.KIO_ROCTETS, kio.KIO_WOCTETS);
924                         disk_submit (ksp[i]->ks_name, "disk_ops",
925                                         kio.KIO_ROPS, kio.KIO_WOPS);
926                 }
927         }
928 /* #endif defined(HAVE_LIBKSTAT) */
929
930 #elif defined(HAVE_LIBSTATGRAB)
931         sg_disk_io_stats *ds;
932 # if HAVE_LIBSTATGRAB_0_90
933         size_t disks;
934 # else
935         int disks;
936 #endif
937         int counter;
938         char name[DATA_MAX_NAME_LEN];
939         
940         if ((ds = sg_get_disk_io_stats(&disks)) == NULL)
941                 return (0);
942                 
943         for (counter=0; counter < disks; counter++) {
944                 strncpy(name, ds->disk_name, sizeof(name));
945                 name[sizeof(name)-1] = '\0'; /* strncpy doesn't terminate longer strings */
946                 disk_submit (name, "disk_octets", ds->read_bytes, ds->write_bytes);
947                 ds++;
948         }
949 /* #endif defined(HAVE_LIBSTATGRAB) */
950
951 #elif defined(HAVE_PERFSTAT)
952         derive_t read_sectors;
953         derive_t write_sectors;
954         derive_t read_time;
955         derive_t write_time;
956         derive_t read_ops;
957         derive_t write_ops;
958         perfstat_id_t firstpath;
959         int rnumdisk;
960         int i;
961
962         if ((numdisk = perfstat_disk(NULL, NULL, sizeof(perfstat_disk_t), 0)) < 0) 
963         {
964                 char errbuf[1024];
965                 WARNING ("disk plugin: perfstat_disk: %s",
966                                 sstrerror (errno, errbuf, sizeof (errbuf)));
967                 return (-1);
968         }
969
970         if (numdisk != pnumdisk || stat_disk==NULL) {
971                 if (stat_disk!=NULL) 
972                         free(stat_disk);
973                 stat_disk = (perfstat_disk_t *)calloc(numdisk, sizeof(perfstat_disk_t));
974         } 
975         pnumdisk = numdisk;
976
977         firstpath.name[0]='\0';
978         if ((rnumdisk = perfstat_disk(&firstpath, stat_disk, sizeof(perfstat_disk_t), numdisk)) < 0) 
979         {
980                 char errbuf[1024];
981                 WARNING ("disk plugin: perfstat_disk : %s",
982                                 sstrerror (errno, errbuf, sizeof (errbuf)));
983                 return (-1);
984         }
985
986         for (i = 0; i < rnumdisk; i++) 
987         {
988                 read_sectors = stat_disk[i].rblks*stat_disk[i].bsize;
989                 write_sectors = stat_disk[i].wblks*stat_disk[i].bsize;
990                 disk_submit (stat_disk[i].name, "disk_octets", read_sectors, write_sectors);
991
992                 read_ops = stat_disk[i].xrate;
993                 write_ops = stat_disk[i].xfers - stat_disk[i].xrate;
994                 disk_submit (stat_disk[i].name, "disk_ops", read_ops, write_ops);
995
996                 read_time = stat_disk[i].rserv;
997                 read_time *= ((double)(_system_configuration.Xint)/(double)(_system_configuration.Xfrac)) / 1000000.0;
998                 write_time = stat_disk[i].wserv;
999                 write_time *= ((double)(_system_configuration.Xint)/(double)(_system_configuration.Xfrac)) / 1000000.0;
1000                 disk_submit (stat_disk[i].name, "disk_time", read_time, write_time);
1001         }
1002 #endif /* defined(HAVE_PERFSTAT) */
1003
1004         return (0);
1005 } /* int disk_read */
1006
1007 void module_register (void)
1008 {
1009   plugin_register_config ("disk", disk_config,
1010       config_keys, config_keys_num);
1011   plugin_register_init ("disk", disk_init);
1012   plugin_register_read ("disk", disk_read);
1013 } /* void module_register */