2005-01-07 02:30:35 +00:00
|
|
|
/*-
|
2017-11-20 19:43:44 +00:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*
|
1999-11-22 02:45:11 +00:00
|
|
|
* Copyright (C) 1995, 1996, 1997, and 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.
|
|
|
|
*/
|
|
|
|
|
2005-01-07 02:30:35 +00:00
|
|
|
/*-
|
1999-11-22 02:45:11 +00:00
|
|
|
* Copyright (c) 1982, 1986, 1988, 1993
|
2008-07-05 18:03:39 +00:00
|
|
|
* The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
1999-11-22 02:45:11 +00:00
|
|
|
*
|
|
|
|
* 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.
|
2017-02-28 23:42:47 +00:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1999-11-22 02:45:11 +00:00
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* @(#)raw_ip.c 8.2 (Berkeley) 1/4/94
|
|
|
|
*/
|
|
|
|
|
2007-12-10 16:03:40 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1999-12-22 19:13:38 +00:00
|
|
|
#include "opt_ipsec.h"
|
2001-06-11 12:39:29 +00:00
|
|
|
#include "opt_inet6.h"
|
2020-10-18 17:15:47 +00:00
|
|
|
#include "opt_route.h"
|
1999-12-22 19:13:38 +00:00
|
|
|
|
1999-11-22 02:45:11 +00:00
|
|
|
#include <sys/param.h>
|
2002-04-30 01:54:54 +00:00
|
|
|
#include <sys/errno.h>
|
MFp4:
Bring in updated jail support from bz_jail branch.
This enhances the current jail implementation to permit multiple
addresses per jail. In addtion to IPv4, IPv6 is supported as well.
Due to updated checks it is even possible to have jails without
an IP address at all, which basically gives one a chroot with
restricted process view, no networking,..
SCTP support was updated and supports IPv6 in jails as well.
Cpuset support permits jails to be bound to specific processor
sets after creation.
Jails can have an unrestricted (no duplicate protection, etc.) name
in addition to the hostname. The jail name cannot be changed from
within a jail and is considered to be used for management purposes
or as audit-token in the future.
DDB 'show jails' command was added to aid debugging.
Proper compat support permits 32bit jail binaries to be used on 64bit
systems to manage jails. Also backward compatibility was preserved where
possible: for jail v1 syscalls, as well as with user space management
utilities.
Both jail as well as prison version were updated for the new features.
A gap was intentionally left as the intermediate versions had been
used by various patches floating around the last years.
Bump __FreeBSD_version for the afore mentioned and in kernel changes.
Special thanks to:
- Pawel Jakub Dawidek (pjd) for his multi-IPv4 patches
and Olivier Houchard (cognet) for initial single-IPv6 patches.
- Jeff Roberson (jeff) and Randall Stewart (rrs) for their
help, ideas and review on cpuset and SCTP support.
- Robert Watson (rwatson) for lots and lots of help, discussions,
suggestions and review of most of the patch at various stages.
- John Baldwin (jhb) for his help.
- Simon L. Nielsen (simon) as early adopter testing changes
on cluster machines as well as all the testers and people
who provided feedback the last months on freebsd-jail and
other channels.
- My employer, CK Software GmbH, for the support so I could work on this.
Reviewed by: (see above)
MFC after: 3 months (this is just so that I get the mail)
X-MFC Before: 7.2-RELEASE if possible
2008-11-29 14:32:14 +00:00
|
|
|
#include <sys/jail.h>
|
2013-07-09 09:54:54 +00:00
|
|
|
#include <sys/kernel.h>
|
2002-04-30 01:54:54 +00:00
|
|
|
#include <sys/lock.h>
|
1999-11-22 02:45:11 +00:00
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/mbuf.h>
|
2007-06-13 22:42:43 +00:00
|
|
|
#include <sys/priv.h>
|
2002-04-30 01:54:54 +00:00
|
|
|
#include <sys/proc.h>
|
1999-11-22 02:45:11 +00:00
|
|
|
#include <sys/protosw.h>
|
2002-04-30 01:54:54 +00:00
|
|
|
#include <sys/signalvar.h>
|
|
|
|
#include <sys/socket.h>
|
1999-11-22 02:45:11 +00:00
|
|
|
#include <sys/socketvar.h>
|
2002-04-30 01:54:54 +00:00
|
|
|
#include <sys/sx.h>
|
2005-07-25 12:31:43 +00:00
|
|
|
#include <sys/syslog.h>
|
1999-11-22 02:45:11 +00:00
|
|
|
|
|
|
|
#include <net/if.h>
|
2013-10-26 17:58:36 +00:00
|
|
|
#include <net/if_var.h>
|
2023-01-23 15:05:29 +00:00
|
|
|
#include <net/if_private.h>
|
1999-11-22 02:45:11 +00:00
|
|
|
#include <net/if_types.h>
|
2002-04-30 01:54:54 +00:00
|
|
|
#include <net/route.h>
|
2008-12-02 21:37:28 +00:00
|
|
|
#include <net/vnet.h>
|
1999-11-22 02:45:11 +00:00
|
|
|
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/in_var.h>
|
|
|
|
#include <netinet/in_systm.h>
|
|
|
|
#include <netinet/in_pcb.h>
|
2008-12-02 21:37:28 +00:00
|
|
|
|
|
|
|
#include <netinet/icmp6.h>
|
2002-04-30 01:54:54 +00:00
|
|
|
#include <netinet/ip6.h>
|
2010-08-19 11:31:03 +00:00
|
|
|
#include <netinet/ip_var.h>
|
2002-04-30 01:54:54 +00:00
|
|
|
#include <netinet6/ip6_mroute.h>
|
1999-11-22 02:45:11 +00:00
|
|
|
#include <netinet6/in6_pcb.h>
|
2002-04-30 01:54:54 +00:00
|
|
|
#include <netinet6/ip6_var.h>
|
1999-11-22 02:45:11 +00:00
|
|
|
#include <netinet6/nd6.h>
|
2002-04-30 01:54:54 +00:00
|
|
|
#include <netinet6/raw_ip6.h>
|
2020-10-18 17:15:47 +00:00
|
|
|
#include <netinet6/in6_fib.h>
|
2000-07-04 16:35:15 +00:00
|
|
|
#include <netinet6/scope6_var.h>
|
2010-08-19 11:31:03 +00:00
|
|
|
#include <netinet6/send.h>
|
1999-11-22 02:45:11 +00:00
|
|
|
|
2017-02-06 08:49:57 +00:00
|
|
|
#include <netipsec/ipsec_support.h>
|
2002-10-16 02:25:05 +00:00
|
|
|
|
1999-11-22 02:45:11 +00:00
|
|
|
#include <machine/stdarg.h>
|
|
|
|
|
|
|
|
#define satosin6(sa) ((struct sockaddr_in6 *)(sa))
|
|
|
|
#define ifatoia6(ifa) ((struct in6_ifaddr *)(ifa))
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Raw interface to IP6 protocol.
|
|
|
|
*/
|
|
|
|
|
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
|
|
|
VNET_DECLARE(struct inpcbinfo, ripcbinfo);
|
2009-07-16 21:13:04 +00:00
|
|
|
#define V_ripcbinfo VNET(ripcbinfo)
|
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
|
|
|
|
2008-11-26 22:32:07 +00:00
|
|
|
extern u_long rip_sendspace;
|
|
|
|
extern u_long rip_recvspace;
|
|
|
|
|
2013-07-09 09:54:54 +00:00
|
|
|
VNET_PCPUSTAT_DEFINE(struct rip6stat, rip6stat);
|
|
|
|
VNET_PCPUSTAT_SYSINIT(rip6stat);
|
|
|
|
|
|
|
|
#ifdef VIMAGE
|
|
|
|
VNET_PCPUSTAT_SYSUNINIT(rip6stat);
|
|
|
|
#endif /* VIMAGE */
|
2010-04-29 11:52:42 +00:00
|
|
|
|
2007-02-24 11:38:47 +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
|
|
|
* Hooks for multicast routing. They all default to NULL, so leave them not
|
|
|
|
* initialized and rely on BSS being set to 0.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The socket used to communicate with the multicast routing daemon.
|
|
|
|
*/
|
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
|
|
|
VNET_DEFINE(struct socket *, ip6_mrouter);
|
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
|
|
|
|
|
|
|
/*
|
|
|
|
* The various mrouter functions.
|
2007-02-24 11:38:47 +00:00
|
|
|
*/
|
|
|
|
int (*ip6_mrouter_set)(struct socket *, struct sockopt *);
|
|
|
|
int (*ip6_mrouter_get)(struct socket *, struct sockopt *);
|
|
|
|
int (*ip6_mrouter_done)(void);
|
|
|
|
int (*ip6_mforward)(struct ip6_hdr *, struct ifnet *, struct mbuf *);
|
2009-06-21 10:29:31 +00:00
|
|
|
int (*mrt6_ioctl)(u_long, caddr_t);
|
2007-02-24 11:38:47 +00:00
|
|
|
|
2021-12-02 22:45:04 +00:00
|
|
|
struct rip6_inp_match_ctx {
|
|
|
|
struct ip6_hdr *ip6;
|
|
|
|
int proto;
|
|
|
|
};
|
|
|
|
|
|
|
|
static bool
|
|
|
|
rip6_inp_match(const struct inpcb *inp, void *v)
|
|
|
|
{
|
|
|
|
struct rip6_inp_match_ctx *c = v;
|
|
|
|
struct ip6_hdr *ip6 = c->ip6;
|
|
|
|
int proto = c->proto;
|
|
|
|
|
|
|
|
/* XXX inp locking */
|
|
|
|
if ((inp->inp_vflag & INP_IPV6) == 0)
|
|
|
|
return (false);
|
|
|
|
if (inp->inp_ip_p && inp->inp_ip_p != proto)
|
|
|
|
return (false);
|
|
|
|
if (!IN6_IS_ADDR_UNSPECIFIED(&inp->in6p_laddr) &&
|
|
|
|
!IN6_ARE_ADDR_EQUAL(&inp->in6p_laddr, &ip6->ip6_dst))
|
|
|
|
return (false);
|
|
|
|
if (!IN6_IS_ADDR_UNSPECIFIED(&inp->in6p_faddr) &&
|
|
|
|
!IN6_ARE_ADDR_EQUAL(&inp->in6p_faddr, &ip6->ip6_src))
|
|
|
|
return (false);
|
|
|
|
|
|
|
|
return (true);
|
|
|
|
}
|
|
|
|
|
1999-11-22 02:45:11 +00:00
|
|
|
/*
|
2008-07-05 18:03:39 +00:00
|
|
|
* Setup generic address and protocol structures for raw_input routine, then
|
|
|
|
* pass them along with mbuf chain.
|
1999-11-22 02:45:11 +00:00
|
|
|
*/
|
|
|
|
int
|
2007-07-05 16:23:49 +00:00
|
|
|
rip6_input(struct mbuf **mp, int *offp, int proto)
|
1999-11-22 02:45:11 +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
|
|
|
struct ifnet *ifp;
|
2021-12-02 22:45:04 +00:00
|
|
|
struct mbuf *n, *m = *mp;
|
2017-05-17 00:34:34 +00:00
|
|
|
struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *);
|
2019-08-02 07:41:36 +00:00
|
|
|
struct inpcb *inp;
|
2001-06-11 12:39:29 +00:00
|
|
|
struct mbuf *opts = NULL;
|
2003-11-02 19:09:29 +00:00
|
|
|
struct sockaddr_in6 fromsa;
|
2021-12-02 22:45:04 +00:00
|
|
|
struct rip6_inp_match_ctx ctx = { .ip6 = ip6, .proto = proto };
|
|
|
|
struct inpcb_iterator inpi = INP_ITERATOR(&V_ripcbinfo,
|
|
|
|
INPLOOKUP_RLOCKPCB, rip6_inp_match, &ctx);
|
|
|
|
int delivered = 0;
|
2019-11-07 20:40:44 +00:00
|
|
|
|
|
|
|
NET_EPOCH_ASSERT();
|
1999-11-22 02:45:11 +00:00
|
|
|
|
2013-06-19 20:48:34 +00:00
|
|
|
RIP6STAT_INC(rip6s_ipackets);
|
2001-06-11 12:39:29 +00:00
|
|
|
|
2017-03-06 04:01:58 +00:00
|
|
|
init_sin6(&fromsa, m, 0); /* general init */
|
1999-11-22 02:45:11 +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
|
|
|
ifp = m->m_pkthdr.rcvif;
|
|
|
|
|
2021-12-02 22:45:04 +00:00
|
|
|
while ((inp = inp_next(&inpi)) != NULL) {
|
|
|
|
INP_RLOCK_ASSERT(inp);
|
2021-12-02 21:35:14 +00:00
|
|
|
#if defined(IPSEC) || defined(IPSEC_SUPPORT)
|
2021-12-02 22:45:04 +00:00
|
|
|
/*
|
|
|
|
* Check AH/ESP integrity.
|
|
|
|
*/
|
|
|
|
if (IPSEC_ENABLED(ipv6) &&
|
|
|
|
IPSEC_CHECK_POLICY(ipv6, m, inp) != 0) {
|
|
|
|
/* Do not inject data into pcb. */
|
|
|
|
continue;
|
2021-12-02 21:35:14 +00:00
|
|
|
}
|
2021-12-02 22:45:04 +00:00
|
|
|
#endif /* IPSEC */
|
|
|
|
if (jailed_without_vnet(inp->inp_cred) &&
|
|
|
|
!IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst) &&
|
|
|
|
prison_check_ip6(inp->inp_cred, &ip6->ip6_dst) != 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
|
|
|
/*
|
|
|
|
* Allow raw socket in jail to receive multicast;
|
|
|
|
* assume process had PRIV_NETINET_RAW at attach,
|
|
|
|
* and fall through into normal filter path if so.
|
|
|
|
*/
|
2021-12-02 22:45:04 +00:00
|
|
|
continue;
|
2019-08-02 07:41:36 +00:00
|
|
|
if (inp->in6p_cksum != -1) {
|
2013-06-19 20:48:34 +00:00
|
|
|
RIP6STAT_INC(rip6s_isum);
|
2019-08-02 07:41:36 +00:00
|
|
|
if (m->m_pkthdr.len - (*offp + inp->in6p_cksum) < 2 ||
|
2019-04-19 17:28:28 +00:00
|
|
|
in6_cksum(m, proto, *offp,
|
2001-06-11 12:39:29 +00:00
|
|
|
m->m_pkthdr.len - *offp)) {
|
2013-06-19 20:48:34 +00:00
|
|
|
RIP6STAT_INC(rip6s_badsum);
|
2019-04-19 18:09:37 +00:00
|
|
|
/*
|
|
|
|
* Drop the received message, don't send an
|
|
|
|
* ICMP6 message. Set proto to IPPROTO_NONE
|
|
|
|
* to achieve that.
|
|
|
|
*/
|
2021-12-02 22:45:04 +00:00
|
|
|
INP_RUNLOCK(inp);
|
2019-04-19 18:09:37 +00:00
|
|
|
proto = IPPROTO_NONE;
|
2021-12-02 22:45:04 +00:00
|
|
|
break;
|
2001-06-11 12:39:29 +00:00
|
|
|
}
|
1999-11-22 02:45:11 +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 this raw socket has multicast state, and we
|
|
|
|
* have received a multicast, check if this socket
|
|
|
|
* should receive it, as multicast filtering is now
|
|
|
|
* the responsibility of the transport layer.
|
|
|
|
*/
|
2019-08-02 07:41:36 +00:00
|
|
|
if (inp->in6p_moptions &&
|
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
|
|
|
IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst)) {
|
2009-11-19 11:55:19 +00:00
|
|
|
/*
|
|
|
|
* If the incoming datagram is for MLD, allow it
|
|
|
|
* through unconditionally to the raw socket.
|
|
|
|
*
|
|
|
|
* Use the M_RTALERT_MLD flag to check for MLD
|
|
|
|
* traffic without having to inspect the mbuf chain
|
|
|
|
* more deeply, as all MLDv1/v2 host messages MUST
|
|
|
|
* contain the Router Alert option.
|
|
|
|
*
|
|
|
|
* In the case of MLDv1, we may not have explicitly
|
|
|
|
* joined the group, and may have set IFF_ALLMULTI
|
|
|
|
* on the interface. im6o_mc_filter() may discard
|
|
|
|
* control traffic we actually need to see.
|
|
|
|
*
|
|
|
|
* Userland multicast routing daemons should continue
|
|
|
|
* filter the control traffic appropriately.
|
|
|
|
*/
|
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
|
|
|
int blocked;
|
|
|
|
|
2009-11-19 11:55:19 +00:00
|
|
|
blocked = MCAST_PASS;
|
|
|
|
if ((m->m_flags & M_RTALERT_MLD) == 0) {
|
|
|
|
struct sockaddr_in6 mcaddr;
|
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
|
|
|
|
2009-11-19 11:55:19 +00:00
|
|
|
bzero(&mcaddr, sizeof(struct sockaddr_in6));
|
|
|
|
mcaddr.sin6_len = sizeof(struct sockaddr_in6);
|
|
|
|
mcaddr.sin6_family = AF_INET6;
|
|
|
|
mcaddr.sin6_addr = ip6->ip6_dst;
|
|
|
|
|
2019-08-02 07:41:36 +00:00
|
|
|
blocked = im6o_mc_filter(inp->in6p_moptions,
|
2009-11-19 11:55:19 +00:00
|
|
|
ifp,
|
|
|
|
(struct sockaddr *)&mcaddr,
|
|
|
|
(struct sockaddr *)&fromsa);
|
|
|
|
}
|
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 (blocked != MCAST_PASS) {
|
|
|
|
IP6STAT_INC(ip6s_notmember);
|
2021-12-02 22:45:04 +00:00
|
|
|
continue;
|
1999-11-22 02:45:11 +00:00
|
|
|
}
|
|
|
|
}
|
2021-12-02 22:45:04 +00:00
|
|
|
if ((n = m_copym(m, 0, M_COPYALL, M_NOWAIT)) == NULL)
|
|
|
|
continue;
|
|
|
|
if (inp->inp_flags & INP_CONTROLOPTS ||
|
|
|
|
inp->inp_socket->so_options & SO_TIMESTAMP)
|
|
|
|
ip6_savecontrol(inp, n, &opts);
|
|
|
|
/* strip intermediate headers */
|
|
|
|
m_adj(n, *offp);
|
|
|
|
if (sbappendaddr(&inp->inp_socket->so_rcv,
|
|
|
|
(struct sockaddr *)&fromsa, n, opts) == 0) {
|
|
|
|
soroverflow(inp->inp_socket);
|
|
|
|
m_freem(n);
|
1999-11-22 02:45:11 +00:00
|
|
|
if (opts)
|
|
|
|
m_freem(opts);
|
2013-06-19 20:48:34 +00:00
|
|
|
RIP6STAT_INC(rip6s_fullsock);
|
2021-12-02 22:45:04 +00:00
|
|
|
} else {
|
|
|
|
sorwakeup(inp->inp_socket);
|
|
|
|
delivered++;
|
|
|
|
}
|
|
|
|
opts = NULL;
|
|
|
|
}
|
|
|
|
if (delivered == 0) {
|
2013-06-19 20:48:34 +00:00
|
|
|
RIP6STAT_INC(rip6s_nosock);
|
2001-06-11 12:39:29 +00:00
|
|
|
if (m->m_flags & M_MCAST)
|
2013-06-19 20:48:34 +00:00
|
|
|
RIP6STAT_INC(rip6s_nosockmcast);
|
1999-11-22 02:45:11 +00:00
|
|
|
if (proto == IPPROTO_NONE)
|
|
|
|
m_freem(m);
|
2018-02-05 09:22:07 +00:00
|
|
|
else
|
1999-11-22 02:45:11 +00:00
|
|
|
icmp6_error(m, ICMP6_PARAM_PROB,
|
2008-07-05 18:03:39 +00:00
|
|
|
ICMP6_PARAMPROB_NEXTHEADER,
|
2018-02-05 09:22:07 +00:00
|
|
|
ip6_get_prevhdr(m, *offp));
|
2013-04-09 07:11:22 +00:00
|
|
|
IP6STAT_DEC(ip6s_delivered);
|
2021-12-02 22:45:04 +00:00
|
|
|
} else
|
|
|
|
m_freem(m);
|
2008-07-05 18:03:39 +00:00
|
|
|
return (IPPROTO_DONE);
|
1999-11-22 02:45:11 +00:00
|
|
|
}
|
|
|
|
|
2000-07-04 16:35:15 +00:00
|
|
|
void
|
2022-10-04 03:53:04 +00:00
|
|
|
rip6_ctlinput(struct ip6ctlparam *ip6cp)
|
2000-07-04 16:35:15 +00:00
|
|
|
{
|
2022-10-04 03:53:04 +00:00
|
|
|
int errno;
|
2000-07-04 16:35:15 +00:00
|
|
|
|
2022-10-04 03:53:04 +00:00
|
|
|
if ((errno = icmp6_errmap(ip6cp->ip6c_icmp6)) != 0)
|
|
|
|
in6_pcbnotify(&V_ripcbinfo, ip6cp->ip6c_finaldst, 0,
|
|
|
|
ip6cp->ip6c_src, 0, errno, ip6cp->ip6c_cmdarg,
|
|
|
|
in6_rtchange);
|
2000-07-04 16:35:15 +00:00
|
|
|
}
|
|
|
|
|
1999-11-22 02:45:11 +00:00
|
|
|
/*
|
2008-07-05 18:03:39 +00:00
|
|
|
* Generate IPv6 header and pass packet to ip6_output. Tack on options user
|
|
|
|
* may have setup with control call.
|
1999-11-22 02:45:11 +00:00
|
|
|
*/
|
2022-08-11 16:19:37 +00:00
|
|
|
static int
|
|
|
|
rip6_send(struct socket *so, int flags, struct mbuf *m, struct sockaddr *nam,
|
|
|
|
struct mbuf *control, struct thread *td)
|
1999-11-22 02:45:11 +00:00
|
|
|
{
|
2020-01-22 05:51:22 +00:00
|
|
|
struct epoch_tracker et;
|
2022-08-11 16:19:37 +00:00
|
|
|
struct inpcb *inp;
|
|
|
|
struct sockaddr_in6 tmp, *dstsock;
|
2010-08-19 11:31:03 +00:00
|
|
|
struct m_tag *mtag;
|
1999-11-22 02:45:11 +00:00
|
|
|
struct ip6_hdr *ip6;
|
|
|
|
u_int plen = m->m_pkthdr.len;
|
2005-07-21 16:32:50 +00:00
|
|
|
struct ip6_pktopts opt, *optp;
|
1999-11-22 02:45:11 +00:00
|
|
|
struct ifnet *oifp = NULL;
|
2022-08-11 16:19:37 +00:00
|
|
|
int error;
|
1999-11-22 02:45:11 +00:00
|
|
|
int type = 0, code = 0; /* for ICMPv6 output statistics only */
|
2005-07-25 12:31:43 +00:00
|
|
|
int scope_ambiguous = 0;
|
2010-08-17 17:30:56 +00:00
|
|
|
int use_defzone = 0;
|
2016-01-10 13:40:29 +00:00
|
|
|
int hlim = 0;
|
2009-06-23 22:08:55 +00:00
|
|
|
struct in6_addr in6a;
|
1999-11-22 02:45:11 +00:00
|
|
|
|
2019-08-02 07:41:36 +00:00
|
|
|
inp = sotoinpcb(so);
|
2022-08-11 16:19:37 +00:00
|
|
|
KASSERT(inp != NULL, ("rip6_send: inp == NULL"));
|
|
|
|
|
|
|
|
/* Always copy sockaddr to avoid overwrites. */
|
|
|
|
/* Unlocked read. */
|
|
|
|
if (so->so_state & SS_ISCONNECTED) {
|
|
|
|
if (nam) {
|
|
|
|
error = EISCONN;
|
|
|
|
goto release;
|
|
|
|
}
|
|
|
|
tmp = (struct sockaddr_in6 ){
|
|
|
|
.sin6_family = AF_INET6,
|
|
|
|
.sin6_len = sizeof(struct sockaddr_in6),
|
|
|
|
};
|
|
|
|
INP_RLOCK(inp);
|
|
|
|
bcopy(&inp->in6p_faddr, &tmp.sin6_addr,
|
|
|
|
sizeof(struct in6_addr));
|
|
|
|
INP_RUNLOCK(inp);
|
|
|
|
dstsock = &tmp;
|
|
|
|
} else {
|
|
|
|
if (nam == NULL)
|
|
|
|
error = ENOTCONN;
|
|
|
|
else if (nam->sa_family != AF_INET6)
|
|
|
|
error = EAFNOSUPPORT;
|
|
|
|
else if (nam->sa_len != sizeof(struct sockaddr_in6))
|
|
|
|
error = EINVAL;
|
|
|
|
else
|
|
|
|
error = 0;
|
|
|
|
if (error != 0)
|
|
|
|
goto release;
|
|
|
|
dstsock = (struct sockaddr_in6 *)nam;
|
|
|
|
if (dstsock->sin6_family != AF_INET6) {
|
|
|
|
error = EAFNOSUPPORT;
|
|
|
|
goto release;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-02 07:41:36 +00:00
|
|
|
INP_WLOCK(inp);
|
1999-11-22 02:45:11 +00:00
|
|
|
|
2008-12-16 06:01:08 +00:00
|
|
|
if (control != NULL) {
|
2021-05-19 19:10:03 +00:00
|
|
|
NET_EPOCH_ENTER(et);
|
2022-08-30 22:09:21 +00:00
|
|
|
error = ip6_setpktopts(control, &opt, inp->in6p_outputopts,
|
|
|
|
so->so_cred, inp->inp_ip_p);
|
2021-05-19 19:10:03 +00:00
|
|
|
NET_EPOCH_EXIT(et);
|
|
|
|
|
|
|
|
if (error != 0) {
|
1999-11-22 02:45:11 +00:00
|
|
|
goto bad;
|
2003-10-24 18:26:30 +00:00
|
|
|
}
|
2005-07-21 16:32:50 +00:00
|
|
|
optp = &opt;
|
|
|
|
} else
|
2019-08-02 07:41:36 +00:00
|
|
|
optp = inp->in6p_outputopts;
|
1999-11-22 02:45:11 +00:00
|
|
|
|
2005-07-25 12:31:43 +00:00
|
|
|
/*
|
|
|
|
* Check and convert scope zone ID into internal form.
|
2008-07-05 18:03:39 +00:00
|
|
|
*
|
2005-07-25 12:31:43 +00:00
|
|
|
* XXX: we may still need to determine the zone later.
|
|
|
|
*/
|
|
|
|
if (!(so->so_state & SS_ISCONNECTED)) {
|
2010-08-20 17:52:49 +00:00
|
|
|
if (!optp || !optp->ip6po_pktinfo ||
|
|
|
|
!optp->ip6po_pktinfo->ipi6_ifindex)
|
2010-08-17 17:30:56 +00:00
|
|
|
use_defzone = V_ip6_use_defzone;
|
|
|
|
if (dstsock->sin6_scope_id == 0 && !use_defzone)
|
2005-07-25 12:31:43 +00:00
|
|
|
scope_ambiguous = 1;
|
2010-08-17 17:30:56 +00:00
|
|
|
if ((error = sa6_embedscope(dstsock, use_defzone)) != 0)
|
2005-07-25 12:31:43 +00:00
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
|
1999-11-22 02:45:11 +00:00
|
|
|
/*
|
2008-07-05 18:03:39 +00:00
|
|
|
* For an ICMPv6 packet, we should know its type and code to update
|
|
|
|
* statistics.
|
1999-11-22 02:45:11 +00:00
|
|
|
*/
|
2022-08-30 22:09:21 +00:00
|
|
|
if (inp->inp_ip_p == IPPROTO_ICMPV6) {
|
1999-11-22 02:45:11 +00:00
|
|
|
struct icmp6_hdr *icmp6;
|
|
|
|
if (m->m_len < sizeof(struct icmp6_hdr) &&
|
|
|
|
(m = m_pullup(m, sizeof(struct icmp6_hdr))) == NULL) {
|
|
|
|
error = ENOBUFS;
|
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
icmp6 = mtod(m, struct icmp6_hdr *);
|
|
|
|
type = icmp6->icmp6_type;
|
|
|
|
code = icmp6->icmp6_code;
|
|
|
|
}
|
|
|
|
|
2012-12-05 08:04:20 +00:00
|
|
|
M_PREPEND(m, sizeof(*ip6), M_NOWAIT);
|
2004-08-12 18:31:36 +00:00
|
|
|
if (m == NULL) {
|
|
|
|
error = ENOBUFS;
|
|
|
|
goto bad;
|
|
|
|
}
|
1999-11-22 02:45:11 +00:00
|
|
|
ip6 = mtod(m, struct ip6_hdr *);
|
|
|
|
|
2020-10-18 17:15:47 +00:00
|
|
|
#ifdef ROUTE_MPATH
|
|
|
|
if (CALC_FLOWID_OUTBOUND) {
|
|
|
|
uint32_t hash_type, hash_val;
|
|
|
|
|
|
|
|
hash_val = fib6_calc_software_hash(&inp->in6p_laddr,
|
2022-08-30 22:09:21 +00:00
|
|
|
&dstsock->sin6_addr, 0, 0, inp->inp_ip_p, &hash_type);
|
2020-10-18 17:15:47 +00:00
|
|
|
inp->inp_flowid = hash_val;
|
|
|
|
inp->inp_flowtype = hash_type;
|
|
|
|
}
|
|
|
|
#endif
|
1999-11-22 02:45:11 +00:00
|
|
|
/*
|
|
|
|
* Source address selection.
|
|
|
|
*/
|
2021-02-13 14:32:10 +00:00
|
|
|
NET_EPOCH_ENTER(et);
|
2019-08-02 07:41:36 +00:00
|
|
|
error = in6_selectsrc_socket(dstsock, optp, inp, so->so_cred,
|
2016-01-10 13:40:29 +00:00
|
|
|
scope_ambiguous, &in6a, &hlim);
|
2021-02-13 14:32:10 +00:00
|
|
|
NET_EPOCH_EXIT(et);
|
2016-01-10 13:40:29 +00:00
|
|
|
|
2009-06-23 22:08:55 +00:00
|
|
|
if (error)
|
2003-10-24 18:26:30 +00:00
|
|
|
goto bad;
|
2019-08-02 07:41:36 +00:00
|
|
|
error = prison_check_ip6(inp->inp_cred, &in6a);
|
2009-02-05 14:06:09 +00:00
|
|
|
if (error != 0)
|
|
|
|
goto bad;
|
2009-06-23 22:08:55 +00:00
|
|
|
ip6->ip6_src = in6a;
|
2005-07-25 12:31:43 +00:00
|
|
|
|
|
|
|
ip6->ip6_dst = dstsock->sin6_addr;
|
|
|
|
|
2008-07-05 18:03:39 +00:00
|
|
|
/*
|
|
|
|
* Fill in the rest of the IPv6 header fields.
|
|
|
|
*/
|
1999-12-22 19:13:38 +00:00
|
|
|
ip6->ip6_flow = (ip6->ip6_flow & ~IPV6_FLOWINFO_MASK) |
|
2019-08-02 07:41:36 +00:00
|
|
|
(inp->inp_flow & IPV6_FLOWINFO_MASK);
|
1999-12-22 19:13:38 +00:00
|
|
|
ip6->ip6_vfc = (ip6->ip6_vfc & ~IPV6_VERSION_MASK) |
|
2008-07-05 18:03:39 +00:00
|
|
|
(IPV6_VERSION & IPV6_VERSION_MASK);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ip6_plen will be filled in ip6_output, so not fill it here.
|
|
|
|
*/
|
2019-08-02 07:41:36 +00:00
|
|
|
ip6->ip6_nxt = inp->inp_ip_p;
|
2016-01-10 13:40:29 +00:00
|
|
|
ip6->ip6_hlim = hlim;
|
1999-11-22 02:45:11 +00:00
|
|
|
|
2022-08-30 22:09:21 +00:00
|
|
|
if (inp->inp_ip_p == IPPROTO_ICMPV6 || inp->in6p_cksum != -1) {
|
1999-11-22 02:45:11 +00:00
|
|
|
struct mbuf *n;
|
|
|
|
int off;
|
|
|
|
u_int16_t *p;
|
|
|
|
|
2008-07-05 18:03:39 +00:00
|
|
|
/* Compute checksum. */
|
2022-08-30 22:09:21 +00:00
|
|
|
if (inp->inp_ip_p == IPPROTO_ICMPV6)
|
1999-11-22 02:45:11 +00:00
|
|
|
off = offsetof(struct icmp6_hdr, icmp6_cksum);
|
|
|
|
else
|
2019-08-02 07:41:36 +00:00
|
|
|
off = inp->in6p_cksum;
|
2019-04-19 17:21:35 +00:00
|
|
|
if (plen < off + 2) {
|
1999-11-22 02:45:11 +00:00
|
|
|
error = EINVAL;
|
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
off += sizeof(struct ip6_hdr);
|
|
|
|
|
|
|
|
n = m;
|
|
|
|
while (n && n->m_len <= off) {
|
|
|
|
off -= n->m_len;
|
|
|
|
n = n->m_next;
|
|
|
|
}
|
|
|
|
if (!n)
|
|
|
|
goto bad;
|
|
|
|
p = (u_int16_t *)(mtod(n, caddr_t) + off);
|
|
|
|
*p = 0;
|
|
|
|
*p = in6_cksum(m, ip6->ip6_nxt, sizeof(*ip6), plen);
|
|
|
|
}
|
|
|
|
|
2010-08-19 11:31:03 +00:00
|
|
|
/*
|
|
|
|
* Send RA/RS messages to user land for protection, before sending
|
|
|
|
* them to rtadvd/rtsol.
|
|
|
|
*/
|
|
|
|
if ((send_sendso_input_hook != NULL) &&
|
2022-08-30 22:09:21 +00:00
|
|
|
inp->inp_ip_p == IPPROTO_ICMPV6) {
|
2010-08-19 11:31:03 +00:00
|
|
|
switch (type) {
|
|
|
|
case ND_ROUTER_ADVERT:
|
|
|
|
case ND_ROUTER_SOLICIT:
|
|
|
|
mtag = m_tag_get(PACKET_TAG_ND_OUTGOING,
|
|
|
|
sizeof(unsigned short), M_NOWAIT);
|
|
|
|
if (mtag == NULL)
|
|
|
|
goto bad;
|
|
|
|
m_tag_prepend(m, mtag);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-22 05:51:22 +00:00
|
|
|
NET_EPOCH_ENTER(et);
|
2019-08-02 07:41:36 +00:00
|
|
|
error = ip6_output(m, optp, NULL, 0, inp->in6p_moptions, &oifp, inp);
|
2020-01-22 05:51:22 +00:00
|
|
|
NET_EPOCH_EXIT(et);
|
2022-08-30 22:09:21 +00:00
|
|
|
if (inp->inp_ip_p == IPPROTO_ICMPV6) {
|
1999-11-22 02:45:11 +00:00
|
|
|
if (oifp)
|
|
|
|
icmp6_ifoutstat_inc(oifp, type, code);
|
2009-04-12 13:22:33 +00:00
|
|
|
ICMP6STAT_INC(icp6s_outhist[type]);
|
2001-06-11 12:39:29 +00:00
|
|
|
} else
|
2013-06-19 20:48:34 +00:00
|
|
|
RIP6STAT_INC(rip6s_opackets);
|
1999-11-22 02:45:11 +00:00
|
|
|
|
|
|
|
goto freectl;
|
|
|
|
|
|
|
|
bad:
|
|
|
|
if (m)
|
|
|
|
m_freem(m);
|
|
|
|
|
|
|
|
freectl:
|
2008-12-16 06:01:08 +00:00
|
|
|
if (control != NULL) {
|
2005-07-21 16:32:50 +00:00
|
|
|
ip6_clearpktopts(&opt, -1);
|
1999-11-22 02:45:11 +00:00
|
|
|
m_freem(control);
|
2001-06-11 12:39:29 +00:00
|
|
|
}
|
2019-08-02 07:41:36 +00:00
|
|
|
INP_WUNLOCK(inp);
|
2003-10-06 14:02:09 +00:00
|
|
|
return (error);
|
2022-08-11 16:19:37 +00:00
|
|
|
|
|
|
|
release:
|
|
|
|
if (control != NULL)
|
|
|
|
m_freem(control);
|
|
|
|
m_freem(m);
|
|
|
|
return (error);
|
1999-11-22 02:45:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Raw IPv6 socket option processing.
|
|
|
|
*/
|
|
|
|
int
|
2007-07-05 16:23:49 +00:00
|
|
|
rip6_ctloutput(struct socket *so, struct sockopt *sopt)
|
1999-11-22 02:45:11 +00:00
|
|
|
{
|
2022-09-02 19:17:09 +00:00
|
|
|
struct inpcb *inp = sotoinpcb(so);
|
1999-11-22 02:45:11 +00:00
|
|
|
int error;
|
|
|
|
|
|
|
|
if (sopt->sopt_level == IPPROTO_ICMPV6)
|
|
|
|
/*
|
|
|
|
* XXX: is it better to call icmp6_ctloutput() directly
|
|
|
|
* from protosw?
|
|
|
|
*/
|
2003-10-06 14:02:09 +00:00
|
|
|
return (icmp6_ctloutput(so, sopt));
|
2012-02-03 11:00:53 +00:00
|
|
|
else if (sopt->sopt_level != IPPROTO_IPV6) {
|
|
|
|
if (sopt->sopt_level == SOL_SOCKET &&
|
|
|
|
sopt->sopt_name == SO_SETFIB) {
|
|
|
|
INP_WLOCK(inp);
|
|
|
|
inp->inp_inc.inc_fibnum = so->so_fibnum;
|
|
|
|
INP_WUNLOCK(inp);
|
|
|
|
return (0);
|
|
|
|
}
|
1999-11-22 02:45:11 +00:00
|
|
|
return (EINVAL);
|
2012-02-03 11:00:53 +00:00
|
|
|
}
|
1999-11-22 02:45:11 +00:00
|
|
|
|
|
|
|
error = 0;
|
|
|
|
|
|
|
|
switch (sopt->sopt_dir) {
|
|
|
|
case SOPT_GET:
|
|
|
|
switch (sopt->sopt_name) {
|
2000-01-28 05:27:14 +00:00
|
|
|
case MRT6_INIT:
|
|
|
|
case MRT6_DONE:
|
|
|
|
case MRT6_ADD_MIF:
|
|
|
|
case MRT6_DEL_MIF:
|
|
|
|
case MRT6_ADD_MFC:
|
|
|
|
case MRT6_DEL_MFC:
|
|
|
|
case MRT6_PIM:
|
2022-09-02 19:17:09 +00:00
|
|
|
if (inp->inp_ip_p != IPPROTO_ICMPV6)
|
|
|
|
return (EOPNOTSUPP);
|
2007-02-24 11:38:47 +00:00
|
|
|
error = ip6_mrouter_get ? ip6_mrouter_get(so, sopt) :
|
|
|
|
EOPNOTSUPP;
|
2000-01-28 05:27:14 +00:00
|
|
|
break;
|
2003-10-26 18:17:01 +00:00
|
|
|
case IPV6_CHECKSUM:
|
|
|
|
error = ip6_raw_ctloutput(so, sopt);
|
|
|
|
break;
|
1999-11-22 02:45:11 +00:00
|
|
|
default:
|
|
|
|
error = ip6_ctloutput(so, sopt);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SOPT_SET:
|
|
|
|
switch (sopt->sopt_name) {
|
2000-01-28 05:27:14 +00:00
|
|
|
case MRT6_INIT:
|
|
|
|
case MRT6_DONE:
|
|
|
|
case MRT6_ADD_MIF:
|
|
|
|
case MRT6_DEL_MIF:
|
|
|
|
case MRT6_ADD_MFC:
|
|
|
|
case MRT6_DEL_MFC:
|
|
|
|
case MRT6_PIM:
|
2022-09-02 19:17:09 +00:00
|
|
|
if (inp->inp_ip_p != IPPROTO_ICMPV6)
|
|
|
|
return (EOPNOTSUPP);
|
2007-02-24 11:38:47 +00:00
|
|
|
error = ip6_mrouter_set ? ip6_mrouter_set(so, sopt) :
|
|
|
|
EOPNOTSUPP;
|
2000-01-28 05:27:14 +00:00
|
|
|
break;
|
2003-10-26 18:17:01 +00:00
|
|
|
case IPV6_CHECKSUM:
|
|
|
|
error = ip6_raw_ctloutput(so, sopt);
|
|
|
|
break;
|
1999-11-22 02:45:11 +00:00
|
|
|
default:
|
|
|
|
error = ip6_ctloutput(so, sopt);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
rip6_attach(struct socket *so, int proto, struct thread *td)
|
1999-11-22 02:45:11 +00:00
|
|
|
{
|
|
|
|
struct inpcb *inp;
|
2005-03-29 01:26:27 +00:00
|
|
|
struct icmp6_filter *filter;
|
2006-04-12 03:07:22 +00:00
|
|
|
int error;
|
1999-11-22 02:45:11 +00:00
|
|
|
|
|
|
|
inp = sotoinpcb(so);
|
Update in_pcb-derived basic socket types following changes to
pru_abort(), pru_detach(), and in_pcbdetach():
- Universally support and enforce the invariant that so_pcb is
never NULL, converting dozens of unnecessary NULL checks into
assertions, and eliminating dozens of unnecessary error handling
cases in protocol code.
- In some cases, eliminate unnecessary pcbinfo locking, as it is no
longer required to ensure so_pcb != NULL. For example, in protocol
shutdown methods, and in raw IP send.
- Abort and detach protocol switch methods no longer return failures,
nor attempt to free sockets, as the socket layer does this.
- Invoke in_pcbfree() after in_pcbdetach() in order to free the
detached in_pcb structure for a socket.
MFC after: 3 months
2006-04-01 16:20:54 +00:00
|
|
|
KASSERT(inp == NULL, ("rip6_attach: inp != NULL"));
|
2008-07-05 18:03:39 +00:00
|
|
|
|
2008-01-24 08:25:59 +00:00
|
|
|
error = priv_check(td, PRIV_NETINET_RAW);
|
|
|
|
if (error)
|
2008-07-05 18:03:39 +00:00
|
|
|
return (error);
|
2022-08-30 22:09:21 +00:00
|
|
|
if (proto >= IPPROTO_MAX || proto < 0)
|
|
|
|
return (EPROTONOSUPPORT);
|
1999-12-22 19:13:38 +00:00
|
|
|
error = soreserve(so, rip_sendspace, rip_recvspace);
|
Update in_pcb-derived basic socket types following changes to
pru_abort(), pru_detach(), and in_pcbdetach():
- Universally support and enforce the invariant that so_pcb is
never NULL, converting dozens of unnecessary NULL checks into
assertions, and eliminating dozens of unnecessary error handling
cases in protocol code.
- In some cases, eliminate unnecessary pcbinfo locking, as it is no
longer required to ensure so_pcb != NULL. For example, in protocol
shutdown methods, and in raw IP send.
- Abort and detach protocol switch methods no longer return failures,
nor attempt to free sockets, as the socket layer does this.
- Invoke in_pcbfree() after in_pcbdetach() in order to free the
detached in_pcb structure for a socket.
MFC after: 3 months
2006-04-01 16:20:54 +00:00
|
|
|
if (error)
|
2008-07-05 18:03:39 +00:00
|
|
|
return (error);
|
2008-10-23 20:26:15 +00:00
|
|
|
filter = malloc(sizeof(struct icmp6_filter), M_PCB, M_NOWAIT);
|
Update in_pcb-derived basic socket types following changes to
pru_abort(), pru_detach(), and in_pcbdetach():
- Universally support and enforce the invariant that so_pcb is
never NULL, converting dozens of unnecessary NULL checks into
assertions, and eliminating dozens of unnecessary error handling
cases in protocol code.
- In some cases, eliminate unnecessary pcbinfo locking, as it is no
longer required to ensure so_pcb != NULL. For example, in protocol
shutdown methods, and in raw IP send.
- Abort and detach protocol switch methods no longer return failures,
nor attempt to free sockets, as the socket layer does this.
- Invoke in_pcbfree() after in_pcbdetach() in order to free the
detached in_pcb structure for a socket.
MFC after: 3 months
2006-04-01 16:20:54 +00:00
|
|
|
if (filter == NULL)
|
2008-07-05 18:03:39 +00:00
|
|
|
return (ENOMEM);
|
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 = in_pcballoc(so, &V_ripcbinfo);
|
2004-07-27 23:44:03 +00:00
|
|
|
if (error) {
|
2008-10-23 15:53:51 +00:00
|
|
|
free(filter, M_PCB);
|
2008-07-05 18:03:39 +00:00
|
|
|
return (error);
|
2004-07-27 23:44:03 +00:00
|
|
|
}
|
1999-11-22 02:45:11 +00:00
|
|
|
inp = (struct inpcb *)so->so_pcb;
|
2022-08-30 22:09:21 +00:00
|
|
|
inp->inp_ip_p = proto;
|
1999-11-22 02:45:11 +00:00
|
|
|
inp->in6p_cksum = -1;
|
2005-03-29 01:26:27 +00:00
|
|
|
inp->in6p_icmp6filt = filter;
|
1999-11-22 02:45:11 +00:00
|
|
|
ICMP6_FILTER_SETPASSALL(inp->in6p_icmp6filt);
|
2008-04-17 21:38:18 +00:00
|
|
|
INP_WUNLOCK(inp);
|
2008-07-05 18:03:39 +00:00
|
|
|
return (0);
|
1999-11-22 02:45:11 +00:00
|
|
|
}
|
|
|
|
|
Chance protocol switch method pru_detach() so that it returns void
rather than an error. Detaches do not "fail", they other occur or
the protocol flags SS_PROTOREF to take ownership of the socket.
soclose() no longer looks at so_pcb to see if it's NULL, relying
entirely on the protocol to decide whether it's time to free the
socket or not using SS_PROTOREF. so_pcb is now entirely owned and
managed by the protocol code. Likewise, no longer test so_pcb in
other socket functions, such as soreceive(), which have no business
digging into protocol internals.
Protocol detach routines no longer try to free the socket on detach,
this is performed in the socket code if the protocol permits it.
In rts_detach(), no longer test for rp != NULL in detach, and
likewise in other protocols that don't permit a NULL so_pcb, reduce
the incidence of testing for it during detach.
netinet and netinet6 are not fully updated to this change, which
will be in an upcoming commit. In their current state they may leak
memory or panic.
MFC after: 3 months
2006-04-01 15:42:02 +00:00
|
|
|
static void
|
1999-11-22 02:45:11 +00:00
|
|
|
rip6_detach(struct socket *so)
|
|
|
|
{
|
|
|
|
struct inpcb *inp;
|
|
|
|
|
|
|
|
inp = sotoinpcb(so);
|
Update in_pcb-derived basic socket types following changes to
pru_abort(), pru_detach(), and in_pcbdetach():
- Universally support and enforce the invariant that so_pcb is
never NULL, converting dozens of unnecessary NULL checks into
assertions, and eliminating dozens of unnecessary error handling
cases in protocol code.
- In some cases, eliminate unnecessary pcbinfo locking, as it is no
longer required to ensure so_pcb != NULL. For example, in protocol
shutdown methods, and in raw IP send.
- Abort and detach protocol switch methods no longer return failures,
nor attempt to free sockets, as the socket layer does this.
- Invoke in_pcbfree() after in_pcbdetach() in order to free the
detached in_pcb structure for a socket.
MFC after: 3 months
2006-04-01 16:20:54 +00:00
|
|
|
KASSERT(inp != NULL, ("rip6_detach: inp == NULL"));
|
2006-07-21 17:11:15 +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 && ip6_mrouter_done)
|
2000-02-27 18:35:10 +00:00
|
|
|
ip6_mrouter_done();
|
2007-02-24 11:38:47 +00:00
|
|
|
/* xxx: RSVP */
|
2008-04-17 21:38:18 +00:00
|
|
|
INP_WLOCK(inp);
|
2008-10-23 15:53:51 +00:00
|
|
|
free(inp->in6p_icmp6filt, M_PCB);
|
2008-11-26 20:52:26 +00:00
|
|
|
in_pcbdetach(inp);
|
2008-11-27 12:04:35 +00:00
|
|
|
in_pcbfree(inp);
|
1999-11-22 02:45:11 +00:00
|
|
|
}
|
|
|
|
|
2006-07-21 17:11:15 +00:00
|
|
|
/* XXXRW: This can't ever be called. */
|
2006-04-01 15:15:05 +00:00
|
|
|
static void
|
1999-11-22 02:45:11 +00:00
|
|
|
rip6_abort(struct socket *so)
|
|
|
|
{
|
2022-04-13 23:08:19 +00:00
|
|
|
struct inpcb *inp __diagused;
|
2006-07-21 17:11:15 +00:00
|
|
|
|
|
|
|
inp = sotoinpcb(so);
|
|
|
|
KASSERT(inp != NULL, ("rip6_abort: inp == NULL"));
|
|
|
|
|
|
|
|
soisdisconnected(so);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
rip6_close(struct socket *so)
|
|
|
|
{
|
2022-04-13 23:08:19 +00:00
|
|
|
struct inpcb *inp __diagused;
|
2006-07-21 17:11:15 +00:00
|
|
|
|
|
|
|
inp = sotoinpcb(so);
|
|
|
|
KASSERT(inp != NULL, ("rip6_close: inp == NULL"));
|
|
|
|
|
1999-11-22 02:45:11 +00:00
|
|
|
soisdisconnected(so);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
rip6_disconnect(struct socket *so)
|
|
|
|
{
|
2008-07-05 18:03:39 +00:00
|
|
|
struct inpcb *inp;
|
|
|
|
|
|
|
|
inp = sotoinpcb(so);
|
|
|
|
KASSERT(inp != NULL, ("rip6_disconnect: inp == NULL"));
|
1999-11-22 02:45:11 +00:00
|
|
|
|
2002-05-31 11:52:35 +00:00
|
|
|
if ((so->so_state & SS_ISCONNECTED) == 0)
|
2008-07-05 18:03:39 +00:00
|
|
|
return (ENOTCONN);
|
1999-11-22 02:45:11 +00:00
|
|
|
inp->in6p_faddr = in6addr_any;
|
2006-04-01 15:15:05 +00:00
|
|
|
rip6_abort(so);
|
Update in_pcb-derived basic socket types following changes to
pru_abort(), pru_detach(), and in_pcbdetach():
- Universally support and enforce the invariant that so_pcb is
never NULL, converting dozens of unnecessary NULL checks into
assertions, and eliminating dozens of unnecessary error handling
cases in protocol code.
- In some cases, eliminate unnecessary pcbinfo locking, as it is no
longer required to ensure so_pcb != NULL. For example, in protocol
shutdown methods, and in raw IP send.
- Abort and detach protocol switch methods no longer return failures,
nor attempt to free sockets, as the socket layer does this.
- Invoke in_pcbfree() after in_pcbdetach() in order to free the
detached in_pcb structure for a socket.
MFC after: 3 months
2006-04-01 16:20:54 +00:00
|
|
|
return (0);
|
1999-11-22 02:45:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
rip6_bind(struct socket *so, struct sockaddr *nam, struct thread *td)
|
1999-11-22 02:45:11 +00:00
|
|
|
{
|
2019-10-09 05:52:07 +00:00
|
|
|
struct epoch_tracker et;
|
2008-07-05 18:03:39 +00:00
|
|
|
struct inpcb *inp;
|
1999-11-22 02:45:11 +00:00
|
|
|
struct sockaddr_in6 *addr = (struct sockaddr_in6 *)nam;
|
2009-06-23 20:19:09 +00:00
|
|
|
struct ifaddr *ifa = NULL;
|
2005-07-25 12:31:43 +00:00
|
|
|
int error = 0;
|
1999-11-22 02:45:11 +00:00
|
|
|
|
2008-07-05 18:03:39 +00:00
|
|
|
inp = sotoinpcb(so);
|
Update in_pcb-derived basic socket types following changes to
pru_abort(), pru_detach(), and in_pcbdetach():
- Universally support and enforce the invariant that so_pcb is
never NULL, converting dozens of unnecessary NULL checks into
assertions, and eliminating dozens of unnecessary error handling
cases in protocol code.
- In some cases, eliminate unnecessary pcbinfo locking, as it is no
longer required to ensure so_pcb != NULL. For example, in protocol
shutdown methods, and in raw IP send.
- Abort and detach protocol switch methods no longer return failures,
nor attempt to free sockets, as the socket layer does this.
- Invoke in_pcbfree() after in_pcbdetach() in order to free the
detached in_pcb structure for a socket.
MFC after: 3 months
2006-04-01 16:20:54 +00:00
|
|
|
KASSERT(inp != NULL, ("rip6_bind: inp == NULL"));
|
2008-07-05 18:03:39 +00:00
|
|
|
|
2021-05-03 16:51:04 +00:00
|
|
|
if (nam->sa_family != AF_INET6)
|
|
|
|
return (EAFNOSUPPORT);
|
1999-11-22 02:45:11 +00:00
|
|
|
if (nam->sa_len != sizeof(*addr))
|
2008-07-05 18:03:39 +00:00
|
|
|
return (EINVAL);
|
2009-02-05 14:06:09 +00:00
|
|
|
if ((error = prison_check_ip6(td->td_ucred, &addr->sin6_addr)) != 0)
|
|
|
|
return (error);
|
2018-05-23 21:02:14 +00:00
|
|
|
if (CK_STAILQ_EMPTY(&V_ifnet) || addr->sin6_family != AF_INET6)
|
2008-07-05 18:03:39 +00:00
|
|
|
return (EADDRNOTAVAIL);
|
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 ((error = sa6_embedscope(addr, V_ip6_use_defzone)) != 0)
|
2008-07-05 18:03:39 +00:00
|
|
|
return (error);
|
2005-07-25 12:31:43 +00:00
|
|
|
|
2019-10-09 05:52:07 +00:00
|
|
|
NET_EPOCH_ENTER(et);
|
1999-11-22 02:45:11 +00:00
|
|
|
if (!IN6_IS_ADDR_UNSPECIFIED(&addr->sin6_addr) &&
|
2019-10-09 05:52:07 +00:00
|
|
|
(ifa = ifa_ifwithaddr((struct sockaddr *)addr)) == NULL) {
|
|
|
|
NET_EPOCH_EXIT(et);
|
2008-07-05 18:03:39 +00:00
|
|
|
return (EADDRNOTAVAIL);
|
2019-10-09 05:52:07 +00:00
|
|
|
}
|
2009-06-23 20:19:09 +00:00
|
|
|
if (ifa != NULL &&
|
|
|
|
((struct in6_ifaddr *)ifa)->ia6_flags &
|
1999-11-22 02:45:11 +00:00
|
|
|
(IN6_IFF_ANYCAST|IN6_IFF_NOTREADY|
|
2019-10-09 05:52:07 +00:00
|
|
|
IN6_IFF_DETACHED|IN6_IFF_DEPRECATED)) {
|
|
|
|
NET_EPOCH_EXIT(et);
|
2003-10-06 14:02:09 +00:00
|
|
|
return (EADDRNOTAVAIL);
|
2019-10-09 05:52:07 +00:00
|
|
|
}
|
|
|
|
NET_EPOCH_EXIT(et);
|
2008-04-17 21:38:18 +00:00
|
|
|
INP_WLOCK(inp);
|
2022-06-14 15:27:38 +00:00
|
|
|
INP_INFO_WLOCK(&V_ripcbinfo);
|
1999-11-22 02:45:11 +00:00
|
|
|
inp->in6p_laddr = addr->sin6_addr;
|
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
|
|
|
INP_INFO_WUNLOCK(&V_ripcbinfo);
|
2022-06-14 15:27:38 +00:00
|
|
|
INP_WUNLOCK(inp);
|
2008-07-05 18:03:39 +00:00
|
|
|
return (0);
|
1999-11-22 02:45:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
rip6_connect(struct socket *so, struct sockaddr *nam, struct thread *td)
|
1999-11-22 02:45:11 +00:00
|
|
|
{
|
2008-07-05 18:03:39 +00:00
|
|
|
struct inpcb *inp;
|
1999-11-22 02:45:11 +00:00
|
|
|
struct sockaddr_in6 *addr = (struct sockaddr_in6 *)nam;
|
2009-06-23 22:08:55 +00:00
|
|
|
struct in6_addr in6a;
|
2021-02-13 14:32:10 +00:00
|
|
|
struct epoch_tracker et;
|
2005-07-25 12:31:43 +00:00
|
|
|
int error = 0, scope_ambiguous = 0;
|
1999-11-22 02:45:11 +00:00
|
|
|
|
2008-07-05 18:03:39 +00:00
|
|
|
inp = sotoinpcb(so);
|
Update in_pcb-derived basic socket types following changes to
pru_abort(), pru_detach(), and in_pcbdetach():
- Universally support and enforce the invariant that so_pcb is
never NULL, converting dozens of unnecessary NULL checks into
assertions, and eliminating dozens of unnecessary error handling
cases in protocol code.
- In some cases, eliminate unnecessary pcbinfo locking, as it is no
longer required to ensure so_pcb != NULL. For example, in protocol
shutdown methods, and in raw IP send.
- Abort and detach protocol switch methods no longer return failures,
nor attempt to free sockets, as the socket layer does this.
- Invoke in_pcbfree() after in_pcbdetach() in order to free the
detached in_pcb structure for a socket.
MFC after: 3 months
2006-04-01 16:20:54 +00:00
|
|
|
KASSERT(inp != NULL, ("rip6_connect: inp == NULL"));
|
2008-07-05 18:03:39 +00:00
|
|
|
|
1999-11-22 02:45:11 +00:00
|
|
|
if (nam->sa_len != sizeof(*addr))
|
2008-07-05 18:03:39 +00:00
|
|
|
return (EINVAL);
|
2018-05-23 21:02:14 +00:00
|
|
|
if (CK_STAILQ_EMPTY(&V_ifnet))
|
2008-07-05 18:03:39 +00:00
|
|
|
return (EADDRNOTAVAIL);
|
1999-11-22 02:45:11 +00:00
|
|
|
if (addr->sin6_family != AF_INET6)
|
2008-07-05 18:03:39 +00:00
|
|
|
return (EAFNOSUPPORT);
|
2005-07-25 12:31:43 +00:00
|
|
|
|
|
|
|
/*
|
2008-07-05 18:03:39 +00:00
|
|
|
* Application should provide a proper zone ID or the use of default
|
|
|
|
* zone IDs should be enabled. Unfortunately, some applications do
|
|
|
|
* not behave as it should, so we need a workaround. Even if an
|
|
|
|
* appropriate ID is not determined, we'll see if we can determine
|
|
|
|
* the outgoing interface. If we can, determine the zone ID based on
|
|
|
|
* the interface below.
|
2005-07-25 12:31:43 +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
|
|
|
if (addr->sin6_scope_id == 0 && !V_ip6_use_defzone)
|
2005-07-25 12:31:43 +00:00
|
|
|
scope_ambiguous = 1;
|
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 ((error = sa6_embedscope(addr, V_ip6_use_defzone)) != 0)
|
2008-07-05 18:03:39 +00:00
|
|
|
return (error);
|
2005-07-25 12:31:43 +00:00
|
|
|
|
2008-04-17 21:38:18 +00:00
|
|
|
INP_WLOCK(inp);
|
2021-12-16 14:11:42 +00:00
|
|
|
INP_INFO_WLOCK(&V_ripcbinfo);
|
1999-11-22 02:45:11 +00:00
|
|
|
/* Source address selection. XXX: need pcblookup? */
|
2021-02-13 14:32:10 +00:00
|
|
|
NET_EPOCH_ENTER(et);
|
2016-01-10 13:40:29 +00:00
|
|
|
error = in6_selectsrc_socket(addr, inp->in6p_outputopts,
|
|
|
|
inp, so->so_cred, scope_ambiguous, &in6a, NULL);
|
2021-02-13 14:32:10 +00:00
|
|
|
NET_EPOCH_EXIT(et);
|
2009-06-23 22:08:55 +00:00
|
|
|
if (error) {
|
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
|
|
|
INP_INFO_WUNLOCK(&V_ripcbinfo);
|
2021-12-16 14:11:42 +00:00
|
|
|
INP_WUNLOCK(inp);
|
2009-06-23 22:08:55 +00:00
|
|
|
return (error);
|
2004-07-27 23:44:03 +00:00
|
|
|
}
|
2005-07-25 12:31:43 +00:00
|
|
|
|
1999-11-22 02:45:11 +00:00
|
|
|
inp->in6p_faddr = addr->sin6_addr;
|
2009-06-23 22:08:55 +00:00
|
|
|
inp->in6p_laddr = in6a;
|
1999-11-22 02:45:11 +00:00
|
|
|
soisconnected(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
|
|
|
INP_INFO_WUNLOCK(&V_ripcbinfo);
|
2021-12-16 14:11:42 +00:00
|
|
|
INP_WUNLOCK(inp);
|
2008-07-05 18:03:39 +00:00
|
|
|
return (0);
|
1999-11-22 02:45:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
rip6_shutdown(struct socket *so)
|
|
|
|
{
|
2004-07-27 23:44:03 +00:00
|
|
|
struct inpcb *inp;
|
|
|
|
|
|
|
|
inp = sotoinpcb(so);
|
Update in_pcb-derived basic socket types following changes to
pru_abort(), pru_detach(), and in_pcbdetach():
- Universally support and enforce the invariant that so_pcb is
never NULL, converting dozens of unnecessary NULL checks into
assertions, and eliminating dozens of unnecessary error handling
cases in protocol code.
- In some cases, eliminate unnecessary pcbinfo locking, as it is no
longer required to ensure so_pcb != NULL. For example, in protocol
shutdown methods, and in raw IP send.
- Abort and detach protocol switch methods no longer return failures,
nor attempt to free sockets, as the socket layer does this.
- Invoke in_pcbfree() after in_pcbdetach() in order to free the
detached in_pcb structure for a socket.
MFC after: 3 months
2006-04-01 16:20:54 +00:00
|
|
|
KASSERT(inp != NULL, ("rip6_shutdown: inp == NULL"));
|
2008-07-05 18:03:39 +00:00
|
|
|
|
2008-04-17 21:38:18 +00:00
|
|
|
INP_WLOCK(inp);
|
1999-11-22 02:45:11 +00:00
|
|
|
socantsendmore(so);
|
2008-04-17 21:38:18 +00:00
|
|
|
INP_WUNLOCK(inp);
|
2008-07-05 18:03:39 +00:00
|
|
|
return (0);
|
1999-11-22 02:45:11 +00:00
|
|
|
}
|
|
|
|
|
2022-08-17 18:50:32 +00:00
|
|
|
struct protosw rip6_protosw = {
|
2022-08-30 22:09:21 +00:00
|
|
|
.pr_type = SOCK_RAW,
|
|
|
|
.pr_flags = PR_ATOMIC|PR_ADDR,
|
|
|
|
.pr_ctloutput = rip6_ctloutput,
|
|
|
|
.pr_abort = rip6_abort,
|
|
|
|
.pr_attach = rip6_attach,
|
|
|
|
.pr_bind = rip6_bind,
|
|
|
|
.pr_connect = rip6_connect,
|
|
|
|
.pr_control = in6_control,
|
|
|
|
.pr_detach = rip6_detach,
|
|
|
|
.pr_disconnect = rip6_disconnect,
|
|
|
|
.pr_peeraddr = in6_getpeeraddr,
|
|
|
|
.pr_send = rip6_send,
|
|
|
|
.pr_shutdown = rip6_shutdown,
|
|
|
|
.pr_sockaddr = in6_getsockaddr,
|
|
|
|
.pr_close = rip6_close
|
1999-11-22 02:45:11 +00:00
|
|
|
};
|