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
|
2013-08-25 21:54:41 +00:00
|
|
|
#define ui_v ui_i.ih_x1[0]
|
1994-05-24 10:09:53 +00:00
|
|
|
#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
|
|
|
|
|
2011-10-16 10:58:00 +00:00
|
|
|
struct inpcb;
|
|
|
|
struct mbuf;
|
|
|
|
|
2014-10-10 06:08:59 +00:00
|
|
|
typedef void(*udp_tun_func_t)(struct mbuf *, int off, struct inpcb *,
|
|
|
|
const struct sockaddr *, void *);
|
2009-05-23 16:51:13 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 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. */
|
2014-04-07 01:53:03 +00:00
|
|
|
uint16_t u_rxcslen; /* Coverage for incoming datagrams. */
|
|
|
|
uint16_t u_txcslen; /* Coverage for outgoing datagrams. */
|
2014-10-10 06:08:59 +00:00
|
|
|
void *u_tun_ctx; /* Tunneling callback context. */
|
2009-05-23 16:51:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#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: */
|
Prepare network statistics structures for migration to PCPU counters.
Use uint64_t as type for all fields of structures.
Changed structures: ahstat, arpstat, espstat, icmp6_ifstat, icmp6stat,
in6_ifstat, ip6stat, ipcompstat, ipipstat, ipsecstat, mrt6stat, mrtstat,
pfkeystat, pim6stat, pimstat, rip6stat, udpstat.
Discussed with: arch@
2013-07-09 09:32:06 +00:00
|
|
|
uint64_t udps_ipackets; /* total input packets */
|
|
|
|
uint64_t udps_hdrops; /* packet shorter than header */
|
|
|
|
uint64_t udps_badsum; /* checksum error */
|
|
|
|
uint64_t udps_nosum; /* no checksum */
|
|
|
|
uint64_t udps_badlen; /* data length larger than packet */
|
|
|
|
uint64_t udps_noport; /* no socket on port */
|
|
|
|
uint64_t udps_noportbcast; /* of above, arrived as broadcast */
|
|
|
|
uint64_t udps_fullsock; /* not delivered, input socket full */
|
|
|
|
uint64_t udpps_pcbcachemiss; /* input packets missing pcb cache */
|
|
|
|
uint64_t udpps_pcbhashmiss; /* input packets not for hashed pcb */
|
1994-05-24 10:09:53 +00:00
|
|
|
/* output statistics: */
|
Prepare network statistics structures for migration to PCPU counters.
Use uint64_t as type for all fields of structures.
Changed structures: ahstat, arpstat, espstat, icmp6_ifstat, icmp6stat,
in6_ifstat, ip6stat, ipcompstat, ipipstat, ipsecstat, mrt6stat, mrtstat,
pfkeystat, pim6stat, pimstat, rip6stat, udpstat.
Discussed with: arch@
2013-07-09 09:32:06 +00:00
|
|
|
uint64_t udps_opackets; /* total output packets */
|
|
|
|
uint64_t udps_fastout; /* output packets on fast path */
|
1999-11-05 14:41:39 +00:00
|
|
|
/* of no socket on port, arrived as multicast */
|
Prepare network statistics structures for migration to PCPU counters.
Use uint64_t as type for all fields of structures.
Changed structures: ahstat, arpstat, espstat, icmp6_ifstat, icmp6stat,
in6_ifstat, ip6stat, ipcompstat, ipipstat, ipsecstat, mrt6stat, mrtstat,
pfkeystat, pim6stat, pimstat, rip6stat, udpstat.
Discussed with: arch@
2013-07-09 09:32:06 +00:00
|
|
|
uint64_t udps_noportmcast;
|
|
|
|
uint64_t udps_filtermcast; /* blocked by multicast filter */
|
1994-05-24 10:09:53 +00:00
|
|
|
};
|
|
|
|
|
2009-04-12 11:42:40 +00:00
|
|
|
#ifdef _KERNEL
|
2013-07-09 09:50:15 +00:00
|
|
|
#include <sys/counter.h>
|
|
|
|
|
|
|
|
VNET_PCPUSTAT_DECLARE(struct udpstat, udpstat);
|
2009-08-02 19:43:32 +00:00
|
|
|
/*
|
|
|
|
* In-kernel consumers can use these accessor macros directly to update
|
|
|
|
* stats.
|
|
|
|
*/
|
2013-07-09 09:50:15 +00:00
|
|
|
#define UDPSTAT_ADD(name, val) \
|
|
|
|
VNET_PCPUSTAT_ADD(struct udpstat, udpstat, name, (val))
|
2009-04-12 11:42:40 +00:00
|
|
|
#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);
|
2013-07-09 09:50:15 +00:00
|
|
|
#define KMOD_UDPSTAT_INC(name) \
|
|
|
|
kmod_udpstat_inc(offsetof(struct udpstat, name) / sizeof(uint64_t))
|
2009-04-12 11:42:40 +00:00
|
|
|
#endif
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
2014-02-25 18:44:33 +00:00
|
|
|
* Identifiers for UDP sysctl nodes.
|
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 */
|
1994-05-24 10:09:53 +00:00
|
|
|
|
1999-12-29 04:46:21 +00:00
|
|
|
#ifdef _KERNEL
|
2014-06-03 01:30:32 +00:00
|
|
|
#include <netinet/in_pcb.h>
|
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;
|
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);
|
2014-04-07 01:53:03 +00:00
|
|
|
VNET_DECLARE(struct inpcbhead, ulitecb);
|
|
|
|
VNET_DECLARE(struct inpcbinfo, ulitecbinfo);
|
2009-07-16 21:13:04 +00:00
|
|
|
#define V_udb VNET(udb)
|
|
|
|
#define V_udbinfo VNET(udbinfo)
|
2014-04-07 01:53:03 +00:00
|
|
|
#define V_ulitecb VNET(ulitecb)
|
|
|
|
#define V_ulitecbinfo VNET(ulitecbinfo)
|
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;
|
2012-03-27 15:14:29 +00:00
|
|
|
VNET_DECLARE(int, udp_cksum);
|
2010-04-29 11:52:42 +00:00
|
|
|
VNET_DECLARE(int, udp_blackhole);
|
2012-03-27 15:14:29 +00:00
|
|
|
#define V_udp_cksum VNET(udp_cksum)
|
2010-04-29 11:52:42 +00:00
|
|
|
#define V_udp_blackhole VNET(udp_blackhole)
|
2007-02-20 10:20:03 +00:00
|
|
|
extern int udp_log_in_vain;
|
1994-05-24 10:09:53 +00:00
|
|
|
|
2014-04-07 01:53:03 +00:00
|
|
|
static __inline struct inpcbinfo *
|
2015-08-27 15:27:41 +00:00
|
|
|
udp_get_inpcbinfo(int protocol)
|
2014-04-07 01:53:03 +00:00
|
|
|
{
|
|
|
|
return (protocol == IPPROTO_UDP) ? &V_udbinfo : &V_ulitecbinfo;
|
|
|
|
}
|
|
|
|
|
|
|
|
static __inline struct inpcbhead *
|
2015-08-27 15:27:41 +00:00
|
|
|
udp_get_pcblist(int protocol)
|
2014-04-07 01:53:03 +00:00
|
|
|
{
|
|
|
|
return (protocol == IPPROTO_UDP) ? &V_udb : &V_ulitecb;
|
|
|
|
}
|
|
|
|
|
2014-04-07 01:55:53 +00:00
|
|
|
int udp_newudpcb(struct inpcb *);
|
|
|
|
void udp_discardcb(struct udpcb *);
|
|
|
|
|
|
|
|
void udp_ctlinput(int, struct sockaddr *, void *);
|
|
|
|
void udplite_ctlinput(int, struct sockaddr *, void *);
|
|
|
|
int udp_ctloutput(struct socket *, struct sockopt *);
|
|
|
|
void udp_init(void);
|
|
|
|
void udplite_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
|
2014-04-07 01:55:53 +00:00
|
|
|
void udp_destroy(void);
|
|
|
|
void udplite_destroy(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
|
|
|
#endif
|
2014-08-08 01:57:15 +00:00
|
|
|
int udp_input(struct mbuf **, int *, int);
|
2014-04-07 01:55:53 +00:00
|
|
|
void udplite_input(struct mbuf *, int);
|
2007-02-20 10:13:11 +00:00
|
|
|
struct inpcb *udp_notify(struct inpcb *inp, int errno);
|
2014-04-07 01:55:53 +00:00
|
|
|
int udp_shutdown(struct socket *so);
|
2009-01-06 12:13:40 +00:00
|
|
|
|
2014-10-10 06:08:59 +00:00
|
|
|
int udp_set_kernel_tunneling(struct socket *so, udp_tun_func_t f,
|
|
|
|
void *ctx);
|
1994-08-21 05:27:42 +00:00
|
|
|
|
2014-04-07 01:53:03 +00:00
|
|
|
#endif /* _KERNEL */
|
|
|
|
|
|
|
|
#endif /* _NETINET_UDP_VAR_H_ */
|