Home | History | Annotate | Line # | Download | only in netinet6
route6.c revision 1.9
      1  1.9   itojun /*	$NetBSD: route6.c,v 1.9 2001/10/16 06:24:45 itojun Exp $	*/
      2  1.8   itojun /*	$KAME: route6.c,v 1.22 2000/12/03 00:54:00 itojun Exp $	*/
      3  1.3  thorpej 
      4  1.2   itojun /*
      5  1.2   itojun  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
      6  1.2   itojun  * All rights reserved.
      7  1.7   itojun  *
      8  1.2   itojun  * Redistribution and use in source and binary forms, with or without
      9  1.2   itojun  * modification, are permitted provided that the following conditions
     10  1.2   itojun  * are met:
     11  1.2   itojun  * 1. Redistributions of source code must retain the above copyright
     12  1.2   itojun  *    notice, this list of conditions and the following disclaimer.
     13  1.2   itojun  * 2. Redistributions in binary form must reproduce the above copyright
     14  1.2   itojun  *    notice, this list of conditions and the following disclaimer in the
     15  1.2   itojun  *    documentation and/or other materials provided with the distribution.
     16  1.2   itojun  * 3. Neither the name of the project nor the names of its contributors
     17  1.2   itojun  *    may be used to endorse or promote products derived from this software
     18  1.2   itojun  *    without specific prior written permission.
     19  1.7   itojun  *
     20  1.2   itojun  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
     21  1.2   itojun  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     22  1.2   itojun  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     23  1.2   itojun  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
     24  1.2   itojun  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     25  1.2   itojun  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     26  1.2   itojun  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     27  1.2   itojun  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     28  1.2   itojun  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     29  1.2   itojun  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     30  1.2   itojun  * SUCH DAMAGE.
     31  1.2   itojun  */
     32  1.2   itojun 
     33  1.2   itojun #include <sys/param.h>
     34  1.2   itojun #include <sys/mbuf.h>
     35  1.2   itojun #include <sys/socket.h>
     36  1.4   itojun #include <sys/systm.h>
     37  1.8   itojun #include <sys/queue.h>
     38  1.2   itojun 
     39  1.2   itojun #include <net/if.h>
     40  1.2   itojun 
     41  1.2   itojun #include <netinet/in.h>
     42  1.4   itojun #include <netinet6/in6_var.h>
     43  1.6   itojun #include <netinet/ip6.h>
     44  1.2   itojun #include <netinet6/ip6_var.h>
     45  1.2   itojun 
     46  1.2   itojun #include <netinet/icmp6.h>
     47  1.2   itojun 
     48  1.8   itojun static int ip6_rthdr0 __P((struct mbuf *, struct ip6_hdr *,
     49  1.8   itojun     struct ip6_rthdr0 *));
     50  1.2   itojun 
     51  1.2   itojun int
     52  1.2   itojun route6_input(mp, offp, proto)
     53  1.2   itojun 	struct mbuf **mp;
     54  1.2   itojun 	int *offp, proto;	/* proto is unused */
     55  1.2   itojun {
     56  1.8   itojun 	struct ip6_hdr *ip6;
     57  1.8   itojun 	struct mbuf *m = *mp;
     58  1.8   itojun 	struct ip6_rthdr *rh;
     59  1.2   itojun 	int off = *offp, rhlen;
     60  1.2   itojun 
     61  1.4   itojun #ifndef PULLDOWN_TEST
     62  1.2   itojun 	IP6_EXTHDR_CHECK(m, off, sizeof(*rh), IPPROTO_DONE);
     63  1.2   itojun 	ip6 = mtod(m, struct ip6_hdr *);
     64  1.2   itojun 	rh = (struct ip6_rthdr *)((caddr_t)ip6 + off);
     65  1.4   itojun #else
     66  1.4   itojun 	ip6 = mtod(m, struct ip6_hdr *);
     67  1.4   itojun 	IP6_EXTHDR_GET(rh, struct ip6_rthdr *, m, off, sizeof(*rh));
     68  1.4   itojun 	if (rh == NULL) {
     69  1.4   itojun 		ip6stat.ip6s_tooshort++;
     70  1.4   itojun 		return IPPROTO_DONE;
     71  1.4   itojun 	}
     72  1.4   itojun #endif
     73  1.2   itojun 
     74  1.8   itojun 	switch (rh->ip6r_type) {
     75  1.8   itojun 	case IPV6_RTHDR_TYPE_0:
     76  1.8   itojun 		rhlen = (rh->ip6r_len + 1) << 3;
     77  1.4   itojun #ifndef PULLDOWN_TEST
     78  1.8   itojun 		/*
     79  1.8   itojun 		 * note on option length:
     80  1.8   itojun 		 * due to IP6_EXTHDR_CHECK assumption, we cannot handle
     81  1.8   itojun 		 * very big routing header (max rhlen == 2048).
     82  1.8   itojun 		 */
     83  1.8   itojun 		IP6_EXTHDR_CHECK(m, off, rhlen, IPPROTO_DONE);
     84  1.4   itojun #else
     85  1.8   itojun 		/*
     86  1.8   itojun 		 * note on option length:
     87  1.8   itojun 		 * maximum rhlen: 2048
     88  1.8   itojun 		 * max mbuf m_pulldown can handle: MCLBYTES == usually 2048
     89  1.8   itojun 		 * so, here we are assuming that m_pulldown can handle
     90  1.8   itojun 		 * rhlen == 2048 case.  this may not be a good thing to
     91  1.8   itojun 		 * assume - we may want to avoid pulling it up altogether.
     92  1.8   itojun 		 */
     93  1.8   itojun 		IP6_EXTHDR_GET(rh, struct ip6_rthdr *, m, off, rhlen);
     94  1.8   itojun 		if (rh == NULL) {
     95  1.4   itojun 			ip6stat.ip6s_tooshort++;
     96  1.4   itojun 			return IPPROTO_DONE;
     97  1.8   itojun 		}
     98  1.4   itojun #endif
     99  1.8   itojun 		if (ip6_rthdr0(m, ip6, (struct ip6_rthdr0 *)rh))
    100  1.8   itojun 			return(IPPROTO_DONE);
    101  1.8   itojun 		break;
    102  1.8   itojun 	default:
    103  1.8   itojun 		/* unknown routing type */
    104  1.8   itojun 		if (rh->ip6r_segleft == 0) {
    105  1.8   itojun 			rhlen = (rh->ip6r_len + 1) << 3;
    106  1.8   itojun 			break;	/* Final dst. Just ignore the header. */
    107  1.8   itojun 		}
    108  1.8   itojun 		ip6stat.ip6s_badoptions++;
    109  1.8   itojun 		icmp6_error(m, ICMP6_PARAM_PROB, ICMP6_PARAMPROB_HEADER,
    110  1.8   itojun 			    (caddr_t)&rh->ip6r_type - (caddr_t)ip6);
    111  1.8   itojun 		return(IPPROTO_DONE);
    112  1.2   itojun 	}
    113  1.2   itojun 
    114  1.2   itojun 	*offp += rhlen;
    115  1.2   itojun 	return(rh->ip6r_nxt);
    116  1.2   itojun }
    117  1.2   itojun 
    118  1.2   itojun /*
    119  1.2   itojun  * Type0 routing header processing
    120  1.2   itojun  */
    121  1.2   itojun static int
    122  1.2   itojun ip6_rthdr0(m, ip6, rh0)
    123  1.2   itojun 	struct mbuf *m;
    124  1.2   itojun 	struct ip6_hdr *ip6;
    125  1.2   itojun 	struct ip6_rthdr0 *rh0;
    126  1.2   itojun {
    127  1.2   itojun 	int addrs, index;
    128  1.2   itojun 	struct in6_addr *nextaddr, tmpaddr;
    129  1.2   itojun 
    130  1.2   itojun 	if (rh0->ip6r0_segleft == 0)
    131  1.2   itojun 		return(0);
    132  1.2   itojun 
    133  1.2   itojun 	if (rh0->ip6r0_len % 2
    134  1.2   itojun #ifdef COMPAT_RFC1883
    135  1.2   itojun 	    || rh0->ip6r0_len > 46
    136  1.2   itojun #endif
    137  1.2   itojun 		) {
    138  1.2   itojun 		/*
    139  1.2   itojun 		 * Type 0 routing header can't contain more than 23 addresses.
    140  1.9   itojun 		 * RFC 2462: this limitation was removed since strict/loose
    141  1.2   itojun 		 * bitmap field was deleted.
    142  1.2   itojun 		 */
    143  1.2   itojun 		ip6stat.ip6s_badoptions++;
    144  1.2   itojun 		icmp6_error(m, ICMP6_PARAM_PROB, ICMP6_PARAMPROB_HEADER,
    145  1.2   itojun 			    (caddr_t)&rh0->ip6r0_len - (caddr_t)ip6);
    146  1.2   itojun 		return(-1);
    147  1.2   itojun 	}
    148  1.2   itojun 
    149  1.2   itojun 	if ((addrs = rh0->ip6r0_len / 2) < rh0->ip6r0_segleft) {
    150  1.2   itojun 		ip6stat.ip6s_badoptions++;
    151  1.2   itojun 		icmp6_error(m, ICMP6_PARAM_PROB, ICMP6_PARAMPROB_HEADER,
    152  1.2   itojun 			    (caddr_t)&rh0->ip6r0_segleft - (caddr_t)ip6);
    153  1.2   itojun 		return(-1);
    154  1.2   itojun 	}
    155  1.2   itojun 
    156  1.2   itojun 	index = addrs - rh0->ip6r0_segleft;
    157  1.2   itojun 	rh0->ip6r0_segleft--;
    158  1.2   itojun 	nextaddr = rh0->ip6r0_addr + index;
    159  1.2   itojun 
    160  1.5   itojun 	/*
    161  1.5   itojun 	 * reject invalid addresses.  be proactive about malicious use of
    162  1.5   itojun 	 * IPv4 mapped/compat address.
    163  1.5   itojun 	 * XXX need more checks?
    164  1.5   itojun 	 */
    165  1.2   itojun 	if (IN6_IS_ADDR_MULTICAST(nextaddr) ||
    166  1.5   itojun 	    IN6_IS_ADDR_UNSPECIFIED(nextaddr) ||
    167  1.5   itojun 	    IN6_IS_ADDR_V4MAPPED(nextaddr) ||
    168  1.5   itojun 	    IN6_IS_ADDR_V4COMPAT(nextaddr)) {
    169  1.5   itojun 		ip6stat.ip6s_badoptions++;
    170  1.5   itojun 		m_freem(m);
    171  1.5   itojun 		return(-1);
    172  1.5   itojun 	}
    173  1.5   itojun 	if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst) ||
    174  1.5   itojun 	    IN6_IS_ADDR_UNSPECIFIED(&ip6->ip6_dst) ||
    175  1.5   itojun 	    IN6_IS_ADDR_V4MAPPED(&ip6->ip6_dst) ||
    176  1.7   itojun 	    IN6_IS_ADDR_V4COMPAT(&ip6->ip6_dst)) {
    177  1.2   itojun 		ip6stat.ip6s_badoptions++;
    178  1.2   itojun 		m_freem(m);
    179  1.2   itojun 		return(-1);
    180  1.2   itojun 	}
    181  1.2   itojun 
    182  1.2   itojun 	/*
    183  1.2   itojun 	 * Swap the IPv6 destination address and nextaddr. Forward the packet.
    184  1.2   itojun 	 */
    185  1.2   itojun 	tmpaddr = *nextaddr;
    186  1.2   itojun 	*nextaddr = ip6->ip6_dst;
    187  1.2   itojun 	if (IN6_IS_ADDR_LINKLOCAL(nextaddr))
    188  1.2   itojun 		nextaddr->s6_addr16[1] = 0;
    189  1.2   itojun 	ip6->ip6_dst = tmpaddr;
    190  1.2   itojun 	if (IN6_IS_ADDR_LINKLOCAL(&ip6->ip6_dst))
    191  1.2   itojun 		ip6->ip6_dst.s6_addr16[1] = htons(m->m_pkthdr.rcvif->if_index);
    192  1.2   itojun 
    193  1.2   itojun #ifdef COMPAT_RFC1883
    194  1.2   itojun 	if (rh0->ip6r0_slmap[index / 8] & (1 << (7 - (index % 8))))
    195  1.2   itojun 		ip6_forward(m, IPV6_SRCRT_NEIGHBOR);
    196  1.2   itojun 	else
    197  1.2   itojun 		ip6_forward(m, IPV6_SRCRT_NOTNEIGHBOR);
    198  1.2   itojun #else
    199  1.2   itojun 	ip6_forward(m, 1);
    200  1.2   itojun #endif
    201  1.7   itojun 
    202  1.2   itojun 	return(-1);			/* m would be freed in ip6_forward() */
    203  1.2   itojun }
    204