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