-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathenet.c
127 lines (116 loc) · 2.67 KB
/
enet.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/* Stuff generic to all Ethernet controllers
* Copyright 1991 Phil Karn, KA9Q
*/
#include <stdio.h>
#include "global.h"
#include "mbuf.h"
#include "iface.h"
#include "arp.h"
#include "ip.h"
#include "enet.h"
uint8 Ether_bdcst[] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
/* Convert Ethernet header in host form to network mbuf */
void
htonether(
struct ether *ether,
struct mbuf **bpp
){
register uint8 *cp;
if(bpp == NULL)
return;
pushdown(bpp,NULL,ETHERLEN);
cp = (*bpp)->data;
memcpy(cp,ether->dest,EADDR_LEN);
cp += EADDR_LEN;
memcpy(cp,ether->source,EADDR_LEN);
cp += EADDR_LEN;
put16(cp,ether->type);
}
/* Extract Ethernet header */
int
ntohether(
struct ether *ether,
struct mbuf **bpp
){
pullup(bpp,ether->dest,EADDR_LEN);
pullup(bpp,ether->source,EADDR_LEN);
ether->type = pull16(bpp);
return ETHERLEN;
}
/* Format an Ethernet address into a printable ascii string */
char *
pether(
char *out,
uint8 *addr
){
sprintf(out,"%02x:%02x:%02x:%02x:%02x:%02x",
addr[0],addr[1],addr[2],addr[3],addr[4],addr[5]);
return out;
}
/* Convert an Ethernet address from Hex/ASCII to binary */
int
gether(
register uint8 *out,
register char *cp
){
register int i;
for(i=6; i!=0; i--){
*out++ = htoi(cp);
if((cp = strchr(cp,':')) == NULL) /* Find delimiter */
break;
cp++; /* and skip over it */
}
return i;
}
/* Send an IP datagram on Ethernet */
int
enet_send(
struct mbuf **bpp, /* Buffer to send */
struct iface *iface, /* Pointer to interface control block */
int32 gateway, /* IP address of next hop */
uint8 tos /* Type of service, not used */
){
uint8 *egate;
egate = res_arp(iface,ARP_ETHER,gateway,bpp);
if(egate != NULL)
return (*iface->output)(iface,egate,iface->hwaddr,IP_TYPE,bpp);
return 0;
}
/* Send a packet with Ethernet header */
int
enet_output(
struct iface *iface, /* Pointer to interface control block */
uint8 *dest, /* Destination Ethernet address */
uint8 *source, /* Source Ethernet address */
uint16 type, /* Type field */
struct mbuf **bpp /* Data field */
){
struct ether ep;
memcpy(ep.dest,dest,EADDR_LEN);
memcpy(ep.source,source,EADDR_LEN);
ep.type = type;
htonether(&ep,bpp);
return (*iface->raw)(iface,bpp);
}
/* Process incoming Ethernet packets. Shared by all ethernet drivers. */
void
eproc(
struct iface *iface,
struct mbuf **bpp
){
struct ether hdr;
/* Remove Ethernet header and kick packet upstairs */
ntohether(&hdr,bpp);
switch(hdr.type){
case REVARP_TYPE:
case ARP_TYPE:
arp_input(iface,bpp);
break;
case IP_TYPE:
ip_route(iface,bpp,hdr.dest[0] & 1);
break;
default:
free_p(bpp);
break;
}
}