{GPL, other}: Relicense to MIT license.
[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_SYS_SOCKET_H
30 # include <sys/socket.h>
31 #endif
32 #if HAVE_NET_IF_H
33 # include <net/if.h>
34 #endif
35
36 #include <net/pfvar.h>
37
38 #ifndef FCNT_NAMES
39 # if FCNT_MAX != 3
40 #  error "Unexpected value for FCNT_MAX"
41 # endif
42 # define FCNT_NAMES {"search", "insert", "removals", NULL};
43 #endif
44
45 #ifndef SCNT_NAMES
46 # if SCNT_MAX != 3
47 #  error "Unexpected value for SCNT_MAX"
48 # endif
49 # define SCNT_NAMES {"search", "insert", "removals", NULL};
50 #endif
51
52 static char const *pf_reasons[PFRES_MAX+1] = PFRES_NAMES;
53 static char const *pf_lcounters[LCNT_MAX+1] = LCNT_NAMES;
54 static char const *pf_fcounters[FCNT_MAX+1] = FCNT_NAMES;
55 static char const *pf_scounters[SCNT_MAX+1] = SCNT_NAMES;
56
57 static char const *pf_device = "/dev/pf";
58
59 static void pf_submit (char const *type, char const *type_instance,
60                 uint64_t val, _Bool is_gauge)
61 {
62         value_t         values[1];
63         value_list_t    vl = VALUE_LIST_INIT;
64
65         if (is_gauge)
66                 values[0].gauge = (gauge_t) val;
67         else
68                 values[0].derive = (derive_t) val;
69
70         vl.values = values;
71         vl.values_len = 1;
72         sstrncpy (vl.host, hostname_g, sizeof (vl.host));
73         sstrncpy (vl.plugin, "pf", sizeof (vl.plugin));
74         sstrncpy (vl.type, type, sizeof(vl.type));
75         sstrncpy (vl.type_instance, type_instance, sizeof(vl.type_instance));
76
77         plugin_dispatch_values(&vl);
78 } /* void pf_submit */
79
80 static int pf_read (void)
81 {
82         struct pf_status state;
83         int fd;
84         int status;
85         int i;
86
87         fd = open (pf_device, O_RDONLY);
88         if (fd < 0)
89         {
90                 char errbuf[1024];
91                 ERROR("pf plugin: Unable to open %s: %s",
92                                 pf_device,
93                                 sstrerror (errno, errbuf, sizeof (errbuf)));
94                 return (-1);
95         }
96
97         memset (&state, 0, sizeof (state));
98         status = ioctl (fd, DIOCGETSTATUS, &state);
99         if (status != 0)
100         {
101                 char errbuf[1024];
102                 ERROR("pf plugin: ioctl(DIOCGETSTATUS) failed: %s",
103                                 sstrerror (errno, errbuf, sizeof (errbuf)));
104                 close(fd);
105                 return (-1);
106         }
107
108         close (fd);
109         fd = -1;
110
111         if (!state.running)
112         {
113                 WARNING ("pf plugin: PF is not running.");
114                 return (-1);
115         }
116
117         for (i = 0; i < PFRES_MAX; i++)
118                 pf_submit ("pf_counters", pf_reasons[i], state.counters[i],
119                                 /* is gauge = */ 0);
120         for (i = 0; i < LCNT_MAX; i++)
121                 pf_submit ("pf_limits", pf_lcounters[i], state.lcounters[i],
122                                 /* is gauge = */ 0);
123         for (i = 0; i < FCNT_MAX; i++)
124                 pf_submit ("pf_state", pf_fcounters[i], state.fcounters[i],
125                                 /* is gauge = */ 0);
126         for (i = 0; i < SCNT_MAX; i++)
127                 pf_submit ("pf_source", pf_scounters[i], state.scounters[i],
128                                 /* is gauge = */ 0);
129
130         pf_submit ("pf_states", "current", (uint32_t) state.states,
131                         /* is gauge = */ 1);
132
133         return (0);
134 } /* int pf_read */
135
136 void module_register (void)
137 {
138         plugin_register_read ("pf", pf_read);
139 }