2005-01-07 01:45:51 +00:00
|
|
|
/*-
|
1994-05-24 10:09:53 +00:00
|
|
|
* Copyright (c) 1982, 1986, 1989, 1993
|
2007-02-20 10:13:11 +00:00
|
|
|
* The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
1994-05-24 10:09:53 +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.
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* @(#)udp_var.h 8.1 (Berkeley) 6/10/93
|
1999-08-28 01:08:13 +00:00
|
|
|
* $FreeBSD$
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
|
|
|
|
1994-08-21 05:27:42 +00:00
|
|
|
#ifndef _NETINET_UDP_VAR_H_
|
2007-02-20 10:13:11 +00:00
|
|
|
#define _NETINET_UDP_VAR_H_
|
1994-08-21 05:27:42 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* UDP kernel structures and variables.
|
|
|
|
*/
|
2007-02-20 10:13:11 +00:00
|
|
|
struct udpiphdr {
|
|
|
|
struct ipovly ui_i; /* overlaid ip structure */
|
|
|
|
struct udphdr ui_u; /* udp header */
|
1994-05-24 10:09:53 +00:00
|
|
|
};
|
|
|
|
#define ui_x1 ui_i.ih_x1
|
|
|
|
#define ui_pr ui_i.ih_pr
|
|
|
|
#define ui_len ui_i.ih_len
|
|
|
|
#define ui_src ui_i.ih_src
|
|
|
|
#define ui_dst ui_i.ih_dst
|
|
|
|
#define ui_sport ui_u.uh_sport
|
|
|
|
#define ui_dport ui_u.uh_dport
|
|
|
|
#define ui_ulen ui_u.uh_ulen
|
|
|
|
#define ui_sum ui_u.uh_sum
|
|
|
|
|
2009-05-23 16:51:13 +00:00
|
|
|
typedef void(*udp_tun_func_t)(struct mbuf *, int off, struct inpcb *);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* UDP control block; one per udp.
|
|
|
|
*/
|
|
|
|
struct udpcb {
|
|
|
|
udp_tun_func_t u_tun_func; /* UDP kernel tunneling callback. */
|
|
|
|
u_int u_flags; /* Generic UDP flags. */
|
|
|
|
};
|
|
|
|
|
|
|
|
#define intoudpcb(ip) ((struct udpcb *)(ip)->inp_ppcb)
|
|
|
|
#define sotoudpcb(so) (intoudpcb(sotoinpcb(so)))
|
|
|
|
|
Added support for NAT-Traversal (RFC 3948) in IPsec stack.
Thanks to (no special order) Emmanuel Dreyfus (manu@netbsd.org), Larry
Baird (lab@gta.com), gnn, bz, and other FreeBSD devs, Julien Vanherzeele
(julien.vanherzeele@netasq.com, for years of bug reporting), the PFSense
team, and all people who used / tried the NAT-T patch for years and
reported bugs, patches, etc...
X-MFC: never
Reviewed by: bz
Approved by: gnn(mentor)
Obtained from: NETASQ
2009-06-12 15:44:35 +00:00
|
|
|
/* IPsec: ESP in UDP tunneling: */
|
|
|
|
#define UF_ESPINUDP_NON_IKE 0x00000001 /* w/ non-IKE marker .. */
|
|
|
|
/* .. per draft-ietf-ipsec-nat-t-ike-0[01],
|
|
|
|
* and draft-ietf-ipsec-udp-encaps-(00/)01.txt */
|
|
|
|
#define UF_ESPINUDP 0x00000002 /* w/ non-ESP marker. */
|
|
|
|
|
2007-02-20 10:13:11 +00:00
|
|
|
struct udpstat {
|
1994-05-24 10:09:53 +00:00
|
|
|
/* input statistics: */
|
|
|
|
u_long udps_ipackets; /* total input packets */
|
|
|
|
u_long udps_hdrops; /* packet shorter than header */
|
|
|
|
u_long udps_badsum; /* checksum error */
|
1999-11-05 14:41:39 +00:00
|
|
|
u_long udps_nosum; /* no checksum */
|
1994-05-24 10:09:53 +00:00
|
|
|
u_long udps_badlen; /* data length larger than packet */
|
|
|
|
u_long udps_noport; /* no socket on port */
|
|
|
|
u_long udps_noportbcast; /* of above, arrived as broadcast */
|
|
|
|
u_long udps_fullsock; /* not delivered, input socket full */
|
|
|
|
u_long udpps_pcbcachemiss; /* input packets missing pcb cache */
|
1996-06-05 17:20:35 +00:00
|
|
|
u_long udpps_pcbhashmiss; /* input packets not for hashed pcb */
|
1994-05-24 10:09:53 +00:00
|
|
|
/* output statistics: */
|
|
|
|
u_long udps_opackets; /* total output packets */
|
1997-08-16 19:16:27 +00:00
|
|
|
u_long udps_fastout; /* output packets on fast path */
|
1999-11-05 14:41:39 +00:00
|
|
|
/* of no socket on port, arrived as multicast */
|
|
|
|
u_long udps_noportmcast;
|
Import rewrite of IPv4 socket multicast layer to support source-specific
and protocol-independent host mode multicast. The code is written to
accomodate IPv6, IGMPv3 and MLDv2 with only a little additional work.
This change only pertains to FreeBSD's use as a multicast end-station and
does not concern multicast routing; for an IGMPv3/MLDv2 router
implementation, consider the XORP project.
The work is based on Wilbert de Graaf's IGMPv3 code drop for FreeBSD 4.6,
which is available at: http://www.kloosterhof.com/wilbert/igmpv3.html
Summary
* IPv4 multicast socket processing is now moved out of ip_output.c
into a new module, in_mcast.c.
* The in_mcast.c module implements the IPv4 legacy any-source API in
terms of the protocol-independent source-specific API.
* Source filters are lazy allocated as the common case does not use them.
They are part of per inpcb state and are covered by the inpcb lock.
* struct ip_mreqn is now supported to allow applications to specify
multicast joins by interface index in the legacy IPv4 any-source API.
* In UDP, an incoming multicast datagram only requires that the source
port matches the 4-tuple if the socket was already bound by source port.
An unbound socket SHOULD be able to receive multicasts sent from an
ephemeral source port.
* The UDP socket multicast filter mode defaults to exclusive, that is,
sources present in the per-socket list will be blocked from delivery.
* The RFC 3678 userland functions have been added to libc: setsourcefilter,
getsourcefilter, setipv4sourcefilter, getipv4sourcefilter.
* Definitions for IGMPv3 are merged but not yet used.
* struct sockaddr_storage is now referenced from <netinet/in.h>. It
is therefore defined there if not already declared in the same way
as for the C99 types.
* The RFC 1724 hack (specify 0.0.0.0/8 addresses to IP_MULTICAST_IF
which are then interpreted as interface indexes) is now deprecated.
* A patch for the Rhyolite.com routed in the FreeBSD base system
is available in the -net archives. This only affects individuals
running RIPv1 or RIPv2 via point-to-point and/or unnumbered interfaces.
* Make IPv6 detach path similar to IPv4's in code flow; functionally same.
* Bump __FreeBSD_version to 700048; see UPDATING.
This work was financially supported by another FreeBSD committer.
Obtained from: p4://bms_netdev
Submitted by: Wilbert de Graaf (original work)
Reviewed by: rwatson (locking), silence from fenner,
net@ (but with encouragement)
2007-06-12 16:24:56 +00:00
|
|
|
u_long udps_filtermcast; /* blocked by multicast filter */
|
1994-05-24 10:09:53 +00:00
|
|
|
};
|
|
|
|
|
2009-04-12 11:42:40 +00:00
|
|
|
#ifdef _KERNEL
|
2009-08-02 19:43:32 +00:00
|
|
|
/*
|
|
|
|
* In-kernel consumers can use these accessor macros directly to update
|
|
|
|
* stats.
|
|
|
|
*/
|
2009-04-12 11:42:40 +00:00
|
|
|
#define UDPSTAT_ADD(name, val) V_udpstat.name += (val)
|
|
|
|
#define UDPSTAT_INC(name) UDPSTAT_ADD(name, 1)
|
2009-08-02 19:43:32 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Kernel module consumers must use this accessor macro.
|
|
|
|
*/
|
|
|
|
void kmod_udpstat_inc(int statnum);
|
|
|
|
#define KMOD_UDPSTAT_INC(name) \
|
|
|
|
kmod_udpstat_inc(offsetof(struct udpstat, name) / sizeof(u_long))
|
2009-04-12 11:42:40 +00:00
|
|
|
#endif
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
2007-02-20 10:13:11 +00:00
|
|
|
* Names for UDP sysctl objects.
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
|
|
|
#define UDPCTL_CHECKSUM 1 /* checksum UDP packets */
|
2007-02-20 10:13:11 +00:00
|
|
|
#define UDPCTL_STATS 2 /* statistics (read-only) */
|
1995-02-16 00:27:47 +00:00
|
|
|
#define UDPCTL_MAXDGRAM 3 /* max datagram size */
|
|
|
|
#define UDPCTL_RECVSPACE 4 /* default receive buffer space */
|
1998-05-15 20:11:40 +00:00
|
|
|
#define UDPCTL_PCBLIST 5 /* list of PCBs for UDP sockets */
|
2007-02-20 10:13:11 +00:00
|
|
|
#define UDPCTL_MAXID 6
|
1994-05-24 10:09:53 +00:00
|
|
|
|
2007-02-20 10:13:11 +00:00
|
|
|
#define UDPCTL_NAMES { \
|
|
|
|
{ 0, 0 }, \
|
|
|
|
{ "checksum", CTLTYPE_INT }, \
|
|
|
|
{ "stats", CTLTYPE_STRUCT }, \
|
|
|
|
{ "maxdgram", CTLTYPE_INT }, \
|
|
|
|
{ "recvspace", CTLTYPE_INT }, \
|
|
|
|
{ "pcblist", CTLTYPE_STRUCT }, \
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
1999-12-29 04:46:21 +00:00
|
|
|
#ifdef _KERNEL
|
1999-02-16 10:49:55 +00:00
|
|
|
SYSCTL_DECL(_net_inet_udp);
|
|
|
|
|
2007-02-20 10:13:11 +00:00
|
|
|
extern struct pr_usrreqs udp_usrreqs;
|
2008-12-11 16:26:38 +00:00
|
|
|
|
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 inpcbhead, udb);
|
|
|
|
VNET_DECLARE(struct inpcbinfo, udbinfo);
|
|
|
|
VNET_DECLARE(struct udpstat, udpstat);
|
|
|
|
VNET_DECLARE(int, udp_blackhole);
|
|
|
|
|
2009-07-16 21:13:04 +00:00
|
|
|
#define V_udb VNET(udb)
|
|
|
|
#define V_udbinfo VNET(udbinfo)
|
|
|
|
#define V_udpstat VNET(udpstat)
|
|
|
|
#define V_udp_blackhole VNET(udp_blackhole)
|
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-12-11 16:26:38 +00:00
|
|
|
extern u_long udp_sendspace;
|
|
|
|
extern u_long udp_recvspace;
|
2007-02-20 10:20:03 +00:00
|
|
|
extern int udp_log_in_vain;
|
1994-05-24 10:09:53 +00:00
|
|
|
|
2009-05-23 16:51:13 +00:00
|
|
|
int udp_newudpcb(struct inpcb *);
|
|
|
|
void udp_discardcb(struct udpcb *);
|
|
|
|
|
2007-02-20 10:13:11 +00:00
|
|
|
void udp_ctlinput(int, struct sockaddr *, void *);
|
Added support for NAT-Traversal (RFC 3948) in IPsec stack.
Thanks to (no special order) Emmanuel Dreyfus (manu@netbsd.org), Larry
Baird (lab@gta.com), gnn, bz, and other FreeBSD devs, Julien Vanherzeele
(julien.vanherzeele@netasq.com, for years of bug reporting), the PFSense
team, and all people who used / tried the NAT-T patch for years and
reported bugs, patches, etc...
X-MFC: never
Reviewed by: bz
Approved by: gnn(mentor)
Obtained from: NETASQ
2009-06-12 15:44:35 +00:00
|
|
|
int udp_ctloutput(struct socket *, struct sockopt *);
|
2007-02-20 10:13:11 +00:00
|
|
|
void udp_init(void);
|
Introduce an infrastructure for dismantling vnet instances.
Vnet modules and protocol domains may now register destructor
functions to clean up and release per-module state. The destructor
mechanisms can be triggered by invoking "vimage -d", or a future
equivalent command which will be provided via the new jail framework.
While this patch introduces numerous placeholder destructor functions,
many of those are currently incomplete, thus leaking memory or (even
worse) failing to stop all running timers. Many of such issues are
already known and will be incrementaly fixed over the next weeks in
smaller incremental commits.
Apart from introducing new fields in structs ifnet, domain, protosw
and vnet_net, which requires the kernel and modules to be rebuilt, this
change should have no impact on nooptions VIMAGE builds, since vnet
destructors can only be called in VIMAGE kernels. Moreover,
destructor functions should be in general compiled in only in
options VIMAGE builds, except for kernel modules which can be safely
kldunloaded at run time.
Bump __FreeBSD_version to 800097.
Reviewed by: bz, julian
Approved by: rwatson, kib (re), julian (mentor)
2009-06-08 17:15:40 +00:00
|
|
|
#ifdef VIMAGE
|
|
|
|
void udp_destroy(void);
|
|
|
|
#endif
|
2007-02-20 10:13:11 +00:00
|
|
|
void udp_input(struct mbuf *, int);
|
|
|
|
struct inpcb *udp_notify(struct inpcb *inp, int errno);
|
|
|
|
int udp_shutdown(struct socket *so);
|
2009-01-06 12:13:40 +00:00
|
|
|
|
|
|
|
int udp_set_kernel_tunneling(struct socket *so, udp_tun_func_t f);
|
1994-05-24 10:09:53 +00:00
|
|
|
#endif
|
1994-08-21 05:27:42 +00:00
|
|
|
|
|
|
|
#endif
|