2005-01-07 01:45:51 +00:00
|
|
|
/*-
|
1994-05-24 10:09:53 +00:00
|
|
|
* Copyright (c) 1982, 1986, 1993
|
|
|
|
* The Regents of the University of California. 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.
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* @(#)icmp_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_ICMP_VAR_H_
|
|
|
|
#define _NETINET_ICMP_VAR_H_
|
|
|
|
|
1998-12-03 20:23:21 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* Variables related to this implementation
|
|
|
|
* of the internet control message protocol.
|
|
|
|
*/
|
|
|
|
struct icmpstat {
|
|
|
|
/* statistics related to icmp packets generated */
|
|
|
|
u_long icps_error; /* # of calls to icmp_error */
|
|
|
|
u_long icps_oldshort; /* no error 'cuz old ip too short */
|
|
|
|
u_long icps_oldicmp; /* no error 'cuz old was icmp */
|
|
|
|
u_long icps_outhist[ICMP_MAXTYPE + 1];
|
|
|
|
/* statistics related to input messages processed */
|
2004-08-16 18:32:07 +00:00
|
|
|
u_long icps_badcode; /* icmp_code out of range */
|
1994-05-24 10:09:53 +00:00
|
|
|
u_long icps_tooshort; /* packet < ICMP_MINLEN */
|
|
|
|
u_long icps_checksum; /* bad checksum */
|
|
|
|
u_long icps_badlen; /* calculated bound mismatch */
|
|
|
|
u_long icps_reflect; /* number of responses */
|
|
|
|
u_long icps_inhist[ICMP_MAXTYPE + 1];
|
2004-08-16 18:32:07 +00:00
|
|
|
u_long icps_bmcastecho; /* b/mcast echo requests dropped */
|
|
|
|
u_long icps_bmcasttstamp; /* b/mcast tstamp requests dropped */
|
2001-11-30 10:40:28 +00:00
|
|
|
u_long icps_badaddr; /* bad return address */
|
2004-08-16 18:32:07 +00:00
|
|
|
u_long icps_noroute; /* no route back */
|
1994-05-24 10:09:53 +00:00
|
|
|
};
|
|
|
|
|
2009-04-12 13:22:33 +00:00
|
|
|
#ifdef _KERNEL
|
2013-07-09 09:50:15 +00:00
|
|
|
#include <sys/counter.h>
|
|
|
|
|
|
|
|
VNET_PCPUSTAT_DECLARE(struct icmpstat, icmpstat);
|
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 ICMPSTAT_ADD(name, val) \
|
|
|
|
VNET_PCPUSTAT_ADD(struct icmpstat, icmpstat, name, (val))
|
2009-04-12 13:22:33 +00:00
|
|
|
#define ICMPSTAT_INC(name) ICMPSTAT_ADD(name, 1)
|
2009-08-02 19:43:32 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Kernel module consumers must use this accessor macro.
|
|
|
|
*/
|
|
|
|
void kmod_icmpstat_inc(int statnum);
|
|
|
|
#define KMOD_ICMPSTAT_INC(name) \
|
2013-07-09 09:50:15 +00:00
|
|
|
kmod_icmpstat_inc(offsetof(struct icmpstat, name) / sizeof(uint64_t))
|
2009-04-12 13:22:33 +00:00
|
|
|
#endif
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
2014-02-25 18:44:33 +00:00
|
|
|
* Identifiers for ICMP sysctl nodes
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
|
|
|
#define ICMPCTL_MASKREPL 1 /* allow replies to netmask requests */
|
1995-02-16 00:27:47 +00:00
|
|
|
#define ICMPCTL_STATS 2 /* statistics (read-only) */
|
1998-12-03 20:23:21 +00:00
|
|
|
#define ICMPCTL_ICMPLIM 3
|
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_icmp);
|
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
|
|
|
|
2002-03-19 21:25:46 +00:00
|
|
|
extern int badport_bandlim(int);
|
2001-02-11 07:39:51 +00:00
|
|
|
#define BANDLIM_UNLIMITED -1
|
|
|
|
#define BANDLIM_ICMP_UNREACH 0
|
2001-12-14 19:32:47 +00:00
|
|
|
#define BANDLIM_ICMP_ECHO 1
|
2001-02-11 07:39:51 +00:00
|
|
|
#define BANDLIM_ICMP_TSTAMP 2
|
|
|
|
#define BANDLIM_RST_CLOSEDPORT 3 /* No connection, and no listeners */
|
|
|
|
#define BANDLIM_RST_OPENPORT 4 /* No connection, listener */
|
2007-07-19 22:34:25 +00:00
|
|
|
#define BANDLIM_ICMP6_UNREACH 5
|
2012-06-18 17:11:24 +00:00
|
|
|
#define BANDLIM_SCTP_OOTB 6
|
|
|
|
#define BANDLIM_MAX 6
|
1998-12-03 20:23:21 +00:00
|
|
|
#endif
|
|
|
|
|
1994-08-21 05:27:42 +00:00
|
|
|
#endif
|