04597d92dbb29cbf29fed18012c1b5ac22c054f4
[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  * $DragonFly: src/sys/netinet/ip_demux.c,v 1.36 2007/11/26 11:43:09 sephe Exp $
34  */
35
36 #include "opt_inet.h"
37
38 #include <sys/param.h>
39 #include <sys/systm.h>
40 #include <sys/kernel.h>
41 #include <sys/socket.h>
42 #include <sys/socketvar.h>
43 #include <sys/thread.h>
44 #include <sys/sysctl.h>
45 #include <sys/globaldata.h>
46
47 #include <net/if.h>
48 #include <net/netisr.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 extern struct thread netisr_cpu[];
63
64 static struct thread tcp_thread[MAXCPU];
65 static struct thread udp_thread[MAXCPU];
66
67 static __inline int
68 INP_MPORT_HASH(in_addr_t faddr, in_addr_t laddr,
69                in_port_t fport, in_port_t lport)
70 {
71         /*
72          * Use low order bytes.
73          */
74
75 #if (BYTE_ORDER == LITTLE_ENDIAN)
76         KASSERT(ncpus2 < 256, ("need different hash function"));  /* XXX JH */
77         return (((faddr >> 24) ^ (fport >> 8) ^ (laddr >> 24) ^ (lport >> 8)) &
78                 ncpus2_mask);
79 #else
80         return ((faddr ^ fport ^ laddr ^ lport) & ncpus2_mask);
81 #endif
82 }
83
84 boolean_t
85 ip_lengthcheck(struct mbuf **mp)
86 {
87         struct mbuf *m = *mp;
88         struct ip *ip;
89         int iphlen, iplen;
90         struct tcphdr *th;
91         int thoff;                              /* TCP data offset */
92
93         /* The packet must be at least the size of an IP header. */
94         if (m->m_pkthdr.len < sizeof(struct ip)) {
95                 ipstat.ips_tooshort++;
96                 goto fail;
97         }
98
99         /* The fixed IP header must reside completely in the first mbuf. */
100         if (m->m_len < sizeof(struct ip)) {
101                 m = m_pullup(m, sizeof(struct ip));
102                 if (m == NULL) {
103                         ipstat.ips_toosmall++;
104                         goto fail;
105                 }
106         }
107
108         ip = mtod(m, struct ip *);
109
110         /* Bound check the packet's stated IP header length. */
111         iphlen = ip->ip_hl << 2;
112         if (iphlen < sizeof(struct ip)) {       /* minimum header length */
113                 ipstat.ips_badhlen++;
114                 goto fail;
115         }
116
117         /* The full IP header must reside completely in the one mbuf. */
118         if (m->m_len < iphlen) {
119                 m = m_pullup(m, iphlen);
120                 if (m == NULL) {
121                         ipstat.ips_badhlen++;
122                         goto fail;
123                 }
124                 ip = mtod(m, struct ip *);
125         }
126
127         iplen = ntohs(ip->ip_len);
128
129         /*
130          * Fragments other than the first fragment don't have much
131          * length information.
132          */
133         if (ntohs(ip->ip_off) & IP_OFFMASK)
134                 goto ipcheckonly;
135
136         /*
137          * The TCP/IP or UDP/IP header must be entirely contained within
138          * the first fragment of a packet.  Packet filters will break if they
139          * aren't.
140          *
141          * Since the packet will be trimmed to ip_len we must also make sure
142          * the potentially trimmed down length is still sufficient to hold
143          * the header(s).
144          */
145         switch (ip->ip_p) {
146         case IPPROTO_TCP:
147                 if (iplen < iphlen + sizeof(struct tcphdr)) {
148                         ++tcpstat.tcps_rcvshort;
149                         goto fail;
150                 }
151                 if (m->m_len < iphlen + sizeof(struct tcphdr)) {
152                         m = m_pullup(m, iphlen + sizeof(struct tcphdr));
153                         if (m == NULL) {
154                                 tcpstat.tcps_rcvshort++;
155                                 goto fail;
156                         }
157                         ip = mtod(m, struct ip *);
158                 }
159                 th = (struct tcphdr *)((caddr_t)ip + iphlen);
160                 thoff = th->th_off << 2;
161                 if (thoff < sizeof(struct tcphdr) ||
162                     thoff + iphlen > ntohs(ip->ip_len)) {
163                         tcpstat.tcps_rcvbadoff++;
164                         goto fail;
165                 }
166                 if (m->m_len < iphlen + thoff) {
167                         m = m_pullup(m, iphlen + thoff);
168                         if (m == NULL) {
169                                 tcpstat.tcps_rcvshort++;
170                                 goto fail;
171                         }
172                 }
173                 break;
174         case IPPROTO_UDP:
175                 if (iplen < iphlen + sizeof(struct udphdr)) {
176                         ++udpstat.udps_hdrops;
177                         goto fail;
178                 }
179                 if (m->m_len < iphlen + sizeof(struct udphdr)) {
180                         m = m_pullup(m, iphlen + sizeof(struct udphdr));
181                         if (m == NULL) {
182                                 udpstat.udps_hdrops++;
183                                 goto fail;
184                         }
185                 }
186                 break;
187         default:
188 ipcheckonly:
189                 if (iplen < iphlen) {
190                         ++ipstat.ips_badlen;
191                         goto fail;
192                 }
193                 break;
194         }
195
196         *mp = m;
197         return TRUE;
198
199 fail:
200         if (m != NULL)
201                 m_freem(m);
202         *mp = NULL;
203         return FALSE;
204 }
205
206 /*
207  * Map a packet to a protocol processing thread and return the thread's port.
208  * If an error occurs, the passed mbuf will be freed, *mptr will be set
209  * to NULL, and NULL will be returned.  If no error occurs, the passed mbuf
210  * may be modified and a port pointer will be returned.
211  */
212 lwkt_port_t
213 ip_mport(struct mbuf **mptr)
214 {
215         struct ip *ip;
216         int iphlen;
217         struct tcphdr *th;
218         struct udphdr *uh;
219         struct mbuf *m;
220         int thoff;                              /* TCP data offset */
221         lwkt_port_t port;
222         int cpu;
223
224         if (!ip_lengthcheck(mptr))
225                 return (NULL);
226
227         m = *mptr;
228         ip = mtod(m, struct ip *);
229         iphlen = ip->ip_hl << 2;
230
231         /*
232          * XXX generic packet handling defrag on CPU 0 for now.
233          */
234         if (ntohs(ip->ip_off) & (IP_MF | IP_OFFMASK))
235                 return (&netisr_cpu[0].td_msgport);
236
237         switch (ip->ip_p) {
238         case IPPROTO_TCP:
239                 th = (struct tcphdr *)((caddr_t)ip + iphlen);
240                 thoff = th->th_off << 2;
241                 cpu = INP_MPORT_HASH(ip->ip_src.s_addr, ip->ip_dst.s_addr,
242                     th->th_sport, th->th_dport);
243                 port = &tcp_thread[cpu].td_msgport;
244                 break;
245         case IPPROTO_UDP:
246                 uh = (struct udphdr *)((caddr_t)ip + iphlen);
247
248                 if (IN_MULTICAST(ntohl(ip->ip_dst.s_addr)) ||
249                     in_broadcast(ip->ip_dst, m->m_pkthdr.rcvif)) {
250                         cpu = 0;
251                 } else {
252                         cpu = INP_MPORT_HASH(ip->ip_src.s_addr,
253                             ip->ip_dst.s_addr, uh->uh_sport, uh->uh_dport);
254                 }
255                 port = &udp_thread[cpu].td_msgport;
256                 break;
257         default:
258                 port = &netisr_cpu[0].td_msgport;
259                 break;
260         }
261
262         return (port);
263 }
264
265 /*
266  * Map a TCP socket to a protocol processing thread.
267  */
268 lwkt_port_t
269 tcp_soport(struct socket *so, struct sockaddr *nam, int req)
270 {
271         struct inpcb *inp;
272
273         /* The following processing all take place on Protocol Thread 0. */
274         if (req == PRU_BIND || req == PRU_CONNECT || req == PRU_ATTACH ||
275             req == PRU_LISTEN)
276                 return (&tcp_thread[0].td_msgport);
277
278         inp = so->so_pcb;
279         if (!inp)               /* connection reset by peer */
280                 return (&tcp_thread[0].td_msgport);
281
282         /*
283          * Already bound and connected or listening.  For TCP connections,
284          * the (faddr, fport, laddr, lport) association cannot change now.
285          *
286          * Note: T/TCP code needs some reorganization to fit into
287          * this model.  XXX JH
288          *
289          * Rely on type-stable memory and check in protocol handler
290          * to fix race condition here w/ deallocation of inp.  XXX JH
291          */
292         return (&tcp_thread[INP_MPORT_HASH(inp->inp_faddr.s_addr,
293             inp->inp_laddr.s_addr, inp->inp_fport, inp->inp_lport)].td_msgport);
294 }
295
296 lwkt_port_t
297 tcp_addrport(in_addr_t faddr, in_port_t fport, in_addr_t laddr, in_port_t lport)
298 {
299         return (&tcp_thread[tcp_addrcpu(faddr, fport,
300                                         laddr, lport)].td_msgport);
301 }
302
303 /*
304  * Map a UDP socket to a protocol processing thread.
305  */
306 lwkt_port_t
307 udp_soport(struct socket *so, struct sockaddr *nam, int req)
308 {
309         struct inpcb *inp;
310
311         /*
312          * The following processing all take place on Protocol Thread 0:
313          *   only bind() and connect() have a non-null nam parameter
314          *   attach() has a null socket parameter
315          *   Fast and slow timeouts pass in two NULLs
316          */
317         if (nam != NULL || so == NULL)
318                 return (&udp_thread[0].td_msgport);
319
320         inp = so->so_pcb;
321
322         if (IN_MULTICAST(ntohl(inp->inp_laddr.s_addr)))
323                 return (&udp_thread[0].td_msgport);
324
325         /*
326          * Rely on type-stable memory and check in protocol handler
327          * to fix race condition here w/ deallocation of inp.  XXX JH
328          */
329
330         return (&udp_thread[INP_MPORT_HASH(inp->inp_faddr.s_addr,
331             inp->inp_laddr.s_addr, inp->inp_fport, inp->inp_lport)].td_msgport);
332 }
333
334 /*
335  * Map a network address to a processor.
336  */
337 int
338 tcp_addrcpu(in_addr_t faddr, in_port_t fport, in_addr_t laddr, in_port_t lport)
339 {
340         return (INP_MPORT_HASH(faddr, laddr, fport, lport));
341 }
342
343 int
344 udp_addrcpu(in_addr_t faddr, in_port_t fport, in_addr_t laddr, in_port_t lport)
345 {
346         if (IN_MULTICAST(ntohl(laddr)))
347                 return (0);
348         else
349                 return (INP_MPORT_HASH(faddr, laddr, fport, lport));
350 }
351
352 /*
353  * Return LWKT port for cpu.
354  */
355 lwkt_port_t
356 tcp_cport(int cpu)
357 {
358         return (&tcp_thread[cpu].td_msgport);
359 }
360
361 void
362 tcp_thread_init(void)
363 {
364         int cpu;
365
366         for (cpu = 0; cpu < ncpus2; cpu++) {
367                 lwkt_create(tcpmsg_service_loop, NULL, NULL,
368                         &tcp_thread[cpu], 0, cpu, "tcp_thread %d", cpu);
369                 netmsg_service_port_init(&tcp_thread[cpu].td_msgport);
370         }
371 }
372
373 void
374 udp_thread_init(void)
375 {
376         int cpu;
377
378         for (cpu = 0; cpu < ncpus2; cpu++) {
379                 lwkt_create(netmsg_service_loop, NULL, NULL,
380                         &udp_thread[cpu], 0, cpu, "udp_thread %d", cpu);
381                 netmsg_service_port_init(&udp_thread[cpu].td_msgport);
382         }
383 }