Home | History | Annotate | Line # | Download | only in netinet6
      1  1.25      maxv /*	$NetBSD: route6.c,v 1.25 2018/02/01 16:23:28 maxv 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.10     lukem 
     33  1.10     lukem #include <sys/cdefs.h>
     34  1.25      maxv __KERNEL_RCSID(0, "$NetBSD: route6.c,v 1.25 2018/02/01 16:23:28 maxv Exp $");
     35   1.2    itojun 
     36   1.2    itojun #include <sys/param.h>
     37   1.2    itojun #include <sys/mbuf.h>
     38   1.4    itojun #include <sys/systm.h>
     39   1.2    itojun 
     40   1.2    itojun #include <net/if.h>
     41   1.2    itojun 
     42   1.2    itojun #include <netinet/in.h>
     43   1.4    itojun #include <netinet6/in6_var.h>
     44   1.6    itojun #include <netinet/ip6.h>
     45   1.2    itojun #include <netinet6/ip6_var.h>
     46  1.23   thorpej #include <netinet6/ip6_private.h>
     47   1.2    itojun 
     48   1.2    itojun #include <netinet/icmp6.h>
     49   1.2    itojun 
     50   1.2    itojun int
     51  1.16  christos route6_input(struct mbuf **mp, int *offp, int proto)
     52   1.2    itojun {
     53   1.8    itojun 	struct mbuf *m = *mp;
     54   1.8    itojun 	struct ip6_rthdr *rh;
     55   1.2    itojun 	int off = *offp, rhlen;
     56   1.2    itojun 
     57   1.4    itojun 	IP6_EXTHDR_GET(rh, struct ip6_rthdr *, m, off, sizeof(*rh));
     58   1.4    itojun 	if (rh == NULL) {
     59  1.23   thorpej 		IP6_STATINC(IP6_STAT_TOOSHORT);
     60   1.4    itojun 		return IPPROTO_DONE;
     61   1.4    itojun 	}
     62   1.2    itojun 
     63   1.8    itojun 	switch (rh->ip6r_type) {
     64   1.8    itojun 	case IPV6_RTHDR_TYPE_0:
     65  1.19      yamt 		/*
     66  1.25      maxv 		 * RFC5095: RH0 must be treated as unrecognized.
     67  1.19      yamt 		 */
     68   1.8    itojun 	default:
     69   1.8    itojun 		/* unknown routing type */
     70   1.8    itojun 		if (rh->ip6r_segleft == 0) {
     71   1.8    itojun 			rhlen = (rh->ip6r_len + 1) << 3;
     72   1.8    itojun 			break;	/* Final dst. Just ignore the header. */
     73   1.8    itojun 		}
     74  1.23   thorpej 		IP6_STATINC(IP6_STAT_BADOPTIONS);
     75   1.8    itojun 		icmp6_error(m, ICMP6_PARAM_PROB, ICMP6_PARAMPROB_HEADER,
     76  1.24      maxv 		    off + offsetof(struct ip6_rthdr, ip6r_type));
     77  1.25      maxv 		return IPPROTO_DONE;
     78   1.2    itojun 	}
     79   1.2    itojun 
     80   1.2    itojun 	*offp += rhlen;
     81  1.25      maxv 	return rh->ip6r_nxt;
     82   1.2    itojun }
     83