Changed `df.c' to prefer `statvfs' over `statfs', since apparently the latter is...
[collectd.git] / src / df.c
1 /**
2  * collectd - src/df.c
3  * Copyright (C) 2005  Florian octo Forster
4  *
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.
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 verplant.org>
21  **/
22
23 #include "collectd.h"
24 #include "common.h"
25 #include "plugin.h"
26 #include "utils_mount.h"
27
28 #define MODULE_NAME "df"
29
30 #if HAVE_STATFS || HAVE_STATVFS
31 # define DF_HAVE_READ 1
32 #else
33 # define DF_HAVE_READ 0
34 #endif
35
36 #if HAVE_STATVFS
37 # define STATANYFS statvfs
38 # define BLOCKSIZE(s) ((s).f_frsize ? (s).f_frsize : (s).f_bsize)
39 #elif HAVE_STATFS
40 # define STATANYFS statfs
41 # define BLOCKSIZE(s) (s).f_bsize
42 #endif
43
44 static char *filename_template = "df-%s.rrd";
45
46 static char *ds_def[] =
47 {
48         "DS:used:GAUGE:25:0:U",
49         "DS:free:GAUGE:25:0:U",
50         NULL
51 };
52 static int ds_num = 2;
53
54 #define BUFSIZE 512
55
56 static void df_init (void)
57 {
58         return;
59 }
60
61 static void df_write (char *host, char *inst, char *val)
62 {
63         char file[BUFSIZE];
64         int status;
65
66         status = snprintf (file, BUFSIZE, filename_template, inst);
67         if (status < 1)
68                 return;
69         else if (status >= BUFSIZE)
70                 return;
71
72         rrd_update_file (host, file, val, ds_def, ds_num);
73 }
74
75 #if DF_HAVE_READ
76 static void df_submit (char *df_name,
77                 unsigned long long df_used,
78                 unsigned long long df_free)
79 {
80         char buf[BUFSIZE];
81
82         if (snprintf (buf, BUFSIZE, "%u:%llu:%llu", (unsigned int) curtime,
83                                 df_used, df_free) >= BUFSIZE)
84                 return;
85
86         plugin_submit (MODULE_NAME, df_name, buf);
87 }
88
89 static void df_read (void)
90 {
91         struct STATANYFS statbuf;
92         cu_mount_t *mnt_list;
93         cu_mount_t *mnt_ptr;
94
95         unsigned long long blocksize;
96         unsigned long long df_free;
97         unsigned long long df_used;
98         char mnt_name[BUFSIZE];
99
100         mnt_list = NULL;
101         if (cu_mount_getlist (&mnt_list) == NULL)
102         {
103                 syslog (LOG_WARNING, "cu_mount_getlist returned `NULL'");
104                 return;
105         }
106
107         for (mnt_ptr = mnt_list; mnt_ptr != NULL; mnt_ptr = mnt_ptr->next)
108         {
109                 if (STATANYFS (mnt_ptr->dir, &statbuf) < 0)
110                 {
111                         syslog (LOG_ERR, "statv?fs failed: %s", strerror (errno));
112                         continue;
113                 }
114
115                 if (!statbuf.f_blocks)
116                         continue;
117
118                 blocksize = BLOCKSIZE(statbuf);
119                 df_free = statbuf.f_bfree * blocksize;
120                 df_used = (statbuf.f_blocks - statbuf.f_bfree) * blocksize;
121
122                 if (strcmp (mnt_ptr->dir, "/") == 0)
123                 {
124                         strncpy (mnt_name, "root", BUFSIZE);
125                 }
126                 else
127                 {
128                         int i, len;
129
130                         strncpy (mnt_name, mnt_ptr->dir + 1, BUFSIZE);
131                         len = strlen (mnt_name);
132
133                         for (i = 0; i < len; i++)
134                                 if (mnt_name[i] == '/')
135                                         mnt_name[i] = '-';
136                 }
137
138                 df_submit (mnt_name, df_used, df_free);
139         }
140
141         cu_mount_freelist (mnt_list);
142 } /* static void df_read (void) */
143 #else
144 # define df_read NULL
145 #endif /* DF_HAVE_READ */
146
147 void module_register (void)
148 {
149         plugin_register (MODULE_NAME, df_init, df_read, df_write);
150 }
151
152 #undef BUFSIZE
153 #undef MODULE_NAME