VirtualBox

source: vbox/trunk/src/VBox/Devices/Network/slirp/tcp_subr.c@ 34244

Last change on this file since 34244 was 34103, checked in by vboxsync, 14 years ago

NAT: (debug) logging fixes

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 17.7 KB
Line 
1/* $Id: tcp_subr.c 34103 2010-11-16 11:18:55Z vboxsync $ */
2/** @file
3 * NAT - TCP support.
4 */
5
6/*
7 * Copyright (C) 2006-2010 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18/*
19 * This code is based on:
20 *
21 * Copyright (c) 1982, 1986, 1988, 1990, 1993
22 * The Regents of the University of California. All rights reserved.
23 *
24 * Redistribution and use in source and binary forms, with or without
25 * modification, are permitted provided that the following conditions
26 * are met:
27 * 1. Redistributions of source code must retain the above copyright
28 * notice, this list of conditions and the following disclaimer.
29 * 2. Redistributions in binary form must reproduce the above copyright
30 * notice, this list of conditions and the following disclaimer in the
31 * documentation and/or other materials provided with the distribution.
32 * 3. All advertising materials mentioning features or use of this software
33 * must display the following acknowledgement:
34 * This product includes software developed by the University of
35 * California, Berkeley and its contributors.
36 * 4. Neither the name of the University nor the names of its contributors
37 * may be used to endorse or promote products derived from this software
38 * without specific prior written permission.
39 *
40 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
41 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
44 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50 * SUCH DAMAGE.
51 *
52 * @(#)tcp_subr.c 8.1 (Berkeley) 6/10/93
53 * tcp_subr.c,v 1.5 1994/10/08 22:39:58 phk Exp
54 */
55
56/*
57 * Changes and additions relating to SLiRP
58 * Copyright (c) 1995 Danny Gasparovski.
59 *
60 * Please read the file COPYRIGHT for the
61 * terms and conditions of the copyright.
62 */
63
64#define WANT_SYS_IOCTL_H
65#include <slirp.h>
66
67
68/*
69 * Tcp initialization
70 */
71void
72tcp_init(PNATState pData)
73{
74 tcp_iss = 1; /* wrong */
75 tcb.so_next = tcb.so_prev = &tcb;
76 tcp_last_so = &tcb;
77 tcp_reass_maxqlen = 48;
78 tcp_reass_maxseg = 256;
79}
80
81/*
82 * Create template to be used to send tcp packets on a connection.
83 * Call after host entry created, fills
84 * in a skeletal tcp/ip header, minimizing the amount of work
85 * necessary when the connection is used.
86 */
87/* struct tcpiphdr * */
88void
89tcp_template(struct tcpcb *tp)
90{
91 struct socket *so = tp->t_socket;
92 register struct tcpiphdr *n = &tp->t_template;
93
94 memset(n->ti_x1, 0, 9);
95 n->ti_pr = IPPROTO_TCP;
96 n->ti_len = RT_H2N_U16(sizeof (struct tcpiphdr) - sizeof (struct ip));
97 n->ti_src = so->so_faddr;
98 n->ti_dst = so->so_laddr;
99 n->ti_sport = so->so_fport;
100 n->ti_dport = so->so_lport;
101
102 n->ti_seq = 0;
103 n->ti_ack = 0;
104 n->ti_x2 = 0;
105 n->ti_off = 5;
106 n->ti_flags = 0;
107 n->ti_win = 0;
108 n->ti_sum = 0;
109 n->ti_urp = 0;
110}
111
112/*
113 * Send a single message to the TCP at address specified by
114 * the given TCP/IP header. If m == 0, then we make a copy
115 * of the tcpiphdr at ti and send directly to the addressed host.
116 * This is used to force keep alive messages out using the TCP
117 * template for a connection tp->t_template. If flags are given
118 * then we send a message back to the TCP which originated the
119 * segment ti, and discard the mbuf containing it and any other
120 * attached mbufs.
121 *
122 * In any case the ack and sequence number of the transmitted
123 * segment are as specified by the parameters.
124 */
125void
126tcp_respond(PNATState pData, struct tcpcb *tp, struct tcpiphdr *ti, struct mbuf *m, tcp_seq ack, tcp_seq seq, int flags)
127{
128 register int tlen;
129 int win = 0;
130
131 LogFlow(("tcp_respond: tp = %lx, ti = %lx, m = %lx, ack = %u, seq = %u, flags = %x\n",
132 (long)tp, (long)ti, (long)m, ack, seq, flags));
133
134 if (tp)
135 win = sbspace(&tp->t_socket->so_rcv);
136 if (m == 0)
137 {
138 if ((m = m_gethdr(pData, M_DONTWAIT, MT_HEADER)) == NULL)
139 return;
140#ifdef TCP_COMPAT_42
141 tlen = 1;
142#else
143 tlen = 0;
144#endif
145 m->m_data += if_maxlinkhdr;
146 m->m_pkthdr.header = mtod(m, void *);
147 *mtod(m, struct tcpiphdr *) = *ti;
148 ti = mtod(m, struct tcpiphdr *);
149 flags = TH_ACK;
150 }
151 else
152 {
153 /*
154 * ti points into m so the next line is just making
155 * the mbuf point to ti
156 */
157 m->m_data = (caddr_t)ti;
158
159 m->m_len = sizeof (struct tcpiphdr);
160 tlen = 0;
161#define xchg(a,b,type) { type t; t = a; a = b; b = t; }
162 xchg(ti->ti_dst.s_addr, ti->ti_src.s_addr, u_int32_t);
163 xchg(ti->ti_dport, ti->ti_sport, u_int16_t);
164#undef xchg
165 }
166 ti->ti_len = RT_H2N_U16((u_short)(sizeof (struct tcphdr) + tlen));
167 tlen += sizeof (struct tcpiphdr);
168 m->m_len = tlen;
169
170 memset(ti->ti_x1, 0, 9);
171 ti->ti_seq = RT_H2N_U32(seq);
172 ti->ti_ack = RT_H2N_U32(ack);
173 ti->ti_x2 = 0;
174 ti->ti_off = sizeof (struct tcphdr) >> 2;
175 ti->ti_flags = flags;
176 if (tp)
177 ti->ti_win = RT_H2N_U16((u_int16_t) (win >> tp->rcv_scale));
178 else
179 ti->ti_win = RT_H2N_U16((u_int16_t)win);
180 ti->ti_urp = 0;
181 ti->ti_sum = 0;
182 ti->ti_sum = cksum(m, tlen);
183 ((struct ip *)ti)->ip_len = tlen;
184
185 if(flags & TH_RST)
186 ((struct ip *)ti)->ip_ttl = MAXTTL;
187 else
188 ((struct ip *)ti)->ip_ttl = ip_defttl;
189
190 (void) ip_output(pData, (struct socket *)0, m);
191}
192
193/*
194 * Create a new TCP control block, making an
195 * empty reassembly queue and hooking it to the argument
196 * protocol control block.
197 */
198struct tcpcb *
199tcp_newtcpcb(PNATState pData, struct socket *so)
200{
201 register struct tcpcb *tp;
202
203 tp = (struct tcpcb *)RTMemAllocZ(sizeof(*tp));
204 if (tp == NULL)
205 return ((struct tcpcb *)0);
206
207 tp->t_maxseg = tcp_mssdflt;
208
209 tp->t_flags = tcp_do_rfc1323 ? (TF_REQ_SCALE|TF_REQ_TSTMP) : 0;
210 tp->t_socket = so;
211
212 /*
213 * Init srtt to TCPTV_SRTTBASE (0), so we can tell that we have no
214 * rtt estimate. Set rttvar so that srtt + 2 * rttvar gives
215 * reasonable initial retransmit time.
216 */
217 tp->t_srtt = TCPTV_SRTTBASE;
218 tp->t_rttvar = tcp_rttdflt * PR_SLOWHZ << 2;
219 tp->t_rttmin = TCPTV_MIN;
220
221 TCPT_RANGESET(tp->t_rxtcur,
222 ((TCPTV_SRTTBASE >> 2) + (TCPTV_SRTTDFLT << 2)) >> 1,
223 TCPTV_MIN, TCPTV_REXMTMAX);
224
225 tp->snd_cwnd = TCP_MAXWIN << TCP_MAX_WINSHIFT;
226 tp->snd_ssthresh = TCP_MAXWIN << TCP_MAX_WINSHIFT;
227 tp->t_state = TCPS_CLOSED;
228
229 so->so_tcpcb = tp;
230
231 return (tp);
232}
233
234/*
235 * Drop a TCP connection, reporting
236 * the specified error. If connection is synchronized,
237 * then send a RST to peer.
238 */
239struct tcpcb *tcp_drop(PNATState pData, struct tcpcb *tp, int err)
240{
241/* tcp_drop(tp, errno)
242 register struct tcpcb *tp;
243 int errno;
244{
245*/
246 LogFlow(("tcp_drop: tp = %lx, errno = %d\n", (long)tp, errno));
247
248 if (TCPS_HAVERCVDSYN(tp->t_state))
249 {
250 tp->t_state = TCPS_CLOSED;
251 (void) tcp_output(pData, tp);
252 tcpstat.tcps_drops++;
253 }
254 else
255 tcpstat.tcps_conndrops++;
256#if 0
257 if (errno == ETIMEDOUT && tp->t_softerror)
258 errno = tp->t_softerror;
259
260 so->so_error = errno;
261#endif
262 return (tcp_close(pData, tp));
263}
264
265/*
266 * Close a TCP control block:
267 * discard all space held by the tcp
268 * discard internet protocol block
269 * wake up any sleepers
270 */
271struct tcpcb *
272tcp_close(PNATState pData, register struct tcpcb *tp)
273{
274 struct socket *so = tp->t_socket;
275 struct socket *so_next, *so_prev;
276
277 struct tseg_qent *te = NULL;
278 LogFlow(("tcp_close: tp = %lx\n", (long)tp));
279 so_next = so_prev = NULL;
280 /*XXX: freeing the reassembly queue */
281 while (!LIST_EMPTY(&tp->t_segq))
282 {
283 te = LIST_FIRST(&tp->t_segq);
284 LIST_REMOVE(te, tqe_q);
285 m_freem(pData, te->tqe_m);
286 RTMemFree(te);
287 tcp_reass_qsize--;
288 }
289 RTMemFree(tp);
290 so->so_tcpcb = 0;
291 soisfdisconnected(so);
292 /* clobber input socket cache if we're closing the cached connection */
293 if (so == tcp_last_so)
294 tcp_last_so = &tcb;
295 closesocket(so->s);
296 /* Avoid double free if the socket is listening and therefore doesn't have
297 * any sbufs reserved. */
298 if (!(so->so_state & SS_FACCEPTCONN))
299 {
300#ifndef VBOX_WITH_SLIRP_BSD_SBUF
301 sbfree(&so->so_rcv);
302 sbfree(&so->so_snd);
303#else
304 sbuf_delete(&so->so_rcv);
305 sbuf_delete(&so->so_snd);
306#endif
307 }
308 sofree(pData, so);
309 SOCKET_UNLOCK(so);
310 tcpstat.tcps_closed++;
311 return ((struct tcpcb *)0);
312}
313
314void
315tcp_drain()
316{
317 /* XXX */
318}
319
320/*
321 * When a source quench is received, close congestion window
322 * to one segment. We will gradually open it again as we proceed.
323 */
324
325#if 0
326
327void
328tcp_quench(i, int errno)
329{
330 struct tcpcb *tp = intotcpcb(inp);
331
332 if (tp)
333 tp->snd_cwnd = tp->t_maxseg;
334}
335
336#endif
337
338/*
339 * TCP protocol interface to socket abstraction.
340 */
341
342/*
343 * User issued close, and wish to trail through shutdown states:
344 * if never received SYN, just forget it. If got a SYN from peer,
345 * but haven't sent FIN, then go to FIN_WAIT_1 state to send peer a FIN.
346 * If already got a FIN from peer, then almost done; go to LAST_ACK
347 * state. In all other cases, have already sent FIN to peer (e.g.
348 * after PRU_SHUTDOWN), and just have to play tedious game waiting
349 * for peer to send FIN or not respond to keep-alives, etc.
350 * We can let the user exit from the close as soon as the FIN is acked.
351 */
352void
353tcp_sockclosed(PNATState pData, struct tcpcb *tp)
354{
355 LogFlow(("tcp_sockclosed: tp = %lx\n", (long)tp));
356
357 switch (tp->t_state)
358 {
359 case TCPS_CLOSED:
360 case TCPS_LISTEN:
361 case TCPS_SYN_SENT:
362 tp->t_state = TCPS_CLOSED;
363 tp = tcp_close(pData, tp);
364 break;
365
366 case TCPS_SYN_RECEIVED:
367 case TCPS_ESTABLISHED:
368 tp->t_state = TCPS_FIN_WAIT_1;
369 break;
370
371 case TCPS_CLOSE_WAIT:
372 tp->t_state = TCPS_LAST_ACK;
373 break;
374 }
375/* soisfdisconnecting(tp->t_socket); */
376 if ( tp
377 && tp->t_state >= TCPS_FIN_WAIT_2)
378 soisfdisconnected(tp->t_socket);
379 /*
380 * (vasily) there're situations when the FIN or FIN,ACK are lost (Windows host)
381 * and retransmitting keeps VBox busy on sending closing sequences *very* frequent,
382 * easting a lot of CPU. To avoid this we don't sent on sockets marked as closed
383 * (see slirp.c for details about setting so_close member).
384 */
385 if ( tp
386 && tp->t_socket
387 && !tp->t_socket->so_close)
388 tcp_output(pData, tp);
389}
390
391/*
392 * Connect to a host on the Internet
393 * Called by tcp_input
394 * Only do a connect, the tcp fields will be set in tcp_input
395 * return 0 if there's a result of the connect,
396 * else return -1 means we're still connecting
397 * The return value is almost always -1 since the socket is
398 * nonblocking. Connect returns after the SYN is sent, and does
399 * not wait for ACK+SYN.
400 */
401int tcp_fconnect(PNATState pData, struct socket *so)
402{
403 int ret = 0;
404
405 LogFlow(("tcp_fconnect: so = %lx\n", (long)so));
406
407 if ((ret = so->s = socket(AF_INET, SOCK_STREAM, 0)) >= 0)
408 {
409 int opt, s = so->s;
410 struct sockaddr_in addr;
411
412 fd_nonblock(s);
413 opt = 1;
414 setsockopt(s, SOL_SOCKET, SO_REUSEADDR, (char *)&opt, sizeof(opt));
415 opt = 1;
416 setsockopt(s, SOL_SOCKET, SO_OOBINLINE, (char *)&opt, sizeof(opt));
417
418 addr.sin_family = AF_INET;
419 if ((so->so_faddr.s_addr & RT_H2N_U32(pData->netmask)) == pData->special_addr.s_addr)
420 {
421 /* It's an alias */
422 switch(RT_N2H_U32(so->so_faddr.s_addr) & ~pData->netmask)
423 {
424 case CTL_DNS:
425 case CTL_ALIAS:
426 default:
427 addr.sin_addr = loopback_addr;
428 break;
429 }
430 }
431 else
432 addr.sin_addr = so->so_faddr;
433 addr.sin_port = so->so_fport;
434
435 Log2((" connect()ing, addr.sin_port=%d, addr.sin_addr.s_addr=%.16s\n",
436 RT_N2H_U16(addr.sin_port), inet_ntoa(addr.sin_addr)));
437 /* We don't care what port we get */
438 ret = connect(s,(struct sockaddr *)&addr,sizeof (addr));
439
440 /*
441 * If it's not in progress, it failed, so we just return 0,
442 * without clearing SS_NOFDREF
443 */
444 soisfconnecting(so);
445 }
446
447 return(ret);
448}
449
450/*
451 * Accept the socket and connect to the local-host
452 *
453 * We have a problem. The correct thing to do would be
454 * to first connect to the local-host, and only if the
455 * connection is accepted, then do an accept() here.
456 * But, a) we need to know who's trying to connect
457 * to the socket to be able to SYN the local-host, and
458 * b) we are already connected to the foreign host by
459 * the time it gets to accept(), so... We simply accept
460 * here and SYN the local-host.
461 */
462void
463tcp_connect(PNATState pData, struct socket *inso)
464{
465 struct socket *so;
466 struct sockaddr_in addr;
467 socklen_t addrlen = sizeof(struct sockaddr_in);
468 struct tcpcb *tp;
469 int s, opt;
470 int status;
471 socklen_t optlen;
472 static int cVerbose = 1;
473
474 LogFlow(("tcp_connect: inso = %lx\n", (long)inso));
475
476 /*
477 * If it's an SS_ACCEPTONCE socket, no need to socreate()
478 * another socket, just use the accept() socket.
479 */
480 if (inso->so_state & SS_FACCEPTONCE)
481 {
482 /* FACCEPTONCE already have a tcpcb */
483 so = inso;
484 }
485 else
486 {
487 if ((so = socreate()) == NULL)
488 {
489 /* If it failed, get rid of the pending connection */
490 closesocket(accept(inso->s,(struct sockaddr *)&addr,&addrlen));
491 return;
492 }
493 if (tcp_attach(pData, so) < 0)
494 {
495 RTMemFree(so); /* NOT sofree */
496 return;
497 }
498 so->so_laddr = inso->so_laddr;
499 so->so_lport = inso->so_lport;
500 so->so_la = inso->so_la;
501 }
502
503 (void) tcp_mss(pData, sototcpcb(so), 0);
504
505 fd_nonblock(inso->s);
506 if ((s = accept(inso->s,(struct sockaddr *)&addr,&addrlen)) < 0)
507 {
508 tcp_close(pData, sototcpcb(so)); /* This will sofree() as well */
509 return;
510 }
511 fd_nonblock(s);
512 opt = 1;
513 setsockopt(s, SOL_SOCKET, SO_REUSEADDR,(char *)&opt, sizeof(int));
514 opt = 1;
515 setsockopt(s, SOL_SOCKET, SO_OOBINLINE,(char *)&opt, sizeof(int));
516#if 0
517 opt = 1;
518 setsockopt(s, IPPROTO_TCP, TCP_NODELAY,(char *)&opt, sizeof(int));
519#endif
520
521 optlen = sizeof(int);
522 status = getsockopt(s, SOL_SOCKET, SO_RCVBUF, (char *)&opt, &optlen);
523 if (status < 0)
524 {
525 LogRel(("NAT: Error(%d) while getting RCV capacity\n", errno));
526 goto no_sockopt;
527 }
528 if (cVerbose > 0)
529 LogRel(("NAT: old socket rcv size: %dKB\n", opt / 1024));
530 /* @todo (r-vvl) make it configurable (via extra data) */
531 opt = pData->socket_rcv;
532 status = setsockopt(s, SOL_SOCKET, SO_RCVBUF, (char *)&opt, sizeof(int));
533 if (status < 0)
534 {
535 LogRel(("NAT: Error(%d) while setting RCV capacity to (%d)\n", errno, opt));
536 goto no_sockopt;
537 }
538 optlen = sizeof(int);
539 status = getsockopt(s, SOL_SOCKET, SO_SNDBUF, (char *)&opt, &optlen);
540 if (status < 0)
541 {
542 LogRel(("NAT: Error(%d) while getting SND capacity\n", errno));
543 goto no_sockopt;
544 }
545 if (cVerbose > 0)
546 LogRel(("NAT: old socket snd size: %dKB\n", opt / 1024));
547 opt = pData->socket_rcv;
548 status = setsockopt(s, SOL_SOCKET, SO_SNDBUF, (char *)&opt, sizeof(int));
549 if (status < 0)
550 {
551 LogRel(("NAT: Error(%d) while setting SND capacity to (%d)\n", errno, opt));
552 goto no_sockopt;
553 }
554 if (cVerbose > 0)
555 cVerbose--;
556
557 no_sockopt:
558 so->so_fport = addr.sin_port;
559 so->so_faddr = addr.sin_addr;
560 /* Translate connections from localhost to the real hostname */
561 if (so->so_faddr.s_addr == 0 || so->so_faddr.s_addr == loopback_addr.s_addr)
562 so->so_faddr = alias_addr;
563
564 /* Close the accept() socket, set right state */
565 if (inso->so_state & SS_FACCEPTONCE)
566 {
567 closesocket(so->s); /* If we only accept once, close the accept() socket */
568 so->so_state = SS_NOFDREF; /* Don't select it yet, even though we have an FD */
569 /* if it's not FACCEPTONCE, it's already NOFDREF */
570 }
571 so->s = s;
572
573 tp = sototcpcb(so);
574
575 tcp_template(tp);
576
577 /* Compute window scaling to request. */
578/* while (tp->request_r_scale < TCP_MAX_WINSHIFT
579 * && (TCP_MAXWIN << tp->request_r_scale) < so->so_rcv.sb_hiwat)
580 * tp->request_r_scale++;
581 */
582
583/* soisconnecting(so); */ /* NOFDREF used instead */
584 tcpstat.tcps_connattempt++;
585
586 tp->t_state = TCPS_SYN_SENT;
587 tp->t_timer[TCPT_KEEP] = TCPTV_KEEP_INIT;
588 tp->iss = tcp_iss;
589 tcp_iss += TCP_ISSINCR/2;
590 tcp_sendseqinit(tp);
591 tcp_output(pData, tp);
592}
593
594/*
595 * Attach a TCPCB to a socket.
596 */
597int
598tcp_attach(PNATState pData, struct socket *so)
599{
600 if ((so->so_tcpcb = tcp_newtcpcb(pData, so)) == NULL)
601 return -1;
602
603 SOCKET_LOCK_CREATE(so);
604 QSOCKET_LOCK(tcb);
605 insque(pData, so, &tcb);
606 NSOCK_INC();
607 QSOCKET_UNLOCK(tcb);
608 return 0;
609}
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette