-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy patharp.c
303 lines (284 loc) · 8.51 KB
/
arp.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
/* Address Resolution Protocol (ARP) functions. Sits between IP and
* Level 2, mapping IP to Level 2 addresses for all outgoing datagrams.
* Copyright 1991 Phil Karn, KA9Q
*/
#include "global.h"
#include "mbuf.h"
#include "timer.h"
#include "iface.h"
#include "enet.h"
#include "ax25.h"
#include "icmp.h"
#include "ip.h"
#include "arp.h"
#include "icmp.h"
static void arp_output(struct iface *iface,enum arp_hwtype hardware,int32 target);
/* Hash table headers */
struct arp_tab *Arp_tab[HASHMOD];
struct arp_stat Arp_stat;
/* Resolve an IP address to a hardware address; if not found,
* initiate query and return NULL. If an address is returned, the
* interface driver may send the packet; if NULL is returned,
* res_arp() will have saved the packet on its pending queue,
* so no further action (like freeing the packet) is necessary.
*/
uint8 *
res_arp(
struct iface *iface, /* Pointer to interface block */
enum arp_hwtype hardware, /* Hardware type */
int32 target, /* Target IP address */
struct mbuf **bpp /* IP datagram to be queued if unresolved */
){
register struct arp_tab *arp;
struct ip ip;
if((arp = arp_lookup(hardware,target)) != NULL && arp->state == ARP_VALID)
return arp->hw_addr;
if(arp != NULL){
/* Earlier packets are already pending, kick this one back
* as a source quench
*/
ntohip(&ip,bpp);
icmp_output(&ip,*bpp,ICMP_QUENCH,0,NULL);
free_p(bpp);
} else {
/* Create an entry and put the datagram on the
* queue pending an answer
*/
arp = arp_add(target,hardware,NULL,0);
enqueue(&arp->pending,bpp);
arp_output(iface,hardware,target);
}
return NULL;
}
/* Handle incoming ARP packets. This is almost a direct implementation of
* the algorithm on page 5 of RFC 826, except for:
* 1. Outgoing datagrams to unresolved addresses are kept on a queue
* pending a reply to our ARP request.
* 2. The names of the fields in the ARP packet were made more mnemonic.
* 3. Requests for IP addresses listed in our table as "published" are
* responded to, even if the address is not our own.
*/
void
arp_input(
struct iface *iface,
struct mbuf **bpp
){
struct arp arp;
struct arp_tab *ap;
struct arp_type *at;
int i;
Arp_stat.recv++;
if(ntoharp(&arp,bpp) == -1) /* Convert into host format */
return;
if(arp.hardware >= NHWTYPES){
/* Unknown hardware type, ignore */
Arp_stat.badtype++;
return;
}
at = &Arp_type[arp.hardware];
if(arp.protocol != at->iptype){
/* Unsupported protocol type, ignore */
Arp_stat.badtype++;
return;
}
if(arp.hwalen > MAXHWALEN || arp.pralen != sizeof(int32)){
/* Incorrect protocol addr length (different hw addr lengths
* are OK since AX.25 addresses can be of variable length)
*/
Arp_stat.badlen++;
return;
}
if(memcmp(arp.shwaddr,at->bdcst,at->hwalen) == 0){
/* This guy is trying to say he's got the broadcast address! */
Arp_stat.badaddr++;
return;
}
/* If this guy is already in the table, update its entry
* unless it's a manual entry (noted by the lack of a timer)
*/
ap = NULL; /* ap plays the role of merge_flag in the spec */
if((ap = arp_lookup(arp.hardware,arp.sprotaddr)) != NULL
&& dur_timer(&ap->timer) != 0){
ap = arp_add(arp.sprotaddr,arp.hardware,arp.shwaddr,0);
}
/* See if we're the address they're looking for */
if(ismyaddr(arp.tprotaddr) != NULL){
if(ap == NULL) /* Only if not already in the table */
arp_add(arp.sprotaddr,arp.hardware,arp.shwaddr,0);
if(arp.opcode == ARP_REQUEST){
/* Swap sender's and target's (us) hardware and protocol
* fields, and send the packet back as a reply
*/
memcpy(arp.thwaddr,arp.shwaddr,(uint16)arp.hwalen);
/* Mark the end of the sender's AX.25 address
* in case he didn't
*/
if(arp.hardware == ARP_AX25)
arp.thwaddr[arp.hwalen-1] |= E;
memcpy(arp.shwaddr,iface->hwaddr,at->hwalen);
arp.tprotaddr = arp.sprotaddr;
arp.sprotaddr = iface->addr;
arp.opcode = ARP_REPLY;
if((*bpp = htonarp(&arp)) == NULL)
return;
if(iface->forw != NULL)
(*iface->forw->output)(iface->forw,
arp.thwaddr,iface->forw->hwaddr,at->arptype,bpp);
else
(*iface->output)(iface,arp.thwaddr,
iface->hwaddr,at->arptype,bpp);
Arp_stat.inreq++;
} else {
Arp_stat.replies++;
}
} else if(arp.opcode == ARP_REQUEST
&& (ap = arp_lookup(arp.hardware,arp.tprotaddr)) != NULL
&& ap->pub){
/* Otherwise, respond if the guy he's looking for is
* published in our table.
*/
memcpy(arp.thwaddr,arp.shwaddr,(uint16)arp.hwalen);
memcpy(arp.shwaddr,ap->hw_addr,at->hwalen);
arp.tprotaddr = arp.sprotaddr;
arp.sprotaddr = ap->ip_addr;
arp.opcode = ARP_REPLY;
if((*bpp = htonarp(&arp)) == NULL)
return;
if(iface->forw != NULL)
(*iface->forw->output)(iface->forw,
arp.thwaddr,iface->forw->hwaddr,at->arptype,bpp);
else
(*iface->output)(iface,arp.thwaddr,
iface->hwaddr,at->arptype,bpp);
Arp_stat.inreq++;
} else if(arp.opcode == REVARP_REQUEST){
for(i=0;i<HASHMOD;i++)
for(ap = Arp_tab[i];ap != NULL;ap = ap->next)
if(memcmp(ap->hw_addr,arp.thwaddr,at->hwalen) == 0)
goto found;
found: if(ap != NULL && ap->pub){
memcpy(arp.shwaddr,iface->hwaddr,at->hwalen);
arp.tprotaddr = ap->ip_addr;
arp.sprotaddr = iface->addr;
arp.opcode = REVARP_REPLY;
if((*bpp = htonarp(&arp)) == NULL)
return;
if(iface->forw != NULL)
(*iface->forw->output)(iface->forw,
arp.thwaddr,iface->forw->hwaddr,REVARP_TYPE,bpp);
else
(*iface->output)(iface,arp.thwaddr,
iface->hwaddr,REVARP_TYPE,bpp);
Arp_stat.inreq++;
}
}
}
/* Add an IP-addr / hardware-addr pair to the ARP table */
struct arp_tab *
arp_add(ipaddr,hardware,hw_addr,pub)
int32 ipaddr; /* IP address, host order */
enum arp_hwtype hardware; /* Hardware type */
uint8 *hw_addr; /* Hardware address, if known; NULL otherwise */
int pub; /* Publish this entry? */
{
struct mbuf *bp;
register struct arp_tab *ap;
struct arp_type *at;
unsigned hashval;
if(hardware >=NHWTYPES)
return NULL; /* Invalid hardware type */
at = &Arp_type[hardware];
if((ap = arp_lookup(hardware,ipaddr)) == NULL){
/* New entry */
ap = (struct arp_tab *)callocw(1,sizeof(struct arp_tab));
ap->hw_addr = mallocw(at->hwalen);
ap->timer.func = arp_drop;
ap->timer.arg = ap;
ap->hardware = hardware;
ap->ip_addr = ipaddr;
/* Put on head of hash chain */
hashval = hash_ip(ipaddr);
ap->prev = NULL;
ap->next = Arp_tab[hashval];
Arp_tab[hashval] = ap;
if(ap->next != NULL){
ap->next->prev = ap;
}
}
if(hw_addr == NULL){
/* Await response */
ap->state = ARP_PENDING;
set_timer(&ap->timer,Arp_type[hardware].pendtime * 1000L);
} else {
/* Response has come in, update entry and run through queue */
ap->state = ARP_VALID;
set_timer(&ap->timer,ARPLIFE*1000L);
memcpy(ap->hw_addr,hw_addr,at->hwalen);
ap->pub = pub;
while((bp = dequeue(&ap->pending)) != NULL)
ip_route(NULL,&bp,0);
}
start_timer(&ap->timer);
return ap;
}
/* Remove an entry from the ARP table */
void
arp_drop(p)
void *p;
{
register struct arp_tab *ap;
ap = (struct arp_tab *)p;
if(ap == NULL)
return;
stop_timer(&ap->timer); /* Shouldn't be necessary */
if(ap->next != NULL)
ap->next->prev = ap->prev;
if(ap->prev != NULL)
ap->prev->next = ap->next;
else
Arp_tab[hash_ip(ap->ip_addr)] = ap->next;
free_q(&ap->pending);
free(ap->hw_addr);
free(ap);
}
/* Look up the given IP address in the ARP table */
struct arp_tab *
arp_lookup(hardware,ipaddr)
enum arp_hwtype hardware;
int32 ipaddr;
{
register struct arp_tab *ap;
for(ap = Arp_tab[hash_ip(ipaddr)]; ap != NULL; ap = ap->next){
if(ap->ip_addr == ipaddr && ap->hardware == hardware)
break;
}
return ap;
}
/* Send an ARP request to resolve IP address target_ip */
static void
arp_output(iface,hardware,target)
struct iface *iface;
enum arp_hwtype hardware;
int32 target;
{
struct arp arp;
struct mbuf *bp;
struct arp_type *at;
at = &Arp_type[hardware];
if(iface->output == NULL)
return;
arp.hardware = hardware;
arp.protocol = at->iptype;
arp.hwalen = at->hwalen;
arp.pralen = sizeof(int32);
arp.opcode = ARP_REQUEST;
memcpy(arp.shwaddr,iface->hwaddr,at->hwalen);
arp.sprotaddr = iface->addr;
memset(arp.thwaddr,0,at->hwalen);
arp.tprotaddr = target;
if((bp = htonarp(&arp)) == NULL)
return;
(*iface->output)(iface,at->bdcst,
iface->hwaddr,at->arptype,&bp);
Arp_stat.outreq++;
}