No description
  • C 97.6%
  • Makefile 1.8%
  • M4 0.4%
  • Shell 0.2%
Find a file
Steve Kondik 771a11bae4 conntrack: Fix Clang errors
*  error: fields must have a constant size: 'variable length array in
    structure' extension will never be supported

Change-Id: Iad4e0452dcf636179227cfadba363a207f2fcb93
2016-09-01 00:29:38 -07:00
examples api: add CTA_LABEL_MASK attribute handling 2013-05-06 21:34:35 +02:00
include conntrack: api: add nfct_snprintf_labels 2013-07-04 22:25:01 +02:00
libmnl libnetfilter_conntrack: Add Android.mk to make libnetfilter_conntrack library 2014-06-23 18:32:42 -07:00
m4 build: add libtool m4 support 2010-09-04 13:25:32 +02:00
qa qa: test_connlabel: don't abort when system-wide config exists 2013-07-11 22:47:18 +02:00
src conntrack: Fix Clang errors 2016-09-01 00:29:38 -07:00
utils expect: add example that creates an expectation with NAT 2012-09-11 17:01:19 +02:00
.gitignore build: use AC_CONFIG_AUX_DIR and stash away tools 2011-12-17 03:57:18 +01:00
Android.mk conntrack: Fix Clang errors 2016-09-01 00:29:38 -07:00
autogen.sh build: use sh -e, remove autom4te.cache 2010-10-30 23:31:15 +02:00
configure.ac configure: uclinux is also linux 2013-09-17 12:55:06 +02:00
COPYING add gpl 2005-07-30 21:18:53 +00:00
doxygen.cfg.in doc: minor improvements for doxygen config file 2010-09-08 11:49:07 +02:00
libnetfilter_conntrack.pc.in build: set Libs.private for pkgconfig file 2010-10-30 23:13:11 +02:00
Make_global.am build: bump version to 1.0.4 2013-07-15 23:01:11 +02:00
Makefile.am examples: add example using libmnl and the new low-level API (conntrack) 2012-05-26 17:24:36 +02:00
README src: clarify licensing terms of library (GPLv2+) 2011-12-30 00:49:35 +01:00

libnetfilter_conntrack - userspace library for the connection tracking system
(C) 2005-2011 Pablo Neira Ayuso <pablo@netfilter.org>
=============================================================================

= Connection Tracking System =

The connection tracking system is a in-kernel subsystem that stores information
about the state of a connection in a memory structure that contains the source
and destination IP addresses, port number pairs, protocol types, state, and 
timeout. With this extra information, we can define more intelligent filtering
policies. 

Moreover, there are some application protocols, such as FTP, TFTP, IRC, PPTP 
that have aspects that are hard to track for a firewall that follows the 
traditional static filtering approach. The connection tracking system defines 
a mechanism to track such aspects.

The connection tracking system does not alter the packets themselves; the 
default behavior always lets the packets continue their travel through the
network stack, although there are a couple of very specific exceptions where 
packets can be dropped (e.g., under memory exhaustion). So keep in mind that 
the connection tracking system just tracks packets; it does not filter.

For further information on the connection tracking system, please see the
reference section at the bottom of this document.

= What is libnetfilter_conntrack? =

libnetfilter_conntrack is an userspace library that provides an interface to 
the in-kernel connection tracking system.

= License =

libnetfilter_conntrack is released under GPLv2 or any later at your option.

= Prerequirements for libnetfilter_conntrack =

Linux kernel version >= 2.6.18 (http://www.kernel.org) and enable support for:

 * connection tracking system (quite obvious ;)
 * nfnetlink
 * ctnetlink (ip_conntrack_netlink)
 * connection tracking event notification API 

= Documentation =

You can generate the doxygen-based documentation by invoking:
	$ doxygen doxygen.cfg

= Examples =

You can find a set of handy examples on the use of libnetfilter_conntrack 
under the directory utils/ distributed with this library. You can compile them
by invoking:
	$ make check

= Heads Up =

libnetfilter_conntrack used to provided two different APIs: The old one had
several limitations, for that reason, it was deprecated time ago. The existing
library only provides the new API that solves former deficiencies. Thus, make
sure you use recent versions of libnetfilter_conntrack and, in case that
you are using the old API, consider porting your application to the new one.

Since libnetfilter_conntrack >= 0.9.1, you can use the same handler obtained
via nfct_open() to register conntrack and expectation callbacks (before this
version, this was not possible).

= References =

[1] Pablo Neira Ayuso. Netfilter's Connection Tracking System:
    http://people.netfilter.org/pablo/docs/login.pdf