1caf43b02SWarner Losh /*-
251369649SPedro F. Giffuni * SPDX-License-Identifier: BSD-3-Clause
351369649SPedro F. Giffuni *
482cd038dSYoshinobu Inoue * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
582cd038dSYoshinobu Inoue * All rights reserved.
682cd038dSYoshinobu Inoue *
782cd038dSYoshinobu Inoue * Redistribution and use in source and binary forms, with or without
882cd038dSYoshinobu Inoue * modification, are permitted provided that the following conditions
982cd038dSYoshinobu Inoue * are met:
1082cd038dSYoshinobu Inoue * 1. Redistributions of source code must retain the above copyright
1182cd038dSYoshinobu Inoue * notice, this list of conditions and the following disclaimer.
1282cd038dSYoshinobu Inoue * 2. Redistributions in binary form must reproduce the above copyright
1382cd038dSYoshinobu Inoue * notice, this list of conditions and the following disclaimer in the
1482cd038dSYoshinobu Inoue * documentation and/or other materials provided with the distribution.
1582cd038dSYoshinobu Inoue * 3. Neither the name of the project nor the names of its contributors
1682cd038dSYoshinobu Inoue * may be used to endorse or promote products derived from this software
1782cd038dSYoshinobu Inoue * without specific prior written permission.
1882cd038dSYoshinobu Inoue *
1982cd038dSYoshinobu Inoue * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
2082cd038dSYoshinobu Inoue * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2182cd038dSYoshinobu Inoue * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2282cd038dSYoshinobu Inoue * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
2382cd038dSYoshinobu Inoue * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2482cd038dSYoshinobu Inoue * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2582cd038dSYoshinobu Inoue * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2682cd038dSYoshinobu Inoue * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2782cd038dSYoshinobu Inoue * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2882cd038dSYoshinobu Inoue * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2982cd038dSYoshinobu Inoue * SUCH DAMAGE.
30b48287a3SDavid E. O'Brien *
31b48287a3SDavid E. O'Brien * $KAME: route6.c,v 1.24 2001/03/14 03:07:05 itojun Exp $
3282cd038dSYoshinobu Inoue */
3382cd038dSYoshinobu Inoue
34b48287a3SDavid E. O'Brien #include <sys/cdefs.h>
35686cdd19SJun-ichiro itojun Hagino #include "opt_inet.h"
36686cdd19SJun-ichiro itojun Hagino #include "opt_inet6.h"
37686cdd19SJun-ichiro itojun Hagino
3882cd038dSYoshinobu Inoue #include <sys/param.h>
3982cd038dSYoshinobu Inoue #include <sys/mbuf.h>
4082cd038dSYoshinobu Inoue #include <sys/socket.h>
41686cdd19SJun-ichiro itojun Hagino #include <sys/systm.h>
4233841545SHajimu UMEMOTO #include <sys/queue.h>
4382cd038dSYoshinobu Inoue
4482cd038dSYoshinobu Inoue #include <net/if.h>
4576039bc8SGleb Smirnoff #include <net/if_var.h>
4682cd038dSYoshinobu Inoue
4782cd038dSYoshinobu Inoue #include <netinet/in.h>
4882cd038dSYoshinobu Inoue #include <netinet6/in6_var.h>
49686cdd19SJun-ichiro itojun Hagino #include <netinet/ip6.h>
5082cd038dSYoshinobu Inoue #include <netinet6/ip6_var.h>
51a1f7e5f8SHajimu UMEMOTO #include <netinet6/scope6_var.h>
5282cd038dSYoshinobu Inoue
5382cd038dSYoshinobu Inoue #include <netinet/icmp6.h>
5482cd038dSYoshinobu Inoue
551272577eSXin LI /*
561272577eSXin LI * proto - is unused
571272577eSXin LI */
581272577eSXin LI
5982cd038dSYoshinobu Inoue int
route6_input(struct mbuf ** mp,int * offp,int proto)601272577eSXin LI route6_input(struct mbuf **mp, int *offp, int proto)
6182cd038dSYoshinobu Inoue {
6233841545SHajimu UMEMOTO struct ip6_hdr *ip6;
63503f4e47SBjoern A. Zeeb struct mbuf *m;
6433841545SHajimu UMEMOTO struct ip6_rthdr *rh;
6582cd038dSYoshinobu Inoue int off = *offp, rhlen;
661b53a49aSBjoern A. Zeeb #ifdef __notyet__
671410779aSHajimu UMEMOTO struct ip6aux *ip6a;
68503f4e47SBjoern A. Zeeb #endif
6933841545SHajimu UMEMOTO
70503f4e47SBjoern A. Zeeb m = *mp;
71503f4e47SBjoern A. Zeeb
72503f4e47SBjoern A. Zeeb #ifdef __notyet__
731410779aSHajimu UMEMOTO ip6a = ip6_findaux(m);
741410779aSHajimu UMEMOTO if (ip6a) {
7533841545SHajimu UMEMOTO /* XXX reject home-address option before rthdr */
7633841545SHajimu UMEMOTO if (ip6a->ip6a_flags & IP6A_SWAP) {
779cb8d207SAndrey V. Elsukov IP6STAT_INC(ip6s_badoptions);
7833841545SHajimu UMEMOTO m_freem(m);
7933841545SHajimu UMEMOTO return IPPROTO_DONE;
8033841545SHajimu UMEMOTO }
8133841545SHajimu UMEMOTO }
821b53a49aSBjoern A. Zeeb #endif
8382cd038dSYoshinobu Inoue
84*a4adf6ccSBjoern A. Zeeb if (m->m_len < off + sizeof(*rh)) {
85a61b5cfbSBjoern A. Zeeb m = m_pullup(m, off + sizeof(*rh));
86a61b5cfbSBjoern A. Zeeb if (m == NULL) {
87a61b5cfbSBjoern A. Zeeb IP6STAT_INC(ip6s_exthdrtoolong);
88a61b5cfbSBjoern A. Zeeb *mp = NULL;
89a61b5cfbSBjoern A. Zeeb return (IPPROTO_DONE);
90a61b5cfbSBjoern A. Zeeb }
91*a4adf6ccSBjoern A. Zeeb }
9282cd038dSYoshinobu Inoue ip6 = mtod(m, struct ip6_hdr *);
9382cd038dSYoshinobu Inoue rh = (struct ip6_rthdr *)((caddr_t)ip6 + off);
9482cd038dSYoshinobu Inoue
951263305fSBjoern A. Zeeb /*
961263305fSBjoern A. Zeeb * While this switch may look gratuitous, leave it in
971263305fSBjoern A. Zeeb * in favour of RH2 implementations, etc.
981263305fSBjoern A. Zeeb */
9982cd038dSYoshinobu Inoue switch (rh->ip6r_type) {
10082cd038dSYoshinobu Inoue default:
1011263305fSBjoern A. Zeeb /* Unknown routing header type. */
10282cd038dSYoshinobu Inoue if (rh->ip6r_segleft == 0) {
10382cd038dSYoshinobu Inoue rhlen = (rh->ip6r_len + 1) << 3;
10482cd038dSYoshinobu Inoue break; /* Final dst. Just ignore the header. */
10582cd038dSYoshinobu Inoue }
1069cb8d207SAndrey V. Elsukov IP6STAT_INC(ip6s_badoptions);
10782cd038dSYoshinobu Inoue icmp6_error(m, ICMP6_PARAM_PROB, ICMP6_PARAMPROB_HEADER,
10882cd038dSYoshinobu Inoue (caddr_t)&rh->ip6r_type - (caddr_t)ip6);
109a8fe77d8SBjoern A. Zeeb *mp = NULL;
11082cd038dSYoshinobu Inoue return (IPPROTO_DONE);
11182cd038dSYoshinobu Inoue }
11282cd038dSYoshinobu Inoue
11382cd038dSYoshinobu Inoue *offp += rhlen;
114a8fe77d8SBjoern A. Zeeb *mp = m;
11582cd038dSYoshinobu Inoue return (rh->ip6r_nxt);
11682cd038dSYoshinobu Inoue }
117