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 && !KERNEL_AIX
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>
119 # if !defined(HAVE_BSD_NLIST_H) || !HAVE_BSD_NLIST_H
121 # else /* HAVE_BSD_NLIST_H */
122 # include <bsd/nlist.h>
125 /* #endif HAVE_LIBKVM_NLIST */
128 # include <arpa/inet.h>
129 # include <sys/socketvar.h>
130 #endif /* KERNEL_AIX */
133 static const char *tcp_state[] =
149 # define TCP_STATE_LISTEN 10
150 # define TCP_STATE_MIN 1
151 # define TCP_STATE_MAX 11
152 /* #endif KERNEL_LINUX */
154 #elif HAVE_SYSCTLBYNAME
155 static const char *tcp_state[] =
170 # define TCP_STATE_LISTEN 1
171 # define TCP_STATE_MIN 0
172 # define TCP_STATE_MAX 10
173 /* #endif HAVE_SYSCTLBYNAME */
175 #elif HAVE_LIBKVM_NLIST
176 static const char *tcp_state[] =
192 static u_long inpcbtable_off = 0;
193 struct inpcbtable *inpcbtable_ptr = NULL;
195 # define TCP_STATE_LISTEN 1
196 # define TCP_STATE_MIN 1
197 # define TCP_STATE_MAX 10
198 /* #endif HAVE_LIBKVM_NLIST */
201 static const char *tcp_state[] =
216 # define TCP_STATE_LISTEN 1
217 # define TCP_STATE_MIN 0
218 # define TCP_STATE_MAX 10
220 struct netinfo_conn {
224 struct in6_addr dstaddr;
227 struct in6_addr srcaddr;
228 uint32_t unknow4[36];
233 struct netinfo_header {
238 # define NETINFO_TCP 3
239 extern int netinfo (int proto, void *data, int *size, int n);
240 #endif /* KERNEL_AIX */
242 #define PORT_COLLECT_LOCAL 0x01
243 #define PORT_COLLECT_REMOTE 0x02
244 #define PORT_IS_LISTENING 0x04
246 typedef struct port_entry_s
250 uint32_t count_local[TCP_STATE_MAX + 1];
251 uint32_t count_remote[TCP_STATE_MAX + 1];
252 struct port_entry_s *next;
255 static const char *config_keys[] =
261 static int config_keys_num = STATIC_ARRAY_SIZE (config_keys);
263 static int port_collect_listening = 0;
264 static port_entry_t *port_list_head = NULL;
266 static void conn_submit_port_entry (port_entry_t *pe)
269 value_list_t vl = VALUE_LIST_INIT;
274 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
275 sstrncpy (vl.plugin, "tcpconns", sizeof (vl.plugin));
276 sstrncpy (vl.type, "tcp_connections", sizeof (vl.type));
278 if (((port_collect_listening != 0) && (pe->flags & PORT_IS_LISTENING))
279 || (pe->flags & PORT_COLLECT_LOCAL))
281 ssnprintf (vl.plugin_instance, sizeof (vl.plugin_instance),
282 "%"PRIu16"-local", pe->port);
284 for (i = 1; i <= TCP_STATE_MAX; i++)
286 vl.values[0].gauge = pe->count_local[i];
288 sstrncpy (vl.type_instance, tcp_state[i], sizeof (vl.type_instance));
290 plugin_dispatch_values (&vl);
294 if (pe->flags & PORT_COLLECT_REMOTE)
296 ssnprintf (vl.plugin_instance, sizeof (vl.plugin_instance),
297 "%"PRIu16"-remote", pe->port);
299 for (i = 1; i <= TCP_STATE_MAX; i++)
301 vl.values[0].gauge = pe->count_remote[i];
303 sstrncpy (vl.type_instance, tcp_state[i], sizeof (vl.type_instance));
305 plugin_dispatch_values (&vl);
308 } /* void conn_submit */
310 static void conn_submit_all (void)
314 for (pe = port_list_head; pe != NULL; pe = pe->next)
315 conn_submit_port_entry (pe);
316 } /* void conn_submit_all */
318 static port_entry_t *conn_get_port_entry (uint16_t port, int create)
322 ret = port_list_head;
325 if (ret->port == port)
330 if ((ret == NULL) && (create != 0))
332 ret = (port_entry_t *) malloc (sizeof (port_entry_t));
335 memset (ret, '\0', sizeof (port_entry_t));
338 ret->next = port_list_head;
339 port_list_head = ret;
343 } /* port_entry_t *conn_get_port_entry */
345 /* Removes ports that were added automatically due to the `ListeningPorts'
346 * setting but which are no longer listening. */
347 static void conn_reset_port_entry (void)
349 port_entry_t *prev = NULL;
350 port_entry_t *pe = port_list_head;
354 /* If this entry was created while reading the files (ant not when handling
355 * the configuration) remove it now. */
356 if ((pe->flags & (PORT_COLLECT_LOCAL
357 | PORT_COLLECT_REMOTE
358 | PORT_IS_LISTENING)) == 0)
360 port_entry_t *next = pe->next;
362 DEBUG ("tcpconns plugin: Removing temporary entry "
363 "for listening port %"PRIu16, pe->port);
366 port_list_head = next;
376 memset (pe->count_local, '\0', sizeof (pe->count_local));
377 memset (pe->count_remote, '\0', sizeof (pe->count_remote));
378 pe->flags &= ~PORT_IS_LISTENING;
382 } /* void conn_reset_port_entry */
384 static int conn_handle_ports (uint16_t port_local, uint16_t port_remote, uint8_t state)
386 port_entry_t *pe = NULL;
388 if ((state > TCP_STATE_MAX)
389 #if TCP_STATE_MIN > 0
390 || (state < TCP_STATE_MIN)
394 NOTICE ("tcpconns plugin: Ignoring connection with "
395 "unknown state 0x%02"PRIx8".", state);
399 /* Listening sockets */
400 if ((state == TCP_STATE_LISTEN) && (port_collect_listening != 0))
402 pe = conn_get_port_entry (port_local, 1 /* create */);
404 pe->flags |= PORT_IS_LISTENING;
407 DEBUG ("tcpconns plugin: Connection %"PRIu16" <-> %"PRIu16" (%s)",
408 port_local, port_remote, tcp_state[state]);
410 pe = conn_get_port_entry (port_local, 0 /* no create */);
412 pe->count_local[state]++;
414 pe = conn_get_port_entry (port_remote, 0 /* no create */);
416 pe->count_remote[state]++;
419 } /* int conn_handle_ports */
422 static int conn_handle_line (char *buffer)
429 char *port_local_str;
430 char *port_remote_str;
432 uint16_t port_remote;
436 int buffer_len = strlen (buffer);
438 while ((buffer_len > 0) && (buffer[buffer_len - 1] < 32))
439 buffer[--buffer_len] = '\0';
443 fields_len = strsplit (buffer, fields, STATIC_ARRAY_SIZE (fields));
446 DEBUG ("tcpconns plugin: Got %i fields, expected at least 12.", fields_len);
450 port_local_str = strchr (fields[1], ':');
451 port_remote_str = strchr (fields[2], ':');
453 if ((port_local_str == NULL) || (port_remote_str == NULL))
457 if ((*port_local_str == '\0') || (*port_remote_str == '\0'))
461 port_local = (uint16_t) strtol (port_local_str, &endptr, 16);
462 if ((endptr == NULL) || (*endptr != '\0'))
466 port_remote = (uint16_t) strtol (port_remote_str, &endptr, 16);
467 if ((endptr == NULL) || (*endptr != '\0'))
471 state = (uint8_t) strtol (fields[3], &endptr, 16);
472 if ((endptr == NULL) || (*endptr != '\0'))
475 return (conn_handle_ports (port_local, port_remote, state));
476 } /* int conn_handle_line */
478 static int conn_read_file (const char *file)
483 fh = fopen (file, "r");
487 while (fgets (buffer, sizeof (buffer), fh) != NULL)
489 conn_handle_line (buffer);
490 } /* while (fgets) */
495 } /* int conn_read_file */
496 /* #endif KERNEL_LINUX */
498 #elif HAVE_SYSCTLBYNAME
499 /* #endif HAVE_SYSCTLBYNAME */
501 #elif HAVE_LIBKVM_NLIST
502 #endif /* HAVE_LIBKVM_NLIST */
504 static int conn_config (const char *key, const char *value)
506 if (strcasecmp (key, "ListeningPorts") == 0)
509 port_collect_listening = 1;
511 port_collect_listening = 0;
513 else if ((strcasecmp (key, "LocalPort") == 0)
514 || (strcasecmp (key, "RemotePort") == 0))
517 int port = atoi (value);
519 if ((port < 1) || (port > 65535))
521 ERROR ("tcpconns plugin: Invalid port: %i", port);
525 pe = conn_get_port_entry ((uint16_t) port, 1 /* create */);
528 ERROR ("tcpconns plugin: conn_get_port_entry failed.");
532 if (strcasecmp (key, "LocalPort") == 0)
533 pe->flags |= PORT_COLLECT_LOCAL;
535 pe->flags |= PORT_COLLECT_REMOTE;
543 } /* int conn_config */
546 static int conn_init (void)
548 if (port_list_head == NULL)
549 port_collect_listening = 1;
552 } /* int conn_init */
554 static int conn_read (void)
558 conn_reset_port_entry ();
560 if (conn_read_file ("/proc/net/tcp") != 0)
562 if (conn_read_file ("/proc/net/tcp6") != 0)
571 ERROR ("tcpconns plugin: Neither /proc/net/tcp nor /proc/net/tcp6 "
577 } /* int conn_read */
578 /* #endif KERNEL_LINUX */
580 #elif HAVE_SYSCTLBYNAME
581 static int conn_read (void)
587 struct xinpgen *in_orig;
588 struct xinpgen *in_ptr;
590 conn_reset_port_entry ();
593 status = sysctlbyname ("net.inet.tcp.pcblist", NULL, &buffer_len, 0, 0);
596 ERROR ("tcpconns plugin: sysctlbyname failed.");
600 buffer = (char *) malloc (buffer_len);
603 ERROR ("tcpconns plugin: malloc failed.");
607 status = sysctlbyname ("net.inet.tcp.pcblist", buffer, &buffer_len, 0, 0);
610 ERROR ("tcpconns plugin: sysctlbyname failed.");
615 if (buffer_len <= sizeof (struct xinpgen))
617 ERROR ("tcpconns plugin: (buffer_len <= sizeof (struct xinpgen))");
622 in_orig = (struct xinpgen *) buffer;
623 for (in_ptr = (struct xinpgen *) (((char *) in_orig) + in_orig->xig_len);
624 in_ptr->xig_len > sizeof (struct xinpgen);
625 in_ptr = (struct xinpgen *) (((char *) in_ptr) + in_ptr->xig_len))
627 struct tcpcb *tp = &((struct xtcpcb *) in_ptr)->xt_tp;
628 struct inpcb *inp = &((struct xtcpcb *) in_ptr)->xt_inp;
629 struct xsocket *so = &((struct xtcpcb *) in_ptr)->xt_socket;
631 /* Ignore non-TCP sockets */
632 if (so->xso_protocol != IPPROTO_TCP)
635 /* Ignore PCBs which were freed during copyout. */
636 if (inp->inp_gencnt > in_orig->xig_gen)
639 if (((inp->inp_vflag & INP_IPV4) == 0)
640 && ((inp->inp_vflag & INP_IPV6) == 0))
643 conn_handle_ports (ntohs (inp->inp_lport), ntohs (inp->inp_fport),
654 } /* int conn_read */
655 /* #endif HAVE_SYSCTLBYNAME */
657 #elif HAVE_LIBKVM_NLIST
658 static int kread (u_long addr, void *buf, int size)
662 status = kvm_read (kvmd, addr, buf, size);
665 ERROR ("tcpconns plugin: kvm_read failed (got %i, expected %i): %s\n",
666 status, size, kvm_geterr (kvmd));
672 static int conn_init (void)
674 char buf[_POSIX2_LINE_MAX];
683 kvmd = kvm_openfiles (NULL, NULL, NULL, O_RDONLY, buf);
686 ERROR ("tcpconns plugin: kvm_openfiles failed: %s", buf);
690 status = kvm_nlist (kvmd, nl);
693 ERROR ("tcpconns plugin: kvm_nlist failed with status %i.", status);
697 if (nl[N_TCBTABLE].n_type == 0)
699 ERROR ("tcpconns plugin: Error looking up kernel's namelist: "
700 "N_TCBTABLE is invalid.");
704 inpcbtable_off = (u_long) nl[N_TCBTABLE].n_value;
705 inpcbtable_ptr = (struct inpcbtable *) nl[N_TCBTABLE].n_value;
708 } /* int conn_init */
710 static int conn_read (void)
712 struct inpcbtable table;
719 conn_reset_port_entry ();
721 /* Read the pcbtable from the kernel */
722 status = kread (inpcbtable_off, &table, sizeof (table));
726 /* Get the `head' pcb */
727 head = (struct inpcb *) &(inpcbtable_ptr->inpt_queue);
728 /* Get the first pcb */
729 next = (struct inpcb *)CIRCLEQ_FIRST (&table.inpt_queue);
733 /* Read the pcb pointed to by `next' into `inpcb' */
734 kread ((u_long) next, &inpcb, sizeof (inpcb));
737 next = (struct inpcb *)CIRCLEQ_NEXT (&inpcb, inp_queue);
739 /* Ignore sockets, that are not connected. */
741 if (inpcb.inp_af == AF_INET6)
742 continue; /* XXX see netbsd/src/usr.bin/netstat/inet6.c */
744 if (!(inpcb.inp_flags & INP_IPV6)
745 && (inet_lnaof(inpcb.inp_laddr) == INADDR_ANY))
747 if ((inpcb.inp_flags & INP_IPV6)
748 && IN6_IS_ADDR_UNSPECIFIED (&inpcb.inp_laddr6))
752 kread ((u_long) inpcb.inp_ppcb, &tcpcb, sizeof (tcpcb));
753 conn_handle_ports (ntohs(inpcb.inp_lport), ntohs(inpcb.inp_fport), tcpcb.t_state);
754 } /* while (next != head) */
760 /* #endif HAVE_LIBKVM_NLIST */
764 static int conn_read (void)
770 struct netinfo_header *header;
771 struct netinfo_conn *conn;
773 conn_reset_port_entry ();
775 size = netinfo(NETINFO_TCP, 0, 0, 0);
778 ERROR ("tcpconns plugin: netinfo failed return: %i", size);
785 if ((size - sizeof (struct netinfo_header)) % sizeof (struct netinfo_conn))
787 ERROR ("tcpconns plugin: invalid buffer size");
794 ERROR ("tcpconns plugin: malloc failed");
798 if (netinfo(NETINFO_TCP, data, &size, 0) < 0)
800 ERROR ("tcpconns plugin: netinfo failed");
805 header = (struct netinfo_header *)data;
806 nconn = header->size;
807 conn = (struct netinfo_conn *)(data + sizeof(struct netinfo_header));
809 for (i=0; i < nconn; conn++, i++)
811 conn_handle_ports (conn->srcport, conn->dstport, conn->tcp_state);
820 #endif /* KERNEL_AIX */
822 void module_register (void)
824 plugin_register_config ("tcpconns", conn_config,
825 config_keys, config_keys_num);
827 plugin_register_init ("tcpconns", conn_init);
828 #elif HAVE_SYSCTLBYNAME
829 /* no initialization */
830 #elif HAVE_LIBKVM_NLIST
831 plugin_register_init ("tcpconns", conn_init);
833 /* no initialization */
835 plugin_register_read ("tcpconns", conn_read);
836 } /* void module_register */
839 * vim: set shiftwidth=2 softtabstop=2 tabstop=8 fdm=marker :