This is a note to let you know that I've just added the patch titled
ipv6/exthdrs: accept tlv which includes only padding
to the 3.11-stable tree which can be found at:
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
The filename of the patch is:
ipv6-exthdrs-accept-tlv-which-includes-only-padding.patch
and it can be found in the queue-3.11 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.
>From db0eceeab08191e447632387f976b2000322ea7f Mon Sep 17 00:00:00 2001
From: Jiri Pirko <[email protected]>
Date: Fri, 6 Sep 2013 16:02:25 +0200
Subject: ipv6/exthdrs: accept tlv which includes only padding
From: Jiri Pirko <[email protected]>
[ Upstream commit 8112b1fe071be01a28a774ed55909e6f4b29712d ]
In rfc4942 and rfc2460 I cannot find anything which would implicate to
drop packets which have only padding in tlv.
Current behaviour breaks TAHI Test v6LC.1.2.6.
Problem was intruduced in:
9b905fe6843 "ipv6/exthdrs: strict Pad1 and PadN check"
Signed-off-by: Jiri Pirko <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
---
net/ipv6/exthdrs.c | 6 ------
1 file changed, 6 deletions(-)
--- a/net/ipv6/exthdrs.c
+++ b/net/ipv6/exthdrs.c
@@ -162,12 +162,6 @@ static bool ip6_parse_tlv(const struct t
off += optlen;
len -= optlen;
}
- /* This case will not be caught by above check since its padding
- * length is smaller than 7:
- * 1 byte NH + 1 byte Length + 6 bytes Padding
- */
- if ((padlen == 6) && ((off - skb_network_header_len(skb)) == 8))
- goto bad;
if (len == 0)
return true;
Patches currently in stable-queue which might be from [email protected] are
queue-3.11/net_sched-htb-fix-a-typo-in-htb_change_class.patch
queue-3.11/ipv6-exthdrs-accept-tlv-which-includes-only-padding.patch
--
To unsubscribe from this list: send the line "unsubscribe stable" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html