xref: /freebsd/sys/netinet/if_ether.c (revision 09e8dea79366f1e5b3a73e8a271b26e4b6bf2e6a)
1 /*
2  * Copyright (c) 1982, 1986, 1988, 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  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *	This product includes software developed by the University of
16  *	California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  *	@(#)if_ether.c	8.1 (Berkeley) 6/10/93
34  * $FreeBSD$
35  */
36 
37 /*
38  * Ethernet address resolution protocol.
39  * TODO:
40  *	add "inuse/lock" bit (or ref. count) along with valid bit
41  */
42 
43 #include "opt_inet.h"
44 #include "opt_bdg.h"
45 
46 #include <sys/param.h>
47 #include <sys/kernel.h>
48 #include <sys/queue.h>
49 #include <sys/sysctl.h>
50 #include <sys/systm.h>
51 #include <sys/mbuf.h>
52 #include <sys/malloc.h>
53 #include <sys/socket.h>
54 #include <sys/syslog.h>
55 
56 #include <net/if.h>
57 #include <net/if_dl.h>
58 #include <net/if_types.h>
59 #include <net/route.h>
60 #include <net/netisr.h>
61 #include <net/if_llc.h>
62 #ifdef BRIDGE
63 #include <net/ethernet.h>
64 #include <net/bridge.h>
65 #endif
66 
67 #include <netinet/in.h>
68 #include <netinet/in_var.h>
69 #include <netinet/if_ether.h>
70 
71 #include <net/if_arc.h>
72 #include <net/iso88025.h>
73 
74 #define SIN(s) ((struct sockaddr_in *)s)
75 #define SDL(s) ((struct sockaddr_dl *)s)
76 
77 SYSCTL_DECL(_net_link_ether);
78 SYSCTL_NODE(_net_link_ether, PF_INET, inet, CTLFLAG_RW, 0, "");
79 
80 /* timer values */
81 static int arpt_prune = (5*60*1); /* walk list every 5 minutes */
82 static int arpt_keep = (20*60); /* once resolved, good for 20 more minutes */
83 static int arpt_down = 20;	/* once declared down, don't send for 20 sec */
84 
85 SYSCTL_INT(_net_link_ether_inet, OID_AUTO, prune_intvl, CTLFLAG_RW,
86 	   &arpt_prune, 0, "");
87 SYSCTL_INT(_net_link_ether_inet, OID_AUTO, max_age, CTLFLAG_RW,
88 	   &arpt_keep, 0, "");
89 SYSCTL_INT(_net_link_ether_inet, OID_AUTO, host_down_time, CTLFLAG_RW,
90 	   &arpt_down, 0, "");
91 
92 #define	rt_expire rt_rmx.rmx_expire
93 
94 struct llinfo_arp {
95 	LIST_ENTRY(llinfo_arp) la_le;
96 	struct	rtentry *la_rt;
97 	struct	mbuf *la_hold;		/* last packet until resolved/timeout */
98 	long	la_asked;		/* last time we QUERIED for this addr */
99 #define la_timer la_rt->rt_rmx.rmx_expire /* deletion time in seconds */
100 };
101 
102 static	LIST_HEAD(, llinfo_arp) llinfo_arp;
103 
104 struct	ifqueue arpintrq;
105 static int	arp_inuse, arp_allocated, arpinit_done;
106 
107 static int	arp_maxtries = 5;
108 static int	useloopback = 1; /* use loopback interface for local traffic */
109 static int	arp_proxyall = 0;
110 
111 SYSCTL_INT(_net_link_ether_inet, OID_AUTO, maxtries, CTLFLAG_RW,
112 	   &arp_maxtries, 0, "");
113 SYSCTL_INT(_net_link_ether_inet, OID_AUTO, useloopback, CTLFLAG_RW,
114 	   &useloopback, 0, "");
115 SYSCTL_INT(_net_link_ether_inet, OID_AUTO, proxyall, CTLFLAG_RW,
116 	   &arp_proxyall, 0, "");
117 
118 static void	arp_init(void);
119 static void	arp_rtrequest(int, struct rtentry *, struct rt_addrinfo *);
120 static void	arprequest(struct ifnet *,
121 			struct in_addr *, struct in_addr *, u_char *);
122 static void	arpintr(void);
123 static void	arptfree(struct llinfo_arp *);
124 static void	arptimer(void *);
125 static struct llinfo_arp
126 		*arplookup(u_long, int, int);
127 #ifdef INET
128 static void	in_arpinput(struct mbuf *);
129 #endif
130 
131 /*
132  * Timeout routine.  Age arp_tab entries periodically.
133  */
134 /* ARGSUSED */
135 static void
136 arptimer(ignored_arg)
137 	void *ignored_arg;
138 {
139 	int s = splnet();
140 	register struct llinfo_arp *la = LIST_FIRST(&llinfo_arp);
141 	struct llinfo_arp *ola;
142 
143 	timeout(arptimer, (caddr_t)0, arpt_prune * hz);
144 	while ((ola = la) != 0) {
145 		register struct rtentry *rt = la->la_rt;
146 		la = LIST_NEXT(la, la_le);
147 		if (rt->rt_expire && rt->rt_expire <= time_second)
148 			arptfree(ola); /* timer has expired, clear */
149 	}
150 	splx(s);
151 }
152 
153 /*
154  * Parallel to llc_rtrequest.
155  */
156 static void
157 arp_rtrequest(req, rt, info)
158 	int req;
159 	register struct rtentry *rt;
160 	struct rt_addrinfo *info;
161 {
162 	register struct sockaddr *gate = rt->rt_gateway;
163 	register struct llinfo_arp *la = (struct llinfo_arp *)rt->rt_llinfo;
164 	static struct sockaddr_dl null_sdl = {sizeof(null_sdl), AF_LINK};
165 
166 	if (!arpinit_done) {
167 		arpinit_done = 1;
168 		timeout(arptimer, (caddr_t)0, hz);
169 	}
170 	if (rt->rt_flags & RTF_GATEWAY)
171 		return;
172 	switch (req) {
173 
174 	case RTM_ADD:
175 		/*
176 		 * XXX: If this is a manually added route to interface
177 		 * such as older version of routed or gated might provide,
178 		 * restore cloning bit.
179 		 */
180 		if ((rt->rt_flags & RTF_HOST) == 0 &&
181 		    SIN(rt_mask(rt))->sin_addr.s_addr != 0xffffffff)
182 			rt->rt_flags |= RTF_CLONING;
183 		if (rt->rt_flags & RTF_CLONING) {
184 			/*
185 			 * Case 1: This route should come from a route to iface.
186 			 */
187 			rt_setgate(rt, rt_key(rt),
188 					(struct sockaddr *)&null_sdl);
189 			gate = rt->rt_gateway;
190 			SDL(gate)->sdl_type = rt->rt_ifp->if_type;
191 			SDL(gate)->sdl_index = rt->rt_ifp->if_index;
192 			rt->rt_expire = time_second;
193 			break;
194 		}
195 		/* Announce a new entry if requested. */
196 		if (rt->rt_flags & RTF_ANNOUNCE)
197 			arprequest(rt->rt_ifp,
198 			    &SIN(rt_key(rt))->sin_addr,
199 			    &SIN(rt_key(rt))->sin_addr,
200 			    (u_char *)LLADDR(SDL(gate)));
201 		/*FALLTHROUGH*/
202 	case RTM_RESOLVE:
203 		if (gate->sa_family != AF_LINK ||
204 		    gate->sa_len < sizeof(null_sdl)) {
205 			log(LOG_DEBUG, "arp_rtrequest: bad gateway value\n");
206 			break;
207 		}
208 		SDL(gate)->sdl_type = rt->rt_ifp->if_type;
209 		SDL(gate)->sdl_index = rt->rt_ifp->if_index;
210 		if (la != 0)
211 			break; /* This happens on a route change */
212 		/*
213 		 * Case 2:  This route may come from cloning, or a manual route
214 		 * add with a LL address.
215 		 */
216 		R_Malloc(la, struct llinfo_arp *, sizeof(*la));
217 		rt->rt_llinfo = (caddr_t)la;
218 		if (la == 0) {
219 			log(LOG_DEBUG, "arp_rtrequest: malloc failed\n");
220 			break;
221 		}
222 		arp_inuse++, arp_allocated++;
223 		Bzero(la, sizeof(*la));
224 		la->la_rt = rt;
225 		rt->rt_flags |= RTF_LLINFO;
226 		LIST_INSERT_HEAD(&llinfo_arp, la, la_le);
227 
228 #ifdef INET
229 		/*
230 		 * This keeps the multicast addresses from showing up
231 		 * in `arp -a' listings as unresolved.  It's not actually
232 		 * functional.  Then the same for broadcast.
233 		 */
234 		if (IN_MULTICAST(ntohl(SIN(rt_key(rt))->sin_addr.s_addr)) &&
235 		    rt->rt_ifp->if_type != IFT_ARCNET) {
236 			ETHER_MAP_IP_MULTICAST(&SIN(rt_key(rt))->sin_addr,
237 					       LLADDR(SDL(gate)));
238 			SDL(gate)->sdl_alen = 6;
239 			rt->rt_expire = 0;
240 		}
241 		if (in_broadcast(SIN(rt_key(rt))->sin_addr, rt->rt_ifp)) {
242 			memcpy(LLADDR(SDL(gate)), rt->rt_ifp->if_broadcastaddr,
243 			       rt->rt_ifp->if_addrlen);
244 			SDL(gate)->sdl_alen = rt->rt_ifp->if_addrlen;
245 			rt->rt_expire = 0;
246 		}
247 #endif
248 
249 		if (SIN(rt_key(rt))->sin_addr.s_addr ==
250 		    (IA_SIN(rt->rt_ifa))->sin_addr.s_addr) {
251 		    /*
252 		     * This test used to be
253 		     *	if (loif.if_flags & IFF_UP)
254 		     * It allowed local traffic to be forced
255 		     * through the hardware by configuring the loopback down.
256 		     * However, it causes problems during network configuration
257 		     * for boards that can't receive packets they send.
258 		     * It is now necessary to clear "useloopback" and remove
259 		     * the route to force traffic out to the hardware.
260 		     */
261 			rt->rt_expire = 0;
262 			Bcopy(IF_LLADDR(rt->rt_ifp), LLADDR(SDL(gate)),
263 			      SDL(gate)->sdl_alen = rt->rt_ifp->if_addrlen);
264 			if (useloopback)
265 				rt->rt_ifp = loif;
266 
267 		}
268 		break;
269 
270 	case RTM_DELETE:
271 		if (la == 0)
272 			break;
273 		arp_inuse--;
274 		LIST_REMOVE(la, la_le);
275 		rt->rt_llinfo = 0;
276 		rt->rt_flags &= ~RTF_LLINFO;
277 		if (la->la_hold)
278 			m_freem(la->la_hold);
279 		Free((caddr_t)la);
280 	}
281 }
282 
283 /*
284  * Broadcast an ARP request. Caller specifies:
285  *	- arp header source ip address
286  *	- arp header target ip address
287  *	- arp header source ethernet address
288  */
289 static void
290 arprequest(ifp, sip, tip, enaddr)
291 	register struct ifnet *ifp;
292 	register struct in_addr *sip, *tip;
293 	register u_char *enaddr;
294 {
295 	register struct mbuf *m;
296 	register struct ether_header *eh;
297 	register struct arc_header *arh;
298 	register struct arphdr *ah;
299 	struct sockaddr sa;
300 	static u_char	llcx[] = { 0x82, 0x40, LLC_SNAP_LSAP, LLC_SNAP_LSAP,
301 				   LLC_UI, 0x00, 0x00, 0x00, 0x08, 0x06 };
302 	u_short ar_hrd;
303 
304 	if ((m = m_gethdr(M_DONTWAIT, MT_DATA)) == NULL)
305 		return;
306 	m->m_pkthdr.rcvif = (struct ifnet *)0;
307 	switch (ifp->if_type) {
308 	case IFT_ARCNET:
309 		ar_hrd = htons(ARPHRD_ARCNET);
310 
311 		m->m_len = arphdr_len2(ifp->if_addrlen, sizeof(struct in_addr));
312 		m->m_pkthdr.len = m->m_len;
313 		MH_ALIGN(m, m->m_len);
314 
315 		arh = (struct arc_header *)sa.sa_data;
316 		arh->arc_dhost = *ifp->if_broadcastaddr;
317 		arh->arc_type = ARCTYPE_ARP;
318 
319 		ah = mtod(m, struct arphdr *);
320 		break;
321 
322 	case IFT_ISO88025:
323 		ar_hrd = htons(ARPHRD_IEEE802);
324 
325 		m->m_len = sizeof(llcx) +
326 		    arphdr_len2(ifp->if_addrlen, sizeof(struct in_addr));
327 		m->m_pkthdr.len = m->m_len;
328 		MH_ALIGN(m, m->m_len);
329 
330 		(void)memcpy(mtod(m, caddr_t), llcx, sizeof(llcx));
331 		(void)memcpy(sa.sa_data, ifp->if_broadcastaddr, 6);
332 		(void)memcpy(sa.sa_data + 6, enaddr, 6);
333 		sa.sa_data[6] |= TR_RII;
334 		sa.sa_data[12] = TR_AC;
335 		sa.sa_data[13] = TR_LLC_FRAME;
336 
337 		ah = (struct arphdr *)(mtod(m, char *) + sizeof(llcx));
338 		break;
339 	case IFT_FDDI:
340 	case IFT_ETHER:
341 		/*
342 		 * This may not be correct for types not explicitly
343 		 * listed, but this is our best guess
344 		 */
345 	default:
346 		ar_hrd = htons(ARPHRD_ETHER);
347 
348 		m->m_len = arphdr_len2(ifp->if_addrlen, sizeof(struct in_addr));
349 		m->m_pkthdr.len = m->m_len;
350 		MH_ALIGN(m, m->m_len);
351 
352 		eh = (struct ether_header *)sa.sa_data;
353 		/* if_output will not swap */
354 		eh->ether_type = htons(ETHERTYPE_ARP);
355 		(void)memcpy(eh->ether_dhost, ifp->if_broadcastaddr,
356 		    sizeof(eh->ether_dhost));
357 
358 		ah = mtod(m, struct arphdr *);
359 		break;
360 	}
361 
362 	ah->ar_hrd = ar_hrd;
363 	ah->ar_pro = htons(ETHERTYPE_IP);
364 	ah->ar_hln = ifp->if_addrlen;		/* hardware address length */
365 	ah->ar_pln = sizeof(struct in_addr);	/* protocol address length */
366 	ah->ar_op = htons(ARPOP_REQUEST);
367 	(void)memcpy(ar_sha(ah), enaddr, ah->ar_hln);
368 	(void)memcpy(ar_spa(ah), sip, ah->ar_pln);
369 	(void)memcpy(ar_tpa(ah), tip, ah->ar_pln);
370 
371 	sa.sa_family = AF_UNSPEC;
372 	sa.sa_len = sizeof(sa);
373 	(*ifp->if_output)(ifp, m, &sa, (struct rtentry *)0);
374 }
375 
376 /*
377  * Resolve an IP address into an ethernet address.  If success,
378  * desten is filled in.  If there is no entry in arptab,
379  * set one up and broadcast a request for the IP address.
380  * Hold onto this mbuf and resend it once the address
381  * is finally resolved.  A return value of 1 indicates
382  * that desten has been filled in and the packet should be sent
383  * normally; a 0 return indicates that the packet has been
384  * taken over here, either now or for later transmission.
385  */
386 int
387 arpresolve(ifp, rt, m, dst, desten, rt0)
388 	register struct ifnet *ifp;
389 	register struct rtentry *rt;
390 	struct mbuf *m;
391 	register struct sockaddr *dst;
392 	register u_char *desten;
393 	struct rtentry *rt0;
394 {
395 	struct llinfo_arp *la = 0;
396 	struct sockaddr_dl *sdl;
397 
398 	if (m->m_flags & M_BCAST) {	/* broadcast */
399 		(void)memcpy(desten, ifp->if_broadcastaddr, ifp->if_addrlen);
400 		return (1);
401 	}
402 	if (m->m_flags & M_MCAST && ifp->if_type != IFT_ARCNET) {/* multicast */
403 		ETHER_MAP_IP_MULTICAST(&SIN(dst)->sin_addr, desten);
404 		return(1);
405 	}
406 	if (rt)
407 		la = (struct llinfo_arp *)rt->rt_llinfo;
408 	if (la == 0) {
409 		la = arplookup(SIN(dst)->sin_addr.s_addr, 1, 0);
410 		if (la)
411 			rt = la->la_rt;
412 	}
413 	if (la == 0 || rt == 0) {
414 		log(LOG_DEBUG, "arpresolve: can't allocate llinfo for %s%s%s\n",
415 			inet_ntoa(SIN(dst)->sin_addr), la ? "la" : "",
416 				rt ? "rt" : "");
417 		m_freem(m);
418 		return (0);
419 	}
420 	sdl = SDL(rt->rt_gateway);
421 	/*
422 	 * Check the address family and length is valid, the address
423 	 * is resolved; otherwise, try to resolve.
424 	 */
425 	if ((rt->rt_expire == 0 || rt->rt_expire > time_second) &&
426 	    sdl->sdl_family == AF_LINK && sdl->sdl_alen != 0) {
427 		/*
428 		 * If entry has an expiry time and it is approaching,
429 		 * see if we need to send an ARP request within this
430 		 * arpt_down interval.
431 		 */
432 		if ((rt->rt_expire != 0) &&
433 		    (time_second + (arp_maxtries - la->la_asked) * arpt_down >
434 		     rt->rt_expire)) {
435 			arprequest(ifp,
436 				   &SIN(rt->rt_ifa->ifa_addr)->sin_addr,
437 				   &SIN(dst)->sin_addr,
438 				   IF_LLADDR(ifp));
439 			la->la_asked++;
440 		}
441 
442 		bcopy(LLADDR(sdl), desten, sdl->sdl_alen);
443 		return 1;
444 	}
445 	/*
446 	 * If ARP is disabled on this interface, stop.
447 	 * XXX
448 	 * Probably should not allocate empty llinfo struct if we are
449 	 * not going to be sending out an arp request.
450 	 */
451 	if (ifp->if_flags & IFF_NOARP) {
452 		m_freem(m);
453 		return (0);
454 	}
455 	/*
456 	 * There is an arptab entry, but no ethernet address
457 	 * response yet.  Replace the held mbuf with this
458 	 * latest one.
459 	 */
460 	if (la->la_hold)
461 		m_freem(la->la_hold);
462 	la->la_hold = m;
463 	if (rt->rt_expire) {
464 		rt->rt_flags &= ~RTF_REJECT;
465 		if (la->la_asked == 0 || rt->rt_expire != time_second) {
466 			rt->rt_expire = time_second;
467 			if (la->la_asked++ < arp_maxtries)
468 			    arprequest(ifp,
469 			        &SIN(rt->rt_ifa->ifa_addr)->sin_addr,
470 				&SIN(dst)->sin_addr,
471 				IF_LLADDR(ifp));
472 			else {
473 				rt->rt_flags |= RTF_REJECT;
474 				rt->rt_expire += arpt_down;
475 				la->la_asked = 0;
476 			}
477 
478 		}
479 	}
480 	return (0);
481 }
482 
483 /*
484  * Common length and type checks are done here,
485  * then the protocol-specific routine is called.
486  */
487 static void
488 arpintr()
489 {
490 	register struct mbuf *m;
491 	register struct arphdr *ar;
492 	int s;
493 
494 	if (!arpinit_done) {
495 		arpinit_done = 1;
496 		timeout(arptimer, (caddr_t)0, hz);
497 	}
498 	while (arpintrq.ifq_head) {
499 		s = splimp();
500 		IF_DEQUEUE(&arpintrq, m);
501 		splx(s);
502 		if (m == 0 || (m->m_flags & M_PKTHDR) == 0)
503 			panic("arpintr");
504 
505                 if (m->m_len < sizeof(struct arphdr) &&
506                     ((m = m_pullup(m, sizeof(struct arphdr))) == NULL)) {
507 			log(LOG_ERR, "arp: runt packet -- m_pullup failed\n");
508 			continue;
509 		}
510 		ar = mtod(m, struct arphdr *);
511 
512 		if (ntohs(ar->ar_hrd) != ARPHRD_ETHER
513 		    && ntohs(ar->ar_hrd) != ARPHRD_IEEE802
514 		    && ntohs(ar->ar_hrd) != ARPHRD_ARCNET) {
515 			log(LOG_ERR,
516 			    "arp: unknown hardware address format (0x%2D)\n",
517 			    (unsigned char *)&ar->ar_hrd, "");
518 			m_freem(m);
519 			continue;
520 		}
521 
522 		if (m->m_pkthdr.len < arphdr_len(ar) &&
523 		    (m = m_pullup(m, arphdr_len(ar))) == NULL) {
524 			log(LOG_ERR, "arp: runt packet\n");
525 			m_freem(m);
526 			continue;
527 		}
528 
529 		switch (ntohs(ar->ar_pro)) {
530 #ifdef INET
531 			case ETHERTYPE_IP:
532 				in_arpinput(m);
533 				continue;
534 #endif
535 		}
536 		m_freem(m);
537 	}
538 }
539 
540 #ifdef INET
541 /*
542  * ARP for Internet protocols on 10 Mb/s Ethernet.
543  * Algorithm is that given in RFC 826.
544  * In addition, a sanity check is performed on the sender
545  * protocol address, to catch impersonators.
546  * We no longer handle negotiations for use of trailer protocol:
547  * Formerly, ARP replied for protocol type ETHERTYPE_TRAIL sent
548  * along with IP replies if we wanted trailers sent to us,
549  * and also sent them in response to IP replies.
550  * This allowed either end to announce the desire to receive
551  * trailer packets.
552  * We no longer reply to requests for ETHERTYPE_TRAIL protocol either,
553  * but formerly didn't normally send requests.
554  */
555 static int log_arp_wrong_iface = 1;
556 static int log_arp_movements = 1;
557 
558 SYSCTL_INT(_net_link_ether_inet, OID_AUTO, log_arp_wrong_iface, CTLFLAG_RW,
559 	&log_arp_wrong_iface, 0,
560 	"log arp packets arriving on the wrong interface");
561 SYSCTL_INT(_net_link_ether_inet, OID_AUTO, log_arp_movements, CTLFLAG_RW,
562         &log_arp_movements, 0,
563         "log arp replies from MACs different than the one in the cache");
564 
565 
566 static void
567 in_arpinput(m)
568 	struct mbuf *m;
569 {
570 	register struct arphdr *ah;
571 	register struct ifnet *ifp = m->m_pkthdr.rcvif;
572 	struct ether_header *eh;
573 	struct arc_header *arh;
574 	struct iso88025_header *th = (struct iso88025_header *)0;
575 	struct iso88025_sockaddr_dl_data *trld;
576 	register struct llinfo_arp *la = 0;
577 	register struct rtentry *rt;
578 	struct ifaddr *ifa;
579 	struct in_ifaddr *ia;
580 	struct sockaddr_dl *sdl;
581 	struct sockaddr sa;
582 	struct in_addr isaddr, itaddr, myaddr;
583 	int op, rif_len;
584 	int req_len;
585 
586 	req_len = arphdr_len2(ifp->if_addrlen, sizeof(struct in_addr));
587 	if (m->m_len < req_len && (m = m_pullup(m, req_len)) == NULL) {
588 		log(LOG_ERR, "in_arp: runt packet -- m_pullup failed\n");
589 		return;
590 	}
591 
592 	ah = mtod(m, struct arphdr *);
593 	op = ntohs(ah->ar_op);
594 	(void)memcpy(&isaddr, ar_spa(ah), sizeof (isaddr));
595 	(void)memcpy(&itaddr, ar_tpa(ah), sizeof (itaddr));
596 #ifdef BRIDGE
597 #define BRIDGE_TEST (do_bridge)
598 #else
599 #define BRIDGE_TEST (0) /* cc will optimise the test away */
600 #endif
601 	/*
602 	 * For a bridge, we want to check the address irrespective
603 	 * of the receive interface. (This will change slightly
604 	 * when we have clusters of interfaces).
605 	 */
606 	LIST_FOREACH(ia, INADDR_HASH(itaddr.s_addr), ia_hash)
607 		if ((BRIDGE_TEST || (ia->ia_ifp == ifp)) &&
608 		    itaddr.s_addr == ia->ia_addr.sin_addr.s_addr)
609 			goto match;
610 	LIST_FOREACH(ia, INADDR_HASH(isaddr.s_addr), ia_hash)
611 		if ((BRIDGE_TEST || (ia->ia_ifp == ifp)) &&
612 		    isaddr.s_addr == ia->ia_addr.sin_addr.s_addr)
613 			goto match;
614 	/*
615 	 * No match, use the first inet address on the receive interface
616 	 * as a dummy address for the rest of the function.
617 	 */
618 	TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link)
619 		if (ifa->ifa_addr && ifa->ifa_addr->sa_family == AF_INET) {
620 			ia = ifatoia(ifa);
621 			goto match;
622 		}
623 	/*
624 	 * If bridging, fall back to using any inet address.
625 	 */
626 	if (!BRIDGE_TEST ||
627 	    (ia = TAILQ_FIRST(&in_ifaddrhead)) == NULL) {
628 		m_freem(m);
629 		return;
630 	}
631 match:
632 	myaddr = ia->ia_addr.sin_addr;
633 	if (!bcmp(ar_sha(ah), IF_LLADDR(ifp), ifp->if_addrlen)) {
634 		m_freem(m);	/* it's from me, ignore it. */
635 		return;
636 	}
637 	if (!bcmp(ar_sha(ah), ifp->if_broadcastaddr, ifp->if_addrlen)) {
638 		log(LOG_ERR,
639 		    "arp: link address is broadcast for IP address %s!\n",
640 		    inet_ntoa(isaddr));
641 		m_freem(m);
642 		return;
643 	}
644 	if (isaddr.s_addr == myaddr.s_addr) {
645 		log(LOG_ERR,
646 		   "arp: %*D is using my IP address %s!\n",
647 		   ifp->if_addrlen, (u_char *)ar_sha(ah), ":",
648 		   inet_ntoa(isaddr));
649 		itaddr = myaddr;
650 		goto reply;
651 	}
652 	la = arplookup(isaddr.s_addr, itaddr.s_addr == myaddr.s_addr, 0);
653 	if (la && (rt = la->la_rt) && (sdl = SDL(rt->rt_gateway))) {
654 		/* the following is not an error when doing bridging */
655 		if (!BRIDGE_TEST && rt->rt_ifp != ifp) {
656 			if (log_arp_wrong_iface)
657 				log(LOG_ERR, "arp: %s is on %s%d but got reply from %*D on %s%d\n",
658 				    inet_ntoa(isaddr),
659 				    rt->rt_ifp->if_name, rt->rt_ifp->if_unit,
660 				    ifp->if_addrlen, (u_char *)ar_sha(ah), ":",
661 				    ifp->if_name, ifp->if_unit);
662 			goto reply;
663 		}
664 		if (sdl->sdl_alen &&
665 		    bcmp(ar_sha(ah), LLADDR(sdl), sdl->sdl_alen)) {
666 			if (rt->rt_expire) {
667 			    if (log_arp_movements)
668 			        log(LOG_INFO, "arp: %s moved from %*D to %*D on %s%d\n",
669 				    inet_ntoa(isaddr),
670 				    ifp->if_addrlen, (u_char *)LLADDR(sdl), ":",
671 				    ifp->if_addrlen, (u_char *)ar_sha(ah), ":",
672 				    ifp->if_name, ifp->if_unit);
673 			} else {
674 			    log(LOG_ERR,
675 				"arp: %*D attempts to modify permanent entry for %s on %s%d\n",
676 				ifp->if_addrlen, (u_char *)ar_sha(ah), ":",
677 				inet_ntoa(isaddr), ifp->if_name, ifp->if_unit);
678 			    goto reply;
679 			}
680 		}
681 		/*
682 		 * sanity check for the address length.
683 		 * XXX this does not work for protocols with variable address
684 		 * length. -is
685 		 */
686 		if (sdl->sdl_alen &&
687 		    sdl->sdl_alen != ah->ar_hln) {
688 			log(LOG_WARNING,
689 			    "arp from %*D: new addr len %d, was %d",
690 			    ifp->if_addrlen, (u_char *) ar_sha(ah), ":",
691 			    ah->ar_hln, sdl->sdl_alen);
692 		}
693 		if (ifp->if_addrlen != ah->ar_hln) {
694 			log(LOG_WARNING,
695 			    "arp from %*D: addr len: new %d, i/f %d (ignored)",
696 			    ifp->if_addrlen, (u_char *) ar_sha(ah), ":",
697 			    ah->ar_hln, ifp->if_addrlen);
698 			goto reply;
699 		}
700 		(void)memcpy(LLADDR(sdl), ar_sha(ah),
701 		    sdl->sdl_alen = ah->ar_hln);
702 		/*
703 		 * If we receive an arp from a token-ring station over
704 		 * a token-ring nic then try to save the source
705 		 * routing info.
706 		 */
707 		if (ifp->if_type == IFT_ISO88025) {
708 			th = (struct iso88025_header *)m->m_pkthdr.header;
709 			trld = SDL_ISO88025(sdl);
710 			rif_len = TR_RCF_RIFLEN(th->rcf);
711 			if ((th->iso88025_shost[0] & TR_RII) &&
712 			    (rif_len > 2)) {
713 				trld->trld_rcf = th->rcf;
714 				trld->trld_rcf ^= htons(TR_RCF_DIR);
715 				memcpy(trld->trld_route, th->rd, rif_len - 2);
716 				trld->trld_rcf &= ~htons(TR_RCF_BCST_MASK);
717 				/*
718 				 * Set up source routing information for
719 				 * reply packet (XXX)
720 				 */
721 				m->m_data -= rif_len;
722 				m->m_len  += rif_len;
723 				m->m_pkthdr.len += rif_len;
724 			} else {
725 				th->iso88025_shost[0] &= ~TR_RII;
726 				trld->trld_rcf = 0;
727 			}
728 			m->m_data -= 8;
729 			m->m_len  += 8;
730 			m->m_pkthdr.len += 8;
731 			th->rcf = trld->trld_rcf;
732 		}
733 		if (rt->rt_expire)
734 			rt->rt_expire = time_second + arpt_keep;
735 		rt->rt_flags &= ~RTF_REJECT;
736 		la->la_asked = 0;
737 		if (la->la_hold) {
738 			(*ifp->if_output)(ifp, la->la_hold,
739 				rt_key(rt), rt);
740 			la->la_hold = 0;
741 		}
742 	}
743 reply:
744 	if (op != ARPOP_REQUEST) {
745 		m_freem(m);
746 		return;
747 	}
748 	if (itaddr.s_addr == myaddr.s_addr) {
749 		/* I am the target */
750 		(void)memcpy(ar_tha(ah), ar_sha(ah), ah->ar_hln);
751 		(void)memcpy(ar_sha(ah), IF_LLADDR(ifp), ah->ar_hln);
752 	} else {
753 		la = arplookup(itaddr.s_addr, 0, SIN_PROXY);
754 		if (la == NULL) {
755 			struct sockaddr_in sin;
756 
757 			if (!arp_proxyall) {
758 				m_freem(m);
759 				return;
760 			}
761 
762 			bzero(&sin, sizeof sin);
763 			sin.sin_family = AF_INET;
764 			sin.sin_len = sizeof sin;
765 			sin.sin_addr = itaddr;
766 
767 			rt = rtalloc1((struct sockaddr *)&sin, 0, 0UL);
768 			if (!rt) {
769 				m_freem(m);
770 				return;
771 			}
772 			/*
773 			 * Don't send proxies for nodes on the same interface
774 			 * as this one came out of, or we'll get into a fight
775 			 * over who claims what Ether address.
776 			 */
777 			if (rt->rt_ifp == ifp) {
778 				rtfree(rt);
779 				m_freem(m);
780 				return;
781 			}
782 			(void)memcpy(ar_tha(ah), ar_sha(ah), ah->ar_hln);
783 			(void)memcpy(ar_sha(ah), IF_LLADDR(ifp), ah->ar_hln);
784 			rtfree(rt);
785 
786 			/*
787 			 * Also check that the node which sent the ARP packet
788 			 * is on the the interface we expect it to be on. This
789 			 * avoids ARP chaos if an interface is connected to the
790 			 * wrong network.
791 			 */
792 			sin.sin_addr = isaddr;
793 
794 			rt = rtalloc1((struct sockaddr *)&sin, 0, 0UL);
795 			if (!rt) {
796 				m_freem(m);
797 				return;
798 			}
799 			if (rt->rt_ifp != ifp) {
800 				log(LOG_INFO, "arp_proxy: ignoring request"
801 				    " from %s via %s%d, expecting %s%d\n",
802 				    inet_ntoa(isaddr), ifp->if_name,
803 				    ifp->if_unit, rt->rt_ifp->if_name,
804 				    rt->rt_ifp->if_unit);
805 				rtfree(rt);
806 				m_freem(m);
807 				return;
808 			}
809 			rtfree(rt);
810 
811 #ifdef DEBUG_PROXY
812 			printf("arp: proxying for %s\n",
813 			       inet_ntoa(itaddr));
814 #endif
815 		} else {
816 			rt = la->la_rt;
817 			(void)memcpy(ar_tha(ah), ar_sha(ah), ah->ar_hln);
818 			sdl = SDL(rt->rt_gateway);
819 			(void)memcpy(ar_sha(ah), LLADDR(sdl), ah->ar_hln);
820 		}
821 	}
822 
823 	(void)memcpy(ar_tpa(ah), ar_spa(ah), ah->ar_pln);
824 	(void)memcpy(ar_spa(ah), &itaddr, ah->ar_pln);
825 	ah->ar_op = htons(ARPOP_REPLY);
826 	ah->ar_pro = htons(ETHERTYPE_IP); /* let's be sure! */
827 	switch (ifp->if_type) {
828 	case IFT_ARCNET:
829 		arh = (struct arc_header *)sa.sa_data;
830 		arh->arc_dhost = *ar_tha(ah);
831 		arh->arc_type = ARCTYPE_ARP;
832 		break;
833 
834 	case IFT_ISO88025:
835 		/* Re-arrange the source/dest address */
836 		memcpy(th->iso88025_dhost, th->iso88025_shost,
837 		    sizeof(th->iso88025_dhost));
838 		memcpy(th->iso88025_shost, IF_LLADDR(ifp),
839 		    sizeof(th->iso88025_shost));
840 		/* Set the source routing bit if neccesary */
841 		if (th->iso88025_dhost[0] & TR_RII) {
842 			th->iso88025_dhost[0] &= ~TR_RII;
843 			if (TR_RCF_RIFLEN(th->rcf) > 2)
844 				th->iso88025_shost[0] |= TR_RII;
845 		}
846 		/* Copy the addresses, ac and fc into sa_data */
847 		memcpy(sa.sa_data, th->iso88025_dhost,
848 		    sizeof(th->iso88025_dhost) * 2);
849 		sa.sa_data[(sizeof(th->iso88025_dhost) * 2)] = TR_AC;
850 		sa.sa_data[(sizeof(th->iso88025_dhost) * 2) + 1] = TR_LLC_FRAME;
851 		break;
852 	case IFT_ETHER:
853 	case IFT_FDDI:
854 	/*
855 	 * May not be correct for types not explictly
856 	 * listed, but it is our best guess.
857 	 */
858 	default:
859 		eh = (struct ether_header *)sa.sa_data;
860 		(void)memcpy(eh->ether_dhost, ar_tha(ah),
861 		    sizeof(eh->ether_dhost));
862 		eh->ether_type = htons(ETHERTYPE_ARP);
863 		break;
864 	}
865 	sa.sa_family = AF_UNSPEC;
866 	sa.sa_len = sizeof(sa);
867 	(*ifp->if_output)(ifp, m, &sa, (struct rtentry *)0);
868 	return;
869 }
870 #endif
871 
872 /*
873  * Free an arp entry.
874  */
875 static void
876 arptfree(la)
877 	register struct llinfo_arp *la;
878 {
879 	register struct rtentry *rt = la->la_rt;
880 	register struct sockaddr_dl *sdl;
881 	if (rt == 0)
882 		panic("arptfree");
883 	if (rt->rt_refcnt > 0 && (sdl = SDL(rt->rt_gateway)) &&
884 	    sdl->sdl_family == AF_LINK) {
885 		sdl->sdl_alen = 0;
886 		la->la_asked = 0;
887 		rt->rt_flags &= ~RTF_REJECT;
888 		return;
889 	}
890 	rtrequest(RTM_DELETE, rt_key(rt), (struct sockaddr *)0, rt_mask(rt),
891 			0, (struct rtentry **)0);
892 }
893 /*
894  * Lookup or enter a new address in arptab.
895  */
896 static struct llinfo_arp *
897 arplookup(addr, create, proxy)
898 	u_long addr;
899 	int create, proxy;
900 {
901 	register struct rtentry *rt;
902 	static struct sockaddr_inarp sin = {sizeof(sin), AF_INET };
903 	const char *why = 0;
904 
905 	sin.sin_addr.s_addr = addr;
906 	sin.sin_other = proxy ? SIN_PROXY : 0;
907 	rt = rtalloc1((struct sockaddr *)&sin, create, 0UL);
908 	if (rt == 0)
909 		return (0);
910 	rt->rt_refcnt--;
911 
912 	if (rt->rt_flags & RTF_GATEWAY)
913 		why = "host is not on local network";
914 	else if ((rt->rt_flags & RTF_LLINFO) == 0)
915 		why = "could not allocate llinfo";
916 	else if (rt->rt_gateway->sa_family != AF_LINK)
917 		why = "gateway route is not ours";
918 
919 	if (why && create) {
920 		log(LOG_DEBUG, "arplookup %s failed: %s\n",
921 		    inet_ntoa(sin.sin_addr), why);
922 		return 0;
923 	} else if (why) {
924 		return 0;
925 	}
926 	return ((struct llinfo_arp *)rt->rt_llinfo);
927 }
928 
929 void
930 arp_ifinit(ifp, ifa)
931 	struct ifnet *ifp;
932 	struct ifaddr *ifa;
933 {
934 	if (ntohl(IA_SIN(ifa)->sin_addr.s_addr) != INADDR_ANY)
935 		arprequest(ifp, &IA_SIN(ifa)->sin_addr,
936 				&IA_SIN(ifa)->sin_addr, IF_LLADDR(ifp));
937 	ifa->ifa_rtrequest = arp_rtrequest;
938 	ifa->ifa_flags |= RTF_CLONING;
939 }
940 
941 static void
942 arp_init(void)
943 {
944 
945 	arpintrq.ifq_maxlen = 50;
946 	mtx_init(&arpintrq.ifq_mtx, "arp_inq", NULL, MTX_DEF);
947 	LIST_INIT(&llinfo_arp);
948 	register_netisr(NETISR_ARP, arpintr);
949 }
950 
951 SYSINIT(arp, SI_SUB_PROTO_DOMAIN, SI_ORDER_ANY, arp_init, 0);
952