Changes to allow the IPv4 and IPv6 layers to align headers themseves,
as necessary:
* Implement a new mbuf utility routine, m_copyup(), is is like
m_pullup(), except that it always prepends and copies, rather
than only doing so if the desired length is larger than m->m_len.
m_copyup() also allows an offset into the destination mbuf, which
allows space for packet headers, in the forwarding case.
* Add *_HDR_ALIGNED_P() macros for IP, IPv6, ICMP, and IGMP. These
macros expand to 1 if __NO_STRICT_ALIGNMENT is defined, so that
architectures which do not have strict alignment constraints don't
pay for the test or visit the new align-if-needed path.
* Use the new macros to check if a header needs to be aligned, or to
assert that it already is, as appropriate.
Note: This code is still somewhat experimental. However, the new
code path won't be visited if individual device drivers continue
to guarantee that packets are delivered to layer 3 already properly
aligned (which are rules that are already in use).
2002-07-01 02:40:32 +04:00
|
|
|
/* $NetBSD: icmp_var.h,v 1.21 2002/06/30 22:40:33 thorpej Exp $ */
|
1994-06-29 10:29:24 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1994-05-13 10:02:48 +04:00
|
|
|
* Copyright (c) 1982, 1986, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03: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.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 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.
|
|
|
|
*
|
1994-06-29 10:29:24 +04:00
|
|
|
* @(#)icmp_var.h 8.1 (Berkeley) 6/10/93
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
|
1998-02-10 04:26:19 +03:00
|
|
|
#ifndef _NETINET_ICMP_VAR_H_
|
|
|
|
#define _NETINET_ICMP_VAR_H_
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Variables related to this implementation
|
|
|
|
* of the internet control message protocol.
|
|
|
|
*/
|
|
|
|
struct icmpstat {
|
|
|
|
/* statistics related to icmp packets generated */
|
1999-11-19 13:41:41 +03:00
|
|
|
u_quad_t icps_error; /* # of calls to icmp_error */
|
|
|
|
u_quad_t icps_oldshort; /* no error 'cuz old ip too short */
|
|
|
|
u_quad_t icps_oldicmp; /* no error 'cuz old was icmp */
|
|
|
|
u_quad_t icps_outhist[ICMP_MAXTYPE + 1];
|
1993-03-21 12:45:37 +03:00
|
|
|
/* statistics related to input messages processed */
|
2002-06-09 20:33:36 +04:00
|
|
|
u_quad_t icps_badcode; /* icmp_code out of range */
|
1999-11-19 13:41:41 +03:00
|
|
|
u_quad_t icps_tooshort; /* packet < ICMP_MINLEN */
|
|
|
|
u_quad_t icps_checksum; /* bad checksum */
|
|
|
|
u_quad_t icps_badlen; /* calculated bound mismatch */
|
|
|
|
u_quad_t icps_reflect; /* number of responses */
|
|
|
|
u_quad_t icps_inhist[ICMP_MAXTYPE + 1];
|
2000-10-18 23:20:02 +04:00
|
|
|
u_quad_t icps_pmtuchg; /* path MTU changes */
|
1993-03-21 12:45:37 +03:00
|
|
|
};
|
|
|
|
|
1994-05-13 10:02:48 +04:00
|
|
|
/*
|
|
|
|
* Names for ICMP sysctl objects
|
|
|
|
*/
|
|
|
|
#define ICMPCTL_MASKREPL 1 /* allow replies to netmask requests */
|
2000-07-28 08:06:52 +04:00
|
|
|
#if 0 /*obsoleted*/
|
2000-02-15 07:03:49 +03:00
|
|
|
#define ICMPCTL_ERRRATELIMIT 2 /* error rate limit */
|
2000-07-28 08:06:52 +04:00
|
|
|
#endif
|
2000-06-10 16:39:19 +04:00
|
|
|
#define ICMPCTL_RETURNDATABYTES 3 /* # of bytes to include in errors */
|
2000-07-10 13:31:29 +04:00
|
|
|
#define ICMPCTL_ERRPPSLIMIT 4 /* ICMP error pps limitation */
|
2001-10-30 09:41:09 +03:00
|
|
|
#define ICMPCTL_REDIRACCEPT 5 /* Accept redirects from routers */
|
|
|
|
#define ICMPCTL_REDIRTIMEOUT 6 /* Remove routes added via redirects */
|
|
|
|
#define ICMPCTL_MAXID 7
|
1994-05-13 10:02:48 +04:00
|
|
|
|
|
|
|
#define ICMPCTL_NAMES { \
|
|
|
|
{ 0, 0 }, \
|
|
|
|
{ "maskrepl", CTLTYPE_INT }, \
|
2000-07-28 08:06:52 +04:00
|
|
|
{ 0, 0 }, \
|
2000-06-10 16:39:19 +04:00
|
|
|
{ "returndatabytes", CTLTYPE_INT }, \
|
2000-07-10 13:31:29 +04:00
|
|
|
{ "errppslimit", CTLTYPE_INT }, \
|
2001-10-30 09:41:09 +03:00
|
|
|
{ "rediraccept", CTLTYPE_INT }, \
|
|
|
|
{ "redirtimeout", CTLTYPE_INT }, \
|
1994-05-13 10:02:48 +04:00
|
|
|
}
|
|
|
|
|
1995-03-27 00:23:52 +04:00
|
|
|
#ifdef _KERNEL
|
1993-03-21 12:45:37 +03:00
|
|
|
struct icmpstat icmpstat;
|
Changes to allow the IPv4 and IPv6 layers to align headers themseves,
as necessary:
* Implement a new mbuf utility routine, m_copyup(), is is like
m_pullup(), except that it always prepends and copies, rather
than only doing so if the desired length is larger than m->m_len.
m_copyup() also allows an offset into the destination mbuf, which
allows space for packet headers, in the forwarding case.
* Add *_HDR_ALIGNED_P() macros for IP, IPv6, ICMP, and IGMP. These
macros expand to 1 if __NO_STRICT_ALIGNMENT is defined, so that
architectures which do not have strict alignment constraints don't
pay for the test or visit the new align-if-needed path.
* Use the new macros to check if a header needs to be aligned, or to
assert that it already is, as appropriate.
Note: This code is still somewhat experimental. However, the new
code path won't be visited if individual device drivers continue
to guarantee that packets are delivered to layer 3 already properly
aligned (which are rules that are already in use).
2002-07-01 02:40:32 +04:00
|
|
|
|
|
|
|
#ifdef __NO_STRICT_ALIGNMENT
|
|
|
|
#define ICMP_HDR_ALIGNED_P(ic) 1
|
|
|
|
#else
|
|
|
|
#define ICMP_HDR_ALIGNED_P(ic) ((((vaddr_t) (ic)) & 3) == 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif
|
Changes to allow the IPv4 and IPv6 layers to align headers themseves,
as necessary:
* Implement a new mbuf utility routine, m_copyup(), is is like
m_pullup(), except that it always prepends and copies, rather
than only doing so if the desired length is larger than m->m_len.
m_copyup() also allows an offset into the destination mbuf, which
allows space for packet headers, in the forwarding case.
* Add *_HDR_ALIGNED_P() macros for IP, IPv6, ICMP, and IGMP. These
macros expand to 1 if __NO_STRICT_ALIGNMENT is defined, so that
architectures which do not have strict alignment constraints don't
pay for the test or visit the new align-if-needed path.
* Use the new macros to check if a header needs to be aligned, or to
assert that it already is, as appropriate.
Note: This code is still somewhat experimental. However, the new
code path won't be visited if individual device drivers continue
to guarantee that packets are delivered to layer 3 already properly
aligned (which are rules that are already in use).
2002-07-01 02:40:32 +04:00
|
|
|
#endif /* _KERNEL_ */
|
1998-02-10 04:26:19 +03:00
|
|
|
|
|
|
|
#endif /* _NETINET_ICMP_VAR_H_ */
|