2005-03-18 14:11:50 +03:00
|
|
|
/* $NetBSD: if_ether.h,v 1.39 2005/03/18 11:11:50 yamt 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.
|
2003-08-07 20:26:28 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1993-03-21 12:45:37 +03: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.
|
|
|
|
*
|
1994-06-29 10:29:24 +04:00
|
|
|
* @(#)if_ether.h 8.1 (Berkeley) 6/10/93
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
|
1998-02-09 20:43:44 +03:00
|
|
|
#ifndef _NET_IF_ETHER_H_
|
|
|
|
#define _NET_IF_ETHER_H_
|
|
|
|
|
2003-02-26 09:31:08 +03:00
|
|
|
#ifdef _KERNEL
|
2003-06-26 12:22:06 +04:00
|
|
|
#ifdef _KERNEL_OPT
|
2003-06-23 15:00:59 +04:00
|
|
|
#include "opt_mbuftrace.h"
|
2003-06-26 10:52:55 +04:00
|
|
|
#endif
|
2003-02-26 09:31:08 +03:00
|
|
|
#include <sys/mbuf.h>
|
|
|
|
#endif
|
|
|
|
|
1999-03-26 02:08:28 +03:00
|
|
|
/*
|
|
|
|
* Some basic Ethernet constants.
|
|
|
|
*/
|
|
|
|
#define ETHER_ADDR_LEN 6 /* length of an Ethernet address */
|
|
|
|
#define ETHER_TYPE_LEN 2 /* length of the Ethernet type field */
|
|
|
|
#define ETHER_CRC_LEN 4 /* length of the Ethernet CRC */
|
|
|
|
#define ETHER_HDR_LEN ((ETHER_ADDR_LEN * 2) + ETHER_TYPE_LEN)
|
|
|
|
#define ETHER_MIN_LEN 64 /* minimum frame length, including CRC */
|
|
|
|
#define ETHER_MAX_LEN 1518 /* maximum frame length, including CRC */
|
2001-06-03 07:07:39 +04:00
|
|
|
#define ETHER_MAX_LEN_JUMBO 9018 /* maximum jumbo frame len, including CRC */
|
1999-03-26 02:08:28 +03:00
|
|
|
|
2000-10-04 03:33:38 +04:00
|
|
|
/*
|
|
|
|
* Some Ethernet extensions.
|
|
|
|
*/
|
|
|
|
#define ETHER_VLAN_ENCAP_LEN 4 /* length of 802.1Q VLAN encapsulation */
|
|
|
|
|
1993-12-30 07:17:40 +03:00
|
|
|
/*
|
|
|
|
* Ethernet address - 6 octets
|
|
|
|
* this is only used by the ethers(3) functions.
|
|
|
|
*/
|
|
|
|
struct ether_addr {
|
1999-03-26 02:08:28 +03:00
|
|
|
u_int8_t ether_addr_octet[ETHER_ADDR_LEN];
|
1999-11-19 23:41:19 +03:00
|
|
|
} __attribute__((__packed__));
|
1993-12-30 07:17:40 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Structure of a 10Mb/s Ethernet header.
|
|
|
|
*/
|
|
|
|
struct ether_header {
|
1995-05-15 05:30:44 +04:00
|
|
|
u_int8_t ether_dhost[ETHER_ADDR_LEN];
|
|
|
|
u_int8_t ether_shost[ETHER_ADDR_LEN];
|
1995-04-13 10:25:36 +04:00
|
|
|
u_int16_t ether_type;
|
1999-11-19 23:41:19 +03:00
|
|
|
} __attribute__((__packed__));
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1997-03-15 21:09:08 +03:00
|
|
|
#include <net/ethertypes.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1995-05-16 09:26:36 +04:00
|
|
|
#define ETHER_IS_MULTICAST(addr) (*(addr) & 0x01) /* is address mcast/bcast? */
|
1995-05-15 05:30:44 +04:00
|
|
|
|
2001-06-03 07:07:39 +04:00
|
|
|
#define ETHERMTU_JUMBO (ETHER_MAX_LEN_JUMBO - ETHER_HDR_LEN - ETHER_CRC_LEN)
|
1999-03-26 02:08:28 +03:00
|
|
|
#define ETHERMTU (ETHER_MAX_LEN - ETHER_HDR_LEN - ETHER_CRC_LEN)
|
|
|
|
#define ETHERMIN (ETHER_MIN_LEN - ETHER_HDR_LEN - ETHER_CRC_LEN)
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2000-10-04 03:33:38 +04:00
|
|
|
/*
|
|
|
|
* Compute the maximum frame size based on ethertype (i.e. possible
|
|
|
|
* encapsulation) and whether or not an FCS is present.
|
|
|
|
*/
|
2001-06-03 07:24:23 +04:00
|
|
|
#define ETHER_MAX_FRAME(ifp, etype, hasfcs) \
|
|
|
|
((ifp)->if_mtu + ETHER_HDR_LEN + \
|
2000-10-04 03:33:38 +04:00
|
|
|
((hasfcs) ? ETHER_CRC_LEN : 0) + \
|
|
|
|
(((etype) == ETHERTYPE_VLAN) ? ETHER_VLAN_ENCAP_LEN : 0))
|
|
|
|
|
2000-03-06 23:54:41 +03:00
|
|
|
/*
|
|
|
|
* Ethernet CRC32 polynomials (big- and little-endian verions).
|
|
|
|
*/
|
|
|
|
#define ETHER_CRC_POLY_LE 0xedb88320
|
|
|
|
#define ETHER_CRC_POLY_BE 0x04c11db6
|
|
|
|
|
1999-04-09 13:32:51 +04:00
|
|
|
#ifndef _STANDALONE
|
|
|
|
|
1999-08-04 23:16:48 +04:00
|
|
|
/*
|
|
|
|
* Ethernet-specific mbuf flags.
|
|
|
|
*/
|
2003-03-25 16:29:39 +03:00
|
|
|
#define M_HASFCS M_LINK0 /* FCS included at end of frame */
|
|
|
|
#define M_PROMISC M_LINK1 /* this packet is not for us */
|
1999-08-04 23:16:48 +04:00
|
|
|
|
1995-03-27 00:23:52 +04:00
|
|
|
#ifdef _KERNEL
|
1993-12-13 18:10:40 +03:00
|
|
|
/*
|
|
|
|
* Macro to map an IP multicast address to an Ethernet multicast address.
|
|
|
|
* The high-order 25 bits of the Ethernet address are statically assigned,
|
|
|
|
* and the low-order 23 bits are taken from the low end of the IP address.
|
|
|
|
*/
|
1995-05-15 05:30:44 +04:00
|
|
|
#define ETHER_MAP_IP_MULTICAST(ipaddr, enaddr) \
|
|
|
|
/* struct in_addr *ipaddr; */ \
|
|
|
|
/* u_int8_t enaddr[ETHER_ADDR_LEN]; */ \
|
|
|
|
{ \
|
|
|
|
(enaddr)[0] = 0x01; \
|
|
|
|
(enaddr)[1] = 0x00; \
|
|
|
|
(enaddr)[2] = 0x5e; \
|
|
|
|
(enaddr)[3] = ((u_int8_t *)ipaddr)[1] & 0x7f; \
|
|
|
|
(enaddr)[4] = ((u_int8_t *)ipaddr)[2]; \
|
|
|
|
(enaddr)[5] = ((u_int8_t *)ipaddr)[3]; \
|
1993-12-13 18:10:40 +03:00
|
|
|
}
|
1999-07-01 12:12:45 +04:00
|
|
|
/*
|
|
|
|
* Macro to map an IP6 multicast address to an Ethernet multicast address.
|
|
|
|
* The high-order 16 bits of the Ethernet address are statically assigned,
|
|
|
|
* and the low-order 32 bits are taken from the low end of the IP6 address.
|
|
|
|
*/
|
|
|
|
#define ETHER_MAP_IPV6_MULTICAST(ip6addr, enaddr) \
|
|
|
|
/* struct in6_addr *ip6addr; */ \
|
1999-08-10 22:16:07 +04:00
|
|
|
/* u_int8_t enaddr[ETHER_ADDR_LEN]; */ \
|
1999-07-01 12:12:45 +04:00
|
|
|
{ \
|
|
|
|
(enaddr)[0] = 0x33; \
|
|
|
|
(enaddr)[1] = 0x33; \
|
1999-08-10 22:16:07 +04:00
|
|
|
(enaddr)[2] = ((u_int8_t *)ip6addr)[12]; \
|
|
|
|
(enaddr)[3] = ((u_int8_t *)ip6addr)[13]; \
|
|
|
|
(enaddr)[4] = ((u_int8_t *)ip6addr)[14]; \
|
|
|
|
(enaddr)[5] = ((u_int8_t *)ip6addr)[15]; \
|
1999-07-01 12:12:45 +04:00
|
|
|
}
|
1993-12-13 18:10:40 +03:00
|
|
|
#endif
|
1994-01-09 00:21:28 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Structure shared between the ethernet driver modules and
|
1997-03-15 21:09:08 +03:00
|
|
|
* the multicast list code. For example, each ec_softc or il_softc
|
1993-03-21 12:45:37 +03:00
|
|
|
* begins with this structure.
|
|
|
|
*/
|
1997-03-15 21:09:08 +03:00
|
|
|
struct ethercom {
|
2003-02-26 09:31:08 +03:00
|
|
|
struct ifnet ec_if; /* network-visible interface */
|
2000-10-04 03:33:38 +04:00
|
|
|
LIST_HEAD(, ether_multi) ec_multiaddrs; /* list of ether multicast
|
|
|
|
addrs */
|
2003-02-26 09:31:08 +03:00
|
|
|
int ec_multicnt; /* length of ec_multiaddrs
|
2000-10-04 03:33:38 +04:00
|
|
|
list */
|
2003-02-26 09:31:08 +03:00
|
|
|
int ec_capabilities; /* capabilities, provided by
|
2000-10-04 03:33:38 +04:00
|
|
|
driver */
|
2003-02-26 09:31:08 +03:00
|
|
|
int ec_capenable; /* tells hardware which
|
2000-10-04 03:33:38 +04:00
|
|
|
capabilities to enable */
|
|
|
|
|
2003-02-26 09:31:08 +03:00
|
|
|
int ec_nvlans; /* # VLANs on this interface */
|
|
|
|
#ifdef MBUFTRACE
|
|
|
|
struct mowner ec_rx_mowner; /* mbufs received */
|
|
|
|
struct mowner ec_tx_mowner; /* mbufs transmitted */
|
|
|
|
#endif
|
1994-05-13 10:02:48 +04:00
|
|
|
};
|
|
|
|
|
2000-10-04 03:33:38 +04:00
|
|
|
#define ETHERCAP_VLAN_MTU 0x00000001 /* VLAN-compatible MTU */
|
2000-11-17 22:21:53 +03:00
|
|
|
#define ETHERCAP_VLAN_HWTAGGING 0x00000002 /* hardware VLAN tag support */
|
2001-06-03 07:07:39 +04:00
|
|
|
#define ETHERCAP_JUMBO_MTU 0x00000004 /* 9000 byte MTU supported */
|
2000-10-04 03:33:38 +04:00
|
|
|
|
1995-03-30 01:57:43 +04:00
|
|
|
#ifdef _KERNEL
|
2005-01-08 06:18:18 +03:00
|
|
|
extern const uint8_t etherbroadcastaddr[ETHER_ADDR_LEN];
|
2005-03-18 14:11:50 +03:00
|
|
|
extern const uint8_t ethermulticastaddr_slowprotocols[ETHER_ADDR_LEN];
|
2005-01-08 06:18:18 +03:00
|
|
|
extern const uint8_t ether_ipmulticast_min[ETHER_ADDR_LEN];
|
|
|
|
extern const uint8_t ether_ipmulticast_max[ETHER_ADDR_LEN];
|
1994-05-13 10:02:48 +04:00
|
|
|
|
2000-10-11 20:53:41 +04:00
|
|
|
int ether_ioctl(struct ifnet *, u_long, caddr_t);
|
2000-06-18 00:57:20 +04:00
|
|
|
int ether_addmulti (struct ifreq *, struct ethercom *);
|
|
|
|
int ether_delmulti (struct ifreq *, struct ethercom *);
|
|
|
|
int ether_changeaddr (struct ifreq *, struct ethercom *);
|
2000-09-28 11:15:27 +04:00
|
|
|
int ether_multiaddr(struct sockaddr *, u_int8_t[], u_int8_t[]);
|
1995-05-15 05:30:44 +04:00
|
|
|
#endif /* _KERNEL */
|
1993-12-13 18:10:40 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Ethernet multicast address structure. There is one of these for each
|
|
|
|
* multicast address or range of multicast addresses that we are supposed
|
|
|
|
* to listen to on a particular interface. They are kept in a linked list,
|
1998-07-28 16:25:53 +04:00
|
|
|
* rooted in the interface's ethercom structure.
|
1993-12-13 18:10:40 +03:00
|
|
|
*/
|
|
|
|
struct ether_multi {
|
1995-05-15 05:30:44 +04:00
|
|
|
u_int8_t enm_addrlo[ETHER_ADDR_LEN]; /* low or only address of range */
|
|
|
|
u_int8_t enm_addrhi[ETHER_ADDR_LEN]; /* high or only address of range */
|
1995-04-13 10:25:36 +04:00
|
|
|
u_int enm_refcount; /* no. claims to this addr/range */
|
1995-06-12 04:46:47 +04:00
|
|
|
LIST_ENTRY(ether_multi) enm_list;
|
1993-12-13 18:10:40 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Structure used by macros below to remember position when stepping through
|
|
|
|
* all of the ether_multi records.
|
|
|
|
*/
|
|
|
|
struct ether_multistep {
|
|
|
|
struct ether_multi *e_enm;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Macro for looking up the ether_multi record for a given range of Ethernet
|
1997-03-15 21:09:08 +03:00
|
|
|
* multicast addresses connected to a given ethercom structure. If no matching
|
1993-12-13 18:10:40 +03:00
|
|
|
* record is found, "enm" returns NULL.
|
|
|
|
*/
|
1997-03-15 21:09:08 +03:00
|
|
|
#define ETHER_LOOKUP_MULTI(addrlo, addrhi, ec, enm) \
|
1995-05-15 05:30:44 +04:00
|
|
|
/* u_int8_t addrlo[ETHER_ADDR_LEN]; */ \
|
|
|
|
/* u_int8_t addrhi[ETHER_ADDR_LEN]; */ \
|
1997-03-15 21:09:08 +03:00
|
|
|
/* struct ethercom *ec; */ \
|
1995-05-15 05:30:44 +04:00
|
|
|
/* struct ether_multi *enm; */ \
|
|
|
|
{ \
|
2001-11-05 21:02:15 +03:00
|
|
|
for ((enm) = LIST_FIRST(&(ec)->ec_multiaddrs); \
|
1995-05-15 05:30:44 +04:00
|
|
|
(enm) != NULL && \
|
|
|
|
(bcmp((enm)->enm_addrlo, (addrlo), ETHER_ADDR_LEN) != 0 || \
|
|
|
|
bcmp((enm)->enm_addrhi, (addrhi), ETHER_ADDR_LEN) != 0); \
|
2001-11-05 21:02:15 +03:00
|
|
|
(enm) = LIST_NEXT((enm), enm_list)); \
|
1993-12-13 18:10:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Macro to step through all of the ether_multi records, one at a time.
|
|
|
|
* The current position is remembered in "step", which the caller must
|
|
|
|
* provide. ETHER_FIRST_MULTI(), below, must be called to initialize "step"
|
|
|
|
* and get the first record. Both macros return a NULL "enm" when there
|
|
|
|
* are no remaining records.
|
|
|
|
*/
|
1994-05-13 10:02:48 +04:00
|
|
|
#define ETHER_NEXT_MULTI(step, enm) \
|
1993-12-13 18:10:40 +03:00
|
|
|
/* struct ether_multistep step; */ \
|
|
|
|
/* struct ether_multi *enm; */ \
|
|
|
|
{ \
|
|
|
|
if (((enm) = (step).e_enm) != NULL) \
|
2001-11-05 21:02:15 +03:00
|
|
|
(step).e_enm = LIST_NEXT((enm), enm_list); \
|
1993-12-13 18:10:40 +03:00
|
|
|
}
|
|
|
|
|
1997-03-15 21:09:08 +03:00
|
|
|
#define ETHER_FIRST_MULTI(step, ec, enm) \
|
1993-12-13 18:10:40 +03:00
|
|
|
/* struct ether_multistep step; */ \
|
1997-03-15 21:09:08 +03:00
|
|
|
/* struct ethercom *ec; */ \
|
1993-12-13 18:10:40 +03:00
|
|
|
/* struct ether_multi *enm; */ \
|
|
|
|
{ \
|
2001-11-05 21:02:15 +03:00
|
|
|
(step).e_enm = LIST_FIRST(&(ec)->ec_multiaddrs); \
|
1993-12-13 18:10:40 +03:00
|
|
|
ETHER_NEXT_MULTI((step), (enm)); \
|
|
|
|
}
|
1996-02-14 02:40:59 +03:00
|
|
|
|
2005-02-20 18:41:48 +03:00
|
|
|
#ifdef _KERNEL
|
|
|
|
|
2005-02-20 18:29:03 +03:00
|
|
|
/*
|
|
|
|
* Ethernet 802.1Q VLAN structures.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* add VLAN tag to input/received packet */
|
|
|
|
#define VLAN_INPUT_TAG(ifp, m, vlanid, _errcase) \
|
|
|
|
do { \
|
|
|
|
struct m_tag *mtag = \
|
|
|
|
m_tag_get(PACKET_TAG_VLAN, sizeof(u_int), M_NOWAIT);\
|
|
|
|
if (mtag == NULL) { \
|
|
|
|
ifp->if_ierrors++; \
|
|
|
|
printf("%s: unable to allocate VLAN tag\n", \
|
|
|
|
ifp->if_xname); \
|
|
|
|
m_freem(m); \
|
|
|
|
_errcase; \
|
|
|
|
} \
|
|
|
|
*(u_int *)(mtag + 1) = vlanid; \
|
|
|
|
m_tag_prepend(m, mtag); \
|
|
|
|
} while(0)
|
|
|
|
|
|
|
|
/* extract VLAN tag from output/trasmit packet */
|
|
|
|
#define VLAN_OUTPUT_TAG(ec, m0) \
|
|
|
|
VLAN_ATTACHED(ec) ? m_tag_find((m0), PACKET_TAG_VLAN, NULL) : NULL
|
|
|
|
|
|
|
|
/* extract VLAN ID value from a VLAN tag */
|
|
|
|
#define VLAN_TAG_VALUE(mtag) \
|
|
|
|
((*(u_int *)(mtag + 1)) & 4095)
|
|
|
|
|
|
|
|
/* test if any VLAN is configured for this interface */
|
|
|
|
#define VLAN_ATTACHED(ec) (&(ec)->ec_nvlans > 0)
|
|
|
|
|
2001-04-07 08:24:31 +04:00
|
|
|
void ether_ifattach(struct ifnet *, const u_int8_t *);
|
|
|
|
void ether_ifdetach(struct ifnet *);
|
|
|
|
|
|
|
|
char *ether_sprintf(const u_int8_t *);
|
|
|
|
|
|
|
|
u_int32_t ether_crc32_le(const u_int8_t *, size_t);
|
|
|
|
u_int32_t ether_crc32_be(const u_int8_t *, size_t);
|
2001-04-07 22:01:48 +04:00
|
|
|
|
2000-03-06 23:54:41 +03:00
|
|
|
#else
|
1997-01-17 11:17:57 +03:00
|
|
|
/*
|
|
|
|
* Prototype ethers(3) functions.
|
|
|
|
*/
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__BEGIN_DECLS
|
2002-09-16 23:25:30 +04:00
|
|
|
char * ether_ntoa __P((const struct ether_addr *));
|
1997-01-17 20:06:06 +03:00
|
|
|
struct ether_addr *
|
1997-11-02 17:26:15 +03:00
|
|
|
ether_aton __P((const char *));
|
2002-09-16 23:25:30 +04:00
|
|
|
int ether_ntohost __P((char *, const struct ether_addr *));
|
1997-11-02 17:26:15 +03:00
|
|
|
int ether_hostton __P((const char *, struct ether_addr *));
|
|
|
|
int ether_line __P((const char *, struct ether_addr *, char *));
|
1997-01-17 11:17:57 +03:00
|
|
|
__END_DECLS
|
1996-02-14 02:40:59 +03:00
|
|
|
#endif
|
1998-02-09 20:43:44 +03:00
|
|
|
|
1999-04-09 13:32:51 +04:00
|
|
|
#endif /* _STANDALONE */
|
|
|
|
|
1998-02-09 20:43:44 +03:00
|
|
|
#endif /* _NET_IF_ETHER_H_ */
|