summaryrefslogtreecommitdiffstats
path: root/sys/netinet6/ip6_input.c
diff options
context:
space:
mode:
authorume <ume@FreeBSD.org>2001-04-19 23:51:20 +0000
committerume <ume@FreeBSD.org>2001-04-19 23:51:20 +0000
commite4b5c81fc69d13aed18f66d2dc09e0b8e0728456 (patch)
tree83699811db438b64df03828108313c24f74b5f3d /sys/netinet6/ip6_input.c
parentd1a717d9fdf529ea941b475e0a50193433ca57fe (diff)
downloadFreeBSD-src-e4b5c81fc69d13aed18f66d2dc09e0b8e0728456.zip
FreeBSD-src-e4b5c81fc69d13aed18f66d2dc09e0b8e0728456.tar.gz
- Fix to receive icmp6 echo reply within the host itself to ff02::1.
- Fix to receive icmp6 echo reply to link-local of itself. Reported by: Eriya Akasaka <eakasaka@rodfbs.org> Submitted by: JINMEI Tatuya <jinmei@isl.rdc.toshiba.co.jp>
Diffstat (limited to 'sys/netinet6/ip6_input.c')
-rw-r--r--sys/netinet6/ip6_input.c34
1 files changed, 32 insertions, 2 deletions
diff --git a/sys/netinet6/ip6_input.c b/sys/netinet6/ip6_input.c
index b1de716..b63d4bf 100644
--- a/sys/netinet6/ip6_input.c
+++ b/sys/netinet6/ip6_input.c
@@ -439,8 +439,39 @@ ip6_input(m)
if ((m->m_pkthdr.rcvif->if_flags & IFF_LOOPBACK) != 0) {
if (IN6_IS_ADDR_LINKLOCAL(&ip6->ip6_dst)) {
struct in6_ifaddr *ia6;
+#ifndef FAKE_LOOPBACK_IF
+ int deliverifid;
- if ((ia6 = in6ifa_ifpwithaddr(m->m_pkthdr.rcvif,
+ /*
+ * Get a "real" delivered interface, which should be
+ * embedded in the second 16 bits of the destination
+ * address. We can probably trust the value, but we
+ * add validation for the value just for safety.
+ */
+ deliverifid = ntohs(ip6->ip6_dst.s6_addr16[1]);
+ if (deliverifid > 0 && deliverifid <= if_index) {
+ deliverifp = ifindex2ifnet[deliverifid];
+
+ /*
+ * XXX: fake the rcvif to the real interface.
+ * Since m_pkthdr.rcvif should be lo0 (or a
+ * variant), it would confuse scope handling
+ * code later.
+ */
+ m->m_pkthdr.rcvif = deliverifp;
+ }
+ else {
+ /*
+ * Last resort; just use rcvif.
+ * XXX: the packet would be discarded by the
+ * succeeding check.
+ */
+ deliverifp = m->m_pkthdr.rcvif;
+ }
+#else
+ deliverifp = m->m_pkthdr.rcvif;
+#endif
+ if ((ia6 = in6ifa_ifpwithaddr(deliverifp,
&ip6->ip6_dst)) != NULL) {
ia6->ia_ifa.if_ipackets++;
ia6->ia_ifa.if_ibytes += m->m_pkthdr.len;
@@ -453,7 +484,6 @@ ip6_input(m)
goto bad;
}
ours = 1;
- deliverifp = m->m_pkthdr.rcvif;
goto hbhcheck;
}
}
OpenPOWER on IntegriCloud