2 * Copyright (c) 2003, 2004 Jeffrey M. Hsu. All rights reserved.
3 * Copyright (c) 2003, 2004 The DragonFly Project. All rights reserved.
5 * This code is derived from software contributed to The DragonFly Project
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
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.
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
35 * Copyright (c) 1982, 1986, 1988, 1993
36 * The Regents of the University of California. All rights reserved.
38 * Redistribution and use in source and binary forms, with or without
39 * modification, are permitted provided that the following conditions
41 * 1. Redistributions of source code must retain the above copyright
42 * notice, this list of conditions and the following disclaimer.
43 * 2. Redistributions in binary form must reproduce the above copyright
44 * notice, this list of conditions and the following disclaimer in the
45 * documentation and/or other materials provided with the distribution.
46 * 3. All advertising materials mentioning features or use of this software
47 * must display the following acknowledgement:
48 * This product includes software developed by the University of
49 * California, Berkeley and its contributors.
50 * 4. Neither the name of the University nor the names of its contributors
51 * may be used to endorse or promote products derived from this software
52 * without specific prior written permission.
54 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
55 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
56 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
57 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
58 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
59 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
60 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
61 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
62 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
63 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
66 * From: @(#)tcp_usrreq.c 8.2 (Berkeley) 1/3/94
67 * $FreeBSD: src/sys/netinet/tcp_usrreq.c,v 1.51.2.17 2002/10/11 11:46:44 ume Exp $
68 * $DragonFly: src/sys/netinet/tcp_usrreq.c,v 1.51 2008/09/29 20:52:23 dillon Exp $
71 #include "opt_ipsec.h"
72 #include "opt_inet6.h"
73 #include "opt_tcpdebug.h"
75 #include <sys/param.h>
76 #include <sys/systm.h>
77 #include <sys/kernel.h>
78 #include <sys/malloc.h>
79 #include <sys/sysctl.h>
80 #include <sys/globaldata.h>
81 #include <sys/thread.h>
85 #include <sys/domain.h>
87 #include <sys/socket.h>
88 #include <sys/socketvar.h>
89 #include <sys/protosw.h>
91 #include <sys/thread2.h>
92 #include <sys/msgport2.h>
95 #include <net/netisr.h>
96 #include <net/route.h>
98 #include <net/netmsg2.h>
100 #include <netinet/in.h>
101 #include <netinet/in_systm.h>
103 #include <netinet/ip6.h>
105 #include <netinet/in_pcb.h>
107 #include <netinet6/in6_pcb.h>
109 #include <netinet/in_var.h>
110 #include <netinet/ip_var.h>
112 #include <netinet6/ip6_var.h>
114 #include <netinet/tcp.h>
115 #include <netinet/tcp_fsm.h>
116 #include <netinet/tcp_seq.h>
117 #include <netinet/tcp_timer.h>
118 #include <netinet/tcp_timer2.h>
119 #include <netinet/tcp_var.h>
120 #include <netinet/tcpip.h>
122 #include <netinet/tcp_debug.h>
126 #include <netinet6/ipsec.h>
130 * TCP protocol interface to socket abstraction.
132 extern char *tcpstates
[]; /* XXX ??? */
134 static int tcp_attach (struct socket
*, struct pru_attach_info
*);
135 static int tcp_connect (struct tcpcb
*, struct sockaddr
*,
138 static int tcp6_connect (struct tcpcb
*, struct sockaddr
*,
141 static struct tcpcb
*
142 tcp_disconnect (struct tcpcb
*);
143 static struct tcpcb
*
144 tcp_usrclosed (struct tcpcb
*);
147 #define TCPDEBUG0 int ostate = 0
148 #define TCPDEBUG1() ostate = tp ? tp->t_state : 0
149 #define TCPDEBUG2(req) if (tp && (so->so_options & SO_DEBUG)) \
150 tcp_trace(TA_USER, ostate, tp, 0, 0, req)
154 #define TCPDEBUG2(req)
158 * TCP attaches to socket via pru_attach(), reserving space,
159 * and an internet control block.
162 tcp_usr_attach(struct socket
*so
, int proto
, struct pru_attach_info
*ai
)
166 struct tcpcb
*tp
= 0;
177 error
= tcp_attach(so
, ai
);
181 if ((so
->so_options
& SO_LINGER
) && so
->so_linger
== 0)
182 so
->so_linger
= TCP_LINGERTIME
;
185 TCPDEBUG2(PRU_ATTACH
);
191 * pru_detach() detaches the TCP protocol from the socket.
192 * If the protocol state is non-embryonic, then can't
193 * do this directly: have to initiate a pru_disconnect(),
194 * which may finish later; embryonic TCB's can just
198 tcp_usr_detach(struct socket
*so
)
209 * If the inp is already detached it may have been due to an async
210 * close. Just return as if no error occured.
218 * It's possible for the tcpcb (tp) to disconnect from the inp due
219 * to tcp_drop()->tcp_close() being called. This may occur *after*
220 * the detach message has been queued so we may find a NULL tp here.
222 if ((tp
= intotcpcb(inp
)) != NULL
) {
224 tp
= tcp_disconnect(tp
);
225 TCPDEBUG2(PRU_DETACH
);
232 * Note: ignore_error is non-zero for certain disconnection races
233 * which we want to silently allow, otherwise close() may return
234 * an unexpected error.
236 #define COMMON_START(so, inp, ignore_error) \
244 return (ignore_error ? 0 : EINVAL); \
246 tp = intotcpcb(inp); \
250 #define COMMON_END(req) out: TCPDEBUG2(req); crit_exit(); return error; goto out
254 * Give the socket an address.
257 tcp_usr_bind(struct socket
*so
, struct sockaddr
*nam
, struct thread
*td
)
262 struct sockaddr_in
*sinp
;
264 COMMON_START(so
, inp
, 0);
267 * Must check for multicast addresses and disallow binding
270 sinp
= (struct sockaddr_in
*)nam
;
271 if (sinp
->sin_family
== AF_INET
&&
272 IN_MULTICAST(ntohl(sinp
->sin_addr
.s_addr
))) {
273 error
= EAFNOSUPPORT
;
276 error
= in_pcbbind(inp
, nam
, td
);
279 COMMON_END(PRU_BIND
);
285 tcp6_usr_bind(struct socket
*so
, struct sockaddr
*nam
, struct thread
*td
)
290 struct sockaddr_in6
*sin6p
;
292 COMMON_START(so
, inp
, 0);
295 * Must check for multicast addresses and disallow binding
298 sin6p
= (struct sockaddr_in6
*)nam
;
299 if (sin6p
->sin6_family
== AF_INET6
&&
300 IN6_IS_ADDR_MULTICAST(&sin6p
->sin6_addr
)) {
301 error
= EAFNOSUPPORT
;
304 inp
->inp_vflag
&= ~INP_IPV4
;
305 inp
->inp_vflag
|= INP_IPV6
;
306 if ((inp
->inp_flags
& IN6P_IPV6_V6ONLY
) == 0) {
307 if (IN6_IS_ADDR_UNSPECIFIED(&sin6p
->sin6_addr
))
308 inp
->inp_vflag
|= INP_IPV4
;
309 else if (IN6_IS_ADDR_V4MAPPED(&sin6p
->sin6_addr
)) {
310 struct sockaddr_in sin
;
312 in6_sin6_2_sin(&sin
, sin6p
);
313 inp
->inp_vflag
|= INP_IPV4
;
314 inp
->inp_vflag
&= ~INP_IPV6
;
315 error
= in_pcbbind(inp
, (struct sockaddr
*)&sin
, td
);
319 error
= in6_pcbbind(inp
, nam
, td
);
322 COMMON_END(PRU_BIND
);
327 struct netmsg_inswildcard
{
328 struct netmsg nm_netmsg
;
329 struct inpcb
*nm_inp
;
330 struct inpcbinfo
*nm_pcbinfo
;
334 in_pcbinswildcardhash_handler(struct netmsg
*msg0
)
336 struct netmsg_inswildcard
*msg
= (struct netmsg_inswildcard
*)msg0
;
338 in_pcbinswildcardhash_oncpu(msg
->nm_inp
, msg
->nm_pcbinfo
);
339 lwkt_replymsg(&msg
->nm_netmsg
.nm_lmsg
, 0);
344 * Prepare to accept connections.
347 tcp_usr_listen(struct socket
*so
, struct thread
*td
)
356 COMMON_START(so
, inp
, 0);
357 if (inp
->inp_lport
== 0) {
358 error
= in_pcbbind(inp
, NULL
, td
);
363 tp
->t_state
= TCPS_LISTEN
;
364 tp
->tt_msg
= NULL
; /* Catch any invalid timer usage */
367 * We have to set the flag because we can't have other cpus
368 * messing with our inp's flags.
370 inp
->inp_flags
|= INP_WILDCARD_MP
;
371 for (cpu
= 0; cpu
< ncpus2
; cpu
++) {
372 struct netmsg_inswildcard
*msg
;
374 if (cpu
== mycpu
->gd_cpuid
) {
375 in_pcbinswildcardhash(inp
);
379 msg
= kmalloc(sizeof(struct netmsg_inswildcard
), M_LWKTMSG
,
381 netmsg_init(&msg
->nm_netmsg
, &netisr_afree_rport
, 0,
382 in_pcbinswildcardhash_handler
);
384 msg
->nm_pcbinfo
= &tcbinfo
[cpu
];
385 lwkt_sendmsg(tcp_cport(cpu
), &msg
->nm_netmsg
.nm_lmsg
);
388 in_pcbinswildcardhash(inp
);
390 COMMON_END(PRU_LISTEN
);
395 tcp6_usr_listen(struct socket
*so
, struct thread
*td
)
404 COMMON_START(so
, inp
, 0);
405 if (inp
->inp_lport
== 0) {
406 if (!(inp
->inp_flags
& IN6P_IPV6_V6ONLY
))
407 inp
->inp_vflag
|= INP_IPV4
;
409 inp
->inp_vflag
&= ~INP_IPV4
;
410 error
= in6_pcbbind(inp
, NULL
, td
);
413 tp
->t_state
= TCPS_LISTEN
;
416 * We have to set the flag because we can't have other cpus
417 * messing with our inp's flags.
419 inp
->inp_flags
|= INP_WILDCARD_MP
;
420 for (cpu
= 0; cpu
< ncpus2
; cpu
++) {
421 struct netmsg_inswildcard
*msg
;
423 if (cpu
== mycpu
->gd_cpuid
) {
424 in_pcbinswildcardhash(inp
);
428 msg
= kmalloc(sizeof(struct netmsg_inswildcard
), M_LWKTMSG
,
430 netmsg_init(&msg
->nm_netmsg
, &netisr_afree_rport
, 0,
431 in_pcbinswildcardhash_handler
);
433 msg
->nm_pcbinfo
= &tcbinfo
[cpu
];
434 lwkt_sendmsg(tcp_cport(cpu
), &msg
->nm_netmsg
.nm_lmsg
);
437 in_pcbinswildcardhash(inp
);
439 COMMON_END(PRU_LISTEN
);
445 tcp_output_dispatch(struct netmsg
*nmsg
)
447 struct lwkt_msg
*msg
= &nmsg
->nm_lmsg
;
448 struct tcpcb
*tp
= msg
->u
.ms_resultp
;
451 error
= tcp_output(tp
);
452 lwkt_replymsg(msg
, error
);
457 tcp_conn_output(struct tcpcb
*tp
)
461 struct inpcb
*inp
= tp
->t_inpcb
;
464 port
= tcp_addrport(inp
->inp_faddr
.s_addr
, inp
->inp_fport
,
465 inp
->inp_laddr
.s_addr
, inp
->inp_lport
);
466 if (port
!= &curthread
->td_msgport
) {
468 struct lwkt_msg
*msg
;
470 netmsg_init(&nmsg
, &curthread
->td_msgport
, 0,
471 tcp_output_dispatch
);
473 msg
->u
.ms_resultp
= tp
;
475 error
= lwkt_domsg(port
, msg
, 0);
478 error
= tcp_output(tp
);
483 * Initiate connection to peer.
484 * Create a template for use in transmissions on this connection.
485 * Enter SYN_SENT state, and mark socket as connecting.
486 * Start keep-alive timer, and seed output sequence space.
487 * Send initial segment on connection.
490 tcp_usr_connect(struct socket
*so
, struct sockaddr
*nam
, struct thread
*td
)
495 struct sockaddr_in
*sinp
;
497 COMMON_START(so
, inp
, 0);
500 * Must disallow TCP ``connections'' to multicast addresses.
502 sinp
= (struct sockaddr_in
*)nam
;
503 if (sinp
->sin_family
== AF_INET
504 && IN_MULTICAST(ntohl(sinp
->sin_addr
.s_addr
))) {
505 error
= EAFNOSUPPORT
;
509 if (!prison_remote_ip(td
, (struct sockaddr
*)sinp
)) {
510 error
= EAFNOSUPPORT
; /* IPv6 only jail */
514 if ((error
= tcp_connect(tp
, nam
, td
)) != 0)
517 error
= tcp_conn_output(tp
);
519 COMMON_END(PRU_CONNECT
);
524 tcp6_usr_connect(struct socket
*so
, struct sockaddr
*nam
, struct thread
*td
)
529 struct sockaddr_in6
*sin6p
;
531 COMMON_START(so
, inp
, 0);
534 * Must disallow TCP ``connections'' to multicast addresses.
536 sin6p
= (struct sockaddr_in6
*)nam
;
537 if (sin6p
->sin6_family
== AF_INET6
538 && IN6_IS_ADDR_MULTICAST(&sin6p
->sin6_addr
)) {
539 error
= EAFNOSUPPORT
;
543 if (!prison_remote_ip(td
, nam
)) {
544 error
= EAFNOSUPPORT
; /* IPv4 only jail */
548 if (IN6_IS_ADDR_V4MAPPED(&sin6p
->sin6_addr
)) {
549 struct sockaddr_in sin
;
551 if ((inp
->inp_flags
& IN6P_IPV6_V6ONLY
) != 0) {
556 in6_sin6_2_sin(&sin
, sin6p
);
557 inp
->inp_vflag
|= INP_IPV4
;
558 inp
->inp_vflag
&= ~INP_IPV6
;
559 if ((error
= tcp_connect(tp
, (struct sockaddr
*)&sin
, td
)) != 0)
561 error
= tcp_conn_output(tp
);
564 inp
->inp_vflag
&= ~INP_IPV4
;
565 inp
->inp_vflag
|= INP_IPV6
;
566 inp
->inp_inc
.inc_isipv6
= 1;
567 if ((error
= tcp6_connect(tp
, nam
, td
)) != 0)
569 error
= tcp_output(tp
);
570 COMMON_END(PRU_CONNECT
);
575 * Initiate disconnect from peer.
576 * If connection never passed embryonic stage, just drop;
577 * else if don't need to let data drain, then can just drop anyways,
578 * else have to begin TCP shutdown process: mark socket disconnecting,
579 * drain unread data, state switch to reflect user close, and
580 * send segment (e.g. FIN) to peer. Socket will be really disconnected
581 * when peer sends FIN and acks ours.
583 * SHOULD IMPLEMENT LATER PRU_CONNECT VIA REALLOC TCPCB.
586 tcp_usr_disconnect(struct socket
*so
)
592 COMMON_START(so
, inp
, 1);
593 tp
= tcp_disconnect(tp
);
594 COMMON_END(PRU_DISCONNECT
);
598 * Accept a connection. Essentially all the work is
599 * done at higher levels; just return the address
600 * of the peer, storing through addr.
603 tcp_usr_accept(struct socket
*so
, struct sockaddr
**nam
)
607 struct tcpcb
*tp
= NULL
;
612 if (so
->so_state
& SS_ISDISCONNECTED
) {
613 error
= ECONNABORTED
;
622 in_setpeeraddr(so
, nam
);
623 COMMON_END(PRU_ACCEPT
);
628 tcp6_usr_accept(struct socket
*so
, struct sockaddr
**nam
)
632 struct tcpcb
*tp
= NULL
;
638 if (so
->so_state
& SS_ISDISCONNECTED
) {
639 error
= ECONNABORTED
;
648 in6_mapped_peeraddr(so
, nam
);
649 COMMON_END(PRU_ACCEPT
);
653 * Mark the connection as being incapable of further output.
656 tcp_usr_shutdown(struct socket
*so
)
662 COMMON_START(so
, inp
, 0);
664 tp
= tcp_usrclosed(tp
);
666 error
= tcp_output(tp
);
667 COMMON_END(PRU_SHUTDOWN
);
671 * After a receive, possibly send window update to peer.
674 tcp_usr_rcvd(struct socket
*so
, int flags
)
680 COMMON_START(so
, inp
, 0);
682 COMMON_END(PRU_RCVD
);
686 * Do a send by putting data in output queue and updating urgent
687 * marker if URG set. Possibly send more data. Unlike the other
688 * pru_*() routines, the mbuf chains are our responsibility. We
689 * must either enqueue them or free them. The other pru_* routines
690 * generally are caller-frees.
693 tcp_usr_send(struct socket
*so
, int flags
, struct mbuf
*m
,
694 struct sockaddr
*nam
, struct mbuf
*control
, struct thread
*td
)
709 * OOPS! we lost a race, the TCP session got reset after
710 * we checked SS_CANTSENDMORE, eg: while doing uiomove or a
711 * network interrupt in the non-critical section of sosend().
717 error
= ECONNRESET
; /* XXX EPIPE? */
723 isipv6
= nam
&& nam
->sa_family
== AF_INET6
;
728 /* TCP doesn't do control messages (rights, creds, etc) */
729 if (control
->m_len
) {
736 m_freem(control
); /* empty control, just free it */
738 if(!(flags
& PRUS_OOB
)) {
739 ssb_appendstream(&so
->so_snd
, m
);
740 if (nam
&& tp
->t_state
< TCPS_SYN_SENT
) {
742 * Do implied connect if not yet connected,
743 * initialize window to default value, and
744 * initialize maxseg/maxopd using peer's cached
749 error
= tcp6_connect(tp
, nam
, td
);
752 error
= tcp_connect(tp
, nam
, td
);
755 tp
->snd_wnd
= TTCP_CLIENT_SND_WND
;
759 if (flags
& PRUS_EOF
) {
761 * Close the send side of the connection after
765 tp
= tcp_usrclosed(tp
);
768 if (flags
& PRUS_MORETOCOME
)
769 tp
->t_flags
|= TF_MORETOCOME
;
770 error
= tcp_output(tp
);
771 if (flags
& PRUS_MORETOCOME
)
772 tp
->t_flags
&= ~TF_MORETOCOME
;
775 if (ssb_space(&so
->so_snd
) < -512) {
781 * According to RFC961 (Assigned Protocols),
782 * the urgent pointer points to the last octet
783 * of urgent data. We continue, however,
784 * to consider it to indicate the first octet
785 * of data past the urgent section.
786 * Otherwise, snd_up should be one lower.
788 ssb_appendstream(&so
->so_snd
, m
);
789 if (nam
&& tp
->t_state
< TCPS_SYN_SENT
) {
791 * Do implied connect if not yet connected,
792 * initialize window to default value, and
793 * initialize maxseg/maxopd using peer's cached
798 error
= tcp6_connect(tp
, nam
, td
);
801 error
= tcp_connect(tp
, nam
, td
);
804 tp
->snd_wnd
= TTCP_CLIENT_SND_WND
;
807 tp
->snd_up
= tp
->snd_una
+ so
->so_snd
.ssb_cc
;
808 tp
->t_flags
|= TF_FORCE
;
809 error
= tcp_output(tp
);
810 tp
->t_flags
&= ~TF_FORCE
;
812 COMMON_END((flags
& PRUS_OOB
) ? PRU_SENDOOB
:
813 ((flags
& PRUS_EOF
) ? PRU_SEND_EOF
: PRU_SEND
));
820 tcp_usr_abort(struct socket
*so
)
826 COMMON_START(so
, inp
, 1);
827 tp
= tcp_drop(tp
, ECONNABORTED
);
828 COMMON_END(PRU_ABORT
);
832 * Receive out-of-band data.
835 tcp_usr_rcvoob(struct socket
*so
, struct mbuf
*m
, int flags
)
841 COMMON_START(so
, inp
, 0);
842 if ((so
->so_oobmark
== 0 &&
843 (so
->so_state
& SS_RCVATMARK
) == 0) ||
844 so
->so_options
& SO_OOBINLINE
||
845 tp
->t_oobflags
& TCPOOB_HADDATA
) {
849 if ((tp
->t_oobflags
& TCPOOB_HAVEDATA
) == 0) {
854 *mtod(m
, caddr_t
) = tp
->t_iobc
;
855 if ((flags
& MSG_PEEK
) == 0)
856 tp
->t_oobflags
^= (TCPOOB_HAVEDATA
| TCPOOB_HADDATA
);
857 COMMON_END(PRU_RCVOOB
);
860 /* xxx - should be const */
861 struct pr_usrreqs tcp_usrreqs
= {
862 .pru_abort
= tcp_usr_abort
,
863 .pru_accept
= tcp_usr_accept
,
864 .pru_attach
= tcp_usr_attach
,
865 .pru_bind
= tcp_usr_bind
,
866 .pru_connect
= tcp_usr_connect
,
867 .pru_connect2
= pru_connect2_notsupp
,
868 .pru_control
= in_control
,
869 .pru_detach
= tcp_usr_detach
,
870 .pru_disconnect
= tcp_usr_disconnect
,
871 .pru_listen
= tcp_usr_listen
,
872 .pru_peeraddr
= in_setpeeraddr
,
873 .pru_rcvd
= tcp_usr_rcvd
,
874 .pru_rcvoob
= tcp_usr_rcvoob
,
875 .pru_send
= tcp_usr_send
,
876 .pru_sense
= pru_sense_null
,
877 .pru_shutdown
= tcp_usr_shutdown
,
878 .pru_sockaddr
= in_setsockaddr
,
879 .pru_sosend
= sosend
,
880 .pru_soreceive
= soreceive
,
885 struct pr_usrreqs tcp6_usrreqs
= {
886 .pru_abort
= tcp_usr_abort
,
887 .pru_accept
= tcp6_usr_accept
,
888 .pru_attach
= tcp_usr_attach
,
889 .pru_bind
= tcp6_usr_bind
,
890 .pru_connect
= tcp6_usr_connect
,
891 .pru_connect2
= pru_connect2_notsupp
,
892 .pru_control
= in6_control
,
893 .pru_detach
= tcp_usr_detach
,
894 .pru_disconnect
= tcp_usr_disconnect
,
895 .pru_listen
= tcp6_usr_listen
,
896 .pru_peeraddr
= in6_mapped_peeraddr
,
897 .pru_rcvd
= tcp_usr_rcvd
,
898 .pru_rcvoob
= tcp_usr_rcvoob
,
899 .pru_send
= tcp_usr_send
,
900 .pru_sense
= pru_sense_null
,
901 .pru_shutdown
= tcp_usr_shutdown
,
902 .pru_sockaddr
= in6_mapped_sockaddr
,
903 .pru_sosend
= sosend
,
904 .pru_soreceive
= soreceive
,
910 tcp_connect_oncpu(struct tcpcb
*tp
, struct sockaddr_in
*sin
,
911 struct sockaddr_in
*if_sin
)
913 struct inpcb
*inp
= tp
->t_inpcb
, *oinp
;
914 struct socket
*so
= inp
->inp_socket
;
915 struct route
*ro
= &inp
->inp_route
;
917 struct rmxp_tao
*taop
;
918 struct rmxp_tao tao_noncached
;
920 oinp
= in_pcblookup_hash(&tcbinfo
[mycpu
->gd_cpuid
],
921 sin
->sin_addr
, sin
->sin_port
,
922 inp
->inp_laddr
.s_addr
!= INADDR_ANY
?
923 inp
->inp_laddr
: if_sin
->sin_addr
,
924 inp
->inp_lport
, 0, NULL
);
926 if (oinp
!= inp
&& (otp
= intotcpcb(oinp
)) != NULL
&&
927 otp
->t_state
== TCPS_TIME_WAIT
&&
928 (ticks
- otp
->t_starttime
) < tcp_msl
&&
929 (otp
->t_flags
& TF_RCVD_CC
))
934 if (inp
->inp_laddr
.s_addr
== INADDR_ANY
)
935 inp
->inp_laddr
= if_sin
->sin_addr
;
936 inp
->inp_faddr
= sin
->sin_addr
;
937 inp
->inp_fport
= sin
->sin_port
;
938 inp
->inp_cpcbinfo
= &tcbinfo
[mycpu
->gd_cpuid
];
939 in_pcbinsconnhash(inp
);
942 * We are now on the inpcb's owner CPU, if the cached route was
943 * freed because the rtentry's owner CPU is not the current CPU
944 * (e.g. in tcp_connect()), then we try to reallocate it here with
945 * the hope that a rtentry may be cloned from a RTF_PRCLONING
948 if (!(inp
->inp_socket
->so_options
& SO_DONTROUTE
) && /*XXX*/
950 bzero(&ro
->ro_dst
, sizeof(struct sockaddr_in
));
951 ro
->ro_dst
.sa_family
= AF_INET
;
952 ro
->ro_dst
.sa_len
= sizeof(struct sockaddr_in
);
953 ((struct sockaddr_in
*)&ro
->ro_dst
)->sin_addr
=
958 tcp_create_timermsg(tp
);
960 /* Compute window scaling to request. */
961 while (tp
->request_r_scale
< TCP_MAX_WINSHIFT
&&
962 (TCP_MAXWIN
<< tp
->request_r_scale
) < so
->so_rcv
.ssb_hiwat
)
963 tp
->request_r_scale
++;
966 tcpstat
.tcps_connattempt
++;
967 tp
->t_state
= TCPS_SYN_SENT
;
968 tcp_callout_reset(tp
, tp
->tt_keep
, tcp_keepinit
, tcp_timer_keep
);
969 tp
->iss
= tcp_new_isn(tp
);
973 * Generate a CC value for this connection and
974 * check whether CC or CCnew should be used.
976 if ((taop
= tcp_gettaocache(&tp
->t_inpcb
->inp_inc
)) == NULL
) {
977 taop
= &tao_noncached
;
978 bzero(taop
, sizeof *taop
);
981 tp
->cc_send
= CC_INC(tcp_ccgen
);
982 if (taop
->tao_ccsent
!= 0 &&
983 CC_GEQ(tp
->cc_send
, taop
->tao_ccsent
)) {
984 taop
->tao_ccsent
= tp
->cc_send
;
986 taop
->tao_ccsent
= 0;
987 tp
->t_flags
|= TF_SENDCCNEW
;
995 struct netmsg_tcp_connect
{
996 struct netmsg nm_netmsg
;
998 struct sockaddr_in
*nm_sin
;
999 struct sockaddr_in
*nm_ifsin
;
1003 tcp_connect_handler(netmsg_t netmsg
)
1005 struct netmsg_tcp_connect
*msg
= (void *)netmsg
;
1008 error
= tcp_connect_oncpu(msg
->nm_tp
, msg
->nm_sin
, msg
->nm_ifsin
);
1009 lwkt_replymsg(&msg
->nm_netmsg
.nm_lmsg
, error
);
1015 * Common subroutine to open a TCP connection to remote host specified
1016 * by struct sockaddr_in in mbuf *nam. Call in_pcbbind to assign a local
1017 * port number if needed. Call in_pcbladdr to do the routing and to choose
1018 * a local host address (interface). If there is an existing incarnation
1019 * of the same connection in TIME-WAIT state and if the remote host was
1020 * sending CC options and if the connection duration was < MSL, then
1021 * truncate the previous TIME-WAIT state and proceed.
1022 * Initialize connection parameters and enter SYN-SENT state.
1025 tcp_connect(struct tcpcb
*tp
, struct sockaddr
*nam
, struct thread
*td
)
1027 struct inpcb
*inp
= tp
->t_inpcb
;
1028 struct sockaddr_in
*sin
= (struct sockaddr_in
*)nam
;
1029 struct sockaddr_in
*if_sin
;
1035 if (inp
->inp_lport
== 0) {
1036 error
= in_pcbbind(inp
, NULL
, td
);
1042 * Cannot simply call in_pcbconnect, because there might be an
1043 * earlier incarnation of this same connection still in
1044 * TIME_WAIT state, creating an ADDRINUSE error.
1046 error
= in_pcbladdr(inp
, nam
, &if_sin
, td
);
1051 port
= tcp_addrport(sin
->sin_addr
.s_addr
, sin
->sin_port
,
1052 inp
->inp_laddr
.s_addr
?
1053 inp
->inp_laddr
.s_addr
: if_sin
->sin_addr
.s_addr
,
1056 if (port
!= &curthread
->td_msgport
) {
1057 struct netmsg_tcp_connect msg
;
1058 struct route
*ro
= &inp
->inp_route
;
1061 * in_pcbladdr() may have allocated a route entry for us
1062 * on the current CPU, but we need a route entry on the
1063 * inpcb's owner CPU, so free it here.
1065 if (ro
->ro_rt
!= NULL
)
1067 bzero(ro
, sizeof(*ro
));
1069 netmsg_init(&msg
.nm_netmsg
, &curthread
->td_msgport
, 0,
1070 tcp_connect_handler
);
1073 msg
.nm_ifsin
= if_sin
;
1074 error
= lwkt_domsg(port
, &msg
.nm_netmsg
.nm_lmsg
, 0);
1077 error
= tcp_connect_oncpu(tp
, sin
, if_sin
);
1084 tcp6_connect(struct tcpcb
*tp
, struct sockaddr
*nam
, struct thread
*td
)
1086 struct inpcb
*inp
= tp
->t_inpcb
, *oinp
;
1087 struct socket
*so
= inp
->inp_socket
;
1089 struct sockaddr_in6
*sin6
= (struct sockaddr_in6
*)nam
;
1090 struct in6_addr
*addr6
;
1091 struct rmxp_tao
*taop
;
1092 struct rmxp_tao tao_noncached
;
1095 if (inp
->inp_lport
== 0) {
1096 error
= in6_pcbbind(inp
, NULL
, td
);
1102 * Cannot simply call in_pcbconnect, because there might be an
1103 * earlier incarnation of this same connection still in
1104 * TIME_WAIT state, creating an ADDRINUSE error.
1106 error
= in6_pcbladdr(inp
, nam
, &addr6
, td
);
1109 oinp
= in6_pcblookup_hash(inp
->inp_cpcbinfo
,
1110 &sin6
->sin6_addr
, sin6
->sin6_port
,
1111 IN6_IS_ADDR_UNSPECIFIED(&inp
->in6p_laddr
) ?
1112 addr6
: &inp
->in6p_laddr
,
1113 inp
->inp_lport
, 0, NULL
);
1115 if (oinp
!= inp
&& (otp
= intotcpcb(oinp
)) != NULL
&&
1116 otp
->t_state
== TCPS_TIME_WAIT
&&
1117 (ticks
- otp
->t_starttime
) < tcp_msl
&&
1118 (otp
->t_flags
& TF_RCVD_CC
))
1119 otp
= tcp_close(otp
);
1121 return (EADDRINUSE
);
1123 if (IN6_IS_ADDR_UNSPECIFIED(&inp
->in6p_laddr
))
1124 inp
->in6p_laddr
= *addr6
;
1125 inp
->in6p_faddr
= sin6
->sin6_addr
;
1126 inp
->inp_fport
= sin6
->sin6_port
;
1127 if ((sin6
->sin6_flowinfo
& IPV6_FLOWINFO_MASK
) != 0)
1128 inp
->in6p_flowinfo
= sin6
->sin6_flowinfo
;
1129 in_pcbinsconnhash(inp
);
1131 /* Compute window scaling to request. */
1132 while (tp
->request_r_scale
< TCP_MAX_WINSHIFT
&&
1133 (TCP_MAXWIN
<< tp
->request_r_scale
) < so
->so_rcv
.ssb_hiwat
)
1134 tp
->request_r_scale
++;
1137 tcpstat
.tcps_connattempt
++;
1138 tp
->t_state
= TCPS_SYN_SENT
;
1139 tcp_callout_reset(tp
, tp
->tt_keep
, tcp_keepinit
, tcp_timer_keep
);
1140 tp
->iss
= tcp_new_isn(tp
);
1141 tcp_sendseqinit(tp
);
1144 * Generate a CC value for this connection and
1145 * check whether CC or CCnew should be used.
1147 if ((taop
= tcp_gettaocache(&tp
->t_inpcb
->inp_inc
)) == NULL
) {
1148 taop
= &tao_noncached
;
1149 bzero(taop
, sizeof *taop
);
1152 tp
->cc_send
= CC_INC(tcp_ccgen
);
1153 if (taop
->tao_ccsent
!= 0 &&
1154 CC_GEQ(tp
->cc_send
, taop
->tao_ccsent
)) {
1155 taop
->tao_ccsent
= tp
->cc_send
;
1157 taop
->tao_ccsent
= 0;
1158 tp
->t_flags
|= TF_SENDCCNEW
;
1166 * The new sockopt interface makes it possible for us to block in the
1167 * copyin/out step (if we take a page fault). Taking a page fault while
1168 * in a critical section is probably a Bad Thing. (Since sockets and pcbs
1169 * both now use TSM, there probably isn't any need for this function to
1170 * run in a critical section any more. This needs more examination.)
1173 tcp_ctloutput(struct socket
*so
, struct sockopt
*sopt
)
1175 int error
, opt
, optval
;
1180 crit_enter(); /* XXX */
1184 return (ECONNRESET
);
1186 if (sopt
->sopt_level
!= IPPROTO_TCP
) {
1188 if (INP_CHECK_SOCKAF(so
, AF_INET6
))
1189 error
= ip6_ctloutput(so
, sopt
);
1192 error
= ip_ctloutput(so
, sopt
);
1196 tp
= intotcpcb(inp
);
1198 switch (sopt
->sopt_dir
) {
1200 error
= soopt_to_kbuf(sopt
, &optval
, sizeof optval
,
1204 switch (sopt
->sopt_name
) {
1207 switch (sopt
->sopt_name
) {
1215 opt
= 0; /* dead code to fool gcc */
1222 tp
->t_flags
&= ~opt
;
1227 tp
->t_flags
|= TF_NOPUSH
;
1229 tp
->t_flags
&= ~TF_NOPUSH
;
1230 error
= tcp_output(tp
);
1235 if (optval
> 0 && optval
<= tp
->t_maxseg
)
1236 tp
->t_maxseg
= optval
;
1242 error
= ENOPROTOOPT
;
1248 switch (sopt
->sopt_name
) {
1250 optval
= tp
->t_flags
& TF_NODELAY
;
1253 optval
= tp
->t_maxseg
;
1256 optval
= tp
->t_flags
& TF_NOOPT
;
1259 optval
= tp
->t_flags
& TF_NOPUSH
;
1262 error
= ENOPROTOOPT
;
1266 soopt_from_kbuf(sopt
, &optval
, sizeof optval
);
1274 * tcp_sendspace and tcp_recvspace are the default send and receive window
1275 * sizes, respectively. These are obsolescent (this information should
1276 * be set by the route).
1278 * Use a default that does not require tcp window scaling to be turned
1279 * on. Individual programs or the administrator can increase the default.
1281 u_long tcp_sendspace
= 57344; /* largest multiple of PAGE_SIZE < 64k */
1282 SYSCTL_INT(_net_inet_tcp
, TCPCTL_SENDSPACE
, sendspace
, CTLFLAG_RW
,
1283 &tcp_sendspace
, 0, "Maximum outgoing TCP datagram size");
1284 u_long tcp_recvspace
= 57344; /* largest multiple of PAGE_SIZE < 64k */
1285 SYSCTL_INT(_net_inet_tcp
, TCPCTL_RECVSPACE
, recvspace
, CTLFLAG_RW
,
1286 &tcp_recvspace
, 0, "Maximum incoming TCP datagram size");
1289 * Attach TCP protocol to socket, allocating
1290 * internet protocol control block, tcp control block,
1291 * bufer space, and entering LISTEN state if to accept connections.
1294 tcp_attach(struct socket
*so
, struct pru_attach_info
*ai
)
1301 int isipv6
= INP_CHECK_SOCKAF(so
, AF_INET6
) != 0;
1304 if (so
->so_snd
.ssb_hiwat
== 0 || so
->so_rcv
.ssb_hiwat
== 0) {
1305 error
= soreserve(so
, tcp_sendspace
, tcp_recvspace
,
1310 cpu
= mycpu
->gd_cpuid
;
1311 error
= in_pcballoc(so
, &tcbinfo
[cpu
]);
1317 inp
->inp_vflag
|= INP_IPV6
;
1318 inp
->in6p_hops
= -1; /* use kernel default */
1322 inp
->inp_vflag
|= INP_IPV4
;
1323 tp
= tcp_newtcpcb(inp
);
1325 int nofd
= so
->so_state
& SS_NOFDREF
; /* XXX */
1327 so
->so_state
&= ~SS_NOFDREF
; /* don't free the socket yet */
1334 so
->so_state
|= nofd
;
1337 tp
->t_state
= TCPS_CLOSED
;
1342 * Initiate (or continue) disconnect.
1343 * If embryonic state, just send reset (once).
1344 * If in ``let data drain'' option and linger null, just drop.
1345 * Otherwise (hard), mark socket disconnecting and drop
1346 * current input data; switch states based on user close, and
1347 * send segment to peer (with FIN).
1349 static struct tcpcb
*
1350 tcp_disconnect(struct tcpcb
*tp
)
1352 struct socket
*so
= tp
->t_inpcb
->inp_socket
;
1354 if (tp
->t_state
< TCPS_ESTABLISHED
)
1356 else if ((so
->so_options
& SO_LINGER
) && so
->so_linger
== 0)
1357 tp
= tcp_drop(tp
, 0);
1359 soisdisconnecting(so
);
1360 sbflush(&so
->so_rcv
.sb
);
1361 tp
= tcp_usrclosed(tp
);
1369 * User issued close, and wish to trail through shutdown states:
1370 * if never received SYN, just forget it. If got a SYN from peer,
1371 * but haven't sent FIN, then go to FIN_WAIT_1 state to send peer a FIN.
1372 * If already got a FIN from peer, then almost done; go to LAST_ACK
1373 * state. In all other cases, have already sent FIN to peer (e.g.
1374 * after PRU_SHUTDOWN), and just have to play tedious game waiting
1375 * for peer to send FIN or not respond to keep-alives, etc.
1376 * We can let the user exit from the close as soon as the FIN is acked.
1378 static struct tcpcb
*
1379 tcp_usrclosed(struct tcpcb
*tp
)
1382 switch (tp
->t_state
) {
1386 tp
->t_state
= TCPS_CLOSED
;
1391 case TCPS_SYN_RECEIVED
:
1392 tp
->t_flags
|= TF_NEEDFIN
;
1395 case TCPS_ESTABLISHED
:
1396 tp
->t_state
= TCPS_FIN_WAIT_1
;
1399 case TCPS_CLOSE_WAIT
:
1400 tp
->t_state
= TCPS_LAST_ACK
;
1403 if (tp
&& tp
->t_state
>= TCPS_FIN_WAIT_2
) {
1404 soisdisconnected(tp
->t_inpcb
->inp_socket
);
1405 /* To prevent the connection hanging in FIN_WAIT_2 forever. */
1406 if (tp
->t_state
== TCPS_FIN_WAIT_2
) {
1407 tcp_callout_reset(tp
, tp
->tt_2msl
, tcp_maxidle
,