RTEMS CPU Kit with SuperCore  4.11.3
if_ether.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 1982, 1986, 1993
3  * The Regents of the University of California. All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution.
13  * 4. Neither the name of the University nor the names of its contributors
14  * may be used to endorse or promote products derived from this software
15  * without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  * @(#)if_ether.h 8.3 (Berkeley) 5/2/95
30  * $FreeBSD: src/sys/netinet/if_ether.h,v 1.32 2005/02/22 13:04:03 glebius Exp $
31  */
32 
33 
34 #ifndef _NETINET_IF_ETHER_H_
35 #define _NETINET_IF_ETHER_H_
36 
37 #include <netinet/in.h> /* struct in_addr */
38 #include <net/ethernet.h>
39 #include <net/if_arp.h>
40 
41 #ifdef _KERNEL
42 /*
43  * Macro to map an IP multicast address to an Ethernet multicast address.
44  * The high-order 25 bits of the Ethernet address are statically assigned,
45  * and the low-order 23 bits are taken from the low end of the IP address.
46  */
47 #define ETHER_MAP_IP_MULTICAST(ipaddr, enaddr) \
48  /* struct in_addr *ipaddr; */ \
49  /* u_char enaddr[ETHER_ADDR_LEN]; */ \
50 { \
51  (enaddr)[0] = 0x01; \
52  (enaddr)[1] = 0x00; \
53  (enaddr)[2] = 0x5e; \
54  (enaddr)[3] = ((u_char *)ipaddr)[1] & 0x7f; \
55  (enaddr)[4] = ((u_char *)ipaddr)[2]; \
56  (enaddr)[5] = ((u_char *)ipaddr)[3]; \
57 }
58 #endif
59 
60 /*
61  * Ethernet Address Resolution Protocol.
62  *
63  * See RFC 826 for protocol description. Structure below is adapted
64  * to resolving internet addresses. Field names used correspond to
65  * RFC 826.
66  */
67 struct ether_arp {
68  struct arphdr ea_hdr; /* fixed-size header */
69  u_char arp_sha[ETHER_ADDR_LEN]; /* sender hardware address */
70  u_char arp_spa[4]; /* sender protocol address */
71  u_char arp_tha[ETHER_ADDR_LEN]; /* target hardware address */
72  u_char arp_tpa[4]; /* target protocol address */
73 };
74 #define arp_hrd ea_hdr.ar_hrd
75 #define arp_pro ea_hdr.ar_pro
76 #define arp_hln ea_hdr.ar_hln
77 #define arp_pln ea_hdr.ar_pln
78 #define arp_op ea_hdr.ar_op
79 
80 struct sockaddr_inarp {
81  u_char sin_len;
82  u_char sin_family;
83  u_short sin_port;
84  struct in_addr sin_addr;
85  struct in_addr sin_srcaddr;
86  u_short sin_tos;
87  u_short sin_other;
88 #define SIN_PROXY 1
89 };
90 /*
91  * IP and ethernet specific routing flags
92  */
93 #define RTF_USETRAILERS RTF_PROTO1 /* use trailers */
94 #define RTF_ANNOUNCE RTF_PROTO2 /* announce new arp entry */
95 
96 #ifdef _KERNEL
97 extern u_char etherbroadcastaddr[ETHER_ADDR_LEN];
98 extern u_char ether_ipmulticast_min[ETHER_ADDR_LEN];
99 extern u_char ether_ipmulticast_max[ETHER_ADDR_LEN];
100 extern struct ifqueue arpintrq;
101 
102 int arpresolve(struct arpcom *, struct rtentry *, struct mbuf *,
103  struct sockaddr *, u_char *, struct rtentry *);
104 void arp_ifinit(struct arpcom *, struct ifaddr *);
105 int ether_addmulti(struct ifreq *, struct arpcom *);
106 int ether_delmulti(struct ifreq *, struct arpcom *);
107 
108 /*
109  * Ethernet multicast address structure. There is one of these for each
110  * multicast address or range of multicast addresses that we are supposed
111  * to listen to on a particular interface. They are kept in a linked list,
112  * rooted in the interface's arpcom structure. (This really has nothing to
113  * do with ARP, or with the Internet address family, but this appears to be
114  * the minimally-disrupting place to put it.)
115  */
116 struct ether_multi {
117  u_char enm_addrlo[ETHER_ADDR_LEN]; /* low or only address of range */
118  u_char enm_addrhi[ETHER_ADDR_LEN]; /* high or only address of range */
119  struct arpcom *enm_ac; /* back pointer to arpcom */
120  u_int enm_refcount; /* no. claims to this addr/range */
121  struct ether_multi *enm_next; /* ptr to next ether_multi */
122 };
123 
124 /*
125  * Structure used by macros below to remember position when stepping through
126  * all of the ether_multi records.
127  */
128 struct ether_multistep {
129  struct ether_multi *e_enm;
130 };
131 
132 /*
133  * Macro for looking up the ether_multi record for a given range of Ethernet
134  * multicast addresses connected to a given arpcom structure. If no matching
135  * record is found, "enm" returns NULL.
136  */
137 #define ETHER_LOOKUP_MULTI(addrlo, addrhi, ac, enm) \
138  /* u_char addrlo[ETHER_ADDR_LEN]; */ \
139  /* u_char addrhi[ETHER_ADDR_LEN]; */ \
140  /* struct arpcom *ac; */ \
141  /* struct ether_multi *enm; */ \
142 { \
143  for ((enm) = (ac)->ac_multiaddrs; \
144  (enm) != NULL && \
145  (bcmp((enm)->enm_addrlo, (addrlo), ETHER_ADDR_LEN) != 0 || \
146  bcmp((enm)->enm_addrhi, (addrhi), ETHER_ADDR_LEN) != 0); \
147  (enm) = (enm)->enm_next); \
148 }
149 
150 /*
151  * Macro to step through all of the ether_multi records, one at a time.
152  * The current position is remembered in "step", which the caller must
153  * provide. ETHER_FIRST_MULTI(), below, must be called to initialize "step"
154  * and get the first record. Both macros return a NULL "enm" when there
155  * are no remaining records.
156  */
157 #define ETHER_NEXT_MULTI(step, enm) \
158  /* struct ether_multistep step; */ \
159  /* struct ether_multi *enm; */ \
160 { \
161  if (((enm) = (step).e_enm) != NULL) \
162  (step).e_enm = (enm)->enm_next; \
163 }
164 
165 #define ETHER_FIRST_MULTI(step, ac, enm) \
166  /* struct ether_multistep step; */ \
167  /* struct arpcom *ac; */ \
168  /* struct ether_multi *enm; */ \
169 { \
170  (step).e_enm = (ac)->ac_multiaddrs; \
171  ETHER_NEXT_MULTI((step), (enm)); \
172 }
173 
174 #endif
175 
176 #endif
Definition: if_ether.h:68
Definition: if_ether.h:81
Definition: if_arp.h:50
Definition: if_var.h:86
Definition: socket.h:180
Definition: inet.h:93
Definition: if_var.h:211
Definition: mbuf.h:103
Definition: route.h:104