netfilter: allow NFQUEUE bypass if no listener is available
authorFlorian Westphal <fw@strlen.de>
Tue, 18 Jan 2011 15:08:30 +0000 (16:08 +0100)
committerPatrick McHardy <kaber@trash.net>
Tue, 18 Jan 2011 15:08:30 +0000 (16:08 +0100)
commit94b27cc36123069966616670c3653cd6873babe9
treeb3a70cab28cbc021532d2a73cac6aae5e015d8ac
parentf615df76ed862b7d3927ec5f55b805ca19be29d9
netfilter: allow NFQUEUE bypass if no listener is available

If an skb is to be NF_QUEUE'd, but no program has opened the queue, the
packet is dropped.

This adds a v2 target revision of xt_NFQUEUE that allows packets to
continue through the ruleset instead.

Because the actual queueing happens outside of the target context, the
'bypass' flag has to be communicated back to the netfilter core.

Unfortunately the only choice to do this without adding a new function
argument is to use the target function return value (i.e. the verdict).

In the NF_QUEUE case, the upper 16bit already contain the queue number
to use.  The previous patch reduced NF_VERDICT_MASK to 0xff, i.e.
we now have extra room for a new flag.

If a hook issued a NF_QUEUE verdict, then the netfilter core will
continue packet processing if the queueing hook
returns -ESRCH (== "this queue does not exist") and the new
NF_VERDICT_FLAG_QUEUE_BYPASS flag is set in the verdict value.

Note: If the queue exists, but userspace does not consume packets fast
enough, the skb will still be dropped.

Signed-off-by: Florian Westphal <fwestphal@astaro.com>
Signed-off-by: Patrick McHardy <kaber@trash.net>
include/linux/netfilter.h
include/linux/netfilter/xt_NFQUEUE.h
net/netfilter/core.c
net/netfilter/nf_queue.c
net/netfilter/xt_NFQUEUE.c