2 * collectd - src/tcpconns.c
3 * Copyright (C) 2007,2008 Florian octo Forster
4 * Copyright (C) 2008 Michael Stapelberg
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; only version 2 of the License is applicable.
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.
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
20 * Florian octo Forster <octo at verplant.org>
21 * Michael Stapelberg <michael+git at stapelberg.de>
25 * Code within `HAVE_LIBKVM_NLIST' blocks is provided under the following
28 * $collectd: parts of tcpconns.c, 2008/08/08 03:48:30 Michael Stapelberg $
29 * $OpenBSD: inet.c,v 1.100 2007/06/19 05:28:30 ray Exp $
30 * $NetBSD: inet.c,v 1.14 1995/10/03 21:42:37 thorpej Exp $
32 * Copyright (c) 1983, 1988, 1993
33 * The Regents of the University of California. All rights reserved.
35 * Redistribution and use in source and binary forms, with or without
36 * modification, are permitted provided that the following conditions
38 * 1. Redistributions of source code must retain the above copyright
39 * notice, this list of conditions and the following disclaimer.
40 * 2. Redistributions in binary form must reproduce the above copyright
41 * notice, this list of conditions and the following disclaimer in the
42 * documentation and/or other materials provided with the distribution.
43 * 3. Neither the name of the University nor the names of its contributors
44 * may be used to endorse or promote products derived from this software
45 * without specific prior written permission.
47 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
48 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
49 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
50 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
51 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
52 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
53 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
54 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
55 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
56 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
64 #if defined(__OpenBSD__) || defined(__NetBSD__)
65 #undef HAVE_SYSCTLBYNAME /* force HAVE_LIBKVM_NLIST path */
68 #if !KERNEL_LINUX && !HAVE_SYSCTLBYNAME && !HAVE_LIBKVM_NLIST
69 # error "No applicable input method."
73 /* #endif KERNEL_LINUX */
75 #elif HAVE_SYSCTLBYNAME
76 # include <sys/socketvar.h>
77 # include <sys/sysctl.h>
79 /* Some includes needed for compiling on FreeBSD */
82 # include <sys/types.h>
85 # include <sys/socket.h>
91 # include <net/route.h>
92 # include <netinet/in.h>
93 # include <netinet/in_systm.h>
94 # include <netinet/ip.h>
95 # include <netinet/ip6.h>
96 # include <netinet/in_pcb.h>
97 # include <netinet/ip_var.h>
98 # include <netinet/tcp.h>
99 # include <netinet/tcpip.h>
100 # include <netinet/tcp_seq.h>
101 # include <netinet/tcp_var.h>
102 /* #endif HAVE_SYSCTLBYNAME */
104 /* This is for OpenBSD and NetBSD. */
105 #elif HAVE_LIBKVM_NLIST
106 # include <sys/queue.h>
107 # include <sys/socket.h>
108 # include <net/route.h>
109 # include <netinet/in.h>
110 # include <netinet/in_systm.h>
111 # include <netinet/ip.h>
112 # include <netinet/ip_var.h>
113 # include <netinet/in_pcb.h>
114 # include <netinet/tcp.h>
115 # include <netinet/tcp_timer.h>
116 # include <netinet/tcp_var.h>
118 # include <arpa/inet.h>
121 #endif /* HAVE_LIBKVM_NLIST */
124 static const char *tcp_state[] =
140 # define TCP_STATE_LISTEN 10
141 # define TCP_STATE_MIN 1
142 # define TCP_STATE_MAX 11
143 /* #endif KERNEL_LINUX */
145 #elif HAVE_SYSCTLBYNAME
146 static const char *tcp_state[] =
161 # define TCP_STATE_LISTEN 1
162 # define TCP_STATE_MIN 0
163 # define TCP_STATE_MAX 10
164 /* #endif HAVE_SYSCTLBYNAME */
166 #elif HAVE_LIBKVM_NLIST
167 static const char *tcp_state[] =
183 static u_long inpcbtable_off = 0;
184 struct inpcbtable *inpcbtable_ptr = NULL;
186 # define TCP_STATE_LISTEN 1
187 # define TCP_STATE_MIN 1
188 # define TCP_STATE_MAX 10
189 #endif /* HAVE_LIBKVM_NLIST */
191 #define PORT_COLLECT_LOCAL 0x01
192 #define PORT_COLLECT_REMOTE 0x02
193 #define PORT_IS_LISTENING 0x04
195 typedef struct port_entry_s
199 uint32_t count_local[TCP_STATE_MAX + 1];
200 uint32_t count_remote[TCP_STATE_MAX + 1];
201 struct port_entry_s *next;
204 static const char *config_keys[] =
210 static int config_keys_num = STATIC_ARRAY_SIZE (config_keys);
212 static int port_collect_listening = 0;
213 static port_entry_t *port_list_head = NULL;
215 static void conn_submit_port_entry (port_entry_t *pe)
218 value_list_t vl = VALUE_LIST_INIT;
223 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
224 sstrncpy (vl.plugin, "tcpconns", sizeof (vl.plugin));
225 sstrncpy (vl.type, "tcp_connections", sizeof (vl.type));
227 if (((port_collect_listening != 0) && (pe->flags & PORT_IS_LISTENING))
228 || (pe->flags & PORT_COLLECT_LOCAL))
230 ssnprintf (vl.plugin_instance, sizeof (vl.plugin_instance),
231 "%"PRIu16"-local", pe->port);
233 for (i = 1; i <= TCP_STATE_MAX; i++)
235 vl.values[0].gauge = pe->count_local[i];
237 sstrncpy (vl.type_instance, tcp_state[i], sizeof (vl.type_instance));
239 plugin_dispatch_values (&vl);
243 if (pe->flags & PORT_COLLECT_REMOTE)
245 ssnprintf (vl.plugin_instance, sizeof (vl.plugin_instance),
246 "%"PRIu16"-remote", pe->port);
248 for (i = 1; i <= TCP_STATE_MAX; i++)
250 vl.values[0].gauge = pe->count_remote[i];
252 sstrncpy (vl.type_instance, tcp_state[i], sizeof (vl.type_instance));
254 plugin_dispatch_values (&vl);
257 } /* void conn_submit */
259 static void conn_submit_all (void)
263 for (pe = port_list_head; pe != NULL; pe = pe->next)
264 conn_submit_port_entry (pe);
265 } /* void conn_submit_all */
267 static port_entry_t *conn_get_port_entry (uint16_t port, int create)
271 ret = port_list_head;
274 if (ret->port == port)
279 if ((ret == NULL) && (create != 0))
281 ret = (port_entry_t *) malloc (sizeof (port_entry_t));
284 memset (ret, '\0', sizeof (port_entry_t));
287 ret->next = port_list_head;
288 port_list_head = ret;
292 } /* port_entry_t *conn_get_port_entry */
294 /* Removes ports that were added automatically due to the `ListeningPorts'
295 * setting but which are no longer listening. */
296 static void conn_reset_port_entry (void)
298 port_entry_t *prev = NULL;
299 port_entry_t *pe = port_list_head;
303 /* If this entry was created while reading the files (ant not when handling
304 * the configuration) remove it now. */
305 if ((pe->flags & (PORT_COLLECT_LOCAL
306 | PORT_COLLECT_REMOTE
307 | PORT_IS_LISTENING)) == 0)
309 port_entry_t *next = pe->next;
311 DEBUG ("tcpconns plugin: Removing temporary entry "
312 "for listening port %"PRIu16, pe->port);
315 port_list_head = next;
325 memset (pe->count_local, '\0', sizeof (pe->count_local));
326 memset (pe->count_remote, '\0', sizeof (pe->count_remote));
327 pe->flags &= ~PORT_IS_LISTENING;
331 } /* void conn_reset_port_entry */
333 static int conn_handle_ports (uint16_t port_local, uint16_t port_remote, uint8_t state)
335 port_entry_t *pe = NULL;
337 if ((state > TCP_STATE_MAX)
338 #if TCP_STATE_MIN > 0
339 || (state < TCP_STATE_MIN)
343 NOTICE ("tcpconns plugin: Ignoring connection with "
344 "unknown state 0x%02"PRIx8".", state);
348 /* Listening sockets */
349 if ((state == TCP_STATE_LISTEN) && (port_collect_listening != 0))
351 pe = conn_get_port_entry (port_local, 1 /* create */);
353 pe->flags |= PORT_IS_LISTENING;
356 DEBUG ("tcpconns plugin: Connection %"PRIu16" <-> %"PRIu16" (%s)",
357 port_local, port_remote, tcp_state[state]);
359 pe = conn_get_port_entry (port_local, 0 /* no create */);
361 pe->count_local[state]++;
363 pe = conn_get_port_entry (port_remote, 0 /* no create */);
365 pe->count_remote[state]++;
368 } /* int conn_handle_ports */
371 static int conn_handle_line (char *buffer)
378 char *port_local_str;
379 char *port_remote_str;
381 uint16_t port_remote;
385 int buffer_len = strlen (buffer);
387 while ((buffer_len > 0) && (buffer[buffer_len - 1] < 32))
388 buffer[--buffer_len] = '\0';
392 fields_len = strsplit (buffer, fields, STATIC_ARRAY_SIZE (fields));
395 DEBUG ("tcpconns plugin: Got %i fields, expected at least 12.", fields_len);
399 port_local_str = strchr (fields[1], ':');
400 port_remote_str = strchr (fields[2], ':');
402 if ((port_local_str == NULL) || (port_remote_str == NULL))
406 if ((*port_local_str == '\0') || (*port_remote_str == '\0'))
410 port_local = (uint16_t) strtol (port_local_str, &endptr, 16);
411 if ((endptr == NULL) || (*endptr != '\0'))
415 port_remote = (uint16_t) strtol (port_remote_str, &endptr, 16);
416 if ((endptr == NULL) || (*endptr != '\0'))
420 state = (uint8_t) strtol (fields[3], &endptr, 16);
421 if ((endptr == NULL) || (*endptr != '\0'))
424 return (conn_handle_ports (port_local, port_remote, state));
425 } /* int conn_handle_line */
427 static int conn_read_file (const char *file)
432 fh = fopen (file, "r");
436 while (fgets (buffer, sizeof (buffer), fh) != NULL)
438 conn_handle_line (buffer);
439 } /* while (fgets) */
444 } /* int conn_read_file */
445 /* #endif KERNEL_LINUX */
447 #elif HAVE_SYSCTLBYNAME
448 /* #endif HAVE_SYSCTLBYNAME */
450 #elif HAVE_LIBKVM_NLIST
451 #endif /* HAVE_LIBKVM_NLIST */
453 static int conn_config (const char *key, const char *value)
455 if (strcasecmp (key, "ListeningPorts") == 0)
458 port_collect_listening = 1;
460 port_collect_listening = 0;
462 else if ((strcasecmp (key, "LocalPort") == 0)
463 || (strcasecmp (key, "RemotePort") == 0))
466 int port = atoi (value);
468 if ((port < 1) || (port > 65535))
470 ERROR ("tcpconns plugin: Invalid port: %i", port);
474 pe = conn_get_port_entry ((uint16_t) port, 1 /* create */);
477 ERROR ("tcpconns plugin: conn_get_port_entry failed.");
481 if (strcasecmp (key, "LocalPort") == 0)
482 pe->flags |= PORT_COLLECT_LOCAL;
484 pe->flags |= PORT_COLLECT_REMOTE;
492 } /* int conn_config */
495 static int conn_init (void)
497 if (port_list_head == NULL)
498 port_collect_listening = 1;
501 } /* int conn_init */
503 static int conn_read (void)
507 conn_reset_port_entry ();
509 if (conn_read_file ("/proc/net/tcp") != 0)
511 if (conn_read_file ("/proc/net/tcp6") != 0)
520 ERROR ("tcpconns plugin: Neither /proc/net/tcp nor /proc/net/tcp6 "
526 } /* int conn_read */
527 /* #endif KERNEL_LINUX */
529 #elif HAVE_SYSCTLBYNAME
530 static int conn_read (void)
536 struct xinpgen *in_orig;
537 struct xinpgen *in_ptr;
539 conn_reset_port_entry ();
542 status = sysctlbyname ("net.inet.tcp.pcblist", NULL, &buffer_len, 0, 0);
545 ERROR ("tcpconns plugin: sysctlbyname failed.");
549 buffer = (char *) malloc (buffer_len);
552 ERROR ("tcpconns plugin: malloc failed.");
556 status = sysctlbyname ("net.inet.tcp.pcblist", buffer, &buffer_len, 0, 0);
559 ERROR ("tcpconns plugin: sysctlbyname failed.");
564 if (buffer_len <= sizeof (struct xinpgen))
566 ERROR ("tcpconns plugin: (buffer_len <= sizeof (struct xinpgen))");
571 in_orig = (struct xinpgen *) buffer;
572 for (in_ptr = (struct xinpgen *) (((char *) in_orig) + in_orig->xig_len);
573 in_ptr->xig_len > sizeof (struct xinpgen);
574 in_ptr = (struct xinpgen *) (((char *) in_ptr) + in_ptr->xig_len))
576 struct tcpcb *tp = &((struct xtcpcb *) in_ptr)->xt_tp;
577 struct inpcb *inp = &((struct xtcpcb *) in_ptr)->xt_inp;
578 struct xsocket *so = &((struct xtcpcb *) in_ptr)->xt_socket;
580 /* Ignore non-TCP sockets */
581 if (so->xso_protocol != IPPROTO_TCP)
584 /* Ignore PCBs which were freed during copyout. */
585 if (inp->inp_gencnt > in_orig->xig_gen)
588 if (((inp->inp_vflag & INP_IPV4) == 0)
589 && ((inp->inp_vflag & INP_IPV6) == 0))
592 conn_handle_ports (ntohs (inp->inp_lport), ntohs (inp->inp_fport),
603 } /* int conn_read */
604 /* #endif HAVE_SYSCTLBYNAME */
606 #elif HAVE_LIBKVM_NLIST
607 static int kread (u_long addr, void *buf, int size)
611 status = kvm_read (kvmd, addr, buf, size);
614 ERROR ("tcpconns plugin: kvm_read failed (got %i, expected %i): %s\n",
615 status, size, kvm_geterr (kvmd));
621 static int conn_init (void)
623 char buf[_POSIX2_LINE_MAX];
632 kvmd = kvm_openfiles (NULL, NULL, NULL, O_RDONLY, buf);
635 ERROR ("tcpconns plugin: kvm_openfiles failed: %s", buf);
639 status = kvm_nlist (kvmd, nl);
642 ERROR ("tcpconns plugin: kvm_nlist failed with status %i.", status);
646 if (nl[N_TCBTABLE].n_type == 0)
648 ERROR ("tcpconns plugin: Error looking up kernel's namelist: "
649 "N_TCBTABLE is invalid.");
653 inpcbtable_off = (u_long) nl[N_TCBTABLE].n_value;
654 inpcbtable_ptr = (struct inpcbtable *) nl[N_TCBTABLE].n_value;
657 } /* int conn_init */
659 static int conn_read (void)
661 struct inpcbtable table;
668 conn_reset_port_entry ();
670 /* Read the pcbtable from the kernel */
671 status = kread (inpcbtable_off, &table, sizeof (table));
675 /* Get the `head' pcb */
676 head = (struct inpcb *) &(inpcbtable_ptr->inpt_queue);
677 /* Get the first pcb */
678 next = (struct inpcb *)CIRCLEQ_FIRST (&table.inpt_queue);
682 /* Read the pcb pointed to by `next' into `inpcb' */
683 kread ((u_long) next, &inpcb, sizeof (inpcb));
686 next = (struct inpcb *)CIRCLEQ_NEXT (&inpcb, inp_queue);
688 /* Ignore sockets, that are not connected. */
690 if (inpcb.inp_af == AF_INET6)
691 continue; /* XXX see netbsd/src/usr.bin/netstat/inet6.c */
693 if (!(inpcb.inp_flags & INP_IPV6)
694 && (inet_lnaof(inpcb.inp_laddr) == INADDR_ANY))
696 if ((inpcb.inp_flags & INP_IPV6)
697 && IN6_IS_ADDR_UNSPECIFIED (&inpcb.inp_laddr6))
701 kread ((u_long) inpcb.inp_ppcb, &tcpcb, sizeof (tcpcb));
702 conn_handle_ports (ntohs(inpcb.inp_lport), ntohs(inpcb.inp_fport), tcpcb.t_state);
703 } /* while (next != head) */
709 #endif /* HAVE_LIBKVM_NLIST */
711 void module_register (void)
713 plugin_register_config ("tcpconns", conn_config,
714 config_keys, config_keys_num);
716 plugin_register_init ("tcpconns", conn_init);
717 #elif HAVE_SYSCTLBYNAME
718 /* no initialization */
719 #elif HAVE_LIBKVM_NLIST
720 plugin_register_init ("tcpconns", conn_init);
722 plugin_register_read ("tcpconns", conn_read);
723 } /* void module_register */
726 * vim: set shiftwidth=2 softtabstop=2 tabstop=8 fdm=marker :