Fix void* arithmetic warning (-Wpointer-arith)
[collectd.git] / src / pf.c
1 /*
2  * Copyright (c) 2010 Pierre-Yves Ritschard
3  * Copyright (c) 2011 Stefan Rinkes
4  *
5  * Permission to use, copy, modify, and distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16  *
17  * Authors:
18  *   Pierre-Yves Ritschard <pyr at openbsd.org>
19  *   Stefan Rinkes <stefan.rinkes at gmail.org>
20  */
21
22 #include "collectd.h"
23 #include "plugin.h"
24 #include "common.h"
25
26 #if HAVE_SYS_IOCTL_H
27 # include <sys/ioctl.h>
28 #endif
29 #if HAVE_NET_IF_H
30 # include <net/if.h>
31 #endif
32
33 #include <net/pfvar.h>
34
35 #ifndef FCNT_NAMES
36 # if FCNT_MAX != 3
37 #  error "Unexpected value for FCNT_MAX"
38 # endif
39 # define FCNT_NAMES {"search", "insert", "removals", NULL};
40 #endif
41
42 #ifndef SCNT_NAMES
43 # if SCNT_MAX != 3
44 #  error "Unexpected value for SCNT_MAX"
45 # endif
46 # define SCNT_NAMES {"search", "insert", "removals", NULL};
47 #endif
48
49 static char const *pf_reasons[PFRES_MAX+1] = PFRES_NAMES;
50 static char const *pf_lcounters[LCNT_MAX+1] = LCNT_NAMES;
51 static char const *pf_fcounters[FCNT_MAX+1] = FCNT_NAMES;
52 static char const *pf_scounters[SCNT_MAX+1] = SCNT_NAMES;
53
54 static char const *pf_device = "/dev/pf";
55
56 static void pf_submit (char const *type, char const *type_instance,
57                 uint64_t val, _Bool is_gauge)
58 {
59         value_t         values[1];
60         value_list_t    vl = VALUE_LIST_INIT;
61
62         if (is_gauge)
63                 values[0].gauge = (gauge_t) val;
64         else
65                 values[0].derive = (derive_t) val;
66
67         vl.values = values;
68         vl.values_len = 1;
69         sstrncpy (vl.host, hostname_g, sizeof (vl.host));
70         sstrncpy (vl.plugin, "pf", sizeof (vl.plugin));
71         sstrncpy (vl.type, type, sizeof(vl.type));
72         sstrncpy (vl.type_instance, type_instance, sizeof(vl.type_instance));
73
74         plugin_dispatch_values(&vl);
75 } /* void pf_submit */
76
77 static int pf_read (void)
78 {
79         struct pf_status state;
80         int fd;
81         int status;
82         int i;
83
84         fd = open (pf_device, O_RDONLY);
85         if (fd < 0)
86         {
87                 char errbuf[1024];
88                 ERROR("pf plugin: Unable to open %s: %s",
89                                 pf_device,
90                                 sstrerror (errno, errbuf, sizeof (errbuf)));
91                 return (-1);
92         }
93
94         memset (&state, 0, sizeof (state));
95         status = ioctl (fd, DIOCGETSTATUS, &state);
96         if (status != 0)
97         {
98                 char errbuf[1024];
99                 ERROR("pf plugin: ioctl(DIOCGETSTATUS) failed: %s",
100                                 sstrerror (errno, errbuf, sizeof (errbuf)));
101                 close(fd);
102                 return (-1);
103         }
104
105         close (fd);
106         fd = -1;
107
108         if (!state.running)
109         {
110                 WARNING ("pf plugin: PF is not running.");
111                 return (-1);
112         }
113
114         for (i = 0; i < PFRES_MAX; i++)
115                 pf_submit ("pf_counters", pf_reasons[i], state.counters[i],
116                                 /* is gauge = */ 0);
117         for (i = 0; i < LCNT_MAX; i++)
118                 pf_submit ("pf_limits", pf_lcounters[i], state.lcounters[i],
119                                 /* is gauge = */ 0);
120         for (i = 0; i < FCNT_MAX; i++)
121                 pf_submit ("pf_state", pf_fcounters[i], state.fcounters[i],
122                                 /* is gauge = */ 0);
123         for (i = 0; i < SCNT_MAX; i++)
124                 pf_submit ("pf_source", pf_scounters[i], state.scounters[i],
125                                 /* is gauge = */ 0);
126
127         pf_submit ("pf_states", "current", (uint32_t) state.states,
128                         /* is gauge = */ 1);
129
130         return (0);
131 } /* int pf_read */
132
133 void module_register (void)
134 {
135         plugin_register_read ("pf", pf_read);
136 }