summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Herbert2015-06-12 18:01:06 +0200
committerDavid S. Miller2015-06-12 23:24:28 +0200
commit6a74fcf426f51aaa569f0b973d10ac20468df238 (patch)
tree9d1b8fe5943f1be0e1244e68d963240571131e7a
parentflow_dissector: Fix MPLS entropy label handling in flow dissector (diff)
downloadkernel-qcow2-linux-6a74fcf426f51aaa569f0b973d10ac20468df238.tar.gz
kernel-qcow2-linux-6a74fcf426f51aaa569f0b973d10ac20468df238.tar.xz
kernel-qcow2-linux-6a74fcf426f51aaa569f0b973d10ac20468df238.zip
flow_dissector: add support for dst, hop-by-hop and routing ext hdrs
If dst, hop-by-hop or routing extension headers are present determine length of the options and skip over them in flow dissection. Signed-off-by: Tom Herbert <tom@herbertland.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--net/core/flow_dissector.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/net/core/flow_dissector.c b/net/core/flow_dissector.c
index 1818cdcaa9b9..22e4dffa0c8b 100644
--- a/net/core/flow_dissector.c
+++ b/net/core/flow_dissector.c
@@ -327,6 +327,7 @@ mpls:
return false;
}
+ip_proto_again:
switch (ip_proto) {
case IPPROTO_GRE: {
struct gre_hdr {
@@ -383,6 +384,22 @@ mpls:
}
goto again;
}
+ case NEXTHDR_HOP:
+ case NEXTHDR_ROUTING:
+ case NEXTHDR_DEST: {
+ u8 _opthdr[2], *opthdr;
+
+ if (proto != htons(ETH_P_IPV6))
+ break;
+
+ opthdr = __skb_header_pointer(skb, nhoff, sizeof(_opthdr),
+ data, hlen, &_opthdr);
+
+ ip_proto = _opthdr[0];
+ nhoff += (_opthdr[1] + 1) << 3;
+
+ goto ip_proto_again;
+ }
case IPPROTO_IPIP:
proto = htons(ETH_P_IP);
goto ip;