Home | History | Annotate | Line # | Download | only in netinet6
route6.c revision 1.2
      1  1.2  itojun /*
      2  1.2  itojun  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
      3  1.2  itojun  * All rights reserved.
      4  1.2  itojun  *
      5  1.2  itojun  * Redistribution and use in source and binary forms, with or without
      6  1.2  itojun  * modification, are permitted provided that the following conditions
      7  1.2  itojun  * are met:
      8  1.2  itojun  * 1. Redistributions of source code must retain the above copyright
      9  1.2  itojun  *    notice, this list of conditions and the following disclaimer.
     10  1.2  itojun  * 2. Redistributions in binary form must reproduce the above copyright
     11  1.2  itojun  *    notice, this list of conditions and the following disclaimer in the
     12  1.2  itojun  *    documentation and/or other materials provided with the distribution.
     13  1.2  itojun  * 3. Neither the name of the project nor the names of its contributors
     14  1.2  itojun  *    may be used to endorse or promote products derived from this software
     15  1.2  itojun  *    without specific prior written permission.
     16  1.2  itojun  *
     17  1.2  itojun  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
     18  1.2  itojun  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     19  1.2  itojun  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     20  1.2  itojun  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
     21  1.2  itojun  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     22  1.2  itojun  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     23  1.2  itojun  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     24  1.2  itojun  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     25  1.2  itojun  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     26  1.2  itojun  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     27  1.2  itojun  * SUCH DAMAGE.
     28  1.2  itojun  */
     29  1.2  itojun 
     30  1.2  itojun #include <sys/param.h>
     31  1.2  itojun #include <sys/mbuf.h>
     32  1.2  itojun #include <sys/socket.h>
     33  1.2  itojun 
     34  1.2  itojun #include <net/if.h>
     35  1.2  itojun 
     36  1.2  itojun #include <netinet/in.h>
     37  1.2  itojun #include <netinet6/in6.h>
     38  1.2  itojun #include <netinet6/ip6.h>
     39  1.2  itojun #include <netinet6/ip6_var.h>
     40  1.2  itojun 
     41  1.2  itojun #include <netinet/icmp6.h>
     42  1.2  itojun 
     43  1.2  itojun static int ip6_rthdr0 __P((struct mbuf *, struct ip6_hdr *, struct ip6_rthdr0 *));
     44  1.2  itojun 
     45  1.2  itojun int
     46  1.2  itojun route6_input(mp, offp, proto)
     47  1.2  itojun 	struct mbuf **mp;
     48  1.2  itojun 	int *offp, proto;	/* proto is unused */
     49  1.2  itojun {
     50  1.2  itojun 	register struct ip6_hdr *ip6;
     51  1.2  itojun 	register struct mbuf *m = *mp;
     52  1.2  itojun 	register struct ip6_rthdr *rh;
     53  1.2  itojun 	int off = *offp, rhlen;
     54  1.2  itojun 
     55  1.2  itojun 	IP6_EXTHDR_CHECK(m, off, sizeof(*rh), IPPROTO_DONE);
     56  1.2  itojun 	ip6 = mtod(m, struct ip6_hdr *);
     57  1.2  itojun 	rh = (struct ip6_rthdr *)((caddr_t)ip6 + off);
     58  1.2  itojun 
     59  1.2  itojun 	switch(rh->ip6r_type) {
     60  1.2  itojun 	 case IPV6_RTHDR_TYPE_0:
     61  1.2  itojun 		 rhlen = (rh->ip6r_len + 1) << 3;
     62  1.2  itojun 		 IP6_EXTHDR_CHECK(m, off, rhlen, IPPROTO_DONE);
     63  1.2  itojun 		 if (ip6_rthdr0(m, ip6, (struct ip6_rthdr0 *)rh))
     64  1.2  itojun 			 return(IPPROTO_DONE);
     65  1.2  itojun 		 break;
     66  1.2  itojun 	 default:
     67  1.2  itojun 		 /* unknown routing type */
     68  1.2  itojun 		 if (rh->ip6r_segleft == 0) {
     69  1.2  itojun 			 rhlen = (rh->ip6r_len + 1) << 3;
     70  1.2  itojun 			 break;	/* Final dst. Just ignore the header. */
     71  1.2  itojun 		 }
     72  1.2  itojun 		 ip6stat.ip6s_badoptions++;
     73  1.2  itojun 		 icmp6_error(m, ICMP6_PARAM_PROB, ICMP6_PARAMPROB_HEADER,
     74  1.2  itojun 			     (caddr_t)&rh->ip6r_type - (caddr_t)ip6);
     75  1.2  itojun 		 return(IPPROTO_DONE);
     76  1.2  itojun 	}
     77  1.2  itojun 
     78  1.2  itojun 	*offp += rhlen;
     79  1.2  itojun 	return(rh->ip6r_nxt);
     80  1.2  itojun }
     81  1.2  itojun 
     82  1.2  itojun /*
     83  1.2  itojun  * Type0 routing header processing
     84  1.2  itojun  */
     85  1.2  itojun static int
     86  1.2  itojun ip6_rthdr0(m, ip6, rh0)
     87  1.2  itojun 	struct mbuf *m;
     88  1.2  itojun 	struct ip6_hdr *ip6;
     89  1.2  itojun 	struct ip6_rthdr0 *rh0;
     90  1.2  itojun {
     91  1.2  itojun 	int addrs, index;
     92  1.2  itojun 	struct in6_addr *nextaddr, tmpaddr;
     93  1.2  itojun 
     94  1.2  itojun 	if (rh0->ip6r0_segleft == 0)
     95  1.2  itojun 		return(0);
     96  1.2  itojun 
     97  1.2  itojun 	if (rh0->ip6r0_len % 2
     98  1.2  itojun #ifdef COMPAT_RFC1883
     99  1.2  itojun 	    || rh0->ip6r0_len > 46
    100  1.2  itojun #endif
    101  1.2  itojun 		) {
    102  1.2  itojun 		/*
    103  1.2  itojun 		 * Type 0 routing header can't contain more than 23 addresses.
    104  1.2  itojun 		 * RFC 2462: this limitation was removed since stict/loose
    105  1.2  itojun 		 * bitmap field was deleted.
    106  1.2  itojun 		 */
    107  1.2  itojun 		ip6stat.ip6s_badoptions++;
    108  1.2  itojun 		icmp6_error(m, ICMP6_PARAM_PROB, ICMP6_PARAMPROB_HEADER,
    109  1.2  itojun 			    (caddr_t)&rh0->ip6r0_len - (caddr_t)ip6);
    110  1.2  itojun 		return(-1);
    111  1.2  itojun 	}
    112  1.2  itojun 
    113  1.2  itojun 	if ((addrs = rh0->ip6r0_len / 2) < rh0->ip6r0_segleft) {
    114  1.2  itojun 		ip6stat.ip6s_badoptions++;
    115  1.2  itojun 		icmp6_error(m, ICMP6_PARAM_PROB, ICMP6_PARAMPROB_HEADER,
    116  1.2  itojun 			    (caddr_t)&rh0->ip6r0_segleft - (caddr_t)ip6);
    117  1.2  itojun 		return(-1);
    118  1.2  itojun 	}
    119  1.2  itojun 
    120  1.2  itojun 	index = addrs - rh0->ip6r0_segleft;
    121  1.2  itojun 	rh0->ip6r0_segleft--;
    122  1.2  itojun 	nextaddr = rh0->ip6r0_addr + index;
    123  1.2  itojun 
    124  1.2  itojun 	if (IN6_IS_ADDR_MULTICAST(nextaddr) ||
    125  1.2  itojun 	    IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst)) {
    126  1.2  itojun 		ip6stat.ip6s_badoptions++;
    127  1.2  itojun 		m_freem(m);
    128  1.2  itojun 		return(-1);
    129  1.2  itojun 	}
    130  1.2  itojun 
    131  1.2  itojun 	/*
    132  1.2  itojun 	 * Swap the IPv6 destination address and nextaddr. Forward the packet.
    133  1.2  itojun 	 */
    134  1.2  itojun 	tmpaddr = *nextaddr;
    135  1.2  itojun 	*nextaddr = ip6->ip6_dst;
    136  1.2  itojun 	if (IN6_IS_ADDR_LINKLOCAL(nextaddr))
    137  1.2  itojun 		nextaddr->s6_addr16[1] = 0;
    138  1.2  itojun 	ip6->ip6_dst = tmpaddr;
    139  1.2  itojun 	if (IN6_IS_ADDR_LINKLOCAL(&ip6->ip6_dst))
    140  1.2  itojun 		ip6->ip6_dst.s6_addr16[1] = htons(m->m_pkthdr.rcvif->if_index);
    141  1.2  itojun 
    142  1.2  itojun #ifdef COMPAT_RFC1883
    143  1.2  itojun 	if (rh0->ip6r0_slmap[index / 8] & (1 << (7 - (index % 8))))
    144  1.2  itojun 		ip6_forward(m, IPV6_SRCRT_NEIGHBOR);
    145  1.2  itojun 	else
    146  1.2  itojun 		ip6_forward(m, IPV6_SRCRT_NOTNEIGHBOR);
    147  1.2  itojun #else
    148  1.2  itojun 	ip6_forward(m, 1);
    149  1.2  itojun #endif
    150  1.2  itojun 
    151  1.2  itojun 	return(-1);			/* m would be freed in ip6_forward() */
    152  1.2  itojun }
    153