aboutsummaryrefslogtreecommitdiffstats
path: root/net/netfilter/nft_fwd_netdev.c
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2016-11-28 11:40:05 +0100
committerPablo Neira Ayuso <pablo@netfilter.org>2016-12-06 21:48:21 +0100
commitdf122f58b834b24c27d7e2ac02a4910d3e56f6ae (patch)
treeaf3a2ec7d16644f9d84ac5779a5c7a3d15c43cbe /net/netfilter/nft_fwd_netdev.c
parentnetfilter: xt_multiport: Fix wrong unmatch result with multiple ports (diff)
downloadlinux-dev-df122f58b834b24c27d7e2ac02a4910d3e56f6ae.tar.xz
linux-dev-df122f58b834b24c27d7e2ac02a4910d3e56f6ae.zip
netfilter: ingress: translate 0 nf_hook_slow retval to -1
The caller assumes that < 0 means that skb was stolen (or free'd). All other return values continue skb processing. nf_hook_slow returns 3 different return value types: A) a (negative) errno value: the skb was dropped (NF_DROP, e.g. by iptables '-j DROP' rule). B) 0. The skb was stolen by the hook or queued to userspace. C) 1. all hooks returned NF_ACCEPT so the caller should invoke the okfn so packet processing can continue. nft ingress facility currently doesn't have the 'okfn' that the NF_HOOK() macros use; there is no nfqueue support either. So 1 means that nf_hook_ingress() caller should go on processing the skb. In order to allow use of NF_STOLEN from ingress we need to translate this to an errno number, else we'd crash because we continue with already-free'd (or about to be free-d) skb. The errno value isn't checked, its just important that its less than 0, so return -1. Signed-off-by: Florian Westphal <fw@strlen.de> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/netfilter/nft_fwd_netdev.c')
0 files changed, 0 insertions, 0 deletions