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