2 * collectd - src/interface.c
3 * Copyright (C) 2005-2007 Florian octo Forster
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; only version 2 of the License is applicable.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 * Florian octo Forster <octo at verplant.org>
20 * Sune Marcher <sm at flork.dk>
26 #include "configfile.h"
29 # include <sys/types.h>
32 # include <sys/socket.h>
35 /* One cannot include both. This sucks. */
37 # include <linux/if.h>
42 #if HAVE_LINUX_NETDEVICE_H
43 # include <linux/netdevice.h>
50 * Various people have reported problems with `getifaddrs' and varying versions
51 * of `glibc'. That's why it's disabled by default. Since more statistics are
52 * available this way one may enable it using the `--enable-getifaddrs' option
53 * of the configure script. -octo
56 # if !COLLECT_GETIFADDRS
57 # undef HAVE_GETIFADDRS
58 # endif /* !COLLECT_GETIFADDRS */
59 #endif /* KERNEL_LINUX */
61 #if !HAVE_GETIFADDRS && !KERNEL_LINUX && !HAVE_LIBKSTAT && !HAVE_LIBSTATGRAB
62 # error "No applicable input method."
66 * (Module-)Global variables
68 static const char *config_keys[] =
74 static int config_keys_num = 2;
76 static char **if_list = NULL;
77 static int if_list_num = 0;
80 * 0 => default is to collect selected interface
81 * 1 => ignore selcted interfaces
83 static int if_list_action = 0;
87 extern kstat_ctl_t *kc;
88 static kstat_t *ksp[MAX_NUMIF];
90 #endif /* HAVE_LIBKSTAT */
92 static int interface_config (const char *key, const char *value)
96 if (strcasecmp (key, "Interface") == 0)
98 temp = (char **) realloc (if_list, (if_list_num + 1) * sizeof (char *));
101 ERROR ("Cannot allocate more memory.");
106 if ((if_list[if_list_num] = strdup (value)) == NULL)
108 ERROR ("Cannot allocate memory.");
113 else if (strcasecmp (key, "IgnoreSelected") == 0)
115 if ((strcasecmp (value, "True") == 0)
116 || (strcasecmp (value, "Yes") == 0)
117 || (strcasecmp (value, "On") == 0))
131 static int interface_init (void)
134 unsigned long long val;
141 for (numif = 0, ksp_chain = kc->kc_chain;
142 (numif < MAX_NUMIF) && (ksp_chain != NULL);
143 ksp_chain = ksp_chain->ks_next)
145 if (strncmp (ksp_chain->ks_class, "net", 3))
147 if (ksp_chain->ks_type != KSTAT_TYPE_NAMED)
149 if (kstat_read (kc, ksp_chain, NULL) == -1)
151 if ((val = get_kstat_value (ksp_chain, "obytes")) == -1LL)
153 ksp[numif++] = ksp_chain;
157 } /* int interface_init */
158 #endif /* HAVE_LIBKSTAT */
161 * Check if this interface/instance should be ignored. This is called from
162 * both, `submit' and `write' to give client and server the ability to
163 * ignore certain stuff..
165 static int check_ignore_if (const char *interface)
169 /* If no interfaces are given collect all interfaces. Mostly to be
170 * backwards compatible, but also because this is much easier. */
174 for (i = 0; i < if_list_num; i++)
175 if (strcasecmp (interface, if_list[i]) == 0)
176 return (if_list_action);
177 return (1 - if_list_action);
178 } /* int check_ignore_if */
180 static void if_submit (const char *dev, const char *type,
181 unsigned long long rx,
182 unsigned long long tx)
185 value_list_t vl = VALUE_LIST_INIT;
187 if (check_ignore_if (dev))
190 values[0].counter = rx;
191 values[1].counter = tx;
195 vl.time = time (NULL);
196 strcpy (vl.host, hostname_g);
197 strcpy (vl.plugin, "interface");
198 strncpy (vl.type_instance, dev, sizeof (vl.type_instance));
200 plugin_dispatch_values (type, &vl);
201 } /* void if_submit */
203 static int interface_read (void)
206 struct ifaddrs *if_list;
207 struct ifaddrs *if_ptr;
209 /* Darin/Mac OS X and possible other *BSDs */
210 #if HAVE_STRUCT_IF_DATA
211 # define IFA_DATA if_data
212 # define IFA_RX_BYTES ifi_ibytes
213 # define IFA_TX_BYTES ifi_obytes
214 # define IFA_RX_PACKT ifi_ipackets
215 # define IFA_TX_PACKT ifi_opackets
216 # define IFA_RX_ERROR ifi_ierrors
217 # define IFA_TX_ERROR ifi_oerrors
218 /* #endif HAVE_STRUCT_IF_DATA */
220 #elif HAVE_STRUCT_NET_DEVICE_STATS
221 # define IFA_DATA net_device_stats
222 # define IFA_RX_BYTES rx_bytes
223 # define IFA_TX_BYTES tx_bytes
224 # define IFA_RX_PACKT rx_packets
225 # define IFA_TX_PACKT tx_packets
226 # define IFA_RX_ERROR rx_errors
227 # define IFA_TX_ERROR tx_errors
229 # error "No suitable type for `struct ifaddrs->ifa_data' found."
232 struct IFA_DATA *if_data;
234 if (getifaddrs (&if_list) != 0)
237 for (if_ptr = if_list; if_ptr != NULL; if_ptr = if_ptr->ifa_next)
239 if ((if_data = (struct IFA_DATA *) if_ptr->ifa_data) == NULL)
242 if_submit (if_ptr->ifa_name, "if_octets",
243 if_data->IFA_RX_BYTES,
244 if_data->IFA_TX_BYTES);
245 if_submit (if_ptr->ifa_name, "if_packets",
246 if_data->IFA_RX_PACKT,
247 if_data->IFA_TX_PACKT);
248 if_submit (if_ptr->ifa_name, "if_errors",
249 if_data->IFA_RX_ERROR,
250 if_data->IFA_TX_ERROR);
253 freeifaddrs (if_list);
254 /* #endif HAVE_GETIFADDRS */
259 unsigned long long incoming, outgoing;
266 if ((fh = fopen ("/proc/net/dev", "r")) == NULL)
269 WARNING ("interface plugin: fopen: %s",
270 sstrerror (errno, errbuf, sizeof (errbuf)));
274 while (fgets (buffer, 1024, fh) != NULL)
276 if (!(dummy = strchr(buffer, ':')))
282 while (device[0] == ' ')
285 if (device[0] == '\0')
288 numfields = strsplit (dummy, fields, 16);
293 incoming = atoll (fields[0]);
294 outgoing = atoll (fields[8]);
295 if_submit (device, "if_octets", incoming, outgoing);
297 incoming = atoll (fields[1]);
298 outgoing = atoll (fields[9]);
299 if_submit (device, "if_packets", incoming, outgoing);
301 incoming = atoll (fields[2]);
302 outgoing = atoll (fields[10]);
303 if_submit (device, "if_errors", incoming, outgoing);
307 /* #endif KERNEL_LINUX */
311 unsigned long long rx;
312 unsigned long long tx;
317 for (i = 0; i < numif; i++)
319 if (kstat_read (kc, ksp[i], NULL) == -1)
322 rx = get_kstat_value (ksp[i], "rbytes");
323 tx = get_kstat_value (ksp[i], "obytes");
324 if ((rx != -1LL) || (tx != -1LL))
325 if_submit (ksp[i]->ks_name, "if_octets", rx, tx);
327 rx = get_kstat_value (ksp[i], "ipackets");
328 tx = get_kstat_value (ksp[i], "opackets");
329 if ((rx != -1LL) || (tx != -1LL))
330 if_submit (ksp[i]->ks_name, "if_packets", rx, tx);
332 rx = get_kstat_value (ksp[i], "ierrors");
333 tx = get_kstat_value (ksp[i], "oerrors");
334 if ((rx != -1LL) || (tx != -1LL))
335 if_submit (ksp[i]->ks_name, "if_errors", rx, tx);
337 /* #endif HAVE_LIBKSTAT */
339 #elif defined(HAVE_LIBSTATGRAB)
340 sg_network_io_stats *ios;
343 ios = sg_get_network_io_stats (&num);
345 for (i = 0; i < num; i++)
346 if_submit (ios[i].interface_name, "if_octets", ios[i].rx, ios[i].tx);
347 #endif /* HAVE_LIBSTATGRAB */
350 } /* int interface_read */
352 void module_register (void)
354 plugin_register_config ("interface", interface_config,
355 config_keys, config_keys_num);
357 plugin_register_init ("interface", interface_init);
359 plugin_register_read ("interface", interface_read);
360 } /* void module_register */