[IPv6] ESP: Discard dummy packets introduced in rfc4303

RFC4303 introduces dummy packets with a nexthdr value of 59
to implement traffic confidentiality. Such packets need to
be dropped silently and the payload may not be attempted to
be parsed as it consists of random chunk.

Signed-off-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Thomas Graf and committed by David S. Miller 95a02cfd 2017a72c

+6
+6
net/ipv6/esp6.c
··· 230 } 231 /* ... check padding bits here. Silly. :-) */ 232 233 pskb_trim(skb, skb->len - alen - padlen - 2); 234 ret = nexthdr[1]; 235 }
··· 230 } 231 /* ... check padding bits here. Silly. :-) */ 232 233 + /* RFC4303: Drop dummy packets without any error */ 234 + if (nexthdr[1] == IPPROTO_NONE) { 235 + ret = -EINVAL; 236 + goto out; 237 + } 238 + 239 pskb_trim(skb, skb->len - alen - padlen - 2); 240 ret = nexthdr[1]; 241 }