summaryrefslogtreecommitdiffstats
path: root/net/netfilter/nf_log_netdev.c
diff options
context:
space:
mode:
authorLiping Zhang2016-11-14 15:39:25 +0100
committerPablo Neira Ayuso2016-12-04 20:45:33 +0100
commit673ab46f345557e9d741e97ca0301280360d1af1 (patch)
tree7274e919256ae409a0657306e823df780dff6282 /net/netfilter/nf_log_netdev.c
parentnetfilter: built-in NAT support for UDPlite (diff)
downloadkernel-qcow2-linux-673ab46f345557e9d741e97ca0301280360d1af1.tar.gz
kernel-qcow2-linux-673ab46f345557e9d741e97ca0301280360d1af1.tar.xz
kernel-qcow2-linux-673ab46f345557e9d741e97ca0301280360d1af1.zip
netfilter: nf_log: do not assume ethernet header in netdev family
In netdev family, we will handle non ethernet packets, so using eth_hdr(skb)->h_proto is incorrect. Meanwhile, we can use socket(AF_PACKET...) to sending packets, so skb->protocol is not always set in bridge family. Add an extra parameter into nf_log_l2packet to solve this issue. Fixes: 1fddf4bad0ac ("netfilter: nf_log: add packet logging for netdev family") Signed-off-by: Liping Zhang <zlpnobody@gmail.com> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/netfilter/nf_log_netdev.c')
-rw-r--r--net/netfilter/nf_log_netdev.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/netfilter/nf_log_netdev.c b/net/netfilter/nf_log_netdev.c
index 1f645949f3d8..350eb147754d 100644
--- a/net/netfilter/nf_log_netdev.c
+++ b/net/netfilter/nf_log_netdev.c
@@ -23,7 +23,8 @@ static void nf_log_netdev_packet(struct net *net, u_int8_t pf,
const struct nf_loginfo *loginfo,
const char *prefix)
{
- nf_log_l2packet(net, pf, hooknum, skb, in, out, loginfo, prefix);
+ nf_log_l2packet(net, pf, skb->protocol, hooknum, skb, in, out,
+ loginfo, prefix);
}
static struct nf_logger nf_netdev_logger __read_mostly = {