Home | History | Annotate | Line # | Download | only in netinet6
ip6_mroute.c revision 1.130
      1  1.130   msaitoh /*	$NetBSD: ip6_mroute.c,v 1.130 2019/07/24 02:38:29 msaitoh Exp $	*/
      2   1.22    itojun /*	$KAME: ip6_mroute.c,v 1.49 2001/07/25 09:21:18 jinmei Exp $	*/
      3    1.3   thorpej 
      4    1.2    itojun /*
      5    1.2    itojun  * Copyright (C) 1998 WIDE Project.
      6    1.2    itojun  * All rights reserved.
      7   1.12    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.12    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 /*	BSDI ip_mroute.c,v 2.10 1996/11/14 00:29:52 jch Exp	*/
     34    1.2    itojun 
     35    1.2    itojun /*
     36   1.41    itojun  * Copyright (c) 1992, 1993
     37   1.41    itojun  *      The Regents of the University of California.  All rights reserved.
     38   1.41    itojun  *
     39   1.41    itojun  * This code is derived from software contributed to Berkeley by
     40   1.41    itojun  * Stephen Deering of Stanford University.
     41   1.41    itojun  *
     42   1.41    itojun  * Redistribution and use in source and binary forms, with or without
     43   1.41    itojun  * modification, are permitted provided that the following conditions
     44   1.41    itojun  * are met:
     45   1.41    itojun  * 1. Redistributions of source code must retain the above copyright
     46   1.41    itojun  *    notice, this list of conditions and the following disclaimer.
     47   1.41    itojun  * 2. Redistributions in binary form must reproduce the above copyright
     48   1.41    itojun  *    notice, this list of conditions and the following disclaimer in the
     49   1.41    itojun  *    documentation and/or other materials provided with the distribution.
     50   1.53       agc  * 3. Neither the name of the University nor the names of its contributors
     51   1.53       agc  *    may be used to endorse or promote products derived from this software
     52   1.53       agc  *    without specific prior written permission.
     53   1.53       agc  *
     54   1.53       agc  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     55   1.53       agc  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     56   1.53       agc  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     57   1.53       agc  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     58   1.53       agc  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     59   1.53       agc  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     60   1.53       agc  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     61   1.53       agc  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     62   1.53       agc  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     63   1.53       agc  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     64   1.53       agc  * SUCH DAMAGE.
     65   1.53       agc  *
     66   1.53       agc  *      @(#)ip_mroute.c 8.2 (Berkeley) 11/15/93
     67   1.53       agc  */
     68   1.53       agc 
     69   1.53       agc /*
     70   1.53       agc  * Copyright (c) 1989 Stephen Deering
     71   1.53       agc  *
     72   1.53       agc  * This code is derived from software contributed to Berkeley by
     73   1.53       agc  * Stephen Deering of Stanford University.
     74   1.53       agc  *
     75   1.53       agc  * Redistribution and use in source and binary forms, with or without
     76   1.53       agc  * modification, are permitted provided that the following conditions
     77   1.53       agc  * are met:
     78   1.53       agc  * 1. Redistributions of source code must retain the above copyright
     79   1.53       agc  *    notice, this list of conditions and the following disclaimer.
     80   1.53       agc  * 2. Redistributions in binary form must reproduce the above copyright
     81   1.53       agc  *    notice, this list of conditions and the following disclaimer in the
     82   1.53       agc  *    documentation and/or other materials provided with the distribution.
     83   1.41    itojun  * 3. All advertising materials mentioning features or use of this software
     84   1.41    itojun  *    must display the following acknowledgement:
     85   1.41    itojun  *      This product includes software developed by the University of
     86   1.41    itojun  *      California, Berkeley and its contributors.
     87   1.41    itojun  * 4. Neither the name of the University nor the names of its contributors
     88   1.41    itojun  *    may be used to endorse or promote products derived from this software
     89   1.41    itojun  *    without specific prior written permission.
     90   1.41    itojun  *
     91   1.41    itojun  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     92   1.41    itojun  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     93   1.41    itojun  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     94   1.41    itojun  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     95   1.41    itojun  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     96   1.41    itojun  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     97   1.41    itojun  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     98   1.41    itojun  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     99   1.41    itojun  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    100   1.41    itojun  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    101   1.41    itojun  * SUCH DAMAGE.
    102   1.41    itojun  *
    103   1.41    itojun  *      @(#)ip_mroute.c 8.2 (Berkeley) 11/15/93
    104   1.41    itojun  */
    105   1.41    itojun 
    106   1.41    itojun /*
    107    1.2    itojun  * IP multicast forwarding procedures
    108    1.2    itojun  *
    109    1.2    itojun  * Written by David Waitzman, BBN Labs, August 1988.
    110    1.2    itojun  * Modified by Steve Deering, Stanford, February 1989.
    111    1.2    itojun  * Modified by Mark J. Steiglitz, Stanford, May, 1991
    112    1.2    itojun  * Modified by Van Jacobson, LBL, January 1993
    113    1.2    itojun  * Modified by Ajit Thyagarajan, PARC, August 1993
    114   1.35    itojun  * Modified by Bill Fenner, PARC, April 1994
    115    1.2    itojun  *
    116    1.2    itojun  * MROUTING Revision: 3.5.1.2 + PIM-SMv2 (pimd) Support
    117    1.2    itojun  */
    118   1.24     lukem 
    119   1.24     lukem #include <sys/cdefs.h>
    120  1.130   msaitoh __KERNEL_RCSID(0, "$NetBSD: ip6_mroute.c,v 1.130 2019/07/24 02:38:29 msaitoh Exp $");
    121    1.2    itojun 
    122  1.109     pooka #ifdef _KERNEL_OPT
    123    1.2    itojun #include "opt_inet.h"
    124   1.48    martin #include "opt_mrouting.h"
    125  1.109     pooka #endif
    126    1.8    itojun 
    127    1.2    itojun #include <sys/param.h>
    128    1.2    itojun #include <sys/systm.h>
    129   1.11   thorpej #include <sys/callout.h>
    130    1.2    itojun #include <sys/mbuf.h>
    131    1.2    itojun #include <sys/socket.h>
    132    1.2    itojun #include <sys/socketvar.h>
    133    1.2    itojun #include <sys/sockio.h>
    134    1.2    itojun #include <sys/errno.h>
    135    1.2    itojun #include <sys/time.h>
    136    1.2    itojun #include <sys/kernel.h>
    137    1.2    itojun #include <sys/ioctl.h>
    138   1.65    rpaulo #include <sys/sysctl.h>
    139    1.2    itojun #include <sys/syslog.h>
    140    1.2    itojun 
    141    1.2    itojun #include <net/if.h>
    142    1.2    itojun #include <net/route.h>
    143    1.2    itojun #include <net/raw_cb.h>
    144   1.91   thorpej #include <net/net_stats.h>
    145    1.2    itojun 
    146    1.2    itojun #include <netinet/in.h>
    147    1.2    itojun #include <netinet/in_var.h>
    148   1.40    itojun #include <netinet/icmp6.h>
    149    1.2    itojun 
    150   1.10    itojun #include <netinet/ip6.h>
    151    1.2    itojun #include <netinet6/ip6_var.h>
    152   1.89   thorpej #include <netinet6/ip6_private.h>
    153    1.2    itojun #include <netinet6/ip6_mroute.h>
    154   1.69    rpaulo #include <netinet6/scope6_var.h>
    155    1.2    itojun #include <netinet6/pim6.h>
    156    1.2    itojun #include <netinet6/pim6_var.h>
    157   1.29    itojun #include <netinet6/nd6.h>
    158    1.2    itojun 
    159   1.84    dyoung static int ip6_mdq(struct mbuf *, struct ifnet *, struct mf6c *);
    160   1.84    dyoung static void phyint_send(struct ip6_hdr *, struct mif6 *, struct mbuf *);
    161    1.2    itojun 
    162   1.84    dyoung static int set_pim6(int *);
    163  1.121      maxv static int socket_send(struct socket *, struct mbuf *, struct sockaddr_in6 *);
    164   1.84    dyoung static int register_send(struct ip6_hdr *, struct mif6 *, struct mbuf *);
    165    1.2    itojun 
    166    1.2    itojun /*
    167    1.2    itojun  * Globals.  All but ip6_mrouter, ip6_mrtproto and mrt6stat could be static,
    168    1.2    itojun  * except for netstat or debugging purposes.
    169    1.2    itojun  */
    170   1.30    itojun struct socket  *ip6_mrouter = NULL;
    171   1.12    itojun int		ip6_mrouter_ver = 0;
    172    1.2    itojun int		ip6_mrtproto = IPPROTO_PIM;    /* for netstat only */
    173    1.2    itojun struct mrt6stat	mrt6stat;
    174    1.2    itojun 
    175    1.2    itojun #define NO_RTE_FOUND 	0x1
    176    1.2    itojun #define RTE_FOUND	0x2
    177    1.2    itojun 
    178    1.2    itojun struct mf6c	*mf6ctable[MF6CTBLSIZ];
    179   1.30    itojun u_char		n6expire[MF6CTBLSIZ];
    180   1.67    bouyer struct mif6 mif6table[MAXMIFS];
    181    1.2    itojun #ifdef MRT6DEBUG
    182    1.2    itojun u_int		mrt6debug = 0;	  /* debug level 	*/
    183   1.52    itojun #define DEBUG_MFC	0x02
    184   1.52    itojun #define DEBUG_FORWARD	0x04
    185   1.52    itojun #define DEBUG_EXPIRE	0x08
    186   1.52    itojun #define DEBUG_XMIT	0x10
    187   1.52    itojun #define DEBUG_REG	0x20
    188   1.52    itojun #define DEBUG_PIM	0x40
    189  1.105       riz #define __mrt6debugused     /* empty */
    190  1.105       riz #else
    191  1.105       riz #define __mrt6debugused     __unused
    192    1.2    itojun #endif
    193    1.2    itojun 
    194   1.84    dyoung static void	expire_upcalls(void *);
    195   1.52    itojun #define	EXPIRE_TIMEOUT	(hz / 4)	/* 4x / second */
    196   1.52    itojun #define	UPCALL_EXPIRE	6		/* number of timeouts */
    197    1.2    itojun 
    198    1.2    itojun #ifdef INET
    199    1.2    itojun #ifdef MROUTING
    200    1.2    itojun extern struct socket *ip_mrouter;
    201    1.2    itojun #endif
    202   1.12    itojun #endif
    203    1.2    itojun 
    204    1.2    itojun /*
    205    1.2    itojun  * 'Interfaces' associated with decapsulator (so we can tell
    206    1.2    itojun  * packets that went through it from ones that get reflected
    207    1.2    itojun  * by a broken gateway).  These interfaces are never linked into
    208    1.2    itojun  * the system ifnet list & no routes point to them.  I.e., packets
    209    1.2    itojun  * can't be sent this way.  They only exist as a placeholder for
    210    1.2    itojun  * multicast source verification.
    211    1.2    itojun  */
    212   1.66    rpaulo struct ifnet multicast_register_if6;
    213    1.2    itojun 
    214    1.2    itojun #define ENCAP_HOPS 64
    215    1.2    itojun 
    216    1.2    itojun /*
    217    1.2    itojun  * Private variables.
    218    1.2    itojun  */
    219    1.2    itojun static mifi_t nummifs = 0;
    220    1.2    itojun static mifi_t reg_mif_num = (mifi_t)-1;
    221    1.2    itojun 
    222   1.90   thorpej static percpu_t *pim6stat_percpu;
    223   1.90   thorpej 
    224   1.91   thorpej #define	PIM6_STATINC(x)		_NET_STATINC(pim6stat_percpu, x)
    225   1.90   thorpej 
    226    1.2    itojun static int pim6;
    227    1.2    itojun 
    228    1.2    itojun /*
    229    1.2    itojun  * Hash function for a source, group entry
    230    1.2    itojun  */
    231    1.2    itojun #define MF6CHASH(a, g) MF6CHASHMOD((a).s6_addr32[0] ^ (a).s6_addr32[1] ^ \
    232    1.2    itojun 				   (a).s6_addr32[2] ^ (a).s6_addr32[3] ^ \
    233    1.2    itojun 				   (g).s6_addr32[0] ^ (g).s6_addr32[1] ^ \
    234    1.2    itojun 				   (g).s6_addr32[2] ^ (g).s6_addr32[3])
    235    1.2    itojun 
    236    1.2    itojun /*
    237    1.2    itojun  * Find a route for a given origin IPv6 address and Multicast group address.
    238    1.2    itojun  * Quality of service parameter to be added in the future!!!
    239    1.2    itojun  */
    240    1.2    itojun 
    241   1.12    itojun #define MF6CFIND(o, g, rt) do { \
    242   1.15    itojun 	struct mf6c *_rt = mf6ctable[MF6CHASH(o,g)]; \
    243    1.2    itojun 	rt = NULL; \
    244    1.2    itojun 	mrt6stat.mrt6s_mfc_lookups++; \
    245    1.2    itojun 	while (_rt) { \
    246    1.2    itojun 		if (IN6_ARE_ADDR_EQUAL(&_rt->mf6c_origin.sin6_addr, &(o)) && \
    247    1.2    itojun 		    IN6_ARE_ADDR_EQUAL(&_rt->mf6c_mcastgrp.sin6_addr, &(g)) && \
    248    1.2    itojun 		    (_rt->mf6c_stall == NULL)) { \
    249    1.2    itojun 			rt = _rt; \
    250    1.2    itojun 			break; \
    251    1.2    itojun 		} \
    252    1.2    itojun 		_rt = _rt->mf6c_next; \
    253    1.2    itojun 	} \
    254    1.2    itojun 	if (rt == NULL) { \
    255    1.2    itojun 		mrt6stat.mrt6s_mfc_misses++; \
    256    1.2    itojun 	} \
    257   1.39     perry } while (/*CONSTCOND*/ 0)
    258    1.2    itojun 
    259    1.2    itojun /*
    260    1.2    itojun  * Macros to compute elapsed time efficiently
    261    1.2    itojun  * Borrowed from Van Jacobson's scheduling code
    262    1.2    itojun  */
    263   1.12    itojun #define TV_DELTA(a, b, delta) do { \
    264   1.15    itojun 	    int xxs; \
    265    1.2    itojun 		\
    266    1.2    itojun 	    delta = (a).tv_usec - (b).tv_usec; \
    267    1.2    itojun 	    if ((xxs = (a).tv_sec - (b).tv_sec)) { \
    268    1.2    itojun 	       switch (xxs) { \
    269    1.2    itojun 		      case 2: \
    270    1.2    itojun 			  delta += 1000000; \
    271   1.32    itojun 			      /* FALLTHROUGH */ \
    272    1.2    itojun 		      case 1: \
    273    1.2    itojun 			  delta += 1000000; \
    274    1.2    itojun 			  break; \
    275    1.2    itojun 		      default: \
    276    1.2    itojun 			  delta += (1000000 * xxs); \
    277    1.2    itojun 	       } \
    278    1.2    itojun 	    } \
    279   1.39     perry } while (/*CONSTCOND*/ 0)
    280    1.2    itojun 
    281    1.2    itojun #define TV_LT(a, b) (((a).tv_usec < (b).tv_usec && \
    282    1.2    itojun 	      (a).tv_sec <= (b).tv_sec) || (a).tv_sec < (b).tv_sec)
    283    1.2    itojun 
    284    1.2    itojun #ifdef UPCALL_TIMING
    285    1.7    itojun #define UPCALL_MAX	50
    286    1.7    itojun u_long upcall_data[UPCALL_MAX + 1];
    287    1.2    itojun static void collate();
    288    1.2    itojun #endif /* UPCALL_TIMING */
    289    1.2    itojun 
    290   1.84    dyoung static int get_sg_cnt(struct sioc_sg_req6 *);
    291   1.84    dyoung static int get_mif6_cnt(struct sioc_mif_req6 *);
    292   1.84    dyoung static int ip6_mrouter_init(struct socket *, int, int);
    293   1.84    dyoung static int add_m6if(struct mif6ctl *);
    294   1.84    dyoung static int del_m6if(mifi_t *);
    295   1.84    dyoung static int add_m6fc(struct mf6cctl *);
    296   1.84    dyoung static int del_m6fc(struct mf6cctl *);
    297   1.98     pooka static void sysctl_net_inet6_pim6_setup(struct sysctllog **);
    298    1.2    itojun 
    299   1.83        ad static callout_t expire_upcalls_ch;
    300   1.11   thorpej 
    301   1.90   thorpej void
    302   1.90   thorpej pim6_init(void)
    303   1.90   thorpej {
    304   1.90   thorpej 
    305   1.98     pooka 	sysctl_net_inet6_pim6_setup(NULL);
    306   1.90   thorpej 	pim6stat_percpu = percpu_alloc(sizeof(uint64_t) * PIM6_NSTATS);
    307   1.90   thorpej }
    308   1.90   thorpej 
    309    1.2    itojun /*
    310    1.2    itojun  * Handle MRT setsockopt commands to modify the multicast routing tables.
    311    1.2    itojun  */
    312    1.2    itojun int
    313   1.96    plunky ip6_mrouter_set(struct socket *so, struct sockopt *sopt)
    314    1.2    itojun {
    315   1.96    plunky 	int error, optval;
    316   1.96    plunky 	struct mif6ctl mifc;
    317   1.96    plunky 	struct mf6cctl mfcc;
    318   1.96    plunky 	mifi_t mifi;
    319   1.96    plunky 
    320   1.96    plunky 	if (sopt->sopt_name != MRT6_INIT && so != ip6_mrouter)
    321   1.59    itojun 		return (EACCES);
    322    1.2    itojun 
    323   1.96    plunky 	error = 0;
    324   1.96    plunky 
    325   1.96    plunky 	switch (sopt->sopt_name) {
    326   1.59    itojun #ifdef MRT6_OINIT
    327   1.59    itojun 	case MRT6_OINIT:
    328   1.59    itojun #endif
    329   1.59    itojun 	case MRT6_INIT:
    330   1.96    plunky 		error = sockopt_getint(sopt, &optval);
    331   1.96    plunky 		if (error)
    332   1.96    plunky 			break;
    333   1.96    plunky 		return (ip6_mrouter_init(so, optval, sopt->sopt_name));
    334   1.59    itojun 	case MRT6_DONE:
    335   1.59    itojun 		return (ip6_mrouter_done());
    336   1.59    itojun 	case MRT6_ADD_MIF:
    337   1.96    plunky 		error = sockopt_get(sopt, &mifc, sizeof(mifc));
    338   1.96    plunky 		if (error)
    339   1.96    plunky 			break;
    340   1.96    plunky 		return (add_m6if(&mifc));
    341   1.59    itojun 	case MRT6_DEL_MIF:
    342   1.96    plunky 		error = sockopt_get(sopt, &mifi, sizeof(mifi));
    343   1.96    plunky 		if (error)
    344   1.96    plunky 			break;
    345   1.96    plunky 		return (del_m6if(&mifi));
    346   1.59    itojun 	case MRT6_ADD_MFC:
    347   1.96    plunky 		error = sockopt_get(sopt, &mfcc, sizeof(mfcc));
    348   1.96    plunky 		if (error)
    349   1.96    plunky 			break;
    350   1.96    plunky 		return (add_m6fc(&mfcc));
    351   1.59    itojun 	case MRT6_DEL_MFC:
    352   1.96    plunky 		error = sockopt_get(sopt, &mfcc, sizeof(mfcc));
    353   1.96    plunky 		if (error)
    354   1.96    plunky 			break;
    355   1.96    plunky 		return (del_m6fc(&mfcc));
    356   1.59    itojun 	case MRT6_PIM:
    357   1.96    plunky 		error = sockopt_getint(sopt, &optval);
    358   1.96    plunky 		if (error)
    359   1.96    plunky 			break;
    360   1.96    plunky 		return (set_pim6(&optval));
    361   1.59    itojun 	default:
    362   1.96    plunky 		error = EOPNOTSUPP;
    363    1.2    itojun 	}
    364   1.96    plunky 
    365   1.96    plunky 	return (error);
    366    1.2    itojun }
    367    1.2    itojun 
    368    1.2    itojun /*
    369    1.2    itojun  * Handle MRT getsockopt commands
    370    1.2    itojun  */
    371    1.2    itojun int
    372   1.96    plunky ip6_mrouter_get(struct socket *so, struct sockopt *sopt)
    373    1.2    itojun {
    374   1.96    plunky 	int error;
    375    1.2    itojun 
    376  1.121      maxv 	if (so != ip6_mrouter)
    377  1.121      maxv 		return EACCES;
    378    1.2    itojun 
    379   1.96    plunky 	error = 0;
    380    1.2    itojun 
    381   1.96    plunky 	switch (sopt->sopt_name) {
    382   1.23    itojun 	case MRT6_PIM:
    383   1.96    plunky 		error = sockopt_set(sopt, &pim6, sizeof(pim6));
    384   1.96    plunky 		break;
    385   1.23    itojun 	default:
    386   1.96    plunky 		error = EOPNOTSUPP;
    387   1.96    plunky 		break;
    388    1.2    itojun 	}
    389   1.96    plunky 
    390   1.96    plunky 	return (error);
    391    1.2    itojun }
    392    1.2    itojun 
    393    1.2    itojun /*
    394    1.2    itojun  * Handle ioctl commands to obtain information from the cache
    395    1.2    itojun  */
    396    1.2    itojun int
    397   1.95  gmcgarry mrt6_ioctl(u_long cmd, void *data)
    398    1.2    itojun {
    399    1.2    itojun 
    400   1.23    itojun 	switch (cmd) {
    401   1.23    itojun 	case SIOCGETSGCNT_IN6:
    402   1.37    itojun 		return (get_sg_cnt((struct sioc_sg_req6 *)data));
    403   1.23    itojun 	case SIOCGETMIFCNT_IN6:
    404   1.37    itojun 		return (get_mif6_cnt((struct sioc_mif_req6 *)data));
    405   1.23    itojun 	default:
    406   1.23    itojun 		return (EINVAL);
    407   1.23    itojun 	}
    408    1.2    itojun }
    409    1.2    itojun 
    410    1.2    itojun /*
    411    1.2    itojun  * returns the packet, byte, rpf-failure count for the source group provided
    412    1.2    itojun  */
    413    1.2    itojun static int
    414   1.81  christos get_sg_cnt(struct sioc_sg_req6 *req)
    415    1.2    itojun {
    416   1.15    itojun 	struct mf6c *rt;
    417    1.2    itojun 	int s;
    418    1.2    itojun 
    419    1.4    itojun 	s = splsoftnet();
    420    1.2    itojun 	MF6CFIND(req->src.sin6_addr, req->grp.sin6_addr, rt);
    421    1.2    itojun 	splx(s);
    422    1.2    itojun 	if (rt != NULL) {
    423    1.2    itojun 		req->pktcnt = rt->mf6c_pkt_cnt;
    424    1.2    itojun 		req->bytecnt = rt->mf6c_byte_cnt;
    425    1.2    itojun 		req->wrong_if = rt->mf6c_wrong_if;
    426    1.2    itojun 	} else
    427   1.37    itojun 		return (ESRCH);
    428    1.2    itojun #if 0
    429    1.2    itojun 		req->pktcnt = req->bytecnt = req->wrong_if = 0xffffffff;
    430   1.12    itojun #endif
    431    1.2    itojun 
    432    1.2    itojun 	return 0;
    433    1.2    itojun }
    434    1.2    itojun 
    435    1.2    itojun /*
    436    1.2    itojun  * returns the input and output packet and byte counts on the mif provided
    437    1.2    itojun  */
    438    1.2    itojun static int
    439   1.81  christos get_mif6_cnt(struct sioc_mif_req6 *req)
    440    1.2    itojun {
    441   1.15    itojun 	mifi_t mifi = req->mifi;
    442    1.2    itojun 
    443    1.2    itojun 	if (mifi >= nummifs)
    444    1.2    itojun 		return EINVAL;
    445    1.2    itojun 
    446    1.2    itojun 	req->icount = mif6table[mifi].m6_pkt_in;
    447    1.2    itojun 	req->ocount = mif6table[mifi].m6_pkt_out;
    448    1.2    itojun 	req->ibytes = mif6table[mifi].m6_bytes_in;
    449    1.2    itojun 	req->obytes = mif6table[mifi].m6_bytes_out;
    450    1.2    itojun 
    451    1.2    itojun 	return 0;
    452    1.2    itojun }
    453    1.2    itojun 
    454    1.2    itojun static int
    455   1.81  christos set_pim6(int *i)
    456    1.2    itojun {
    457    1.2    itojun 	if ((*i != 1) && (*i != 0))
    458    1.2    itojun 		return EINVAL;
    459    1.2    itojun 
    460    1.2    itojun 	pim6 = *i;
    461    1.2    itojun 
    462    1.2    itojun 	return 0;
    463    1.2    itojun }
    464    1.2    itojun 
    465    1.2    itojun /*
    466    1.2    itojun  * Enable multicast routing
    467    1.2    itojun  */
    468    1.2    itojun static int
    469   1.81  christos ip6_mrouter_init(struct socket *so, int v, int cmd)
    470    1.2    itojun {
    471    1.2    itojun #ifdef MRT6DEBUG
    472    1.2    itojun 	if (mrt6debug)
    473    1.2    itojun 		log(LOG_DEBUG,
    474    1.2    itojun 		    "ip6_mrouter_init: so_type = %d, pr_protocol = %d\n",
    475    1.2    itojun 		    so->so_type, so->so_proto->pr_protocol);
    476    1.2    itojun #endif
    477    1.2    itojun 
    478    1.2    itojun 	if (so->so_type != SOCK_RAW ||
    479    1.2    itojun 	    so->so_proto->pr_protocol != IPPROTO_ICMPV6)
    480  1.121      maxv 		return EOPNOTSUPP;
    481    1.2    itojun 
    482   1.59    itojun 	if (v != 1)
    483  1.121      maxv 		return ENOPROTOOPT;
    484    1.2    itojun 
    485   1.59    itojun 	if (ip6_mrouter != NULL)
    486  1.121      maxv 		return EADDRINUSE;
    487    1.2    itojun 
    488    1.2    itojun 	ip6_mrouter = so;
    489   1.12    itojun 	ip6_mrouter_ver = cmd;
    490    1.2    itojun 
    491   1.97    cegger 	memset((void *)mf6ctable, 0, sizeof(mf6ctable));
    492   1.97    cegger 	memset((void *)n6expire, 0, sizeof(n6expire));
    493    1.2    itojun 
    494    1.2    itojun 	pim6 = 0;/* used for stubbing out/in pim stuff */
    495    1.2    itojun 
    496   1.92        ad 	callout_init(&expire_upcalls_ch, CALLOUT_MPSAFE);
    497   1.11   thorpej 	callout_reset(&expire_upcalls_ch, EXPIRE_TIMEOUT,
    498   1.11   thorpej 	    expire_upcalls, NULL);
    499    1.2    itojun 
    500    1.2    itojun #ifdef MRT6DEBUG
    501    1.2    itojun 	if (mrt6debug)
    502    1.2    itojun 		log(LOG_DEBUG, "ip6_mrouter_init\n");
    503    1.2    itojun #endif
    504    1.2    itojun 
    505    1.2    itojun 	return 0;
    506    1.2    itojun }
    507    1.2    itojun 
    508    1.2    itojun /*
    509    1.2    itojun  * Disable multicast routing
    510    1.2    itojun  */
    511    1.2    itojun int
    512   1.87      matt ip6_mrouter_done(void)
    513    1.2    itojun {
    514    1.2    itojun 	mifi_t mifi;
    515    1.2    itojun 	int i;
    516    1.2    itojun 	struct ifnet *ifp;
    517  1.102    dyoung 	struct sockaddr_in6 sin6;
    518    1.2    itojun 	struct mf6c *rt;
    519    1.2    itojun 	struct rtdetq *rte;
    520    1.2    itojun 	int s;
    521    1.2    itojun 
    522    1.4    itojun 	s = splsoftnet();
    523    1.2    itojun 
    524    1.2    itojun 	/*
    525    1.2    itojun 	 * For each phyint in use, disable promiscuous reception of all IPv6
    526    1.2    itojun 	 * multicasts.
    527    1.2    itojun 	 */
    528    1.2    itojun #ifdef INET
    529    1.2    itojun #ifdef MROUTING
    530    1.2    itojun 	/*
    531    1.2    itojun 	 * If there is still IPv4 multicast routing daemon,
    532    1.2    itojun 	 * we remain interfaces to receive all muliticasted packets.
    533    1.2    itojun 	 * XXX: there may be an interface in which the IPv4 multicast
    534    1.2    itojun 	 * daemon is not interested...
    535    1.2    itojun 	 */
    536    1.2    itojun 	if (!ip_mrouter)
    537    1.2    itojun #endif
    538   1.12    itojun #endif
    539    1.2    itojun 	{
    540    1.2    itojun 		for (mifi = 0; mifi < nummifs; mifi++) {
    541    1.2    itojun 			if (mif6table[mifi].m6_ifp &&
    542    1.2    itojun 			    !(mif6table[mifi].m6_flags & MIFF_REGISTER)) {
    543  1.102    dyoung 				sin6.sin6_family = AF_INET6;
    544  1.102    dyoung 				sin6.sin6_addr = in6addr_any;
    545    1.2    itojun 				ifp = mif6table[mifi].m6_ifp;
    546  1.102    dyoung 				if_mcast_op(ifp, SIOCDELMULTI,
    547  1.102    dyoung 				    sin6tocsa(&sin6));
    548    1.2    itojun 			}
    549    1.2    itojun 		}
    550    1.2    itojun 	}
    551  1.122      maxv 
    552   1.97    cegger 	memset((void *)mif6table, 0, sizeof(mif6table));
    553    1.2    itojun 	nummifs = 0;
    554    1.2    itojun 
    555    1.2    itojun 	pim6 = 0; /* used to stub out/in pim specific code */
    556    1.2    itojun 
    557   1.11   thorpej 	callout_stop(&expire_upcalls_ch);
    558    1.2    itojun 
    559    1.2    itojun 	/*
    560    1.2    itojun 	 * Free all multicast forwarding cache entries.
    561    1.2    itojun 	 */
    562    1.2    itojun 	for (i = 0; i < MF6CTBLSIZ; i++) {
    563    1.2    itojun 		rt = mf6ctable[i];
    564    1.2    itojun 		while (rt) {
    565    1.2    itojun 			struct mf6c *frt;
    566    1.2    itojun 
    567    1.2    itojun 			for (rte = rt->mf6c_stall; rte != NULL; ) {
    568    1.2    itojun 				struct rtdetq *n = rte->next;
    569    1.2    itojun 
    570  1.100       oki 				m_freem(rte->m);
    571    1.2    itojun 				free(rte, M_MRTABLE);
    572    1.2    itojun 				rte = n;
    573    1.2    itojun 			}
    574    1.2    itojun 			frt = rt;
    575    1.2    itojun 			rt = rt->mf6c_next;
    576    1.2    itojun 			free(frt, M_MRTABLE);
    577    1.2    itojun 		}
    578    1.2    itojun 	}
    579    1.2    itojun 
    580   1.97    cegger 	memset((void *)mf6ctable, 0, sizeof(mf6ctable));
    581    1.2    itojun 
    582    1.2    itojun 	/*
    583   1.66    rpaulo 	 * Reset register interface
    584    1.2    itojun 	 */
    585   1.66    rpaulo 	if (reg_mif_num != (mifi_t)-1) {
    586   1.66    rpaulo 		if_detach(&multicast_register_if6);
    587   1.66    rpaulo 		reg_mif_num = (mifi_t)-1;
    588   1.66    rpaulo 	}
    589  1.121      maxv 
    590    1.2    itojun 	ip6_mrouter = NULL;
    591   1.12    itojun 	ip6_mrouter_ver = 0;
    592    1.2    itojun 
    593    1.2    itojun 	splx(s);
    594    1.2    itojun 
    595    1.2    itojun #ifdef MRT6DEBUG
    596    1.2    itojun 	if (mrt6debug)
    597    1.2    itojun 		log(LOG_DEBUG, "ip6_mrouter_done\n");
    598    1.2    itojun #endif
    599    1.2    itojun 
    600    1.2    itojun 	return 0;
    601    1.2    itojun }
    602    1.2    itojun 
    603   1.50    itojun void
    604   1.81  christos ip6_mrouter_detach(struct ifnet *ifp)
    605   1.50    itojun {
    606   1.50    itojun 	struct rtdetq *rte;
    607   1.50    itojun 	struct mf6c *mfc;
    608   1.50    itojun 	mifi_t mifi;
    609   1.50    itojun 	int i;
    610   1.50    itojun 
    611   1.71    rpaulo 	if (ip6_mrouter == NULL)
    612   1.71    rpaulo 		return;
    613   1.71    rpaulo 
    614   1.50    itojun 	/*
    615   1.50    itojun 	 * Delete a mif which points to ifp.
    616   1.50    itojun 	 */
    617   1.50    itojun 	for (mifi = 0; mifi < nummifs; mifi++)
    618   1.50    itojun 		if (mif6table[mifi].m6_ifp == ifp)
    619   1.50    itojun 			del_m6if(&mifi);
    620   1.50    itojun 
    621   1.50    itojun 	/*
    622   1.50    itojun 	 * Clear rte->ifp of cache entries received on ifp.
    623   1.50    itojun 	 */
    624   1.50    itojun 	for (i = 0; i < MF6CTBLSIZ; i++) {
    625   1.50    itojun 		if (n6expire[i] == 0)
    626   1.50    itojun 			continue;
    627   1.50    itojun 
    628   1.50    itojun 		for (mfc = mf6ctable[i]; mfc != NULL; mfc = mfc->mf6c_next) {
    629   1.50    itojun 			for (rte = mfc->mf6c_stall; rte != NULL; rte = rte->next) {
    630   1.50    itojun 				if (rte->ifp == ifp)
    631   1.50    itojun 					rte->ifp = NULL;
    632   1.50    itojun 			}
    633   1.50    itojun 		}
    634   1.50    itojun 	}
    635   1.50    itojun }
    636   1.50    itojun 
    637    1.2    itojun /*
    638    1.2    itojun  * Add a mif to the mif table
    639    1.2    itojun  */
    640    1.2    itojun static int
    641   1.81  christos add_m6if(struct mif6ctl *mifcp)
    642    1.2    itojun {
    643   1.15    itojun 	struct mif6 *mifp;
    644    1.2    itojun 	struct ifnet *ifp;
    645  1.102    dyoung 	struct sockaddr_in6 sin6;
    646    1.2    itojun 	int error, s;
    647    1.2    itojun 
    648    1.2    itojun 	if (mifcp->mif6c_mifi >= MAXMIFS)
    649    1.2    itojun 		return EINVAL;
    650    1.2    itojun 	mifp = mif6table + mifcp->mif6c_mifi;
    651    1.2    itojun 	if (mifp->m6_ifp)
    652    1.2    itojun 		return EADDRINUSE; /* XXX: is it appropriate? */
    653  1.107     rmind 	if (!mifcp->mif6c_pifi || (ifp = if_byindex(mifcp->mif6c_pifi)) == NULL)
    654   1.22    itojun 		return ENXIO;
    655    1.2    itojun 
    656    1.2    itojun 	if (mifcp->mif6c_flags & MIFF_REGISTER) {
    657   1.66    rpaulo 		ifp = &multicast_register_if6;
    658   1.66    rpaulo 
    659    1.2    itojun 		if (reg_mif_num == (mifi_t)-1) {
    660  1.121      maxv 			strlcpy(ifp->if_xname, "register_mif",
    661   1.66    rpaulo 			    sizeof(ifp->if_xname));
    662   1.66    rpaulo 			ifp->if_flags |= IFF_LOOPBACK;
    663   1.66    rpaulo 			ifp->if_index = mifcp->mif6c_mifi;
    664    1.2    itojun 			reg_mif_num = mifcp->mif6c_mifi;
    665   1.66    rpaulo 			if_attach(ifp);
    666    1.2    itojun 		}
    667  1.121      maxv 	} else {
    668    1.2    itojun 		/* Make sure the interface supports multicast */
    669    1.2    itojun 		if ((ifp->if_flags & IFF_MULTICAST) == 0)
    670    1.2    itojun 			return EOPNOTSUPP;
    671    1.2    itojun 
    672    1.8    itojun 		s = splsoftnet();
    673    1.2    itojun 		/*
    674    1.2    itojun 		 * Enable promiscuous reception of all IPv6 multicasts
    675    1.8    itojun 		 * from the interface.
    676    1.2    itojun 		 */
    677  1.102    dyoung 		sin6.sin6_family = AF_INET6;
    678  1.102    dyoung 		sin6.sin6_addr = in6addr_any;
    679  1.102    dyoung 		error = if_mcast_op(ifp, SIOCADDMULTI, sin6tosa(&sin6));
    680    1.2    itojun 		splx(s);
    681    1.2    itojun 		if (error)
    682    1.2    itojun 			return error;
    683    1.2    itojun 	}
    684    1.2    itojun 
    685    1.4    itojun 	s = splsoftnet();
    686    1.2    itojun 	mifp->m6_flags     = mifcp->mif6c_flags;
    687    1.2    itojun 	mifp->m6_ifp       = ifp;
    688    1.2    itojun 	/* initialize per mif pkt counters */
    689    1.2    itojun 	mifp->m6_pkt_in    = 0;
    690    1.2    itojun 	mifp->m6_pkt_out   = 0;
    691    1.2    itojun 	mifp->m6_bytes_in  = 0;
    692    1.2    itojun 	mifp->m6_bytes_out = 0;
    693    1.2    itojun 	splx(s);
    694    1.2    itojun 
    695    1.2    itojun 	/* Adjust nummifs up if the mifi is higher than nummifs */
    696    1.2    itojun 	if (nummifs <= mifcp->mif6c_mifi)
    697    1.2    itojun 		nummifs = mifcp->mif6c_mifi + 1;
    698    1.2    itojun 
    699    1.2    itojun #ifdef MRT6DEBUG
    700    1.2    itojun 	if (mrt6debug)
    701    1.2    itojun 		log(LOG_DEBUG,
    702   1.73  christos 		    "add_mif #%d, phyint %s\n",
    703   1.73  christos 		    mifcp->mif6c_mifi, ifp->if_xname);
    704    1.2    itojun #endif
    705    1.2    itojun 
    706    1.2    itojun 	return 0;
    707    1.2    itojun }
    708    1.2    itojun 
    709    1.2    itojun /*
    710    1.2    itojun  * Delete a mif from the mif table
    711    1.2    itojun  */
    712    1.2    itojun static int
    713   1.81  christos del_m6if(mifi_t *mifip)
    714    1.2    itojun {
    715   1.15    itojun 	struct mif6 *mifp = mif6table + *mifip;
    716   1.15    itojun 	mifi_t mifi;
    717    1.2    itojun 	struct ifnet *ifp;
    718  1.102    dyoung 	struct sockaddr_in6 sin6;
    719    1.2    itojun 	int s;
    720    1.2    itojun 
    721    1.2    itojun 	if (*mifip >= nummifs)
    722    1.2    itojun 		return EINVAL;
    723    1.2    itojun 	if (mifp->m6_ifp == NULL)
    724    1.2    itojun 		return EINVAL;
    725    1.2    itojun 
    726    1.4    itojun 	s = splsoftnet();
    727    1.2    itojun 
    728    1.2    itojun 	if (!(mifp->m6_flags & MIFF_REGISTER)) {
    729    1.2    itojun 		/*
    730    1.2    itojun 		 * XXX: what if there is yet IPv4 multicast daemon
    731    1.2    itojun 		 *      using the interface?
    732    1.2    itojun 		 */
    733    1.8    itojun 		ifp = mifp->m6_ifp;
    734    1.8    itojun 
    735  1.102    dyoung 		sin6.sin6_family = AF_INET6;
    736  1.102    dyoung 		sin6.sin6_addr = in6addr_any;
    737  1.102    dyoung 		if_mcast_op(ifp, SIOCDELMULTI, sin6tosa(&sin6));
    738   1.66    rpaulo 	} else {
    739   1.66    rpaulo 		if (reg_mif_num != (mifi_t)-1) {
    740   1.66    rpaulo 			if_detach(&multicast_register_if6);
    741   1.66    rpaulo 			reg_mif_num = (mifi_t)-1;
    742   1.66    rpaulo 		}
    743    1.2    itojun 	}
    744    1.2    itojun 
    745   1.97    cegger 	memset((void *)mifp, 0, sizeof (*mifp));
    746    1.2    itojun 
    747    1.2    itojun 	/* Adjust nummifs down */
    748    1.2    itojun 	for (mifi = nummifs; mifi > 0; mifi--)
    749    1.2    itojun 		if (mif6table[mifi - 1].m6_ifp)
    750    1.2    itojun 			break;
    751    1.2    itojun 	nummifs = mifi;
    752    1.2    itojun 
    753    1.2    itojun 	splx(s);
    754    1.2    itojun 
    755    1.2    itojun #ifdef MRT6DEBUG
    756    1.2    itojun 	if (mrt6debug)
    757    1.2    itojun 		log(LOG_DEBUG, "del_m6if %d, nummifs %d\n", *mifip, nummifs);
    758    1.2    itojun #endif
    759    1.2    itojun 
    760    1.2    itojun 	return 0;
    761    1.2    itojun }
    762    1.2    itojun 
    763    1.2    itojun /*
    764    1.2    itojun  * Add an mfc entry
    765    1.2    itojun  */
    766    1.2    itojun static int
    767   1.81  christos add_m6fc(struct mf6cctl *mfccp)
    768    1.2    itojun {
    769    1.2    itojun 	struct mf6c *rt;
    770    1.2    itojun 	u_long hash;
    771    1.2    itojun 	struct rtdetq *rte;
    772   1.15    itojun 	u_short nstl;
    773    1.2    itojun 	int s;
    774  1.114       ryo 	char ip6bufo[INET6_ADDRSTRLEN], ip6bufm[INET6_ADDRSTRLEN];
    775    1.2    itojun 
    776    1.2    itojun 	MF6CFIND(mfccp->mf6cc_origin.sin6_addr,
    777    1.2    itojun 		 mfccp->mf6cc_mcastgrp.sin6_addr, rt);
    778    1.2    itojun 
    779    1.2    itojun 	/* If an entry already exists, just update the fields */
    780    1.2    itojun 	if (rt) {
    781    1.2    itojun #ifdef MRT6DEBUG
    782    1.2    itojun 		if (mrt6debug & DEBUG_MFC)
    783    1.2    itojun 			log(LOG_DEBUG,"add_m6fc update o %s g %s p %x\n",
    784  1.115  christos 			    IN6_PRINT(ip6bufo,
    785  1.114       ryo 			    &mfccp->mf6cc_origin.sin6_addr),
    786  1.115  christos 			    IN6_PRINT(ip6bufm,
    787  1.114       ryo 			    &mfccp->mf6cc_mcastgrp.sin6_addr),
    788    1.2    itojun 			    mfccp->mf6cc_parent);
    789    1.2    itojun #endif
    790    1.2    itojun 
    791    1.4    itojun 		s = splsoftnet();
    792    1.2    itojun 		rt->mf6c_parent = mfccp->mf6cc_parent;
    793    1.2    itojun 		rt->mf6c_ifset = mfccp->mf6cc_ifset;
    794    1.2    itojun 		splx(s);
    795    1.2    itojun 		return 0;
    796    1.2    itojun 	}
    797    1.2    itojun 
    798   1.12    itojun 	/*
    799    1.2    itojun 	 * Find the entry for which the upcall was made and update
    800    1.2    itojun 	 */
    801    1.4    itojun 	s = splsoftnet();
    802    1.2    itojun 	hash = MF6CHASH(mfccp->mf6cc_origin.sin6_addr,
    803    1.2    itojun 			mfccp->mf6cc_mcastgrp.sin6_addr);
    804    1.2    itojun 	for (rt = mf6ctable[hash], nstl = 0; rt; rt = rt->mf6c_next) {
    805    1.2    itojun 		if (IN6_ARE_ADDR_EQUAL(&rt->mf6c_origin.sin6_addr,
    806    1.2    itojun 				       &mfccp->mf6cc_origin.sin6_addr) &&
    807    1.2    itojun 		    IN6_ARE_ADDR_EQUAL(&rt->mf6c_mcastgrp.sin6_addr,
    808    1.2    itojun 				       &mfccp->mf6cc_mcastgrp.sin6_addr) &&
    809    1.2    itojun 		    (rt->mf6c_stall != NULL)) {
    810    1.2    itojun 
    811    1.2    itojun 			if (nstl++)
    812    1.2    itojun 				log(LOG_ERR,
    813    1.5    itojun 				    "add_m6fc: %s o %s g %s p %x dbx %p\n",
    814    1.2    itojun 				    "multiple kernel entries",
    815  1.115  christos 				    IN6_PRINT(ip6bufo,
    816  1.114       ryo 				    &mfccp->mf6cc_origin.sin6_addr),
    817  1.115  christos 				    IN6_PRINT(ip6bufm,
    818  1.114       ryo 				    &mfccp->mf6cc_mcastgrp.sin6_addr),
    819    1.5    itojun 				    mfccp->mf6cc_parent, rt->mf6c_stall);
    820    1.2    itojun 
    821    1.2    itojun #ifdef MRT6DEBUG
    822    1.2    itojun 			if (mrt6debug & DEBUG_MFC)
    823    1.2    itojun 				log(LOG_DEBUG,
    824   1.73  christos 				    "add_m6fc o %s g %s p %x dbg %p\n",
    825  1.115  christos 				    IN6_PRINT(ip6bufo,
    826  1.114       ryo 				    &mfccp->mf6cc_origin.sin6_addr),
    827  1.115  christos 				    IN6_PRINT(ip6bufm,
    828  1.114       ryo 				    &mfccp->mf6cc_mcastgrp.sin6_addr),
    829    1.2    itojun 				    mfccp->mf6cc_parent, rt->mf6c_stall);
    830    1.2    itojun #endif
    831    1.2    itojun 
    832    1.2    itojun 			rt->mf6c_origin     = mfccp->mf6cc_origin;
    833    1.2    itojun 			rt->mf6c_mcastgrp   = mfccp->mf6cc_mcastgrp;
    834    1.2    itojun 			rt->mf6c_parent     = mfccp->mf6cc_parent;
    835    1.2    itojun 			rt->mf6c_ifset	    = mfccp->mf6cc_ifset;
    836    1.2    itojun 			/* initialize pkt counters per src-grp */
    837    1.2    itojun 			rt->mf6c_pkt_cnt    = 0;
    838    1.2    itojun 			rt->mf6c_byte_cnt   = 0;
    839    1.2    itojun 			rt->mf6c_wrong_if   = 0;
    840    1.2    itojun 
    841    1.2    itojun 			rt->mf6c_expire = 0;	/* Don't clean this guy up */
    842   1.30    itojun 			n6expire[hash]--;
    843    1.2    itojun 
    844    1.2    itojun 			/* free packets Qed at the end of this entry */
    845    1.2    itojun 			for (rte = rt->mf6c_stall; rte != NULL; ) {
    846    1.2    itojun 				struct rtdetq *n = rte->next;
    847   1.50    itojun 				if (rte->ifp) {
    848   1.50    itojun 					ip6_mdq(rte->m, rte->ifp, rt);
    849   1.50    itojun 				}
    850    1.2    itojun 				m_freem(rte->m);
    851    1.2    itojun #ifdef UPCALL_TIMING
    852    1.2    itojun 				collate(&(rte->t));
    853  1.121      maxv #endif
    854    1.2    itojun 				free(rte, M_MRTABLE);
    855    1.2    itojun 				rte = n;
    856    1.2    itojun 			}
    857    1.2    itojun 			rt->mf6c_stall = NULL;
    858    1.2    itojun 		}
    859    1.2    itojun 	}
    860    1.2    itojun 
    861    1.2    itojun 	/*
    862    1.2    itojun 	 * It is possible that an entry is being inserted without an upcall
    863    1.2    itojun 	 */
    864    1.2    itojun 	if (nstl == 0) {
    865    1.2    itojun #ifdef MRT6DEBUG
    866    1.2    itojun 		if (mrt6debug & DEBUG_MFC)
    867   1.30    itojun 			log(LOG_DEBUG,
    868   1.73  christos 			    "add_mfc no upcall h %ld o %s g %s p %x\n",
    869    1.2    itojun 			    hash,
    870  1.115  christos 			    IN6_PRINT(ip6bufo,
    871  1.114       ryo 			    &mfccp->mf6cc_origin.sin6_addr),
    872  1.115  christos 			    IN6_PRINT(ip6bufm,
    873  1.114       ryo 			    &mfccp->mf6cc_mcastgrp.sin6_addr),
    874    1.2    itojun 			    mfccp->mf6cc_parent);
    875    1.2    itojun #endif
    876    1.2    itojun 
    877    1.2    itojun 		for (rt = mf6ctable[hash]; rt; rt = rt->mf6c_next) {
    878   1.26  sommerfe 
    879    1.2    itojun 			if (IN6_ARE_ADDR_EQUAL(&rt->mf6c_origin.sin6_addr,
    880    1.2    itojun 					       &mfccp->mf6cc_origin.sin6_addr)&&
    881    1.2    itojun 			    IN6_ARE_ADDR_EQUAL(&rt->mf6c_mcastgrp.sin6_addr,
    882    1.2    itojun 					       &mfccp->mf6cc_mcastgrp.sin6_addr)) {
    883    1.2    itojun 
    884    1.2    itojun 				rt->mf6c_origin     = mfccp->mf6cc_origin;
    885    1.2    itojun 				rt->mf6c_mcastgrp   = mfccp->mf6cc_mcastgrp;
    886    1.2    itojun 				rt->mf6c_parent     = mfccp->mf6cc_parent;
    887   1.14    itojun 				rt->mf6c_ifset	    = mfccp->mf6cc_ifset;
    888    1.2    itojun 				/* initialize pkt counters per src-grp */
    889    1.2    itojun 				rt->mf6c_pkt_cnt    = 0;
    890    1.2    itojun 				rt->mf6c_byte_cnt   = 0;
    891    1.2    itojun 				rt->mf6c_wrong_if   = 0;
    892    1.2    itojun 
    893    1.2    itojun 				if (rt->mf6c_expire)
    894   1.30    itojun 					n6expire[hash]--;
    895    1.2    itojun 				rt->mf6c_expire	   = 0;
    896    1.2    itojun 			}
    897    1.2    itojun 		}
    898    1.2    itojun 		if (rt == NULL) {
    899    1.2    itojun 			/* no upcall, so make a new entry */
    900  1.121      maxv 			rt = malloc(sizeof(*rt), M_MRTABLE, M_NOWAIT);
    901    1.2    itojun 			if (rt == NULL) {
    902    1.2    itojun 				splx(s);
    903    1.2    itojun 				return ENOBUFS;
    904    1.2    itojun 			}
    905   1.26  sommerfe 
    906    1.2    itojun 			/* insert new entry at head of hash chain */
    907    1.2    itojun 			rt->mf6c_origin     = mfccp->mf6cc_origin;
    908    1.2    itojun 			rt->mf6c_mcastgrp   = mfccp->mf6cc_mcastgrp;
    909    1.2    itojun 			rt->mf6c_parent     = mfccp->mf6cc_parent;
    910   1.14    itojun 			rt->mf6c_ifset	    = mfccp->mf6cc_ifset;
    911    1.2    itojun 			/* initialize pkt counters per src-grp */
    912    1.2    itojun 			rt->mf6c_pkt_cnt    = 0;
    913    1.2    itojun 			rt->mf6c_byte_cnt   = 0;
    914    1.2    itojun 			rt->mf6c_wrong_if   = 0;
    915    1.2    itojun 			rt->mf6c_expire     = 0;
    916    1.2    itojun 			rt->mf6c_stall = NULL;
    917   1.26  sommerfe 
    918    1.2    itojun 			/* link into table */
    919    1.2    itojun 			rt->mf6c_next  = mf6ctable[hash];
    920    1.2    itojun 			mf6ctable[hash] = rt;
    921    1.2    itojun 		}
    922    1.2    itojun 	}
    923    1.2    itojun 	splx(s);
    924    1.2    itojun 	return 0;
    925    1.2    itojun }
    926    1.2    itojun 
    927    1.2    itojun #ifdef UPCALL_TIMING
    928    1.2    itojun /*
    929   1.12    itojun  * collect delay statistics on the upcalls
    930    1.2    itojun  */
    931    1.2    itojun static void
    932   1.81  christos collate(struct timeval *t)
    933    1.2    itojun {
    934   1.15    itojun 	u_long d;
    935   1.15    itojun 	struct timeval tp;
    936   1.15    itojun 	u_long delta;
    937   1.12    itojun 
    938    1.2    itojun 	GET_TIME(tp);
    939   1.12    itojun 
    940    1.2    itojun 	if (TV_LT(*t, tp))
    941    1.2    itojun 	{
    942    1.2    itojun 		TV_DELTA(tp, *t, delta);
    943   1.26  sommerfe 
    944    1.2    itojun 		d = delta >> 10;
    945    1.7    itojun 		if (d > UPCALL_MAX)
    946    1.7    itojun 			d = UPCALL_MAX;
    947   1.26  sommerfe 
    948    1.2    itojun 		++upcall_data[d];
    949    1.2    itojun 	}
    950    1.2    itojun }
    951    1.2    itojun #endif /* UPCALL_TIMING */
    952    1.2    itojun 
    953    1.2    itojun /*
    954    1.2    itojun  * Delete an mfc entry
    955    1.2    itojun  */
    956    1.2    itojun static int
    957   1.81  christos del_m6fc(struct mf6cctl *mfccp)
    958    1.2    itojun {
    959    1.2    itojun 	struct sockaddr_in6 	origin;
    960    1.2    itojun 	struct sockaddr_in6 	mcastgrp;
    961    1.2    itojun 	struct mf6c 		*rt;
    962    1.2    itojun 	struct mf6c	 	**nptr;
    963    1.2    itojun 	u_long 		hash;
    964    1.2    itojun 	int s;
    965    1.2    itojun 
    966    1.2    itojun 	origin = mfccp->mf6cc_origin;
    967    1.2    itojun 	mcastgrp = mfccp->mf6cc_mcastgrp;
    968    1.2    itojun 	hash = MF6CHASH(origin.sin6_addr, mcastgrp.sin6_addr);
    969    1.2    itojun 
    970    1.2    itojun #ifdef MRT6DEBUG
    971  1.114       ryo 	if (mrt6debug & DEBUG_MFC) {
    972  1.114       ryo 		char ip6bufo[INET6_ADDRSTRLEN], ip6bufm[INET6_ADDRSTRLEN];
    973    1.2    itojun 		log(LOG_DEBUG,"del_m6fc orig %s mcastgrp %s\n",
    974  1.115  christos 		    IN6_PRINT(ip6bufo, &origin.sin6_addr),
    975  1.115  christos 		    IN6_PRINT(ip6bufm, &mcastgrp.sin6_addr));
    976  1.114       ryo 	}
    977    1.2    itojun #endif
    978    1.2    itojun 
    979    1.4    itojun 	s = splsoftnet();
    980    1.2    itojun 
    981    1.2    itojun 	nptr = &mf6ctable[hash];
    982    1.2    itojun 	while ((rt = *nptr) != NULL) {
    983    1.2    itojun 		if (IN6_ARE_ADDR_EQUAL(&origin.sin6_addr,
    984    1.2    itojun 				       &rt->mf6c_origin.sin6_addr) &&
    985    1.2    itojun 		    IN6_ARE_ADDR_EQUAL(&mcastgrp.sin6_addr,
    986    1.2    itojun 				       &rt->mf6c_mcastgrp.sin6_addr) &&
    987    1.2    itojun 		    rt->mf6c_stall == NULL)
    988    1.2    itojun 			break;
    989    1.2    itojun 
    990    1.2    itojun 		nptr = &rt->mf6c_next;
    991    1.2    itojun 	}
    992    1.2    itojun 	if (rt == NULL) {
    993    1.2    itojun 		splx(s);
    994    1.2    itojun 		return EADDRNOTAVAIL;
    995    1.2    itojun 	}
    996    1.2    itojun 
    997    1.2    itojun 	*nptr = rt->mf6c_next;
    998    1.2    itojun 	free(rt, M_MRTABLE);
    999    1.2    itojun 
   1000    1.2    itojun 	splx(s);
   1001    1.2    itojun 
   1002    1.2    itojun 	return 0;
   1003    1.2    itojun }
   1004    1.2    itojun 
   1005    1.2    itojun static int
   1006   1.81  christos socket_send(struct socket *s, struct mbuf *mm, struct sockaddr_in6 *src)
   1007    1.2    itojun {
   1008    1.2    itojun 	if (s) {
   1009  1.112     ozaki 		if (sbappendaddr(&s->so_rcv, sin6tosa(src), mm, NULL) != 0) {
   1010    1.2    itojun 			sorwakeup(s);
   1011    1.2    itojun 			return 0;
   1012    1.2    itojun 		}
   1013  1.123       roy 		soroverflow(s);
   1014    1.2    itojun 	}
   1015    1.2    itojun 	m_freem(mm);
   1016    1.2    itojun 	return -1;
   1017    1.2    itojun }
   1018    1.2    itojun 
   1019    1.2    itojun /*
   1020    1.2    itojun  * IPv6 multicast forwarding function. This function assumes that the packet
   1021    1.2    itojun  * pointed to by "ip6" has arrived on (or is about to be sent to) the interface
   1022    1.2    itojun  * pointed to by "ifp", and the packet is to be relayed to other networks
   1023    1.2    itojun  * that have members of the packet's destination IPv6 multicast group.
   1024    1.2    itojun  *
   1025    1.2    itojun  * The packet is returned unscathed to the caller, unless it is
   1026    1.2    itojun  * erroneous, in which case a non-zero return value tells the caller to
   1027    1.2    itojun  * discard it.
   1028    1.2    itojun  */
   1029    1.2    itojun int
   1030   1.81  christos ip6_mforward(struct ip6_hdr *ip6, struct ifnet *ifp, struct mbuf *m)
   1031    1.2    itojun {
   1032   1.15    itojun 	struct mf6c *rt;
   1033   1.15    itojun 	struct mif6 *mifp;
   1034   1.15    itojun 	struct mbuf *mm;
   1035    1.2    itojun 	int s;
   1036    1.2    itojun 	mifi_t mifi;
   1037   1.64  christos 	struct sockaddr_in6 sin6;
   1038  1.114       ryo 	char ip6bufs[INET6_ADDRSTRLEN], ip6bufd[INET6_ADDRSTRLEN];
   1039    1.2    itojun 
   1040    1.2    itojun #ifdef MRT6DEBUG
   1041    1.2    itojun 	if (mrt6debug & DEBUG_FORWARD)
   1042    1.2    itojun 		log(LOG_DEBUG, "ip6_mforward: src %s, dst %s, ifindex %d\n",
   1043  1.115  christos 		    IN6_PRINT(ip6bufs, &ip6->ip6_src),
   1044  1.115  christos 		    IN6_PRINT(ip6bufd, &ip6->ip6_dst),
   1045    1.2    itojun 		    ifp->if_index);
   1046    1.2    itojun #endif
   1047    1.2    itojun 
   1048    1.2    itojun 	/*
   1049    1.2    itojun 	 * Don't forward a packet with Hop limit of zero or one,
   1050    1.2    itojun 	 * or a packet destined to a local-only group.
   1051    1.2    itojun 	 */
   1052    1.2    itojun 	if (ip6->ip6_hlim <= 1 || IN6_IS_ADDR_MC_NODELOCAL(&ip6->ip6_dst) ||
   1053    1.2    itojun 	    IN6_IS_ADDR_MC_LINKLOCAL(&ip6->ip6_dst))
   1054    1.2    itojun 		return 0;
   1055    1.2    itojun 	ip6->ip6_hlim--;
   1056   1.13    itojun 
   1057   1.13    itojun 	/*
   1058   1.13    itojun 	 * Source address check: do not forward packets with unspecified
   1059   1.13    itojun 	 * source. It was discussed in July 2000, on ipngwg mailing list.
   1060   1.13    itojun 	 * This is rather more serious than unicast cases, because some
   1061   1.13    itojun 	 * MLD packets can be sent with the unspecified source address
   1062   1.70    rpaulo 	 * (although such packets must normally set the hop limit field to 1).
   1063   1.13    itojun 	 */
   1064   1.13    itojun 	if (IN6_IS_ADDR_UNSPECIFIED(&ip6->ip6_src)) {
   1065   1.89   thorpej 		IP6_STATINC(IP6_STAT_CANTFORWARD);
   1066  1.108     ozaki 		if (ip6_log_time + ip6_log_interval < time_uptime) {
   1067  1.108     ozaki 			ip6_log_time = time_uptime;
   1068   1.13    itojun 			log(LOG_DEBUG,
   1069   1.13    itojun 			    "cannot forward "
   1070   1.13    itojun 			    "from %s to %s nxt %d received on %s\n",
   1071  1.115  christos 			    IN6_PRINT(ip6bufs, &ip6->ip6_src),
   1072  1.115  christos 			    IN6_PRINT(ip6bufd, &ip6->ip6_dst),
   1073   1.13    itojun 			    ip6->ip6_nxt,
   1074  1.110     ozaki 			    m->m_pkthdr.rcvif_index ?
   1075  1.110     ozaki 			    if_name(m_get_rcvif_NOMPSAFE(m)) : "?");
   1076   1.13    itojun 		}
   1077   1.13    itojun 		return 0;
   1078   1.13    itojun 	}
   1079    1.2    itojun 
   1080    1.2    itojun 	/*
   1081    1.2    itojun 	 * Determine forwarding mifs from the forwarding cache table
   1082    1.2    itojun 	 */
   1083    1.4    itojun 	s = splsoftnet();
   1084    1.2    itojun 	MF6CFIND(ip6->ip6_src, ip6->ip6_dst, rt);
   1085    1.2    itojun 
   1086    1.2    itojun 	/* Entry exists, so forward if necessary */
   1087    1.2    itojun 	if (rt) {
   1088    1.2    itojun 		splx(s);
   1089  1.121      maxv 		return ip6_mdq(m, ifp, rt);
   1090    1.2    itojun 	} else {
   1091    1.2    itojun 		/*
   1092  1.121      maxv 		 * If we don't have a route for packet's origin, make a copy
   1093  1.121      maxv 		 * of the packet and send message to routing daemon.
   1094    1.2    itojun 		 */
   1095    1.2    itojun 
   1096   1.15    itojun 		struct mbuf *mb0;
   1097   1.15    itojun 		struct rtdetq *rte;
   1098   1.15    itojun 		u_long hash;
   1099  1.121      maxv 
   1100    1.2    itojun #ifdef UPCALL_TIMING
   1101    1.2    itojun 		struct timeval tp;
   1102    1.2    itojun 		GET_TIME(tp);
   1103  1.121      maxv #endif
   1104    1.2    itojun 
   1105    1.2    itojun 		mrt6stat.mrt6s_no_route++;
   1106    1.2    itojun #ifdef MRT6DEBUG
   1107    1.2    itojun 		if (mrt6debug & (DEBUG_FORWARD | DEBUG_MFC))
   1108    1.2    itojun 			log(LOG_DEBUG, "ip6_mforward: no rte s %s g %s\n",
   1109  1.115  christos 			    IN6_PRINT(ip6bufs, &ip6->ip6_src),
   1110  1.115  christos 			    IN6_PRINT(ip6bufd, &ip6->ip6_dst));
   1111    1.2    itojun #endif
   1112    1.2    itojun 
   1113    1.2    itojun 		/*
   1114    1.2    itojun 		 * Allocate mbufs early so that we don't do extra work if we
   1115    1.2    itojun 		 * are just going to fail anyway.
   1116    1.2    itojun 		 */
   1117  1.121      maxv 		rte = malloc(sizeof(*rte), M_MRTABLE, M_NOWAIT);
   1118    1.2    itojun 		if (rte == NULL) {
   1119    1.2    itojun 			splx(s);
   1120    1.2    itojun 			return ENOBUFS;
   1121    1.2    itojun 		}
   1122  1.126      maxv 		mb0 = m_copypacket(m, M_DONTWAIT);
   1123  1.121      maxv 
   1124    1.2    itojun 		/*
   1125    1.2    itojun 		 * Pullup packet header if needed before storing it,
   1126    1.2    itojun 		 * as other references may modify it in the meantime.
   1127    1.2    itojun 		 */
   1128  1.124      maxv 		if (mb0 && M_UNWRITABLE(mb0, sizeof(struct ip6_hdr)))
   1129    1.2    itojun 			mb0 = m_pullup(mb0, sizeof(struct ip6_hdr));
   1130    1.2    itojun 		if (mb0 == NULL) {
   1131    1.2    itojun 			free(rte, M_MRTABLE);
   1132    1.2    itojun 			splx(s);
   1133    1.2    itojun 			return ENOBUFS;
   1134    1.2    itojun 		}
   1135   1.26  sommerfe 
   1136    1.2    itojun 		/* is there an upcall waiting for this packet? */
   1137    1.2    itojun 		hash = MF6CHASH(ip6->ip6_src, ip6->ip6_dst);
   1138    1.2    itojun 		for (rt = mf6ctable[hash]; rt; rt = rt->mf6c_next) {
   1139    1.2    itojun 			if (IN6_ARE_ADDR_EQUAL(&ip6->ip6_src,
   1140    1.2    itojun 					       &rt->mf6c_origin.sin6_addr) &&
   1141    1.2    itojun 			    IN6_ARE_ADDR_EQUAL(&ip6->ip6_dst,
   1142    1.2    itojun 					       &rt->mf6c_mcastgrp.sin6_addr) &&
   1143    1.2    itojun 			    (rt->mf6c_stall != NULL))
   1144    1.2    itojun 				break;
   1145    1.2    itojun 		}
   1146    1.2    itojun 
   1147    1.2    itojun 		if (rt == NULL) {
   1148    1.2    itojun 			struct mrt6msg *im;
   1149   1.12    itojun 			struct omrt6msg *oim;
   1150    1.2    itojun 
   1151    1.2    itojun 			/* no upcall, so make a new entry */
   1152  1.121      maxv 			rt = malloc(sizeof(*rt), M_MRTABLE, M_NOWAIT);
   1153    1.2    itojun 			if (rt == NULL) {
   1154    1.2    itojun 				free(rte, M_MRTABLE);
   1155    1.2    itojun 				m_freem(mb0);
   1156    1.2    itojun 				splx(s);
   1157    1.2    itojun 				return ENOBUFS;
   1158    1.2    itojun 			}
   1159  1.121      maxv 
   1160    1.2    itojun 			/*
   1161    1.2    itojun 			 * Make a copy of the header to send to the user
   1162    1.2    itojun 			 * level process
   1163    1.2    itojun 			 */
   1164  1.125      maxv 			mm = m_copym(mb0, 0, sizeof(struct ip6_hdr), M_DONTWAIT);
   1165    1.2    itojun 
   1166    1.2    itojun 			if (mm == NULL) {
   1167    1.2    itojun 				free(rte, M_MRTABLE);
   1168    1.2    itojun 				m_freem(mb0);
   1169    1.2    itojun 				free(rt, M_MRTABLE);
   1170    1.2    itojun 				splx(s);
   1171    1.2    itojun 				return ENOBUFS;
   1172    1.2    itojun 			}
   1173    1.2    itojun 
   1174   1.12    itojun 			/*
   1175    1.2    itojun 			 * Send message to routing daemon
   1176    1.2    itojun 			 */
   1177   1.85    dyoung 			sockaddr_in6_init(&sin6, &ip6->ip6_src, 0, 0, 0);
   1178   1.26  sommerfe 
   1179   1.12    itojun 			im = NULL;
   1180   1.12    itojun 			oim = NULL;
   1181   1.12    itojun 			switch (ip6_mrouter_ver) {
   1182   1.12    itojun 			case MRT6_OINIT:
   1183   1.12    itojun 				oim = mtod(mm, struct omrt6msg *);
   1184   1.12    itojun 				oim->im6_msgtype = MRT6MSG_NOCACHE;
   1185   1.12    itojun 				oim->im6_mbz = 0;
   1186   1.12    itojun 				break;
   1187   1.12    itojun 			case MRT6_INIT:
   1188   1.12    itojun 				im = mtod(mm, struct mrt6msg *);
   1189   1.12    itojun 				im->im6_msgtype = MRT6MSG_NOCACHE;
   1190   1.12    itojun 				im->im6_mbz = 0;
   1191   1.12    itojun 				break;
   1192   1.12    itojun 			default:
   1193   1.12    itojun 				free(rte, M_MRTABLE);
   1194   1.12    itojun 				m_freem(mb0);
   1195   1.12    itojun 				free(rt, M_MRTABLE);
   1196   1.12    itojun 				splx(s);
   1197   1.12    itojun 				return EINVAL;
   1198   1.12    itojun 			}
   1199    1.2    itojun 
   1200    1.2    itojun #ifdef MRT6DEBUG
   1201    1.2    itojun 			if (mrt6debug & DEBUG_FORWARD)
   1202    1.2    itojun 				log(LOG_DEBUG,
   1203    1.2    itojun 				    "getting the iif info in the kernel\n");
   1204    1.2    itojun #endif
   1205    1.2    itojun 
   1206    1.2    itojun 			for (mifp = mif6table, mifi = 0;
   1207    1.2    itojun 			     mifi < nummifs && mifp->m6_ifp != ifp;
   1208    1.2    itojun 			     mifp++, mifi++)
   1209    1.2    itojun 				;
   1210    1.2    itojun 
   1211   1.12    itojun 			switch (ip6_mrouter_ver) {
   1212   1.12    itojun 			case MRT6_OINIT:
   1213   1.12    itojun 				oim->im6_mif = mifi;
   1214   1.12    itojun 				break;
   1215   1.12    itojun 			case MRT6_INIT:
   1216   1.12    itojun 				im->im6_mif = mifi;
   1217   1.12    itojun 				break;
   1218   1.12    itojun 			}
   1219    1.2    itojun 
   1220    1.2    itojun 			if (socket_send(ip6_mrouter, mm, &sin6) < 0) {
   1221    1.2    itojun 				log(LOG_WARNING, "ip6_mforward: ip6_mrouter "
   1222    1.2    itojun 				    "socket queue full\n");
   1223    1.2    itojun 				mrt6stat.mrt6s_upq_sockfull++;
   1224    1.2    itojun 				free(rte, M_MRTABLE);
   1225    1.2    itojun 				m_freem(mb0);
   1226    1.2    itojun 				free(rt, M_MRTABLE);
   1227    1.2    itojun 				splx(s);
   1228    1.2    itojun 				return ENOBUFS;
   1229    1.2    itojun 			}
   1230    1.2    itojun 
   1231    1.2    itojun 			mrt6stat.mrt6s_upcalls++;
   1232    1.2    itojun 
   1233    1.2    itojun 			/* insert new entry at head of hash chain */
   1234   1.97    cegger 			memset(rt, 0, sizeof(*rt));
   1235   1.85    dyoung 			sockaddr_in6_init(&rt->mf6c_origin, &ip6->ip6_src,
   1236   1.85    dyoung 			    0, 0, 0);
   1237   1.85    dyoung 			sockaddr_in6_init(&rt->mf6c_mcastgrp, &ip6->ip6_dst,
   1238   1.85    dyoung 			    0, 0, 0);
   1239    1.2    itojun 			rt->mf6c_expire = UPCALL_EXPIRE;
   1240   1.30    itojun 			n6expire[hash]++;
   1241    1.2    itojun 			rt->mf6c_parent = MF6C_INCOMPLETE_PARENT;
   1242    1.2    itojun 
   1243    1.2    itojun 			/* link into table */
   1244    1.2    itojun 			rt->mf6c_next  = mf6ctable[hash];
   1245    1.2    itojun 			mf6ctable[hash] = rt;
   1246    1.2    itojun 			/* Add this entry to the end of the queue */
   1247    1.2    itojun 			rt->mf6c_stall = rte;
   1248    1.2    itojun 		} else {
   1249    1.2    itojun 			/* determine if q has overflowed */
   1250    1.2    itojun 			struct rtdetq **p;
   1251   1.15    itojun 			int npkts = 0;
   1252    1.2    itojun 
   1253  1.121      maxv 			for (p = &rt->mf6c_stall; *p != NULL; p = &(*p)->next) {
   1254    1.2    itojun 				if (++npkts > MAX_UPQ6) {
   1255    1.2    itojun 					mrt6stat.mrt6s_upq_ovflw++;
   1256    1.2    itojun 					free(rte, M_MRTABLE);
   1257    1.2    itojun 					m_freem(mb0);
   1258    1.2    itojun 					splx(s);
   1259    1.2    itojun 					return 0;
   1260    1.2    itojun 				}
   1261  1.121      maxv 			}
   1262    1.2    itojun 
   1263    1.2    itojun 			/* Add this entry to the end of the queue */
   1264    1.2    itojun 			*p = rte;
   1265    1.2    itojun 		}
   1266    1.2    itojun 
   1267    1.2    itojun 		rte->next = NULL;
   1268    1.2    itojun 		rte->m = mb0;
   1269    1.2    itojun 		rte->ifp = ifp;
   1270    1.2    itojun #ifdef UPCALL_TIMING
   1271    1.2    itojun 		rte->t = tp;
   1272  1.121      maxv #endif
   1273    1.2    itojun 
   1274    1.2    itojun 		splx(s);
   1275    1.2    itojun 
   1276    1.2    itojun 		return 0;
   1277    1.2    itojun 	}
   1278    1.2    itojun }
   1279    1.2    itojun 
   1280    1.2    itojun /*
   1281    1.2    itojun  * Clean up cache entries if upcalls are not serviced
   1282   1.71    rpaulo  * Call from the Slow Timeout mechanism, every 0.25 seconds.
   1283    1.2    itojun  */
   1284    1.2    itojun static void
   1285   1.76  christos expire_upcalls(void *unused)
   1286    1.2    itojun {
   1287    1.2    itojun 	struct rtdetq *rte;
   1288    1.2    itojun 	struct mf6c *mfc, **nptr;
   1289    1.2    itojun 	int i;
   1290    1.2    itojun 
   1291  1.116     ozaki 	/* XXX NOMPSAFE still need softnet_lock */
   1292   1.92        ad 	mutex_enter(softnet_lock);
   1293   1.92        ad 	KERNEL_LOCK(1, NULL);
   1294   1.92        ad 
   1295    1.2    itojun 	for (i = 0; i < MF6CTBLSIZ; i++) {
   1296   1.30    itojun 		if (n6expire[i] == 0)
   1297    1.2    itojun 			continue;
   1298    1.2    itojun 		nptr = &mf6ctable[i];
   1299    1.2    itojun 		while ((mfc = *nptr) != NULL) {
   1300    1.2    itojun 			rte = mfc->mf6c_stall;
   1301    1.2    itojun 			/*
   1302    1.2    itojun 			 * Skip real cache entries
   1303    1.2    itojun 			 * Make sure it wasn't marked to not expire (shouldn't happen)
   1304    1.2    itojun 			 * If it expires now
   1305    1.2    itojun 			 */
   1306    1.2    itojun 			if (rte != NULL &&
   1307    1.2    itojun 			    mfc->mf6c_expire != 0 &&
   1308    1.2    itojun 			    --mfc->mf6c_expire == 0) {
   1309    1.2    itojun #ifdef MRT6DEBUG
   1310  1.114       ryo 				if (mrt6debug & DEBUG_EXPIRE) {
   1311  1.114       ryo 					char ip6bufo[INET6_ADDRSTRLEN];
   1312  1.114       ryo 					char ip6bufm[INET6_ADDRSTRLEN];
   1313  1.114       ryo 					log(LOG_DEBUG,
   1314  1.114       ryo 					    "expire_upcalls: expiring (%s %s)\n",
   1315  1.115  christos 					    IN6_PRINT(ip6bufo,
   1316  1.114       ryo 					    &mfc->mf6c_origin.sin6_addr),
   1317  1.115  christos 					    IN6_PRINT(ip6bufm,
   1318  1.114       ryo 					    &mfc->mf6c_mcastgrp.sin6_addr));
   1319  1.114       ryo 				}
   1320    1.2    itojun #endif
   1321    1.2    itojun 				/*
   1322    1.2    itojun 				 * drop all the packets
   1323    1.2    itojun 				 * free the mbuf with the pkt, if, timing info
   1324    1.2    itojun 				 */
   1325    1.2    itojun 				do {
   1326    1.2    itojun 					struct rtdetq *n = rte->next;
   1327    1.2    itojun 					m_freem(rte->m);
   1328    1.2    itojun 					free(rte, M_MRTABLE);
   1329    1.2    itojun 					rte = n;
   1330    1.2    itojun 				} while (rte != NULL);
   1331    1.2    itojun 				mrt6stat.mrt6s_cache_cleanups++;
   1332   1.30    itojun 				n6expire[i]--;
   1333    1.2    itojun 
   1334    1.2    itojun 				*nptr = mfc->mf6c_next;
   1335    1.2    itojun 				free(mfc, M_MRTABLE);
   1336    1.2    itojun 			} else {
   1337    1.2    itojun 				nptr = &mfc->mf6c_next;
   1338    1.2    itojun 			}
   1339    1.2    itojun 		}
   1340    1.2    itojun 	}
   1341   1.11   thorpej 	callout_reset(&expire_upcalls_ch, EXPIRE_TIMEOUT,
   1342   1.11   thorpej 	    expire_upcalls, NULL);
   1343   1.92        ad 
   1344   1.92        ad 	KERNEL_UNLOCK_ONE(NULL);
   1345   1.92        ad 	mutex_exit(softnet_lock);
   1346    1.2    itojun }
   1347    1.2    itojun 
   1348    1.2    itojun /*
   1349  1.121      maxv  * Macro to send packet on mif.  Since RSVP packets don't get counted on
   1350  1.121      maxv  * input, they shouldn't get counted on output, so statistics keeping is
   1351  1.121      maxv  * separate.
   1352  1.121      maxv  */
   1353  1.121      maxv #define MC6_SEND(ip6, mifp, m) do {				\
   1354  1.121      maxv 	if ((mifp)->m6_flags & MIFF_REGISTER)			\
   1355  1.121      maxv 		register_send((ip6), (mifp), (m));		\
   1356  1.121      maxv 	else							\
   1357  1.121      maxv 		phyint_send((ip6), (mifp), (m));		\
   1358  1.121      maxv } while (/*CONSTCOND*/ 0)
   1359  1.121      maxv 
   1360  1.121      maxv /*
   1361    1.2    itojun  * Packet forwarding routine once entry in the cache is made
   1362    1.2    itojun  */
   1363    1.2    itojun static int
   1364   1.81  christos ip6_mdq(struct mbuf *m, struct ifnet *ifp, struct mf6c *rt)
   1365   1.15    itojun {
   1366   1.15    itojun 	struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *);
   1367   1.15    itojun 	mifi_t mifi, iif;
   1368   1.15    itojun 	struct mif6 *mifp;
   1369   1.15    itojun 	int plen = m->m_pkthdr.len;
   1370   1.69    rpaulo 	struct in6_addr src0, dst0; /* copies for local work */
   1371   1.69    rpaulo 	u_int32_t iszone, idzone, oszone, odzone;
   1372   1.69    rpaulo 	int error = 0;
   1373    1.2    itojun 
   1374    1.2    itojun 	/*
   1375    1.2    itojun 	 * Don't forward if it didn't arrive from the parent mif
   1376    1.2    itojun 	 * for its origin.
   1377    1.2    itojun 	 */
   1378    1.2    itojun 	mifi = rt->mf6c_parent;
   1379    1.2    itojun 	if ((mifi >= nummifs) || (mif6table[mifi].m6_ifp != ifp)) {
   1380    1.2    itojun 		/* came in the wrong interface */
   1381    1.2    itojun #ifdef MRT6DEBUG
   1382    1.2    itojun 		if (mrt6debug & DEBUG_FORWARD)
   1383    1.2    itojun 			log(LOG_DEBUG,
   1384    1.2    itojun 			    "wrong if: ifid %d mifi %d mififid %x\n",
   1385    1.2    itojun 			    ifp->if_index, mifi,
   1386   1.50    itojun 			    mif6table[mifi].m6_ifp ?
   1387   1.63     perry 			    mif6table[mifi].m6_ifp->if_index : -1);
   1388    1.2    itojun #endif
   1389    1.2    itojun 		mrt6stat.mrt6s_wrong_if++;
   1390    1.2    itojun 		rt->mf6c_wrong_if++;
   1391  1.121      maxv 
   1392    1.2    itojun 		/*
   1393    1.2    itojun 		 * If we are doing PIM processing, and we are forwarding
   1394    1.2    itojun 		 * packets on this interface, send a message to the
   1395    1.2    itojun 		 * routing daemon.
   1396    1.2    itojun 		 */
   1397   1.12    itojun 		/* have to make sure this is a valid mif */
   1398  1.121      maxv 		if (mifi < nummifs && mif6table[mifi].m6_ifp) {
   1399   1.12    itojun 			if (pim6 && (m->m_flags & M_LOOP) == 0) {
   1400   1.12    itojun 				/*
   1401   1.12    itojun 				 * Check the M_LOOP flag to avoid an
   1402   1.12    itojun 				 * unnecessary PIM assert.
   1403   1.12    itojun 				 * XXX: M_LOOP is an ad-hoc hack...
   1404   1.12    itojun 				 */
   1405   1.64  christos 				struct sockaddr_in6 sin6;
   1406    1.2    itojun 
   1407   1.15    itojun 				struct mbuf *mm;
   1408   1.12    itojun 				struct mrt6msg *im;
   1409   1.12    itojun 				struct omrt6msg *oim;
   1410   1.12    itojun 
   1411  1.125      maxv 				mm = m_copym(m, 0, sizeof(struct ip6_hdr), M_DONTWAIT);
   1412  1.124      maxv 				if (mm && M_UNWRITABLE(mm, sizeof(struct ip6_hdr)))
   1413   1.12    itojun 					mm = m_pullup(mm, sizeof(struct ip6_hdr));
   1414   1.12    itojun 				if (mm == NULL)
   1415   1.12    itojun 					return ENOBUFS;
   1416   1.26  sommerfe 
   1417   1.12    itojun 				oim = NULL;
   1418   1.12    itojun 				im = NULL;
   1419   1.12    itojun 				switch (ip6_mrouter_ver) {
   1420   1.12    itojun 				case MRT6_OINIT:
   1421   1.12    itojun 					oim = mtod(mm, struct omrt6msg *);
   1422   1.12    itojun 					oim->im6_msgtype = MRT6MSG_WRONGMIF;
   1423   1.12    itojun 					oim->im6_mbz = 0;
   1424   1.12    itojun 					break;
   1425   1.12    itojun 				case MRT6_INIT:
   1426    1.2    itojun 					im = mtod(mm, struct mrt6msg *);
   1427   1.12    itojun 					im->im6_msgtype = MRT6MSG_WRONGMIF;
   1428   1.16    itojun 					im->im6_mbz = 0;
   1429   1.12    itojun 					break;
   1430   1.12    itojun 				default:
   1431   1.12    itojun 					m_freem(mm);
   1432   1.12    itojun 					return EINVAL;
   1433   1.12    itojun 				}
   1434    1.2    itojun 
   1435   1.12    itojun 				for (mifp = mif6table, iif = 0;
   1436   1.12    itojun 				     iif < nummifs && mifp &&
   1437   1.12    itojun 					     mifp->m6_ifp != ifp;
   1438   1.12    itojun 				     mifp++, iif++)
   1439   1.12    itojun 					;
   1440   1.12    itojun 
   1441   1.97    cegger 				memset(&sin6, 0, sizeof(sin6));
   1442   1.64  christos 				sin6.sin6_len = sizeof(sin6);
   1443   1.64  christos 				sin6.sin6_family = AF_INET6;
   1444   1.12    itojun 				switch (ip6_mrouter_ver) {
   1445   1.12    itojun 				case MRT6_OINIT:
   1446   1.12    itojun 					oim->im6_mif = iif;
   1447   1.12    itojun 					sin6.sin6_addr = oim->im6_src;
   1448   1.12    itojun 					break;
   1449   1.12    itojun 				case MRT6_INIT:
   1450   1.12    itojun 					im->im6_mif = iif;
   1451    1.2    itojun 					sin6.sin6_addr = im->im6_src;
   1452   1.12    itojun 					break;
   1453   1.12    itojun 				}
   1454    1.2    itojun 
   1455   1.12    itojun 				mrt6stat.mrt6s_upcalls++;
   1456    1.2    itojun 
   1457   1.12    itojun 				if (socket_send(ip6_mrouter, mm, &sin6) < 0) {
   1458    1.2    itojun #ifdef MRT6DEBUG
   1459   1.12    itojun 					if (mrt6debug)
   1460   1.12    itojun 						log(LOG_WARNING, "mdq, ip6_mrouter socket queue full\n");
   1461    1.2    itojun #endif
   1462   1.12    itojun 					++mrt6stat.mrt6s_upq_sockfull;
   1463   1.12    itojun 					return ENOBUFS;
   1464  1.121      maxv 				}
   1465  1.121      maxv 			}
   1466  1.121      maxv 		}
   1467  1.121      maxv 
   1468    1.2    itojun 		return 0;
   1469  1.121      maxv 	}
   1470    1.2    itojun 
   1471    1.2    itojun 	/* If I sourced this packet, it counts as output, else it was input. */
   1472  1.110     ozaki 	if (m->m_pkthdr.rcvif_index == 0) {
   1473    1.2    itojun 		/* XXX: is rcvif really NULL when output?? */
   1474    1.2    itojun 		mif6table[mifi].m6_pkt_out++;
   1475    1.2    itojun 		mif6table[mifi].m6_bytes_out += plen;
   1476    1.2    itojun 	} else {
   1477    1.2    itojun 		mif6table[mifi].m6_pkt_in++;
   1478    1.2    itojun 		mif6table[mifi].m6_bytes_in += plen;
   1479    1.2    itojun 	}
   1480    1.2    itojun 	rt->mf6c_pkt_cnt++;
   1481    1.2    itojun 	rt->mf6c_byte_cnt += plen;
   1482    1.2    itojun 
   1483    1.2    itojun 	/*
   1484    1.2    itojun 	 * For each mif, forward a copy of the packet if there are group
   1485    1.2    itojun 	 * members downstream on the interface.
   1486    1.2    itojun 	 */
   1487   1.69    rpaulo 	src0 = ip6->ip6_src;
   1488   1.69    rpaulo 	dst0 = ip6->ip6_dst;
   1489   1.69    rpaulo 	if ((error = in6_setscope(&src0, ifp, &iszone)) != 0 ||
   1490   1.69    rpaulo 	    (error = in6_setscope(&dst0, ifp, &idzone)) != 0) {
   1491   1.89   thorpej 		IP6_STATINC(IP6_STAT_BADSCOPE);
   1492  1.121      maxv 		return error;
   1493   1.69    rpaulo 	}
   1494  1.121      maxv 	for (mifp = mif6table, mifi = 0; mifi < nummifs; mifp++, mifi++) {
   1495    1.2    itojun 		if (IF_ISSET(mifi, &rt->mf6c_ifset)) {
   1496   1.47    itojun 			if (mif6table[mifi].m6_ifp == NULL)
   1497   1.47    itojun 				continue;
   1498   1.12    itojun 			/*
   1499   1.12    itojun 			 * check if the outgoing packet is going to break
   1500   1.12    itojun 			 * a scope boundary.
   1501   1.70    rpaulo 			 * XXX: For packets through PIM register tunnel
   1502   1.70    rpaulo 			 * interface, we believe the routing daemon.
   1503   1.12    itojun 			 */
   1504   1.12    itojun 			if ((mif6table[rt->mf6c_parent].m6_flags &
   1505   1.12    itojun 			     MIFF_REGISTER) == 0 &&
   1506   1.69    rpaulo 			    (mif6table[mifi].m6_flags & MIFF_REGISTER) == 0) {
   1507   1.69    rpaulo 				if (in6_setscope(&src0, mif6table[mifi].m6_ifp,
   1508   1.69    rpaulo 				    &oszone) ||
   1509   1.69    rpaulo 				    in6_setscope(&dst0, mif6table[mifi].m6_ifp,
   1510   1.69    rpaulo 				    &odzone) ||
   1511   1.69    rpaulo 				    iszone != oszone || idzone != odzone) {
   1512   1.89   thorpej 					IP6_STATINC(IP6_STAT_BADSCOPE);
   1513   1.69    rpaulo 					continue;
   1514   1.69    rpaulo 				}
   1515   1.12    itojun 			}
   1516   1.12    itojun 
   1517    1.2    itojun 			mifp->m6_pkt_out++;
   1518    1.2    itojun 			mifp->m6_bytes_out += plen;
   1519    1.2    itojun 			MC6_SEND(ip6, mifp, m);
   1520    1.2    itojun 		}
   1521  1.121      maxv 	}
   1522  1.121      maxv 
   1523    1.2    itojun 	return 0;
   1524    1.2    itojun }
   1525    1.2    itojun 
   1526    1.2    itojun static void
   1527   1.81  christos phyint_send(struct ip6_hdr *ip6, struct mif6 *mifp, struct mbuf *m)
   1528    1.2    itojun {
   1529   1.15    itojun 	struct mbuf *mb_copy;
   1530    1.2    itojun 	struct ifnet *ifp = mifp->m6_ifp;
   1531  1.105       riz 	int error __mrt6debugused = 0;
   1532   1.77    dyoung 	int s;
   1533   1.80    dyoung 	static struct route ro;
   1534  1.119     ozaki 	bool ingroup;
   1535   1.71    rpaulo 	struct sockaddr_in6 dst6;
   1536   1.29    itojun 	u_long linkmtu;
   1537    1.2    itojun 
   1538   1.77    dyoung 	s = splsoftnet();
   1539  1.121      maxv 
   1540    1.2    itojun 	/*
   1541    1.2    itojun 	 * Make a new reference to the packet; make sure that
   1542    1.2    itojun 	 * the IPv6 header is actually copied, not just referenced,
   1543    1.2    itojun 	 * so that ip6_output() only scribbles on the copy.
   1544    1.2    itojun 	 */
   1545  1.126      maxv 	mb_copy = m_copypacket(m, M_DONTWAIT);
   1546  1.124      maxv 	if (mb_copy && M_UNWRITABLE(mb_copy, sizeof(struct ip6_hdr)))
   1547    1.2    itojun 		mb_copy = m_pullup(mb_copy, sizeof(struct ip6_hdr));
   1548   1.18    itojun 	if (mb_copy == NULL) {
   1549   1.18    itojun 		splx(s);
   1550    1.2    itojun 		return;
   1551   1.18    itojun 	}
   1552  1.121      maxv 
   1553    1.2    itojun 	/* set MCAST flag to the outgoing packet */
   1554    1.2    itojun 	mb_copy->m_flags |= M_MCAST;
   1555    1.2    itojun 
   1556    1.2    itojun 	/*
   1557   1.71    rpaulo 	 * If we sourced the packet, call ip6_output since we may divide
   1558    1.2    itojun 	 * the packet into fragments when the packet is too big for the
   1559    1.2    itojun 	 * outgoing interface.
   1560    1.2    itojun 	 * Otherwise, we can simply send the packet to the interface
   1561    1.2    itojun 	 * sending queue.
   1562    1.2    itojun 	 */
   1563  1.110     ozaki 	if (m->m_pkthdr.rcvif_index == 0) {
   1564    1.2    itojun 		struct ip6_moptions im6o;
   1565    1.2    itojun 
   1566  1.111     ozaki 		im6o.im6o_multicast_if_index = if_get_index(ifp);
   1567    1.2    itojun 		/* XXX: ip6_output will override ip6->ip6_hlim */
   1568    1.2    itojun 		im6o.im6o_multicast_hlim = ip6->ip6_hlim;
   1569    1.2    itojun 		im6o.im6o_multicast_loop = 1;
   1570  1.105       riz 		error = ip6_output(mb_copy, NULL, &ro, IPV6_FORWARDING,
   1571  1.121      maxv 		    &im6o, NULL, NULL);
   1572    1.2    itojun 
   1573    1.2    itojun #ifdef MRT6DEBUG
   1574    1.2    itojun 		if (mrt6debug & DEBUG_XMIT)
   1575   1.99  jakllsch 			log(LOG_DEBUG, "phyint_send on mif %td err %d\n",
   1576    1.2    itojun 			    mifp - mif6table, error);
   1577    1.2    itojun #endif
   1578    1.2    itojun 		splx(s);
   1579    1.2    itojun 		return;
   1580    1.2    itojun 	}
   1581    1.2    itojun 
   1582    1.2    itojun 	/*
   1583    1.2    itojun 	 * If we belong to the destination multicast group
   1584    1.2    itojun 	 * on the outgoing interface, loop back a copy.
   1585    1.2    itojun 	 */
   1586  1.121      maxv 	/*
   1587  1.130   msaitoh 	 * Does not have to check source info, as it's already covered by
   1588   1.71    rpaulo 	 * ip6_input
   1589   1.71    rpaulo 	 */
   1590   1.85    dyoung 	sockaddr_in6_init(&dst6, &ip6->ip6_dst, 0, 0, 0);
   1591   1.71    rpaulo 
   1592  1.119     ozaki 	ingroup = in6_multi_group(&ip6->ip6_dst, ifp);
   1593  1.119     ozaki 	if (ingroup) {
   1594   1.78    dyoung 		ip6_mloopback(ifp, m,
   1595   1.80    dyoung 		    satocsin6(rtcache_getdst(&ro)));
   1596   1.78    dyoung 	}
   1597   1.71    rpaulo 
   1598    1.2    itojun 	/*
   1599   1.12    itojun 	 * Put the packet into the sending queue of the outgoing interface
   1600    1.2    itojun 	 * if it would fit in the MTU of the interface.
   1601    1.2    itojun 	 */
   1602   1.29    itojun 	linkmtu = IN6_LINKMTU(ifp);
   1603   1.36    itojun 	if (mb_copy->m_pkthdr.len <= linkmtu || linkmtu < IPV6_MMTU) {
   1604  1.117     ozaki 		error = ip6_if_output(ifp, ifp, mb_copy, &dst6, NULL);
   1605    1.2    itojun #ifdef MRT6DEBUG
   1606    1.2    itojun 		if (mrt6debug & DEBUG_XMIT)
   1607   1.99  jakllsch 			log(LOG_DEBUG, "phyint_send on mif %td err %d\n",
   1608    1.2    itojun 			    mifp - mif6table, error);
   1609    1.2    itojun #endif
   1610   1.20    itojun 	} else {
   1611   1.71    rpaulo 		/*
   1612   1.71    rpaulo 		 * pMTU discovery is intentionally disabled by default, since
   1613  1.121      maxv 		 * various routers may notify pMTU in multicast, which can be
   1614  1.121      maxv 		 * a DDoS to a router.
   1615   1.71    rpaulo 		 */
   1616  1.121      maxv 		if (ip6_mcast_pmtu) {
   1617   1.71    rpaulo 			icmp6_error(mb_copy, ICMP6_PACKET_TOO_BIG, 0, linkmtu);
   1618  1.121      maxv 		} else {
   1619  1.121      maxv 			/* simply discard the packet */
   1620    1.2    itojun #ifdef MRT6DEBUG
   1621  1.114       ryo 			if (mrt6debug & DEBUG_XMIT) {
   1622  1.114       ryo 				char ip6bufs[INET6_ADDRSTRLEN];
   1623  1.114       ryo 				char ip6bufd[INET6_ADDRSTRLEN];
   1624   1.71    rpaulo 				log(LOG_DEBUG,
   1625   1.71    rpaulo 				    "phyint_send: packet too big on %s o %s g %s"
   1626   1.71    rpaulo 				    " size %d(discarded)\n",
   1627   1.71    rpaulo 				    if_name(ifp),
   1628  1.115  christos 				    IN6_PRINT(ip6bufs, &ip6->ip6_src),
   1629  1.115  christos 				    IN6_PRINT(ip6bufd, &ip6->ip6_dst),
   1630   1.71    rpaulo 				    mb_copy->m_pkthdr.len);
   1631  1.114       ryo 			}
   1632  1.121      maxv #endif
   1633  1.121      maxv 			m_freem(mb_copy);
   1634   1.71    rpaulo 		}
   1635    1.2    itojun 	}
   1636   1.20    itojun 
   1637   1.20    itojun 	splx(s);
   1638    1.2    itojun }
   1639    1.2    itojun 
   1640   1.12    itojun static int
   1641   1.82  christos register_send(struct ip6_hdr *ip6, struct mif6 *mif, struct mbuf *m)
   1642    1.2    itojun {
   1643   1.15    itojun 	struct mbuf *mm;
   1644   1.15    itojun 	int i, len = m->m_pkthdr.len;
   1645   1.64  christos 	struct sockaddr_in6 sin6;
   1646    1.2    itojun 	struct mrt6msg *im6;
   1647    1.2    itojun 
   1648    1.2    itojun #ifdef MRT6DEBUG
   1649  1.114       ryo 	if (mrt6debug) {
   1650  1.114       ryo 		char ip6bufs[INET6_ADDRSTRLEN], ip6bufd[INET6_ADDRSTRLEN];
   1651    1.2    itojun 		log(LOG_DEBUG, "** IPv6 register_send **\n src %s dst %s\n",
   1652  1.115  christos 		    IN6_PRINT(ip6bufs, &ip6->ip6_src),
   1653  1.115  christos 		    IN6_PRINT(ip6bufd, &ip6->ip6_dst));
   1654  1.114       ryo 	}
   1655    1.2    itojun #endif
   1656   1.90   thorpej 	PIM6_STATINC(PIM6_STAT_SND_REGISTERS);
   1657    1.2    itojun 
   1658    1.2    itojun 	/* Make a copy of the packet to send to the user level process */
   1659    1.2    itojun 	MGETHDR(mm, M_DONTWAIT, MT_HEADER);
   1660    1.2    itojun 	if (mm == NULL)
   1661    1.2    itojun 		return ENOBUFS;
   1662    1.2    itojun 	mm->m_data += max_linkhdr;
   1663    1.2    itojun 	mm->m_len = sizeof(struct ip6_hdr);
   1664    1.2    itojun 
   1665  1.126      maxv 	if ((mm->m_next = m_copypacket(m, M_DONTWAIT)) == NULL) {
   1666    1.2    itojun 		m_freem(mm);
   1667    1.2    itojun 		return ENOBUFS;
   1668    1.2    itojun 	}
   1669    1.2    itojun 	i = MHLEN - M_LEADINGSPACE(mm);
   1670    1.2    itojun 	if (i > len)
   1671    1.2    itojun 		i = len;
   1672    1.2    itojun 	mm = m_pullup(mm, i);
   1673   1.27    itojun 	if (mm == NULL)
   1674    1.2    itojun 		return ENOBUFS;
   1675    1.2    itojun 	mm->m_pkthdr.len = len + sizeof(struct ip6_hdr);
   1676    1.2    itojun 
   1677   1.12    itojun 	/*
   1678    1.2    itojun 	 * Send message to routing daemon
   1679    1.2    itojun 	 */
   1680   1.85    dyoung 	sockaddr_in6_init(&sin6, &ip6->ip6_src, 0, 0, 0);
   1681    1.2    itojun 
   1682    1.2    itojun 	im6 = mtod(mm, struct mrt6msg *);
   1683  1.121      maxv 	im6->im6_msgtype = MRT6MSG_WHOLEPKT;
   1684  1.121      maxv 	im6->im6_mbz = 0;
   1685    1.2    itojun 	im6->im6_mif = mif - mif6table;
   1686    1.2    itojun 
   1687    1.2    itojun 	/* iif info is not given for reg. encap.n */
   1688    1.2    itojun 	mrt6stat.mrt6s_upcalls++;
   1689    1.2    itojun 
   1690    1.2    itojun 	if (socket_send(ip6_mrouter, mm, &sin6) < 0) {
   1691    1.2    itojun #ifdef MRT6DEBUG
   1692    1.2    itojun 		if (mrt6debug)
   1693    1.2    itojun 			log(LOG_WARNING,
   1694   1.33    itojun 			    "register_send: ip6_mrouter socket queue full\n");
   1695    1.2    itojun #endif
   1696   1.15    itojun 		++mrt6stat.mrt6s_upq_sockfull;
   1697   1.15    itojun 		return ENOBUFS;
   1698    1.2    itojun 	}
   1699  1.121      maxv 
   1700    1.2    itojun 	return 0;
   1701    1.2    itojun }
   1702   1.12    itojun 
   1703    1.2    itojun /*
   1704  1.121      maxv  * PIM sparse mode hook. Receives the pim control messages, and passes them up
   1705  1.121      maxv  * to the listening socket, using rip6_input.
   1706  1.121      maxv  *
   1707    1.2    itojun  * The only message processed is the REGISTER pim message; the pim header
   1708    1.2    itojun  * is stripped off, and the inner packet is passed to register_mforward.
   1709    1.2    itojun  */
   1710    1.2    itojun int
   1711   1.81  christos pim6_input(struct mbuf **mp, int *offp, int proto)
   1712    1.2    itojun {
   1713  1.121      maxv 	struct pim *pim;
   1714  1.105       riz 	struct ip6_hdr *ip6 __mrt6debugused;
   1715   1.15    itojun 	int pimlen;
   1716    1.2    itojun 	struct mbuf *m = *mp;
   1717   1.15    itojun 	int minlen;
   1718    1.2    itojun 	int off = *offp;
   1719    1.2    itojun 
   1720   1.90   thorpej 	PIM6_STATINC(PIM6_STAT_RCV_TOTAL);
   1721    1.2    itojun 
   1722  1.105       riz 	ip6 = mtod(m, struct ip6_hdr *);
   1723  1.121      maxv 	pimlen = m->m_pkthdr.len - off;
   1724    1.2    itojun 
   1725   1.15    itojun 	/*
   1726   1.15    itojun 	 * Validate lengths
   1727   1.15    itojun 	 */
   1728    1.2    itojun 	if (pimlen < PIM_MINLEN) {
   1729   1.90   thorpej 		PIM6_STATINC(PIM6_STAT_RCV_TOOSHORT);
   1730    1.2    itojun #ifdef MRT6DEBUG
   1731    1.2    itojun 		if (mrt6debug & DEBUG_PIM)
   1732    1.2    itojun 			log(LOG_DEBUG,"pim6_input: PIM packet too short\n");
   1733    1.2    itojun #endif
   1734    1.2    itojun 		m_freem(m);
   1735  1.121      maxv 		return IPPROTO_DONE;
   1736    1.2    itojun 	}
   1737    1.2    itojun 
   1738    1.2    itojun 	/*
   1739  1.121      maxv 	 * If the packet is at least as big as a REGISTER, go ahead
   1740    1.2    itojun 	 * and grab the PIM REGISTER header size, to avoid another
   1741    1.2    itojun 	 * possible m_pullup() later.
   1742   1.12    itojun 	 *
   1743    1.2    itojun 	 * PIM_MINLEN       == pimhdr + u_int32 == 8
   1744    1.2    itojun 	 * PIM6_REG_MINLEN   == pimhdr + reghdr + eip6hdr == 4 + 4 + 40
   1745    1.2    itojun 	 */
   1746    1.2    itojun 	minlen = (pimlen >= PIM6_REG_MINLEN) ? PIM6_REG_MINLEN : PIM_MINLEN;
   1747   1.12    itojun 
   1748    1.2    itojun 	/*
   1749    1.2    itojun 	 * Make sure that the IP6 and PIM headers in contiguous memory, and
   1750    1.2    itojun 	 * possibly the PIM REGISTER header
   1751    1.2    itojun 	 */
   1752    1.8    itojun 	IP6_EXTHDR_GET(pim, struct pim *, m, off, minlen);
   1753    1.8    itojun 	if (pim == NULL) {
   1754   1.90   thorpej 		PIM6_STATINC(PIM6_STAT_RCV_TOOSHORT);
   1755    1.8    itojun 		return IPPROTO_DONE;
   1756    1.8    itojun 	}
   1757    1.2    itojun 
   1758   1.45    itojun 	/* PIM version check */
   1759   1.45    itojun 	if (pim->pim_ver != PIM_VERSION) {
   1760   1.90   thorpej 		PIM6_STATINC(PIM6_STAT_RCV_BADVERSION);
   1761   1.45    itojun #ifdef MRT6DEBUG
   1762   1.45    itojun 		log(LOG_ERR,
   1763   1.45    itojun 		    "pim6_input: incorrect version %d, expecting %d\n",
   1764   1.45    itojun 		    pim->pim_ver, PIM_VERSION);
   1765   1.45    itojun #endif
   1766   1.45    itojun 		m_freem(m);
   1767  1.121      maxv 		return IPPROTO_DONE;
   1768   1.45    itojun 	}
   1769   1.45    itojun 
   1770    1.2    itojun #define PIM6_CHECKSUM
   1771    1.2    itojun #ifdef PIM6_CHECKSUM
   1772    1.2    itojun 	{
   1773    1.2    itojun 		int cksumlen;
   1774    1.2    itojun 
   1775    1.2    itojun 		/*
   1776    1.2    itojun 		 * Validate checksum.
   1777    1.2    itojun 		 * If PIM REGISTER, exclude the data packet
   1778    1.2    itojun 		 */
   1779    1.2    itojun 		if (pim->pim_type == PIM_REGISTER)
   1780    1.2    itojun 			cksumlen = PIM_MINLEN;
   1781    1.2    itojun 		else
   1782    1.2    itojun 			cksumlen = pimlen;
   1783    1.2    itojun 
   1784    1.2    itojun 		if (in6_cksum(m, IPPROTO_PIM, off, cksumlen)) {
   1785   1.90   thorpej 			PIM6_STATINC(PIM6_STAT_RCV_BADSUM);
   1786    1.2    itojun #ifdef MRT6DEBUG
   1787    1.2    itojun 			if (mrt6debug & DEBUG_PIM)
   1788    1.2    itojun 				log(LOG_DEBUG,
   1789    1.2    itojun 				    "pim6_input: invalid checksum\n");
   1790   1.12    itojun #endif
   1791    1.2    itojun 			m_freem(m);
   1792  1.121      maxv 			return IPPROTO_DONE;
   1793    1.2    itojun 		}
   1794    1.2    itojun 	}
   1795    1.2    itojun #endif /* PIM_CHECKSUM */
   1796    1.2    itojun 
   1797    1.2    itojun 	if (pim->pim_type == PIM_REGISTER) {
   1798    1.2    itojun 		/*
   1799    1.2    itojun 		 * since this is a REGISTER, we'll make a copy of the register
   1800    1.7    itojun 		 * headers ip6+pim+u_int32_t+encap_ip6, to be passed up to the
   1801    1.2    itojun 		 * routing daemon.
   1802    1.2    itojun 		 */
   1803   1.74  christos 		static const struct sockaddr_in6 dst = {
   1804   1.74  christos 			.sin6_len = sizeof(dst),
   1805   1.74  christos 			.sin6_family = AF_INET6,
   1806   1.74  christos 		};
   1807    1.2    itojun 
   1808    1.2    itojun 		struct mbuf *mcp;
   1809    1.2    itojun 		struct ip6_hdr *eip6;
   1810    1.7    itojun 		u_int32_t *reghdr;
   1811   1.26  sommerfe 
   1812   1.90   thorpej 		PIM6_STATINC(PIM6_STAT_RCV_REGISTERS);
   1813    1.2    itojun 
   1814    1.2    itojun 		if ((reg_mif_num >= nummifs) || (reg_mif_num == (mifi_t) -1)) {
   1815    1.2    itojun #ifdef MRT6DEBUG
   1816    1.2    itojun 			if (mrt6debug & DEBUG_PIM)
   1817    1.2    itojun 				log(LOG_DEBUG,
   1818    1.2    itojun 				    "pim6_input: register mif not set: %d\n",
   1819    1.2    itojun 				    reg_mif_num);
   1820    1.2    itojun #endif
   1821    1.2    itojun 			m_freem(m);
   1822  1.121      maxv 			return IPPROTO_DONE;
   1823    1.2    itojun 		}
   1824   1.26  sommerfe 
   1825    1.7    itojun 		reghdr = (u_int32_t *)(pim + 1);
   1826   1.26  sommerfe 
   1827    1.2    itojun 		if ((ntohl(*reghdr) & PIM_NULL_REGISTER))
   1828    1.2    itojun 			goto pim6_input_to_daemon;
   1829    1.2    itojun 
   1830    1.2    itojun 		/*
   1831    1.2    itojun 		 * Validate length
   1832    1.2    itojun 		 */
   1833    1.2    itojun 		if (pimlen < PIM6_REG_MINLEN) {
   1834    1.2    itojun #ifdef MRT6DEBUG
   1835  1.114       ryo 			char ip6buf[INET6_ADDRSTRLEN];
   1836    1.2    itojun 			log(LOG_ERR,
   1837    1.2    itojun 			    "pim6_input: register packet size too "
   1838    1.2    itojun 			    "small %d from %s\n",
   1839  1.115  christos 			    pimlen, IN6_PRINT(ip6buf, &ip6->ip6_src));
   1840   1.12    itojun #endif
   1841  1.114       ryo 			PIM6_STATINC(PIM6_STAT_RCV_TOOSHORT);
   1842  1.114       ryo 			PIM6_STATINC(PIM6_STAT_RCV_BADREGISTERS);
   1843    1.2    itojun 			m_freem(m);
   1844  1.121      maxv 			return IPPROTO_DONE;
   1845    1.2    itojun 		}
   1846   1.26  sommerfe 
   1847  1.121      maxv 		eip6 = (struct ip6_hdr *)(reghdr + 1);
   1848   1.26  sommerfe #ifdef MRT6DEBUG
   1849  1.114       ryo 		if (mrt6debug & DEBUG_PIM) {
   1850  1.114       ryo 			char ip6bufs[INET6_ADDRSTRLEN];
   1851  1.114       ryo 			char ip6bufd[INET6_ADDRSTRLEN];
   1852    1.2    itojun 			log(LOG_DEBUG,
   1853    1.2    itojun 			    "pim6_input[register], eip6: %s -> %s, "
   1854    1.2    itojun 			    "eip6 plen %d\n",
   1855  1.115  christos 			    IN6_PRINT(ip6bufs, &eip6->ip6_src),
   1856  1.115  christos 			    IN6_PRINT(ip6bufd, &eip6->ip6_dst),
   1857    1.2    itojun 			    ntohs(eip6->ip6_plen));
   1858  1.114       ryo 		}
   1859   1.12    itojun #endif
   1860   1.14    itojun 
   1861   1.14    itojun 		/* verify the version number of the inner packet */
   1862   1.14    itojun 		if ((eip6->ip6_vfc & IPV6_VERSION_MASK) != IPV6_VERSION) {
   1863   1.90   thorpej 			PIM6_STATINC(PIM6_STAT_RCV_BADREGISTERS);
   1864   1.14    itojun #ifdef MRT6DEBUG
   1865   1.14    itojun 			log(LOG_DEBUG, "pim6_input: invalid IP version (%d) "
   1866   1.14    itojun 			    "of the inner packet\n",
   1867   1.14    itojun 			    (eip6->ip6_vfc & IPV6_VERSION));
   1868   1.14    itojun #endif
   1869   1.14    itojun 			m_freem(m);
   1870  1.121      maxv 			return IPPROTO_DONE;
   1871   1.14    itojun 		}
   1872   1.26  sommerfe 
   1873    1.2    itojun 		/* verify the inner packet is destined to a mcast group */
   1874    1.2    itojun 		if (!IN6_IS_ADDR_MULTICAST(&eip6->ip6_dst)) {
   1875   1.90   thorpej 			PIM6_STATINC(PIM6_STAT_RCV_BADREGISTERS);
   1876    1.2    itojun #ifdef MRT6DEBUG
   1877  1.114       ryo 			if (mrt6debug & DEBUG_PIM) {
   1878  1.114       ryo 				char ip6buf[INET6_ADDRSTRLEN];
   1879    1.2    itojun 				log(LOG_DEBUG,
   1880    1.2    itojun 				    "pim6_input: inner packet of register "
   1881    1.2    itojun 				    "is not multicast %s\n",
   1882  1.115  christos 				    IN6_PRINT(ip6buf, &eip6->ip6_dst));
   1883  1.114       ryo 			}
   1884   1.12    itojun #endif
   1885    1.2    itojun 			m_freem(m);
   1886  1.121      maxv 			return IPPROTO_DONE;
   1887    1.2    itojun 		}
   1888   1.26  sommerfe 
   1889    1.2    itojun 		/*
   1890    1.2    itojun 		 * make a copy of the whole header to pass to the daemon later.
   1891    1.2    itojun 		 */
   1892  1.125      maxv 		mcp = m_copym(m, 0, off + PIM6_REG_MINLEN, M_DONTWAIT);
   1893    1.2    itojun 		if (mcp == NULL) {
   1894    1.2    itojun #ifdef MRT6DEBUG
   1895    1.2    itojun 			log(LOG_ERR,
   1896    1.2    itojun 			    "pim6_input: pim register: "
   1897    1.2    itojun 			    "could not copy register head\n");
   1898   1.12    itojun #endif
   1899    1.2    itojun 			m_freem(m);
   1900  1.121      maxv 			return IPPROTO_DONE;
   1901    1.2    itojun 		}
   1902   1.26  sommerfe 
   1903    1.2    itojun 		/*
   1904    1.2    itojun 		 * forward the inner ip6 packet; point m_data at the inner ip6.
   1905    1.2    itojun 		 */
   1906    1.2    itojun 		m_adj(m, off + PIM_MINLEN);
   1907    1.2    itojun #ifdef MRT6DEBUG
   1908    1.2    itojun 		if (mrt6debug & DEBUG_PIM) {
   1909  1.114       ryo 			char ip6bufs[INET6_ADDRSTRLEN];
   1910  1.114       ryo 			char ip6bufd[INET6_ADDRSTRLEN];
   1911    1.2    itojun 			log(LOG_DEBUG,
   1912    1.2    itojun 			    "pim6_input: forwarding decapsulated register: "
   1913    1.2    itojun 			    "src %s, dst %s, mif %d\n",
   1914  1.115  christos 			    IN6_PRINT(ip6bufs, &eip6->ip6_src),
   1915  1.115  christos 			    IN6_PRINT(ip6bufd, &eip6->ip6_dst),
   1916    1.2    itojun 			    reg_mif_num);
   1917    1.2    itojun 		}
   1918    1.2    itojun #endif
   1919    1.2    itojun 
   1920  1.112     ozaki 		looutput(mif6table[reg_mif_num].m6_ifp, m, sin6tocsa(&dst),
   1921  1.112     ozaki 		    NULL);
   1922   1.26  sommerfe 
   1923    1.2    itojun 		/* prepare the register head to send to the mrouting daemon */
   1924    1.2    itojun 		m = mcp;
   1925    1.2    itojun 	}
   1926   1.12    itojun 
   1927    1.2    itojun 	/*
   1928    1.2    itojun 	 * Pass the PIM message up to the daemon; if it is a register message
   1929    1.2    itojun 	 * pass the 'head' only up to the daemon. This includes the
   1930    1.2    itojun 	 * encapsulator ip6 header, pim header, register header and the
   1931    1.2    itojun 	 * encapsulated ip6 header.
   1932    1.2    itojun 	 */
   1933  1.121      maxv pim6_input_to_daemon:
   1934  1.129  knakahar 	/*
   1935  1.129  knakahar 	 * Currently, rip6_input() is always called holding softnet_lock
   1936  1.129  knakahar 	 * by ipintr()(!NET_MPSAFE) or PR_INPUT_WRAP()(NET_MPSAFE).
   1937  1.129  knakahar 	 */
   1938  1.129  knakahar 	KASSERT(mutex_owned(softnet_lock));
   1939    1.2    itojun 	rip6_input(&m, offp, proto);
   1940  1.121      maxv 	return IPPROTO_DONE;
   1941    1.2    itojun }
   1942   1.65    rpaulo 
   1943   1.90   thorpej static int
   1944   1.90   thorpej sysctl_net_inet6_pim6_stats(SYSCTLFN_ARGS)
   1945   1.90   thorpej {
   1946   1.90   thorpej 
   1947   1.93   thorpej 	return (NETSTAT_SYSCTL(pim6stat_percpu, PIM6_NSTATS));
   1948   1.90   thorpej }
   1949   1.90   thorpej 
   1950   1.98     pooka static void
   1951   1.98     pooka sysctl_net_inet6_pim6_setup(struct sysctllog **clog)
   1952   1.65    rpaulo {
   1953  1.106     pooka 
   1954   1.65    rpaulo 	sysctl_createv(clog, 0, NULL, NULL,
   1955   1.65    rpaulo 		       CTLFLAG_PERMANENT,
   1956   1.65    rpaulo 		       CTLTYPE_NODE, "inet6", NULL,
   1957   1.65    rpaulo 		       NULL, 0, NULL, 0,
   1958   1.65    rpaulo 		       CTL_NET, PF_INET6, CTL_EOL);
   1959   1.65    rpaulo 	sysctl_createv(clog, 0, NULL, NULL,
   1960   1.65    rpaulo 		       CTLFLAG_PERMANENT,
   1961   1.65    rpaulo 		       CTLTYPE_NODE, "pim6",
   1962   1.65    rpaulo 		       SYSCTL_DESCR("PIMv6 settings"),
   1963   1.65    rpaulo 		       NULL, 0, NULL, 0,
   1964   1.65    rpaulo 		       CTL_NET, PF_INET6, IPPROTO_PIM, CTL_EOL);
   1965   1.65    rpaulo 
   1966   1.65    rpaulo 	sysctl_createv(clog, 0, NULL, NULL,
   1967   1.65    rpaulo 		       CTLFLAG_PERMANENT,
   1968   1.65    rpaulo 		       CTLTYPE_STRUCT, "stats",
   1969   1.65    rpaulo 		       SYSCTL_DESCR("PIMv6 statistics"),
   1970   1.90   thorpej 		       sysctl_net_inet6_pim6_stats, 0, NULL, 0,
   1971   1.65    rpaulo 		       CTL_NET, PF_INET6, IPPROTO_PIM, PIM6CTL_STATS,
   1972   1.65    rpaulo 		       CTL_EOL);
   1973   1.65    rpaulo }
   1974