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