]> git.ipfire.org Git - thirdparty/iptables.git/commit
ip[6]tables: Add locking to prevent concurrent instances
authorPhil Oester <kernel@linuxace.com>
Fri, 31 May 2013 13:07:04 +0000 (09:07 -0400)
committerPablo Neira Ayuso <pablo@netfilter.org>
Tue, 11 Jun 2013 10:54:30 +0000 (12:54 +0200)
commit93587a04d0f2511e108bbc4d87a8b9d28a5c5dd8
treedcaf19625096fac37cddcc80a0ff1aff673c2579
parent34844da8f53ec80b34ad094f2fca2519a7079ec2
ip[6]tables: Add locking to prevent concurrent instances

There have been numerous complaints and bug reports over the years when admins
attempt to run more than one instance of iptables simultaneously.  Currently
open bug reports which are related:

325: Parallel execution of the iptables is impossible
758: Retry iptables command on transient failure
764: Doing -Z twice in parallel breaks counters
822: iptables shows negative or other bad packet/byte counts

As Patrick notes in 325:  "Since this has been a problem people keep running
into, I'd suggest to simply add some locking to iptables to catch the most
common case."

I started looking into alternatives to add locking, and of course the most
common/obvious solution is to use a pidfile.  But this has various downsides,
such as if the application is terminated abnormally and the pidfile isn't
cleaned up.  And this also requires a writable filesystem.  Using a UNIX domain
socket file (e.g. in /var/run) has similar issues.

Starting in 2.2, Linux added support for abstract sockets.  These sockets
require no filesystem, and automatically disappear once the application
terminates.  This is the locking solution I chose to implement in ip[6]tables.
As an added bonus, since each network namespace has its own socket pool, an
ip[6]tables instance running in one namespace will not lock out an ip[6]tables
instance running in another namespace.  A filesystem approach would have
to recognize and handle multiple network namespaces.

Signed-off-by: Phil Oester <kernel@linuxace.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
iptables/ip6tables.8.in
iptables/ip6tables.c
iptables/iptables.8.in
iptables/iptables.c
iptables/xshared.c
iptables/xshared.h