diff options
author | Dan McDonald <danmcd@omniti.com> | 2017-02-01 14:55:57 -0500 |
---|---|---|
committer | Dan McDonald <danmcd@omniti.com> | 2017-02-17 13:57:13 -0500 |
commit | 7199b8e79a66167b9224eed40ed9bd8effcc49a8 (patch) | |
tree | 3e71fda20ade86f8c375fdf6bdee35921037a051 | |
parent | 2d8dae53e7585d2412a48eceb751cbfaea048241 (diff) | |
download | illumos-joyent-7199b8e79a66167b9224eed40ed9bd8effcc49a8.tar.gz |
7819 IPv6 Packet and MTU bug
Reviewed by: Robert Mustacchi <rm@joyent.com>
Reviewed by: Sebastien Roy <sebastien.roy@delphix.com>
Approved by: Richard Lowe <richlowe@richlowe.net>
-rw-r--r-- | usr/src/uts/common/inet/ip.h | 4 | ||||
-rw-r--r-- | usr/src/uts/common/inet/ip/ip.c | 12 | ||||
-rw-r--r-- | usr/src/uts/common/inet/ip/ip6.c | 43 | ||||
-rw-r--r-- | usr/src/uts/common/inet/ip/ip6_output.c | 3 |
4 files changed, 25 insertions, 37 deletions
diff --git a/usr/src/uts/common/inet/ip.h b/usr/src/uts/common/inet/ip.h index 748d9f26e7..f8ebb28ce8 100644 --- a/usr/src/uts/common/inet/ip.h +++ b/usr/src/uts/common/inet/ip.h @@ -24,7 +24,7 @@ * Copyright (c) 1991, 2010, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2012, Joyent, Inc. All rights reserved. * Copyright 2014 Nexenta Systems, Inc. All rights reserved. - * Copyright 2014, OmniTI Computer Consulting, Inc. All rights reserved. + * Copyright 2017 OmniTI Computer Consulting, Inc. All rights reserved. */ #ifndef _INET_IP_H @@ -551,7 +551,7 @@ extern void ip_mcast_mapping(struct ill_s *, uchar_t *, uchar_t *); #define DCEF_DEFAULT 0x0001 /* Default DCE - no pmtu or uinfo */ #define DCEF_PMTU 0x0002 /* Different than interface MTU */ #define DCEF_UINFO 0x0004 /* dce_uinfo set */ -#define DCEF_TOO_SMALL_PMTU 0x0008 /* Smaller than IPv4/IPv6 MIN */ +#define DCEF_TOO_SMALL_PMTU 0x0008 /* Smaller than IPv4 MIN */ #ifdef _KERNEL /* diff --git a/usr/src/uts/common/inet/ip/ip.c b/usr/src/uts/common/inet/ip/ip.c index f006e83a1f..0d11362dd1 100644 --- a/usr/src/uts/common/inet/ip/ip.c +++ b/usr/src/uts/common/inet/ip/ip.c @@ -23,7 +23,7 @@ * Copyright (c) 1991, 2010, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1990 Mentat Inc. * Copyright (c) 2012 Joyent, Inc. All rights reserved. - * Copyright (c) 2014, OmniTI Computer Consulting, Inc. All rights reserved. + * Copyright (c) 2017 OmniTI Computer Consulting, Inc. All rights reserved. */ #include <sys/types.h> @@ -3858,10 +3858,9 @@ ip_get_pmtu(ip_xmit_attr_t *ixa) } /* - * After receiving an ICMPv6 "packet too big" message with a - * MTU < 1280, and for multirouted IPv6 packets, the IP layer - * will insert a 8-byte fragment header in every packet. We compensate - * for those cases by returning a smaller path MTU to the ULP. + * For multirouted IPv6 packets, the IP layer will insert a 8-byte + * fragment header in every packet. We compensate for those cases by + * returning a smaller path MTU to the ULP. * * In the case of CGTP then ip_output will add a fragment header. * Make sure there is room for it by telling a smaller number @@ -3872,8 +3871,7 @@ ip_get_pmtu(ip_xmit_attr_t *ixa) * which is the size of the packets it can send. */ if (!(ixa->ixa_flags & IXAF_IS_IPV4)) { - if ((dce->dce_flags & DCEF_TOO_SMALL_PMTU) || - (ire->ire_flags & RTF_MULTIRT) || + if ((ire->ire_flags & RTF_MULTIRT) || (ixa->ixa_flags & IXAF_MULTIRT_MULTICAST)) { pmtu -= sizeof (ip6_frag_t); ixa->ixa_flags |= IXAF_IPV6_ADD_FRAGHDR; diff --git a/usr/src/uts/common/inet/ip/ip6.c b/usr/src/uts/common/inet/ip/ip6.c index c0b184e9ec..3796690972 100644 --- a/usr/src/uts/common/inet/ip/ip6.c +++ b/usr/src/uts/common/inet/ip/ip6.c @@ -21,6 +21,7 @@ /* * Copyright (c) 1991, 2010, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1990 Mentat Inc. + * Copyright 2017 OmniTI Computer Consulting, Inc. All rights reserved. */ #include <sys/types.h> @@ -682,6 +683,18 @@ icmp_inbound_too_big_v6(icmp6_t *icmp6, ip_recv_attr_t *ira) ip6h = (ip6_t *)&icmp6[1]; final_dst = ip_get_dst_v6(ip6h, NULL, NULL); + mtu = ntohl(icmp6->icmp6_mtu); + if (mtu < IPV6_MIN_MTU) { + /* + * RFC 8021 suggests to ignore messages where mtu is + * less than the IPv6 minimum. + */ + ip1dbg(("Received mtu less than IPv6 " + "min mtu %d: %d\n", IPV6_MIN_MTU, mtu)); + DTRACE_PROBE1(icmp6__too__small__mtu, uint32_t, mtu); + return; + } + /* * For link local destinations matching simply on address is not * sufficient. Same link local addresses for different ILL's is @@ -704,8 +717,6 @@ icmp_inbound_too_big_v6(icmp6_t *icmp6, ip_recv_attr_t *ira) return; } - mtu = ntohl(icmp6->icmp6_mtu); - mutex_enter(&dce->dce_lock); if (dce->dce_flags & DCEF_PMTU) old_max_frag = dce->dce_pmtu; @@ -714,37 +725,15 @@ icmp_inbound_too_big_v6(icmp6_t *icmp6, ip_recv_attr_t *ira) else old_max_frag = ill->ill_mtu; - if (mtu < IPV6_MIN_MTU) { - ip1dbg(("Received mtu less than IPv6 " - "min mtu %d: %d\n", IPV6_MIN_MTU, mtu)); - mtu = IPV6_MIN_MTU; - /* - * If an mtu less than IPv6 min mtu is received, - * we must include a fragment header in - * subsequent packets. - */ - dce->dce_flags |= DCEF_TOO_SMALL_PMTU; - } else { - dce->dce_flags &= ~DCEF_TOO_SMALL_PMTU; - } ip1dbg(("Received mtu from router: %d\n", mtu)); + DTRACE_PROBE1(icmp6__received__mtu, uint32_t, mtu); dce->dce_pmtu = MIN(old_max_frag, mtu); + icmp6->icmp6_mtu = htonl(dce->dce_pmtu); - /* Prepare to send the new max frag size for the ULP. */ - if (dce->dce_flags & DCEF_TOO_SMALL_PMTU) { - /* - * If we need a fragment header in every packet - * (above case or multirouting), make sure the - * ULP takes it into account when computing the - * payload size. - */ - icmp6->icmp6_mtu = htonl(dce->dce_pmtu - sizeof (ip6_frag_t)); - } else { - icmp6->icmp6_mtu = htonl(dce->dce_pmtu); - } /* We now have a PMTU for sure */ dce->dce_flags |= DCEF_PMTU; dce->dce_last_change_time = TICK_TO_SEC(ddi_get_lbolt64()); + mutex_exit(&dce->dce_lock); /* * After dropping the lock the new value is visible to everyone. diff --git a/usr/src/uts/common/inet/ip/ip6_output.c b/usr/src/uts/common/inet/ip/ip6_output.c index 9d28d3f461..b023a2fe6a 100644 --- a/usr/src/uts/common/inet/ip/ip6_output.c +++ b/usr/src/uts/common/inet/ip/ip6_output.c @@ -22,6 +22,7 @@ /* * Copyright 2010 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. + * Copyright 2017 OmniTI Computer Consulting, Inc. All rights reserved. */ /* Copyright (c) 1990 Mentat Inc. */ @@ -245,7 +246,7 @@ repeat_ire: * Older than 20 minutes. Drop the path MTU information. */ mutex_enter(&dce->dce_lock); - dce->dce_flags &= ~(DCEF_PMTU|DCEF_TOO_SMALL_PMTU); + dce->dce_flags &= ~DCEF_PMTU; dce->dce_last_change_time = TICK_TO_SEC(now); mutex_exit(&dce->dce_lock); dce_increment_generation(dce); |