2 * Copyright (c) 2000-2011 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
29 * Copyright (c) 1982, 1986, 1988, 1993
30 * The Regents of the University of California. All rights reserved.
32 * Redistribution and use in source and binary forms, with or without
33 * modification, are permitted provided that the following conditions
35 * 1. Redistributions of source code must retain the above copyright
36 * notice, this list of conditions and the following disclaimer.
37 * 2. Redistributions in binary form must reproduce the above copyright
38 * notice, this list of conditions and the following disclaimer in the
39 * documentation and/or other materials provided with the distribution.
40 * 3. All advertising materials mentioning features or use of this software
41 * must display the following acknowledgement:
42 * This product includes software developed by the University of
43 * California, Berkeley and its contributors.
44 * 4. Neither the name of the University nor the names of its contributors
45 * may be used to endorse or promote products derived from this software
46 * without specific prior written permission.
48 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
49 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
50 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
51 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
52 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
53 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
54 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
55 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
56 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
57 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
60 * From: @(#)tcp_usrreq.c 8.2 (Berkeley) 1/3/94
61 * $FreeBSD: src/sys/netinet/tcp_usrreq.c,v 1.51.2.9 2001/08/22 00:59:12 silby Exp $
65 #include <sys/param.h>
66 #include <sys/systm.h>
67 #include <sys/kernel.h>
68 #include <sys/sysctl.h>
71 #include <sys/domain.h>
73 #include <sys/socket.h>
74 #include <sys/socketvar.h>
75 #include <sys/protosw.h>
78 #include <net/route.h>
79 #include <net/ntstat.h>
81 #include <netinet/in.h>
82 #include <netinet/in_systm.h>
84 #include <netinet/ip6.h>
86 #include <netinet/in_pcb.h>
88 #include <netinet6/in6_pcb.h>
90 #include <netinet/in_var.h>
91 #include <netinet/ip_var.h>
93 #include <netinet6/ip6_var.h>
95 #include <netinet/tcp.h>
96 #include <netinet/tcp_fsm.h>
97 #include <netinet/tcp_seq.h>
98 #include <netinet/tcp_timer.h>
99 #include <netinet/tcp_var.h>
100 #include <netinet/tcpip.h>
102 #include <netinet/tcp_debug.h>
106 #include <netinet6/ipsec.h>
109 void tcp_fill_info(struct tcpcb
*, struct tcp_info
*);
110 errno_t
tcp_fill_info_for_info_tuple(struct info_tuple
*, struct tcp_info
*);
112 int tcp_sysctl_info(struct sysctl_oid
*, void *, int , struct sysctl_req
*);
115 * TCP protocol interface to socket abstraction.
117 extern char *tcpstates
[]; /* XXX ??? */
119 static int tcp_attach(struct socket
*, struct proc
*);
120 static int tcp_connect(struct tcpcb
*, struct sockaddr
*, struct proc
*);
122 static int tcp6_connect(struct tcpcb
*, struct sockaddr
*, struct proc
*);
124 static struct tcpcb
*
125 tcp_disconnect(struct tcpcb
*);
126 static struct tcpcb
*
127 tcp_usrclosed(struct tcpcb
*);
129 __private_extern__
int tcp_win_scale
= 3;
130 SYSCTL_INT(_net_inet_tcp
, OID_AUTO
, win_scale_factor
, CTLFLAG_RW
| CTLFLAG_LOCKED
,
131 &tcp_win_scale
, 0, "Window scaling factor");
133 static u_int32_t tcps_in_sw_cksum
;
134 SYSCTL_UINT(_net_inet_tcp
, OID_AUTO
, in_sw_cksum
, CTLFLAG_RD
| CTLFLAG_LOCKED
,
135 &tcps_in_sw_cksum
, 0,
136 "Number of received packets checksummed in software");
138 static u_int64_t tcps_in_sw_cksum_bytes
;
139 SYSCTL_QUAD(_net_inet_tcp
, OID_AUTO
, in_sw_cksum_bytes
, CTLFLAG_RD
| CTLFLAG_LOCKED
,
140 &tcps_in_sw_cksum_bytes
,
141 "Amount of received data checksummed in software");
143 static u_int32_t tcps_out_sw_cksum
;
144 SYSCTL_UINT(_net_inet_tcp
, OID_AUTO
, out_sw_cksum
, CTLFLAG_RD
| CTLFLAG_LOCKED
,
145 &tcps_out_sw_cksum
, 0,
146 "Number of transmitted packets checksummed in software");
148 static u_int64_t tcps_out_sw_cksum_bytes
;
149 SYSCTL_QUAD(_net_inet_tcp
, OID_AUTO
, out_sw_cksum_bytes
, CTLFLAG_RD
| CTLFLAG_LOCKED
,
150 &tcps_out_sw_cksum_bytes
,
151 "Amount of transmitted data checksummed in software");
154 #define TCPDEBUG0 int ostate = 0
155 #define TCPDEBUG1() ostate = tp ? tp->t_state : 0
156 #define TCPDEBUG2(req) if (tp && (so->so_options & SO_DEBUG)) \
157 tcp_trace(TA_USER, ostate, tp, 0, 0, req)
161 #define TCPDEBUG2(req)
164 #if CONFIG_USESOCKTHRESHOLD
165 __private_extern__
unsigned int tcp_sockthreshold
= 64;
167 __private_extern__
unsigned int tcp_sockthreshold
= 0;
169 SYSCTL_INT(_net_inet_tcp
, OID_AUTO
, sockthreshold
, CTLFLAG_RW
| CTLFLAG_LOCKED
,
170 &tcp_sockthreshold
, 0, "TCP Socket size increased if less than threshold");
173 SYSCTL_PROC(_net_inet_tcp
, OID_AUTO
, info
, CTLFLAG_RW
| CTLFLAG_LOCKED
| CTLFLAG_ANYBODY
,
174 0 , 0, tcp_sysctl_info
, "S", "TCP info per tuple");
177 * TCP attaches to socket via pru_attach(), reserving space,
178 * and an internet control block.
184 * tcp_attach:??? [IPSEC specific]
187 tcp_usr_attach(struct socket
*so
, __unused
int proto
, struct proc
*p
)
190 struct inpcb
*inp
= sotoinpcb(so
);
191 struct tcpcb
*tp
= 0;
200 error
= tcp_attach(so
, p
);
204 if ((so
->so_options
& SO_LINGER
) && so
->so_linger
== 0)
205 so
->so_linger
= TCP_LINGERTIME
* hz
;
208 TCPDEBUG2(PRU_ATTACH
);
213 * pru_detach() detaches the TCP protocol from the socket.
214 * If the protocol state is non-embryonic, then can't
215 * do this directly: have to initiate a pru_disconnect(),
216 * which may finish later; embryonic TCB's can just
220 tcp_usr_detach(struct socket
*so
)
223 struct inpcb
*inp
= sotoinpcb(so
);
227 if (inp
== 0 || (inp
->inp_state
== INPCB_STATE_DEAD
)) {
228 return EINVAL
; /* XXX */
230 lck_mtx_assert(&((struct inpcb
*)so
->so_pcb
)->inpcb_mtx
, LCK_MTX_ASSERT_OWNED
);
232 /* In case we got disconnected from the peer */
237 calculate_tcp_clock();
239 tp
= tcp_disconnect(tp
);
241 TCPDEBUG2(PRU_DETACH
);
245 #define COMMON_START() TCPDEBUG0; \
247 if (inp == 0 || (inp->inp_state == INPCB_STATE_DEAD)) { \
250 tp = intotcpcb(inp); \
252 calculate_tcp_clock(); \
255 #define COMMON_END(req) out: TCPDEBUG2(req); return error; goto out
259 * Give the socket an address.
262 * EINVAL Invalid argument [COMMON_START]
263 * EAFNOSUPPORT Address family not supported
264 * in_pcbbind:EADDRNOTAVAIL Address not available.
265 * in_pcbbind:EINVAL Invalid argument
266 * in_pcbbind:EAFNOSUPPORT Address family not supported [notdef]
267 * in_pcbbind:EACCES Permission denied
268 * in_pcbbind:EADDRINUSE Address in use
269 * in_pcbbind:EAGAIN Resource unavailable, try again
270 * in_pcbbind:EPERM Operation not permitted
273 tcp_usr_bind(struct socket
*so
, struct sockaddr
*nam
, struct proc
*p
)
276 struct inpcb
*inp
= sotoinpcb(so
);
278 struct sockaddr_in
*sinp
;
282 if (nam
->sa_family
!= 0 && nam
->sa_family
!= AF_INET
) {
283 error
= EAFNOSUPPORT
;
288 * Must check for multicast addresses and disallow binding
291 sinp
= (struct sockaddr_in
*)nam
;
292 if (sinp
->sin_family
== AF_INET
&&
293 IN_MULTICAST(ntohl(sinp
->sin_addr
.s_addr
))) {
294 error
= EAFNOSUPPORT
;
297 error
= in_pcbbind(inp
, nam
, p
);
300 COMMON_END(PRU_BIND
);
306 tcp6_usr_bind(struct socket
*so
, struct sockaddr
*nam
, struct proc
*p
)
309 struct inpcb
*inp
= sotoinpcb(so
);
311 struct sockaddr_in6
*sin6p
;
315 if (nam
->sa_family
!= 0 && nam
->sa_family
!= AF_INET6
) {
316 error
= EAFNOSUPPORT
;
321 * Must check for multicast addresses and disallow binding
324 sin6p
= (struct sockaddr_in6
*)nam
;
325 if (sin6p
->sin6_family
== AF_INET6
&&
326 IN6_IS_ADDR_MULTICAST(&sin6p
->sin6_addr
)) {
327 error
= EAFNOSUPPORT
;
330 inp
->inp_vflag
&= ~INP_IPV4
;
331 inp
->inp_vflag
|= INP_IPV6
;
332 if ((inp
->inp_flags
& IN6P_IPV6_V6ONLY
) == 0) {
333 if (IN6_IS_ADDR_UNSPECIFIED(&sin6p
->sin6_addr
))
334 inp
->inp_vflag
|= INP_IPV4
;
335 else if (IN6_IS_ADDR_V4MAPPED(&sin6p
->sin6_addr
)) {
336 struct sockaddr_in sin
;
338 in6_sin6_2_sin(&sin
, sin6p
);
339 inp
->inp_vflag
|= INP_IPV4
;
340 inp
->inp_vflag
&= ~INP_IPV6
;
341 error
= in_pcbbind(inp
, (struct sockaddr
*)&sin
, p
);
345 error
= in6_pcbbind(inp
, nam
, p
);
348 COMMON_END(PRU_BIND
);
353 * Prepare to accept connections.
356 * EINVAL [COMMON_START]
357 * in_pcbbind:EADDRNOTAVAIL Address not available.
358 * in_pcbbind:EINVAL Invalid argument
359 * in_pcbbind:EAFNOSUPPORT Address family not supported [notdef]
360 * in_pcbbind:EACCES Permission denied
361 * in_pcbbind:EADDRINUSE Address in use
362 * in_pcbbind:EAGAIN Resource unavailable, try again
363 * in_pcbbind:EPERM Operation not permitted
366 tcp_usr_listen(struct socket
*so
, struct proc
*p
)
369 struct inpcb
*inp
= sotoinpcb(so
);
373 if (inp
->inp_lport
== 0)
374 error
= in_pcbbind(inp
, (struct sockaddr
*)0, p
);
376 tp
->t_state
= TCPS_LISTEN
;
377 COMMON_END(PRU_LISTEN
);
382 tcp6_usr_listen(struct socket
*so
, struct proc
*p
)
385 struct inpcb
*inp
= sotoinpcb(so
);
389 if (inp
->inp_lport
== 0) {
390 inp
->inp_vflag
&= ~INP_IPV4
;
391 if ((inp
->inp_flags
& IN6P_IPV6_V6ONLY
) == 0)
392 inp
->inp_vflag
|= INP_IPV4
;
393 error
= in6_pcbbind(inp
, (struct sockaddr
*)0, p
);
396 tp
->t_state
= TCPS_LISTEN
;
397 COMMON_END(PRU_LISTEN
);
402 * Initiate connection to peer.
403 * Create a template for use in transmissions on this connection.
404 * Enter SYN_SENT state, and mark socket as connecting.
405 * Start keep-alive timer, and seed output sequence space.
406 * Send initial segment on connection.
409 tcp_usr_connect(struct socket
*so
, struct sockaddr
*nam
, struct proc
*p
)
412 struct inpcb
*inp
= sotoinpcb(so
);
414 struct sockaddr_in
*sinp
;
419 else if (inp
->inp_state
== INPCB_STATE_DEAD
) {
421 error
= so
->so_error
;
430 calculate_tcp_clock();
432 if (nam
->sa_family
!= 0 && nam
->sa_family
!= AF_INET
) {
433 error
= EAFNOSUPPORT
;
437 * Must disallow TCP ``connections'' to multicast addresses.
439 sinp
= (struct sockaddr_in
*)nam
;
440 if (sinp
->sin_family
== AF_INET
441 && IN_MULTICAST(ntohl(sinp
->sin_addr
.s_addr
))) {
442 error
= EAFNOSUPPORT
;
447 if ((error
= tcp_connect(tp
, nam
, p
)) != 0)
449 error
= tcp_output(tp
);
450 COMMON_END(PRU_CONNECT
);
455 tcp6_usr_connect(struct socket
*so
, struct sockaddr
*nam
, struct proc
*p
)
458 struct inpcb
*inp
= sotoinpcb(so
);
460 struct sockaddr_in6
*sin6p
;
464 if (nam
->sa_family
!= 0 && nam
->sa_family
!= AF_INET6
) {
465 error
= EAFNOSUPPORT
;
470 * Must disallow TCP ``connections'' to multicast addresses.
472 sin6p
= (struct sockaddr_in6
*)nam
;
473 if (sin6p
->sin6_family
== AF_INET6
474 && IN6_IS_ADDR_MULTICAST(&sin6p
->sin6_addr
)) {
475 error
= EAFNOSUPPORT
;
479 if (IN6_IS_ADDR_V4MAPPED(&sin6p
->sin6_addr
)) {
480 struct sockaddr_in sin
;
482 if ((inp
->inp_flags
& IN6P_IPV6_V6ONLY
) != 0)
485 in6_sin6_2_sin(&sin
, sin6p
);
486 inp
->inp_vflag
|= INP_IPV4
;
487 inp
->inp_vflag
&= ~INP_IPV6
;
488 if ((error
= tcp_connect(tp
, (struct sockaddr
*)&sin
, p
)) != 0)
490 error
= tcp_output(tp
);
493 inp
->inp_vflag
&= ~INP_IPV4
;
494 inp
->inp_vflag
|= INP_IPV6
;
495 if ((error
= tcp6_connect(tp
, nam
, p
)) != 0)
497 error
= tcp_output(tp
);
500 COMMON_END(PRU_CONNECT
);
505 * Initiate disconnect from peer.
506 * If connection never passed embryonic stage, just drop;
507 * else if don't need to let data drain, then can just drop anyways,
508 * else have to begin TCP shutdown process: mark socket disconnecting,
509 * drain unread data, state switch to reflect user close, and
510 * send segment (e.g. FIN) to peer. Socket will be really disconnected
511 * when peer sends FIN and acks ours.
513 * SHOULD IMPLEMENT LATER PRU_CONNECT VIA REALLOC TCPCB.
516 tcp_usr_disconnect(struct socket
*so
)
519 struct inpcb
*inp
= sotoinpcb(so
);
522 lck_mtx_assert(&((struct inpcb
*)so
->so_pcb
)->inpcb_mtx
, LCK_MTX_ASSERT_OWNED
);
524 /* In case we got disconnected from the peer */
527 tp
= tcp_disconnect(tp
);
528 COMMON_END(PRU_DISCONNECT
);
532 * Accept a connection. Essentially all the work is
533 * done at higher levels; just return the address
534 * of the peer, storing through addr.
537 tcp_usr_accept(struct socket
*so
, struct sockaddr
**nam
)
540 struct inpcb
*inp
= sotoinpcb(so
);
541 struct tcpcb
*tp
= NULL
;
544 in_setpeeraddr(so
, nam
);
546 if (so
->so_state
& SS_ISDISCONNECTED
) {
547 error
= ECONNABORTED
;
550 if (inp
== 0 || (inp
->inp_state
== INPCB_STATE_DEAD
)) {
556 calculate_tcp_clock();
558 COMMON_END(PRU_ACCEPT
);
563 tcp6_usr_accept(struct socket
*so
, struct sockaddr
**nam
)
566 struct inpcb
*inp
= sotoinpcb(so
);
567 struct tcpcb
*tp
= NULL
;
570 if (so
->so_state
& SS_ISDISCONNECTED
) {
571 error
= ECONNABORTED
;
574 if (inp
== 0 || (inp
->inp_state
== INPCB_STATE_DEAD
)) {
580 calculate_tcp_clock();
582 in6_mapped_peeraddr(so
, nam
);
583 COMMON_END(PRU_ACCEPT
);
588 * Mark the connection as being incapable of further output.
591 * EINVAL [COMMON_START]
592 * tcp_output:EADDRNOTAVAIL
594 * tcp_output:EMSGSIZE
595 * tcp_output:EHOSTUNREACH
596 * tcp_output:ENETUNREACH
597 * tcp_output:ENETDOWN
600 * tcp_output:EMSGSIZE
602 * tcp_output:??? [ignorable: mostly IPSEC/firewall/DLIL]
605 tcp_usr_shutdown(struct socket
*so
)
608 struct inpcb
*inp
= sotoinpcb(so
);
613 /* In case we got disconnected from the peer */
616 tp
= tcp_usrclosed(tp
);
618 error
= tcp_output(tp
);
619 COMMON_END(PRU_SHUTDOWN
);
623 * After a receive, possibly send window update to peer.
626 tcp_usr_rcvd(struct socket
*so
, __unused
int flags
)
629 struct inpcb
*inp
= sotoinpcb(so
);
633 /* In case we got disconnected from the peer */
637 COMMON_END(PRU_RCVD
);
641 * Do a send by putting data in output queue and updating urgent
642 * marker if URG set. Possibly send more data. Unlike the other
643 * pru_*() routines, the mbuf chains are our responsibility. We
644 * must either enqueue them or free them. The other pru_* routines
645 * generally are caller-frees.
651 * tcp_connect:EADDRINUSE Address in use
652 * tcp_connect:EADDRNOTAVAIL Address not available.
653 * tcp_connect:EINVAL Invalid argument
654 * tcp_connect:EAFNOSUPPORT Address family not supported [notdef]
655 * tcp_connect:EACCES Permission denied
656 * tcp_connect:EAGAIN Resource unavailable, try again
657 * tcp_connect:EPERM Operation not permitted
658 * tcp_output:EADDRNOTAVAIL
660 * tcp_output:EMSGSIZE
661 * tcp_output:EHOSTUNREACH
662 * tcp_output:ENETUNREACH
663 * tcp_output:ENETDOWN
666 * tcp_output:EMSGSIZE
668 * tcp_output:??? [ignorable: mostly IPSEC/firewall/DLIL]
669 * tcp6_connect:??? [IPV6 only]
672 tcp_usr_send(struct socket
*so
, int flags
, struct mbuf
*m
,
673 struct sockaddr
*nam
, struct mbuf
*control
, struct proc
*p
)
676 struct inpcb
*inp
= sotoinpcb(so
);
683 if (inp
== NULL
|| inp
->inp_state
== INPCB_STATE_DEAD
) {
685 * OOPS! we lost a race, the TCP session got reset after
686 * we checked SS_CANTSENDMORE, eg: while doing uiomove or a
687 * network interrupt in the non-splnet() section of sosend().
693 error
= ECONNRESET
; /* XXX EPIPE? */
699 isipv6
= nam
&& nam
->sa_family
== AF_INET6
;
704 calculate_tcp_clock();
707 /* TCP doesn't do control messages (rights, creds, etc) */
708 if (control
->m_len
) {
715 m_freem(control
); /* empty control, just free it */
717 if(!(flags
& PRUS_OOB
)) {
718 sbappendstream(&so
->so_snd
, m
);
719 if (nam
&& tp
->t_state
< TCPS_SYN_SENT
) {
721 * Do implied connect if not yet connected,
722 * initialize window to default value, and
723 * initialize maxseg/maxopd using peer's cached
728 error
= tcp6_connect(tp
, nam
, p
);
731 error
= tcp_connect(tp
, nam
, p
);
734 tp
->snd_wnd
= TTCP_CLIENT_SND_WND
;
735 tcp_mss(tp
, -1, IFSCOPE_NONE
);
738 if (flags
& PRUS_EOF
) {
740 * Close the send side of the connection after
744 tp
= tcp_usrclosed(tp
);
747 if (flags
& PRUS_MORETOCOME
)
748 tp
->t_flags
|= TF_MORETOCOME
;
749 error
= tcp_output(tp
);
750 if (flags
& PRUS_MORETOCOME
)
751 tp
->t_flags
&= ~TF_MORETOCOME
;
754 if (sbspace(&so
->so_snd
) == 0) {
755 /* if no space is left in sockbuf,
756 * do not try to squeeze in OOB traffic */
762 * According to RFC961 (Assigned Protocols),
763 * the urgent pointer points to the last octet
764 * of urgent data. We continue, however,
765 * to consider it to indicate the first octet
766 * of data past the urgent section.
767 * Otherwise, snd_up should be one lower.
769 sbappendstream(&so
->so_snd
, m
);
770 if (nam
&& tp
->t_state
< TCPS_SYN_SENT
) {
772 * Do implied connect if not yet connected,
773 * initialize window to default value, and
774 * initialize maxseg/maxopd using peer's cached
779 error
= tcp6_connect(tp
, nam
, p
);
782 error
= tcp_connect(tp
, nam
, p
);
785 tp
->snd_wnd
= TTCP_CLIENT_SND_WND
;
786 tcp_mss(tp
, -1, IFSCOPE_NONE
);
788 tp
->snd_up
= tp
->snd_una
+ so
->so_snd
.sb_cc
;
790 error
= tcp_output(tp
);
793 COMMON_END((flags
& PRUS_OOB
) ? PRU_SENDOOB
:
794 ((flags
& PRUS_EOF
) ? PRU_SEND_EOF
: PRU_SEND
));
801 tcp_usr_abort(struct socket
*so
)
804 struct inpcb
*inp
= sotoinpcb(so
);
808 /* In case we got disconnected from the peer */
811 tp
= tcp_drop(tp
, ECONNABORTED
);
813 COMMON_END(PRU_ABORT
);
817 * Receive out-of-band data.
820 * EINVAL [COMMON_START]
825 tcp_usr_rcvoob(struct socket
*so
, struct mbuf
*m
, int flags
)
828 struct inpcb
*inp
= sotoinpcb(so
);
832 if ((so
->so_oobmark
== 0 &&
833 (so
->so_state
& SS_RCVATMARK
) == 0) ||
834 so
->so_options
& SO_OOBINLINE
||
835 tp
->t_oobflags
& TCPOOB_HADDATA
) {
839 if ((tp
->t_oobflags
& TCPOOB_HAVEDATA
) == 0) {
844 *mtod(m
, caddr_t
) = tp
->t_iobc
;
845 if ((flags
& MSG_PEEK
) == 0)
846 tp
->t_oobflags
^= (TCPOOB_HAVEDATA
| TCPOOB_HADDATA
);
847 COMMON_END(PRU_RCVOOB
);
850 /* xxx - should be const */
851 struct pr_usrreqs tcp_usrreqs
= {
852 tcp_usr_abort
, tcp_usr_accept
, tcp_usr_attach
, tcp_usr_bind
,
853 tcp_usr_connect
, pru_connect2_notsupp
, in_control
, tcp_usr_detach
,
854 tcp_usr_disconnect
, tcp_usr_listen
, in_setpeeraddr
, tcp_usr_rcvd
,
855 tcp_usr_rcvoob
, tcp_usr_send
, pru_sense_null
, tcp_usr_shutdown
,
856 in_setsockaddr
, sosend
, soreceive
, pru_sopoll_notsupp
860 struct pr_usrreqs tcp6_usrreqs
= {
861 tcp_usr_abort
, tcp6_usr_accept
, tcp_usr_attach
, tcp6_usr_bind
,
862 tcp6_usr_connect
, pru_connect2_notsupp
, in6_control
, tcp_usr_detach
,
863 tcp_usr_disconnect
, tcp6_usr_listen
, in6_mapped_peeraddr
, tcp_usr_rcvd
,
864 tcp_usr_rcvoob
, tcp_usr_send
, pru_sense_null
, tcp_usr_shutdown
,
865 in6_mapped_sockaddr
, sosend
, soreceive
, pru_sopoll_notsupp
870 * Common subroutine to open a TCP connection to remote host specified
871 * by struct sockaddr_in in mbuf *nam. Call in_pcbbind to assign a local
872 * port number if needed. Call in_pcbladdr to do the routing and to choose
873 * a local host address (interface). If there is an existing incarnation
874 * of the same connection in TIME-WAIT state and if the remote host was
875 * sending CC options and if the connection duration was < MSL, then
876 * truncate the previous TIME-WAIT state and proceed.
877 * Initialize connection parameters and enter SYN-SENT state.
882 * in_pcbbind:EADDRNOTAVAIL Address not available.
883 * in_pcbbind:EINVAL Invalid argument
884 * in_pcbbind:EAFNOSUPPORT Address family not supported [notdef]
885 * in_pcbbind:EACCES Permission denied
886 * in_pcbbind:EADDRINUSE Address in use
887 * in_pcbbind:EAGAIN Resource unavailable, try again
888 * in_pcbbind:EPERM Operation not permitted
889 * in_pcbladdr:EINVAL Invalid argument
890 * in_pcbladdr:EAFNOSUPPORT Address family not supported
891 * in_pcbladdr:EADDRNOTAVAIL Address not available
894 tcp_connect(tp
, nam
, p
)
895 register struct tcpcb
*tp
;
896 struct sockaddr
*nam
;
899 struct inpcb
*inp
= tp
->t_inpcb
, *oinp
;
900 struct socket
*so
= inp
->inp_socket
;
902 struct sockaddr_in
*sin
= (struct sockaddr_in
*)nam
;
903 struct sockaddr_in ifaddr
;
904 struct rmxp_tao
*taop
;
905 struct rmxp_tao tao_noncached
;
907 unsigned int outif
= 0;
909 if (inp
->inp_lport
== 0) {
910 error
= in_pcbbind(inp
, (struct sockaddr
*)0, p
);
916 * Cannot simply call in_pcbconnect, because there might be an
917 * earlier incarnation of this same connection still in
918 * TIME_WAIT state, creating an ADDRINUSE error.
920 error
= in_pcbladdr(inp
, nam
, &ifaddr
, &outif
);
924 tcp_unlock(inp
->inp_socket
, 0, 0);
925 oinp
= in_pcblookup_hash(inp
->inp_pcbinfo
,
926 sin
->sin_addr
, sin
->sin_port
,
927 inp
->inp_laddr
.s_addr
!= INADDR_ANY
? inp
->inp_laddr
929 inp
->inp_lport
, 0, NULL
);
931 tcp_lock(inp
->inp_socket
, 0, 0);
933 if (oinp
!= inp
) /* 4143933: avoid deadlock if inp == oinp */
934 tcp_lock(oinp
->inp_socket
, 1, 0);
935 if (in_pcb_checkstate(oinp
, WNT_RELEASE
, 1) == WNT_STOPUSING
) {
937 tcp_unlock(oinp
->inp_socket
, 1, 0);
941 if (oinp
!= inp
&& (otp
= intotcpcb(oinp
)) != NULL
&&
942 otp
->t_state
== TCPS_TIME_WAIT
&&
943 ((int)(tcp_now
- otp
->t_starttime
)) < tcp_msl
&&
944 (otp
->t_flags
& TF_RCVD_CC
))
945 otp
= tcp_close(otp
);
947 printf("tcp_connect: inp=%p err=EADDRINUSE\n", inp
);
949 tcp_unlock(oinp
->inp_socket
, 1, 0);
953 tcp_unlock(oinp
->inp_socket
, 1, 0);
956 if ((inp
->inp_laddr
.s_addr
== INADDR_ANY
? ifaddr
.sin_addr
.s_addr
:
957 inp
->inp_laddr
.s_addr
) == sin
->sin_addr
.s_addr
&&
958 inp
->inp_lport
== sin
->sin_port
)
960 if (!lck_rw_try_lock_exclusive(inp
->inp_pcbinfo
->mtx
)) {
961 /*lock inversion issue, mostly with udp multicast packets */
962 socket_unlock(inp
->inp_socket
, 0);
963 lck_rw_lock_exclusive(inp
->inp_pcbinfo
->mtx
);
964 socket_lock(inp
->inp_socket
, 0);
966 if (inp
->inp_laddr
.s_addr
== INADDR_ANY
) {
967 inp
->inp_laddr
= ifaddr
.sin_addr
;
968 inp
->inp_last_outif
= outif
;
970 inp
->inp_faddr
= sin
->sin_addr
;
971 inp
->inp_fport
= sin
->sin_port
;
973 lck_rw_done(inp
->inp_pcbinfo
->mtx
);
975 /* Compute window scaling to requesti according to sb_hiwat
976 * or leave us some room to increase potentially increase the window size depending
977 * on the default win scale
979 while (tp
->request_r_scale
< TCP_MAX_WINSHIFT
&&
980 (TCP_MAXWIN
<< tp
->request_r_scale
) < so
->so_rcv
.sb_hiwat
)
981 tp
->request_r_scale
++;
984 * Inflate window size only if no setsockopt was performed on the recv sockbuf and
985 * if we're not over our number of active pcbs.
988 if (((so
->so_rcv
.sb_flags
& SB_USRSIZE
) == 0) && (inp
->inp_pcbinfo
->ipi_count
< tcp_sockthreshold
)) {
989 tp
->request_r_scale
= max(tcp_win_scale
, tp
->request_r_scale
);
990 so
->so_rcv
.sb_hiwat
= min(TCP_MAXWIN
<< tp
->request_r_scale
, (sb_max
/ (MSIZE
+MCLBYTES
)) * MCLBYTES
);
994 tcpstat
.tcps_connattempt
++;
995 tp
->t_state
= TCPS_SYN_SENT
;
996 tp
->t_timer
[TCPT_KEEP
] = OFFSET_FROM_START(tp
,
997 tp
->t_keepinit
? tp
->t_keepinit
: tcp_keepinit
);
998 tp
->iss
= tcp_new_isn(tp
);
1001 nstat_route_connect_attempt(inp
->inp_route
.ro_rt
);
1004 * Generate a CC value for this connection and
1005 * check whether CC or CCnew should be used.
1007 if ((taop
= tcp_gettaocache(tp
->t_inpcb
)) == NULL
) {
1008 taop
= &tao_noncached
;
1009 bzero(taop
, sizeof(*taop
));
1012 tp
->cc_send
= CC_INC(tcp_ccgen
);
1013 if (taop
->tao_ccsent
!= 0 &&
1014 CC_GEQ(tp
->cc_send
, taop
->tao_ccsent
)) {
1015 taop
->tao_ccsent
= tp
->cc_send
;
1017 taop
->tao_ccsent
= 0;
1018 tp
->t_flags
|= TF_SENDCCNEW
;
1026 tcp6_connect(tp
, nam
, p
)
1027 register struct tcpcb
*tp
;
1028 struct sockaddr
*nam
;
1031 struct inpcb
*inp
= tp
->t_inpcb
, *oinp
;
1032 struct socket
*so
= inp
->inp_socket
;
1034 struct sockaddr_in6
*sin6
= (struct sockaddr_in6
*)nam
;
1035 struct in6_addr addr6
;
1036 struct rmxp_tao
*taop
;
1037 struct rmxp_tao tao_noncached
;
1039 unsigned int outif
= 0;
1041 if (inp
->inp_lport
== 0) {
1042 error
= in6_pcbbind(inp
, (struct sockaddr
*)0, p
);
1048 * Cannot simply call in_pcbconnect, because there might be an
1049 * earlier incarnation of this same connection still in
1050 * TIME_WAIT state, creating an ADDRINUSE error.
1052 error
= in6_pcbladdr(inp
, nam
, &addr6
, &outif
);
1055 tcp_unlock(inp
->inp_socket
, 0, 0);
1056 oinp
= in6_pcblookup_hash(inp
->inp_pcbinfo
,
1057 &sin6
->sin6_addr
, sin6
->sin6_port
,
1058 IN6_IS_ADDR_UNSPECIFIED(&inp
->in6p_laddr
)
1061 inp
->inp_lport
, 0, NULL
);
1062 tcp_lock(inp
->inp_socket
, 0, 0);
1064 if (oinp
!= inp
&& (otp
= intotcpcb(oinp
)) != NULL
&&
1065 otp
->t_state
== TCPS_TIME_WAIT
&&
1066 ((int)(tcp_now
- otp
->t_starttime
)) < tcp_msl
&&
1067 (otp
->t_flags
& TF_RCVD_CC
))
1068 otp
= tcp_close(otp
);
1072 if (!lck_rw_try_lock_exclusive(inp
->inp_pcbinfo
->mtx
)) {
1073 /*lock inversion issue, mostly with udp multicast packets */
1074 socket_unlock(inp
->inp_socket
, 0);
1075 lck_rw_lock_exclusive(inp
->inp_pcbinfo
->mtx
);
1076 socket_lock(inp
->inp_socket
, 0);
1078 if (IN6_IS_ADDR_UNSPECIFIED(&inp
->in6p_laddr
)) {
1079 inp
->in6p_laddr
= addr6
;
1080 inp
->in6p_last_outif
= outif
;
1082 inp
->in6p_faddr
= sin6
->sin6_addr
;
1083 inp
->inp_fport
= sin6
->sin6_port
;
1084 if ((sin6
->sin6_flowinfo
& IPV6_FLOWINFO_MASK
) != 0)
1085 inp
->in6p_flowinfo
= sin6
->sin6_flowinfo
;
1087 lck_rw_done(inp
->inp_pcbinfo
->mtx
);
1089 /* Compute window scaling to request. */
1090 while (tp
->request_r_scale
< TCP_MAX_WINSHIFT
&&
1091 (TCP_MAXWIN
<< tp
->request_r_scale
) < so
->so_rcv
.sb_hiwat
)
1092 tp
->request_r_scale
++;
1095 tcpstat
.tcps_connattempt
++;
1096 tp
->t_state
= TCPS_SYN_SENT
;
1097 tp
->t_timer
[TCPT_KEEP
] = OFFSET_FROM_START(tp
,
1098 tp
->t_keepinit
? tp
->t_keepinit
: tcp_keepinit
);
1099 tp
->iss
= tcp_new_isn(tp
);
1100 tcp_sendseqinit(tp
);
1102 nstat_route_connect_attempt(inp
->inp_route
.ro_rt
);
1105 * Generate a CC value for this connection and
1106 * check whether CC or CCnew should be used.
1108 if ((taop
= tcp_gettaocache(tp
->t_inpcb
)) == NULL
) {
1109 taop
= &tao_noncached
;
1110 bzero(taop
, sizeof(*taop
));
1113 tp
->cc_send
= CC_INC(tcp_ccgen
);
1114 if (taop
->tao_ccsent
!= 0 &&
1115 CC_GEQ(tp
->cc_send
, taop
->tao_ccsent
)) {
1116 taop
->tao_ccsent
= tp
->cc_send
;
1118 taop
->tao_ccsent
= 0;
1119 tp
->t_flags
|= TF_SENDCCNEW
;
1127 * Export TCP internal state information via a struct tcp_info
1129 __private_extern__
void
1130 tcp_fill_info(struct tcpcb
*tp
, struct tcp_info
*ti
)
1132 bzero(ti
, sizeof(*ti
));
1134 ti
->tcpi_state
= tp
->t_state
;
1136 if (tp
->t_state
> TCPS_LISTEN
) {
1137 if ((tp
->t_flags
& TF_REQ_TSTMP
) && (tp
->t_flags
& TF_RCVD_TSTMP
))
1138 ti
->tcpi_options
|= TCPI_OPT_TIMESTAMPS
;
1139 if (tp
->t_flags
& TF_SACK_PERMIT
)
1140 ti
->tcpi_options
|= TCPI_OPT_SACK
;
1141 if ((tp
->t_flags
& TF_REQ_SCALE
) && (tp
->t_flags
& TF_RCVD_SCALE
)) {
1142 ti
->tcpi_options
|= TCPI_OPT_WSCALE
;
1143 ti
->tcpi_snd_wscale
= tp
->snd_scale
;
1144 ti
->tcpi_rcv_wscale
= tp
->rcv_scale
;
1147 ti
->tcpi_snd_mss
= tp
->t_maxseg
;
1148 ti
->tcpi_rcv_mss
= tp
->t_maxseg
;
1150 ti
->tcpi_snd_ssthresh
= tp
->snd_ssthresh
;
1151 ti
->tcpi_snd_cwnd
= tp
->snd_cwnd
;
1153 ti
->tcpi_rcv_space
= tp
->rcv_wnd
;
1155 ti
->tcpi_snd_wnd
= tp
->snd_wnd
;
1156 ti
->tcpi_snd_bwnd
= tp
->snd_bwnd
;
1157 ti
->tcpi_snd_nxt
= tp
->snd_nxt
;
1158 ti
->tcpi_rcv_nxt
= tp
->rcv_nxt
;
1160 ti
->tcpi_last_outif
= tp
->t_inpcb
->inp_last_outif
;
1164 __private_extern__ errno_t
1165 tcp_fill_info_for_info_tuple(struct info_tuple
*itpl
, struct tcp_info
*ti
)
1167 struct inpcbinfo
*pcbinfo
= NULL
;
1168 struct inpcb
*inp
= NULL
;
1172 if (itpl
->itpl_proto
== IPPROTO_TCP
)
1177 if (itpl
->itpl_local_sa
.sa_family
== AF_INET
&&
1178 itpl
->itpl_remote_sa
.sa_family
== AF_INET
) {
1179 inp
= in_pcblookup_hash(pcbinfo
,
1180 itpl
->itpl_remote_sin
.sin_addr
,
1181 itpl
->itpl_remote_sin
.sin_port
,
1182 itpl
->itpl_local_sin
.sin_addr
,
1183 itpl
->itpl_local_sin
.sin_port
,
1185 } else if (itpl
->itpl_local_sa
.sa_family
== AF_INET6
&&
1186 itpl
->itpl_remote_sa
.sa_family
== AF_INET6
) {
1187 struct in6_addr ina6_local
;
1188 struct in6_addr ina6_remote
;
1190 ina6_local
= itpl
->itpl_local_sin6
.sin6_addr
;
1191 if (IN6_IS_SCOPE_LINKLOCAL(&ina6_local
) && itpl
->itpl_local_sin6
.sin6_scope_id
)
1192 ina6_local
.s6_addr16
[1] = htons(itpl
->itpl_local_sin6
.sin6_scope_id
);
1194 ina6_remote
= itpl
->itpl_remote_sin6
.sin6_addr
;
1195 if (IN6_IS_SCOPE_LINKLOCAL(&ina6_remote
) && itpl
->itpl_remote_sin6
.sin6_scope_id
)
1196 ina6_remote
.s6_addr16
[1] = htons(itpl
->itpl_remote_sin6
.sin6_scope_id
);
1198 inp
= in6_pcblookup_hash(pcbinfo
,
1200 itpl
->itpl_remote_sin6
.sin6_port
,
1202 itpl
->itpl_local_sin6
.sin6_port
,
1206 if (inp
== NULL
|| (so
= inp
->inp_socket
) == NULL
)
1210 if (in_pcb_checkstate(inp
, WNT_RELEASE
, 1) == WNT_STOPUSING
) {
1211 socket_unlock(so
, 0);
1214 tp
= intotcpcb(inp
);
1216 tcp_fill_info(tp
, ti
);
1217 socket_unlock(so
, 0);
1223 __private_extern__
int
1224 tcp_sysctl_info(__unused
struct sysctl_oid
*oidp
, __unused
void *arg1
, __unused
int arg2
, struct sysctl_req
*req
)
1228 struct info_tuple itpl
;
1230 if (req
->newptr
== USER_ADDR_NULL
) {
1233 if (req
->newlen
< sizeof(struct info_tuple
)) {
1236 error
= SYSCTL_IN(req
, &itpl
, sizeof(struct info_tuple
));
1240 error
= tcp_fill_info_for_info_tuple(&itpl
, &ti
);
1244 error
= SYSCTL_OUT(req
, &ti
, sizeof(struct tcp_info
));
1253 * The new sockopt interface makes it possible for us to block in the
1254 * copyin/out step (if we take a page fault). Taking a page fault at
1255 * splnet() is probably a Bad Thing. (Since sockets and pcbs both now
1256 * use TSM, there probably isn't any need for this function to run at
1257 * splnet() any more. This needs more examination.)
1260 tcp_ctloutput(so
, sopt
)
1262 struct sockopt
*sopt
;
1264 int error
, opt
, optval
;
1269 inp
= sotoinpcb(so
);
1271 return (ECONNRESET
);
1273 if (sopt
->sopt_level
!= IPPROTO_TCP
) {
1275 if (INP_CHECK_SOCKAF(so
, AF_INET6
))
1276 error
= ip6_ctloutput(so
, sopt
);
1279 error
= ip_ctloutput(so
, sopt
);
1282 tp
= intotcpcb(inp
);
1284 return (ECONNRESET
);
1287 calculate_tcp_clock();
1289 switch (sopt
->sopt_dir
) {
1291 switch (sopt
->sopt_name
) {
1295 error
= sooptcopyin(sopt
, &optval
, sizeof optval
,
1300 switch (sopt
->sopt_name
) {
1311 opt
= 0; /* dead code to fool gcc */
1318 tp
->t_flags
&= ~opt
;
1320 case TCP_RXT_FINDROP
:
1321 error
= sooptcopyin(sopt
, &optval
, sizeof optval
,
1325 opt
= TF_RXTFINDROP
;
1327 tp
->t_flagsext
|= opt
;
1329 tp
->t_flagsext
&= ~opt
;
1332 error
= sooptcopyin(sopt
, &optval
, sizeof optval
,
1337 if (optval
> 0 && optval
<= tp
->t_maxseg
&&
1338 optval
+ 40 >= tcp_minmss
)
1339 tp
->t_maxseg
= optval
;
1345 error
= sooptcopyin(sopt
, &optval
, sizeof optval
,
1352 tp
->t_keepidle
= optval
* TCP_RETRANSHZ
;
1353 tp
->t_timer
[TCPT_KEEP
] = OFFSET_FROM_START(tp
,
1354 TCP_KEEPIDLE(tp
)); /* reset the timer to new value */
1355 tcp_check_timer_state(tp
);
1359 case TCP_CONNECTIONTIMEOUT
:
1360 error
= sooptcopyin(sopt
, &optval
, sizeof optval
,
1367 tp
->t_keepinit
= optval
* TCP_RETRANSHZ
;
1370 case PERSIST_TIMEOUT
:
1371 error
= sooptcopyin(sopt
, &optval
, sizeof optval
,
1378 tp
->t_persist_timeout
= optval
* TCP_RETRANSHZ
;
1380 case TCP_RXT_CONNDROPTIME
:
1381 error
= sooptcopyin(sopt
, &optval
, sizeof(optval
),
1388 tp
->rxt_conndroptime
= optval
* TCP_RETRANSHZ
;
1391 error
= ENOPROTOOPT
;
1397 switch (sopt
->sopt_name
) {
1399 optval
= tp
->t_flags
& TF_NODELAY
;
1402 optval
= tp
->t_maxseg
;
1405 optval
= tp
->t_keepidle
/ TCP_RETRANSHZ
;
1408 optval
= tp
->t_flags
& TF_NOOPT
;
1411 optval
= tp
->t_flags
& TF_NOPUSH
;
1413 case TCP_CONNECTIONTIMEOUT
:
1414 optval
= tp
->t_keepinit
/ TCP_RETRANSHZ
;
1416 case PERSIST_TIMEOUT
:
1417 optval
= tp
->t_persist_timeout
/ TCP_RETRANSHZ
;
1419 case TCP_RXT_CONNDROPTIME
:
1420 optval
= tp
->rxt_conndroptime
/ TCP_RETRANSHZ
;
1422 case TCP_RXT_FINDROP
:
1423 optval
= tp
->t_flagsext
& TF_RXTFINDROP
;
1428 tcp_fill_info(tp
, &ti
);
1429 error
= sooptcopyout(sopt
, &ti
, sizeof(struct tcp_info
));
1433 error
= ENOPROTOOPT
;
1437 error
= sooptcopyout(sopt
, &optval
, sizeof optval
);
1445 * tcp_sendspace and tcp_recvspace are the default send and receive window
1446 * sizes, respectively. These are obsolescent (this information should
1447 * be set by the route).
1449 u_int32_t tcp_sendspace
= 1448*256;
1450 u_int32_t tcp_recvspace
= 1448*384;
1452 /* During attach, the size of socket buffer allocated is limited to
1453 * sb_max in sbreserve. Disallow setting the tcp send and recv space
1454 * to be more than sb_max because that will cause tcp_attach to fail
1455 * (see radar 5713060)
1458 sysctl_tcp_sospace(struct sysctl_oid
*oidp
, __unused
void *arg1
,
1459 __unused
int arg2
, struct sysctl_req
*req
) {
1460 u_int32_t new_value
= 0, *space_p
= NULL
;
1461 int changed
= 0, error
= 0;
1462 u_quad_t sb_effective_max
= (sb_max
/ (MSIZE
+MCLBYTES
)) * MCLBYTES
;
1464 switch (oidp
->oid_number
) {
1465 case TCPCTL_SENDSPACE
:
1466 space_p
= &tcp_sendspace
;
1468 case TCPCTL_RECVSPACE
:
1469 space_p
= &tcp_recvspace
;
1474 error
= sysctl_io_number(req
, *space_p
, sizeof(u_int32_t
),
1475 &new_value
, &changed
);
1477 if (new_value
> 0 && new_value
<= sb_effective_max
) {
1478 *space_p
= new_value
;
1486 SYSCTL_PROC(_net_inet_tcp
, TCPCTL_SENDSPACE
, sendspace
, CTLTYPE_INT
| CTLFLAG_RW
| CTLFLAG_LOCKED
,
1487 &tcp_sendspace
, 0, &sysctl_tcp_sospace
, "IU", "Maximum outgoing TCP datagram size");
1488 SYSCTL_PROC(_net_inet_tcp
, TCPCTL_RECVSPACE
, recvspace
, CTLTYPE_INT
| CTLFLAG_RW
| CTLFLAG_LOCKED
,
1489 &tcp_recvspace
, 0, &sysctl_tcp_sospace
, "IU", "Maximum incoming TCP datagram size");
1493 * Attach TCP protocol to socket, allocating
1494 * internet protocol control block, tcp control block,
1495 * bufer space, and entering LISTEN state if to accept connections.
1497 * Returns: 0 Success
1498 * in_pcballoc:ENOBUFS
1499 * in_pcballoc:ENOMEM
1500 * in_pcballoc:??? [IPSEC specific]
1508 register struct tcpcb
*tp
;
1511 u_long sb_effective_max
;
1513 int isipv6
= INP_CHECK_SOCKAF(so
, AF_INET6
) != 0;
1516 error
= in_pcballoc(so
, &tcbinfo
, p
);
1520 inp
= sotoinpcb(so
);
1522 if (so
->so_snd
.sb_hiwat
== 0 || so
->so_rcv
.sb_hiwat
== 0) {
1524 * The goal is to let clients machines use large send/rcv default windows to compensate for link
1525 * latency and make sure the receiver is not constraining the sender window.
1526 * But we doon't want to have a few connections use all our mbuf space for servers.
1527 * This is done by watching a threshold of tcpcbs in use and bumping the default send and rcvspace
1528 * only if that threshold isn't reached.
1529 * We're also advertising a much bigger window size (tuneable by sysctl) in correlation with * the max socket buffer size if
1530 * we consider that we have enough ressources for it. This window will be adjusted depending on the
1531 * global socket layer buffer use with the use of tcp_sbpace
1534 if (inp
->inp_pcbinfo
->ipi_count
< tcp_sockthreshold
) {
1535 sb_effective_max
= (sb_max
/ (MSIZE
+MCLBYTES
)) * MCLBYTES
;
1536 error
= soreserve(so
, max(min((TCP_MAXWIN
<< tcp_win_scale
)/4, sb_effective_max
), tcp_sendspace
),
1537 max(min((TCP_MAXWIN
<< tcp_win_scale
)/2, sb_effective_max
), tcp_recvspace
));
1540 error
= soreserve(so
, tcp_sendspace
, tcp_recvspace
);
1547 inp
->inp_vflag
|= INP_IPV6
;
1548 inp
->in6p_hops
= -1; /* use kernel default */
1552 inp
->inp_vflag
|= INP_IPV4
;
1553 tp
= tcp_newtcpcb(inp
);
1555 int nofd
= so
->so_state
& SS_NOFDREF
; /* XXX */
1557 so
->so_state
&= ~SS_NOFDREF
; /* don't free the socket yet */
1564 so
->so_state
|= nofd
;
1567 if (nstat_collect
) {
1568 nstat_tcp_new_pcb(inp
);
1570 tp
->t_state
= TCPS_CLOSED
;
1575 * Initiate (or continue) disconnect.
1576 * If embryonic state, just send reset (once).
1577 * If in ``let data drain'' option and linger null, just drop.
1578 * Otherwise (hard), mark socket disconnecting and drop
1579 * current input data; switch states based on user close, and
1580 * send segment to peer (with FIN).
1582 static struct tcpcb
*
1584 register struct tcpcb
*tp
;
1586 struct socket
*so
= tp
->t_inpcb
->inp_socket
;
1588 if (tp
->t_state
< TCPS_ESTABLISHED
)
1590 else if ((so
->so_options
& SO_LINGER
) && so
->so_linger
== 0)
1591 tp
= tcp_drop(tp
, 0);
1593 soisdisconnecting(so
);
1594 sbflush(&so
->so_rcv
);
1595 tp
= tcp_usrclosed(tp
);
1597 (void) tcp_output(tp
);
1603 * User issued close, and wish to trail through shutdown states:
1604 * if never received SYN, just forget it. If got a SYN from peer,
1605 * but haven't sent FIN, then go to FIN_WAIT_1 state to send peer a FIN.
1606 * If already got a FIN from peer, then almost done; go to LAST_ACK
1607 * state. In all other cases, have already sent FIN to peer (e.g.
1608 * after PRU_SHUTDOWN), and just have to play tedious game waiting
1609 * for peer to send FIN or not respond to keep-alives, etc.
1610 * We can let the user exit from the close as soon as the FIN is acked.
1612 static struct tcpcb
*
1614 register struct tcpcb
*tp
;
1617 switch (tp
->t_state
) {
1621 tp
->t_state
= TCPS_CLOSED
;
1626 case TCPS_SYN_RECEIVED
:
1627 tp
->t_flags
|= TF_NEEDFIN
;
1630 case TCPS_ESTABLISHED
:
1631 tp
->t_state
= TCPS_FIN_WAIT_1
;
1634 case TCPS_CLOSE_WAIT
:
1635 tp
->t_state
= TCPS_LAST_ACK
;
1638 if (tp
&& tp
->t_state
>= TCPS_FIN_WAIT_2
) {
1639 soisdisconnected(tp
->t_inpcb
->inp_socket
);
1640 /* To prevent the connection hanging in FIN_WAIT_2 forever. */
1641 if (tp
->t_state
== TCPS_FIN_WAIT_2
)
1642 tp
->t_timer
[TCPT_2MSL
] = OFFSET_FROM_START(tp
, tcp_maxidle
);
1648 tcp_in_cksum_stats(u_int32_t len
)
1651 tcps_in_sw_cksum_bytes
+= len
;
1655 tcp_out_cksum_stats(u_int32_t len
)
1657 tcps_out_sw_cksum
++;
1658 tcps_out_sw_cksum_bytes
+= len
;