]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - sys/netinet/if_ether.c
MFC r201416:
[FreeBSD/stable/8.git] / sys / netinet / if_ether.c
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  * 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.c  8.1 (Berkeley) 6/10/93
30  */
31
32 /*
33  * Ethernet address resolution protocol.
34  * TODO:
35  *      add "inuse/lock" bit (or ref. count) along with valid bit
36  */
37
38 #include <sys/cdefs.h>
39 __FBSDID("$FreeBSD$");
40
41 #include "opt_inet.h"
42 #include "opt_carp.h"
43
44 #include <sys/param.h>
45 #include <sys/kernel.h>
46 #include <sys/queue.h>
47 #include <sys/sysctl.h>
48 #include <sys/systm.h>
49 #include <sys/mbuf.h>
50 #include <sys/malloc.h>
51 #include <sys/proc.h>
52 #include <sys/socket.h>
53 #include <sys/syslog.h>
54
55 #include <net/if.h>
56 #include <net/if_dl.h>
57 #include <net/if_types.h>
58 #include <net/netisr.h>
59 #include <net/if_llc.h>
60 #include <net/ethernet.h>
61 #include <net/route.h>
62 #include <net/vnet.h>
63
64 #include <netinet/in.h>
65 #include <netinet/in_var.h>
66 #include <net/if_llatbl.h>
67 #include <netinet/if_ether.h>
68
69 #include <net/if_arc.h>
70 #include <net/iso88025.h>
71
72 #ifdef DEV_CARP
73 #include <netinet/ip_carp.h>
74 #endif
75
76 #include <security/mac/mac_framework.h>
77
78 #define SIN(s) ((struct sockaddr_in *)s)
79 #define SDL(s) ((struct sockaddr_dl *)s)
80
81 SYSCTL_DECL(_net_link_ether);
82 SYSCTL_NODE(_net_link_ether, PF_INET, inet, CTLFLAG_RW, 0, "");
83
84 VNET_DEFINE(int, useloopback) = 1;      /* use loopback interface for
85                                          * local traffic */
86
87 /* timer values */
88 static VNET_DEFINE(int, arpt_keep) = (20*60);   /* once resolved, good for 20
89                                                  * minutes */
90 static VNET_DEFINE(int, arpt_down) = 20;      /* keep incomplete entries for
91                                                * 20 seconds */
92 static VNET_DEFINE(int, arp_maxtries) = 5;
93 static VNET_DEFINE(int, arp_proxyall);
94
95 #define V_arpt_keep             VNET(arpt_keep)
96 #define V_arpt_down             VNET(arpt_down)
97 #define V_arp_maxtries          VNET(arp_maxtries)
98 #define V_arp_proxyall          VNET(arp_proxyall)
99
100 SYSCTL_VNET_INT(_net_link_ether_inet, OID_AUTO, max_age, CTLFLAG_RW,
101         &VNET_NAME(arpt_keep), 0,
102         "ARP entry lifetime in seconds");
103
104 SYSCTL_VNET_INT(_net_link_ether_inet, OID_AUTO, maxtries, CTLFLAG_RW,
105         &VNET_NAME(arp_maxtries), 0,
106         "ARP resolution attempts before returning error");
107 SYSCTL_VNET_INT(_net_link_ether_inet, OID_AUTO, useloopback, CTLFLAG_RW,
108         &VNET_NAME(useloopback), 0,
109         "Use the loopback interface for local traffic");
110 SYSCTL_VNET_INT(_net_link_ether_inet, OID_AUTO, proxyall, CTLFLAG_RW,
111         &VNET_NAME(arp_proxyall), 0,
112         "Enable proxy ARP for all suitable requests");
113
114 static void     arp_init(void);
115 void            arprequest(struct ifnet *,
116                         struct in_addr *, struct in_addr *, u_char *);
117 static void     arpintr(struct mbuf *);
118 static void     arptimer(void *);
119 #ifdef INET
120 static void     in_arpinput(struct mbuf *);
121 #endif
122
123 static const struct netisr_handler arp_nh = {
124         .nh_name = "arp",
125         .nh_handler = arpintr,
126         .nh_proto = NETISR_ARP,
127         .nh_policy = NETISR_POLICY_SOURCE,
128 };
129
130 #ifdef AF_INET
131 void arp_ifscrub(struct ifnet *ifp, uint32_t addr);
132
133 /*
134  * called by in_ifscrub to remove entry from the table when
135  * the interface goes away
136  */
137 void
138 arp_ifscrub(struct ifnet *ifp, uint32_t addr)
139 {
140         struct sockaddr_in addr4;
141
142         bzero((void *)&addr4, sizeof(addr4));
143         addr4.sin_len    = sizeof(addr4);
144         addr4.sin_family = AF_INET;
145         addr4.sin_addr.s_addr = addr;
146         CURVNET_SET(ifp->if_vnet);
147         IF_AFDATA_LOCK(ifp);
148         lla_lookup(LLTABLE(ifp), (LLE_DELETE | LLE_IFADDR),
149             (struct sockaddr *)&addr4);
150         IF_AFDATA_UNLOCK(ifp);
151         CURVNET_RESTORE();
152 }
153 #endif
154
155 /*
156  * Timeout routine.  Age arp_tab entries periodically.
157  */
158 static void
159 arptimer(void *arg)
160 {
161         struct ifnet *ifp;
162         struct llentry   *lle = (struct llentry *)arg;
163
164         if (lle == NULL) {
165                 panic("%s: NULL entry!\n", __func__);
166                 return;
167         }
168         ifp = lle->lle_tbl->llt_ifp;
169         IF_AFDATA_LOCK(ifp);
170         LLE_WLOCK(lle);
171         if (lle->la_flags & LLE_STATIC)
172                 LLE_WUNLOCK(lle);
173         else {
174                 if (!callout_pending(&lle->la_timer) &&
175                     callout_active(&lle->la_timer)) {
176                         (void) llentry_free(lle);
177                 } 
178 #ifdef DIAGNOSTIC
179                 else {
180                         struct sockaddr *l3addr = L3_ADDR(lle);
181                         log(LOG_INFO, 
182                             "arptimer issue: %p, IPv4 address: \"%s\"\n", lle,
183                             inet_ntoa(
184                                 ((const struct sockaddr_in *)l3addr)->sin_addr));
185                 }
186 #endif
187         }
188         IF_AFDATA_UNLOCK(ifp);
189 }
190
191 /*
192  * Broadcast an ARP request. Caller specifies:
193  *      - arp header source ip address
194  *      - arp header target ip address
195  *      - arp header source ethernet address
196  */
197 void
198 arprequest(struct ifnet *ifp, struct in_addr *sip, struct in_addr  *tip,
199     u_char *enaddr)
200 {
201         struct mbuf *m;
202         struct arphdr *ah;
203         struct sockaddr sa;
204
205         if (sip == NULL) {
206                 /* XXX don't believe this can happen (or explain why) */
207                 /*
208                  * The caller did not supply a source address, try to find
209                  * a compatible one among those assigned to this interface.
210                  */
211                 struct ifaddr *ifa;
212
213                 TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) {
214                         if (!ifa->ifa_addr ||
215                             ifa->ifa_addr->sa_family != AF_INET)
216                                 continue;
217                         sip = &SIN(ifa->ifa_addr)->sin_addr;
218                         if (0 == ((sip->s_addr ^ tip->s_addr) &
219                             SIN(ifa->ifa_netmask)->sin_addr.s_addr) )
220                                 break;  /* found it. */
221                 }
222                 if (sip == NULL) {  
223                         printf("%s: cannot find matching address\n", __func__);
224                         return;
225                 }
226         }
227
228         if ((m = m_gethdr(M_DONTWAIT, MT_DATA)) == NULL)
229                 return;
230         m->m_len = sizeof(*ah) + 2*sizeof(struct in_addr) +
231                 2*ifp->if_data.ifi_addrlen;
232         m->m_pkthdr.len = m->m_len;
233         MH_ALIGN(m, m->m_len);
234         ah = mtod(m, struct arphdr *);
235         bzero((caddr_t)ah, m->m_len);
236 #ifdef MAC
237         mac_netinet_arp_send(ifp, m);
238 #endif
239         ah->ar_pro = htons(ETHERTYPE_IP);
240         ah->ar_hln = ifp->if_addrlen;           /* hardware address length */
241         ah->ar_pln = sizeof(struct in_addr);    /* protocol address length */
242         ah->ar_op = htons(ARPOP_REQUEST);
243         bcopy((caddr_t)enaddr, (caddr_t)ar_sha(ah), ah->ar_hln);
244         bcopy((caddr_t)sip, (caddr_t)ar_spa(ah), ah->ar_pln);
245         bcopy((caddr_t)tip, (caddr_t)ar_tpa(ah), ah->ar_pln);
246         sa.sa_family = AF_ARP;
247         sa.sa_len = 2;
248         m->m_flags |= M_BCAST;
249         (*ifp->if_output)(ifp, m, &sa, NULL);
250 }
251
252 /*
253  * Resolve an IP address into an ethernet address.
254  * On input:
255  *    ifp is the interface we use
256  *    rt0 is the route to the final destination (possibly useless)
257  *    m is the mbuf. May be NULL if we don't have a packet.
258  *    dst is the next hop,
259  *    desten is where we want the address.
260  *
261  * On success, desten is filled in and the function returns 0;
262  * If the packet must be held pending resolution, we return EWOULDBLOCK
263  * On other errors, we return the corresponding error code.
264  * Note that m_freem() handles NULL.
265  */
266 int
267 arpresolve(struct ifnet *ifp, struct rtentry *rt0, struct mbuf *m,
268         struct sockaddr *dst, u_char *desten, struct llentry **lle)
269 {
270         struct llentry *la = 0;
271         u_int flags = 0;
272         int error, renew;
273
274         *lle = NULL;
275         if (m != NULL) {
276                 if (m->m_flags & M_BCAST) {
277                         /* broadcast */
278                         (void)memcpy(desten,
279                             ifp->if_broadcastaddr, ifp->if_addrlen);
280                         return (0);
281                 }
282                 if (m->m_flags & M_MCAST && ifp->if_type != IFT_ARCNET) {
283                         /* multicast */
284                         ETHER_MAP_IP_MULTICAST(&SIN(dst)->sin_addr, desten);
285                         return (0);
286                 }
287         }
288         /* XXXXX
289          */
290 retry:
291         IF_AFDATA_RLOCK(ifp);   
292         la = lla_lookup(LLTABLE(ifp), flags, dst);
293         IF_AFDATA_RUNLOCK(ifp); 
294         if ((la == NULL) && ((flags & LLE_EXCLUSIVE) == 0)
295             && ((ifp->if_flags & (IFF_NOARP | IFF_STATICARP)) == 0)) {          
296                 flags |= (LLE_CREATE | LLE_EXCLUSIVE);
297                 IF_AFDATA_WLOCK(ifp);   
298                 la = lla_lookup(LLTABLE(ifp), flags, dst);
299                 IF_AFDATA_WUNLOCK(ifp); 
300         }
301         if (la == NULL) {
302                 if (flags & LLE_CREATE)
303                         log(LOG_DEBUG,
304                             "arpresolve: can't allocate llinfo for %s\n",
305                             inet_ntoa(SIN(dst)->sin_addr));
306                 m_freem(m);
307                 return (EINVAL);
308         } 
309
310         if ((la->la_flags & LLE_VALID) &&
311             ((la->la_flags & LLE_STATIC) || la->la_expire > time_second)) {
312                 bcopy(&la->ll_addr, desten, ifp->if_addrlen);
313                 /*
314                  * If entry has an expiry time and it is approaching,
315                  * see if we need to send an ARP request within this
316                  * arpt_down interval.
317                  */
318                 if (!(la->la_flags & LLE_STATIC) &&
319                     time_second + la->la_preempt > la->la_expire) {
320                         arprequest(ifp, NULL,
321                             &SIN(dst)->sin_addr, IF_LLADDR(ifp));
322
323                         la->la_preempt--;
324                 }
325                 
326                 *lle = la;
327                 error = 0;
328                 goto done;
329         } 
330                             
331         if (la->la_flags & LLE_STATIC) {   /* should not happen! */
332                 log(LOG_DEBUG, "arpresolve: ouch, empty static llinfo for %s\n",
333                     inet_ntoa(SIN(dst)->sin_addr));
334                 m_freem(m);
335                 error = EINVAL;
336                 goto done;
337         }
338
339         renew = (la->la_asked == 0 || la->la_expire != time_second);
340         if ((renew || m != NULL) && (flags & LLE_EXCLUSIVE) == 0) {
341                 flags |= LLE_EXCLUSIVE;
342                 LLE_RUNLOCK(la);
343                 goto retry;
344         }
345         /*
346          * There is an arptab entry, but no ethernet address
347          * response yet.  Replace the held mbuf with this
348          * latest one.
349          */
350         if (m != NULL) {
351                 if (la->la_hold != NULL)
352                         m_freem(la->la_hold);
353                 la->la_hold = m;
354                 if (renew == 0 && (flags & LLE_EXCLUSIVE)) {
355                         flags &= ~LLE_EXCLUSIVE;
356                         LLE_DOWNGRADE(la);
357                 }
358                 
359         }
360         /*
361          * Return EWOULDBLOCK if we have tried less than arp_maxtries. It
362          * will be masked by ether_output(). Return EHOSTDOWN/EHOSTUNREACH
363          * if we have already sent arp_maxtries ARP requests. Retransmit the
364          * ARP request, but not faster than one request per second.
365          */
366         if (la->la_asked < V_arp_maxtries)
367                 error = EWOULDBLOCK;    /* First request. */
368         else
369                 error = rt0 != NULL && (rt0->rt_flags & RTF_GATEWAY) ?
370                     EHOSTUNREACH : EHOSTDOWN;
371
372         if (renew) {
373                 LLE_ADDREF(la);
374                 la->la_expire = time_second + V_arpt_down;
375                 callout_reset(&la->la_timer, hz * V_arpt_down, arptimer, la);
376                 la->la_asked++;
377                 LLE_WUNLOCK(la);
378                 arprequest(ifp, NULL, &SIN(dst)->sin_addr,
379                     IF_LLADDR(ifp));
380                 return (error);
381         }
382 done:
383         if (flags & LLE_EXCLUSIVE)
384                 LLE_WUNLOCK(la);
385         else
386                 LLE_RUNLOCK(la);
387         return (error);
388 }
389
390 /*
391  * Common length and type checks are done here,
392  * then the protocol-specific routine is called.
393  */
394 static void
395 arpintr(struct mbuf *m)
396 {
397         struct arphdr *ar;
398
399         if (m->m_len < sizeof(struct arphdr) &&
400             ((m = m_pullup(m, sizeof(struct arphdr))) == NULL)) {
401                 log(LOG_ERR, "arp: runt packet -- m_pullup failed\n");
402                 return;
403         }
404         ar = mtod(m, struct arphdr *);
405
406         if (ntohs(ar->ar_hrd) != ARPHRD_ETHER &&
407             ntohs(ar->ar_hrd) != ARPHRD_IEEE802 &&
408             ntohs(ar->ar_hrd) != ARPHRD_ARCNET &&
409             ntohs(ar->ar_hrd) != ARPHRD_IEEE1394) {
410                 log(LOG_ERR, "arp: unknown hardware address format (0x%2D)\n",
411                     (unsigned char *)&ar->ar_hrd, "");
412                 m_freem(m);
413                 return;
414         }
415
416         if (m->m_len < arphdr_len(ar)) {
417                 if ((m = m_pullup(m, arphdr_len(ar))) == NULL) {
418                         log(LOG_ERR, "arp: runt packet\n");
419                         m_freem(m);
420                         return;
421                 }
422                 ar = mtod(m, struct arphdr *);
423         }
424
425         switch (ntohs(ar->ar_pro)) {
426 #ifdef INET
427         case ETHERTYPE_IP:
428                 in_arpinput(m);
429                 return;
430 #endif
431         }
432         m_freem(m);
433 }
434
435 #ifdef INET
436 /*
437  * ARP for Internet protocols on 10 Mb/s Ethernet.
438  * Algorithm is that given in RFC 826.
439  * In addition, a sanity check is performed on the sender
440  * protocol address, to catch impersonators.
441  * We no longer handle negotiations for use of trailer protocol:
442  * Formerly, ARP replied for protocol type ETHERTYPE_TRAIL sent
443  * along with IP replies if we wanted trailers sent to us,
444  * and also sent them in response to IP replies.
445  * This allowed either end to announce the desire to receive
446  * trailer packets.
447  * We no longer reply to requests for ETHERTYPE_TRAIL protocol either,
448  * but formerly didn't normally send requests.
449  */
450 static int log_arp_wrong_iface = 1;
451 static int log_arp_movements = 1;
452 static int log_arp_permanent_modify = 1;
453
454 SYSCTL_INT(_net_link_ether_inet, OID_AUTO, log_arp_wrong_iface, CTLFLAG_RW,
455         &log_arp_wrong_iface, 0,
456         "log arp packets arriving on the wrong interface");
457 SYSCTL_INT(_net_link_ether_inet, OID_AUTO, log_arp_movements, CTLFLAG_RW,
458         &log_arp_movements, 0,
459         "log arp replies from MACs different than the one in the cache");
460 SYSCTL_INT(_net_link_ether_inet, OID_AUTO, log_arp_permanent_modify, CTLFLAG_RW,
461         &log_arp_permanent_modify, 0,
462         "log arp replies from MACs different than the one in the permanent arp entry");
463
464
465 static void
466 in_arpinput(struct mbuf *m)
467 {
468         struct arphdr *ah;
469         struct ifnet *ifp = m->m_pkthdr.rcvif;
470         struct llentry *la = NULL;
471         struct rtentry *rt;
472         struct ifaddr *ifa;
473         struct in_ifaddr *ia;
474         struct mbuf *hold;
475         struct sockaddr sa;
476         struct in_addr isaddr, itaddr, myaddr;
477         u_int8_t *enaddr = NULL;
478         int op, flags;
479         int req_len;
480         int bridged = 0, is_bridge = 0;
481 #ifdef DEV_CARP
482         int carp_match = 0;
483 #endif
484         struct sockaddr_in sin;
485         sin.sin_len = sizeof(struct sockaddr_in);
486         sin.sin_family = AF_INET;
487         sin.sin_addr.s_addr = 0;
488
489         if (ifp->if_bridge)
490                 bridged = 1;
491         if (ifp->if_type == IFT_BRIDGE)
492                 is_bridge = 1;
493
494         req_len = arphdr_len2(ifp->if_addrlen, sizeof(struct in_addr));
495         if (m->m_len < req_len && (m = m_pullup(m, req_len)) == NULL) {
496                 log(LOG_ERR, "in_arp: runt packet -- m_pullup failed\n");
497                 return;
498         }
499
500         ah = mtod(m, struct arphdr *);
501         op = ntohs(ah->ar_op);
502         (void)memcpy(&isaddr, ar_spa(ah), sizeof (isaddr));
503         (void)memcpy(&itaddr, ar_tpa(ah), sizeof (itaddr));
504
505         /*
506          * For a bridge, we want to check the address irrespective
507          * of the receive interface. (This will change slightly
508          * when we have clusters of interfaces).
509          * If the interface does not match, but the recieving interface
510          * is part of carp, we call carp_iamatch to see if this is a
511          * request for the virtual host ip.
512          * XXX: This is really ugly!
513          */
514         IN_IFADDR_RLOCK();
515         LIST_FOREACH(ia, INADDR_HASH(itaddr.s_addr), ia_hash) {
516                 if (((bridged && ia->ia_ifp->if_bridge != NULL) ||
517                     ia->ia_ifp == ifp) &&
518                     itaddr.s_addr == ia->ia_addr.sin_addr.s_addr) {
519                         ifa_ref(&ia->ia_ifa);
520                         IN_IFADDR_RUNLOCK();
521                         goto match;
522                 }
523 #ifdef DEV_CARP
524                 if (ifp->if_carp != NULL &&
525                     carp_iamatch(ifp->if_carp, ia, &isaddr, &enaddr) &&
526                     itaddr.s_addr == ia->ia_addr.sin_addr.s_addr) {
527                         carp_match = 1;
528                         ifa_ref(&ia->ia_ifa);
529                         IN_IFADDR_RUNLOCK();
530                         goto match;
531                 }
532 #endif
533         }
534         LIST_FOREACH(ia, INADDR_HASH(isaddr.s_addr), ia_hash)
535                 if (((bridged && ia->ia_ifp->if_bridge != NULL) ||
536                     ia->ia_ifp == ifp) &&
537                     isaddr.s_addr == ia->ia_addr.sin_addr.s_addr) {
538                         ifa_ref(&ia->ia_ifa);
539                         IN_IFADDR_RUNLOCK();
540                         goto match;
541                 }
542
543 #define BDG_MEMBER_MATCHES_ARP(addr, ifp, ia)                           \
544   (ia->ia_ifp->if_bridge == ifp->if_softc &&                            \
545   !bcmp(IF_LLADDR(ia->ia_ifp), IF_LLADDR(ifp), ifp->if_addrlen) &&      \
546   addr == ia->ia_addr.sin_addr.s_addr)
547         /*
548          * Check the case when bridge shares its MAC address with
549          * some of its children, so packets are claimed by bridge
550          * itself (bridge_input() does it first), but they are really
551          * meant to be destined to the bridge member.
552          */
553         if (is_bridge) {
554                 LIST_FOREACH(ia, INADDR_HASH(itaddr.s_addr), ia_hash) {
555                         if (BDG_MEMBER_MATCHES_ARP(itaddr.s_addr, ifp, ia)) {
556                                 ifa_ref(&ia->ia_ifa);
557                                 ifp = ia->ia_ifp;
558                                 IN_IFADDR_RUNLOCK();
559                                 goto match;
560                         }
561                 }
562         }
563 #undef BDG_MEMBER_MATCHES_ARP
564         IN_IFADDR_RUNLOCK();
565
566         /*
567          * No match, use the first inet address on the receive interface
568          * as a dummy address for the rest of the function.
569          */
570         IF_ADDR_LOCK(ifp);
571         TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link)
572                 if (ifa->ifa_addr->sa_family == AF_INET) {
573                         ia = ifatoia(ifa);
574                         ifa_ref(ifa);
575                         IF_ADDR_UNLOCK(ifp);
576                         goto match;
577                 }
578         IF_ADDR_UNLOCK(ifp);
579
580         /*
581          * If bridging, fall back to using any inet address.
582          */
583         IN_IFADDR_RLOCK();
584         if (!bridged || (ia = TAILQ_FIRST(&V_in_ifaddrhead)) == NULL) {
585                 IN_IFADDR_RUNLOCK();
586                 goto drop;
587         }
588         ifa_ref(&ia->ia_ifa);
589         IN_IFADDR_RUNLOCK();
590 match:
591         if (!enaddr)
592                 enaddr = (u_int8_t *)IF_LLADDR(ifp);
593         myaddr = ia->ia_addr.sin_addr;
594         ifa_free(&ia->ia_ifa);
595         if (!bcmp(ar_sha(ah), enaddr, ifp->if_addrlen))
596                 goto drop;      /* it's from me, ignore it. */
597         if (!bcmp(ar_sha(ah), ifp->if_broadcastaddr, ifp->if_addrlen)) {
598                 log(LOG_ERR,
599                     "arp: link address is broadcast for IP address %s!\n",
600                     inet_ntoa(isaddr));
601                 goto drop;
602         }
603         /*
604          * Warn if another host is using the same IP address, but only if the
605          * IP address isn't 0.0.0.0, which is used for DHCP only, in which
606          * case we suppress the warning to avoid false positive complaints of
607          * potential misconfiguration.
608          */
609         if (!bridged && isaddr.s_addr == myaddr.s_addr && myaddr.s_addr != 0) {
610                 log(LOG_ERR,
611                    "arp: %*D is using my IP address %s on %s!\n",
612                    ifp->if_addrlen, (u_char *)ar_sha(ah), ":",
613                    inet_ntoa(isaddr), ifp->if_xname);
614                 itaddr = myaddr;
615                 goto reply;
616         }
617         if (ifp->if_flags & IFF_STATICARP)
618                 goto reply;
619
620         bzero(&sin, sizeof(sin));
621         sin.sin_len = sizeof(struct sockaddr_in);
622         sin.sin_family = AF_INET;
623         sin.sin_addr = isaddr;
624         flags = (itaddr.s_addr == myaddr.s_addr) ? LLE_CREATE : 0;
625         flags |= LLE_EXCLUSIVE;
626         IF_AFDATA_LOCK(ifp); 
627         la = lla_lookup(LLTABLE(ifp), flags, (struct sockaddr *)&sin);
628         IF_AFDATA_UNLOCK(ifp);
629         if (la != NULL) {
630                 /* the following is not an error when doing bridging */
631                 if (!bridged && la->lle_tbl->llt_ifp != ifp
632 #ifdef DEV_CARP
633                     && (ifp->if_type != IFT_CARP || !carp_match)
634 #endif
635                         ) {
636                         if (log_arp_wrong_iface)
637                                 log(LOG_ERR, "arp: %s is on %s "
638                                     "but got reply from %*D on %s\n",
639                                     inet_ntoa(isaddr),
640                                     la->lle_tbl->llt_ifp->if_xname,
641                                     ifp->if_addrlen, (u_char *)ar_sha(ah), ":",
642                                     ifp->if_xname);
643                         LLE_WUNLOCK(la);
644                         goto reply;
645                 }
646                 if ((la->la_flags & LLE_VALID) &&
647                     bcmp(ar_sha(ah), &la->ll_addr, ifp->if_addrlen)) {
648                         if (la->la_flags & LLE_STATIC) {
649                                 LLE_WUNLOCK(la);
650                                 log(LOG_ERR,
651                                     "arp: %*D attempts to modify permanent "
652                                     "entry for %s on %s\n",
653                                     ifp->if_addrlen, (u_char *)ar_sha(ah), ":",
654                                     inet_ntoa(isaddr), ifp->if_xname);
655                                 goto reply;
656                         }
657                         if (log_arp_movements) {
658                                 log(LOG_INFO, "arp: %s moved from %*D "
659                                     "to %*D on %s\n",
660                                     inet_ntoa(isaddr),
661                                     ifp->if_addrlen,
662                                     (u_char *)&la->ll_addr, ":",
663                                     ifp->if_addrlen, (u_char *)ar_sha(ah), ":",
664                                     ifp->if_xname);
665                         }
666                 }
667                     
668                 if (ifp->if_addrlen != ah->ar_hln) {
669                         LLE_WUNLOCK(la);
670                         log(LOG_WARNING,
671                             "arp from %*D: addr len: new %d, i/f %d (ignored)",
672                             ifp->if_addrlen, (u_char *) ar_sha(ah), ":",
673                             ah->ar_hln, ifp->if_addrlen);
674                         goto reply;
675                 }
676                 (void)memcpy(&la->ll_addr, ar_sha(ah), ifp->if_addrlen);
677                 la->la_flags |= LLE_VALID;
678
679                 if (!(la->la_flags & LLE_STATIC)) {
680                         la->la_expire = time_second + V_arpt_keep;
681                         callout_reset(&la->la_timer, hz * V_arpt_keep,
682                             arptimer, la);
683                 }
684                 la->la_asked = 0;
685                 la->la_preempt = V_arp_maxtries;
686                 hold = la->la_hold;
687                 if (hold != NULL) {
688                         la->la_hold = NULL;
689                         memcpy(&sa, L3_ADDR(la), sizeof(sa));
690                 }
691                 LLE_WUNLOCK(la);
692                 if (hold != NULL)
693                         (*ifp->if_output)(ifp, hold, &sa, NULL);
694         }
695 reply:
696         if (op != ARPOP_REQUEST)
697                 goto drop;
698
699         if (itaddr.s_addr == myaddr.s_addr) {
700                 /* Shortcut.. the receiving interface is the target. */
701                 (void)memcpy(ar_tha(ah), ar_sha(ah), ah->ar_hln);
702                 (void)memcpy(ar_sha(ah), enaddr, ah->ar_hln);
703         } else {
704                 struct llentry *lle = NULL;
705
706                 sin.sin_addr = itaddr;
707                 IF_AFDATA_LOCK(ifp); 
708                 lle = lla_lookup(LLTABLE(ifp), 0, (struct sockaddr *)&sin);
709                 IF_AFDATA_UNLOCK(ifp);
710
711                 if ((lle != NULL) && (lle->la_flags & LLE_PUB)) {
712                         (void)memcpy(ar_tha(ah), ar_sha(ah), ah->ar_hln);
713                         (void)memcpy(ar_sha(ah), &lle->ll_addr, ah->ar_hln);
714                         LLE_RUNLOCK(lle);
715                 } else {
716
717                         if (lle != NULL)
718                                 LLE_RUNLOCK(lle);
719
720                         if (!V_arp_proxyall)
721                                 goto drop;
722                         
723                         sin.sin_addr = itaddr;
724                         /* XXX MRT use table 0 for arp reply  */
725                         rt = in_rtalloc1((struct sockaddr *)&sin, 0, 0UL, 0);
726                         if (!rt)
727                                 goto drop;
728
729                         /*
730                          * Don't send proxies for nodes on the same interface
731                          * as this one came out of, or we'll get into a fight
732                          * over who claims what Ether address.
733                          */
734                         if (!rt->rt_ifp || rt->rt_ifp == ifp) {
735                                 RTFREE_LOCKED(rt);
736                                 goto drop;
737                         }
738                         RTFREE_LOCKED(rt);
739
740                         (void)memcpy(ar_tha(ah), ar_sha(ah), ah->ar_hln);
741                         (void)memcpy(ar_sha(ah), enaddr, ah->ar_hln);
742
743                         /*
744                          * Also check that the node which sent the ARP packet
745                          * is on the the interface we expect it to be on. This
746                          * avoids ARP chaos if an interface is connected to the
747                          * wrong network.
748                          */
749                         sin.sin_addr = isaddr;
750                         
751                         /* XXX MRT use table 0 for arp checks */
752                         rt = in_rtalloc1((struct sockaddr *)&sin, 0, 0UL, 0);
753                         if (!rt)
754                                 goto drop;
755                         if (rt->rt_ifp != ifp) {
756                                 log(LOG_INFO, "arp_proxy: ignoring request"
757                                     " from %s via %s, expecting %s\n",
758                                     inet_ntoa(isaddr), ifp->if_xname,
759                                     rt->rt_ifp->if_xname);
760                                 RTFREE_LOCKED(rt);
761                                 goto drop;
762                         }
763                         RTFREE_LOCKED(rt);
764
765 #ifdef DEBUG_PROXY
766                         printf("arp: proxying for %s\n",
767                                inet_ntoa(itaddr));
768 #endif
769                 }
770         }
771
772         if (itaddr.s_addr == myaddr.s_addr &&
773             IN_LINKLOCAL(ntohl(itaddr.s_addr))) {
774                 /* RFC 3927 link-local IPv4; always reply by broadcast. */
775 #ifdef DEBUG_LINKLOCAL
776                 printf("arp: sending reply for link-local addr %s\n",
777                     inet_ntoa(itaddr));
778 #endif
779                 m->m_flags |= M_BCAST;
780                 m->m_flags &= ~M_MCAST;
781         } else {
782                 /* default behaviour; never reply by broadcast. */
783                 m->m_flags &= ~(M_BCAST|M_MCAST);
784         }
785         (void)memcpy(ar_tpa(ah), ar_spa(ah), ah->ar_pln);
786         (void)memcpy(ar_spa(ah), &itaddr, ah->ar_pln);
787         ah->ar_op = htons(ARPOP_REPLY);
788         ah->ar_pro = htons(ETHERTYPE_IP); /* let's be sure! */
789         m->m_len = sizeof(*ah) + (2 * ah->ar_pln) + (2 * ah->ar_hln);   
790         m->m_pkthdr.len = m->m_len;   
791         sa.sa_family = AF_ARP;
792         sa.sa_len = 2;
793         (*ifp->if_output)(ifp, m, &sa, NULL);
794         return;
795
796 drop:
797         m_freem(m);
798 }
799 #endif
800
801 void
802 arp_ifinit(struct ifnet *ifp, struct ifaddr *ifa)
803 {
804         struct llentry *lle;
805
806         if (ntohl(IA_SIN(ifa)->sin_addr.s_addr) != INADDR_ANY) {
807                 arprequest(ifp, &IA_SIN(ifa)->sin_addr,
808                                 &IA_SIN(ifa)->sin_addr, IF_LLADDR(ifp));
809                 /* 
810                  * interface address is considered static entry
811                  * because the output of the arp utility shows
812                  * that L2 entry as permanent
813                  */
814                 IF_AFDATA_LOCK(ifp);
815                 lle = lla_lookup(LLTABLE(ifp), (LLE_CREATE | LLE_IFADDR | LLE_STATIC),
816                                  (struct sockaddr *)IA_SIN(ifa));
817                 IF_AFDATA_UNLOCK(ifp);
818                 if (lle == NULL)
819                         log(LOG_INFO, "arp_ifinit: cannot create arp "
820                             "entry for interface address\n");
821                 else
822                         LLE_RUNLOCK(lle);
823         }
824         ifa->ifa_rtrequest = NULL;
825 }
826
827 void
828 arp_ifinit2(struct ifnet *ifp, struct ifaddr *ifa, u_char *enaddr)
829 {
830         if (ntohl(IA_SIN(ifa)->sin_addr.s_addr) != INADDR_ANY)
831                 arprequest(ifp, &IA_SIN(ifa)->sin_addr,
832                                 &IA_SIN(ifa)->sin_addr, enaddr);
833         ifa->ifa_rtrequest = NULL;
834 }
835
836 static void
837 arp_init(void)
838 {
839
840         netisr_register(&arp_nh);
841 }
842 SYSINIT(arp, SI_SUB_PROTO_DOMAIN, SI_ORDER_ANY, arp_init, 0);