2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. Please obtain a copy of the License at
12 * http://www.opensource.apple.com/apsl/ and read it before using this
15 * The Original Code and all software distributed under the License are
16 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
20 * Please see the License for the specific language governing rights and
21 * limitations under the License.
23 * @APPLE_LICENSE_HEADER_END@
26 * Copyright (c) 1982, 1986, 1993
27 * The Regents of the University of California. All rights reserved.
30 #include <libsa/types.h>
31 #include <libkern/OSByteOrder.h> /* OSSwap functions */
34 #define ETHERHDRSIZE 14
36 #define KDP_MAXPACKET (ETHERHDRSIZE + ETHERMTU + ETHERCRC)
43 u_char ether_addr_octet
[6];
46 typedef struct ether_addr enet_addr_t
;
48 extern struct ether_addr
kdp_get_mac_addr(void);
49 unsigned int kdp_get_ip_address(void);
52 caddr_t ih_next
, ih_prev
; /* for protocol sequence q's */
53 u_char ih_x1
; /* (unused) */
54 u_char ih_pr
; /* protocol */
55 short ih_len
; /* protocol length */
56 struct in_addr ih_src
; /* source internet address */
57 struct in_addr ih_dst
; /* destination internet address */
61 u_short uh_sport
; /* source port */
62 u_short uh_dport
; /* destination port */
63 short uh_ulen
; /* udp length */
64 u_short uh_sum
; /* udp checksum */
68 struct ipovly ui_i
; /* overlaid ip structure */
69 struct udphdr ui_u
; /* udp header */
71 #define ui_next ui_i.ih_next
72 #define ui_prev ui_i.ih_prev
73 #define ui_x1 ui_i.ih_x1
74 #define ui_pr ui_i.ih_pr
75 #define ui_len ui_i.ih_len
76 #define ui_src ui_i.ih_src
77 #define ui_dst ui_i.ih_dst
78 #define ui_sport ui_u.uh_sport
79 #define ui_dport ui_u.uh_dport
80 #define ui_ulen ui_u.uh_ulen
81 #define ui_sum ui_u.uh_sum
88 #ifdef __LITTLE_ENDIAN__
89 ip_xhl
:4, /* header length */
90 ip_xv
:4, /* version */
91 ip_xtos
:8, /* type of service */
92 ip_xlen
:16; /* total length */
95 ip_xv
:4, /* version */
96 ip_xhl
:4, /* header length */
97 ip_xtos
:8, /* type of service */
98 ip_xlen
:16; /* total length */
102 u_short ip_id
; /* identification */
103 short ip_off
; /* fragment offset field */
104 #define IP_DF 0x4000 /* dont fragment flag */
105 #define IP_MF 0x2000 /* more fragments flag */
106 #define IP_OFFMASK 0x1fff /* mask for fragmenting bits */
107 u_char ip_ttl
; /* time to live */
108 u_char ip_p
; /* protocol */
109 u_short ip_sum
; /* checksum */
110 struct in_addr ip_src
,ip_dst
; /* source and dest address */
112 #define ip_v ip_vhltl.ip_x.ip_xv
113 #define ip_hl ip_vhltl.ip_x.ip_xhl
114 #define ip_tos ip_vhltl.ip_x.ip_xtos
115 #define ip_len ip_vhltl.ip_x.ip_xlen
117 #define IPPROTO_UDP 17
120 struct ether_header
{
121 u_char ether_dhost
[6];
122 u_char ether_shost
[6];
126 typedef struct ether_header ether_header_t
;
128 #define ETHERTYPE_IP 0x0800 /* IP protocol */
130 #define ntohs(x) OSSwapBigToHostInt16(x)
131 #define ntohl(x) OSSwapBigToHostInt32(x)
132 #define htons(x) OSSwapHostToBigInt16(x)
133 #define htonl(x) OSSwapHostToBigInt32(x)
135 * Ethernet Address Resolution Protocol.
137 * See RFC 826 for protocol description. Structure below is adapted
138 * to resolving internet addresses. Field names used correspond to
142 #define ETHERTYPE_ARP 0x0806 /* Addr. resolution protocol */
145 u_short ar_hrd
; /* format of hardware address */
146 #define ARPHRD_ETHER 1 /* ethernet hardware format */
147 #define ARPHRD_FRELAY 15 /* frame relay hardware format */
148 u_short ar_pro
; /* format of protocol address */
149 u_char ar_hln
; /* length of hardware address */
150 u_char ar_pln
; /* length of protocol address */
151 u_short ar_op
; /* one of: */
152 #define ARPOP_REQUEST 1 /* request to resolve address */
153 #define ARPOP_REPLY 2 /* response to previous request */
154 #define ARPOP_REVREQUEST 3 /* request protocol address given hardware */
155 #define ARPOP_REVREPLY 4 /* response giving protocol address */
156 #define ARPOP_INVREQUEST 8 /* request to identify peer */
157 #define ARPOP_INVREPLY 9 /* response identifying peer */
160 #define ETHER_ADDR_LEN 6
163 struct arphdr ea_hdr
; /* fixed-size header */
164 u_char arp_sha
[ETHER_ADDR_LEN
]; /* sender hardware address */
165 u_char arp_spa
[4]; /* sender protocol address */
166 u_char arp_tha
[ETHER_ADDR_LEN
]; /* target hardware address */
167 u_char arp_tpa
[4]; /* target protocol address */
169 #define arp_hrd ea_hdr.ar_hrd
170 #define arp_pro ea_hdr.ar_pro
171 #define arp_hln ea_hdr.ar_hln
172 #define arp_pln ea_hdr.ar_pln
173 #define arp_op ea_hdr.ar_op