/*-1* SPDX-License-Identifier: BSD-3-Clause2*3* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.4* All rights reserved.5*6* Redistribution and use in source and binary forms, with or without7* modification, are permitted provided that the following conditions8* are met:9* 1. Redistributions of source code must retain the above copyright10* notice, this list of conditions and the following disclaimer.11* 2. Redistributions in binary form must reproduce the above copyright12* notice, this list of conditions and the following disclaimer in the13* documentation and/or other materials provided with the distribution.14* 3. Neither the name of the project nor the names of its contributors15* may be used to endorse or promote products derived from this software16* without specific prior written permission.17*18* THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND19* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE20* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE21* ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE22* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL23* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS24* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)25* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT26* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY27* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF28* SUCH DAMAGE.29*30* $KAME: dest6.c,v 1.59 2003/07/11 13:21:16 t-momose Exp $31*/3233#include <sys/cdefs.h>34#include "opt_inet.h"35#include "opt_inet6.h"3637#include <sys/param.h>38#include <sys/systm.h>39#include <sys/malloc.h>40#include <sys/mbuf.h>41#include <sys/domain.h>42#include <sys/protosw.h>43#include <sys/socket.h>44#include <sys/errno.h>45#include <sys/time.h>46#include <sys/kernel.h>4748#include <net/if.h>49#include <net/if_var.h>50#include <net/route.h>5152#include <netinet/in.h>53#include <netinet/in_var.h>54#include <netinet/ip6.h>55#include <netinet6/ip6_var.h>56#include <netinet/icmp6.h>5758/*59* Destination options header processing.60*/61int62dest6_input(struct mbuf **mp, int *offp, int proto)63{64struct mbuf *m;65int off, dstoptlen, optlen;66struct ip6_dest *dstopts;67u_int8_t *opt;6869m = *mp;70off = *offp;7172/* Validation of the length of the header. */73if (m->m_len < off + sizeof(*dstopts)) {74m = m_pullup(m, off + sizeof(*dstopts));75if (m == NULL) {76IP6STAT_INC(ip6s_exthdrtoolong);77*mp = m;78return (IPPROTO_DONE);79}80}81dstopts = (struct ip6_dest *)(mtod(m, caddr_t) + off);82dstoptlen = (dstopts->ip6d_len + 1) << 3;8384if (m->m_len < off + dstoptlen) {85m = m_pullup(m, off + dstoptlen);86if (m == NULL) {87IP6STAT_INC(ip6s_exthdrtoolong);88*mp = m;89return (IPPROTO_DONE);90}91}92dstopts = (struct ip6_dest *)(mtod(m, caddr_t) + off);93off += dstoptlen;94dstoptlen -= sizeof(struct ip6_dest);95opt = (u_int8_t *)dstopts + sizeof(struct ip6_dest);9697/* search header for all options. */98for (; dstoptlen > 0; dstoptlen -= optlen, opt += optlen) {99if (*opt != IP6OPT_PAD1 &&100(dstoptlen < IP6OPT_MINLEN || *(opt + 1) + 2 > dstoptlen)) {101IP6STAT_INC(ip6s_toosmall);102goto bad;103}104105switch (*opt) {106case IP6OPT_PAD1:107optlen = 1;108break;109case IP6OPT_PADN:110optlen = *(opt + 1) + 2;111break;112default: /* unknown option */113optlen = ip6_unknown_opt(opt, m,114opt - mtod(m, u_int8_t *));115if (optlen == -1) {116*mp = NULL;117return (IPPROTO_DONE);118}119optlen += 2;120break;121}122}123124*offp = off;125*mp = m;126return (dstopts->ip6d_nxt);127128bad:129m_freem(m);130*mp = NULL;131return (IPPROTO_DONE);132}133134135