1 /*- 2 * Copyright (c) 1982, 1986, 1991, 1993 3 * The Regents of the University of California. All rights reserved. 4 * Copyright (C) 2001 WIDE Project. All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 1. Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 4. Neither the name of the University nor the names of its contributors 15 * may be used to endorse or promote products derived from this software 16 * without specific prior written permission. 17 * 18 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 21 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 28 * SUCH DAMAGE. 29 * 30 * @(#)in.c 8.4 (Berkeley) 1/9/95 31 */ 32 33 #include <sys/cdefs.h> 34 __FBSDID("$FreeBSD$"); 35 36 #include "opt_mpath.h" 37 38 #include <sys/param.h> 39 #include <sys/eventhandler.h> 40 #include <sys/systm.h> 41 #include <sys/sockio.h> 42 #include <sys/malloc.h> 43 #include <sys/priv.h> 44 #include <sys/socket.h> 45 #include <sys/jail.h> 46 #include <sys/kernel.h> 47 #include <sys/proc.h> 48 #include <sys/sysctl.h> 49 #include <sys/syslog.h> 50 #include <sys/sx.h> 51 52 #include <net/if.h> 53 #include <net/if_var.h> 54 #include <net/if_arp.h> 55 #include <net/if_dl.h> 56 #include <net/if_llatbl.h> 57 #include <net/if_types.h> 58 #include <net/route.h> 59 #include <net/vnet.h> 60 61 #include <netinet/if_ether.h> 62 #include <netinet/in.h> 63 #include <netinet/in_var.h> 64 #include <netinet/in_pcb.h> 65 #include <netinet/ip_var.h> 66 #include <netinet/ip_carp.h> 67 #include <netinet/igmp_var.h> 68 #include <netinet/udp.h> 69 #include <netinet/udp_var.h> 70 71 static int in_aifaddr_ioctl(u_long, caddr_t, struct ifnet *, struct thread *); 72 static int in_difaddr_ioctl(caddr_t, struct ifnet *, struct thread *); 73 74 static void in_socktrim(struct sockaddr_in *); 75 static void in_purgemaddrs(struct ifnet *); 76 77 static VNET_DEFINE(int, nosameprefix); 78 #define V_nosameprefix VNET(nosameprefix) 79 SYSCTL_VNET_INT(_net_inet_ip, OID_AUTO, no_same_prefix, CTLFLAG_RW, 80 &VNET_NAME(nosameprefix), 0, 81 "Refuse to create same prefixes on different interfaces"); 82 83 VNET_DECLARE(struct inpcbinfo, ripcbinfo); 84 #define V_ripcbinfo VNET(ripcbinfo) 85 86 static struct sx in_control_sx; 87 SX_SYSINIT(in_control_sx, &in_control_sx, "in_control"); 88 89 /* 90 * Return 1 if an internet address is for a ``local'' host 91 * (one to which we have a connection). 92 */ 93 int 94 in_localaddr(struct in_addr in) 95 { 96 register u_long i = ntohl(in.s_addr); 97 register struct in_ifaddr *ia; 98 99 IN_IFADDR_RLOCK(); 100 TAILQ_FOREACH(ia, &V_in_ifaddrhead, ia_link) { 101 if ((i & ia->ia_subnetmask) == ia->ia_subnet) { 102 IN_IFADDR_RUNLOCK(); 103 return (1); 104 } 105 } 106 IN_IFADDR_RUNLOCK(); 107 return (0); 108 } 109 110 /* 111 * Return 1 if an internet address is for the local host and configured 112 * on one of its interfaces. 113 */ 114 int 115 in_localip(struct in_addr in) 116 { 117 struct in_ifaddr *ia; 118 119 IN_IFADDR_RLOCK(); 120 LIST_FOREACH(ia, INADDR_HASH(in.s_addr), ia_hash) { 121 if (IA_SIN(ia)->sin_addr.s_addr == in.s_addr) { 122 IN_IFADDR_RUNLOCK(); 123 return (1); 124 } 125 } 126 IN_IFADDR_RUNLOCK(); 127 return (0); 128 } 129 130 /* 131 * Return a reference to the interface address which is different to 132 * the supplied one but with same IP address value. 133 */ 134 static struct in_ifaddr * 135 in_localip_more(struct in_ifaddr *ia) 136 { 137 in_addr_t in = IA_SIN(ia)->sin_addr.s_addr; 138 struct in_ifaddr *it; 139 140 IN_IFADDR_RLOCK(); 141 LIST_FOREACH(it, INADDR_HASH(in), ia_hash) { 142 if (it != ia && IA_SIN(it)->sin_addr.s_addr == in) { 143 ifa_ref(&it->ia_ifa); 144 IN_IFADDR_RUNLOCK(); 145 return (it); 146 } 147 } 148 IN_IFADDR_RUNLOCK(); 149 150 return (NULL); 151 } 152 153 /* 154 * Determine whether an IP address is in a reserved set of addresses 155 * that may not be forwarded, or whether datagrams to that destination 156 * may be forwarded. 157 */ 158 int 159 in_canforward(struct in_addr in) 160 { 161 register u_long i = ntohl(in.s_addr); 162 register u_long net; 163 164 if (IN_EXPERIMENTAL(i) || IN_MULTICAST(i) || IN_LINKLOCAL(i)) 165 return (0); 166 if (IN_CLASSA(i)) { 167 net = i & IN_CLASSA_NET; 168 if (net == 0 || net == (IN_LOOPBACKNET << IN_CLASSA_NSHIFT)) 169 return (0); 170 } 171 return (1); 172 } 173 174 /* 175 * Trim a mask in a sockaddr 176 */ 177 static void 178 in_socktrim(struct sockaddr_in *ap) 179 { 180 register char *cplim = (char *) &ap->sin_addr; 181 register char *cp = (char *) (&ap->sin_addr + 1); 182 183 ap->sin_len = 0; 184 while (--cp >= cplim) 185 if (*cp) { 186 (ap)->sin_len = cp - (char *) (ap) + 1; 187 break; 188 } 189 } 190 191 /* 192 * Generic internet control operations (ioctl's). 193 */ 194 int 195 in_control(struct socket *so, u_long cmd, caddr_t data, struct ifnet *ifp, 196 struct thread *td) 197 { 198 struct ifreq *ifr = (struct ifreq *)data; 199 struct sockaddr_in *addr = (struct sockaddr_in *)&ifr->ifr_addr; 200 struct ifaddr *ifa; 201 struct in_ifaddr *ia; 202 int error; 203 204 if (ifp == NULL) 205 return (EADDRNOTAVAIL); 206 207 /* 208 * Filter out 4 ioctls we implement directly. Forward the rest 209 * to specific functions and ifp->if_ioctl(). 210 */ 211 switch (cmd) { 212 case SIOCGIFADDR: 213 case SIOCGIFBRDADDR: 214 case SIOCGIFDSTADDR: 215 case SIOCGIFNETMASK: 216 break; 217 case SIOCDIFADDR: 218 sx_xlock(&in_control_sx); 219 error = in_difaddr_ioctl(data, ifp, td); 220 sx_xunlock(&in_control_sx); 221 return (error); 222 case OSIOCAIFADDR: /* 9.x compat */ 223 case SIOCAIFADDR: 224 sx_xlock(&in_control_sx); 225 error = in_aifaddr_ioctl(cmd, data, ifp, td); 226 sx_xunlock(&in_control_sx); 227 return (error); 228 case SIOCSIFADDR: 229 case SIOCSIFBRDADDR: 230 case SIOCSIFDSTADDR: 231 case SIOCSIFNETMASK: 232 /* We no longer support that old commands. */ 233 return (EINVAL); 234 default: 235 if (ifp->if_ioctl == NULL) 236 return (EOPNOTSUPP); 237 return ((*ifp->if_ioctl)(ifp, cmd, data)); 238 } 239 240 if (addr->sin_addr.s_addr != INADDR_ANY && 241 prison_check_ip4(td->td_ucred, &addr->sin_addr) != 0) 242 return (EADDRNOTAVAIL); 243 244 /* 245 * For SIOCGIFADDR, pick the first address. For the rest of 246 * ioctls, try to find specified address. 247 */ 248 IF_ADDR_RLOCK(ifp); 249 TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) { 250 if (ifa->ifa_addr->sa_family != AF_INET) 251 continue; 252 ia = (struct in_ifaddr *)ifa; 253 if (cmd == SIOCGIFADDR || addr->sin_addr.s_addr == INADDR_ANY) 254 break; 255 if (ia->ia_addr.sin_addr.s_addr == addr->sin_addr.s_addr) 256 break; 257 } 258 259 if (ifa == NULL) { 260 IF_ADDR_RUNLOCK(ifp); 261 return (EADDRNOTAVAIL); 262 } 263 264 error = 0; 265 switch (cmd) { 266 case SIOCGIFADDR: 267 *addr = ia->ia_addr; 268 break; 269 270 case SIOCGIFBRDADDR: 271 if ((ifp->if_flags & IFF_BROADCAST) == 0) { 272 error = EINVAL; 273 break; 274 } 275 *addr = ia->ia_broadaddr; 276 break; 277 278 case SIOCGIFDSTADDR: 279 if ((ifp->if_flags & IFF_POINTOPOINT) == 0) { 280 error = EINVAL; 281 break; 282 } 283 *addr = ia->ia_dstaddr; 284 break; 285 286 case SIOCGIFNETMASK: 287 *addr = ia->ia_sockmask; 288 break; 289 } 290 291 IF_ADDR_RUNLOCK(ifp); 292 293 return (error); 294 } 295 296 static int 297 in_aifaddr_ioctl(u_long cmd, caddr_t data, struct ifnet *ifp, struct thread *td) 298 { 299 const struct in_aliasreq *ifra = (struct in_aliasreq *)data; 300 const struct sockaddr_in *addr = &ifra->ifra_addr; 301 const struct sockaddr_in *broadaddr = &ifra->ifra_broadaddr; 302 const struct sockaddr_in *mask = &ifra->ifra_mask; 303 const struct sockaddr_in *dstaddr = &ifra->ifra_dstaddr; 304 const int vhid = (cmd == SIOCAIFADDR) ? ifra->ifra_vhid : 0; 305 struct ifaddr *ifa; 306 struct in_ifaddr *ia; 307 bool iaIsFirst; 308 int error = 0; 309 310 error = priv_check(td, PRIV_NET_ADDIFADDR); 311 if (error) 312 return (error); 313 314 /* 315 * ifra_addr must be present and be of INET family. 316 * ifra_broadaddr/ifra_dstaddr and ifra_mask are optional. 317 */ 318 if (addr->sin_len != sizeof(struct sockaddr_in) || 319 addr->sin_family != AF_INET) 320 return (EINVAL); 321 if (broadaddr->sin_len != 0 && 322 (broadaddr->sin_len != sizeof(struct sockaddr_in) || 323 broadaddr->sin_family != AF_INET)) 324 return (EINVAL); 325 if (mask->sin_len != 0 && 326 (mask->sin_len != sizeof(struct sockaddr_in) || 327 mask->sin_family != AF_INET)) 328 return (EINVAL); 329 if ((ifp->if_flags & IFF_POINTOPOINT) && 330 (dstaddr->sin_len != sizeof(struct sockaddr_in) || 331 dstaddr->sin_addr.s_addr == INADDR_ANY)) 332 return (EDESTADDRREQ); 333 if (vhid > 0 && carp_attach_p == NULL) 334 return (EPROTONOSUPPORT); 335 336 /* 337 * See whether address already exist. 338 */ 339 iaIsFirst = true; 340 ia = NULL; 341 IF_ADDR_RLOCK(ifp); 342 TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) { 343 struct in_ifaddr *it; 344 345 if (ifa->ifa_addr->sa_family != AF_INET) 346 continue; 347 348 it = (struct in_ifaddr *)ifa; 349 iaIsFirst = false; 350 if (it->ia_addr.sin_addr.s_addr == addr->sin_addr.s_addr && 351 prison_check_ip4(td->td_ucred, &addr->sin_addr) == 0) 352 ia = it; 353 } 354 IF_ADDR_RUNLOCK(ifp); 355 356 if (ia != NULL) 357 (void )in_difaddr_ioctl(data, ifp, td); 358 359 ifa = ifa_alloc(sizeof(struct in_ifaddr), M_WAITOK); 360 ia = (struct in_ifaddr *)ifa; 361 ifa->ifa_addr = (struct sockaddr *)&ia->ia_addr; 362 ifa->ifa_dstaddr = (struct sockaddr *)&ia->ia_dstaddr; 363 ifa->ifa_netmask = (struct sockaddr *)&ia->ia_sockmask; 364 365 ia->ia_ifp = ifp; 366 ia->ia_ifa.ifa_metric = ifp->if_metric; 367 ia->ia_addr = *addr; 368 if (mask->sin_len != 0) { 369 ia->ia_sockmask = *mask; 370 ia->ia_subnetmask = ntohl(ia->ia_sockmask.sin_addr.s_addr); 371 } else { 372 in_addr_t i = ntohl(addr->sin_addr.s_addr); 373 374 /* 375 * Be compatible with network classes, if netmask isn't 376 * supplied, guess it based on classes. 377 */ 378 if (IN_CLASSA(i)) 379 ia->ia_subnetmask = IN_CLASSA_NET; 380 else if (IN_CLASSB(i)) 381 ia->ia_subnetmask = IN_CLASSB_NET; 382 else 383 ia->ia_subnetmask = IN_CLASSC_NET; 384 ia->ia_sockmask.sin_addr.s_addr = htonl(ia->ia_subnetmask); 385 } 386 ia->ia_subnet = ntohl(addr->sin_addr.s_addr) & ia->ia_subnetmask; 387 in_socktrim(&ia->ia_sockmask); 388 389 if (ifp->if_flags & IFF_BROADCAST) { 390 if (broadaddr->sin_len != 0) { 391 ia->ia_broadaddr = *broadaddr; 392 } else if (ia->ia_subnetmask == IN_RFC3021_MASK) { 393 ia->ia_broadaddr.sin_addr.s_addr = INADDR_BROADCAST; 394 ia->ia_broadaddr.sin_len = sizeof(struct sockaddr_in); 395 ia->ia_broadaddr.sin_family = AF_INET; 396 } else { 397 ia->ia_broadaddr.sin_addr.s_addr = 398 htonl(ia->ia_subnet | ~ia->ia_subnetmask); 399 ia->ia_broadaddr.sin_len = sizeof(struct sockaddr_in); 400 ia->ia_broadaddr.sin_family = AF_INET; 401 } 402 } 403 404 if (ifp->if_flags & IFF_POINTOPOINT) 405 ia->ia_dstaddr = *dstaddr; 406 407 /* XXXGL: rtinit() needs this strange assignment. */ 408 if (ifp->if_flags & IFF_LOOPBACK) 409 ia->ia_dstaddr = ia->ia_addr; 410 411 /* if_addrhead is already referenced by ifa_alloc() */ 412 IF_ADDR_WLOCK(ifp); 413 TAILQ_INSERT_TAIL(&ifp->if_addrhead, ifa, ifa_link); 414 IF_ADDR_WUNLOCK(ifp); 415 416 ifa_ref(ifa); /* in_ifaddrhead */ 417 IN_IFADDR_WLOCK(); 418 TAILQ_INSERT_TAIL(&V_in_ifaddrhead, ia, ia_link); 419 LIST_INSERT_HEAD(INADDR_HASH(ia->ia_addr.sin_addr.s_addr), ia, ia_hash); 420 IN_IFADDR_WUNLOCK(); 421 422 if (vhid != 0) 423 error = (*carp_attach_p)(&ia->ia_ifa, vhid); 424 if (error) 425 goto fail1; 426 427 /* 428 * Give the interface a chance to initialize 429 * if this is its first address, 430 * and to validate the address if necessary. 431 */ 432 if (ifp->if_ioctl != NULL) 433 error = (*ifp->if_ioctl)(ifp, SIOCSIFADDR, (caddr_t)ia); 434 if (error) 435 goto fail2; 436 437 /* 438 * Add route for the network. 439 */ 440 if (vhid == 0) { 441 int flags = RTF_UP; 442 443 if (ifp->if_flags & (IFF_LOOPBACK|IFF_POINTOPOINT)) 444 flags |= RTF_HOST; 445 446 error = in_addprefix(ia, flags); 447 if (error) 448 goto fail2; 449 } 450 451 /* 452 * Add a loopback route to self. 453 */ 454 if (vhid == 0 && (ifp->if_flags & IFF_LOOPBACK) == 0 && 455 ia->ia_addr.sin_addr.s_addr != INADDR_ANY && 456 !((ifp->if_flags & IFF_POINTOPOINT) && 457 ia->ia_dstaddr.sin_addr.s_addr == ia->ia_addr.sin_addr.s_addr)) { 458 struct in_ifaddr *eia; 459 460 eia = in_localip_more(ia); 461 462 if (eia == NULL) { 463 error = ifa_add_loopback_route((struct ifaddr *)ia, 464 (struct sockaddr *)&ia->ia_addr); 465 if (error) 466 goto fail3; 467 } else 468 ifa_free(&eia->ia_ifa); 469 } 470 471 if (iaIsFirst && (ifp->if_flags & IFF_MULTICAST)) { 472 struct in_addr allhosts_addr; 473 struct in_ifinfo *ii; 474 475 ii = ((struct in_ifinfo *)ifp->if_afdata[AF_INET]); 476 allhosts_addr.s_addr = htonl(INADDR_ALLHOSTS_GROUP); 477 478 error = in_joingroup(ifp, &allhosts_addr, NULL, 479 &ii->ii_allhosts); 480 } 481 482 EVENTHANDLER_INVOKE(ifaddr_event, ifp); 483 484 return (error); 485 486 fail3: 487 if (vhid == 0) 488 (void )in_scrubprefix(ia, LLE_STATIC); 489 490 fail2: 491 if (ia->ia_ifa.ifa_carp) 492 (*carp_detach_p)(&ia->ia_ifa); 493 494 fail1: 495 IF_ADDR_WLOCK(ifp); 496 TAILQ_REMOVE(&ifp->if_addrhead, &ia->ia_ifa, ifa_link); 497 IF_ADDR_WUNLOCK(ifp); 498 ifa_free(&ia->ia_ifa); /* if_addrhead */ 499 500 IN_IFADDR_WLOCK(); 501 TAILQ_REMOVE(&V_in_ifaddrhead, ia, ia_link); 502 LIST_REMOVE(ia, ia_hash); 503 IN_IFADDR_WUNLOCK(); 504 ifa_free(&ia->ia_ifa); /* in_ifaddrhead */ 505 506 return (error); 507 } 508 509 static int 510 in_difaddr_ioctl(caddr_t data, struct ifnet *ifp, struct thread *td) 511 { 512 const struct ifreq *ifr = (struct ifreq *)data; 513 const struct sockaddr_in *addr = (const struct sockaddr_in *) 514 &ifr->ifr_addr; 515 struct ifaddr *ifa; 516 struct in_ifaddr *ia; 517 bool deleteAny, iaIsLast; 518 int error; 519 520 if (td != NULL) { 521 error = priv_check(td, PRIV_NET_DELIFADDR); 522 if (error) 523 return (error); 524 } 525 526 if (addr->sin_len != sizeof(struct sockaddr_in) || 527 addr->sin_family != AF_INET) 528 deleteAny = true; 529 else 530 deleteAny = false; 531 532 iaIsLast = true; 533 ia = NULL; 534 IF_ADDR_WLOCK(ifp); 535 TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) { 536 struct in_ifaddr *it; 537 538 if (ifa->ifa_addr->sa_family != AF_INET) 539 continue; 540 541 it = (struct in_ifaddr *)ifa; 542 if (deleteAny && ia == NULL && (td == NULL || 543 prison_check_ip4(td->td_ucred, &it->ia_addr.sin_addr) == 0)) 544 ia = it; 545 546 if (it->ia_addr.sin_addr.s_addr == addr->sin_addr.s_addr && 547 (td == NULL || prison_check_ip4(td->td_ucred, 548 &addr->sin_addr) == 0)) 549 ia = it; 550 551 if (it != ia) 552 iaIsLast = false; 553 } 554 555 if (ia == NULL) { 556 IF_ADDR_WUNLOCK(ifp); 557 return (EADDRNOTAVAIL); 558 } 559 560 TAILQ_REMOVE(&ifp->if_addrhead, &ia->ia_ifa, ifa_link); 561 IF_ADDR_WUNLOCK(ifp); 562 ifa_free(&ia->ia_ifa); /* if_addrhead */ 563 564 IN_IFADDR_WLOCK(); 565 TAILQ_REMOVE(&V_in_ifaddrhead, ia, ia_link); 566 LIST_REMOVE(ia, ia_hash); 567 IN_IFADDR_WUNLOCK(); 568 569 /* 570 * in_scrubprefix() kills the interface route. 571 */ 572 in_scrubprefix(ia, LLE_STATIC); 573 574 /* 575 * in_ifadown gets rid of all the rest of 576 * the routes. This is not quite the right 577 * thing to do, but at least if we are running 578 * a routing process they will come back. 579 */ 580 in_ifadown(&ia->ia_ifa, 1); 581 582 if (ia->ia_ifa.ifa_carp) 583 (*carp_detach_p)(&ia->ia_ifa); 584 585 /* 586 * If this is the last IPv4 address configured on this 587 * interface, leave the all-hosts group. 588 * No state-change report need be transmitted. 589 */ 590 if (iaIsLast && (ifp->if_flags & IFF_MULTICAST)) { 591 struct in_ifinfo *ii; 592 593 ii = ((struct in_ifinfo *)ifp->if_afdata[AF_INET]); 594 IN_MULTI_LOCK(); 595 if (ii->ii_allhosts) { 596 (void)in_leavegroup_locked(ii->ii_allhosts, NULL); 597 ii->ii_allhosts = NULL; 598 } 599 IN_MULTI_UNLOCK(); 600 } 601 602 EVENTHANDLER_INVOKE(ifaddr_event, ifp); 603 ifa_free(&ia->ia_ifa); /* in_ifaddrhead */ 604 605 return (0); 606 } 607 608 #define rtinitflags(x) \ 609 ((((x)->ia_ifp->if_flags & (IFF_LOOPBACK | IFF_POINTOPOINT)) != 0) \ 610 ? RTF_HOST : 0) 611 612 /* 613 * Check if we have a route for the given prefix already or add one accordingly. 614 */ 615 int 616 in_addprefix(struct in_ifaddr *target, int flags) 617 { 618 struct in_ifaddr *ia; 619 struct in_addr prefix, mask, p, m; 620 int error, fibnum; 621 622 if ((flags & RTF_HOST) != 0) { 623 prefix = target->ia_dstaddr.sin_addr; 624 mask.s_addr = 0; 625 } else { 626 prefix = target->ia_addr.sin_addr; 627 mask = target->ia_sockmask.sin_addr; 628 prefix.s_addr &= mask.s_addr; 629 } 630 631 fibnum = rt_add_addr_allfibs ? RT_ALL_FIBS : target->ia_ifp->if_fib; 632 633 IN_IFADDR_RLOCK(); 634 TAILQ_FOREACH(ia, &V_in_ifaddrhead, ia_link) { 635 if (rtinitflags(ia)) { 636 p = ia->ia_dstaddr.sin_addr; 637 638 if (prefix.s_addr != p.s_addr) 639 continue; 640 } else { 641 p = ia->ia_addr.sin_addr; 642 m = ia->ia_sockmask.sin_addr; 643 p.s_addr &= m.s_addr; 644 645 if (prefix.s_addr != p.s_addr || 646 mask.s_addr != m.s_addr) 647 continue; 648 } 649 650 /* 651 * If we got a matching prefix route inserted by other 652 * interface address, we are done here. 653 */ 654 if (ia->ia_flags & IFA_ROUTE) { 655 #ifdef RADIX_MPATH 656 if (ia->ia_addr.sin_addr.s_addr == 657 target->ia_addr.sin_addr.s_addr) { 658 IN_IFADDR_RUNLOCK(); 659 return (EEXIST); 660 } else 661 break; 662 #endif 663 if (V_nosameprefix) { 664 IN_IFADDR_RUNLOCK(); 665 return (EEXIST); 666 } else { 667 rt_addrmsg(RTM_ADD, &target->ia_ifa, fibnum); 668 IN_IFADDR_RUNLOCK(); 669 return (0); 670 } 671 } 672 } 673 IN_IFADDR_RUNLOCK(); 674 675 /* 676 * No-one seem to have this prefix route, so we try to insert it. 677 */ 678 error = rtinit(&target->ia_ifa, (int)RTM_ADD, flags); 679 if (!error) 680 target->ia_flags |= IFA_ROUTE; 681 return (error); 682 } 683 684 /* 685 * If there is no other address in the system that can serve a route to the 686 * same prefix, remove the route. Hand over the route to the new address 687 * otherwise. 688 */ 689 int 690 in_scrubprefix(struct in_ifaddr *target, u_int flags) 691 { 692 struct in_ifaddr *ia; 693 struct in_addr prefix, mask, p, m; 694 int error = 0, fibnum; 695 struct sockaddr_in prefix0, mask0; 696 697 fibnum = rt_add_addr_allfibs ? RT_ALL_FIBS : target->ia_ifp->if_fib; 698 699 /* 700 * Remove the loopback route to the interface address. 701 */ 702 if ((target->ia_addr.sin_addr.s_addr != INADDR_ANY) && 703 !(target->ia_ifp->if_flags & IFF_LOOPBACK) && 704 (flags & LLE_STATIC)) { 705 struct in_ifaddr *eia; 706 707 eia = in_localip_more(target); 708 709 if (eia != NULL) { 710 error = ifa_switch_loopback_route((struct ifaddr *)eia, 711 (struct sockaddr *)&target->ia_addr); 712 ifa_free(&eia->ia_ifa); 713 } else { 714 error = ifa_del_loopback_route((struct ifaddr *)target, 715 (struct sockaddr *)&target->ia_addr); 716 } 717 718 if (!(target->ia_ifp->if_flags & IFF_NOARP)) 719 /* remove arp cache */ 720 arp_ifscrub(target->ia_ifp, 721 IA_SIN(target)->sin_addr.s_addr); 722 } 723 724 if (rtinitflags(target)) { 725 prefix = target->ia_dstaddr.sin_addr; 726 mask.s_addr = 0; 727 } else { 728 prefix = target->ia_addr.sin_addr; 729 mask = target->ia_sockmask.sin_addr; 730 prefix.s_addr &= mask.s_addr; 731 } 732 733 if ((target->ia_flags & IFA_ROUTE) == 0) { 734 rt_addrmsg(RTM_DELETE, &target->ia_ifa, fibnum); 735 return (0); 736 } 737 738 IN_IFADDR_RLOCK(); 739 TAILQ_FOREACH(ia, &V_in_ifaddrhead, ia_link) { 740 if (rtinitflags(ia)) { 741 p = ia->ia_dstaddr.sin_addr; 742 743 if (prefix.s_addr != p.s_addr) 744 continue; 745 } else { 746 p = ia->ia_addr.sin_addr; 747 m = ia->ia_sockmask.sin_addr; 748 p.s_addr &= m.s_addr; 749 750 if (prefix.s_addr != p.s_addr || 751 mask.s_addr != m.s_addr) 752 continue; 753 } 754 755 if ((ia->ia_ifp->if_flags & IFF_UP) == 0) 756 continue; 757 758 /* 759 * If we got a matching prefix address, move IFA_ROUTE and 760 * the route itself to it. Make sure that routing daemons 761 * get a heads-up. 762 */ 763 if ((ia->ia_flags & IFA_ROUTE) == 0) { 764 ifa_ref(&ia->ia_ifa); 765 IN_IFADDR_RUNLOCK(); 766 error = rtinit(&(target->ia_ifa), (int)RTM_DELETE, 767 rtinitflags(target)); 768 if (error == 0) 769 target->ia_flags &= ~IFA_ROUTE; 770 else 771 log(LOG_INFO, "in_scrubprefix: err=%d, old prefix delete failed\n", 772 error); 773 error = rtinit(&ia->ia_ifa, (int)RTM_ADD, 774 rtinitflags(ia) | RTF_UP); 775 if (error == 0) 776 ia->ia_flags |= IFA_ROUTE; 777 else 778 log(LOG_INFO, "in_scrubprefix: err=%d, new prefix add failed\n", 779 error); 780 ifa_free(&ia->ia_ifa); 781 return (error); 782 } 783 } 784 IN_IFADDR_RUNLOCK(); 785 786 /* 787 * remove all L2 entries on the given prefix 788 */ 789 bzero(&prefix0, sizeof(prefix0)); 790 prefix0.sin_len = sizeof(prefix0); 791 prefix0.sin_family = AF_INET; 792 prefix0.sin_addr.s_addr = target->ia_subnet; 793 bzero(&mask0, sizeof(mask0)); 794 mask0.sin_len = sizeof(mask0); 795 mask0.sin_family = AF_INET; 796 mask0.sin_addr.s_addr = target->ia_subnetmask; 797 lltable_prefix_free(AF_INET, (struct sockaddr *)&prefix0, 798 (struct sockaddr *)&mask0, flags); 799 800 /* 801 * As no-one seem to have this prefix, we can remove the route. 802 */ 803 error = rtinit(&(target->ia_ifa), (int)RTM_DELETE, rtinitflags(target)); 804 if (error == 0) 805 target->ia_flags &= ~IFA_ROUTE; 806 else 807 log(LOG_INFO, "in_scrubprefix: err=%d, prefix delete failed\n", error); 808 return (error); 809 } 810 811 #undef rtinitflags 812 813 /* 814 * Return 1 if the address might be a local broadcast address. 815 */ 816 int 817 in_broadcast(struct in_addr in, struct ifnet *ifp) 818 { 819 register struct ifaddr *ifa; 820 u_long t; 821 822 if (in.s_addr == INADDR_BROADCAST || 823 in.s_addr == INADDR_ANY) 824 return (1); 825 if ((ifp->if_flags & IFF_BROADCAST) == 0) 826 return (0); 827 t = ntohl(in.s_addr); 828 /* 829 * Look through the list of addresses for a match 830 * with a broadcast address. 831 */ 832 #define ia ((struct in_ifaddr *)ifa) 833 TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) 834 if (ifa->ifa_addr->sa_family == AF_INET && 835 (in.s_addr == ia->ia_broadaddr.sin_addr.s_addr || 836 /* 837 * Check for old-style (host 0) broadcast, but 838 * taking into account that RFC 3021 obsoletes it. 839 */ 840 (ia->ia_subnetmask != IN_RFC3021_MASK && 841 t == ia->ia_subnet)) && 842 /* 843 * Check for an all one subnetmask. These 844 * only exist when an interface gets a secondary 845 * address. 846 */ 847 ia->ia_subnetmask != (u_long)0xffffffff) 848 return (1); 849 return (0); 850 #undef ia 851 } 852 853 /* 854 * On interface removal, clean up IPv4 data structures hung off of the ifnet. 855 */ 856 void 857 in_ifdetach(struct ifnet *ifp) 858 { 859 860 in_pcbpurgeif0(&V_ripcbinfo, ifp); 861 in_pcbpurgeif0(&V_udbinfo, ifp); 862 in_purgemaddrs(ifp); 863 } 864 865 /* 866 * Delete all IPv4 multicast address records, and associated link-layer 867 * multicast address records, associated with ifp. 868 * XXX It looks like domifdetach runs AFTER the link layer cleanup. 869 * XXX This should not race with ifma_protospec being set during 870 * a new allocation, if it does, we have bigger problems. 871 */ 872 static void 873 in_purgemaddrs(struct ifnet *ifp) 874 { 875 LIST_HEAD(,in_multi) purgeinms; 876 struct in_multi *inm, *tinm; 877 struct ifmultiaddr *ifma; 878 879 LIST_INIT(&purgeinms); 880 IN_MULTI_LOCK(); 881 882 /* 883 * Extract list of in_multi associated with the detaching ifp 884 * which the PF_INET layer is about to release. 885 * We need to do this as IF_ADDR_LOCK() may be re-acquired 886 * by code further down. 887 */ 888 IF_ADDR_RLOCK(ifp); 889 TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) { 890 if (ifma->ifma_addr->sa_family != AF_INET || 891 ifma->ifma_protospec == NULL) 892 continue; 893 #if 0 894 KASSERT(ifma->ifma_protospec != NULL, 895 ("%s: ifma_protospec is NULL", __func__)); 896 #endif 897 inm = (struct in_multi *)ifma->ifma_protospec; 898 LIST_INSERT_HEAD(&purgeinms, inm, inm_link); 899 } 900 IF_ADDR_RUNLOCK(ifp); 901 902 LIST_FOREACH_SAFE(inm, &purgeinms, inm_link, tinm) { 903 LIST_REMOVE(inm, inm_link); 904 inm_release_locked(inm); 905 } 906 igmp_ifdetach(ifp); 907 908 IN_MULTI_UNLOCK(); 909 } 910 911 struct in_llentry { 912 struct llentry base; 913 struct sockaddr_in l3_addr4; 914 }; 915 916 /* 917 * Deletes an address from the address table. 918 * This function is called by the timer functions 919 * such as arptimer() and nd6_llinfo_timer(), and 920 * the caller does the locking. 921 */ 922 static void 923 in_lltable_free(struct lltable *llt, struct llentry *lle) 924 { 925 LLE_WUNLOCK(lle); 926 LLE_LOCK_DESTROY(lle); 927 free(lle, M_LLTABLE); 928 } 929 930 static struct llentry * 931 in_lltable_new(const struct sockaddr *l3addr, u_int flags) 932 { 933 struct in_llentry *lle; 934 935 lle = malloc(sizeof(struct in_llentry), M_LLTABLE, M_NOWAIT | M_ZERO); 936 if (lle == NULL) /* NB: caller generates msg */ 937 return NULL; 938 939 /* 940 * For IPv4 this will trigger "arpresolve" to generate 941 * an ARP request. 942 */ 943 lle->base.la_expire = time_uptime; /* mark expired */ 944 lle->l3_addr4 = *(const struct sockaddr_in *)l3addr; 945 lle->base.lle_refcnt = 1; 946 lle->base.lle_free = in_lltable_free; 947 LLE_LOCK_INIT(&lle->base); 948 callout_init_rw(&lle->base.la_timer, &lle->base.lle_lock, 949 CALLOUT_RETURNUNLOCKED); 950 951 return (&lle->base); 952 } 953 954 #define IN_ARE_MASKED_ADDR_EQUAL(d, a, m) ( \ 955 (((ntohl((d)->sin_addr.s_addr) ^ (a)->sin_addr.s_addr) & (m)->sin_addr.s_addr)) == 0 ) 956 957 static void 958 in_lltable_prefix_free(struct lltable *llt, const struct sockaddr *prefix, 959 const struct sockaddr *mask, u_int flags) 960 { 961 const struct sockaddr_in *pfx = (const struct sockaddr_in *)prefix; 962 const struct sockaddr_in *msk = (const struct sockaddr_in *)mask; 963 struct llentry *lle, *next; 964 int i; 965 size_t pkts_dropped; 966 967 IF_AFDATA_WLOCK(llt->llt_ifp); 968 for (i = 0; i < LLTBL_HASHTBL_SIZE; i++) { 969 LIST_FOREACH_SAFE(lle, &llt->lle_head[i], lle_next, next) { 970 /* 971 * (flags & LLE_STATIC) means deleting all entries 972 * including static ARP entries. 973 */ 974 if (IN_ARE_MASKED_ADDR_EQUAL(satosin(L3_ADDR(lle)), 975 pfx, msk) && ((flags & LLE_STATIC) || 976 !(lle->la_flags & LLE_STATIC))) { 977 LLE_WLOCK(lle); 978 if (callout_stop(&lle->la_timer)) 979 LLE_REMREF(lle); 980 pkts_dropped = llentry_free(lle); 981 ARPSTAT_ADD(dropped, pkts_dropped); 982 } 983 } 984 } 985 IF_AFDATA_WUNLOCK(llt->llt_ifp); 986 } 987 988 989 static int 990 in_lltable_rtcheck(struct ifnet *ifp, u_int flags, const struct sockaddr *l3addr) 991 { 992 struct rtentry *rt; 993 994 KASSERT(l3addr->sa_family == AF_INET, 995 ("sin_family %d", l3addr->sa_family)); 996 997 /* XXX rtalloc1 should take a const param */ 998 rt = rtalloc1(__DECONST(struct sockaddr *, l3addr), 0, 0); 999 1000 if (rt == NULL) 1001 return (EINVAL); 1002 1003 /* 1004 * If the gateway for an existing host route matches the target L3 1005 * address, which is a special route inserted by some implementation 1006 * such as MANET, and the interface is of the correct type, then 1007 * allow for ARP to proceed. 1008 */ 1009 if (rt->rt_flags & RTF_GATEWAY) { 1010 if (!(rt->rt_flags & RTF_HOST) || !rt->rt_ifp || 1011 rt->rt_ifp->if_type != IFT_ETHER || 1012 (rt->rt_ifp->if_flags & (IFF_NOARP | IFF_STATICARP)) != 0 || 1013 memcmp(rt->rt_gateway->sa_data, l3addr->sa_data, 1014 sizeof(in_addr_t)) != 0) { 1015 RTFREE_LOCKED(rt); 1016 return (EINVAL); 1017 } 1018 } 1019 1020 /* 1021 * Make sure that at least the destination address is covered 1022 * by the route. This is for handling the case where 2 or more 1023 * interfaces have the same prefix. An incoming packet arrives 1024 * on one interface and the corresponding outgoing packet leaves 1025 * another interface. 1026 */ 1027 if (!(rt->rt_flags & RTF_HOST) && rt->rt_ifp != ifp) { 1028 const char *sa, *mask, *addr, *lim; 1029 int len; 1030 1031 mask = (const char *)rt_mask(rt); 1032 /* 1033 * Just being extra cautious to avoid some custom 1034 * code getting into trouble. 1035 */ 1036 if (mask == NULL) { 1037 RTFREE_LOCKED(rt); 1038 return (EINVAL); 1039 } 1040 1041 sa = (const char *)rt_key(rt); 1042 addr = (const char *)l3addr; 1043 len = ((const struct sockaddr_in *)l3addr)->sin_len; 1044 lim = addr + len; 1045 1046 for ( ; addr < lim; sa++, mask++, addr++) { 1047 if ((*sa ^ *addr) & *mask) { 1048 #ifdef DIAGNOSTIC 1049 log(LOG_INFO, "IPv4 address: \"%s\" is not on the network\n", 1050 inet_ntoa(((const struct sockaddr_in *)l3addr)->sin_addr)); 1051 #endif 1052 RTFREE_LOCKED(rt); 1053 return (EINVAL); 1054 } 1055 } 1056 } 1057 1058 RTFREE_LOCKED(rt); 1059 return (0); 1060 } 1061 1062 /* 1063 * Return NULL if not found or marked for deletion. 1064 * If found return lle read locked. 1065 */ 1066 static struct llentry * 1067 in_lltable_lookup(struct lltable *llt, u_int flags, const struct sockaddr *l3addr) 1068 { 1069 const struct sockaddr_in *sin = (const struct sockaddr_in *)l3addr; 1070 struct ifnet *ifp = llt->llt_ifp; 1071 struct llentry *lle; 1072 struct llentries *lleh; 1073 u_int hashkey; 1074 1075 IF_AFDATA_LOCK_ASSERT(ifp); 1076 KASSERT(l3addr->sa_family == AF_INET, 1077 ("sin_family %d", l3addr->sa_family)); 1078 1079 hashkey = sin->sin_addr.s_addr; 1080 lleh = &llt->lle_head[LLATBL_HASH(hashkey, LLTBL_HASHMASK)]; 1081 LIST_FOREACH(lle, lleh, lle_next) { 1082 struct sockaddr_in *sa2 = satosin(L3_ADDR(lle)); 1083 if (lle->la_flags & LLE_DELETED) 1084 continue; 1085 if (sa2->sin_addr.s_addr == sin->sin_addr.s_addr) 1086 break; 1087 } 1088 if (lle == NULL) { 1089 #ifdef DIAGNOSTIC 1090 if (flags & LLE_DELETE) 1091 log(LOG_INFO, "interface address is missing from cache = %p in delete\n", lle); 1092 #endif 1093 if (!(flags & LLE_CREATE)) 1094 return (NULL); 1095 IF_AFDATA_WLOCK_ASSERT(ifp); 1096 /* 1097 * A route that covers the given address must have 1098 * been installed 1st because we are doing a resolution, 1099 * verify this. 1100 */ 1101 if (!(flags & LLE_IFADDR) && 1102 in_lltable_rtcheck(ifp, flags, l3addr) != 0) 1103 goto done; 1104 1105 lle = in_lltable_new(l3addr, flags); 1106 if (lle == NULL) { 1107 log(LOG_INFO, "lla_lookup: new lle malloc failed\n"); 1108 goto done; 1109 } 1110 lle->la_flags = flags & ~LLE_CREATE; 1111 if ((flags & (LLE_CREATE | LLE_IFADDR)) == (LLE_CREATE | LLE_IFADDR)) { 1112 bcopy(IF_LLADDR(ifp), &lle->ll_addr, ifp->if_addrlen); 1113 lle->la_flags |= (LLE_VALID | LLE_STATIC); 1114 } 1115 1116 lle->lle_tbl = llt; 1117 lle->lle_head = lleh; 1118 lle->la_flags |= LLE_LINKED; 1119 LIST_INSERT_HEAD(lleh, lle, lle_next); 1120 } else if (flags & LLE_DELETE) { 1121 if (!(lle->la_flags & LLE_IFADDR) || (flags & LLE_IFADDR)) { 1122 LLE_WLOCK(lle); 1123 lle->la_flags |= LLE_DELETED; 1124 EVENTHANDLER_INVOKE(lle_event, lle, LLENTRY_DELETED); 1125 #ifdef DIAGNOSTIC 1126 log(LOG_INFO, "ifaddr cache = %p is deleted\n", lle); 1127 #endif 1128 if ((lle->la_flags & 1129 (LLE_STATIC | LLE_IFADDR)) == LLE_STATIC) 1130 llentry_free(lle); 1131 else 1132 LLE_WUNLOCK(lle); 1133 } 1134 lle = (void *)-1; 1135 1136 } 1137 if (LLE_IS_VALID(lle)) { 1138 if (flags & LLE_EXCLUSIVE) 1139 LLE_WLOCK(lle); 1140 else 1141 LLE_RLOCK(lle); 1142 } 1143 done: 1144 return (lle); 1145 } 1146 1147 static int 1148 in_lltable_dump(struct lltable *llt, struct sysctl_req *wr) 1149 { 1150 #define SIN(lle) ((struct sockaddr_in *) L3_ADDR(lle)) 1151 struct ifnet *ifp = llt->llt_ifp; 1152 struct llentry *lle; 1153 /* XXX stack use */ 1154 struct { 1155 struct rt_msghdr rtm; 1156 struct sockaddr_in sin; 1157 struct sockaddr_dl sdl; 1158 } arpc; 1159 int error, i; 1160 1161 LLTABLE_LOCK_ASSERT(); 1162 1163 error = 0; 1164 for (i = 0; i < LLTBL_HASHTBL_SIZE; i++) { 1165 LIST_FOREACH(lle, &llt->lle_head[i], lle_next) { 1166 struct sockaddr_dl *sdl; 1167 1168 /* skip deleted entries */ 1169 if ((lle->la_flags & LLE_DELETED) == LLE_DELETED) 1170 continue; 1171 /* Skip if jailed and not a valid IP of the prison. */ 1172 if (prison_if(wr->td->td_ucred, L3_ADDR(lle)) != 0) 1173 continue; 1174 /* 1175 * produce a msg made of: 1176 * struct rt_msghdr; 1177 * struct sockaddr_in; (IPv4) 1178 * struct sockaddr_dl; 1179 */ 1180 bzero(&arpc, sizeof(arpc)); 1181 arpc.rtm.rtm_msglen = sizeof(arpc); 1182 arpc.rtm.rtm_version = RTM_VERSION; 1183 arpc.rtm.rtm_type = RTM_GET; 1184 arpc.rtm.rtm_flags = RTF_UP; 1185 arpc.rtm.rtm_addrs = RTA_DST | RTA_GATEWAY; 1186 arpc.sin.sin_family = AF_INET; 1187 arpc.sin.sin_len = sizeof(arpc.sin); 1188 arpc.sin.sin_addr.s_addr = SIN(lle)->sin_addr.s_addr; 1189 1190 /* publish */ 1191 if (lle->la_flags & LLE_PUB) 1192 arpc.rtm.rtm_flags |= RTF_ANNOUNCE; 1193 1194 sdl = &arpc.sdl; 1195 sdl->sdl_family = AF_LINK; 1196 sdl->sdl_len = sizeof(*sdl); 1197 sdl->sdl_index = ifp->if_index; 1198 sdl->sdl_type = ifp->if_type; 1199 if ((lle->la_flags & LLE_VALID) == LLE_VALID) { 1200 sdl->sdl_alen = ifp->if_addrlen; 1201 bcopy(&lle->ll_addr, LLADDR(sdl), ifp->if_addrlen); 1202 } else { 1203 sdl->sdl_alen = 0; 1204 bzero(LLADDR(sdl), ifp->if_addrlen); 1205 } 1206 1207 arpc.rtm.rtm_rmx.rmx_expire = 1208 lle->la_flags & LLE_STATIC ? 0 : lle->la_expire; 1209 arpc.rtm.rtm_flags |= (RTF_HOST | RTF_LLDATA); 1210 if (lle->la_flags & LLE_STATIC) 1211 arpc.rtm.rtm_flags |= RTF_STATIC; 1212 arpc.rtm.rtm_index = ifp->if_index; 1213 error = SYSCTL_OUT(wr, &arpc, sizeof(arpc)); 1214 if (error) 1215 break; 1216 } 1217 } 1218 return error; 1219 #undef SIN 1220 } 1221 1222 void * 1223 in_domifattach(struct ifnet *ifp) 1224 { 1225 struct in_ifinfo *ii; 1226 struct lltable *llt; 1227 1228 ii = malloc(sizeof(struct in_ifinfo), M_IFADDR, M_WAITOK|M_ZERO); 1229 1230 llt = lltable_init(ifp, AF_INET); 1231 if (llt != NULL) { 1232 llt->llt_prefix_free = in_lltable_prefix_free; 1233 llt->llt_lookup = in_lltable_lookup; 1234 llt->llt_dump = in_lltable_dump; 1235 } 1236 ii->ii_llt = llt; 1237 1238 ii->ii_igmp = igmp_domifattach(ifp); 1239 1240 return ii; 1241 } 1242 1243 void 1244 in_domifdetach(struct ifnet *ifp, void *aux) 1245 { 1246 struct in_ifinfo *ii = (struct in_ifinfo *)aux; 1247 1248 igmp_domifdetach(ifp); 1249 lltable_free(ii->ii_llt); 1250 free(ii, M_IFADDR); 1251 } 1252