2005-01-07 02:30:35 +00:00
|
|
|
/*-
|
2000-01-28 05:27:14 +00:00
|
|
|
* Copyright (C) 1998 WIDE Project.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. Neither the name of the project nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
2007-12-10 16:03:40 +00:00
|
|
|
*
|
|
|
|
* $KAME: ip6_mroute.c,v 1.58 2001/12/18 02:36:31 itojun Exp $
|
2000-01-28 05:27:14 +00:00
|
|
|
*/
|
|
|
|
|
2005-01-07 02:30:35 +00:00
|
|
|
/*-
|
2003-10-08 18:26:08 +00:00
|
|
|
* Copyright (c) 1989 Stephen Deering
|
|
|
|
* Copyright (c) 1992, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Stephen Deering of Stanford University.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
2007-12-10 16:03:40 +00:00
|
|
|
* @(#)ip_mroute.c 8.2 (Berkeley) 11/15/93
|
|
|
|
* BSDI ip_mroute.c,v 2.10 1996/11/14 00:29:52 jch Exp
|
2003-10-08 18:26:08 +00:00
|
|
|
*/
|
|
|
|
|
2000-01-28 05:27:14 +00:00
|
|
|
/*
|
|
|
|
* IP multicast forwarding procedures
|
|
|
|
*
|
|
|
|
* Written by David Waitzman, BBN Labs, August 1988.
|
|
|
|
* Modified by Steve Deering, Stanford, February 1989.
|
|
|
|
* Modified by Mark J. Steiglitz, Stanford, May, 1991
|
|
|
|
* Modified by Van Jacobson, LBL, January 1993
|
|
|
|
* Modified by Ajit Thyagarajan, PARC, August 1993
|
2003-10-08 18:26:08 +00:00
|
|
|
* Modified by Bill Fenner, PARC, April 1994
|
2000-01-28 05:27:14 +00:00
|
|
|
*
|
|
|
|
* MROUTING Revision: 3.5.1.2 + PIM-SMv2 (pimd) Support
|
|
|
|
*/
|
|
|
|
|
2007-12-10 16:03:40 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
2000-01-28 05:27:14 +00:00
|
|
|
#include "opt_inet.h"
|
2000-07-04 16:35:15 +00:00
|
|
|
#include "opt_inet6.h"
|
2000-01-28 05:27:14 +00:00
|
|
|
|
|
|
|
#include <sys/param.h>
|
2001-06-11 12:39:29 +00:00
|
|
|
#include <sys/callout.h>
|
2002-04-30 01:54:54 +00:00
|
|
|
#include <sys/errno.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/lock.h>
|
2000-01-28 05:27:14 +00:00
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/mbuf.h>
|
2009-03-19 01:43:03 +00:00
|
|
|
#include <sys/module.h>
|
Bite the bullet, and make the IPv6 SSM and MLDv2 mega-commit:
import from p4 bms_netdev. Summary of changes:
* Connect netinet6/in6_mcast.c to build.
The legacy KAME KPIs are mostly preserved.
* Eliminate now dead code from ip6_output.c.
Don't do mbuf bingo, we are not going to do RFC 2292 style
CMSG tricks for multicast options as they are not required
by any current IPv6 normative reference.
* Refactor transports (UDP, raw_ip6) to do own mcast filtering.
SCTP, TCP unaffected by this change.
* Add ip6_msource, in6_msource structs to in6_var.h.
* Hookup mld_ifinfo state to in6_ifextra, allocate from
domifattach path.
* Eliminate IN6_LOOKUP_MULTI(), it is no longer referenced.
Kernel consumers which need this should use in6m_lookup().
* Refactor IPv6 socket group memberships to use a vector (like IPv4).
* Update ifmcstat(8) for IPv6 SSM.
* Add witness lock order for IN6_MULTI_LOCK.
* Move IN6_MULTI_LOCK out of lower ip6_output()/ip6_input() paths.
* Introduce IP6STAT_ADD/SUB/INC/DEC as per rwatson's IPv4 cleanup.
* Update carp(4) for new IPv6 SSM KPIs.
* Virtualize ip6_mrouter socket.
Changes mostly localized to IPv6 MROUTING.
* Don't do a local group lookup in MROUTING.
* Kill unused KAME prototypes in6_purgemkludge(), in6_restoremkludge().
* Preserve KAME DAD timer jitter behaviour in MLDv1 compatibility mode.
* Bump __FreeBSD_version to 800084.
* Update UPDATING.
NOTE WELL:
* This code hasn't been tested against real MLDv2 queriers
(yet), although the on-wire protocol has been verified in Wireshark.
* There are a few unresolved issues in the socket layer APIs to
do with scope ID propagation.
* There is a LOR present in ip6_output()'s use of
in6_setscope() which needs to be resolved. See comments in mld6.c.
This is believed to be benign and can't be avoided for the moment
without re-introducing an indirect netisr.
This work was mostly derived from the IGMPv3 implementation, and
has been sponsored by a third party.
2009-04-29 19:19:13 +00:00
|
|
|
#include <sys/domain.h>
|
2002-04-30 01:54:54 +00:00
|
|
|
#include <sys/protosw.h>
|
|
|
|
#include <sys/signalvar.h>
|
2000-01-28 05:27:14 +00:00
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/socketvar.h>
|
|
|
|
#include <sys/sockio.h>
|
2002-04-30 01:54:54 +00:00
|
|
|
#include <sys/sx.h>
|
2007-02-24 11:38:47 +00:00
|
|
|
#include <sys/sysctl.h>
|
2000-01-28 05:27:14 +00:00
|
|
|
#include <sys/syslog.h>
|
2002-04-30 01:54:54 +00:00
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/time.h>
|
2000-01-28 05:27:14 +00:00
|
|
|
|
|
|
|
#include <net/if.h>
|
2005-12-09 04:42:19 +00:00
|
|
|
#include <net/if_types.h>
|
2000-01-28 05:27:14 +00:00
|
|
|
#include <net/raw_cb.h>
|
2008-12-02 21:37:28 +00:00
|
|
|
#include <net/vnet.h>
|
2000-01-28 05:27:14 +00:00
|
|
|
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/in_var.h>
|
2005-08-13 19:55:06 +00:00
|
|
|
#include <netinet/icmp6.h>
|
2009-03-19 01:43:03 +00:00
|
|
|
#include <netinet/ip_encap.h>
|
2000-01-28 05:27:14 +00:00
|
|
|
|
2000-07-04 16:35:15 +00:00
|
|
|
#include <netinet/ip6.h>
|
2000-01-28 05:27:14 +00:00
|
|
|
#include <netinet6/ip6_var.h>
|
2005-07-25 12:31:43 +00:00
|
|
|
#include <netinet6/scope6_var.h>
|
2003-10-20 15:27:48 +00:00
|
|
|
#include <netinet6/nd6.h>
|
2000-01-28 05:27:14 +00:00
|
|
|
#include <netinet6/ip6_mroute.h>
|
2007-02-24 11:38:47 +00:00
|
|
|
#include <netinet6/ip6protosw.h>
|
2000-01-28 05:27:14 +00:00
|
|
|
#include <netinet6/pim6.h>
|
|
|
|
#include <netinet6/pim6_var.h>
|
|
|
|
|
2005-09-07 10:11:49 +00:00
|
|
|
static MALLOC_DEFINE(M_MRTABLE6, "mf6c", "multicast forwarding cache entry");
|
2000-01-28 05:27:14 +00:00
|
|
|
|
2007-02-28 21:58:37 +00:00
|
|
|
/* XXX: this is a very common idiom; move to <sys/mbuf.h> ? */
|
2000-07-04 16:35:15 +00:00
|
|
|
#define M_HASCL(m) ((m)->m_flags & M_EXT)
|
2000-01-28 05:27:14 +00:00
|
|
|
|
2009-03-19 01:43:03 +00:00
|
|
|
static int ip6_mdq(struct mbuf *, struct ifnet *, struct mf6c *);
|
|
|
|
static void phyint_send(struct ip6_hdr *, struct mif6 *, struct mbuf *);
|
|
|
|
static int register_send(struct ip6_hdr *, struct mif6 *, struct mbuf *);
|
|
|
|
static int set_pim6(int *);
|
|
|
|
static int socket_send(struct socket *, struct mbuf *,
|
|
|
|
struct sockaddr_in6 *);
|
2000-01-28 05:27:14 +00:00
|
|
|
|
Bite the bullet, and make the IPv6 SSM and MLDv2 mega-commit:
import from p4 bms_netdev. Summary of changes:
* Connect netinet6/in6_mcast.c to build.
The legacy KAME KPIs are mostly preserved.
* Eliminate now dead code from ip6_output.c.
Don't do mbuf bingo, we are not going to do RFC 2292 style
CMSG tricks for multicast options as they are not required
by any current IPv6 normative reference.
* Refactor transports (UDP, raw_ip6) to do own mcast filtering.
SCTP, TCP unaffected by this change.
* Add ip6_msource, in6_msource structs to in6_var.h.
* Hookup mld_ifinfo state to in6_ifextra, allocate from
domifattach path.
* Eliminate IN6_LOOKUP_MULTI(), it is no longer referenced.
Kernel consumers which need this should use in6m_lookup().
* Refactor IPv6 socket group memberships to use a vector (like IPv4).
* Update ifmcstat(8) for IPv6 SSM.
* Add witness lock order for IN6_MULTI_LOCK.
* Move IN6_MULTI_LOCK out of lower ip6_output()/ip6_input() paths.
* Introduce IP6STAT_ADD/SUB/INC/DEC as per rwatson's IPv4 cleanup.
* Update carp(4) for new IPv6 SSM KPIs.
* Virtualize ip6_mrouter socket.
Changes mostly localized to IPv6 MROUTING.
* Don't do a local group lookup in MROUTING.
* Kill unused KAME prototypes in6_purgemkludge(), in6_restoremkludge().
* Preserve KAME DAD timer jitter behaviour in MLDv1 compatibility mode.
* Bump __FreeBSD_version to 800084.
* Update UPDATING.
NOTE WELL:
* This code hasn't been tested against real MLDv2 queriers
(yet), although the on-wire protocol has been verified in Wireshark.
* There are a few unresolved issues in the socket layer APIs to
do with scope ID propagation.
* There is a LOR present in ip6_output()'s use of
in6_setscope() which needs to be resolved. See comments in mld6.c.
This is believed to be benign and can't be avoided for the moment
without re-introducing an indirect netisr.
This work was mostly derived from the IGMPv3 implementation, and
has been sponsored by a third party.
2009-04-29 19:19:13 +00:00
|
|
|
extern int in6_mcast_loop;
|
2007-02-24 11:38:47 +00:00
|
|
|
extern struct domain inet6domain;
|
2007-02-28 20:29:20 +00:00
|
|
|
|
2009-03-19 01:43:03 +00:00
|
|
|
static const struct encaptab *pim6_encap_cookie;
|
|
|
|
static const struct ip6protosw in6_pim_protosw = {
|
2007-02-24 11:38:47 +00:00
|
|
|
.pr_type = SOCK_RAW,
|
|
|
|
.pr_domain = &inet6domain,
|
|
|
|
.pr_protocol = IPPROTO_PIM,
|
|
|
|
.pr_flags = PR_ATOMIC|PR_ADDR|PR_LASTHDR,
|
|
|
|
.pr_input = pim6_input,
|
|
|
|
.pr_output = rip6_output,
|
|
|
|
.pr_ctloutput = rip6_ctloutput,
|
|
|
|
.pr_usrreqs = &rip6_usrreqs
|
|
|
|
};
|
2009-03-19 01:43:03 +00:00
|
|
|
static int pim6_encapcheck(const struct mbuf *, int, int, void *);
|
2007-02-24 11:38:47 +00:00
|
|
|
|
2010-04-29 11:52:42 +00:00
|
|
|
static VNET_DEFINE(int, ip6_mrouter_ver) = 0;
|
2009-07-16 21:13:04 +00:00
|
|
|
#define V_ip6_mrouter_ver VNET(ip6_mrouter_ver)
|
2007-02-24 11:38:47 +00:00
|
|
|
|
|
|
|
SYSCTL_DECL(_net_inet6);
|
|
|
|
SYSCTL_DECL(_net_inet6_ip6);
|
|
|
|
SYSCTL_NODE(_net_inet6, IPPROTO_PIM, pim, CTLFLAG_RW, 0, "PIM");
|
|
|
|
|
2007-02-28 20:29:20 +00:00
|
|
|
static struct mrt6stat mrt6stat;
|
2007-02-24 11:38:47 +00:00
|
|
|
SYSCTL_STRUCT(_net_inet6_ip6, OID_AUTO, mrt6stat, CTLFLAG_RW,
|
|
|
|
&mrt6stat, mrt6stat,
|
|
|
|
"Multicast Routing Statistics (struct mrt6stat, netinet6/ip6_mroute.h)");
|
2000-01-28 05:27:14 +00:00
|
|
|
|
2007-07-05 16:29:40 +00:00
|
|
|
#define NO_RTE_FOUND 0x1
|
2000-07-04 16:35:15 +00:00
|
|
|
#define RTE_FOUND 0x2
|
2000-01-28 05:27:14 +00:00
|
|
|
|
2009-03-19 01:43:03 +00:00
|
|
|
static struct mtx mrouter6_mtx;
|
|
|
|
#define MROUTER6_LOCK() mtx_lock(&mrouter6_mtx)
|
|
|
|
#define MROUTER6_UNLOCK() mtx_unlock(&mrouter6_mtx)
|
|
|
|
#define MROUTER6_LOCK_ASSERT() do { \
|
|
|
|
mtx_assert(&mrouter6_mtx, MA_OWNED); \
|
|
|
|
NET_ASSERT_GIANT(); \
|
|
|
|
} while (0)
|
|
|
|
#define MROUTER6_LOCK_INIT() \
|
|
|
|
mtx_init(&mrouter6_mtx, "IPv6 multicast forwarding", NULL, MTX_DEF)
|
|
|
|
#define MROUTER6_LOCK_DESTROY() mtx_destroy(&mrouter6_mtx)
|
|
|
|
|
2007-02-28 20:29:20 +00:00
|
|
|
static struct mf6c *mf6ctable[MF6CTBLSIZ];
|
2007-02-24 11:38:47 +00:00
|
|
|
SYSCTL_OPAQUE(_net_inet6_ip6, OID_AUTO, mf6ctable, CTLFLAG_RD,
|
|
|
|
&mf6ctable, sizeof(mf6ctable), "S,*mf6ctable[MF6CTBLSIZ]",
|
2009-03-19 01:43:03 +00:00
|
|
|
"IPv6 Multicast Forwarding Table (struct *mf6ctable[MF6CTBLSIZ], "
|
2007-02-24 11:38:47 +00:00
|
|
|
"netinet6/ip6_mroute.h)");
|
|
|
|
|
2009-03-19 01:43:03 +00:00
|
|
|
static struct mtx mfc6_mtx;
|
|
|
|
#define MFC6_LOCK() mtx_lock(&mfc6_mtx)
|
|
|
|
#define MFC6_UNLOCK() mtx_unlock(&mfc6_mtx)
|
|
|
|
#define MFC6_LOCK_ASSERT() do { \
|
|
|
|
mtx_assert(&mfc6_mtx, MA_OWNED); \
|
|
|
|
NET_ASSERT_GIANT(); \
|
|
|
|
} while (0)
|
|
|
|
#define MFC6_LOCK_INIT() \
|
|
|
|
mtx_init(&mfc6_mtx, "IPv6 multicast forwarding cache", NULL, MTX_DEF)
|
|
|
|
#define MFC6_LOCK_DESTROY() mtx_destroy(&mfc6_mtx)
|
|
|
|
|
2007-02-28 20:29:20 +00:00
|
|
|
static u_char n6expire[MF6CTBLSIZ];
|
2007-02-24 11:38:47 +00:00
|
|
|
|
2000-07-04 16:35:15 +00:00
|
|
|
static struct mif6 mif6table[MAXMIFS];
|
2007-02-24 11:38:47 +00:00
|
|
|
SYSCTL_OPAQUE(_net_inet6_ip6, OID_AUTO, mif6table, CTLFLAG_RD,
|
2009-03-19 01:43:03 +00:00
|
|
|
&mif6table, sizeof(mif6table), "S,mif6[MAXMIFS]",
|
|
|
|
"IPv6 Multicast Interfaces (struct mif6[MAXMIFS], netinet6/ip6_mroute.h)");
|
|
|
|
|
|
|
|
static struct mtx mif6_mtx;
|
|
|
|
#define MIF6_LOCK() mtx_lock(&mif6_mtx)
|
|
|
|
#define MIF6_UNLOCK() mtx_unlock(&mif6_mtx)
|
|
|
|
#define MIF6_LOCK_ASSERT() mtx_assert(&mif6_mtx, MA_OWNED)
|
|
|
|
#define MIF6_LOCK_INIT() \
|
|
|
|
mtx_init(&mif6_mtx, "IPv6 multicast interfaces", NULL, MTX_DEF)
|
|
|
|
#define MIF6_LOCK_DESTROY() mtx_destroy(&mif6_mtx)
|
2007-02-24 11:38:47 +00:00
|
|
|
|
2000-01-28 05:27:14 +00:00
|
|
|
#ifdef MRT6DEBUG
|
2010-04-29 11:52:42 +00:00
|
|
|
static VNET_DEFINE(u_int, mrt6debug) = 0; /* debug level */
|
2009-07-16 21:13:04 +00:00
|
|
|
#define V_mrt6debug VNET(mrt6debug)
|
2003-10-08 18:26:08 +00:00
|
|
|
#define DEBUG_MFC 0x02
|
|
|
|
#define DEBUG_FORWARD 0x04
|
|
|
|
#define DEBUG_EXPIRE 0x08
|
|
|
|
#define DEBUG_XMIT 0x10
|
|
|
|
#define DEBUG_REG 0x20
|
|
|
|
#define DEBUG_PIM 0x40
|
2000-01-28 05:27:14 +00:00
|
|
|
#endif
|
|
|
|
|
2008-01-08 19:08:58 +00:00
|
|
|
static void expire_upcalls(void *);
|
2003-10-08 18:26:08 +00:00
|
|
|
#define EXPIRE_TIMEOUT (hz / 4) /* 4x / second */
|
|
|
|
#define UPCALL_EXPIRE 6 /* number of timeouts */
|
2000-01-28 05:27:14 +00:00
|
|
|
|
2009-03-19 01:43:03 +00:00
|
|
|
/*
|
|
|
|
* XXX TODO: maintain a count to if_allmulti() calls in struct ifnet.
|
|
|
|
*/
|
2000-01-28 05:27:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 'Interfaces' associated with decapsulator (so we can tell
|
|
|
|
* packets that went through it from ones that get reflected
|
2005-12-09 04:42:19 +00:00
|
|
|
* by a broken gateway). Different from IPv4 register_if,
|
|
|
|
* these interfaces are linked into the system ifnet list,
|
|
|
|
* because per-interface IPv6 statistics are maintained in
|
2007-07-05 16:29:40 +00:00
|
|
|
* ifp->if_afdata. But it does not have any routes point
|
2005-12-09 04:42:19 +00:00
|
|
|
* to them. I.e., packets can't be sent this way. They
|
2007-07-05 16:29:40 +00:00
|
|
|
* only exist as a placeholder for multicast source
|
2005-12-09 04:42:19 +00:00
|
|
|
* verification.
|
2000-01-28 05:27:14 +00:00
|
|
|
*/
|
2005-12-09 04:42:19 +00:00
|
|
|
static struct ifnet *multicast_register_if6;
|
2000-01-28 05:27:14 +00:00
|
|
|
|
2000-07-04 16:35:15 +00:00
|
|
|
#define ENCAP_HOPS 64
|
2000-01-28 05:27:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Private variables.
|
|
|
|
*/
|
|
|
|
static mifi_t nummifs = 0;
|
|
|
|
static mifi_t reg_mif_num = (mifi_t)-1;
|
|
|
|
|
|
|
|
static struct pim6stat pim6stat;
|
2007-02-24 11:38:47 +00:00
|
|
|
SYSCTL_STRUCT(_net_inet6_pim, PIM6CTL_STATS, stats, CTLFLAG_RD,
|
|
|
|
&pim6stat, pim6stat,
|
|
|
|
"PIM Statistics (struct pim6stat, netinet6/pim_var.h)");
|
|
|
|
|
Build on Jeff Roberson's linker-set based dynamic per-CPU allocator
(DPCPU), as suggested by Peter Wemm, and implement a new per-virtual
network stack memory allocator. Modify vnet to use the allocator
instead of monolithic global container structures (vinet, ...). This
change solves many binary compatibility problems associated with
VIMAGE, and restores ELF symbols for virtualized global variables.
Each virtualized global variable exists as a "reference copy", and also
once per virtual network stack. Virtualized global variables are
tagged at compile-time, placing the in a special linker set, which is
loaded into a contiguous region of kernel memory. Virtualized global
variables in the base kernel are linked as normal, but those in modules
are copied and relocated to a reserved portion of the kernel's vnet
region with the help of a the kernel linker.
Virtualized global variables exist in per-vnet memory set up when the
network stack instance is created, and are initialized statically from
the reference copy. Run-time access occurs via an accessor macro, which
converts from the current vnet and requested symbol to a per-vnet
address. When "options VIMAGE" is not compiled into the kernel, normal
global ELF symbols will be used instead and indirection is avoided.
This change restores static initialization for network stack global
variables, restores support for non-global symbols and types, eliminates
the need for many subsystem constructors, eliminates large per-subsystem
structures that caused many binary compatibility issues both for
monitoring applications (netstat) and kernel modules, removes the
per-function INIT_VNET_*() macros throughout the stack, eliminates the
need for vnet_symmap ksym(2) munging, and eliminates duplicate
definitions of virtualized globals under VIMAGE_GLOBALS.
Bump __FreeBSD_version and update UPDATING.
Portions submitted by: bz
Reviewed by: bz, zec
Discussed with: gnn, jamie, jeff, jhb, julian, sam
Suggested by: peter
Approved by: re (kensmith)
2009-07-14 22:48:30 +00:00
|
|
|
static VNET_DEFINE(int, pim6);
|
2009-07-16 21:13:04 +00:00
|
|
|
#define V_pim6 VNET(pim6)
|
2000-01-28 05:27:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Hash function for a source, group entry
|
|
|
|
*/
|
2000-07-04 16:35:15 +00:00
|
|
|
#define MF6CHASH(a, g) MF6CHASHMOD((a).s6_addr32[0] ^ (a).s6_addr32[1] ^ \
|
2000-01-28 05:27:14 +00:00
|
|
|
(a).s6_addr32[2] ^ (a).s6_addr32[3] ^ \
|
|
|
|
(g).s6_addr32[0] ^ (g).s6_addr32[1] ^ \
|
|
|
|
(g).s6_addr32[2] ^ (g).s6_addr32[3])
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Find a route for a given origin IPv6 address and Multicast group address.
|
|
|
|
*/
|
2000-07-04 16:35:15 +00:00
|
|
|
#define MF6CFIND(o, g, rt) do { \
|
2001-06-11 12:39:29 +00:00
|
|
|
struct mf6c *_rt = mf6ctable[MF6CHASH(o,g)]; \
|
2000-01-28 05:27:14 +00:00
|
|
|
rt = NULL; \
|
|
|
|
mrt6stat.mrt6s_mfc_lookups++; \
|
|
|
|
while (_rt) { \
|
|
|
|
if (IN6_ARE_ADDR_EQUAL(&_rt->mf6c_origin.sin6_addr, &(o)) && \
|
|
|
|
IN6_ARE_ADDR_EQUAL(&_rt->mf6c_mcastgrp.sin6_addr, &(g)) && \
|
|
|
|
(_rt->mf6c_stall == NULL)) { \
|
|
|
|
rt = _rt; \
|
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
_rt = _rt->mf6c_next; \
|
|
|
|
} \
|
|
|
|
if (rt == NULL) { \
|
|
|
|
mrt6stat.mrt6s_mfc_misses++; \
|
|
|
|
} \
|
2003-10-08 18:26:08 +00:00
|
|
|
} while (/*CONSTCOND*/ 0)
|
2000-01-28 05:27:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Macros to compute elapsed time efficiently
|
|
|
|
* Borrowed from Van Jacobson's scheduling code
|
2007-02-28 21:58:37 +00:00
|
|
|
* XXX: replace with timersub() ?
|
2000-01-28 05:27:14 +00:00
|
|
|
*/
|
2000-07-04 16:35:15 +00:00
|
|
|
#define TV_DELTA(a, b, delta) do { \
|
2001-06-11 12:39:29 +00:00
|
|
|
int xxs; \
|
2000-01-28 05:27:14 +00:00
|
|
|
\
|
|
|
|
delta = (a).tv_usec - (b).tv_usec; \
|
|
|
|
if ((xxs = (a).tv_sec - (b).tv_sec)) { \
|
|
|
|
switch (xxs) { \
|
|
|
|
case 2: \
|
|
|
|
delta += 1000000; \
|
2003-10-08 18:26:08 +00:00
|
|
|
/* FALLTHROUGH */ \
|
2000-01-28 05:27:14 +00:00
|
|
|
case 1: \
|
|
|
|
delta += 1000000; \
|
|
|
|
break; \
|
|
|
|
default: \
|
|
|
|
delta += (1000000 * xxs); \
|
|
|
|
} \
|
|
|
|
} \
|
2003-10-08 18:26:08 +00:00
|
|
|
} while (/*CONSTCOND*/ 0)
|
2000-01-28 05:27:14 +00:00
|
|
|
|
2007-02-28 21:58:37 +00:00
|
|
|
/* XXX: replace with timercmp(a, b, <) ? */
|
2000-07-04 16:35:15 +00:00
|
|
|
#define TV_LT(a, b) (((a).tv_usec < (b).tv_usec && \
|
2000-01-28 05:27:14 +00:00
|
|
|
(a).tv_sec <= (b).tv_sec) || (a).tv_sec < (b).tv_sec)
|
|
|
|
|
|
|
|
#ifdef UPCALL_TIMING
|
2000-07-04 16:35:15 +00:00
|
|
|
#define UPCALL_MAX 50
|
2007-02-28 20:29:20 +00:00
|
|
|
static u_long upcall_data[UPCALL_MAX + 1];
|
2000-01-28 05:27:14 +00:00
|
|
|
static void collate();
|
|
|
|
#endif /* UPCALL_TIMING */
|
|
|
|
|
2008-01-08 19:08:58 +00:00
|
|
|
static int ip6_mrouter_init(struct socket *, int, int);
|
|
|
|
static int add_m6fc(struct mf6cctl *);
|
2009-03-19 01:43:03 +00:00
|
|
|
static int add_m6if(struct mif6ctl *);
|
2008-01-08 19:08:58 +00:00
|
|
|
static int del_m6fc(struct mf6cctl *);
|
2009-03-19 01:43:03 +00:00
|
|
|
static int del_m6if(mifi_t *);
|
|
|
|
static int del_m6if_locked(mifi_t *);
|
|
|
|
static int get_mif6_cnt(struct sioc_mif_req6 *);
|
|
|
|
static int get_sg_cnt(struct sioc_sg_req6 *);
|
2000-01-28 05:27:14 +00:00
|
|
|
|
2001-06-11 12:39:29 +00:00
|
|
|
static struct callout expire_upcalls_ch;
|
|
|
|
|
2009-03-19 01:43:03 +00:00
|
|
|
int X_ip6_mforward(struct ip6_hdr *, struct ifnet *, struct mbuf *);
|
2007-02-24 11:38:47 +00:00
|
|
|
int X_ip6_mrouter_done(void);
|
2009-03-19 01:43:03 +00:00
|
|
|
int X_ip6_mrouter_set(struct socket *, struct sockopt *);
|
|
|
|
int X_ip6_mrouter_get(struct socket *, struct sockopt *);
|
2009-06-21 10:29:31 +00:00
|
|
|
int X_mrt6_ioctl(u_long, caddr_t);
|
2007-02-24 11:38:47 +00:00
|
|
|
|
2000-01-28 05:27:14 +00:00
|
|
|
/*
|
|
|
|
* Handle MRT setsockopt commands to modify the multicast routing tables.
|
|
|
|
*/
|
|
|
|
int
|
2007-02-24 11:38:47 +00:00
|
|
|
X_ip6_mrouter_set(struct socket *so, struct sockopt *sopt)
|
2000-01-28 05:27:14 +00:00
|
|
|
{
|
2003-12-10 18:17:05 +00:00
|
|
|
int error = 0;
|
|
|
|
int optval;
|
|
|
|
struct mif6ctl mifc;
|
|
|
|
struct mf6cctl mfcc;
|
|
|
|
mifi_t mifi;
|
2000-01-28 05:27:14 +00:00
|
|
|
|
Bite the bullet, and make the IPv6 SSM and MLDv2 mega-commit:
import from p4 bms_netdev. Summary of changes:
* Connect netinet6/in6_mcast.c to build.
The legacy KAME KPIs are mostly preserved.
* Eliminate now dead code from ip6_output.c.
Don't do mbuf bingo, we are not going to do RFC 2292 style
CMSG tricks for multicast options as they are not required
by any current IPv6 normative reference.
* Refactor transports (UDP, raw_ip6) to do own mcast filtering.
SCTP, TCP unaffected by this change.
* Add ip6_msource, in6_msource structs to in6_var.h.
* Hookup mld_ifinfo state to in6_ifextra, allocate from
domifattach path.
* Eliminate IN6_LOOKUP_MULTI(), it is no longer referenced.
Kernel consumers which need this should use in6m_lookup().
* Refactor IPv6 socket group memberships to use a vector (like IPv4).
* Update ifmcstat(8) for IPv6 SSM.
* Add witness lock order for IN6_MULTI_LOCK.
* Move IN6_MULTI_LOCK out of lower ip6_output()/ip6_input() paths.
* Introduce IP6STAT_ADD/SUB/INC/DEC as per rwatson's IPv4 cleanup.
* Update carp(4) for new IPv6 SSM KPIs.
* Virtualize ip6_mrouter socket.
Changes mostly localized to IPv6 MROUTING.
* Don't do a local group lookup in MROUTING.
* Kill unused KAME prototypes in6_purgemkludge(), in6_restoremkludge().
* Preserve KAME DAD timer jitter behaviour in MLDv1 compatibility mode.
* Bump __FreeBSD_version to 800084.
* Update UPDATING.
NOTE WELL:
* This code hasn't been tested against real MLDv2 queriers
(yet), although the on-wire protocol has been verified in Wireshark.
* There are a few unresolved issues in the socket layer APIs to
do with scope ID propagation.
* There is a LOR present in ip6_output()'s use of
in6_setscope() which needs to be resolved. See comments in mld6.c.
This is believed to be benign and can't be avoided for the moment
without re-introducing an indirect netisr.
This work was mostly derived from the IGMPv3 implementation, and
has been sponsored by a third party.
2009-04-29 19:19:13 +00:00
|
|
|
if (so != V_ip6_mrouter && sopt->sopt_name != MRT6_INIT)
|
2000-01-28 05:27:14 +00:00
|
|
|
return (EACCES);
|
|
|
|
|
|
|
|
switch (sopt->sopt_name) {
|
2001-06-11 12:39:29 +00:00
|
|
|
case MRT6_INIT:
|
2000-07-04 16:35:15 +00:00
|
|
|
#ifdef MRT6_OINIT
|
2001-06-11 12:39:29 +00:00
|
|
|
case MRT6_OINIT:
|
2000-07-04 16:35:15 +00:00
|
|
|
#endif
|
2003-12-10 18:17:05 +00:00
|
|
|
error = sooptcopyin(sopt, &optval, sizeof(optval),
|
|
|
|
sizeof(optval));
|
|
|
|
if (error)
|
|
|
|
break;
|
|
|
|
error = ip6_mrouter_init(so, optval, sopt->sopt_name);
|
2001-06-11 12:39:29 +00:00
|
|
|
break;
|
|
|
|
case MRT6_DONE:
|
2007-02-24 11:38:47 +00:00
|
|
|
error = X_ip6_mrouter_done();
|
2001-06-11 12:39:29 +00:00
|
|
|
break;
|
|
|
|
case MRT6_ADD_MIF:
|
2003-12-10 18:17:05 +00:00
|
|
|
error = sooptcopyin(sopt, &mifc, sizeof(mifc), sizeof(mifc));
|
|
|
|
if (error)
|
|
|
|
break;
|
|
|
|
error = add_m6if(&mifc);
|
2001-06-11 12:39:29 +00:00
|
|
|
break;
|
|
|
|
case MRT6_ADD_MFC:
|
2003-12-10 18:17:05 +00:00
|
|
|
error = sooptcopyin(sopt, &mfcc, sizeof(mfcc), sizeof(mfcc));
|
|
|
|
if (error)
|
|
|
|
break;
|
|
|
|
error = add_m6fc(&mfcc);
|
2001-06-11 12:39:29 +00:00
|
|
|
break;
|
|
|
|
case MRT6_DEL_MFC:
|
2003-12-10 18:17:05 +00:00
|
|
|
error = sooptcopyin(sopt, &mfcc, sizeof(mfcc), sizeof(mfcc));
|
|
|
|
if (error)
|
|
|
|
break;
|
|
|
|
error = del_m6fc(&mfcc);
|
|
|
|
break;
|
|
|
|
case MRT6_DEL_MIF:
|
|
|
|
error = sooptcopyin(sopt, &mifi, sizeof(mifi), sizeof(mifi));
|
|
|
|
if (error)
|
|
|
|
break;
|
|
|
|
error = del_m6if(&mifi);
|
2001-06-11 12:39:29 +00:00
|
|
|
break;
|
|
|
|
case MRT6_PIM:
|
2003-12-10 18:17:05 +00:00
|
|
|
error = sooptcopyin(sopt, &optval, sizeof(optval),
|
|
|
|
sizeof(optval));
|
|
|
|
if (error)
|
|
|
|
break;
|
|
|
|
error = set_pim6(&optval);
|
2001-06-11 12:39:29 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
error = EOPNOTSUPP;
|
|
|
|
break;
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
|
2003-10-06 14:02:09 +00:00
|
|
|
return (error);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Handle MRT getsockopt commands
|
|
|
|
*/
|
|
|
|
int
|
2007-02-24 11:38:47 +00:00
|
|
|
X_ip6_mrouter_get(struct socket *so, struct sockopt *sopt)
|
2000-01-28 05:27:14 +00:00
|
|
|
{
|
|
|
|
int error = 0;
|
|
|
|
|
Bite the bullet, and make the IPv6 SSM and MLDv2 mega-commit:
import from p4 bms_netdev. Summary of changes:
* Connect netinet6/in6_mcast.c to build.
The legacy KAME KPIs are mostly preserved.
* Eliminate now dead code from ip6_output.c.
Don't do mbuf bingo, we are not going to do RFC 2292 style
CMSG tricks for multicast options as they are not required
by any current IPv6 normative reference.
* Refactor transports (UDP, raw_ip6) to do own mcast filtering.
SCTP, TCP unaffected by this change.
* Add ip6_msource, in6_msource structs to in6_var.h.
* Hookup mld_ifinfo state to in6_ifextra, allocate from
domifattach path.
* Eliminate IN6_LOOKUP_MULTI(), it is no longer referenced.
Kernel consumers which need this should use in6m_lookup().
* Refactor IPv6 socket group memberships to use a vector (like IPv4).
* Update ifmcstat(8) for IPv6 SSM.
* Add witness lock order for IN6_MULTI_LOCK.
* Move IN6_MULTI_LOCK out of lower ip6_output()/ip6_input() paths.
* Introduce IP6STAT_ADD/SUB/INC/DEC as per rwatson's IPv4 cleanup.
* Update carp(4) for new IPv6 SSM KPIs.
* Virtualize ip6_mrouter socket.
Changes mostly localized to IPv6 MROUTING.
* Don't do a local group lookup in MROUTING.
* Kill unused KAME prototypes in6_purgemkludge(), in6_restoremkludge().
* Preserve KAME DAD timer jitter behaviour in MLDv1 compatibility mode.
* Bump __FreeBSD_version to 800084.
* Update UPDATING.
NOTE WELL:
* This code hasn't been tested against real MLDv2 queriers
(yet), although the on-wire protocol has been verified in Wireshark.
* There are a few unresolved issues in the socket layer APIs to
do with scope ID propagation.
* There is a LOR present in ip6_output()'s use of
in6_setscope() which needs to be resolved. See comments in mld6.c.
This is believed to be benign and can't be avoided for the moment
without re-introducing an indirect netisr.
This work was mostly derived from the IGMPv3 implementation, and
has been sponsored by a third party.
2009-04-29 19:19:13 +00:00
|
|
|
if (so != V_ip6_mrouter)
|
2003-10-06 14:02:09 +00:00
|
|
|
return (EACCES);
|
2000-01-28 05:27:14 +00:00
|
|
|
|
|
|
|
switch (sopt->sopt_name) {
|
|
|
|
case MRT6_PIM:
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
error = sooptcopyout(sopt, &V_pim6, sizeof(V_pim6));
|
2000-01-28 05:27:14 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Handle ioctl commands to obtain information from the cache
|
|
|
|
*/
|
|
|
|
int
|
2009-06-21 10:29:31 +00:00
|
|
|
X_mrt6_ioctl(u_long cmd, caddr_t data)
|
2000-01-28 05:27:14 +00:00
|
|
|
{
|
2009-03-19 01:43:03 +00:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = EINVAL;
|
|
|
|
|
2001-06-11 12:39:29 +00:00
|
|
|
switch (cmd) {
|
|
|
|
case SIOCGETSGCNT_IN6:
|
2009-03-19 01:43:03 +00:00
|
|
|
ret = get_sg_cnt((struct sioc_sg_req6 *)data);
|
|
|
|
break;
|
|
|
|
|
2001-06-11 12:39:29 +00:00
|
|
|
case SIOCGETMIFCNT_IN6:
|
2009-03-19 01:43:03 +00:00
|
|
|
ret = get_mif6_cnt((struct sioc_mif_req6 *)data);
|
|
|
|
break;
|
|
|
|
|
2001-06-11 12:39:29 +00:00
|
|
|
default:
|
2009-03-19 01:43:03 +00:00
|
|
|
break;
|
2001-06-11 12:39:29 +00:00
|
|
|
}
|
2009-03-19 01:43:03 +00:00
|
|
|
|
|
|
|
return (ret);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* returns the packet, byte, rpf-failure count for the source group provided
|
|
|
|
*/
|
|
|
|
static int
|
2007-07-05 16:23:49 +00:00
|
|
|
get_sg_cnt(struct sioc_sg_req6 *req)
|
2000-01-28 05:27:14 +00:00
|
|
|
{
|
2001-06-11 12:39:29 +00:00
|
|
|
struct mf6c *rt;
|
2009-03-19 01:43:03 +00:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
MFC6_LOCK();
|
2000-01-28 05:27:14 +00:00
|
|
|
|
|
|
|
MF6CFIND(req->src.sin6_addr, req->grp.sin6_addr, rt);
|
2009-03-19 01:43:03 +00:00
|
|
|
if (rt == NULL) {
|
|
|
|
ret = ESRCH;
|
|
|
|
} else {
|
2000-01-28 05:27:14 +00:00
|
|
|
req->pktcnt = rt->mf6c_pkt_cnt;
|
|
|
|
req->bytecnt = rt->mf6c_byte_cnt;
|
|
|
|
req->wrong_if = rt->mf6c_wrong_if;
|
2009-03-19 01:43:03 +00:00
|
|
|
}
|
2000-01-28 05:27:14 +00:00
|
|
|
|
2009-03-19 01:43:03 +00:00
|
|
|
MFC6_UNLOCK();
|
|
|
|
|
|
|
|
return (ret);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* returns the input and output packet and byte counts on the mif provided
|
|
|
|
*/
|
|
|
|
static int
|
2007-07-05 16:23:49 +00:00
|
|
|
get_mif6_cnt(struct sioc_mif_req6 *req)
|
2000-01-28 05:27:14 +00:00
|
|
|
{
|
2009-03-19 01:43:03 +00:00
|
|
|
mifi_t mifi;
|
|
|
|
int ret;
|
2000-01-28 05:27:14 +00:00
|
|
|
|
2009-03-19 01:43:03 +00:00
|
|
|
ret = 0;
|
|
|
|
mifi = req->mifi;
|
2000-01-28 05:27:14 +00:00
|
|
|
|
2009-03-19 01:43:03 +00:00
|
|
|
MIF6_LOCK();
|
2000-01-28 05:27:14 +00:00
|
|
|
|
2009-03-19 01:43:03 +00:00
|
|
|
if (mifi >= nummifs) {
|
|
|
|
ret = EINVAL;
|
|
|
|
} else {
|
|
|
|
req->icount = mif6table[mifi].m6_pkt_in;
|
|
|
|
req->ocount = mif6table[mifi].m6_pkt_out;
|
|
|
|
req->ibytes = mif6table[mifi].m6_bytes_in;
|
|
|
|
req->obytes = mif6table[mifi].m6_bytes_out;
|
|
|
|
}
|
|
|
|
|
|
|
|
MIF6_UNLOCK();
|
|
|
|
|
|
|
|
return (ret);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2007-07-05 16:23:49 +00:00
|
|
|
set_pim6(int *i)
|
2000-01-28 05:27:14 +00:00
|
|
|
{
|
|
|
|
if ((*i != 1) && (*i != 0))
|
2003-10-06 14:02:09 +00:00
|
|
|
return (EINVAL);
|
2000-01-28 05:27:14 +00:00
|
|
|
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
V_pim6 = *i;
|
2000-01-28 05:27:14 +00:00
|
|
|
|
2003-10-06 14:02:09 +00:00
|
|
|
return (0);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Enable multicast routing
|
|
|
|
*/
|
|
|
|
static int
|
2007-07-05 16:23:49 +00:00
|
|
|
ip6_mrouter_init(struct socket *so, int v, int cmd)
|
2000-01-28 05:27:14 +00:00
|
|
|
{
|
Step 1.5 of importing the network stack virtualization infrastructure
from the vimage project, as per plan established at devsummit 08/08:
http://wiki.freebsd.org/Image/Notes200808DevSummit
Introduce INIT_VNET_*() initializer macros, VNET_FOREACH() iterator
macros, and CURVNET_SET() context setting macros, all currently
resolving to NOPs.
Prepare for virtualization of selected SYSCTL objects by introducing a
family of SYSCTL_V_*() macros, currently resolving to their global
counterparts, i.e. SYSCTL_V_INT() == SYSCTL_INT().
Move selected #defines from sys/sys/vimage.h to newly introduced header
files specific to virtualized subsystems (sys/net/vnet.h,
sys/netinet/vinet.h etc.).
All the changes are verified to have zero functional impact at this
point in time by doing MD5 comparision between pre- and post-change
object files(*).
(*) netipsec/keysock.c did not validate depending on compile time options.
Implemented by: julian, bz, brooks, zec
Reviewed by: julian, bz, brooks, kris, rwatson, ...
Approved by: julian (mentor)
Obtained from: //depot/projects/vimage-commit2/...
X-MFC after: never
Sponsored by: NLnet Foundation, The FreeBSD Foundation
2008-10-02 15:37:58 +00:00
|
|
|
|
2000-01-28 05:27:14 +00:00
|
|
|
#ifdef MRT6DEBUG
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
if (V_mrt6debug)
|
2000-01-28 05:27:14 +00:00
|
|
|
log(LOG_DEBUG,
|
|
|
|
"ip6_mrouter_init: so_type = %d, pr_protocol = %d\n",
|
|
|
|
so->so_type, so->so_proto->pr_protocol);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (so->so_type != SOCK_RAW ||
|
|
|
|
so->so_proto->pr_protocol != IPPROTO_ICMPV6)
|
2003-10-06 14:02:09 +00:00
|
|
|
return (EOPNOTSUPP);
|
2000-01-28 05:27:14 +00:00
|
|
|
|
2003-12-10 18:17:05 +00:00
|
|
|
if (v != 1)
|
2003-10-06 14:02:09 +00:00
|
|
|
return (ENOPROTOOPT);
|
2000-01-28 05:27:14 +00:00
|
|
|
|
2009-03-19 01:43:03 +00:00
|
|
|
MROUTER6_LOCK();
|
|
|
|
|
Bite the bullet, and make the IPv6 SSM and MLDv2 mega-commit:
import from p4 bms_netdev. Summary of changes:
* Connect netinet6/in6_mcast.c to build.
The legacy KAME KPIs are mostly preserved.
* Eliminate now dead code from ip6_output.c.
Don't do mbuf bingo, we are not going to do RFC 2292 style
CMSG tricks for multicast options as they are not required
by any current IPv6 normative reference.
* Refactor transports (UDP, raw_ip6) to do own mcast filtering.
SCTP, TCP unaffected by this change.
* Add ip6_msource, in6_msource structs to in6_var.h.
* Hookup mld_ifinfo state to in6_ifextra, allocate from
domifattach path.
* Eliminate IN6_LOOKUP_MULTI(), it is no longer referenced.
Kernel consumers which need this should use in6m_lookup().
* Refactor IPv6 socket group memberships to use a vector (like IPv4).
* Update ifmcstat(8) for IPv6 SSM.
* Add witness lock order for IN6_MULTI_LOCK.
* Move IN6_MULTI_LOCK out of lower ip6_output()/ip6_input() paths.
* Introduce IP6STAT_ADD/SUB/INC/DEC as per rwatson's IPv4 cleanup.
* Update carp(4) for new IPv6 SSM KPIs.
* Virtualize ip6_mrouter socket.
Changes mostly localized to IPv6 MROUTING.
* Don't do a local group lookup in MROUTING.
* Kill unused KAME prototypes in6_purgemkludge(), in6_restoremkludge().
* Preserve KAME DAD timer jitter behaviour in MLDv1 compatibility mode.
* Bump __FreeBSD_version to 800084.
* Update UPDATING.
NOTE WELL:
* This code hasn't been tested against real MLDv2 queriers
(yet), although the on-wire protocol has been verified in Wireshark.
* There are a few unresolved issues in the socket layer APIs to
do with scope ID propagation.
* There is a LOR present in ip6_output()'s use of
in6_setscope() which needs to be resolved. See comments in mld6.c.
This is believed to be benign and can't be avoided for the moment
without re-introducing an indirect netisr.
This work was mostly derived from the IGMPv3 implementation, and
has been sponsored by a third party.
2009-04-29 19:19:13 +00:00
|
|
|
if (V_ip6_mrouter != NULL) {
|
2009-03-19 01:43:03 +00:00
|
|
|
MROUTER6_UNLOCK();
|
2003-10-08 18:26:08 +00:00
|
|
|
return (EADDRINUSE);
|
2009-03-19 01:43:03 +00:00
|
|
|
}
|
2000-01-28 05:27:14 +00:00
|
|
|
|
Bite the bullet, and make the IPv6 SSM and MLDv2 mega-commit:
import from p4 bms_netdev. Summary of changes:
* Connect netinet6/in6_mcast.c to build.
The legacy KAME KPIs are mostly preserved.
* Eliminate now dead code from ip6_output.c.
Don't do mbuf bingo, we are not going to do RFC 2292 style
CMSG tricks for multicast options as they are not required
by any current IPv6 normative reference.
* Refactor transports (UDP, raw_ip6) to do own mcast filtering.
SCTP, TCP unaffected by this change.
* Add ip6_msource, in6_msource structs to in6_var.h.
* Hookup mld_ifinfo state to in6_ifextra, allocate from
domifattach path.
* Eliminate IN6_LOOKUP_MULTI(), it is no longer referenced.
Kernel consumers which need this should use in6m_lookup().
* Refactor IPv6 socket group memberships to use a vector (like IPv4).
* Update ifmcstat(8) for IPv6 SSM.
* Add witness lock order for IN6_MULTI_LOCK.
* Move IN6_MULTI_LOCK out of lower ip6_output()/ip6_input() paths.
* Introduce IP6STAT_ADD/SUB/INC/DEC as per rwatson's IPv4 cleanup.
* Update carp(4) for new IPv6 SSM KPIs.
* Virtualize ip6_mrouter socket.
Changes mostly localized to IPv6 MROUTING.
* Don't do a local group lookup in MROUTING.
* Kill unused KAME prototypes in6_purgemkludge(), in6_restoremkludge().
* Preserve KAME DAD timer jitter behaviour in MLDv1 compatibility mode.
* Bump __FreeBSD_version to 800084.
* Update UPDATING.
NOTE WELL:
* This code hasn't been tested against real MLDv2 queriers
(yet), although the on-wire protocol has been verified in Wireshark.
* There are a few unresolved issues in the socket layer APIs to
do with scope ID propagation.
* There is a LOR present in ip6_output()'s use of
in6_setscope() which needs to be resolved. See comments in mld6.c.
This is believed to be benign and can't be avoided for the moment
without re-introducing an indirect netisr.
This work was mostly derived from the IGMPv3 implementation, and
has been sponsored by a third party.
2009-04-29 19:19:13 +00:00
|
|
|
V_ip6_mrouter = so;
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
V_ip6_mrouter_ver = cmd;
|
2000-01-28 05:27:14 +00:00
|
|
|
|
|
|
|
bzero((caddr_t)mf6ctable, sizeof(mf6ctable));
|
2002-04-19 04:46:24 +00:00
|
|
|
bzero((caddr_t)n6expire, sizeof(n6expire));
|
2000-01-28 05:27:14 +00:00
|
|
|
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
V_pim6 = 0;/* used for stubbing out/in pim stuff */
|
2000-01-28 05:27:14 +00:00
|
|
|
|
2005-08-10 05:28:11 +00:00
|
|
|
callout_init(&expire_upcalls_ch, 0);
|
2001-06-11 12:39:29 +00:00
|
|
|
callout_reset(&expire_upcalls_ch, EXPIRE_TIMEOUT,
|
|
|
|
expire_upcalls, NULL);
|
2000-01-28 05:27:14 +00:00
|
|
|
|
2009-03-19 01:43:03 +00:00
|
|
|
MROUTER6_UNLOCK();
|
|
|
|
|
2000-01-28 05:27:14 +00:00
|
|
|
#ifdef MRT6DEBUG
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
if (V_mrt6debug)
|
2000-01-28 05:27:14 +00:00
|
|
|
log(LOG_DEBUG, "ip6_mrouter_init\n");
|
|
|
|
#endif
|
|
|
|
|
2003-10-06 14:02:09 +00:00
|
|
|
return (0);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2009-03-19 01:43:03 +00:00
|
|
|
* Disable IPv6 multicast forwarding.
|
2000-01-28 05:27:14 +00:00
|
|
|
*/
|
|
|
|
int
|
2007-02-24 11:38:47 +00:00
|
|
|
X_ip6_mrouter_done(void)
|
2000-01-28 05:27:14 +00:00
|
|
|
{
|
|
|
|
mifi_t mifi;
|
|
|
|
int i;
|
|
|
|
struct mf6c *rt;
|
|
|
|
struct rtdetq *rte;
|
|
|
|
|
2009-03-19 01:43:03 +00:00
|
|
|
MROUTER6_LOCK();
|
|
|
|
|
Bite the bullet, and make the IPv6 SSM and MLDv2 mega-commit:
import from p4 bms_netdev. Summary of changes:
* Connect netinet6/in6_mcast.c to build.
The legacy KAME KPIs are mostly preserved.
* Eliminate now dead code from ip6_output.c.
Don't do mbuf bingo, we are not going to do RFC 2292 style
CMSG tricks for multicast options as they are not required
by any current IPv6 normative reference.
* Refactor transports (UDP, raw_ip6) to do own mcast filtering.
SCTP, TCP unaffected by this change.
* Add ip6_msource, in6_msource structs to in6_var.h.
* Hookup mld_ifinfo state to in6_ifextra, allocate from
domifattach path.
* Eliminate IN6_LOOKUP_MULTI(), it is no longer referenced.
Kernel consumers which need this should use in6m_lookup().
* Refactor IPv6 socket group memberships to use a vector (like IPv4).
* Update ifmcstat(8) for IPv6 SSM.
* Add witness lock order for IN6_MULTI_LOCK.
* Move IN6_MULTI_LOCK out of lower ip6_output()/ip6_input() paths.
* Introduce IP6STAT_ADD/SUB/INC/DEC as per rwatson's IPv4 cleanup.
* Update carp(4) for new IPv6 SSM KPIs.
* Virtualize ip6_mrouter socket.
Changes mostly localized to IPv6 MROUTING.
* Don't do a local group lookup in MROUTING.
* Kill unused KAME prototypes in6_purgemkludge(), in6_restoremkludge().
* Preserve KAME DAD timer jitter behaviour in MLDv1 compatibility mode.
* Bump __FreeBSD_version to 800084.
* Update UPDATING.
NOTE WELL:
* This code hasn't been tested against real MLDv2 queriers
(yet), although the on-wire protocol has been verified in Wireshark.
* There are a few unresolved issues in the socket layer APIs to
do with scope ID propagation.
* There is a LOR present in ip6_output()'s use of
in6_setscope() which needs to be resolved. See comments in mld6.c.
This is believed to be benign and can't be avoided for the moment
without re-introducing an indirect netisr.
This work was mostly derived from the IGMPv3 implementation, and
has been sponsored by a third party.
2009-04-29 19:19:13 +00:00
|
|
|
if (V_ip6_mrouter == NULL) {
|
2009-03-19 01:43:03 +00:00
|
|
|
MROUTER6_UNLOCK();
|
|
|
|
return (EINVAL);
|
|
|
|
}
|
2000-01-28 05:27:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* For each phyint in use, disable promiscuous reception of all IPv6
|
|
|
|
* multicasts.
|
|
|
|
*/
|
2009-03-19 01:43:03 +00:00
|
|
|
for (mifi = 0; mifi < nummifs; mifi++) {
|
|
|
|
if (mif6table[mifi].m6_ifp &&
|
|
|
|
!(mif6table[mifi].m6_flags & MIFF_REGISTER)) {
|
|
|
|
if_allmulti(mif6table[mifi].m6_ifp, 0);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
bzero((caddr_t)mif6table, sizeof(mif6table));
|
|
|
|
nummifs = 0;
|
|
|
|
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
V_pim6 = 0; /* used to stub out/in pim specific code */
|
2000-01-28 05:27:14 +00:00
|
|
|
|
2001-06-11 12:39:29 +00:00
|
|
|
callout_stop(&expire_upcalls_ch);
|
2000-01-28 05:27:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Free all multicast forwarding cache entries.
|
|
|
|
*/
|
2009-03-19 01:43:03 +00:00
|
|
|
MFC6_LOCK();
|
2000-01-28 05:27:14 +00:00
|
|
|
for (i = 0; i < MF6CTBLSIZ; i++) {
|
|
|
|
rt = mf6ctable[i];
|
|
|
|
while (rt) {
|
|
|
|
struct mf6c *frt;
|
|
|
|
|
|
|
|
for (rte = rt->mf6c_stall; rte != NULL; ) {
|
|
|
|
struct rtdetq *n = rte->next;
|
|
|
|
|
|
|
|
m_free(rte->m);
|
2005-09-07 10:11:49 +00:00
|
|
|
free(rte, M_MRTABLE6);
|
2000-01-28 05:27:14 +00:00
|
|
|
rte = n;
|
|
|
|
}
|
|
|
|
frt = rt;
|
|
|
|
rt = rt->mf6c_next;
|
2005-09-07 10:11:49 +00:00
|
|
|
free(frt, M_MRTABLE6);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
bzero((caddr_t)mf6ctable, sizeof(mf6ctable));
|
2009-03-19 01:43:03 +00:00
|
|
|
MFC6_UNLOCK();
|
2000-01-28 05:27:14 +00:00
|
|
|
|
|
|
|
/*
|
2005-10-17 13:47:31 +00:00
|
|
|
* Reset register interface
|
2000-01-28 05:27:14 +00:00
|
|
|
*/
|
2005-12-09 04:42:19 +00:00
|
|
|
if (reg_mif_num != (mifi_t)-1 && multicast_register_if6 != NULL) {
|
|
|
|
if_detach(multicast_register_if6);
|
|
|
|
if_free(multicast_register_if6);
|
2005-10-17 13:47:31 +00:00
|
|
|
reg_mif_num = (mifi_t)-1;
|
2005-12-09 04:42:19 +00:00
|
|
|
multicast_register_if6 = NULL;
|
2005-10-17 13:47:31 +00:00
|
|
|
}
|
2000-01-28 05:27:14 +00:00
|
|
|
|
Bite the bullet, and make the IPv6 SSM and MLDv2 mega-commit:
import from p4 bms_netdev. Summary of changes:
* Connect netinet6/in6_mcast.c to build.
The legacy KAME KPIs are mostly preserved.
* Eliminate now dead code from ip6_output.c.
Don't do mbuf bingo, we are not going to do RFC 2292 style
CMSG tricks for multicast options as they are not required
by any current IPv6 normative reference.
* Refactor transports (UDP, raw_ip6) to do own mcast filtering.
SCTP, TCP unaffected by this change.
* Add ip6_msource, in6_msource structs to in6_var.h.
* Hookup mld_ifinfo state to in6_ifextra, allocate from
domifattach path.
* Eliminate IN6_LOOKUP_MULTI(), it is no longer referenced.
Kernel consumers which need this should use in6m_lookup().
* Refactor IPv6 socket group memberships to use a vector (like IPv4).
* Update ifmcstat(8) for IPv6 SSM.
* Add witness lock order for IN6_MULTI_LOCK.
* Move IN6_MULTI_LOCK out of lower ip6_output()/ip6_input() paths.
* Introduce IP6STAT_ADD/SUB/INC/DEC as per rwatson's IPv4 cleanup.
* Update carp(4) for new IPv6 SSM KPIs.
* Virtualize ip6_mrouter socket.
Changes mostly localized to IPv6 MROUTING.
* Don't do a local group lookup in MROUTING.
* Kill unused KAME prototypes in6_purgemkludge(), in6_restoremkludge().
* Preserve KAME DAD timer jitter behaviour in MLDv1 compatibility mode.
* Bump __FreeBSD_version to 800084.
* Update UPDATING.
NOTE WELL:
* This code hasn't been tested against real MLDv2 queriers
(yet), although the on-wire protocol has been verified in Wireshark.
* There are a few unresolved issues in the socket layer APIs to
do with scope ID propagation.
* There is a LOR present in ip6_output()'s use of
in6_setscope() which needs to be resolved. See comments in mld6.c.
This is believed to be benign and can't be avoided for the moment
without re-introducing an indirect netisr.
This work was mostly derived from the IGMPv3 implementation, and
has been sponsored by a third party.
2009-04-29 19:19:13 +00:00
|
|
|
V_ip6_mrouter = NULL;
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
V_ip6_mrouter_ver = 0;
|
2000-01-28 05:27:14 +00:00
|
|
|
|
2009-03-19 01:43:03 +00:00
|
|
|
MROUTER6_UNLOCK();
|
2000-01-28 05:27:14 +00:00
|
|
|
|
|
|
|
#ifdef MRT6DEBUG
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
if (V_mrt6debug)
|
2000-01-28 05:27:14 +00:00
|
|
|
log(LOG_DEBUG, "ip6_mrouter_done\n");
|
|
|
|
#endif
|
|
|
|
|
2003-10-06 14:02:09 +00:00
|
|
|
return (0);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct sockaddr_in6 sin6 = { sizeof(sin6), AF_INET6 };
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Add a mif to the mif table
|
|
|
|
*/
|
|
|
|
static int
|
2007-07-05 16:23:49 +00:00
|
|
|
add_m6if(struct mif6ctl *mifcp)
|
2000-01-28 05:27:14 +00:00
|
|
|
{
|
2001-06-11 12:39:29 +00:00
|
|
|
struct mif6 *mifp;
|
2000-01-28 05:27:14 +00:00
|
|
|
struct ifnet *ifp;
|
2009-03-19 01:43:03 +00:00
|
|
|
int error;
|
2000-01-28 05:27:14 +00:00
|
|
|
|
2009-03-19 01:43:03 +00:00
|
|
|
MIF6_LOCK();
|
|
|
|
|
|
|
|
if (mifcp->mif6c_mifi >= MAXMIFS) {
|
|
|
|
MIF6_UNLOCK();
|
2003-10-06 14:02:09 +00:00
|
|
|
return (EINVAL);
|
2009-03-19 01:43:03 +00:00
|
|
|
}
|
2000-01-28 05:27:14 +00:00
|
|
|
mifp = mif6table + mifcp->mif6c_mifi;
|
2009-03-19 01:43:03 +00:00
|
|
|
if (mifp->m6_ifp != NULL) {
|
|
|
|
MIF6_UNLOCK();
|
2003-10-06 14:02:09 +00:00
|
|
|
return (EADDRINUSE); /* XXX: is it appropriate? */
|
2009-03-19 01:43:03 +00:00
|
|
|
}
|
|
|
|
if (mifcp->mif6c_pifi == 0 || mifcp->mif6c_pifi > V_if_index) {
|
|
|
|
MIF6_UNLOCK();
|
2003-10-06 14:02:09 +00:00
|
|
|
return (ENXIO);
|
2009-03-19 01:43:03 +00:00
|
|
|
}
|
|
|
|
|
2001-09-06 02:40:43 +00:00
|
|
|
ifp = ifnet_byindex(mifcp->mif6c_pifi);
|
2000-01-28 05:27:14 +00:00
|
|
|
|
|
|
|
if (mifcp->mif6c_flags & MIFF_REGISTER) {
|
|
|
|
if (reg_mif_num == (mifi_t)-1) {
|
2005-12-09 04:42:19 +00:00
|
|
|
ifp = if_alloc(IFT_OTHER);
|
|
|
|
|
2005-10-17 13:47:31 +00:00
|
|
|
if_initname(ifp, "register_mif", 0);
|
|
|
|
ifp->if_flags |= IFF_LOOPBACK;
|
|
|
|
if_attach(ifp);
|
2005-12-09 04:42:19 +00:00
|
|
|
multicast_register_if6 = ifp;
|
|
|
|
reg_mif_num = mifcp->mif6c_mifi;
|
2007-07-05 16:29:40 +00:00
|
|
|
/*
|
|
|
|
* it is impossible to guess the ifindex of the
|
2005-12-09 04:42:19 +00:00
|
|
|
* register interface. So mif6c_pifi is automatically
|
|
|
|
* calculated.
|
|
|
|
*/
|
|
|
|
mifcp->mif6c_pifi = ifp->if_index;
|
|
|
|
} else {
|
|
|
|
ifp = multicast_register_if6;
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
2009-03-19 01:43:03 +00:00
|
|
|
} else {
|
2000-01-28 05:27:14 +00:00
|
|
|
/* Make sure the interface supports multicast */
|
2009-03-19 01:43:03 +00:00
|
|
|
if ((ifp->if_flags & IFF_MULTICAST) == 0) {
|
|
|
|
MIF6_UNLOCK();
|
2003-10-06 14:02:09 +00:00
|
|
|
return (EOPNOTSUPP);
|
2009-03-19 01:43:03 +00:00
|
|
|
}
|
2000-01-28 05:27:14 +00:00
|
|
|
|
|
|
|
error = if_allmulti(ifp, 1);
|
2009-03-19 01:43:03 +00:00
|
|
|
if (error) {
|
|
|
|
MIF6_UNLOCK();
|
2003-10-06 14:02:09 +00:00
|
|
|
return (error);
|
2009-03-19 01:43:03 +00:00
|
|
|
}
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
mifp->m6_flags = mifcp->mif6c_flags;
|
|
|
|
mifp->m6_ifp = ifp;
|
2007-02-28 20:32:25 +00:00
|
|
|
|
2000-01-28 05:27:14 +00:00
|
|
|
/* initialize per mif pkt counters */
|
|
|
|
mifp->m6_pkt_in = 0;
|
|
|
|
mifp->m6_pkt_out = 0;
|
|
|
|
mifp->m6_bytes_in = 0;
|
|
|
|
mifp->m6_bytes_out = 0;
|
2009-03-19 01:43:03 +00:00
|
|
|
bzero(&mifp->m6_route, sizeof(mifp->m6_route));
|
2000-01-28 05:27:14 +00:00
|
|
|
|
|
|
|
/* Adjust nummifs up if the mifi is higher than nummifs */
|
|
|
|
if (nummifs <= mifcp->mif6c_mifi)
|
|
|
|
nummifs = mifcp->mif6c_mifi + 1;
|
|
|
|
|
2009-03-19 01:43:03 +00:00
|
|
|
MIF6_UNLOCK();
|
|
|
|
|
2000-01-28 05:27:14 +00:00
|
|
|
#ifdef MRT6DEBUG
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
if (V_mrt6debug)
|
2000-01-28 05:27:14 +00:00
|
|
|
log(LOG_DEBUG,
|
2003-10-31 18:32:15 +00:00
|
|
|
"add_mif #%d, phyint %s\n",
|
2000-01-28 05:27:14 +00:00
|
|
|
mifcp->mif6c_mifi,
|
2003-10-31 18:32:15 +00:00
|
|
|
ifp->if_xname);
|
2000-01-28 05:27:14 +00:00
|
|
|
#endif
|
|
|
|
|
2003-10-06 14:02:09 +00:00
|
|
|
return (0);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Delete a mif from the mif table
|
|
|
|
*/
|
|
|
|
static int
|
2009-03-19 01:43:03 +00:00
|
|
|
del_m6if_locked(mifi_t *mifip)
|
2000-01-28 05:27:14 +00:00
|
|
|
{
|
2001-06-11 12:39:29 +00:00
|
|
|
struct mif6 *mifp = mif6table + *mifip;
|
|
|
|
mifi_t mifi;
|
2000-01-28 05:27:14 +00:00
|
|
|
struct ifnet *ifp;
|
2009-03-19 01:43:03 +00:00
|
|
|
|
|
|
|
MIF6_LOCK_ASSERT();
|
2000-01-28 05:27:14 +00:00
|
|
|
|
|
|
|
if (*mifip >= nummifs)
|
2003-10-06 14:02:09 +00:00
|
|
|
return (EINVAL);
|
2000-01-28 05:27:14 +00:00
|
|
|
if (mifp->m6_ifp == NULL)
|
2003-10-06 14:02:09 +00:00
|
|
|
return (EINVAL);
|
2000-01-28 05:27:14 +00:00
|
|
|
|
|
|
|
if (!(mifp->m6_flags & MIFF_REGISTER)) {
|
2009-03-19 01:43:03 +00:00
|
|
|
/* XXX: TODO: Maintain an ALLMULTI refcount in struct ifnet. */
|
2000-01-28 05:27:14 +00:00
|
|
|
ifp = mifp->m6_ifp;
|
|
|
|
if_allmulti(ifp, 0);
|
2005-10-17 13:47:31 +00:00
|
|
|
} else {
|
2005-12-09 04:42:19 +00:00
|
|
|
if (reg_mif_num != (mifi_t)-1 &&
|
|
|
|
multicast_register_if6 != NULL) {
|
|
|
|
if_detach(multicast_register_if6);
|
|
|
|
if_free(multicast_register_if6);
|
2005-10-17 13:47:31 +00:00
|
|
|
reg_mif_num = (mifi_t)-1;
|
2005-12-09 04:42:19 +00:00
|
|
|
multicast_register_if6 = NULL;
|
2005-10-17 13:47:31 +00:00
|
|
|
}
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
|
2003-12-10 18:17:05 +00:00
|
|
|
bzero((caddr_t)mifp, sizeof(*mifp));
|
2000-01-28 05:27:14 +00:00
|
|
|
|
|
|
|
/* Adjust nummifs down */
|
|
|
|
for (mifi = nummifs; mifi > 0; mifi--)
|
|
|
|
if (mif6table[mifi - 1].m6_ifp)
|
|
|
|
break;
|
|
|
|
nummifs = mifi;
|
|
|
|
|
|
|
|
#ifdef MRT6DEBUG
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
if (V_mrt6debug)
|
2000-01-28 05:27:14 +00:00
|
|
|
log(LOG_DEBUG, "del_m6if %d, nummifs %d\n", *mifip, nummifs);
|
|
|
|
#endif
|
|
|
|
|
2003-10-06 14:02:09 +00:00
|
|
|
return (0);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
|
2009-03-19 01:43:03 +00:00
|
|
|
static int
|
|
|
|
del_m6if(mifi_t *mifip)
|
|
|
|
{
|
|
|
|
int cc;
|
|
|
|
|
|
|
|
MIF6_LOCK();
|
|
|
|
cc = del_m6if_locked(mifip);
|
|
|
|
MIF6_UNLOCK();
|
|
|
|
|
|
|
|
return (cc);
|
|
|
|
}
|
|
|
|
|
2000-01-28 05:27:14 +00:00
|
|
|
/*
|
|
|
|
* Add an mfc entry
|
|
|
|
*/
|
|
|
|
static int
|
2007-07-05 16:23:49 +00:00
|
|
|
add_m6fc(struct mf6cctl *mfccp)
|
2000-01-28 05:27:14 +00:00
|
|
|
{
|
|
|
|
struct mf6c *rt;
|
|
|
|
u_long hash;
|
|
|
|
struct rtdetq *rte;
|
2001-06-11 12:39:29 +00:00
|
|
|
u_short nstl;
|
2006-12-12 12:17:58 +00:00
|
|
|
char ip6bufo[INET6_ADDRSTRLEN], ip6bufg[INET6_ADDRSTRLEN];
|
2000-01-28 05:27:14 +00:00
|
|
|
|
2009-03-19 01:43:03 +00:00
|
|
|
MFC6_LOCK();
|
|
|
|
|
2000-01-28 05:27:14 +00:00
|
|
|
MF6CFIND(mfccp->mf6cc_origin.sin6_addr,
|
|
|
|
mfccp->mf6cc_mcastgrp.sin6_addr, rt);
|
|
|
|
|
|
|
|
/* If an entry already exists, just update the fields */
|
|
|
|
if (rt) {
|
|
|
|
#ifdef MRT6DEBUG
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
if (V_mrt6debug & DEBUG_MFC) {
|
2006-12-12 12:17:58 +00:00
|
|
|
log(LOG_DEBUG,
|
|
|
|
"add_m6fc no upcall h %d o %s g %s p %x\n",
|
|
|
|
ip6_sprintf(ip6bufo, &mfccp->mf6cc_origin.sin6_addr),
|
|
|
|
ip6_sprintf(ip6bufg, &mfccp->mf6cc_mcastgrp.sin6_addr),
|
|
|
|
mfccp->mf6cc_parent);
|
|
|
|
}
|
2000-01-28 05:27:14 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
rt->mf6c_parent = mfccp->mf6cc_parent;
|
|
|
|
rt->mf6c_ifset = mfccp->mf6cc_ifset;
|
2009-03-19 01:43:03 +00:00
|
|
|
|
|
|
|
MFC6_UNLOCK();
|
2003-10-06 14:02:09 +00:00
|
|
|
return (0);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Find the entry for which the upcall was made and update
|
|
|
|
*/
|
|
|
|
hash = MF6CHASH(mfccp->mf6cc_origin.sin6_addr,
|
|
|
|
mfccp->mf6cc_mcastgrp.sin6_addr);
|
|
|
|
for (rt = mf6ctable[hash], nstl = 0; rt; rt = rt->mf6c_next) {
|
|
|
|
if (IN6_ARE_ADDR_EQUAL(&rt->mf6c_origin.sin6_addr,
|
|
|
|
&mfccp->mf6cc_origin.sin6_addr) &&
|
|
|
|
IN6_ARE_ADDR_EQUAL(&rt->mf6c_mcastgrp.sin6_addr,
|
|
|
|
&mfccp->mf6cc_mcastgrp.sin6_addr) &&
|
|
|
|
(rt->mf6c_stall != NULL)) {
|
|
|
|
|
|
|
|
if (nstl++)
|
|
|
|
log(LOG_ERR,
|
|
|
|
"add_m6fc: %s o %s g %s p %x dbx %p\n",
|
|
|
|
"multiple kernel entries",
|
2006-12-12 12:17:58 +00:00
|
|
|
ip6_sprintf(ip6bufo,
|
|
|
|
&mfccp->mf6cc_origin.sin6_addr),
|
|
|
|
ip6_sprintf(ip6bufg,
|
|
|
|
&mfccp->mf6cc_mcastgrp.sin6_addr),
|
2000-01-28 05:27:14 +00:00
|
|
|
mfccp->mf6cc_parent, rt->mf6c_stall);
|
|
|
|
|
|
|
|
#ifdef MRT6DEBUG
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
if (V_mrt6debug & DEBUG_MFC)
|
2000-01-28 05:27:14 +00:00
|
|
|
log(LOG_DEBUG,
|
|
|
|
"add_m6fc o %s g %s p %x dbg %x\n",
|
2006-12-12 12:17:58 +00:00
|
|
|
ip6_sprintf(ip6bufo,
|
|
|
|
&mfccp->mf6cc_origin.sin6_addr),
|
|
|
|
ip6_sprintf(ip6bufg,
|
|
|
|
&mfccp->mf6cc_mcastgrp.sin6_addr),
|
2000-01-28 05:27:14 +00:00
|
|
|
mfccp->mf6cc_parent, rt->mf6c_stall);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
rt->mf6c_origin = mfccp->mf6cc_origin;
|
|
|
|
rt->mf6c_mcastgrp = mfccp->mf6cc_mcastgrp;
|
|
|
|
rt->mf6c_parent = mfccp->mf6cc_parent;
|
|
|
|
rt->mf6c_ifset = mfccp->mf6cc_ifset;
|
|
|
|
/* initialize pkt counters per src-grp */
|
|
|
|
rt->mf6c_pkt_cnt = 0;
|
|
|
|
rt->mf6c_byte_cnt = 0;
|
|
|
|
rt->mf6c_wrong_if = 0;
|
|
|
|
|
|
|
|
rt->mf6c_expire = 0; /* Don't clean this guy up */
|
2002-04-19 04:46:24 +00:00
|
|
|
n6expire[hash]--;
|
2000-01-28 05:27:14 +00:00
|
|
|
|
|
|
|
/* free packets Qed at the end of this entry */
|
|
|
|
for (rte = rt->mf6c_stall; rte != NULL; ) {
|
|
|
|
struct rtdetq *n = rte->next;
|
|
|
|
ip6_mdq(rte->m, rte->ifp, rt);
|
|
|
|
m_freem(rte->m);
|
|
|
|
#ifdef UPCALL_TIMING
|
|
|
|
collate(&(rte->t));
|
|
|
|
#endif /* UPCALL_TIMING */
|
2005-09-07 10:11:49 +00:00
|
|
|
free(rte, M_MRTABLE6);
|
2000-01-28 05:27:14 +00:00
|
|
|
rte = n;
|
|
|
|
}
|
|
|
|
rt->mf6c_stall = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* It is possible that an entry is being inserted without an upcall
|
|
|
|
*/
|
|
|
|
if (nstl == 0) {
|
|
|
|
#ifdef MRT6DEBUG
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
if (V_mrt6debug & DEBUG_MFC)
|
2006-12-12 12:17:58 +00:00
|
|
|
log(LOG_DEBUG,
|
|
|
|
"add_mfc no upcall h %d o %s g %s p %x\n",
|
|
|
|
hash,
|
|
|
|
ip6_sprintf(ip6bufo, &mfccp->mf6cc_origin.sin6_addr),
|
|
|
|
ip6_sprintf(ip6bufg, &mfccp->mf6cc_mcastgrp.sin6_addr),
|
|
|
|
mfccp->mf6cc_parent);
|
2000-01-28 05:27:14 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
for (rt = mf6ctable[hash]; rt; rt = rt->mf6c_next) {
|
2003-10-08 18:26:08 +00:00
|
|
|
|
2000-01-28 05:27:14 +00:00
|
|
|
if (IN6_ARE_ADDR_EQUAL(&rt->mf6c_origin.sin6_addr,
|
|
|
|
&mfccp->mf6cc_origin.sin6_addr)&&
|
|
|
|
IN6_ARE_ADDR_EQUAL(&rt->mf6c_mcastgrp.sin6_addr,
|
|
|
|
&mfccp->mf6cc_mcastgrp.sin6_addr)) {
|
|
|
|
|
|
|
|
rt->mf6c_origin = mfccp->mf6cc_origin;
|
|
|
|
rt->mf6c_mcastgrp = mfccp->mf6cc_mcastgrp;
|
|
|
|
rt->mf6c_parent = mfccp->mf6cc_parent;
|
2000-10-23 07:07:33 +00:00
|
|
|
rt->mf6c_ifset = mfccp->mf6cc_ifset;
|
2000-01-28 05:27:14 +00:00
|
|
|
/* initialize pkt counters per src-grp */
|
|
|
|
rt->mf6c_pkt_cnt = 0;
|
|
|
|
rt->mf6c_byte_cnt = 0;
|
|
|
|
rt->mf6c_wrong_if = 0;
|
|
|
|
|
|
|
|
if (rt->mf6c_expire)
|
2002-04-19 04:46:24 +00:00
|
|
|
n6expire[hash]--;
|
2000-01-28 05:27:14 +00:00
|
|
|
rt->mf6c_expire = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (rt == NULL) {
|
|
|
|
/* no upcall, so make a new entry */
|
2005-09-07 10:11:49 +00:00
|
|
|
rt = (struct mf6c *)malloc(sizeof(*rt), M_MRTABLE6,
|
2000-01-28 05:27:14 +00:00
|
|
|
M_NOWAIT);
|
|
|
|
if (rt == NULL) {
|
2009-03-19 01:43:03 +00:00
|
|
|
MFC6_UNLOCK();
|
2003-10-06 14:02:09 +00:00
|
|
|
return (ENOBUFS);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
2003-10-08 18:26:08 +00:00
|
|
|
|
2000-01-28 05:27:14 +00:00
|
|
|
/* insert new entry at head of hash chain */
|
|
|
|
rt->mf6c_origin = mfccp->mf6cc_origin;
|
|
|
|
rt->mf6c_mcastgrp = mfccp->mf6cc_mcastgrp;
|
|
|
|
rt->mf6c_parent = mfccp->mf6cc_parent;
|
2000-10-23 07:07:33 +00:00
|
|
|
rt->mf6c_ifset = mfccp->mf6cc_ifset;
|
2000-01-28 05:27:14 +00:00
|
|
|
/* initialize pkt counters per src-grp */
|
|
|
|
rt->mf6c_pkt_cnt = 0;
|
|
|
|
rt->mf6c_byte_cnt = 0;
|
|
|
|
rt->mf6c_wrong_if = 0;
|
|
|
|
rt->mf6c_expire = 0;
|
|
|
|
rt->mf6c_stall = NULL;
|
2003-10-08 18:26:08 +00:00
|
|
|
|
2000-01-28 05:27:14 +00:00
|
|
|
/* link into table */
|
|
|
|
rt->mf6c_next = mf6ctable[hash];
|
|
|
|
mf6ctable[hash] = rt;
|
|
|
|
}
|
|
|
|
}
|
2009-03-19 01:43:03 +00:00
|
|
|
|
|
|
|
MFC6_UNLOCK();
|
2003-10-06 14:02:09 +00:00
|
|
|
return (0);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef UPCALL_TIMING
|
|
|
|
/*
|
|
|
|
* collect delay statistics on the upcalls
|
|
|
|
*/
|
|
|
|
static void
|
2007-07-05 16:23:49 +00:00
|
|
|
collate(struct timeval *t)
|
2000-01-28 05:27:14 +00:00
|
|
|
{
|
2001-06-11 12:39:29 +00:00
|
|
|
u_long d;
|
|
|
|
struct timeval tp;
|
|
|
|
u_long delta;
|
2000-01-28 05:27:14 +00:00
|
|
|
|
|
|
|
GET_TIME(tp);
|
|
|
|
|
|
|
|
if (TV_LT(*t, tp))
|
|
|
|
{
|
|
|
|
TV_DELTA(tp, *t, delta);
|
2003-10-08 18:26:08 +00:00
|
|
|
|
2000-01-28 05:27:14 +00:00
|
|
|
d = delta >> 10;
|
|
|
|
if (d > UPCALL_MAX)
|
|
|
|
d = UPCALL_MAX;
|
2003-10-08 18:26:08 +00:00
|
|
|
|
2000-01-28 05:27:14 +00:00
|
|
|
++upcall_data[d];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* UPCALL_TIMING */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Delete an mfc entry
|
|
|
|
*/
|
|
|
|
static int
|
2007-07-05 16:23:49 +00:00
|
|
|
del_m6fc(struct mf6cctl *mfccp)
|
2000-01-28 05:27:14 +00:00
|
|
|
{
|
2007-07-05 16:29:40 +00:00
|
|
|
struct sockaddr_in6 origin;
|
|
|
|
struct sockaddr_in6 mcastgrp;
|
|
|
|
struct mf6c *rt;
|
|
|
|
struct mf6c **nptr;
|
|
|
|
u_long hash;
|
2000-01-28 05:27:14 +00:00
|
|
|
|
|
|
|
origin = mfccp->mf6cc_origin;
|
|
|
|
mcastgrp = mfccp->mf6cc_mcastgrp;
|
|
|
|
hash = MF6CHASH(origin.sin6_addr, mcastgrp.sin6_addr);
|
|
|
|
|
|
|
|
#ifdef MRT6DEBUG
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
if (V_mrt6debug & DEBUG_MFC) {
|
2006-12-12 12:17:58 +00:00
|
|
|
char ip6bufo[INET6_ADDRSTRLEN], ip6bufg[INET6_ADDRSTRLEN];
|
2000-01-28 05:27:14 +00:00
|
|
|
log(LOG_DEBUG,"del_m6fc orig %s mcastgrp %s\n",
|
2006-12-12 12:17:58 +00:00
|
|
|
ip6_sprintf(ip6bufo, &origin.sin6_addr),
|
|
|
|
ip6_sprintf(ip6bufg, &mcastgrp.sin6_addr));
|
|
|
|
}
|
2000-01-28 05:27:14 +00:00
|
|
|
#endif
|
|
|
|
|
2009-03-19 01:43:03 +00:00
|
|
|
MFC6_LOCK();
|
2000-01-28 05:27:14 +00:00
|
|
|
|
|
|
|
nptr = &mf6ctable[hash];
|
|
|
|
while ((rt = *nptr) != NULL) {
|
|
|
|
if (IN6_ARE_ADDR_EQUAL(&origin.sin6_addr,
|
|
|
|
&rt->mf6c_origin.sin6_addr) &&
|
|
|
|
IN6_ARE_ADDR_EQUAL(&mcastgrp.sin6_addr,
|
|
|
|
&rt->mf6c_mcastgrp.sin6_addr) &&
|
|
|
|
rt->mf6c_stall == NULL)
|
|
|
|
break;
|
|
|
|
|
|
|
|
nptr = &rt->mf6c_next;
|
|
|
|
}
|
|
|
|
if (rt == NULL) {
|
2009-03-19 01:43:03 +00:00
|
|
|
MFC6_UNLOCK();
|
2003-10-06 14:02:09 +00:00
|
|
|
return (EADDRNOTAVAIL);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
*nptr = rt->mf6c_next;
|
2005-09-07 10:11:49 +00:00
|
|
|
free(rt, M_MRTABLE6);
|
2000-01-28 05:27:14 +00:00
|
|
|
|
2009-03-19 01:43:03 +00:00
|
|
|
MFC6_UNLOCK();
|
2000-01-28 05:27:14 +00:00
|
|
|
|
2003-10-06 14:02:09 +00:00
|
|
|
return (0);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2007-07-05 16:23:49 +00:00
|
|
|
socket_send(struct socket *s, struct mbuf *mm, struct sockaddr_in6 *src)
|
2000-01-28 05:27:14 +00:00
|
|
|
{
|
2007-07-05 16:23:49 +00:00
|
|
|
|
2000-01-28 05:27:14 +00:00
|
|
|
if (s) {
|
|
|
|
if (sbappendaddr(&s->so_rcv,
|
|
|
|
(struct sockaddr *)src,
|
|
|
|
mm, (struct mbuf *)0) != 0) {
|
|
|
|
sorwakeup(s);
|
2003-10-06 14:02:09 +00:00
|
|
|
return (0);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
m_freem(mm);
|
2003-10-06 14:02:09 +00:00
|
|
|
return (-1);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* IPv6 multicast forwarding function. This function assumes that the packet
|
|
|
|
* pointed to by "ip6" has arrived on (or is about to be sent to) the interface
|
|
|
|
* pointed to by "ifp", and the packet is to be relayed to other networks
|
|
|
|
* that have members of the packet's destination IPv6 multicast group.
|
|
|
|
*
|
|
|
|
* The packet is returned unscathed to the caller, unless it is
|
|
|
|
* erroneous, in which case a non-zero return value tells the caller to
|
|
|
|
* discard it.
|
2006-01-09 09:08:43 +00:00
|
|
|
*
|
|
|
|
* NOTE: this implementation assumes that m->m_pkthdr.rcvif is NULL iff
|
|
|
|
* this function is called in the originating context (i.e., not when
|
|
|
|
* forwarding a packet from other node). ip6_output(), which is currently the
|
|
|
|
* only function that calls this function is called in the originating context,
|
|
|
|
* explicitly ensures this condition. It is caller's responsibility to ensure
|
|
|
|
* that if this function is called from somewhere else in the originating
|
|
|
|
* context in the future.
|
2000-01-28 05:27:14 +00:00
|
|
|
*/
|
|
|
|
int
|
2007-02-24 11:38:47 +00:00
|
|
|
X_ip6_mforward(struct ip6_hdr *ip6, struct ifnet *ifp, struct mbuf *m)
|
2000-01-28 05:27:14 +00:00
|
|
|
{
|
2001-06-11 12:39:29 +00:00
|
|
|
struct mf6c *rt;
|
|
|
|
struct mif6 *mifp;
|
|
|
|
struct mbuf *mm;
|
2000-01-28 05:27:14 +00:00
|
|
|
mifi_t mifi;
|
2006-12-12 12:17:58 +00:00
|
|
|
char ip6bufs[INET6_ADDRSTRLEN], ip6bufd[INET6_ADDRSTRLEN];
|
2000-01-28 05:27:14 +00:00
|
|
|
|
|
|
|
#ifdef MRT6DEBUG
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
if (V_mrt6debug & DEBUG_FORWARD)
|
2000-01-28 05:27:14 +00:00
|
|
|
log(LOG_DEBUG, "ip6_mforward: src %s, dst %s, ifindex %d\n",
|
2006-12-12 12:17:58 +00:00
|
|
|
ip6_sprintf(ip6bufs, &ip6->ip6_src),
|
|
|
|
ip6_sprintf(ip6bufd, &ip6->ip6_dst),
|
2000-01-28 05:27:14 +00:00
|
|
|
ifp->if_index);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Don't forward a packet with Hop limit of zero or one,
|
|
|
|
* or a packet destined to a local-only group.
|
|
|
|
*/
|
2003-10-21 20:05:32 +00:00
|
|
|
if (ip6->ip6_hlim <= 1 || IN6_IS_ADDR_MC_INTFACELOCAL(&ip6->ip6_dst) ||
|
2000-01-28 05:27:14 +00:00
|
|
|
IN6_IS_ADDR_MC_LINKLOCAL(&ip6->ip6_dst))
|
2003-10-06 14:02:09 +00:00
|
|
|
return (0);
|
2000-01-28 05:27:14 +00:00
|
|
|
ip6->ip6_hlim--;
|
|
|
|
|
|
|
|
/*
|
2000-10-23 07:07:33 +00:00
|
|
|
* Source address check: do not forward packets with unspecified
|
|
|
|
* source. It was discussed in July 2000, on ipngwg mailing list.
|
|
|
|
* This is rather more serious than unicast cases, because some
|
|
|
|
* MLD packets can be sent with the unspecified source address
|
|
|
|
* (although such packets must normally set 1 to the hop limit field).
|
|
|
|
*/
|
|
|
|
if (IN6_IS_ADDR_UNSPECIFIED(&ip6->ip6_src)) {
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
V_ip6stat.ip6s_cantforward++;
|
|
|
|
if (V_ip6_log_time + V_ip6_log_interval < time_second) {
|
|
|
|
V_ip6_log_time = time_second;
|
2000-10-23 07:07:33 +00:00
|
|
|
log(LOG_DEBUG,
|
|
|
|
"cannot forward "
|
|
|
|
"from %s to %s nxt %d received on %s\n",
|
2006-12-12 12:17:58 +00:00
|
|
|
ip6_sprintf(ip6bufs, &ip6->ip6_src),
|
|
|
|
ip6_sprintf(ip6bufd, &ip6->ip6_dst),
|
2000-10-23 07:07:33 +00:00
|
|
|
ip6->ip6_nxt,
|
|
|
|
if_name(m->m_pkthdr.rcvif));
|
|
|
|
}
|
2003-10-06 14:02:09 +00:00
|
|
|
return (0);
|
2000-10-23 07:07:33 +00:00
|
|
|
}
|
|
|
|
|
2009-03-19 01:43:03 +00:00
|
|
|
MFC6_LOCK();
|
|
|
|
|
2000-10-23 07:07:33 +00:00
|
|
|
/*
|
2000-01-28 05:27:14 +00:00
|
|
|
* Determine forwarding mifs from the forwarding cache table
|
|
|
|
*/
|
|
|
|
MF6CFIND(ip6->ip6_src, ip6->ip6_dst, rt);
|
|
|
|
|
|
|
|
/* Entry exists, so forward if necessary */
|
|
|
|
if (rt) {
|
2009-03-19 01:43:03 +00:00
|
|
|
MFC6_UNLOCK();
|
2000-01-28 05:27:14 +00:00
|
|
|
return (ip6_mdq(m, ifp, rt));
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* If we don't have a route for packet's origin,
|
|
|
|
* Make a copy of the packet &
|
|
|
|
* send message to routing daemon
|
|
|
|
*/
|
|
|
|
|
2001-06-11 12:39:29 +00:00
|
|
|
struct mbuf *mb0;
|
|
|
|
struct rtdetq *rte;
|
|
|
|
u_long hash;
|
|
|
|
/* int i, npkts;*/
|
2000-01-28 05:27:14 +00:00
|
|
|
#ifdef UPCALL_TIMING
|
|
|
|
struct timeval tp;
|
|
|
|
|
|
|
|
GET_TIME(tp);
|
|
|
|
#endif /* UPCALL_TIMING */
|
|
|
|
|
|
|
|
mrt6stat.mrt6s_no_route++;
|
|
|
|
#ifdef MRT6DEBUG
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
if (V_mrt6debug & (DEBUG_FORWARD | DEBUG_MFC))
|
2000-01-28 05:27:14 +00:00
|
|
|
log(LOG_DEBUG, "ip6_mforward: no rte s %s g %s\n",
|
2006-12-12 12:17:58 +00:00
|
|
|
ip6_sprintf(ip6bufs, &ip6->ip6_src),
|
|
|
|
ip6_sprintf(ip6bufd, &ip6->ip6_dst));
|
2000-01-28 05:27:14 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate mbufs early so that we don't do extra work if we
|
|
|
|
* are just going to fail anyway.
|
|
|
|
*/
|
2005-09-07 10:11:49 +00:00
|
|
|
rte = (struct rtdetq *)malloc(sizeof(*rte), M_MRTABLE6,
|
2000-01-28 05:27:14 +00:00
|
|
|
M_NOWAIT);
|
|
|
|
if (rte == NULL) {
|
2009-03-19 01:43:03 +00:00
|
|
|
MFC6_UNLOCK();
|
2003-10-06 14:02:09 +00:00
|
|
|
return (ENOBUFS);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
mb0 = m_copy(m, 0, M_COPYALL);
|
|
|
|
/*
|
|
|
|
* Pullup packet header if needed before storing it,
|
|
|
|
* as other references may modify it in the meantime.
|
|
|
|
*/
|
|
|
|
if (mb0 &&
|
|
|
|
(M_HASCL(mb0) || mb0->m_len < sizeof(struct ip6_hdr)))
|
|
|
|
mb0 = m_pullup(mb0, sizeof(struct ip6_hdr));
|
|
|
|
if (mb0 == NULL) {
|
2005-09-07 10:11:49 +00:00
|
|
|
free(rte, M_MRTABLE6);
|
2009-03-19 01:43:03 +00:00
|
|
|
MFC6_UNLOCK();
|
2003-10-06 14:02:09 +00:00
|
|
|
return (ENOBUFS);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
2003-10-08 18:26:08 +00:00
|
|
|
|
2000-01-28 05:27:14 +00:00
|
|
|
/* is there an upcall waiting for this packet? */
|
|
|
|
hash = MF6CHASH(ip6->ip6_src, ip6->ip6_dst);
|
|
|
|
for (rt = mf6ctable[hash]; rt; rt = rt->mf6c_next) {
|
|
|
|
if (IN6_ARE_ADDR_EQUAL(&ip6->ip6_src,
|
|
|
|
&rt->mf6c_origin.sin6_addr) &&
|
|
|
|
IN6_ARE_ADDR_EQUAL(&ip6->ip6_dst,
|
|
|
|
&rt->mf6c_mcastgrp.sin6_addr) &&
|
|
|
|
(rt->mf6c_stall != NULL))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rt == NULL) {
|
|
|
|
struct mrt6msg *im;
|
2000-07-04 16:35:15 +00:00
|
|
|
#ifdef MRT6_OINIT
|
|
|
|
struct omrt6msg *oim;
|
|
|
|
#endif
|
2000-01-28 05:27:14 +00:00
|
|
|
|
|
|
|
/* no upcall, so make a new entry */
|
2005-09-07 10:11:49 +00:00
|
|
|
rt = (struct mf6c *)malloc(sizeof(*rt), M_MRTABLE6,
|
2000-01-28 05:27:14 +00:00
|
|
|
M_NOWAIT);
|
|
|
|
if (rt == NULL) {
|
2005-09-07 10:11:49 +00:00
|
|
|
free(rte, M_MRTABLE6);
|
2000-01-28 05:27:14 +00:00
|
|
|
m_freem(mb0);
|
2009-03-19 01:43:03 +00:00
|
|
|
MFC6_UNLOCK();
|
2003-10-06 14:02:09 +00:00
|
|
|
return (ENOBUFS);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Make a copy of the header to send to the user
|
|
|
|
* level process
|
|
|
|
*/
|
|
|
|
mm = m_copy(mb0, 0, sizeof(struct ip6_hdr));
|
|
|
|
|
|
|
|
if (mm == NULL) {
|
2005-09-07 10:11:49 +00:00
|
|
|
free(rte, M_MRTABLE6);
|
2000-01-28 05:27:14 +00:00
|
|
|
m_freem(mb0);
|
2005-09-07 10:11:49 +00:00
|
|
|
free(rt, M_MRTABLE6);
|
2009-03-19 01:43:03 +00:00
|
|
|
MFC6_UNLOCK();
|
2003-10-06 14:02:09 +00:00
|
|
|
return (ENOBUFS);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Send message to routing daemon
|
|
|
|
*/
|
|
|
|
sin6.sin6_addr = ip6->ip6_src;
|
2003-10-08 18:26:08 +00:00
|
|
|
|
2000-07-04 16:35:15 +00:00
|
|
|
im = NULL;
|
|
|
|
#ifdef MRT6_OINIT
|
|
|
|
oim = NULL;
|
|
|
|
#endif
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
switch (V_ip6_mrouter_ver) {
|
2000-07-04 16:35:15 +00:00
|
|
|
#ifdef MRT6_OINIT
|
|
|
|
case MRT6_OINIT:
|
|
|
|
oim = mtod(mm, struct omrt6msg *);
|
|
|
|
oim->im6_msgtype = MRT6MSG_NOCACHE;
|
|
|
|
oim->im6_mbz = 0;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
case MRT6_INIT:
|
|
|
|
im = mtod(mm, struct mrt6msg *);
|
|
|
|
im->im6_msgtype = MRT6MSG_NOCACHE;
|
|
|
|
im->im6_mbz = 0;
|
|
|
|
break;
|
|
|
|
default:
|
2005-09-07 10:11:49 +00:00
|
|
|
free(rte, M_MRTABLE6);
|
2000-07-04 16:35:15 +00:00
|
|
|
m_freem(mb0);
|
2005-09-07 10:11:49 +00:00
|
|
|
free(rt, M_MRTABLE6);
|
2009-03-19 01:43:03 +00:00
|
|
|
MFC6_UNLOCK();
|
2003-10-06 14:02:09 +00:00
|
|
|
return (EINVAL);
|
2000-07-04 16:35:15 +00:00
|
|
|
}
|
2000-01-28 05:27:14 +00:00
|
|
|
|
|
|
|
#ifdef MRT6DEBUG
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
if (V_mrt6debug & DEBUG_FORWARD)
|
2000-01-28 05:27:14 +00:00
|
|
|
log(LOG_DEBUG,
|
|
|
|
"getting the iif info in the kernel\n");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
for (mifp = mif6table, mifi = 0;
|
|
|
|
mifi < nummifs && mifp->m6_ifp != ifp;
|
|
|
|
mifp++, mifi++)
|
|
|
|
;
|
|
|
|
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
switch (V_ip6_mrouter_ver) {
|
2000-07-04 16:35:15 +00:00
|
|
|
#ifdef MRT6_OINIT
|
|
|
|
case MRT6_OINIT:
|
|
|
|
oim->im6_mif = mifi;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
case MRT6_INIT:
|
|
|
|
im->im6_mif = mifi;
|
|
|
|
break;
|
|
|
|
}
|
2000-01-28 05:27:14 +00:00
|
|
|
|
Bite the bullet, and make the IPv6 SSM and MLDv2 mega-commit:
import from p4 bms_netdev. Summary of changes:
* Connect netinet6/in6_mcast.c to build.
The legacy KAME KPIs are mostly preserved.
* Eliminate now dead code from ip6_output.c.
Don't do mbuf bingo, we are not going to do RFC 2292 style
CMSG tricks for multicast options as they are not required
by any current IPv6 normative reference.
* Refactor transports (UDP, raw_ip6) to do own mcast filtering.
SCTP, TCP unaffected by this change.
* Add ip6_msource, in6_msource structs to in6_var.h.
* Hookup mld_ifinfo state to in6_ifextra, allocate from
domifattach path.
* Eliminate IN6_LOOKUP_MULTI(), it is no longer referenced.
Kernel consumers which need this should use in6m_lookup().
* Refactor IPv6 socket group memberships to use a vector (like IPv4).
* Update ifmcstat(8) for IPv6 SSM.
* Add witness lock order for IN6_MULTI_LOCK.
* Move IN6_MULTI_LOCK out of lower ip6_output()/ip6_input() paths.
* Introduce IP6STAT_ADD/SUB/INC/DEC as per rwatson's IPv4 cleanup.
* Update carp(4) for new IPv6 SSM KPIs.
* Virtualize ip6_mrouter socket.
Changes mostly localized to IPv6 MROUTING.
* Don't do a local group lookup in MROUTING.
* Kill unused KAME prototypes in6_purgemkludge(), in6_restoremkludge().
* Preserve KAME DAD timer jitter behaviour in MLDv1 compatibility mode.
* Bump __FreeBSD_version to 800084.
* Update UPDATING.
NOTE WELL:
* This code hasn't been tested against real MLDv2 queriers
(yet), although the on-wire protocol has been verified in Wireshark.
* There are a few unresolved issues in the socket layer APIs to
do with scope ID propagation.
* There is a LOR present in ip6_output()'s use of
in6_setscope() which needs to be resolved. See comments in mld6.c.
This is believed to be benign and can't be avoided for the moment
without re-introducing an indirect netisr.
This work was mostly derived from the IGMPv3 implementation, and
has been sponsored by a third party.
2009-04-29 19:19:13 +00:00
|
|
|
if (socket_send(V_ip6_mrouter, mm, &sin6) < 0) {
|
2000-01-28 05:27:14 +00:00
|
|
|
log(LOG_WARNING, "ip6_mforward: ip6_mrouter "
|
|
|
|
"socket queue full\n");
|
|
|
|
mrt6stat.mrt6s_upq_sockfull++;
|
2005-09-07 10:11:49 +00:00
|
|
|
free(rte, M_MRTABLE6);
|
2000-01-28 05:27:14 +00:00
|
|
|
m_freem(mb0);
|
2005-09-07 10:11:49 +00:00
|
|
|
free(rt, M_MRTABLE6);
|
2009-03-19 01:43:03 +00:00
|
|
|
MFC6_UNLOCK();
|
2003-10-06 14:02:09 +00:00
|
|
|
return (ENOBUFS);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
mrt6stat.mrt6s_upcalls++;
|
|
|
|
|
|
|
|
/* insert new entry at head of hash chain */
|
|
|
|
bzero(rt, sizeof(*rt));
|
|
|
|
rt->mf6c_origin.sin6_family = AF_INET6;
|
|
|
|
rt->mf6c_origin.sin6_len = sizeof(struct sockaddr_in6);
|
|
|
|
rt->mf6c_origin.sin6_addr = ip6->ip6_src;
|
|
|
|
rt->mf6c_mcastgrp.sin6_family = AF_INET6;
|
|
|
|
rt->mf6c_mcastgrp.sin6_len = sizeof(struct sockaddr_in6);
|
|
|
|
rt->mf6c_mcastgrp.sin6_addr = ip6->ip6_dst;
|
|
|
|
rt->mf6c_expire = UPCALL_EXPIRE;
|
2002-04-19 04:46:24 +00:00
|
|
|
n6expire[hash]++;
|
2000-01-28 05:27:14 +00:00
|
|
|
rt->mf6c_parent = MF6C_INCOMPLETE_PARENT;
|
|
|
|
|
|
|
|
/* link into table */
|
|
|
|
rt->mf6c_next = mf6ctable[hash];
|
|
|
|
mf6ctable[hash] = rt;
|
|
|
|
/* Add this entry to the end of the queue */
|
|
|
|
rt->mf6c_stall = rte;
|
|
|
|
} else {
|
|
|
|
/* determine if q has overflowed */
|
|
|
|
struct rtdetq **p;
|
2001-06-11 12:39:29 +00:00
|
|
|
int npkts = 0;
|
2000-01-28 05:27:14 +00:00
|
|
|
|
|
|
|
for (p = &rt->mf6c_stall; *p != NULL; p = &(*p)->next)
|
|
|
|
if (++npkts > MAX_UPQ6) {
|
|
|
|
mrt6stat.mrt6s_upq_ovflw++;
|
2005-09-07 10:11:49 +00:00
|
|
|
free(rte, M_MRTABLE6);
|
2000-01-28 05:27:14 +00:00
|
|
|
m_freem(mb0);
|
2009-03-19 01:43:03 +00:00
|
|
|
MFC6_UNLOCK();
|
2003-10-06 14:02:09 +00:00
|
|
|
return (0);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Add this entry to the end of the queue */
|
|
|
|
*p = rte;
|
|
|
|
}
|
|
|
|
|
|
|
|
rte->next = NULL;
|
|
|
|
rte->m = mb0;
|
|
|
|
rte->ifp = ifp;
|
|
|
|
#ifdef UPCALL_TIMING
|
|
|
|
rte->t = tp;
|
|
|
|
#endif /* UPCALL_TIMING */
|
|
|
|
|
2009-03-19 01:43:03 +00:00
|
|
|
MFC6_UNLOCK();
|
2000-01-28 05:27:14 +00:00
|
|
|
|
2003-10-06 14:02:09 +00:00
|
|
|
return (0);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Clean up cache entries if upcalls are not serviced
|
|
|
|
* Call from the Slow Timeout mechanism, every half second.
|
|
|
|
*/
|
|
|
|
static void
|
2007-07-05 16:23:49 +00:00
|
|
|
expire_upcalls(void *unused)
|
2000-01-28 05:27:14 +00:00
|
|
|
{
|
|
|
|
struct rtdetq *rte;
|
|
|
|
struct mf6c *mfc, **nptr;
|
|
|
|
int i;
|
|
|
|
|
2009-03-19 01:43:03 +00:00
|
|
|
MFC6_LOCK();
|
2000-01-28 05:27:14 +00:00
|
|
|
for (i = 0; i < MF6CTBLSIZ; i++) {
|
2002-04-19 04:46:24 +00:00
|
|
|
if (n6expire[i] == 0)
|
2000-01-28 05:27:14 +00:00
|
|
|
continue;
|
|
|
|
nptr = &mf6ctable[i];
|
|
|
|
while ((mfc = *nptr) != NULL) {
|
|
|
|
rte = mfc->mf6c_stall;
|
|
|
|
/*
|
|
|
|
* Skip real cache entries
|
|
|
|
* Make sure it wasn't marked to not expire (shouldn't happen)
|
|
|
|
* If it expires now
|
|
|
|
*/
|
|
|
|
if (rte != NULL &&
|
|
|
|
mfc->mf6c_expire != 0 &&
|
|
|
|
--mfc->mf6c_expire == 0) {
|
|
|
|
#ifdef MRT6DEBUG
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
if (V_mrt6debug & DEBUG_EXPIRE) {
|
2006-12-12 12:17:58 +00:00
|
|
|
char ip6bufo[INET6_ADDRSTRLEN];
|
|
|
|
char ip6bufg[INET6_ADDRSTRLEN];
|
2000-01-28 05:27:14 +00:00
|
|
|
log(LOG_DEBUG, "expire_upcalls: expiring (%s %s)\n",
|
2006-12-12 12:17:58 +00:00
|
|
|
ip6_sprintf(ip6bufo, &mfc->mf6c_origin.sin6_addr),
|
|
|
|
ip6_sprintf(ip6bufg, &mfc->mf6c_mcastgrp.sin6_addr));
|
|
|
|
}
|
2000-01-28 05:27:14 +00:00
|
|
|
#endif
|
|
|
|
/*
|
|
|
|
* drop all the packets
|
|
|
|
* free the mbuf with the pkt, if, timing info
|
|
|
|
*/
|
|
|
|
do {
|
|
|
|
struct rtdetq *n = rte->next;
|
|
|
|
m_freem(rte->m);
|
2005-09-07 10:11:49 +00:00
|
|
|
free(rte, M_MRTABLE6);
|
2000-01-28 05:27:14 +00:00
|
|
|
rte = n;
|
|
|
|
} while (rte != NULL);
|
|
|
|
mrt6stat.mrt6s_cache_cleanups++;
|
2002-04-19 04:46:24 +00:00
|
|
|
n6expire[i]--;
|
2000-01-28 05:27:14 +00:00
|
|
|
|
|
|
|
*nptr = mfc->mf6c_next;
|
2005-09-07 10:11:49 +00:00
|
|
|
free(mfc, M_MRTABLE6);
|
2000-01-28 05:27:14 +00:00
|
|
|
} else {
|
|
|
|
nptr = &mfc->mf6c_next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-03-19 01:43:03 +00:00
|
|
|
MFC6_UNLOCK();
|
2001-06-11 12:39:29 +00:00
|
|
|
callout_reset(&expire_upcalls_ch, EXPIRE_TIMEOUT,
|
|
|
|
expire_upcalls, NULL);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Packet forwarding routine once entry in the cache is made
|
|
|
|
*/
|
|
|
|
static int
|
2007-07-05 16:23:49 +00:00
|
|
|
ip6_mdq(struct mbuf *m, struct ifnet *ifp, struct mf6c *rt)
|
2000-01-28 05:27:14 +00:00
|
|
|
{
|
2001-06-11 12:39:29 +00:00
|
|
|
struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *);
|
|
|
|
mifi_t mifi, iif;
|
|
|
|
struct mif6 *mifp;
|
|
|
|
int plen = m->m_pkthdr.len;
|
2005-07-25 12:31:43 +00:00
|
|
|
struct in6_addr src0, dst0; /* copies for local work */
|
|
|
|
u_int32_t iszone, idzone, oszone, odzone;
|
|
|
|
int error = 0;
|
2000-01-28 05:27:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Macro to send packet on mif. Since RSVP packets don't get counted on
|
|
|
|
* input, they shouldn't get counted on output, so statistics keeping is
|
2001-02-06 11:21:58 +00:00
|
|
|
* separate.
|
2000-01-28 05:27:14 +00:00
|
|
|
*/
|
|
|
|
|
2000-07-04 16:35:15 +00:00
|
|
|
#define MC6_SEND(ip6, mifp, m) do { \
|
2003-10-08 18:26:08 +00:00
|
|
|
if ((mifp)->m6_flags & MIFF_REGISTER) \
|
|
|
|
register_send((ip6), (mifp), (m)); \
|
|
|
|
else \
|
|
|
|
phyint_send((ip6), (mifp), (m)); \
|
|
|
|
} while (/*CONSTCOND*/ 0)
|
2000-01-28 05:27:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Don't forward if it didn't arrive from the parent mif
|
|
|
|
* for its origin.
|
|
|
|
*/
|
|
|
|
mifi = rt->mf6c_parent;
|
|
|
|
if ((mifi >= nummifs) || (mif6table[mifi].m6_ifp != ifp)) {
|
|
|
|
/* came in the wrong interface */
|
|
|
|
#ifdef MRT6DEBUG
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
if (V_mrt6debug & DEBUG_FORWARD)
|
2000-01-28 05:27:14 +00:00
|
|
|
log(LOG_DEBUG,
|
|
|
|
"wrong if: ifid %d mifi %d mififid %x\n",
|
|
|
|
ifp->if_index, mifi,
|
|
|
|
mif6table[mifi].m6_ifp->if_index);
|
|
|
|
#endif
|
|
|
|
mrt6stat.mrt6s_wrong_if++;
|
|
|
|
rt->mf6c_wrong_if++;
|
|
|
|
/*
|
|
|
|
* If we are doing PIM processing, and we are forwarding
|
|
|
|
* packets on this interface, send a message to the
|
|
|
|
* routing daemon.
|
|
|
|
*/
|
2000-07-04 16:35:15 +00:00
|
|
|
/* have to make sure this is a valid mif */
|
|
|
|
if (mifi < nummifs && mif6table[mifi].m6_ifp)
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
if (V_pim6 && (m->m_flags & M_LOOP) == 0) {
|
2000-07-04 16:35:15 +00:00
|
|
|
/*
|
|
|
|
* Check the M_LOOP flag to avoid an
|
|
|
|
* unnecessary PIM assert.
|
|
|
|
* XXX: M_LOOP is an ad-hoc hack...
|
|
|
|
*/
|
|
|
|
static struct sockaddr_in6 sin6 =
|
|
|
|
{ sizeof(sin6), AF_INET6 };
|
2000-01-28 05:27:14 +00:00
|
|
|
|
2001-06-11 12:39:29 +00:00
|
|
|
struct mbuf *mm;
|
2000-07-04 16:35:15 +00:00
|
|
|
struct mrt6msg *im;
|
|
|
|
#ifdef MRT6_OINIT
|
|
|
|
struct omrt6msg *oim;
|
|
|
|
#endif
|
2000-01-28 05:27:14 +00:00
|
|
|
|
2000-07-04 16:35:15 +00:00
|
|
|
mm = m_copy(m, 0, sizeof(struct ip6_hdr));
|
|
|
|
if (mm &&
|
|
|
|
(M_HASCL(mm) ||
|
|
|
|
mm->m_len < sizeof(struct ip6_hdr)))
|
|
|
|
mm = m_pullup(mm, sizeof(struct ip6_hdr));
|
|
|
|
if (mm == NULL)
|
2003-10-06 14:02:09 +00:00
|
|
|
return (ENOBUFS);
|
2003-10-08 18:26:08 +00:00
|
|
|
|
2000-07-04 16:35:15 +00:00
|
|
|
#ifdef MRT6_OINIT
|
|
|
|
oim = NULL;
|
|
|
|
#endif
|
|
|
|
im = NULL;
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
switch (V_ip6_mrouter_ver) {
|
2000-07-04 16:35:15 +00:00
|
|
|
#ifdef MRT6_OINIT
|
|
|
|
case MRT6_OINIT:
|
|
|
|
oim = mtod(mm, struct omrt6msg *);
|
|
|
|
oim->im6_msgtype = MRT6MSG_WRONGMIF;
|
|
|
|
oim->im6_mbz = 0;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
case MRT6_INIT:
|
|
|
|
im = mtod(mm, struct mrt6msg *);
|
|
|
|
im->im6_msgtype = MRT6MSG_WRONGMIF;
|
2001-06-11 12:39:29 +00:00
|
|
|
im->im6_mbz = 0;
|
2000-07-04 16:35:15 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
m_freem(mm);
|
2003-10-06 14:02:09 +00:00
|
|
|
return (EINVAL);
|
2000-07-04 16:35:15 +00:00
|
|
|
}
|
2000-01-28 05:27:14 +00:00
|
|
|
|
2000-07-04 16:35:15 +00:00
|
|
|
for (mifp = mif6table, iif = 0;
|
|
|
|
iif < nummifs && mifp &&
|
|
|
|
mifp->m6_ifp != ifp;
|
|
|
|
mifp++, iif++)
|
|
|
|
;
|
|
|
|
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
switch (V_ip6_mrouter_ver) {
|
2000-07-04 16:35:15 +00:00
|
|
|
#ifdef MRT6_OINIT
|
|
|
|
case MRT6_OINIT:
|
|
|
|
oim->im6_mif = iif;
|
|
|
|
sin6.sin6_addr = oim->im6_src;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
case MRT6_INIT:
|
|
|
|
im->im6_mif = iif;
|
2000-01-28 05:27:14 +00:00
|
|
|
sin6.sin6_addr = im->im6_src;
|
2000-07-04 16:35:15 +00:00
|
|
|
break;
|
|
|
|
}
|
2000-01-28 05:27:14 +00:00
|
|
|
|
2000-07-04 16:35:15 +00:00
|
|
|
mrt6stat.mrt6s_upcalls++;
|
2000-01-28 05:27:14 +00:00
|
|
|
|
Bite the bullet, and make the IPv6 SSM and MLDv2 mega-commit:
import from p4 bms_netdev. Summary of changes:
* Connect netinet6/in6_mcast.c to build.
The legacy KAME KPIs are mostly preserved.
* Eliminate now dead code from ip6_output.c.
Don't do mbuf bingo, we are not going to do RFC 2292 style
CMSG tricks for multicast options as they are not required
by any current IPv6 normative reference.
* Refactor transports (UDP, raw_ip6) to do own mcast filtering.
SCTP, TCP unaffected by this change.
* Add ip6_msource, in6_msource structs to in6_var.h.
* Hookup mld_ifinfo state to in6_ifextra, allocate from
domifattach path.
* Eliminate IN6_LOOKUP_MULTI(), it is no longer referenced.
Kernel consumers which need this should use in6m_lookup().
* Refactor IPv6 socket group memberships to use a vector (like IPv4).
* Update ifmcstat(8) for IPv6 SSM.
* Add witness lock order for IN6_MULTI_LOCK.
* Move IN6_MULTI_LOCK out of lower ip6_output()/ip6_input() paths.
* Introduce IP6STAT_ADD/SUB/INC/DEC as per rwatson's IPv4 cleanup.
* Update carp(4) for new IPv6 SSM KPIs.
* Virtualize ip6_mrouter socket.
Changes mostly localized to IPv6 MROUTING.
* Don't do a local group lookup in MROUTING.
* Kill unused KAME prototypes in6_purgemkludge(), in6_restoremkludge().
* Preserve KAME DAD timer jitter behaviour in MLDv1 compatibility mode.
* Bump __FreeBSD_version to 800084.
* Update UPDATING.
NOTE WELL:
* This code hasn't been tested against real MLDv2 queriers
(yet), although the on-wire protocol has been verified in Wireshark.
* There are a few unresolved issues in the socket layer APIs to
do with scope ID propagation.
* There is a LOR present in ip6_output()'s use of
in6_setscope() which needs to be resolved. See comments in mld6.c.
This is believed to be benign and can't be avoided for the moment
without re-introducing an indirect netisr.
This work was mostly derived from the IGMPv3 implementation, and
has been sponsored by a third party.
2009-04-29 19:19:13 +00:00
|
|
|
if (socket_send(V_ip6_mrouter, mm, &sin6) < 0) {
|
2000-01-28 05:27:14 +00:00
|
|
|
#ifdef MRT6DEBUG
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
if (V_mrt6debug)
|
2000-07-04 16:35:15 +00:00
|
|
|
log(LOG_WARNING, "mdq, ip6_mrouter socket queue full\n");
|
2000-01-28 05:27:14 +00:00
|
|
|
#endif
|
2000-07-04 16:35:15 +00:00
|
|
|
++mrt6stat.mrt6s_upq_sockfull;
|
2003-10-06 14:02:09 +00:00
|
|
|
return (ENOBUFS);
|
2000-07-04 16:35:15 +00:00
|
|
|
} /* if socket Q full */
|
|
|
|
} /* if PIM */
|
2003-10-06 14:02:09 +00:00
|
|
|
return (0);
|
2000-01-28 05:27:14 +00:00
|
|
|
} /* if wrong iif */
|
|
|
|
|
|
|
|
/* If I sourced this packet, it counts as output, else it was input. */
|
|
|
|
if (m->m_pkthdr.rcvif == NULL) {
|
|
|
|
/* XXX: is rcvif really NULL when output?? */
|
|
|
|
mif6table[mifi].m6_pkt_out++;
|
|
|
|
mif6table[mifi].m6_bytes_out += plen;
|
|
|
|
} else {
|
|
|
|
mif6table[mifi].m6_pkt_in++;
|
|
|
|
mif6table[mifi].m6_bytes_in += plen;
|
|
|
|
}
|
|
|
|
rt->mf6c_pkt_cnt++;
|
|
|
|
rt->mf6c_byte_cnt += plen;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* For each mif, forward a copy of the packet if there are group
|
|
|
|
* members downstream on the interface.
|
|
|
|
*/
|
2005-07-25 12:31:43 +00:00
|
|
|
src0 = ip6->ip6_src;
|
|
|
|
dst0 = ip6->ip6_dst;
|
|
|
|
if ((error = in6_setscope(&src0, ifp, &iszone)) != 0 ||
|
|
|
|
(error = in6_setscope(&dst0, ifp, &idzone)) != 0) {
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
V_ip6stat.ip6s_badscope++;
|
2005-07-25 12:31:43 +00:00
|
|
|
return (error);
|
|
|
|
}
|
2003-10-08 18:26:08 +00:00
|
|
|
for (mifp = mif6table, mifi = 0; mifi < nummifs; mifp++, mifi++) {
|
2000-01-28 05:27:14 +00:00
|
|
|
if (IF_ISSET(mifi, &rt->mf6c_ifset)) {
|
2000-07-04 16:35:15 +00:00
|
|
|
/*
|
|
|
|
* check if the outgoing packet is going to break
|
|
|
|
* a scope boundary.
|
|
|
|
* XXX For packets through PIM register tunnel
|
|
|
|
* interface, we believe a routing daemon.
|
|
|
|
*/
|
2003-10-21 20:05:32 +00:00
|
|
|
if (!(mif6table[rt->mf6c_parent].m6_flags &
|
|
|
|
MIFF_REGISTER) &&
|
|
|
|
!(mif6table[mifi].m6_flags & MIFF_REGISTER)) {
|
2005-07-25 12:31:43 +00:00
|
|
|
if (in6_setscope(&src0, mif6table[mifi].m6_ifp,
|
|
|
|
&oszone) ||
|
|
|
|
in6_setscope(&dst0, mif6table[mifi].m6_ifp,
|
|
|
|
&odzone) ||
|
|
|
|
iszone != oszone ||
|
|
|
|
idzone != odzone) {
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
V_ip6stat.ip6s_badscope++;
|
2003-10-21 20:05:32 +00:00
|
|
|
continue;
|
|
|
|
}
|
2000-07-04 16:35:15 +00:00
|
|
|
}
|
|
|
|
|
2000-01-28 05:27:14 +00:00
|
|
|
mifp->m6_pkt_out++;
|
|
|
|
mifp->m6_bytes_out += plen;
|
|
|
|
MC6_SEND(ip6, mifp, m);
|
|
|
|
}
|
2003-10-08 18:26:08 +00:00
|
|
|
}
|
2003-10-06 14:02:09 +00:00
|
|
|
return (0);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-07-05 16:23:49 +00:00
|
|
|
phyint_send(struct ip6_hdr *ip6, struct mif6 *mifp, struct mbuf *m)
|
2000-01-28 05:27:14 +00:00
|
|
|
{
|
2001-06-11 12:39:29 +00:00
|
|
|
struct mbuf *mb_copy;
|
2000-01-28 05:27:14 +00:00
|
|
|
struct ifnet *ifp = mifp->m6_ifp;
|
|
|
|
int error = 0;
|
2001-06-11 12:39:29 +00:00
|
|
|
struct sockaddr_in6 *dst6;
|
2003-10-20 15:27:48 +00:00
|
|
|
u_long linkmtu;
|
2000-01-28 05:27:14 +00:00
|
|
|
|
Bite the bullet, and make the IPv6 SSM and MLDv2 mega-commit:
import from p4 bms_netdev. Summary of changes:
* Connect netinet6/in6_mcast.c to build.
The legacy KAME KPIs are mostly preserved.
* Eliminate now dead code from ip6_output.c.
Don't do mbuf bingo, we are not going to do RFC 2292 style
CMSG tricks for multicast options as they are not required
by any current IPv6 normative reference.
* Refactor transports (UDP, raw_ip6) to do own mcast filtering.
SCTP, TCP unaffected by this change.
* Add ip6_msource, in6_msource structs to in6_var.h.
* Hookup mld_ifinfo state to in6_ifextra, allocate from
domifattach path.
* Eliminate IN6_LOOKUP_MULTI(), it is no longer referenced.
Kernel consumers which need this should use in6m_lookup().
* Refactor IPv6 socket group memberships to use a vector (like IPv4).
* Update ifmcstat(8) for IPv6 SSM.
* Add witness lock order for IN6_MULTI_LOCK.
* Move IN6_MULTI_LOCK out of lower ip6_output()/ip6_input() paths.
* Introduce IP6STAT_ADD/SUB/INC/DEC as per rwatson's IPv4 cleanup.
* Update carp(4) for new IPv6 SSM KPIs.
* Virtualize ip6_mrouter socket.
Changes mostly localized to IPv6 MROUTING.
* Don't do a local group lookup in MROUTING.
* Kill unused KAME prototypes in6_purgemkludge(), in6_restoremkludge().
* Preserve KAME DAD timer jitter behaviour in MLDv1 compatibility mode.
* Bump __FreeBSD_version to 800084.
* Update UPDATING.
NOTE WELL:
* This code hasn't been tested against real MLDv2 queriers
(yet), although the on-wire protocol has been verified in Wireshark.
* There are a few unresolved issues in the socket layer APIs to
do with scope ID propagation.
* There is a LOR present in ip6_output()'s use of
in6_setscope() which needs to be resolved. See comments in mld6.c.
This is believed to be benign and can't be avoided for the moment
without re-introducing an indirect netisr.
This work was mostly derived from the IGMPv3 implementation, and
has been sponsored by a third party.
2009-04-29 19:19:13 +00:00
|
|
|
dst6 = &mifp->m6_route.ro_dst;
|
|
|
|
|
2000-01-28 05:27:14 +00:00
|
|
|
/*
|
|
|
|
* Make a new reference to the packet; make sure that
|
|
|
|
* the IPv6 header is actually copied, not just referenced,
|
|
|
|
* so that ip6_output() only scribbles on the copy.
|
|
|
|
*/
|
|
|
|
mb_copy = m_copy(m, 0, M_COPYALL);
|
|
|
|
if (mb_copy &&
|
|
|
|
(M_HASCL(mb_copy) || mb_copy->m_len < sizeof(struct ip6_hdr)))
|
|
|
|
mb_copy = m_pullup(mb_copy, sizeof(struct ip6_hdr));
|
2001-06-11 12:39:29 +00:00
|
|
|
if (mb_copy == NULL) {
|
2000-01-28 05:27:14 +00:00
|
|
|
return;
|
2001-06-11 12:39:29 +00:00
|
|
|
}
|
2000-01-28 05:27:14 +00:00
|
|
|
/* set MCAST flag to the outgoing packet */
|
|
|
|
mb_copy->m_flags |= M_MCAST;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If we sourced the packet, call ip6_output since we may devide
|
|
|
|
* the packet into fragments when the packet is too big for the
|
|
|
|
* outgoing interface.
|
|
|
|
* Otherwise, we can simply send the packet to the interface
|
|
|
|
* sending queue.
|
|
|
|
*/
|
|
|
|
if (m->m_pkthdr.rcvif == NULL) {
|
|
|
|
struct ip6_moptions im6o;
|
|
|
|
|
|
|
|
im6o.im6o_multicast_ifp = ifp;
|
|
|
|
/* XXX: ip6_output will override ip6->ip6_hlim */
|
|
|
|
im6o.im6o_multicast_hlim = ip6->ip6_hlim;
|
|
|
|
im6o.im6o_multicast_loop = 1;
|
2009-03-19 01:43:03 +00:00
|
|
|
error = ip6_output(mb_copy, NULL, &mifp->m6_route,
|
2002-10-16 01:54:46 +00:00
|
|
|
IPV6_FORWARDING, &im6o, NULL, NULL);
|
2000-01-28 05:27:14 +00:00
|
|
|
|
|
|
|
#ifdef MRT6DEBUG
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
if (V_mrt6debug & DEBUG_XMIT)
|
2000-01-28 05:27:14 +00:00
|
|
|
log(LOG_DEBUG, "phyint_send on mif %d err %d\n",
|
|
|
|
mifp - mif6table, error);
|
|
|
|
#endif
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
Bite the bullet, and make the IPv6 SSM and MLDv2 mega-commit:
import from p4 bms_netdev. Summary of changes:
* Connect netinet6/in6_mcast.c to build.
The legacy KAME KPIs are mostly preserved.
* Eliminate now dead code from ip6_output.c.
Don't do mbuf bingo, we are not going to do RFC 2292 style
CMSG tricks for multicast options as they are not required
by any current IPv6 normative reference.
* Refactor transports (UDP, raw_ip6) to do own mcast filtering.
SCTP, TCP unaffected by this change.
* Add ip6_msource, in6_msource structs to in6_var.h.
* Hookup mld_ifinfo state to in6_ifextra, allocate from
domifattach path.
* Eliminate IN6_LOOKUP_MULTI(), it is no longer referenced.
Kernel consumers which need this should use in6m_lookup().
* Refactor IPv6 socket group memberships to use a vector (like IPv4).
* Update ifmcstat(8) for IPv6 SSM.
* Add witness lock order for IN6_MULTI_LOCK.
* Move IN6_MULTI_LOCK out of lower ip6_output()/ip6_input() paths.
* Introduce IP6STAT_ADD/SUB/INC/DEC as per rwatson's IPv4 cleanup.
* Update carp(4) for new IPv6 SSM KPIs.
* Virtualize ip6_mrouter socket.
Changes mostly localized to IPv6 MROUTING.
* Don't do a local group lookup in MROUTING.
* Kill unused KAME prototypes in6_purgemkludge(), in6_restoremkludge().
* Preserve KAME DAD timer jitter behaviour in MLDv1 compatibility mode.
* Bump __FreeBSD_version to 800084.
* Update UPDATING.
NOTE WELL:
* This code hasn't been tested against real MLDv2 queriers
(yet), although the on-wire protocol has been verified in Wireshark.
* There are a few unresolved issues in the socket layer APIs to
do with scope ID propagation.
* There is a LOR present in ip6_output()'s use of
in6_setscope() which needs to be resolved. See comments in mld6.c.
This is believed to be benign and can't be avoided for the moment
without re-introducing an indirect netisr.
This work was mostly derived from the IGMPv3 implementation, and
has been sponsored by a third party.
2009-04-29 19:19:13 +00:00
|
|
|
* If configured to loop back multicasts by default,
|
|
|
|
* loop back a copy now.
|
2000-01-28 05:27:14 +00:00
|
|
|
*/
|
Bite the bullet, and make the IPv6 SSM and MLDv2 mega-commit:
import from p4 bms_netdev. Summary of changes:
* Connect netinet6/in6_mcast.c to build.
The legacy KAME KPIs are mostly preserved.
* Eliminate now dead code from ip6_output.c.
Don't do mbuf bingo, we are not going to do RFC 2292 style
CMSG tricks for multicast options as they are not required
by any current IPv6 normative reference.
* Refactor transports (UDP, raw_ip6) to do own mcast filtering.
SCTP, TCP unaffected by this change.
* Add ip6_msource, in6_msource structs to in6_var.h.
* Hookup mld_ifinfo state to in6_ifextra, allocate from
domifattach path.
* Eliminate IN6_LOOKUP_MULTI(), it is no longer referenced.
Kernel consumers which need this should use in6m_lookup().
* Refactor IPv6 socket group memberships to use a vector (like IPv4).
* Update ifmcstat(8) for IPv6 SSM.
* Add witness lock order for IN6_MULTI_LOCK.
* Move IN6_MULTI_LOCK out of lower ip6_output()/ip6_input() paths.
* Introduce IP6STAT_ADD/SUB/INC/DEC as per rwatson's IPv4 cleanup.
* Update carp(4) for new IPv6 SSM KPIs.
* Virtualize ip6_mrouter socket.
Changes mostly localized to IPv6 MROUTING.
* Don't do a local group lookup in MROUTING.
* Kill unused KAME prototypes in6_purgemkludge(), in6_restoremkludge().
* Preserve KAME DAD timer jitter behaviour in MLDv1 compatibility mode.
* Bump __FreeBSD_version to 800084.
* Update UPDATING.
NOTE WELL:
* This code hasn't been tested against real MLDv2 queriers
(yet), although the on-wire protocol has been verified in Wireshark.
* There are a few unresolved issues in the socket layer APIs to
do with scope ID propagation.
* There is a LOR present in ip6_output()'s use of
in6_setscope() which needs to be resolved. See comments in mld6.c.
This is believed to be benign and can't be avoided for the moment
without re-introducing an indirect netisr.
This work was mostly derived from the IGMPv3 implementation, and
has been sponsored by a third party.
2009-04-29 19:19:13 +00:00
|
|
|
if (in6_mcast_loop) {
|
2001-06-11 12:39:29 +00:00
|
|
|
dst6->sin6_len = sizeof(struct sockaddr_in6);
|
|
|
|
dst6->sin6_family = AF_INET6;
|
|
|
|
dst6->sin6_addr = ip6->ip6_dst;
|
2009-03-19 01:43:03 +00:00
|
|
|
ip6_mloopback(ifp, m, &mifp->m6_route.ro_dst);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
Bite the bullet, and make the IPv6 SSM and MLDv2 mega-commit:
import from p4 bms_netdev. Summary of changes:
* Connect netinet6/in6_mcast.c to build.
The legacy KAME KPIs are mostly preserved.
* Eliminate now dead code from ip6_output.c.
Don't do mbuf bingo, we are not going to do RFC 2292 style
CMSG tricks for multicast options as they are not required
by any current IPv6 normative reference.
* Refactor transports (UDP, raw_ip6) to do own mcast filtering.
SCTP, TCP unaffected by this change.
* Add ip6_msource, in6_msource structs to in6_var.h.
* Hookup mld_ifinfo state to in6_ifextra, allocate from
domifattach path.
* Eliminate IN6_LOOKUP_MULTI(), it is no longer referenced.
Kernel consumers which need this should use in6m_lookup().
* Refactor IPv6 socket group memberships to use a vector (like IPv4).
* Update ifmcstat(8) for IPv6 SSM.
* Add witness lock order for IN6_MULTI_LOCK.
* Move IN6_MULTI_LOCK out of lower ip6_output()/ip6_input() paths.
* Introduce IP6STAT_ADD/SUB/INC/DEC as per rwatson's IPv4 cleanup.
* Update carp(4) for new IPv6 SSM KPIs.
* Virtualize ip6_mrouter socket.
Changes mostly localized to IPv6 MROUTING.
* Don't do a local group lookup in MROUTING.
* Kill unused KAME prototypes in6_purgemkludge(), in6_restoremkludge().
* Preserve KAME DAD timer jitter behaviour in MLDv1 compatibility mode.
* Bump __FreeBSD_version to 800084.
* Update UPDATING.
NOTE WELL:
* This code hasn't been tested against real MLDv2 queriers
(yet), although the on-wire protocol has been verified in Wireshark.
* There are a few unresolved issues in the socket layer APIs to
do with scope ID propagation.
* There is a LOR present in ip6_output()'s use of
in6_setscope() which needs to be resolved. See comments in mld6.c.
This is believed to be benign and can't be avoided for the moment
without re-introducing an indirect netisr.
This work was mostly derived from the IGMPv3 implementation, and
has been sponsored by a third party.
2009-04-29 19:19:13 +00:00
|
|
|
|
2000-01-28 05:27:14 +00:00
|
|
|
/*
|
|
|
|
* Put the packet into the sending queue of the outgoing interface
|
|
|
|
* if it would fit in the MTU of the interface.
|
|
|
|
*/
|
2003-10-20 15:27:48 +00:00
|
|
|
linkmtu = IN6_LINKMTU(ifp);
|
|
|
|
if (mb_copy->m_pkthdr.len <= linkmtu || linkmtu < IPV6_MMTU) {
|
2001-06-11 12:39:29 +00:00
|
|
|
dst6->sin6_len = sizeof(struct sockaddr_in6);
|
|
|
|
dst6->sin6_family = AF_INET6;
|
|
|
|
dst6->sin6_addr = ip6->ip6_dst;
|
2000-01-28 05:27:14 +00:00
|
|
|
/*
|
|
|
|
* We just call if_output instead of nd6_output here, since
|
|
|
|
* we need no ND for a multicast forwarded packet...right?
|
|
|
|
*/
|
|
|
|
error = (*ifp->if_output)(ifp, mb_copy,
|
2009-03-19 01:43:03 +00:00
|
|
|
(struct sockaddr *)&mifp->m6_route.ro_dst, NULL);
|
2000-01-28 05:27:14 +00:00
|
|
|
#ifdef MRT6DEBUG
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
if (V_mrt6debug & DEBUG_XMIT)
|
2000-01-28 05:27:14 +00:00
|
|
|
log(LOG_DEBUG, "phyint_send on mif %d err %d\n",
|
|
|
|
mifp - mif6table, error);
|
|
|
|
#endif
|
2001-06-11 12:39:29 +00:00
|
|
|
} else {
|
2005-08-13 19:55:06 +00:00
|
|
|
/*
|
|
|
|
* pMTU discovery is intentionally disabled by default, since
|
|
|
|
* various router may notify pMTU in multicast, which can be
|
|
|
|
* a DDoS to a router
|
|
|
|
*/
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
if (V_ip6_mcast_pmtu)
|
2005-08-13 19:55:06 +00:00
|
|
|
icmp6_error(mb_copy, ICMP6_PACKET_TOO_BIG, 0, linkmtu);
|
|
|
|
else {
|
2000-01-28 05:27:14 +00:00
|
|
|
#ifdef MRT6DEBUG
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
if (V_mrt6debug & DEBUG_XMIT) {
|
2006-12-12 12:17:58 +00:00
|
|
|
char ip6bufs[INET6_ADDRSTRLEN];
|
|
|
|
char ip6bufd[INET6_ADDRSTRLEN];
|
2005-08-13 19:55:06 +00:00
|
|
|
log(LOG_DEBUG,
|
|
|
|
"phyint_send: packet too big on %s o %s "
|
|
|
|
"g %s size %d(discarded)\n",
|
|
|
|
if_name(ifp),
|
2006-12-12 12:17:58 +00:00
|
|
|
ip6_sprintf(ip6bufs, &ip6->ip6_src),
|
|
|
|
ip6_sprintf(ip6bufd, &ip6->ip6_dst),
|
2005-08-13 19:55:06 +00:00
|
|
|
mb_copy->m_pkthdr.len);
|
2006-12-12 12:17:58 +00:00
|
|
|
}
|
2000-01-28 05:27:14 +00:00
|
|
|
#endif /* MRT6DEBUG */
|
2005-08-13 19:55:06 +00:00
|
|
|
m_freem(mb_copy); /* simply discard the packet */
|
|
|
|
}
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2007-07-05 16:23:49 +00:00
|
|
|
register_send(struct ip6_hdr *ip6, struct mif6 *mif, struct mbuf *m)
|
2000-01-28 05:27:14 +00:00
|
|
|
{
|
2001-06-11 12:39:29 +00:00
|
|
|
struct mbuf *mm;
|
|
|
|
int i, len = m->m_pkthdr.len;
|
2000-01-28 05:27:14 +00:00
|
|
|
static struct sockaddr_in6 sin6 = { sizeof(sin6), AF_INET6 };
|
|
|
|
struct mrt6msg *im6;
|
|
|
|
|
|
|
|
#ifdef MRT6DEBUG
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
if (V_mrt6debug) {
|
2006-12-12 12:17:58 +00:00
|
|
|
char ip6bufs[INET6_ADDRSTRLEN], ip6bufd[INET6_ADDRSTRLEN];
|
2000-01-28 05:27:14 +00:00
|
|
|
log(LOG_DEBUG, "** IPv6 register_send **\n src %s dst %s\n",
|
2006-12-12 12:17:58 +00:00
|
|
|
ip6_sprintf(ip6bufs, &ip6->ip6_src),
|
|
|
|
ip6_sprintf(ip6bufd, &ip6->ip6_dst));
|
|
|
|
}
|
2000-01-28 05:27:14 +00:00
|
|
|
#endif
|
|
|
|
++pim6stat.pim6s_snd_registers;
|
|
|
|
|
|
|
|
/* Make a copy of the packet to send to the user level process */
|
2003-02-19 05:47:46 +00:00
|
|
|
MGETHDR(mm, M_DONTWAIT, MT_HEADER);
|
2000-01-28 05:27:14 +00:00
|
|
|
if (mm == NULL)
|
2003-10-06 14:02:09 +00:00
|
|
|
return (ENOBUFS);
|
2001-06-11 12:39:29 +00:00
|
|
|
mm->m_pkthdr.rcvif = NULL;
|
2000-01-28 05:27:14 +00:00
|
|
|
mm->m_data += max_linkhdr;
|
|
|
|
mm->m_len = sizeof(struct ip6_hdr);
|
|
|
|
|
|
|
|
if ((mm->m_next = m_copy(m, 0, M_COPYALL)) == NULL) {
|
|
|
|
m_freem(mm);
|
2003-10-06 14:02:09 +00:00
|
|
|
return (ENOBUFS);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
i = MHLEN - M_LEADINGSPACE(mm);
|
|
|
|
if (i > len)
|
|
|
|
i = len;
|
|
|
|
mm = m_pullup(mm, i);
|
2002-03-29 05:14:58 +00:00
|
|
|
if (mm == NULL)
|
2003-10-06 14:02:09 +00:00
|
|
|
return (ENOBUFS);
|
2000-01-28 05:27:14 +00:00
|
|
|
/* TODO: check it! */
|
|
|
|
mm->m_pkthdr.len = len + sizeof(struct ip6_hdr);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Send message to routing daemon
|
|
|
|
*/
|
|
|
|
sin6.sin6_addr = ip6->ip6_src;
|
|
|
|
|
|
|
|
im6 = mtod(mm, struct mrt6msg *);
|
|
|
|
im6->im6_msgtype = MRT6MSG_WHOLEPKT;
|
|
|
|
im6->im6_mbz = 0;
|
|
|
|
|
|
|
|
im6->im6_mif = mif - mif6table;
|
|
|
|
|
|
|
|
/* iif info is not given for reg. encap.n */
|
|
|
|
mrt6stat.mrt6s_upcalls++;
|
|
|
|
|
Bite the bullet, and make the IPv6 SSM and MLDv2 mega-commit:
import from p4 bms_netdev. Summary of changes:
* Connect netinet6/in6_mcast.c to build.
The legacy KAME KPIs are mostly preserved.
* Eliminate now dead code from ip6_output.c.
Don't do mbuf bingo, we are not going to do RFC 2292 style
CMSG tricks for multicast options as they are not required
by any current IPv6 normative reference.
* Refactor transports (UDP, raw_ip6) to do own mcast filtering.
SCTP, TCP unaffected by this change.
* Add ip6_msource, in6_msource structs to in6_var.h.
* Hookup mld_ifinfo state to in6_ifextra, allocate from
domifattach path.
* Eliminate IN6_LOOKUP_MULTI(), it is no longer referenced.
Kernel consumers which need this should use in6m_lookup().
* Refactor IPv6 socket group memberships to use a vector (like IPv4).
* Update ifmcstat(8) for IPv6 SSM.
* Add witness lock order for IN6_MULTI_LOCK.
* Move IN6_MULTI_LOCK out of lower ip6_output()/ip6_input() paths.
* Introduce IP6STAT_ADD/SUB/INC/DEC as per rwatson's IPv4 cleanup.
* Update carp(4) for new IPv6 SSM KPIs.
* Virtualize ip6_mrouter socket.
Changes mostly localized to IPv6 MROUTING.
* Don't do a local group lookup in MROUTING.
* Kill unused KAME prototypes in6_purgemkludge(), in6_restoremkludge().
* Preserve KAME DAD timer jitter behaviour in MLDv1 compatibility mode.
* Bump __FreeBSD_version to 800084.
* Update UPDATING.
NOTE WELL:
* This code hasn't been tested against real MLDv2 queriers
(yet), although the on-wire protocol has been verified in Wireshark.
* There are a few unresolved issues in the socket layer APIs to
do with scope ID propagation.
* There is a LOR present in ip6_output()'s use of
in6_setscope() which needs to be resolved. See comments in mld6.c.
This is believed to be benign and can't be avoided for the moment
without re-introducing an indirect netisr.
This work was mostly derived from the IGMPv3 implementation, and
has been sponsored by a third party.
2009-04-29 19:19:13 +00:00
|
|
|
if (socket_send(V_ip6_mrouter, mm, &sin6) < 0) {
|
2000-01-28 05:27:14 +00:00
|
|
|
#ifdef MRT6DEBUG
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
if (V_mrt6debug)
|
2000-01-28 05:27:14 +00:00
|
|
|
log(LOG_WARNING,
|
2002-04-19 04:46:24 +00:00
|
|
|
"register_send: ip6_mrouter socket queue full\n");
|
2000-01-28 05:27:14 +00:00
|
|
|
#endif
|
2001-06-11 12:39:29 +00:00
|
|
|
++mrt6stat.mrt6s_upq_sockfull;
|
2003-10-06 14:02:09 +00:00
|
|
|
return (ENOBUFS);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
2003-10-06 14:02:09 +00:00
|
|
|
return (0);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
|
2009-03-19 01:43:03 +00:00
|
|
|
/*
|
|
|
|
* pim6_encapcheck() is called by the encap6_input() path at runtime to
|
|
|
|
* determine if a packet is for PIM; allowing PIM to be dynamically loaded
|
|
|
|
* into the kernel.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
pim6_encapcheck(const struct mbuf *m, int off, int proto, void *arg)
|
|
|
|
{
|
|
|
|
|
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
KASSERT(proto == IPPROTO_PIM, ("not for IPPROTO_PIM"));
|
|
|
|
#endif
|
|
|
|
if (proto != IPPROTO_PIM)
|
|
|
|
return 0; /* not for us; reject the datagram. */
|
|
|
|
|
|
|
|
return 64; /* claim the datagram. */
|
|
|
|
}
|
|
|
|
|
2000-01-28 05:27:14 +00:00
|
|
|
/*
|
|
|
|
* PIM sparse mode hook
|
|
|
|
* Receives the pim control messages, and passes them up to the listening
|
|
|
|
* socket, using rip6_input.
|
|
|
|
* The only message processed is the REGISTER pim message; the pim header
|
|
|
|
* is stripped off, and the inner packet is passed to register_mforward.
|
|
|
|
*/
|
|
|
|
int
|
2007-07-05 16:23:49 +00:00
|
|
|
pim6_input(struct mbuf **mp, int *offp, int proto)
|
2000-01-28 05:27:14 +00:00
|
|
|
{
|
2001-06-11 12:39:29 +00:00
|
|
|
struct pim *pim; /* pointer to a pim struct */
|
|
|
|
struct ip6_hdr *ip6;
|
|
|
|
int pimlen;
|
2000-01-28 05:27:14 +00:00
|
|
|
struct mbuf *m = *mp;
|
2001-06-11 12:39:29 +00:00
|
|
|
int minlen;
|
2000-01-28 05:27:14 +00:00
|
|
|
int off = *offp;
|
|
|
|
|
|
|
|
++pim6stat.pim6s_rcv_total;
|
|
|
|
|
2001-06-11 12:39:29 +00:00
|
|
|
ip6 = mtod(m, struct ip6_hdr *);
|
|
|
|
pimlen = m->m_pkthdr.len - *offp;
|
2000-01-28 05:27:14 +00:00
|
|
|
|
2001-06-11 12:39:29 +00:00
|
|
|
/*
|
|
|
|
* Validate lengths
|
|
|
|
*/
|
2000-01-28 05:27:14 +00:00
|
|
|
if (pimlen < PIM_MINLEN) {
|
|
|
|
++pim6stat.pim6s_rcv_tooshort;
|
|
|
|
#ifdef MRT6DEBUG
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
if (V_mrt6debug & DEBUG_PIM)
|
2000-01-28 05:27:14 +00:00
|
|
|
log(LOG_DEBUG,"pim6_input: PIM packet too short\n");
|
|
|
|
#endif
|
|
|
|
m_freem(m);
|
2003-10-06 14:02:09 +00:00
|
|
|
return (IPPROTO_DONE);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* if the packet is at least as big as a REGISTER, go ahead
|
|
|
|
* and grab the PIM REGISTER header size, to avoid another
|
|
|
|
* possible m_pullup() later.
|
|
|
|
*
|
|
|
|
* PIM_MINLEN == pimhdr + u_int32 == 8
|
|
|
|
* PIM6_REG_MINLEN == pimhdr + reghdr + eip6hdr == 4 + 4 + 40
|
|
|
|
*/
|
|
|
|
minlen = (pimlen >= PIM6_REG_MINLEN) ? PIM6_REG_MINLEN : PIM_MINLEN;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Make sure that the IP6 and PIM headers in contiguous memory, and
|
|
|
|
* possibly the PIM REGISTER header
|
|
|
|
*/
|
2000-07-04 16:35:15 +00:00
|
|
|
#ifndef PULLDOWN_TEST
|
2000-01-28 05:27:14 +00:00
|
|
|
IP6_EXTHDR_CHECK(m, off, minlen, IPPROTO_DONE);
|
|
|
|
/* adjust pointer */
|
|
|
|
ip6 = mtod(m, struct ip6_hdr *);
|
|
|
|
|
|
|
|
/* adjust mbuf to point to the PIM header */
|
|
|
|
pim = (struct pim *)((caddr_t)ip6 + off);
|
2000-07-04 16:35:15 +00:00
|
|
|
#else
|
|
|
|
IP6_EXTHDR_GET(pim, struct pim *, m, off, minlen);
|
|
|
|
if (pim == NULL) {
|
|
|
|
pim6stat.pim6s_rcv_tooshort++;
|
2003-10-06 14:02:09 +00:00
|
|
|
return (IPPROTO_DONE);
|
2000-07-04 16:35:15 +00:00
|
|
|
}
|
|
|
|
#endif
|
2000-01-28 05:27:14 +00:00
|
|
|
|
2000-07-04 16:35:15 +00:00
|
|
|
#define PIM6_CHECKSUM
|
2000-01-28 05:27:14 +00:00
|
|
|
#ifdef PIM6_CHECKSUM
|
|
|
|
{
|
|
|
|
int cksumlen;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Validate checksum.
|
|
|
|
* If PIM REGISTER, exclude the data packet
|
|
|
|
*/
|
|
|
|
if (pim->pim_type == PIM_REGISTER)
|
|
|
|
cksumlen = PIM_MINLEN;
|
|
|
|
else
|
|
|
|
cksumlen = pimlen;
|
|
|
|
|
|
|
|
if (in6_cksum(m, IPPROTO_PIM, off, cksumlen)) {
|
|
|
|
++pim6stat.pim6s_rcv_badsum;
|
|
|
|
#ifdef MRT6DEBUG
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
if (V_mrt6debug & DEBUG_PIM)
|
2000-01-28 05:27:14 +00:00
|
|
|
log(LOG_DEBUG,
|
|
|
|
"pim6_input: invalid checksum\n");
|
|
|
|
#endif
|
|
|
|
m_freem(m);
|
2003-10-06 14:02:09 +00:00
|
|
|
return (IPPROTO_DONE);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* PIM_CHECKSUM */
|
|
|
|
|
|
|
|
/* PIM version check */
|
|
|
|
if (pim->pim_ver != PIM_VERSION) {
|
|
|
|
++pim6stat.pim6s_rcv_badversion;
|
|
|
|
#ifdef MRT6DEBUG
|
|
|
|
log(LOG_ERR,
|
|
|
|
"pim6_input: incorrect version %d, expecting %d\n",
|
|
|
|
pim->pim_ver, PIM_VERSION);
|
|
|
|
#endif
|
|
|
|
m_freem(m);
|
2003-10-06 14:02:09 +00:00
|
|
|
return (IPPROTO_DONE);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (pim->pim_type == PIM_REGISTER) {
|
|
|
|
/*
|
|
|
|
* since this is a REGISTER, we'll make a copy of the register
|
|
|
|
* headers ip6+pim+u_int32_t+encap_ip6, to be passed up to the
|
|
|
|
* routing daemon.
|
|
|
|
*/
|
|
|
|
static struct sockaddr_in6 dst = { sizeof(dst), AF_INET6 };
|
|
|
|
|
|
|
|
struct mbuf *mcp;
|
|
|
|
struct ip6_hdr *eip6;
|
|
|
|
u_int32_t *reghdr;
|
|
|
|
int rc;
|
2006-12-12 12:17:58 +00:00
|
|
|
#ifdef MRT6DEBUG
|
|
|
|
char ip6bufs[INET6_ADDRSTRLEN], ip6bufd[INET6_ADDRSTRLEN];
|
|
|
|
#endif
|
2003-10-08 18:26:08 +00:00
|
|
|
|
2000-01-28 05:27:14 +00:00
|
|
|
++pim6stat.pim6s_rcv_registers;
|
|
|
|
|
|
|
|
if ((reg_mif_num >= nummifs) || (reg_mif_num == (mifi_t) -1)) {
|
|
|
|
#ifdef MRT6DEBUG
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
if (V_mrt6debug & DEBUG_PIM)
|
2000-01-28 05:27:14 +00:00
|
|
|
log(LOG_DEBUG,
|
|
|
|
"pim6_input: register mif not set: %d\n",
|
|
|
|
reg_mif_num);
|
|
|
|
#endif
|
|
|
|
m_freem(m);
|
2003-10-06 14:02:09 +00:00
|
|
|
return (IPPROTO_DONE);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
2003-10-08 18:26:08 +00:00
|
|
|
|
2000-01-28 05:27:14 +00:00
|
|
|
reghdr = (u_int32_t *)(pim + 1);
|
2003-10-08 18:26:08 +00:00
|
|
|
|
2000-01-28 05:27:14 +00:00
|
|
|
if ((ntohl(*reghdr) & PIM_NULL_REGISTER))
|
|
|
|
goto pim6_input_to_daemon;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Validate length
|
|
|
|
*/
|
|
|
|
if (pimlen < PIM6_REG_MINLEN) {
|
|
|
|
++pim6stat.pim6s_rcv_tooshort;
|
|
|
|
++pim6stat.pim6s_rcv_badregisters;
|
|
|
|
#ifdef MRT6DEBUG
|
|
|
|
log(LOG_ERR,
|
|
|
|
"pim6_input: register packet size too "
|
|
|
|
"small %d from %s\n",
|
2006-12-12 12:17:58 +00:00
|
|
|
pimlen, ip6_sprintf(ip6bufs, &ip6->ip6_src));
|
2000-01-28 05:27:14 +00:00
|
|
|
#endif
|
|
|
|
m_freem(m);
|
2003-10-06 14:02:09 +00:00
|
|
|
return (IPPROTO_DONE);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
2003-10-08 18:26:08 +00:00
|
|
|
|
2000-01-28 05:27:14 +00:00
|
|
|
eip6 = (struct ip6_hdr *) (reghdr + 1);
|
2003-10-08 18:26:08 +00:00
|
|
|
#ifdef MRT6DEBUG
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
if (V_mrt6debug & DEBUG_PIM)
|
2000-01-28 05:27:14 +00:00
|
|
|
log(LOG_DEBUG,
|
|
|
|
"pim6_input[register], eip6: %s -> %s, "
|
|
|
|
"eip6 plen %d\n",
|
2006-12-12 12:17:58 +00:00
|
|
|
ip6_sprintf(ip6bufs, &eip6->ip6_src),
|
|
|
|
ip6_sprintf(ip6bufd, &eip6->ip6_dst),
|
2000-01-28 05:27:14 +00:00
|
|
|
ntohs(eip6->ip6_plen));
|
|
|
|
#endif
|
2001-06-11 12:39:29 +00:00
|
|
|
|
|
|
|
/* verify the version number of the inner packet */
|
|
|
|
if ((eip6->ip6_vfc & IPV6_VERSION_MASK) != IPV6_VERSION) {
|
|
|
|
++pim6stat.pim6s_rcv_badregisters;
|
|
|
|
#ifdef MRT6DEBUG
|
|
|
|
log(LOG_DEBUG, "pim6_input: invalid IP version (%d) "
|
|
|
|
"of the inner packet\n",
|
|
|
|
(eip6->ip6_vfc & IPV6_VERSION));
|
|
|
|
#endif
|
|
|
|
m_freem(m);
|
2003-10-06 14:02:09 +00:00
|
|
|
return (IPPROTO_NONE);
|
2001-06-11 12:39:29 +00:00
|
|
|
}
|
2003-10-08 18:26:08 +00:00
|
|
|
|
2000-01-28 05:27:14 +00:00
|
|
|
/* verify the inner packet is destined to a mcast group */
|
|
|
|
if (!IN6_IS_ADDR_MULTICAST(&eip6->ip6_dst)) {
|
|
|
|
++pim6stat.pim6s_rcv_badregisters;
|
|
|
|
#ifdef MRT6DEBUG
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
if (V_mrt6debug & DEBUG_PIM)
|
2000-01-28 05:27:14 +00:00
|
|
|
log(LOG_DEBUG,
|
|
|
|
"pim6_input: inner packet of register "
|
|
|
|
"is not multicast %s\n",
|
2006-12-12 12:17:58 +00:00
|
|
|
ip6_sprintf(ip6bufd, &eip6->ip6_dst));
|
2000-01-28 05:27:14 +00:00
|
|
|
#endif
|
|
|
|
m_freem(m);
|
2003-10-06 14:02:09 +00:00
|
|
|
return (IPPROTO_DONE);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
2003-10-08 18:26:08 +00:00
|
|
|
|
2000-01-28 05:27:14 +00:00
|
|
|
/*
|
|
|
|
* make a copy of the whole header to pass to the daemon later.
|
|
|
|
*/
|
|
|
|
mcp = m_copy(m, 0, off + PIM6_REG_MINLEN);
|
|
|
|
if (mcp == NULL) {
|
|
|
|
#ifdef MRT6DEBUG
|
|
|
|
log(LOG_ERR,
|
|
|
|
"pim6_input: pim register: "
|
|
|
|
"could not copy register head\n");
|
|
|
|
#endif
|
|
|
|
m_freem(m);
|
2003-10-06 14:02:09 +00:00
|
|
|
return (IPPROTO_DONE);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
2003-10-08 18:26:08 +00:00
|
|
|
|
2000-01-28 05:27:14 +00:00
|
|
|
/*
|
|
|
|
* forward the inner ip6 packet; point m_data at the inner ip6.
|
|
|
|
*/
|
|
|
|
m_adj(m, off + PIM_MINLEN);
|
|
|
|
#ifdef MRT6DEBUG
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
if (V_mrt6debug & DEBUG_PIM) {
|
2000-01-28 05:27:14 +00:00
|
|
|
log(LOG_DEBUG,
|
|
|
|
"pim6_input: forwarding decapsulated register: "
|
|
|
|
"src %s, dst %s, mif %d\n",
|
2006-12-12 12:17:58 +00:00
|
|
|
ip6_sprintf(ip6bufs, &eip6->ip6_src),
|
|
|
|
ip6_sprintf(ip6bufd, &eip6->ip6_dst),
|
2000-01-28 05:27:14 +00:00
|
|
|
reg_mif_num);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2003-10-08 18:26:08 +00:00
|
|
|
rc = if_simloop(mif6table[reg_mif_num].m6_ifp, m,
|
2003-12-23 02:36:43 +00:00
|
|
|
dst.sin6_family, 0);
|
2003-10-08 18:26:08 +00:00
|
|
|
|
2000-01-28 05:27:14 +00:00
|
|
|
/* prepare the register head to send to the mrouting daemon */
|
|
|
|
m = mcp;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Pass the PIM message up to the daemon; if it is a register message
|
|
|
|
* pass the 'head' only up to the daemon. This includes the
|
|
|
|
* encapsulator ip6 header, pim header, register header and the
|
|
|
|
* encapsulated ip6 header.
|
|
|
|
*/
|
|
|
|
pim6_input_to_daemon:
|
|
|
|
rip6_input(&m, offp, proto);
|
2003-10-06 14:02:09 +00:00
|
|
|
return (IPPROTO_DONE);
|
2000-01-28 05:27:14 +00:00
|
|
|
}
|
2009-03-19 01:43:03 +00:00
|
|
|
|
|
|
|
static int
|
|
|
|
ip6_mroute_modevent(module_t mod, int type, void *unused)
|
|
|
|
{
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case MOD_LOAD:
|
|
|
|
MROUTER6_LOCK_INIT();
|
|
|
|
MFC6_LOCK_INIT();
|
|
|
|
MIF6_LOCK_INIT();
|
|
|
|
|
|
|
|
pim6_encap_cookie = encap_attach_func(AF_INET6, IPPROTO_PIM,
|
|
|
|
pim6_encapcheck,
|
|
|
|
(const struct protosw *)&in6_pim_protosw, NULL);
|
|
|
|
if (pim6_encap_cookie == NULL) {
|
|
|
|
printf("ip6_mroute: unable to attach pim6 encap\n");
|
|
|
|
MIF6_LOCK_DESTROY();
|
|
|
|
MFC6_LOCK_DESTROY();
|
|
|
|
MROUTER6_LOCK_DESTROY();
|
|
|
|
return (EINVAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
ip6_mforward = X_ip6_mforward;
|
|
|
|
ip6_mrouter_done = X_ip6_mrouter_done;
|
|
|
|
ip6_mrouter_get = X_ip6_mrouter_get;
|
|
|
|
ip6_mrouter_set = X_ip6_mrouter_set;
|
|
|
|
mrt6_ioctl = X_mrt6_ioctl;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MOD_UNLOAD:
|
Bite the bullet, and make the IPv6 SSM and MLDv2 mega-commit:
import from p4 bms_netdev. Summary of changes:
* Connect netinet6/in6_mcast.c to build.
The legacy KAME KPIs are mostly preserved.
* Eliminate now dead code from ip6_output.c.
Don't do mbuf bingo, we are not going to do RFC 2292 style
CMSG tricks for multicast options as they are not required
by any current IPv6 normative reference.
* Refactor transports (UDP, raw_ip6) to do own mcast filtering.
SCTP, TCP unaffected by this change.
* Add ip6_msource, in6_msource structs to in6_var.h.
* Hookup mld_ifinfo state to in6_ifextra, allocate from
domifattach path.
* Eliminate IN6_LOOKUP_MULTI(), it is no longer referenced.
Kernel consumers which need this should use in6m_lookup().
* Refactor IPv6 socket group memberships to use a vector (like IPv4).
* Update ifmcstat(8) for IPv6 SSM.
* Add witness lock order for IN6_MULTI_LOCK.
* Move IN6_MULTI_LOCK out of lower ip6_output()/ip6_input() paths.
* Introduce IP6STAT_ADD/SUB/INC/DEC as per rwatson's IPv4 cleanup.
* Update carp(4) for new IPv6 SSM KPIs.
* Virtualize ip6_mrouter socket.
Changes mostly localized to IPv6 MROUTING.
* Don't do a local group lookup in MROUTING.
* Kill unused KAME prototypes in6_purgemkludge(), in6_restoremkludge().
* Preserve KAME DAD timer jitter behaviour in MLDv1 compatibility mode.
* Bump __FreeBSD_version to 800084.
* Update UPDATING.
NOTE WELL:
* This code hasn't been tested against real MLDv2 queriers
(yet), although the on-wire protocol has been verified in Wireshark.
* There are a few unresolved issues in the socket layer APIs to
do with scope ID propagation.
* There is a LOR present in ip6_output()'s use of
in6_setscope() which needs to be resolved. See comments in mld6.c.
This is believed to be benign and can't be avoided for the moment
without re-introducing an indirect netisr.
This work was mostly derived from the IGMPv3 implementation, and
has been sponsored by a third party.
2009-04-29 19:19:13 +00:00
|
|
|
if (V_ip6_mrouter != NULL)
|
2009-03-19 01:43:03 +00:00
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
if (pim6_encap_cookie) {
|
|
|
|
encap_detach(pim6_encap_cookie);
|
|
|
|
pim6_encap_cookie = NULL;
|
|
|
|
}
|
|
|
|
X_ip6_mrouter_done();
|
|
|
|
ip6_mforward = NULL;
|
|
|
|
ip6_mrouter_done = NULL;
|
|
|
|
ip6_mrouter_get = NULL;
|
|
|
|
ip6_mrouter_set = NULL;
|
|
|
|
mrt6_ioctl = NULL;
|
|
|
|
|
|
|
|
MIF6_LOCK_DESTROY();
|
|
|
|
MFC6_LOCK_DESTROY();
|
|
|
|
MROUTER6_LOCK_DESTROY();
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return (EOPNOTSUPP);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static moduledata_t ip6_mroutemod = {
|
|
|
|
"ip6_mroute",
|
|
|
|
ip6_mroute_modevent,
|
|
|
|
0
|
|
|
|
};
|
|
|
|
|
|
|
|
DECLARE_MODULE(ip6_mroute, ip6_mroutemod, SI_SUB_PSEUDO, SI_ORDER_ANY);
|