From 6cbc3983907728e8f18f5d4e8c84ad76be6c8499 Mon Sep 17 00:00:00 2001 From: mikeb Date: Fri, 17 Apr 2015 10:08:07 +0000 Subject: [PATCH] Remove unused ipsp_parse_headers that was supposed to parse packets returned by IPsec-enabled NICs; OK markus, hshoexer --- sys/netinet/ip_ipsp.c | 220 +----------------------------------------- 1 file changed, 1 insertion(+), 219 deletions(-) diff --git a/sys/netinet/ip_ipsp.c b/sys/netinet/ip_ipsp.c index 0f13f759c20..828a055d3c2 100644 --- a/sys/netinet/ip_ipsp.c +++ b/sys/netinet/ip_ipsp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ipsp.c,v 1.211 2015/04/16 19:24:13 markus Exp $ */ +/* $OpenBSD: ip_ipsp.c,v 1.212 2015/04/17 10:08:07 mikeb Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), * Angelos D. Keromytis (kermit@csd.uch.gr), @@ -947,221 +947,3 @@ ipsp_ref_match(struct ipsec_ref *ref1, struct ipsec_ref *ref2) return 1; } - -#ifdef notyet -/* - * Go down a chain of IPv4/IPv6/ESP/AH/IPiP chains creating an tag for each - * IPsec header encountered. The offset where the first header, as well - * as its type are given to us. - */ -struct m_tag * -ipsp_parse_headers(struct mbuf *m, int off, u_int8_t proto) -{ - int ipv4sa = 0, s, esphlen = 0, trail = 0, i; - SLIST_HEAD(packet_tags, m_tag) tags; - unsigned char lasteight[8]; - struct tdb_ident *tdbi; - struct m_tag *mtag; - struct tdb *tdb; - - struct ip iph; - -#ifdef INET6 - struct in6_addr ip6_dst; -#endif /* INET6 */ - - /* We have to start with a known network protocol. */ - if (proto != IPPROTO_IPV4 && proto != IPPROTO_IPV6) - return NULL; - - SLIST_INIT(&tags); - - while (1) { - switch (proto) { - case IPPROTO_IPV4: /* Also IPPROTO_IPIP */ - { - /* - * Save the IP header (we need both the - * address and ip_hl). - */ - m_copydata(m, off, sizeof(struct ip), (caddr_t) &iph); - ipv4sa = 1; - proto = iph.ip_p; - off += iph.ip_hl << 2; - break; - } - -#ifdef INET6 - case IPPROTO_IPV6: - { - int nxtp, l; - - /* Copy the IPv6 address. */ - m_copydata(m, off + offsetof(struct ip6_hdr, ip6_dst), - sizeof(struct ip6_hdr), (caddr_t) &ip6_dst); - ipv4sa = 0; - - /* - * Go down the chain of headers until we encounter a - * non-option. - */ - for (l = ip6_nexthdr(m, off, proto, &nxtp); l != -1; - l = ip6_nexthdr(m, off, proto, &nxtp)) { - off += l; - proto = nxtp; - - /* Construct a tag. */ - if (nxtp == IPPROTO_AH) { - mtag = m_tag_get(PACKET_TAG_IPSEC_IN_CRYPTO_DONE, - sizeof(struct tdb_ident), - M_NOWAIT); - - if (mtag == NULL) - return SLIST_FIRST(&tags); - - tdbi = (struct tdb_ident *) (mtag + 1); - memset(tdbi, 0, sizeof(struct tdb_ident)); - - m_copydata(m, off + sizeof(u_int32_t), - sizeof(u_int32_t), - (caddr_t) &tdbi->spi); - - tdbi->proto = IPPROTO_AH; - tdbi->dst.sin6.sin6_family = AF_INET6; - tdbi->dst.sin6.sin6_len = - sizeof(struct sockaddr_in6); - tdbi->dst.sin6.sin6_addr = ip6_dst; - tdbi->rdomain = - rtable_l2(m->m_pkthdr.ph_rtableid); - SLIST_INSERT_HEAD(&tags, - mtag, m_tag_link); - } - else - if (nxtp == IPPROTO_IPV6) - m_copydata(m, off + - offsetof(struct ip6_hdr, - ip6_dst), - sizeof(struct ip6_hdr), - (caddr_t) &ip6_dst); - } - break; - } -#endif /* INET6 */ - - case IPPROTO_ESP: - /* Verify that this has been decrypted. */ - { - union sockaddr_union su; - u_int32_t spi; - - m_copydata(m, off, sizeof(u_int32_t), (caddr_t) &spi); - memset(&su, 0, sizeof(union sockaddr_union)); - - s = splsoftnet(); - - if (ipv4sa) { - su.sin.sin_family = AF_INET; - su.sin.sin_len = sizeof(struct sockaddr_in); - su.sin.sin_addr = iph.ip_dst; - } - -#ifdef INET6 - if (!ipv4sa) { - su.sin6.sin6_family = AF_INET6; - su.sin6.sin6_len = sizeof(struct sockaddr_in6); - su.sin6.sin6_addr = ip6_dst; - } -#endif /* INET6 */ - - tdb = gettdb(spi, &su, IPPROTO_ESP); - if (tdb == NULL) { - splx(s); - return SLIST_FIRST(&tags); - } - - /* How large is the ESP header ? We use this later. */ - esphlen = 2 * sizeof(u_int32_t) + tdb->tdb_ivlen; - - /* Update the length of trailing ESP authenticators. */ - if (tdb->tdb_authalgxform) - trail += tdb->tdb_authalgxform->authsize; - - splx(s); - - /* Copy the last 10 bytes. */ - m_copydata(m, m->m_pkthdr.len - trail - 8, 8, - lasteight); - - /* Verify the self-describing padding values. */ - if (lasteight[6] != 0) { - if (lasteight[6] != lasteight[5]) - return SLIST_FIRST(&tags); - - for (i = 4; lasteight[i + 1] != 1 && i >= 0; - i--) - if (lasteight[i + 1] != - lasteight[i] + 1) - return SLIST_FIRST(&tags); - } - } - /* FALLTHROUGH */ - case IPPROTO_AH: - mtag = m_tag_get(PACKET_TAG_IPSEC_IN_CRYPTO_DONE, - sizeof(struct tdb_ident), M_NOWAIT); - if (mtag == NULL) - return SLIST_FIRST(&tags); - - tdbi = (struct tdb_ident *) (mtag + 1); - memset(tdbi, 0, sizeof(struct tdb_ident)); - - /* Get SPI off the relevant header. */ - if (proto == IPPROTO_AH) - m_copydata(m, off + sizeof(u_int32_t), - sizeof(u_int32_t), (caddr_t) &tdbi->spi); - else /* IPPROTO_ESP */ - m_copydata(m, off, sizeof(u_int32_t), - (caddr_t) &tdbi->spi); - - tdbi->proto = proto; /* AH or ESP */ - tdbi->rdomain = rtable_l2(m->m_pkthdr.ph_rtableid); - - /* Last network header was IPv4. */ - if (ipv4sa) { - tdbi->dst.sin.sin_family = AF_INET; - tdbi->dst.sin.sin_len = - sizeof(struct sockaddr_in); - tdbi->dst.sin.sin_addr = iph.ip_dst; - } - -#ifdef INET6 - /* Last network header was IPv6. */ - if (!ipv4sa) { - tdbi->dst.sin6.sin6_family = AF_INET6; - tdbi->dst.sin6.sin6_len = - sizeof(struct sockaddr_in6); - tdbi->dst.sin6.sin6_addr = ip6_dst; - } -#endif /* INET6 */ - - SLIST_INSERT_HEAD(&tags, mtag, m_tag_link); - - /* Update next protocol/header and header offset. */ - if (proto == IPPROTO_AH) { - u_int8_t foo[2]; - - m_copydata(m, off, 2 * sizeof(u_int8_t), foo); - proto = foo[0]; - off += (foo[1] + 2) << 2; - } else {/* IPPROTO_ESP */ - /* Initialized in IPPROTO_ESP case. */ - off += esphlen; - proto = lasteight[7]; - } - break; - - default: - return SLIST_FIRST(&tags); /* We're done. */ - } - } -} -#endif /* notyet */ -- 2.20.1