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