diff options
author | Julian Anastasov <ja@ssi.bg> | 2013-06-18 03:08:06 -0400 |
---|---|---|
committer | Simon Horman <horms@verge.net.au> | 2013-06-18 20:53:52 -0400 |
commit | 06f3d7f973ec04290d86b7dd91b48d38d90433dc (patch) | |
tree | 910df914091400d7682666faebeb63bd470139da /net | |
parent | b396966c4688522863572927cb30aa874b3ec504 (diff) |
ipvs: SCTP ports should be writable in ICMP packets
Make sure that SCTP ports are writable when embedded in ICMP
from client, so that ip_vs_nat_icmp can translate them safely.
Signed-off-by: Julian Anastasov <ja@ssi.bg>
Signed-off-by: Simon Horman <horms@verge.net.au>
Diffstat (limited to 'net')
-rw-r--r-- | net/netfilter/ipvs/ip_vs_core.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/netfilter/ipvs/ip_vs_core.c b/net/netfilter/ipvs/ip_vs_core.c index 05565d2b3a61..23b8eb53a569 100644 --- a/net/netfilter/ipvs/ip_vs_core.c +++ b/net/netfilter/ipvs/ip_vs_core.c | |||
@@ -1442,7 +1442,8 @@ ignore_ipip: | |||
1442 | 1442 | ||
1443 | /* do the statistics and put it back */ | 1443 | /* do the statistics and put it back */ |
1444 | ip_vs_in_stats(cp, skb); | 1444 | ip_vs_in_stats(cp, skb); |
1445 | if (IPPROTO_TCP == cih->protocol || IPPROTO_UDP == cih->protocol) | 1445 | if (IPPROTO_TCP == cih->protocol || IPPROTO_UDP == cih->protocol || |
1446 | IPPROTO_SCTP == cih->protocol) | ||
1446 | offset += 2 * sizeof(__u16); | 1447 | offset += 2 * sizeof(__u16); |
1447 | verdict = ip_vs_icmp_xmit(skb, cp, pp, offset, hooknum, &ciph); | 1448 | verdict = ip_vs_icmp_xmit(skb, cp, pp, offset, hooknum, &ciph); |
1448 | 1449 | ||