sys/netinet/ip_demux.c
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 | /* * Copyright (c) 2003, 2004 Jeffrey M. Hsu. All rights reserved. * Copyright (c) 2003, 2004 The DragonFly Project. All rights reserved. * * This code is derived from software contributed to The DragonFly Project * by Jeffrey M. Hsu. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of The DragonFly Project nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific, prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #include "opt_inet.h" #include "opt_rss.h" #include <sys/param.h> #include <sys/systm.h> #include <sys/kernel.h> #include <sys/socket.h> #include <sys/socketvar.h> #include <sys/thread.h> #include <sys/sysctl.h> #include <sys/globaldata.h> #include <net/if.h> #include <net/netisr2.h> #include <net/toeplitz2.h> #include <netinet/in_systm.h> #include <netinet/in.h> #include <netinet/in_var.h> #include <netinet/in_pcb.h> #include <netinet/ip.h> #include <netinet/ip_var.h> #include <netinet/tcp.h> #include <netinet/tcpip.h> #include <netinet/tcp_var.h> #include <netinet/udp.h> #include <netinet/udp_var.h> struct initport_index { uint32_t port_index; } __cachealign; static struct initport_index initport_indices[MAXCPU]; /* * Toeplitz hash functions - the idea is to match the hardware. */ static __inline int INP_MPORT_HASH_UDP(in_addr_t faddr, in_addr_t laddr, in_port_t fport, in_port_t lport) { /* * NOTE: laddr could be multicast, since UDP socket could be * bound to multicast address. */ if (IN_MULTICAST(ntohl(faddr)) || IN_MULTICAST(ntohl(laddr))) { /* XXX handle multicast on CPU0 for now */ return 0; } return toeplitz_hash(toeplitz_rawhash_addr(faddr, laddr)); } static __inline int INP_MPORT_HASH_TCP(in_addr_t faddr, in_addr_t laddr, in_port_t fport, in_port_t lport) { return toeplitz_hash( toeplitz_rawhash_addrport(faddr, laddr, fport, lport)); } /* * Hash for the network address. */ int tcp_addrhash(in_addr_t faddr, in_port_t fport, in_addr_t laddr, in_port_t lport) { return (INP_MPORT_HASH_TCP(faddr, laddr, fport, lport)); } int udp_addrhash(in_addr_t faddr, in_port_t fport, in_addr_t laddr, in_port_t lport) { return (INP_MPORT_HASH_UDP(faddr, laddr, fport, lport)); } /* * Map a network address to a processor. */ int tcp_addrcpu(in_addr_t faddr, in_port_t fport, in_addr_t laddr, in_port_t lport) { return (netisr_hashcpu(INP_MPORT_HASH_TCP(faddr, laddr, fport, lport))); } int udp_addrcpu(in_addr_t faddr, in_port_t fport, in_addr_t laddr, in_port_t lport) { return (netisr_hashcpu(INP_MPORT_HASH_UDP(faddr, laddr, fport, lport))); } /* * If the packet is a valid IP datagram, upon returning of this function * following things are promised: * * o IP header (including any possible IP options) and any data preceding * IP header (usually linker layer header) are in one mbuf (m_len). * o IP header length is not less than the minimum (sizeof(struct ip)). * o IP total length is not less than IP header length. * o IP datagram resides completely in the mbuf chain, * i.e. pkthdr.len >= IP total length. * * If the packet is a UDP datagram, * o IP header (including any possible IP options) and UDP header are in * one mbuf (m_len). * o IP total length is not less than (IP header length + UDP header length). * * If the packet is a TCP segment, * o IP header (including any possible IP options) and TCP header (including * any possible TCP options) are in one mbuf (m_len). * o TCP header length is not less than the minimum (sizeof(struct tcphdr)). * o IP total length is not less than (IP header length + TCP header length). */ boolean_t ip_lengthcheck(struct mbuf **mp, int hoff) { struct mbuf *m = *mp; struct ip *ip; int len, iphlen, iplen; struct tcphdr *th; int thoff; /* TCP data offset */ len = hoff + sizeof(struct ip); /* The packet must be at least the size of an IP header. */ if (m->m_pkthdr.len < len) { ipstat.ips_tooshort++; goto fail; } /* The fixed IP header must reside completely in the first mbuf. */ if (m->m_len < len) { m = m_pullup(m, len); if (m == NULL) { ipstat.ips_toosmall++; goto fail; } } ip = mtodoff(m, struct ip *, hoff); /* Bound check the packet's stated IP header length. */ iphlen = ip->ip_hl << 2; if (iphlen < sizeof(struct ip)) { /* minimum header length */ ipstat.ips_badhlen++; goto fail; } /* The full IP header must reside completely in the one mbuf. */ if (m->m_len < hoff + iphlen) { m = m_pullup(m, hoff + iphlen); if (m == NULL) { ipstat.ips_badhlen++; goto fail; } ip = mtodoff(m, struct ip *, hoff); } iplen = ntohs(ip->ip_len); /* * Check that the amount of data in the buffers is as * at least much as the IP header would have us expect. */ if (m->m_pkthdr.len < hoff + iplen) { ipstat.ips_tooshort++; goto fail; } /* * Fragments other than the first fragment don't have much * length information. */ if (ip->ip_off & htons(IP_OFFMASK)) goto ipcheckonly; /* * The TCP/IP or UDP/IP header must be entirely contained within * the first fragment of a packet. Packet filters will break if they * aren't. * * Since the packet will be trimmed to ip_len we must also make sure * the potentially trimmed down length is still sufficient to hold * the header(s). */ switch (ip->ip_p) { case IPPROTO_TCP: if (iplen < iphlen + sizeof(struct tcphdr)) { ++tcpstat.tcps_rcvshort; goto fail; } if (m->m_len < hoff + iphlen + sizeof(struct tcphdr)) { m = m_pullup(m, hoff + iphlen + sizeof(struct tcphdr)); if (m == NULL) { tcpstat.tcps_rcvshort++; goto fail; } ip = mtodoff(m, struct ip *, hoff); } th = (struct tcphdr *)((caddr_t)ip + iphlen); thoff = th->th_off << 2; if (thoff < sizeof(struct tcphdr) || thoff + iphlen > ntohs(ip->ip_len)) { tcpstat.tcps_rcvbadoff++; goto fail; } if (m->m_len < hoff + iphlen + thoff) { m = m_pullup(m, hoff + iphlen + thoff); if (m == NULL) { tcpstat.tcps_rcvshort++; goto fail; } } break; case IPPROTO_UDP: if (iplen < iphlen + sizeof(struct udphdr)) { ++udp_stat.udps_hdrops; goto fail; } if (m->m_len < hoff + iphlen + sizeof(struct udphdr)) { m = m_pullup(m, hoff + iphlen + sizeof(struct udphdr)); if (m == NULL) { udp_stat.udps_hdrops++; goto fail; } } break; default: ipcheckonly: if (iplen < iphlen) { ++ipstat.ips_badlen; goto fail; } break; } m->m_flags |= M_LENCHECKED; *mp = m; return TRUE; fail: if (m != NULL) m_freem(m); *mp = NULL; return FALSE; } /* * Assign a protocol processing thread to a packet. The IP header is at * offset (hoff) in the packet (i.e. the mac header might still be intact). * * This function can blow away the mbuf if the packet is malformed. */ void ip_hashfn(struct mbuf **mptr, int hoff) { struct ip *ip; int iphlen; struct tcphdr *th; struct udphdr *uh; struct mbuf *m; int hash; if (((*mptr)->m_flags & M_LENCHECKED) == 0) { if (!ip_lengthcheck(mptr, hoff)) return; } m = *mptr; ip = mtodoff(m, struct ip *, hoff); iphlen = ip->ip_hl << 2; if (ip->ip_off & htons(IP_MF | IP_OFFMASK)) { hash = toeplitz_hash(toeplitz_rawhash_addr( ip->ip_src.s_addr, ip->ip_dst.s_addr)); goto back; } switch (ip->ip_p) { case IPPROTO_TCP: th = (struct tcphdr *)((caddr_t)ip + iphlen); hash = INP_MPORT_HASH_TCP(ip->ip_src.s_addr, ip->ip_dst.s_addr, th->th_sport, th->th_dport); break; case IPPROTO_UDP: uh = (struct udphdr *)((caddr_t)ip + iphlen); hash = INP_MPORT_HASH_UDP(ip->ip_src.s_addr, ip->ip_dst.s_addr, uh->uh_sport, uh->uh_dport); break; default: hash = 0; break; } back: m_sethash(m, hash); } /* * Verify and adjust the hash value of the packet. * * Unlike ip_hashfn(), the packet content is not accessed. The packet info * (pi) and the hash of the packet (m_pkthdr.hash) is used instead. * * Caller has already made sure that m_pkthdr.hash is valid, i.e. m_flags * has M_HASH set. */ void ip_hashcheck(struct mbuf *m, const struct pktinfo *pi) { KASSERT((m->m_flags & M_HASH), ("no valid packet hash")); switch (pi->pi_l3proto) { case IPPROTO_TCP: case IPPROTO_UDP: break; default: /* Let software calculate the hash */ m->m_flags &= ~M_HASH; break; } } /* * This is used to map a socket to a message port for sendmsg() and friends. * It is not called for any other purpose. In the case of TCP we just return * the port already installed in the socket. */ lwkt_port_t tcp_soport(struct socket *so, struct sockaddr *nam, struct mbuf **dummy __unused) { return(so->so_port); } /* * Used to route icmp messages to the proper protocol thread for ctlinput * operation. */ lwkt_port_t tcp_ctlport(int cmd, struct sockaddr *sa, void *vip, int *cpuid) { struct ip *ip = vip; inp_notify_t notify; int arg; notify = tcp_get_inpnotify(cmd, sa, &arg, &ip, cpuid); if (notify == NULL) return NULL; if (*cpuid == netisr_ncpus) { /* * Go through all effective netisr CPUs. * * A new message will be allocated later to save necessary * information and will be forwarded to all network protocol * threads in the following way: * * (the the thread owns the msgport that we return here) * netisr0 <--+ * | | * | | * | | * +-------+ * sendmsg * [msg is kmalloc()ed] * * * Later on, when the msg is received by netisr0: * * forwardmsg forwardmsg * netisr0 ---------> netisr1 ---------> netisrN * [msg is kfree()ed] */ return netisr_cpuport(0); } else { return netisr_cpuport(*cpuid); } } lwkt_port_t tcp_addrport(in_addr_t faddr, in_port_t fport, in_addr_t laddr, in_port_t lport) { return(netisr_cpuport(tcp_addrcpu(faddr, fport, laddr, lport))); } lwkt_port_t tcp_addrport0(void) { return(netisr_cpuport(0)); } lwkt_port_t udp_addrport(in_addr_t faddr, in_port_t fport, in_addr_t laddr, in_port_t lport) { return(netisr_cpuport(udp_addrcpu(faddr, fport, laddr, lport))); } /* * Used to route icmp messages to the proper protocol thread for ctlinput * operation. */ lwkt_port_t udp_ctlport(int cmd, struct sockaddr *sa, void *vip, int *cpuid) { struct ip *ip = vip; inp_notify_t notify; notify = udp_get_inpnotify(cmd, sa, &ip, cpuid); if (notify == NULL) return NULL; if (*cpuid == netisr_ncpus) { /* * Go through all effective netisr CPUs. * * See the comment in tcp_ctlport. */ return netisr_cpuport(0); } else { return netisr_cpuport(*cpuid); } } static __inline struct lwkt_port * inp_initport(void) { int cpu = mycpuid; if (cpu < netisr_ncpus) { return netisr_cpuport(cpu); } else { return netisr_cpuport( ((initport_indices[cpu].port_index++) + (uint32_t)cpu) % netisr_ncpus); } } struct lwkt_port * tcp_initport(void) { return inp_initport(); } struct lwkt_port * udp_initport(void) { return inp_initport(); } |