Added "type" to the value_list_t struct.
[collectd.git] / src / iptables.c
1 /**
2  * collectd - src/iptables.c
3  * Copyright (C) 2007 Sjoerd van der Berg
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  *  Sjoerd van der Berg <harekiet at users.sourceforge.net>
21  **/
22
23 #include "collectd.h"
24 #include "common.h"
25 #include "plugin.h"
26 #include "configfile.h"
27
28 #if HAVE_LIBIPTC_LIBIPTC_H
29 # include <libiptc/libiptc.h>
30 #endif
31
32 /*
33  * (Module-)Global variables
34  */
35
36 /*
37  * Config format should be `Chain table chainname',
38  * e. g. `Chain mangle incoming'
39  */
40 static const char *config_keys[] =
41 {
42         "Chain",
43         NULL
44 };
45 static int config_keys_num = 1;
46 /*
47     Each table/chain combo that will be queried goes into this list
48 */
49 #ifndef XT_TABLE_MAXNAMELEN
50 # define XT_TABLE_MAXNAMELEN 32
51 #endif
52 typedef struct {
53     char table[XT_TABLE_MAXNAMELEN];
54     char chain[XT_TABLE_MAXNAMELEN];
55     union
56     {
57         int   num;
58         char *comment;
59     } rule;
60     enum
61     {
62         RTYPE_NUM,
63         RTYPE_COMMENT,
64         RTYPE_COMMENT_ALL
65     } rule_type;
66     char name[64];
67 } ip_chain_t;
68
69 static ip_chain_t **chain_list = NULL;
70 static int chain_num = 0;
71
72 static int iptables_config (const char *key, const char *value)
73 {
74         if (strcasecmp (key, "Chain") == 0)
75         {
76                 ip_chain_t temp, *final, **list;
77                 char *table;
78                 int   table_len;
79                 char *chain;
80                 int   chain_len;
81
82                 char *value_copy;
83                 char *fields[4];
84                 int   fields_num;
85                 
86                 memset (&temp, 0, sizeof (temp));
87
88                 value_copy = strdup (value);
89                 if (value_copy == NULL)
90                 {
91                     char errbuf[1024];
92                     ERROR ("strdup failed: %s",
93                             sstrerror (errno, errbuf, sizeof (errbuf)));
94                     return (1);
95                 }
96
97                 /* Chain <table> <chain> [<comment|num> [name]] */
98                 fields_num = strsplit (value_copy, fields, 4);
99                 if (fields_num < 2)
100                 {
101                     free (value_copy);
102                     return (1);
103                 }
104
105                 table = fields[0];
106                 chain = fields[1];
107
108                 table_len = strlen (table);
109                 if ((unsigned int)table_len >= sizeof(temp.table))
110                 {
111                         ERROR ("Table `%s' too long.", table);
112                         free (value_copy);
113                         return (1);
114                 }
115                 strncpy (temp.table, table, table_len);
116                 temp.table[table_len] = '\0';
117
118                 chain_len = strlen (chain);
119                 if ((unsigned int)chain_len >= sizeof(temp.chain))
120                 {
121                         ERROR ("Chain `%s' too long.", chain);
122                         free (value_copy);
123                         return (1);
124                 }
125                 strncpy (temp.chain, chain, chain_len);
126                 temp.chain[chain_len] = '\0'; 
127
128                 if (fields_num >= 3)
129                 {
130                     char *comment = fields[2];
131                     int   rule = atoi (comment);
132
133                     if (rule)
134                     {
135                         temp.rule.num = rule;
136                         temp.rule_type = RTYPE_NUM;
137                     }
138                     else
139                     {
140                         temp.rule.comment = strdup (comment);
141                         if (temp.rule.comment == NULL)
142                         {
143                             free (value_copy);
144                             return (1);
145                         }
146                         temp.rule_type = RTYPE_COMMENT;
147                     }
148                 }
149                 else
150                 {
151                     temp.rule_type = RTYPE_COMMENT_ALL;
152                 }
153
154                 if (fields_num >= 4)
155                     strncpy (temp.name, fields[3], sizeof (temp.name) - 1);
156
157                 free (value_copy);
158                 value_copy = NULL;
159                 table = NULL;
160                 chain = NULL;
161
162                 list = (ip_chain_t **) realloc (chain_list, (chain_num + 1) * sizeof (ip_chain_t *));
163                 if (list == NULL)
164                 {
165                     char errbuf[1024];
166                     ERROR ("realloc failed: %s",
167                             sstrerror (errno, errbuf, sizeof (errbuf)));
168                     return (1);
169                 }
170
171                 chain_list = list;
172                 final = (ip_chain_t *) malloc( sizeof(temp) );
173                 if (final == NULL) 
174                 {
175                     char errbuf[1024];
176                     ERROR ("malloc failed: %s",
177                             sstrerror (errno, errbuf, sizeof (errbuf)));
178                     return (1);
179                 }
180                 memcpy (final, &temp, sizeof (temp));
181                 chain_list[chain_num] = final;
182                 chain_num++;
183
184                 DEBUG ("Chain #%i: table = %s; chain = %s;", chain_num, final->table, final->chain);
185         }
186         else 
187         {
188                 return (-1);
189         }
190
191         return (0);
192 } /* int iptables_config */
193
194 /* This needs to return `int' for IPT_MATCH_ITERATE to work. */
195 static int submit_match (const struct ipt_entry_match *match,
196                 const struct ipt_entry *entry,
197                 const ip_chain_t *chain,
198                 int rule_num) 
199 {
200     int status;
201     value_t values[1];
202     value_list_t vl = VALUE_LIST_INIT;
203
204     /* Select the rules to collect */
205     if (chain->rule_type == RTYPE_NUM)
206     {
207         if (chain->rule.num != rule_num)
208             return (0);
209     }
210     else
211     {
212         if (strcmp (match->u.user.name, "comment") != 0)
213             return (0);
214         if ((chain->rule_type == RTYPE_COMMENT)
215                 && (strcmp (chain->rule.comment, (char *) match->data) != 0))
216             return (0);
217     }
218
219     vl.values = values;
220     vl.values_len = 1;
221     vl.time = time (NULL);
222     strcpy (vl.host, hostname_g);
223     strcpy (vl.plugin, "iptables");
224
225     status = snprintf (vl.plugin_instance, sizeof (vl.plugin_instance),
226             "%s-%s", chain->table, chain->chain);
227     if ((status < 1) || ((unsigned int)status >= sizeof (vl.plugin_instance)))
228         return (0);
229
230     if (chain->name[0] != '\0')
231     {
232         strncpy (vl.type_instance, chain->name, sizeof (vl.type_instance));
233     }
234     else
235     {
236         if (chain->rule_type == RTYPE_NUM)
237             snprintf (vl.type_instance, sizeof (vl.type_instance),
238                     "%i", chain->rule.num);
239         else
240             strncpy (vl.type_instance, (char *) match->data,
241                     sizeof (vl.type_instance));
242     }
243     vl.type_instance[sizeof (vl.type_instance) - 1] = '\0';
244
245     strcpy (vl.type, "ipt_bytes");
246     values[0].counter = (counter_t) entry->counters.bcnt;
247     plugin_dispatch_values (&vl);
248
249     strcpy (vl.type, "ipt_packets");
250     values[0].counter = (counter_t) entry->counters.pcnt;
251     plugin_dispatch_values (&vl);
252
253     return (0);
254 } /* void submit_match */
255
256 static void submit_chain( iptc_handle_t *handle, ip_chain_t *chain ) {
257     const struct ipt_entry *entry;
258     int rule_num;
259
260     /* Find first rule for chain and use the iterate macro */    
261     entry = iptc_first_rule( chain->chain, handle );
262     if (entry == NULL)
263     {
264         DEBUG ("iptc_first_rule failed: %s", iptc_strerror (errno));
265         return;
266     }
267
268     rule_num = 1;
269     while (entry)
270     {
271         if (chain->rule_type == RTYPE_NUM)
272         {
273             submit_match (NULL, entry, chain, rule_num);
274         }
275         else
276         {
277             IPT_MATCH_ITERATE( entry, submit_match, entry, chain, rule_num );
278         }
279
280         entry = iptc_next_rule( entry, handle );
281         rule_num++;
282     } /* while (entry) */
283 }
284
285
286 static int iptables_read (void)
287 {
288     int i;
289     int num_failures = 0;
290
291     /* Init the iptc handle structure and query the correct table */    
292     for (i = 0; i < chain_num; i++)
293     {
294         iptc_handle_t handle;
295         ip_chain_t *chain;
296         
297         chain = chain_list[i];
298         if (!chain)
299         {
300             DEBUG ("iptables plugin: chain == NULL");
301             continue;
302         }
303
304         handle = iptc_init (chain->table);
305         if (!handle)
306         {
307             ERROR ("iptables plugin: iptc_init (%s) failed: %s",
308                     chain->table, iptc_strerror (errno));
309             num_failures++;
310             continue;
311         }
312
313         submit_chain (&handle, chain);
314         iptc_free (&handle);
315     } /* for (i = 0 .. chain_num) */
316
317     return ((num_failures < chain_num) ? 0 : -1);
318 } /* int iptables_read */
319
320 static int iptables_shutdown (void)
321 {
322     int i;
323
324     for (i = 0; i < chain_num; i++)
325     {
326         if ((chain_list[i] != NULL) && (chain_list[i]->rule_type == RTYPE_COMMENT))
327         {
328             sfree (chain_list[i]->rule.comment);
329         }
330         sfree (chain_list[i]);
331     }
332     sfree (chain_list);
333
334     return (0);
335 } /* int iptables_shutdown */
336
337 void module_register (void)
338 {
339     plugin_register_config ("iptables", iptables_config,
340             config_keys, config_keys_num);
341     plugin_register_read ("iptables", iptables_read);
342     plugin_register_shutdown ("iptables", iptables_shutdown);
343 } /* void module_register */
344
345 /*
346  * vim:shiftwidth=4:softtabstop=4:tabstop=8
347  */