Merge branch 'collectd-5.8'
[collectd.git] / src / df.c
1 /**
2  * collectd - src/df.c
3  * Copyright (C) 2005-2009  Florian octo Forster
4  * Copyright (C) 2009       Paul Sadauskas
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  *   Paul Sadauskas <psadauskas at gmail.com>
22  **/
23
24 #include "collectd.h"
25
26 #include "common.h"
27 #include "plugin.h"
28 #include "utils_ignorelist.h"
29 #include "utils_mount.h"
30
31 #if HAVE_STATVFS
32 #if HAVE_SYS_STATVFS_H
33 #include <sys/statvfs.h>
34 #endif
35 #define STATANYFS statvfs
36 #define STATANYFS_STR "statvfs"
37 #define BLOCKSIZE(s) ((s).f_frsize ? (s).f_frsize : (s).f_bsize)
38 #elif HAVE_STATFS
39 #if HAVE_SYS_STATFS_H
40 #include <sys/statfs.h>
41 #endif
42 #define STATANYFS statfs
43 #define STATANYFS_STR "statfs"
44 #define BLOCKSIZE(s) (s).f_bsize
45 #else
46 #error "No applicable input method."
47 #endif
48
49 static const char *config_keys[] = {
50     "Device",         "MountPoint",   "FSType",         "IgnoreSelected",
51     "ReportByDevice", "ReportInodes", "ValuesAbsolute", "ValuesPercentage"};
52 static int config_keys_num = STATIC_ARRAY_SIZE(config_keys);
53
54 static ignorelist_t *il_device;
55 static ignorelist_t *il_mountpoint;
56 static ignorelist_t *il_fstype;
57
58 static bool by_device;
59 static bool report_inodes;
60 static bool values_absolute = true;
61 static bool values_percentage;
62
63 static int df_init(void) {
64   if (il_device == NULL)
65     il_device = ignorelist_create(1);
66   if (il_mountpoint == NULL)
67     il_mountpoint = ignorelist_create(1);
68   if (il_fstype == NULL)
69     il_fstype = ignorelist_create(1);
70
71   return 0;
72 }
73
74 static int df_config(const char *key, const char *value) {
75   df_init();
76
77   if (strcasecmp(key, "Device") == 0) {
78     if (ignorelist_add(il_device, value))
79       return 1;
80     return 0;
81   } else if (strcasecmp(key, "MountPoint") == 0) {
82     if (ignorelist_add(il_mountpoint, value))
83       return 1;
84     return 0;
85   } else if (strcasecmp(key, "FSType") == 0) {
86     if (ignorelist_add(il_fstype, value))
87       return 1;
88     return 0;
89   } else if (strcasecmp(key, "IgnoreSelected") == 0) {
90     if (IS_TRUE(value)) {
91       ignorelist_set_invert(il_device, 0);
92       ignorelist_set_invert(il_mountpoint, 0);
93       ignorelist_set_invert(il_fstype, 0);
94     } else {
95       ignorelist_set_invert(il_device, 1);
96       ignorelist_set_invert(il_mountpoint, 1);
97       ignorelist_set_invert(il_fstype, 1);
98     }
99     return 0;
100   } else if (strcasecmp(key, "ReportByDevice") == 0) {
101     if (IS_TRUE(value))
102       by_device = true;
103
104     return 0;
105   } else if (strcasecmp(key, "ReportInodes") == 0) {
106     if (IS_TRUE(value))
107       report_inodes = true;
108     else
109       report_inodes = false;
110
111     return 0;
112   } else if (strcasecmp(key, "ValuesAbsolute") == 0) {
113     if (IS_TRUE(value))
114       values_absolute = true;
115     else
116       values_absolute = false;
117
118     return 0;
119   } else if (strcasecmp(key, "ValuesPercentage") == 0) {
120     if (IS_TRUE(value))
121       values_percentage = true;
122     else
123       values_percentage = false;
124
125     return 0;
126   }
127
128   return -1;
129 }
130
131 __attribute__((nonnull(2))) static void df_submit_one(char *plugin_instance,
132                                                       const char *type,
133                                                       const char *type_instance,
134                                                       gauge_t value) {
135   value_list_t vl = VALUE_LIST_INIT;
136
137   vl.values = &(value_t){.gauge = value};
138   vl.values_len = 1;
139   sstrncpy(vl.plugin, "df", sizeof(vl.plugin));
140   if (plugin_instance != NULL)
141     sstrncpy(vl.plugin_instance, plugin_instance, sizeof(vl.plugin_instance));
142   sstrncpy(vl.type, type, sizeof(vl.type));
143   if (type_instance != NULL)
144     sstrncpy(vl.type_instance, type_instance, sizeof(vl.type_instance));
145
146   plugin_dispatch_values(&vl);
147 } /* void df_submit_one */
148
149 static int df_read(void) {
150 #if HAVE_STATVFS
151   struct statvfs statbuf;
152 #elif HAVE_STATFS
153   struct statfs statbuf;
154 #endif
155   int retval = 0;
156   /* struct STATANYFS statbuf; */
157   cu_mount_t *mnt_list;
158
159   mnt_list = NULL;
160   if (cu_mount_getlist(&mnt_list) == NULL) {
161     ERROR("df plugin: cu_mount_getlist failed.");
162     return -1;
163   }
164
165   for (cu_mount_t *mnt_ptr = mnt_list; mnt_ptr != NULL;
166        mnt_ptr = mnt_ptr->next) {
167     unsigned long long blocksize;
168     char disk_name[256];
169     cu_mount_t *dup_ptr;
170     uint64_t blk_free;
171     uint64_t blk_reserved;
172     uint64_t blk_used;
173
174     char const *dev =
175         (mnt_ptr->spec_device != NULL) ? mnt_ptr->spec_device : mnt_ptr->device;
176
177     if (ignorelist_match(il_device, dev))
178       continue;
179     if (ignorelist_match(il_mountpoint, mnt_ptr->dir))
180       continue;
181     if (ignorelist_match(il_fstype, mnt_ptr->type))
182       continue;
183
184     /* search for duplicates *in front of* the current mnt_ptr. */
185     for (dup_ptr = mnt_list; dup_ptr != NULL; dup_ptr = dup_ptr->next) {
186       /* No duplicate found: mnt_ptr is the first of its kind. */
187       if (dup_ptr == mnt_ptr) {
188         dup_ptr = NULL;
189         break;
190       }
191
192       /* Duplicate found: leave non-NULL dup_ptr. */
193       if (by_device && (mnt_ptr->spec_device != NULL) &&
194           (dup_ptr->spec_device != NULL) &&
195           (strcmp(mnt_ptr->spec_device, dup_ptr->spec_device) == 0))
196         break;
197       else if (!by_device && (strcmp(mnt_ptr->dir, dup_ptr->dir) == 0))
198         break;
199     }
200
201     /* ignore duplicates */
202     if (dup_ptr != NULL)
203       continue;
204
205     if (STATANYFS(mnt_ptr->dir, &statbuf) < 0) {
206       ERROR(STATANYFS_STR "(%s) failed: %s", mnt_ptr->dir, STRERRNO);
207       continue;
208     }
209
210     if (!statbuf.f_blocks)
211       continue;
212
213     if (by_device) {
214       /* eg, /dev/hda1  -- strip off the "/dev/" */
215       if (strncmp(dev, "/dev/", strlen("/dev/")) == 0)
216         sstrncpy(disk_name, dev + strlen("/dev/"), sizeof(disk_name));
217       else
218         sstrncpy(disk_name, dev, sizeof(disk_name));
219
220       if (strlen(disk_name) < 1) {
221         DEBUG("df: no device name for mountpoint %s, skipping", mnt_ptr->dir);
222         continue;
223       }
224     } else {
225       if (strcmp(mnt_ptr->dir, "/") == 0)
226         sstrncpy(disk_name, "root", sizeof(disk_name));
227       else {
228         int len;
229
230         sstrncpy(disk_name, mnt_ptr->dir + 1, sizeof(disk_name));
231         len = strlen(disk_name);
232
233         for (int i = 0; i < len; i++)
234           if (disk_name[i] == '/')
235             disk_name[i] = '-';
236       }
237     }
238
239     blocksize = BLOCKSIZE(statbuf);
240
241 /*
242  * Sanity-check for the values in the struct
243  */
244 /* Check for negative "available" byes. For example UFS can
245  * report negative free space for user. Notice. blk_reserved
246  * will start to diminish after this. */
247 #if HAVE_STATVFS
248     /* Cast and temporary variable are needed to avoid
249      * compiler warnings.
250      * ((struct statvfs).f_bavail is unsigned (POSIX)) */
251     int64_t signed_bavail = (int64_t)statbuf.f_bavail;
252     if (signed_bavail < 0)
253       statbuf.f_bavail = 0;
254 #elif HAVE_STATFS
255     if (statbuf.f_bavail < 0)
256       statbuf.f_bavail = 0;
257 #endif
258     /* Make sure that f_blocks >= f_bfree >= f_bavail */
259     if (statbuf.f_bfree < statbuf.f_bavail)
260       statbuf.f_bfree = statbuf.f_bavail;
261     if (statbuf.f_blocks < statbuf.f_bfree)
262       statbuf.f_blocks = statbuf.f_bfree;
263
264     blk_free = (uint64_t)statbuf.f_bavail;
265     blk_reserved = (uint64_t)(statbuf.f_bfree - statbuf.f_bavail);
266     blk_used = (uint64_t)(statbuf.f_blocks - statbuf.f_bfree);
267
268     if (values_absolute) {
269       df_submit_one(disk_name, "df_complex", "free",
270                     (gauge_t)(blk_free * blocksize));
271       df_submit_one(disk_name, "df_complex", "reserved",
272                     (gauge_t)(blk_reserved * blocksize));
273       df_submit_one(disk_name, "df_complex", "used",
274                     (gauge_t)(blk_used * blocksize));
275     }
276
277     if (values_percentage) {
278       if (statbuf.f_blocks > 0) {
279         df_submit_one(disk_name, "percent_bytes", "free",
280                       (gauge_t)((float_t)(blk_free) / statbuf.f_blocks * 100));
281         df_submit_one(
282             disk_name, "percent_bytes", "reserved",
283             (gauge_t)((float_t)(blk_reserved) / statbuf.f_blocks * 100));
284         df_submit_one(disk_name, "percent_bytes", "used",
285                       (gauge_t)((float_t)(blk_used) / statbuf.f_blocks * 100));
286       } else {
287         retval = -1;
288         break;
289       }
290     }
291
292     /* inode handling */
293     if (report_inodes && statbuf.f_files != 0 && statbuf.f_ffree != 0) {
294       uint64_t inode_free;
295       uint64_t inode_reserved;
296       uint64_t inode_used;
297
298       /* Sanity-check for the values in the struct */
299       if (statbuf.f_ffree < statbuf.f_favail)
300         statbuf.f_ffree = statbuf.f_favail;
301       if (statbuf.f_files < statbuf.f_ffree)
302         statbuf.f_files = statbuf.f_ffree;
303
304       inode_free = (uint64_t)statbuf.f_favail;
305       inode_reserved = (uint64_t)(statbuf.f_ffree - statbuf.f_favail);
306       inode_used = (uint64_t)(statbuf.f_files - statbuf.f_ffree);
307
308       if (values_percentage) {
309         if (statbuf.f_files > 0) {
310           df_submit_one(
311               disk_name, "percent_inodes", "free",
312               (gauge_t)((float_t)(inode_free) / statbuf.f_files * 100));
313           df_submit_one(
314               disk_name, "percent_inodes", "reserved",
315               (gauge_t)((float_t)(inode_reserved) / statbuf.f_files * 100));
316           df_submit_one(
317               disk_name, "percent_inodes", "used",
318               (gauge_t)((float_t)(inode_used) / statbuf.f_files * 100));
319         } else {
320           retval = -1;
321           break;
322         }
323       }
324       if (values_absolute) {
325         df_submit_one(disk_name, "df_inodes", "free", (gauge_t)inode_free);
326         df_submit_one(disk_name, "df_inodes", "reserved",
327                       (gauge_t)inode_reserved);
328         df_submit_one(disk_name, "df_inodes", "used", (gauge_t)inode_used);
329       }
330     }
331   }
332
333   cu_mount_freelist(mnt_list);
334
335   return retval;
336 } /* int df_read */
337
338 void module_register(void) {
339   plugin_register_config("df", df_config, config_keys, config_keys_num);
340   plugin_register_init("df", df_init);
341   plugin_register_read("df", df_read);
342 } /* void module_register */