1 /*- 2 * Copyright (c) 1982, 1986, 1988, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 4. Neither the name of the University nor the names of its contributors 14 * may be used to endorse or promote products derived from this software 15 * without specific prior written permission. 16 * 17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27 * SUCH DAMAGE. 28 * 29 * @(#)ip_input.c 8.2 (Berkeley) 1/4/94 30 */ 31 32 #include <sys/cdefs.h> 33 __FBSDID("$FreeBSD$"); 34 35 #include "opt_bootp.h" 36 #include "opt_ipfw.h" 37 #include "opt_ipstealth.h" 38 #include "opt_ipsec.h" 39 #include "opt_route.h" 40 #include "opt_rss.h" 41 42 #include <sys/param.h> 43 #include <sys/systm.h> 44 #include <sys/hhook.h> 45 #include <sys/mbuf.h> 46 #include <sys/malloc.h> 47 #include <sys/domain.h> 48 #include <sys/protosw.h> 49 #include <sys/socket.h> 50 #include <sys/time.h> 51 #include <sys/kernel.h> 52 #include <sys/lock.h> 53 #include <sys/rmlock.h> 54 #include <sys/rwlock.h> 55 #include <sys/sdt.h> 56 #include <sys/syslog.h> 57 #include <sys/sysctl.h> 58 59 #include <net/pfil.h> 60 #include <net/if.h> 61 #include <net/if_types.h> 62 #include <net/if_var.h> 63 #include <net/if_dl.h> 64 #include <net/route.h> 65 #include <net/netisr.h> 66 #include <net/rss_config.h> 67 #include <net/vnet.h> 68 69 #include <netinet/in.h> 70 #include <netinet/in_kdtrace.h> 71 #include <netinet/in_systm.h> 72 #include <netinet/in_var.h> 73 #include <netinet/ip.h> 74 #include <netinet/in_pcb.h> 75 #include <netinet/ip_var.h> 76 #include <netinet/ip_fw.h> 77 #include <netinet/ip_icmp.h> 78 #include <netinet/ip_options.h> 79 #include <machine/in_cksum.h> 80 #include <netinet/ip_carp.h> 81 #ifdef IPSEC 82 #include <netinet/ip_ipsec.h> 83 #include <netipsec/ipsec.h> 84 #include <netipsec/key.h> 85 #endif /* IPSEC */ 86 #include <netinet/in_rss.h> 87 88 #include <sys/socketvar.h> 89 90 #include <security/mac/mac_framework.h> 91 92 #ifdef CTASSERT 93 CTASSERT(sizeof(struct ip) == 20); 94 #endif 95 96 /* IP reassembly functions are defined in ip_reass.c. */ 97 extern void ipreass_init(void); 98 extern void ipreass_drain(void); 99 extern void ipreass_slowtimo(void); 100 #ifdef VIMAGE 101 extern void ipreass_destroy(void); 102 #endif 103 104 struct rmlock in_ifaddr_lock; 105 RM_SYSINIT(in_ifaddr_lock, &in_ifaddr_lock, "in_ifaddr_lock"); 106 107 VNET_DEFINE(int, rsvp_on); 108 109 VNET_DEFINE(int, ipforwarding); 110 SYSCTL_INT(_net_inet_ip, IPCTL_FORWARDING, forwarding, CTLFLAG_VNET | CTLFLAG_RW, 111 &VNET_NAME(ipforwarding), 0, 112 "Enable IP forwarding between interfaces"); 113 114 static VNET_DEFINE(int, ipsendredirects) = 1; /* XXX */ 115 #define V_ipsendredirects VNET(ipsendredirects) 116 SYSCTL_INT(_net_inet_ip, IPCTL_SENDREDIRECTS, redirect, CTLFLAG_VNET | CTLFLAG_RW, 117 &VNET_NAME(ipsendredirects), 0, 118 "Enable sending IP redirects"); 119 120 /* 121 * XXX - Setting ip_checkinterface mostly implements the receive side of 122 * the Strong ES model described in RFC 1122, but since the routing table 123 * and transmit implementation do not implement the Strong ES model, 124 * setting this to 1 results in an odd hybrid. 125 * 126 * XXX - ip_checkinterface currently must be disabled if you use ipnat 127 * to translate the destination address to another local interface. 128 * 129 * XXX - ip_checkinterface must be disabled if you add IP aliases 130 * to the loopback interface instead of the interface where the 131 * packets for those addresses are received. 132 */ 133 static VNET_DEFINE(int, ip_checkinterface); 134 #define V_ip_checkinterface VNET(ip_checkinterface) 135 SYSCTL_INT(_net_inet_ip, OID_AUTO, check_interface, CTLFLAG_VNET | CTLFLAG_RW, 136 &VNET_NAME(ip_checkinterface), 0, 137 "Verify packet arrives on correct interface"); 138 139 VNET_DEFINE(struct pfil_head, inet_pfil_hook); /* Packet filter hooks */ 140 141 static struct netisr_handler ip_nh = { 142 .nh_name = "ip", 143 .nh_handler = ip_input, 144 .nh_proto = NETISR_IP, 145 #ifdef RSS 146 .nh_m2cpuid = rss_soft_m2cpuid_v4, 147 .nh_policy = NETISR_POLICY_CPU, 148 .nh_dispatch = NETISR_DISPATCH_HYBRID, 149 #else 150 .nh_policy = NETISR_POLICY_FLOW, 151 #endif 152 }; 153 154 #ifdef RSS 155 /* 156 * Directly dispatched frames are currently assumed 157 * to have a flowid already calculated. 158 * 159 * It should likely have something that assert it 160 * actually has valid flow details. 161 */ 162 static struct netisr_handler ip_direct_nh = { 163 .nh_name = "ip_direct", 164 .nh_handler = ip_direct_input, 165 .nh_proto = NETISR_IP_DIRECT, 166 .nh_m2cpuid = rss_soft_m2cpuid_v4, 167 .nh_policy = NETISR_POLICY_CPU, 168 .nh_dispatch = NETISR_DISPATCH_HYBRID, 169 }; 170 #endif 171 172 extern struct domain inetdomain; 173 extern struct protosw inetsw[]; 174 u_char ip_protox[IPPROTO_MAX]; 175 VNET_DEFINE(struct in_ifaddrhead, in_ifaddrhead); /* first inet address */ 176 VNET_DEFINE(struct in_ifaddrhashhead *, in_ifaddrhashtbl); /* inet addr hash table */ 177 VNET_DEFINE(u_long, in_ifaddrhmask); /* mask for hash table */ 178 179 #ifdef IPCTL_DEFMTU 180 SYSCTL_INT(_net_inet_ip, IPCTL_DEFMTU, mtu, CTLFLAG_RW, 181 &ip_mtu, 0, "Default MTU"); 182 #endif 183 184 #ifdef IPSTEALTH 185 VNET_DEFINE(int, ipstealth); 186 SYSCTL_INT(_net_inet_ip, OID_AUTO, stealth, CTLFLAG_VNET | CTLFLAG_RW, 187 &VNET_NAME(ipstealth), 0, 188 "IP stealth mode, no TTL decrementation on forwarding"); 189 #endif 190 191 /* 192 * IP statistics are stored in the "array" of counter(9)s. 193 */ 194 VNET_PCPUSTAT_DEFINE(struct ipstat, ipstat); 195 VNET_PCPUSTAT_SYSINIT(ipstat); 196 SYSCTL_VNET_PCPUSTAT(_net_inet_ip, IPCTL_STATS, stats, struct ipstat, ipstat, 197 "IP statistics (struct ipstat, netinet/ip_var.h)"); 198 199 #ifdef VIMAGE 200 VNET_PCPUSTAT_SYSUNINIT(ipstat); 201 #endif /* VIMAGE */ 202 203 /* 204 * Kernel module interface for updating ipstat. The argument is an index 205 * into ipstat treated as an array. 206 */ 207 void 208 kmod_ipstat_inc(int statnum) 209 { 210 211 counter_u64_add(VNET(ipstat)[statnum], 1); 212 } 213 214 void 215 kmod_ipstat_dec(int statnum) 216 { 217 218 counter_u64_add(VNET(ipstat)[statnum], -1); 219 } 220 221 static int 222 sysctl_netinet_intr_queue_maxlen(SYSCTL_HANDLER_ARGS) 223 { 224 int error, qlimit; 225 226 netisr_getqlimit(&ip_nh, &qlimit); 227 error = sysctl_handle_int(oidp, &qlimit, 0, req); 228 if (error || !req->newptr) 229 return (error); 230 if (qlimit < 1) 231 return (EINVAL); 232 return (netisr_setqlimit(&ip_nh, qlimit)); 233 } 234 SYSCTL_PROC(_net_inet_ip, IPCTL_INTRQMAXLEN, intr_queue_maxlen, 235 CTLTYPE_INT|CTLFLAG_RW, 0, 0, sysctl_netinet_intr_queue_maxlen, "I", 236 "Maximum size of the IP input queue"); 237 238 static int 239 sysctl_netinet_intr_queue_drops(SYSCTL_HANDLER_ARGS) 240 { 241 u_int64_t qdrops_long; 242 int error, qdrops; 243 244 netisr_getqdrops(&ip_nh, &qdrops_long); 245 qdrops = qdrops_long; 246 error = sysctl_handle_int(oidp, &qdrops, 0, req); 247 if (error || !req->newptr) 248 return (error); 249 if (qdrops != 0) 250 return (EINVAL); 251 netisr_clearqdrops(&ip_nh); 252 return (0); 253 } 254 255 SYSCTL_PROC(_net_inet_ip, IPCTL_INTRQDROPS, intr_queue_drops, 256 CTLTYPE_INT|CTLFLAG_RD, 0, 0, sysctl_netinet_intr_queue_drops, "I", 257 "Number of packets dropped from the IP input queue"); 258 259 #ifdef RSS 260 static int 261 sysctl_netinet_intr_direct_queue_maxlen(SYSCTL_HANDLER_ARGS) 262 { 263 int error, qlimit; 264 265 netisr_getqlimit(&ip_direct_nh, &qlimit); 266 error = sysctl_handle_int(oidp, &qlimit, 0, req); 267 if (error || !req->newptr) 268 return (error); 269 if (qlimit < 1) 270 return (EINVAL); 271 return (netisr_setqlimit(&ip_direct_nh, qlimit)); 272 } 273 SYSCTL_PROC(_net_inet_ip, IPCTL_INTRQMAXLEN, intr_direct_queue_maxlen, 274 CTLTYPE_INT|CTLFLAG_RW, 0, 0, sysctl_netinet_intr_direct_queue_maxlen, "I", 275 "Maximum size of the IP direct input queue"); 276 277 static int 278 sysctl_netinet_intr_direct_queue_drops(SYSCTL_HANDLER_ARGS) 279 { 280 u_int64_t qdrops_long; 281 int error, qdrops; 282 283 netisr_getqdrops(&ip_direct_nh, &qdrops_long); 284 qdrops = qdrops_long; 285 error = sysctl_handle_int(oidp, &qdrops, 0, req); 286 if (error || !req->newptr) 287 return (error); 288 if (qdrops != 0) 289 return (EINVAL); 290 netisr_clearqdrops(&ip_direct_nh); 291 return (0); 292 } 293 294 SYSCTL_PROC(_net_inet_ip, IPCTL_INTRQDROPS, intr_direct_queue_drops, 295 CTLTYPE_INT|CTLFLAG_RD, 0, 0, sysctl_netinet_intr_direct_queue_drops, "I", 296 "Number of packets dropped from the IP direct input queue"); 297 #endif /* RSS */ 298 299 /* 300 * IP initialization: fill in IP protocol switch table. 301 * All protocols not implemented in kernel go to raw IP protocol handler. 302 */ 303 void 304 ip_init(void) 305 { 306 struct protosw *pr; 307 int i; 308 309 TAILQ_INIT(&V_in_ifaddrhead); 310 V_in_ifaddrhashtbl = hashinit(INADDR_NHASH, M_IFADDR, &V_in_ifaddrhmask); 311 312 /* Initialize IP reassembly queue. */ 313 ipreass_init(); 314 315 /* Initialize packet filter hooks. */ 316 V_inet_pfil_hook.ph_type = PFIL_TYPE_AF; 317 V_inet_pfil_hook.ph_af = AF_INET; 318 if ((i = pfil_head_register(&V_inet_pfil_hook)) != 0) 319 printf("%s: WARNING: unable to register pfil hook, " 320 "error %d\n", __func__, i); 321 322 if (hhook_head_register(HHOOK_TYPE_IPSEC_IN, AF_INET, 323 &V_ipsec_hhh_in[HHOOK_IPSEC_INET], 324 HHOOK_WAITOK | HHOOK_HEADISINVNET) != 0) 325 printf("%s: WARNING: unable to register input helper hook\n", 326 __func__); 327 if (hhook_head_register(HHOOK_TYPE_IPSEC_OUT, AF_INET, 328 &V_ipsec_hhh_out[HHOOK_IPSEC_INET], 329 HHOOK_WAITOK | HHOOK_HEADISINVNET) != 0) 330 printf("%s: WARNING: unable to register output helper hook\n", 331 __func__); 332 333 /* Skip initialization of globals for non-default instances. */ 334 if (!IS_DEFAULT_VNET(curvnet)) 335 return; 336 337 pr = pffindproto(PF_INET, IPPROTO_RAW, SOCK_RAW); 338 if (pr == NULL) 339 panic("ip_init: PF_INET not found"); 340 341 /* Initialize the entire ip_protox[] array to IPPROTO_RAW. */ 342 for (i = 0; i < IPPROTO_MAX; i++) 343 ip_protox[i] = pr - inetsw; 344 /* 345 * Cycle through IP protocols and put them into the appropriate place 346 * in ip_protox[]. 347 */ 348 for (pr = inetdomain.dom_protosw; 349 pr < inetdomain.dom_protoswNPROTOSW; pr++) 350 if (pr->pr_domain->dom_family == PF_INET && 351 pr->pr_protocol && pr->pr_protocol != IPPROTO_RAW) { 352 /* Be careful to only index valid IP protocols. */ 353 if (pr->pr_protocol < IPPROTO_MAX) 354 ip_protox[pr->pr_protocol] = pr - inetsw; 355 } 356 357 netisr_register(&ip_nh); 358 #ifdef RSS 359 netisr_register(&ip_direct_nh); 360 #endif 361 } 362 363 #ifdef VIMAGE 364 static void 365 ip_destroy(void *unused __unused) 366 { 367 int error; 368 369 if ((error = pfil_head_unregister(&V_inet_pfil_hook)) != 0) 370 printf("%s: WARNING: unable to unregister pfil hook, " 371 "error %d\n", __func__, error); 372 373 error = hhook_head_deregister(V_ipsec_hhh_in[HHOOK_IPSEC_INET]); 374 if (error != 0) { 375 printf("%s: WARNING: unable to deregister input helper hook " 376 "type HHOOK_TYPE_IPSEC_IN, id HHOOK_IPSEC_INET: " 377 "error %d returned\n", __func__, error); 378 } 379 error = hhook_head_deregister(V_ipsec_hhh_out[HHOOK_IPSEC_INET]); 380 if (error != 0) { 381 printf("%s: WARNING: unable to deregister output helper hook " 382 "type HHOOK_TYPE_IPSEC_OUT, id HHOOK_IPSEC_INET: " 383 "error %d returned\n", __func__, error); 384 } 385 /* Cleanup in_ifaddr hash table; should be empty. */ 386 hashdestroy(V_in_ifaddrhashtbl, M_IFADDR, V_in_ifaddrhmask); 387 388 /* Destroy IP reassembly queue. */ 389 ipreass_destroy(); 390 } 391 392 VNET_SYSUNINIT(ip, SI_SUB_PROTO_DOMAIN, SI_ORDER_THIRD, ip_destroy, NULL); 393 #endif 394 395 #ifdef RSS 396 /* 397 * IP direct input routine. 398 * 399 * This is called when reinjecting completed fragments where 400 * all of the previous checking and book-keeping has been done. 401 */ 402 void 403 ip_direct_input(struct mbuf *m) 404 { 405 struct ip *ip; 406 int hlen; 407 408 ip = mtod(m, struct ip *); 409 hlen = ip->ip_hl << 2; 410 411 IPSTAT_INC(ips_delivered); 412 (*inetsw[ip_protox[ip->ip_p]].pr_input)(&m, &hlen, ip->ip_p); 413 return; 414 } 415 #endif 416 417 /* 418 * Ip input routine. Checksum and byte swap header. If fragmented 419 * try to reassemble. Process options. Pass to next level. 420 */ 421 void 422 ip_input(struct mbuf *m) 423 { 424 struct ip *ip = NULL; 425 struct in_ifaddr *ia = NULL; 426 struct ifaddr *ifa; 427 struct ifnet *ifp; 428 int checkif, hlen = 0; 429 uint16_t sum, ip_len; 430 int dchg = 0; /* dest changed after fw */ 431 struct in_addr odst; /* original dst address */ 432 433 M_ASSERTPKTHDR(m); 434 435 if (m->m_flags & M_FASTFWD_OURS) { 436 m->m_flags &= ~M_FASTFWD_OURS; 437 /* Set up some basics that will be used later. */ 438 ip = mtod(m, struct ip *); 439 hlen = ip->ip_hl << 2; 440 ip_len = ntohs(ip->ip_len); 441 goto ours; 442 } 443 444 IPSTAT_INC(ips_total); 445 446 if (m->m_pkthdr.len < sizeof(struct ip)) 447 goto tooshort; 448 449 if (m->m_len < sizeof (struct ip) && 450 (m = m_pullup(m, sizeof (struct ip))) == NULL) { 451 IPSTAT_INC(ips_toosmall); 452 return; 453 } 454 ip = mtod(m, struct ip *); 455 456 if (ip->ip_v != IPVERSION) { 457 IPSTAT_INC(ips_badvers); 458 goto bad; 459 } 460 461 hlen = ip->ip_hl << 2; 462 if (hlen < sizeof(struct ip)) { /* minimum header length */ 463 IPSTAT_INC(ips_badhlen); 464 goto bad; 465 } 466 if (hlen > m->m_len) { 467 if ((m = m_pullup(m, hlen)) == NULL) { 468 IPSTAT_INC(ips_badhlen); 469 return; 470 } 471 ip = mtod(m, struct ip *); 472 } 473 474 IP_PROBE(receive, NULL, NULL, ip, m->m_pkthdr.rcvif, ip, NULL); 475 476 /* 127/8 must not appear on wire - RFC1122 */ 477 ifp = m->m_pkthdr.rcvif; 478 if ((ntohl(ip->ip_dst.s_addr) >> IN_CLASSA_NSHIFT) == IN_LOOPBACKNET || 479 (ntohl(ip->ip_src.s_addr) >> IN_CLASSA_NSHIFT) == IN_LOOPBACKNET) { 480 if ((ifp->if_flags & IFF_LOOPBACK) == 0) { 481 IPSTAT_INC(ips_badaddr); 482 goto bad; 483 } 484 } 485 486 if (m->m_pkthdr.csum_flags & CSUM_IP_CHECKED) { 487 sum = !(m->m_pkthdr.csum_flags & CSUM_IP_VALID); 488 } else { 489 if (hlen == sizeof(struct ip)) { 490 sum = in_cksum_hdr(ip); 491 } else { 492 sum = in_cksum(m, hlen); 493 } 494 } 495 if (sum) { 496 IPSTAT_INC(ips_badsum); 497 goto bad; 498 } 499 500 #ifdef ALTQ 501 if (altq_input != NULL && (*altq_input)(m, AF_INET) == 0) 502 /* packet is dropped by traffic conditioner */ 503 return; 504 #endif 505 506 ip_len = ntohs(ip->ip_len); 507 if (ip_len < hlen) { 508 IPSTAT_INC(ips_badlen); 509 goto bad; 510 } 511 512 /* 513 * Check that the amount of data in the buffers 514 * is as at least much as the IP header would have us expect. 515 * Trim mbufs if longer than we expect. 516 * Drop packet if shorter than we expect. 517 */ 518 if (m->m_pkthdr.len < ip_len) { 519 tooshort: 520 IPSTAT_INC(ips_tooshort); 521 goto bad; 522 } 523 if (m->m_pkthdr.len > ip_len) { 524 if (m->m_len == m->m_pkthdr.len) { 525 m->m_len = ip_len; 526 m->m_pkthdr.len = ip_len; 527 } else 528 m_adj(m, ip_len - m->m_pkthdr.len); 529 } 530 531 /* Try to forward the packet, but if we fail continue */ 532 #ifdef IPSEC 533 /* For now we do not handle IPSEC in tryforward. */ 534 if (!key_havesp(IPSEC_DIR_INBOUND) && !key_havesp(IPSEC_DIR_OUTBOUND) && 535 (V_ipforwarding == 1)) 536 if (ip_tryforward(m) == NULL) 537 return; 538 /* 539 * Bypass packet filtering for packets previously handled by IPsec. 540 */ 541 if (ip_ipsec_filtertunnel(m)) 542 goto passin; 543 #else 544 if (V_ipforwarding == 1) 545 if (ip_tryforward(m) == NULL) 546 return; 547 #endif /* IPSEC */ 548 549 /* 550 * Run through list of hooks for input packets. 551 * 552 * NB: Beware of the destination address changing (e.g. 553 * by NAT rewriting). When this happens, tell 554 * ip_forward to do the right thing. 555 */ 556 557 /* Jump over all PFIL processing if hooks are not active. */ 558 if (!PFIL_HOOKED(&V_inet_pfil_hook)) 559 goto passin; 560 561 odst = ip->ip_dst; 562 if (pfil_run_hooks(&V_inet_pfil_hook, &m, ifp, PFIL_IN, NULL) != 0) 563 return; 564 if (m == NULL) /* consumed by filter */ 565 return; 566 567 ip = mtod(m, struct ip *); 568 dchg = (odst.s_addr != ip->ip_dst.s_addr); 569 ifp = m->m_pkthdr.rcvif; 570 571 if (m->m_flags & M_FASTFWD_OURS) { 572 m->m_flags &= ~M_FASTFWD_OURS; 573 goto ours; 574 } 575 if (m->m_flags & M_IP_NEXTHOP) { 576 if (m_tag_find(m, PACKET_TAG_IPFORWARD, NULL) != NULL) { 577 /* 578 * Directly ship the packet on. This allows 579 * forwarding packets originally destined to us 580 * to some other directly connected host. 581 */ 582 ip_forward(m, 1); 583 return; 584 } 585 } 586 passin: 587 588 /* 589 * Process options and, if not destined for us, 590 * ship it on. ip_dooptions returns 1 when an 591 * error was detected (causing an icmp message 592 * to be sent and the original packet to be freed). 593 */ 594 if (hlen > sizeof (struct ip) && ip_dooptions(m, 0)) 595 return; 596 597 /* greedy RSVP, snatches any PATH packet of the RSVP protocol and no 598 * matter if it is destined to another node, or whether it is 599 * a multicast one, RSVP wants it! and prevents it from being forwarded 600 * anywhere else. Also checks if the rsvp daemon is running before 601 * grabbing the packet. 602 */ 603 if (V_rsvp_on && ip->ip_p==IPPROTO_RSVP) 604 goto ours; 605 606 /* 607 * Check our list of addresses, to see if the packet is for us. 608 * If we don't have any addresses, assume any unicast packet 609 * we receive might be for us (and let the upper layers deal 610 * with it). 611 */ 612 if (TAILQ_EMPTY(&V_in_ifaddrhead) && 613 (m->m_flags & (M_MCAST|M_BCAST)) == 0) 614 goto ours; 615 616 /* 617 * Enable a consistency check between the destination address 618 * and the arrival interface for a unicast packet (the RFC 1122 619 * strong ES model) if IP forwarding is disabled and the packet 620 * is not locally generated and the packet is not subject to 621 * 'ipfw fwd'. 622 * 623 * XXX - Checking also should be disabled if the destination 624 * address is ipnat'ed to a different interface. 625 * 626 * XXX - Checking is incompatible with IP aliases added 627 * to the loopback interface instead of the interface where 628 * the packets are received. 629 * 630 * XXX - This is the case for carp vhost IPs as well so we 631 * insert a workaround. If the packet got here, we already 632 * checked with carp_iamatch() and carp_forus(). 633 */ 634 checkif = V_ip_checkinterface && (V_ipforwarding == 0) && 635 ifp != NULL && ((ifp->if_flags & IFF_LOOPBACK) == 0) && 636 ifp->if_carp == NULL && (dchg == 0); 637 638 /* 639 * Check for exact addresses in the hash bucket. 640 */ 641 /* IN_IFADDR_RLOCK(); */ 642 LIST_FOREACH(ia, INADDR_HASH(ip->ip_dst.s_addr), ia_hash) { 643 /* 644 * If the address matches, verify that the packet 645 * arrived via the correct interface if checking is 646 * enabled. 647 */ 648 if (IA_SIN(ia)->sin_addr.s_addr == ip->ip_dst.s_addr && 649 (!checkif || ia->ia_ifp == ifp)) { 650 counter_u64_add(ia->ia_ifa.ifa_ipackets, 1); 651 counter_u64_add(ia->ia_ifa.ifa_ibytes, 652 m->m_pkthdr.len); 653 /* IN_IFADDR_RUNLOCK(); */ 654 goto ours; 655 } 656 } 657 /* IN_IFADDR_RUNLOCK(); */ 658 659 /* 660 * Check for broadcast addresses. 661 * 662 * Only accept broadcast packets that arrive via the matching 663 * interface. Reception of forwarded directed broadcasts would 664 * be handled via ip_forward() and ether_output() with the loopback 665 * into the stack for SIMPLEX interfaces handled by ether_output(). 666 */ 667 if (ifp != NULL && ifp->if_flags & IFF_BROADCAST) { 668 IF_ADDR_RLOCK(ifp); 669 TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) { 670 if (ifa->ifa_addr->sa_family != AF_INET) 671 continue; 672 ia = ifatoia(ifa); 673 if (satosin(&ia->ia_broadaddr)->sin_addr.s_addr == 674 ip->ip_dst.s_addr) { 675 counter_u64_add(ia->ia_ifa.ifa_ipackets, 1); 676 counter_u64_add(ia->ia_ifa.ifa_ibytes, 677 m->m_pkthdr.len); 678 IF_ADDR_RUNLOCK(ifp); 679 goto ours; 680 } 681 #ifdef BOOTP_COMPAT 682 if (IA_SIN(ia)->sin_addr.s_addr == INADDR_ANY) { 683 counter_u64_add(ia->ia_ifa.ifa_ipackets, 1); 684 counter_u64_add(ia->ia_ifa.ifa_ibytes, 685 m->m_pkthdr.len); 686 IF_ADDR_RUNLOCK(ifp); 687 goto ours; 688 } 689 #endif 690 } 691 IF_ADDR_RUNLOCK(ifp); 692 ia = NULL; 693 } 694 /* RFC 3927 2.7: Do not forward datagrams for 169.254.0.0/16. */ 695 if (IN_LINKLOCAL(ntohl(ip->ip_dst.s_addr))) { 696 IPSTAT_INC(ips_cantforward); 697 m_freem(m); 698 return; 699 } 700 if (IN_MULTICAST(ntohl(ip->ip_dst.s_addr))) { 701 if (V_ip_mrouter) { 702 /* 703 * If we are acting as a multicast router, all 704 * incoming multicast packets are passed to the 705 * kernel-level multicast forwarding function. 706 * The packet is returned (relatively) intact; if 707 * ip_mforward() returns a non-zero value, the packet 708 * must be discarded, else it may be accepted below. 709 */ 710 if (ip_mforward && ip_mforward(ip, ifp, m, 0) != 0) { 711 IPSTAT_INC(ips_cantforward); 712 m_freem(m); 713 return; 714 } 715 716 /* 717 * The process-level routing daemon needs to receive 718 * all multicast IGMP packets, whether or not this 719 * host belongs to their destination groups. 720 */ 721 if (ip->ip_p == IPPROTO_IGMP) 722 goto ours; 723 IPSTAT_INC(ips_forward); 724 } 725 /* 726 * Assume the packet is for us, to avoid prematurely taking 727 * a lock on the in_multi hash. Protocols must perform 728 * their own filtering and update statistics accordingly. 729 */ 730 goto ours; 731 } 732 if (ip->ip_dst.s_addr == (u_long)INADDR_BROADCAST) 733 goto ours; 734 if (ip->ip_dst.s_addr == INADDR_ANY) 735 goto ours; 736 737 /* 738 * Not for us; forward if possible and desirable. 739 */ 740 if (V_ipforwarding == 0) { 741 IPSTAT_INC(ips_cantforward); 742 m_freem(m); 743 } else { 744 ip_forward(m, dchg); 745 } 746 return; 747 748 ours: 749 #ifdef IPSTEALTH 750 /* 751 * IPSTEALTH: Process non-routing options only 752 * if the packet is destined for us. 753 */ 754 if (V_ipstealth && hlen > sizeof (struct ip) && ip_dooptions(m, 1)) 755 return; 756 #endif /* IPSTEALTH */ 757 758 /* 759 * Attempt reassembly; if it succeeds, proceed. 760 * ip_reass() will return a different mbuf. 761 */ 762 if (ip->ip_off & htons(IP_MF | IP_OFFMASK)) { 763 /* XXXGL: shouldn't we save & set m_flags? */ 764 m = ip_reass(m); 765 if (m == NULL) 766 return; 767 ip = mtod(m, struct ip *); 768 /* Get the header length of the reassembled packet */ 769 hlen = ip->ip_hl << 2; 770 } 771 772 #ifdef IPSEC 773 /* 774 * enforce IPsec policy checking if we are seeing last header. 775 * note that we do not visit this with protocols with pcb layer 776 * code - like udp/tcp/raw ip. 777 */ 778 if (ip_ipsec_input(m, ip->ip_p) != 0) 779 goto bad; 780 #endif /* IPSEC */ 781 782 /* 783 * Switch out to protocol's input routine. 784 */ 785 IPSTAT_INC(ips_delivered); 786 787 (*inetsw[ip_protox[ip->ip_p]].pr_input)(&m, &hlen, ip->ip_p); 788 return; 789 bad: 790 m_freem(m); 791 } 792 793 /* 794 * IP timer processing; 795 * if a timer expires on a reassembly 796 * queue, discard it. 797 */ 798 void 799 ip_slowtimo(void) 800 { 801 VNET_ITERATOR_DECL(vnet_iter); 802 803 VNET_LIST_RLOCK_NOSLEEP(); 804 VNET_FOREACH(vnet_iter) { 805 CURVNET_SET(vnet_iter); 806 ipreass_slowtimo(); 807 CURVNET_RESTORE(); 808 } 809 VNET_LIST_RUNLOCK_NOSLEEP(); 810 } 811 812 void 813 ip_drain(void) 814 { 815 VNET_ITERATOR_DECL(vnet_iter); 816 817 VNET_LIST_RLOCK_NOSLEEP(); 818 VNET_FOREACH(vnet_iter) { 819 CURVNET_SET(vnet_iter); 820 ipreass_drain(); 821 CURVNET_RESTORE(); 822 } 823 VNET_LIST_RUNLOCK_NOSLEEP(); 824 } 825 826 /* 827 * The protocol to be inserted into ip_protox[] must be already registered 828 * in inetsw[], either statically or through pf_proto_register(). 829 */ 830 int 831 ipproto_register(short ipproto) 832 { 833 struct protosw *pr; 834 835 /* Sanity checks. */ 836 if (ipproto <= 0 || ipproto >= IPPROTO_MAX) 837 return (EPROTONOSUPPORT); 838 839 /* 840 * The protocol slot must not be occupied by another protocol 841 * already. An index pointing to IPPROTO_RAW is unused. 842 */ 843 pr = pffindproto(PF_INET, IPPROTO_RAW, SOCK_RAW); 844 if (pr == NULL) 845 return (EPFNOSUPPORT); 846 if (ip_protox[ipproto] != pr - inetsw) /* IPPROTO_RAW */ 847 return (EEXIST); 848 849 /* Find the protocol position in inetsw[] and set the index. */ 850 for (pr = inetdomain.dom_protosw; 851 pr < inetdomain.dom_protoswNPROTOSW; pr++) { 852 if (pr->pr_domain->dom_family == PF_INET && 853 pr->pr_protocol && pr->pr_protocol == ipproto) { 854 ip_protox[pr->pr_protocol] = pr - inetsw; 855 return (0); 856 } 857 } 858 return (EPROTONOSUPPORT); 859 } 860 861 int 862 ipproto_unregister(short ipproto) 863 { 864 struct protosw *pr; 865 866 /* Sanity checks. */ 867 if (ipproto <= 0 || ipproto >= IPPROTO_MAX) 868 return (EPROTONOSUPPORT); 869 870 /* Check if the protocol was indeed registered. */ 871 pr = pffindproto(PF_INET, IPPROTO_RAW, SOCK_RAW); 872 if (pr == NULL) 873 return (EPFNOSUPPORT); 874 if (ip_protox[ipproto] == pr - inetsw) /* IPPROTO_RAW */ 875 return (ENOENT); 876 877 /* Reset the protocol slot to IPPROTO_RAW. */ 878 ip_protox[ipproto] = pr - inetsw; 879 return (0); 880 } 881 882 u_char inetctlerrmap[PRC_NCMDS] = { 883 0, 0, 0, 0, 884 0, EMSGSIZE, EHOSTDOWN, EHOSTUNREACH, 885 EHOSTUNREACH, EHOSTUNREACH, ECONNREFUSED, ECONNREFUSED, 886 EMSGSIZE, EHOSTUNREACH, 0, 0, 887 0, 0, EHOSTUNREACH, 0, 888 ENOPROTOOPT, ECONNREFUSED 889 }; 890 891 /* 892 * Forward a packet. If some error occurs return the sender 893 * an icmp packet. Note we can't always generate a meaningful 894 * icmp message because icmp doesn't have a large enough repertoire 895 * of codes and types. 896 * 897 * If not forwarding, just drop the packet. This could be confusing 898 * if ipforwarding was zero but some routing protocol was advancing 899 * us as a gateway to somewhere. However, we must let the routing 900 * protocol deal with that. 901 * 902 * The srcrt parameter indicates whether the packet is being forwarded 903 * via a source route. 904 */ 905 void 906 ip_forward(struct mbuf *m, int srcrt) 907 { 908 struct ip *ip = mtod(m, struct ip *); 909 struct in_ifaddr *ia; 910 struct mbuf *mcopy; 911 struct sockaddr_in *sin; 912 struct in_addr dest; 913 struct route ro; 914 int error, type = 0, code = 0, mtu = 0; 915 916 if (m->m_flags & (M_BCAST|M_MCAST) || in_canforward(ip->ip_dst) == 0) { 917 IPSTAT_INC(ips_cantforward); 918 m_freem(m); 919 return; 920 } 921 #ifdef IPSEC 922 if (ip_ipsec_fwd(m) != 0) { 923 IPSTAT_INC(ips_cantforward); 924 m_freem(m); 925 return; 926 } 927 #endif /* IPSEC */ 928 #ifdef IPSTEALTH 929 if (!V_ipstealth) { 930 #endif 931 if (ip->ip_ttl <= IPTTLDEC) { 932 icmp_error(m, ICMP_TIMXCEED, ICMP_TIMXCEED_INTRANS, 933 0, 0); 934 return; 935 } 936 #ifdef IPSTEALTH 937 } 938 #endif 939 940 bzero(&ro, sizeof(ro)); 941 sin = (struct sockaddr_in *)&ro.ro_dst; 942 sin->sin_family = AF_INET; 943 sin->sin_len = sizeof(*sin); 944 sin->sin_addr = ip->ip_dst; 945 #ifdef RADIX_MPATH 946 rtalloc_mpath_fib(&ro, 947 ntohl(ip->ip_src.s_addr ^ ip->ip_dst.s_addr), 948 M_GETFIB(m)); 949 #else 950 in_rtalloc_ign(&ro, 0, M_GETFIB(m)); 951 #endif 952 if (ro.ro_rt != NULL) { 953 ia = ifatoia(ro.ro_rt->rt_ifa); 954 ifa_ref(&ia->ia_ifa); 955 } else 956 ia = NULL; 957 #ifndef IPSEC 958 /* 959 * 'ia' may be NULL if there is no route for this destination. 960 * In case of IPsec, Don't discard it just yet, but pass it to 961 * ip_output in case of outgoing IPsec policy. 962 */ 963 if (!srcrt && ia == NULL) { 964 icmp_error(m, ICMP_UNREACH, ICMP_UNREACH_HOST, 0, 0); 965 RO_RTFREE(&ro); 966 return; 967 } 968 #endif 969 970 /* 971 * Save the IP header and at most 8 bytes of the payload, 972 * in case we need to generate an ICMP message to the src. 973 * 974 * XXX this can be optimized a lot by saving the data in a local 975 * buffer on the stack (72 bytes at most), and only allocating the 976 * mbuf if really necessary. The vast majority of the packets 977 * are forwarded without having to send an ICMP back (either 978 * because unnecessary, or because rate limited), so we are 979 * really we are wasting a lot of work here. 980 * 981 * We don't use m_copy() because it might return a reference 982 * to a shared cluster. Both this function and ip_output() 983 * assume exclusive access to the IP header in `m', so any 984 * data in a cluster may change before we reach icmp_error(). 985 */ 986 mcopy = m_gethdr(M_NOWAIT, m->m_type); 987 if (mcopy != NULL && !m_dup_pkthdr(mcopy, m, M_NOWAIT)) { 988 /* 989 * It's probably ok if the pkthdr dup fails (because 990 * the deep copy of the tag chain failed), but for now 991 * be conservative and just discard the copy since 992 * code below may some day want the tags. 993 */ 994 m_free(mcopy); 995 mcopy = NULL; 996 } 997 if (mcopy != NULL) { 998 mcopy->m_len = min(ntohs(ip->ip_len), M_TRAILINGSPACE(mcopy)); 999 mcopy->m_pkthdr.len = mcopy->m_len; 1000 m_copydata(m, 0, mcopy->m_len, mtod(mcopy, caddr_t)); 1001 } 1002 1003 #ifdef IPSTEALTH 1004 if (!V_ipstealth) { 1005 #endif 1006 ip->ip_ttl -= IPTTLDEC; 1007 #ifdef IPSTEALTH 1008 } 1009 #endif 1010 1011 /* 1012 * If forwarding packet using same interface that it came in on, 1013 * perhaps should send a redirect to sender to shortcut a hop. 1014 * Only send redirect if source is sending directly to us, 1015 * and if packet was not source routed (or has any options). 1016 * Also, don't send redirect if forwarding using a default route 1017 * or a route modified by a redirect. 1018 */ 1019 dest.s_addr = 0; 1020 if (!srcrt && V_ipsendredirects && 1021 ia != NULL && ia->ia_ifp == m->m_pkthdr.rcvif) { 1022 struct rtentry *rt; 1023 1024 rt = ro.ro_rt; 1025 1026 if (rt && (rt->rt_flags & (RTF_DYNAMIC|RTF_MODIFIED)) == 0 && 1027 satosin(rt_key(rt))->sin_addr.s_addr != 0) { 1028 #define RTA(rt) ((struct in_ifaddr *)(rt->rt_ifa)) 1029 u_long src = ntohl(ip->ip_src.s_addr); 1030 1031 if (RTA(rt) && 1032 (src & RTA(rt)->ia_subnetmask) == RTA(rt)->ia_subnet) { 1033 if (rt->rt_flags & RTF_GATEWAY) 1034 dest.s_addr = satosin(rt->rt_gateway)->sin_addr.s_addr; 1035 else 1036 dest.s_addr = ip->ip_dst.s_addr; 1037 /* Router requirements says to only send host redirects */ 1038 type = ICMP_REDIRECT; 1039 code = ICMP_REDIRECT_HOST; 1040 } 1041 } 1042 } 1043 1044 error = ip_output(m, NULL, &ro, IP_FORWARDING, NULL, NULL); 1045 1046 if (error == EMSGSIZE && ro.ro_rt) 1047 mtu = ro.ro_rt->rt_mtu; 1048 RO_RTFREE(&ro); 1049 1050 if (error) 1051 IPSTAT_INC(ips_cantforward); 1052 else { 1053 IPSTAT_INC(ips_forward); 1054 if (type) 1055 IPSTAT_INC(ips_redirectsent); 1056 else { 1057 if (mcopy) 1058 m_freem(mcopy); 1059 if (ia != NULL) 1060 ifa_free(&ia->ia_ifa); 1061 return; 1062 } 1063 } 1064 if (mcopy == NULL) { 1065 if (ia != NULL) 1066 ifa_free(&ia->ia_ifa); 1067 return; 1068 } 1069 1070 switch (error) { 1071 1072 case 0: /* forwarded, but need redirect */ 1073 /* type, code set above */ 1074 break; 1075 1076 case ENETUNREACH: 1077 case EHOSTUNREACH: 1078 case ENETDOWN: 1079 case EHOSTDOWN: 1080 default: 1081 type = ICMP_UNREACH; 1082 code = ICMP_UNREACH_HOST; 1083 break; 1084 1085 case EMSGSIZE: 1086 type = ICMP_UNREACH; 1087 code = ICMP_UNREACH_NEEDFRAG; 1088 1089 #ifdef IPSEC 1090 /* 1091 * If IPsec is configured for this path, 1092 * override any possibly mtu value set by ip_output. 1093 */ 1094 mtu = ip_ipsec_mtu(mcopy, mtu); 1095 #endif /* IPSEC */ 1096 /* 1097 * If the MTU was set before make sure we are below the 1098 * interface MTU. 1099 * If the MTU wasn't set before use the interface mtu or 1100 * fall back to the next smaller mtu step compared to the 1101 * current packet size. 1102 */ 1103 if (mtu != 0) { 1104 if (ia != NULL) 1105 mtu = min(mtu, ia->ia_ifp->if_mtu); 1106 } else { 1107 if (ia != NULL) 1108 mtu = ia->ia_ifp->if_mtu; 1109 else 1110 mtu = ip_next_mtu(ntohs(ip->ip_len), 0); 1111 } 1112 IPSTAT_INC(ips_cantfrag); 1113 break; 1114 1115 case ENOBUFS: 1116 case EACCES: /* ipfw denied packet */ 1117 m_freem(mcopy); 1118 if (ia != NULL) 1119 ifa_free(&ia->ia_ifa); 1120 return; 1121 } 1122 if (ia != NULL) 1123 ifa_free(&ia->ia_ifa); 1124 icmp_error(mcopy, type, code, dest.s_addr, mtu); 1125 } 1126 1127 void 1128 ip_savecontrol(struct inpcb *inp, struct mbuf **mp, struct ip *ip, 1129 struct mbuf *m) 1130 { 1131 1132 if (inp->inp_socket->so_options & (SO_BINTIME | SO_TIMESTAMP)) { 1133 struct bintime bt; 1134 1135 bintime(&bt); 1136 if (inp->inp_socket->so_options & SO_BINTIME) { 1137 *mp = sbcreatecontrol((caddr_t)&bt, sizeof(bt), 1138 SCM_BINTIME, SOL_SOCKET); 1139 if (*mp) 1140 mp = &(*mp)->m_next; 1141 } 1142 if (inp->inp_socket->so_options & SO_TIMESTAMP) { 1143 struct timeval tv; 1144 1145 bintime2timeval(&bt, &tv); 1146 *mp = sbcreatecontrol((caddr_t)&tv, sizeof(tv), 1147 SCM_TIMESTAMP, SOL_SOCKET); 1148 if (*mp) 1149 mp = &(*mp)->m_next; 1150 } 1151 } 1152 if (inp->inp_flags & INP_RECVDSTADDR) { 1153 *mp = sbcreatecontrol((caddr_t)&ip->ip_dst, 1154 sizeof(struct in_addr), IP_RECVDSTADDR, IPPROTO_IP); 1155 if (*mp) 1156 mp = &(*mp)->m_next; 1157 } 1158 if (inp->inp_flags & INP_RECVTTL) { 1159 *mp = sbcreatecontrol((caddr_t)&ip->ip_ttl, 1160 sizeof(u_char), IP_RECVTTL, IPPROTO_IP); 1161 if (*mp) 1162 mp = &(*mp)->m_next; 1163 } 1164 #ifdef notyet 1165 /* XXX 1166 * Moving these out of udp_input() made them even more broken 1167 * than they already were. 1168 */ 1169 /* options were tossed already */ 1170 if (inp->inp_flags & INP_RECVOPTS) { 1171 *mp = sbcreatecontrol((caddr_t)opts_deleted_above, 1172 sizeof(struct in_addr), IP_RECVOPTS, IPPROTO_IP); 1173 if (*mp) 1174 mp = &(*mp)->m_next; 1175 } 1176 /* ip_srcroute doesn't do what we want here, need to fix */ 1177 if (inp->inp_flags & INP_RECVRETOPTS) { 1178 *mp = sbcreatecontrol((caddr_t)ip_srcroute(m), 1179 sizeof(struct in_addr), IP_RECVRETOPTS, IPPROTO_IP); 1180 if (*mp) 1181 mp = &(*mp)->m_next; 1182 } 1183 #endif 1184 if (inp->inp_flags & INP_RECVIF) { 1185 struct ifnet *ifp; 1186 struct sdlbuf { 1187 struct sockaddr_dl sdl; 1188 u_char pad[32]; 1189 } sdlbuf; 1190 struct sockaddr_dl *sdp; 1191 struct sockaddr_dl *sdl2 = &sdlbuf.sdl; 1192 1193 if ((ifp = m->m_pkthdr.rcvif) && 1194 ifp->if_index && ifp->if_index <= V_if_index) { 1195 sdp = (struct sockaddr_dl *)ifp->if_addr->ifa_addr; 1196 /* 1197 * Change our mind and don't try copy. 1198 */ 1199 if (sdp->sdl_family != AF_LINK || 1200 sdp->sdl_len > sizeof(sdlbuf)) { 1201 goto makedummy; 1202 } 1203 bcopy(sdp, sdl2, sdp->sdl_len); 1204 } else { 1205 makedummy: 1206 sdl2->sdl_len = 1207 offsetof(struct sockaddr_dl, sdl_data[0]); 1208 sdl2->sdl_family = AF_LINK; 1209 sdl2->sdl_index = 0; 1210 sdl2->sdl_nlen = sdl2->sdl_alen = sdl2->sdl_slen = 0; 1211 } 1212 *mp = sbcreatecontrol((caddr_t)sdl2, sdl2->sdl_len, 1213 IP_RECVIF, IPPROTO_IP); 1214 if (*mp) 1215 mp = &(*mp)->m_next; 1216 } 1217 if (inp->inp_flags & INP_RECVTOS) { 1218 *mp = sbcreatecontrol((caddr_t)&ip->ip_tos, 1219 sizeof(u_char), IP_RECVTOS, IPPROTO_IP); 1220 if (*mp) 1221 mp = &(*mp)->m_next; 1222 } 1223 1224 if (inp->inp_flags2 & INP_RECVFLOWID) { 1225 uint32_t flowid, flow_type; 1226 1227 flowid = m->m_pkthdr.flowid; 1228 flow_type = M_HASHTYPE_GET(m); 1229 1230 /* 1231 * XXX should handle the failure of one or the 1232 * other - don't populate both? 1233 */ 1234 *mp = sbcreatecontrol((caddr_t) &flowid, 1235 sizeof(uint32_t), IP_FLOWID, IPPROTO_IP); 1236 if (*mp) 1237 mp = &(*mp)->m_next; 1238 *mp = sbcreatecontrol((caddr_t) &flow_type, 1239 sizeof(uint32_t), IP_FLOWTYPE, IPPROTO_IP); 1240 if (*mp) 1241 mp = &(*mp)->m_next; 1242 } 1243 1244 #ifdef RSS 1245 if (inp->inp_flags2 & INP_RECVRSSBUCKETID) { 1246 uint32_t flowid, flow_type; 1247 uint32_t rss_bucketid; 1248 1249 flowid = m->m_pkthdr.flowid; 1250 flow_type = M_HASHTYPE_GET(m); 1251 1252 if (rss_hash2bucket(flowid, flow_type, &rss_bucketid) == 0) { 1253 *mp = sbcreatecontrol((caddr_t) &rss_bucketid, 1254 sizeof(uint32_t), IP_RSSBUCKETID, IPPROTO_IP); 1255 if (*mp) 1256 mp = &(*mp)->m_next; 1257 } 1258 } 1259 #endif 1260 } 1261 1262 /* 1263 * XXXRW: Multicast routing code in ip_mroute.c is generally MPSAFE, but the 1264 * ip_rsvp and ip_rsvp_on variables need to be interlocked with rsvp_on 1265 * locking. This code remains in ip_input.c as ip_mroute.c is optionally 1266 * compiled. 1267 */ 1268 static VNET_DEFINE(int, ip_rsvp_on); 1269 VNET_DEFINE(struct socket *, ip_rsvpd); 1270 1271 #define V_ip_rsvp_on VNET(ip_rsvp_on) 1272 1273 int 1274 ip_rsvp_init(struct socket *so) 1275 { 1276 1277 if (so->so_type != SOCK_RAW || 1278 so->so_proto->pr_protocol != IPPROTO_RSVP) 1279 return EOPNOTSUPP; 1280 1281 if (V_ip_rsvpd != NULL) 1282 return EADDRINUSE; 1283 1284 V_ip_rsvpd = so; 1285 /* 1286 * This may seem silly, but we need to be sure we don't over-increment 1287 * the RSVP counter, in case something slips up. 1288 */ 1289 if (!V_ip_rsvp_on) { 1290 V_ip_rsvp_on = 1; 1291 V_rsvp_on++; 1292 } 1293 1294 return 0; 1295 } 1296 1297 int 1298 ip_rsvp_done(void) 1299 { 1300 1301 V_ip_rsvpd = NULL; 1302 /* 1303 * This may seem silly, but we need to be sure we don't over-decrement 1304 * the RSVP counter, in case something slips up. 1305 */ 1306 if (V_ip_rsvp_on) { 1307 V_ip_rsvp_on = 0; 1308 V_rsvp_on--; 1309 } 1310 return 0; 1311 } 1312 1313 int 1314 rsvp_input(struct mbuf **mp, int *offp, int proto) 1315 { 1316 struct mbuf *m; 1317 1318 m = *mp; 1319 *mp = NULL; 1320 1321 if (rsvp_input_p) { /* call the real one if loaded */ 1322 *mp = m; 1323 rsvp_input_p(mp, offp, proto); 1324 return (IPPROTO_DONE); 1325 } 1326 1327 /* Can still get packets with rsvp_on = 0 if there is a local member 1328 * of the group to which the RSVP packet is addressed. But in this 1329 * case we want to throw the packet away. 1330 */ 1331 1332 if (!V_rsvp_on) { 1333 m_freem(m); 1334 return (IPPROTO_DONE); 1335 } 1336 1337 if (V_ip_rsvpd != NULL) { 1338 *mp = m; 1339 rip_input(mp, offp, proto); 1340 return (IPPROTO_DONE); 1341 } 1342 /* Drop the packet */ 1343 m_freem(m); 1344 return (IPPROTO_DONE); 1345 } 1346