xref: /freebsd/sys/netinet/tcp_usrreq.c (revision a0292f237572bd29b1bd4b376a2198c6f404e349)
1df8bae1dSRodney W. Grimes /*
2df8bae1dSRodney W. Grimes  * Copyright (c) 1982, 1986, 1988, 1993
3df8bae1dSRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
4df8bae1dSRodney W. Grimes  *
5df8bae1dSRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
6df8bae1dSRodney W. Grimes  * modification, are permitted provided that the following conditions
7df8bae1dSRodney W. Grimes  * are met:
8df8bae1dSRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
9df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
10df8bae1dSRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
11df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
12df8bae1dSRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
13df8bae1dSRodney W. Grimes  * 3. All advertising materials mentioning features or use of this software
14df8bae1dSRodney W. Grimes  *    must display the following acknowledgement:
15df8bae1dSRodney W. Grimes  *	This product includes software developed by the University of
16df8bae1dSRodney W. Grimes  *	California, Berkeley and its contributors.
17df8bae1dSRodney W. Grimes  * 4. Neither the name of the University nor the names of its contributors
18df8bae1dSRodney W. Grimes  *    may be used to endorse or promote products derived from this software
19df8bae1dSRodney W. Grimes  *    without specific prior written permission.
20df8bae1dSRodney W. Grimes  *
21df8bae1dSRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22df8bae1dSRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23df8bae1dSRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24df8bae1dSRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25df8bae1dSRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26df8bae1dSRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27df8bae1dSRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28df8bae1dSRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29df8bae1dSRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30df8bae1dSRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31df8bae1dSRodney W. Grimes  * SUCH DAMAGE.
32df8bae1dSRodney W. Grimes  *
33df8bae1dSRodney W. Grimes  *	@(#)tcp_usrreq.c	8.2 (Berkeley) 1/3/94
34a0292f23SGarrett Wollman  * $Id: tcp_usrreq.c,v 1.6 1994/12/15 20:39:34 wollman Exp $
35df8bae1dSRodney W. Grimes  */
36df8bae1dSRodney W. Grimes 
37df8bae1dSRodney W. Grimes #include <sys/param.h>
38df8bae1dSRodney W. Grimes #include <sys/systm.h>
39df8bae1dSRodney W. Grimes #include <sys/malloc.h>
40df8bae1dSRodney W. Grimes #include <sys/mbuf.h>
41df8bae1dSRodney W. Grimes #include <sys/socket.h>
42df8bae1dSRodney W. Grimes #include <sys/socketvar.h>
43df8bae1dSRodney W. Grimes #include <sys/protosw.h>
44df8bae1dSRodney W. Grimes #include <sys/errno.h>
45df8bae1dSRodney W. Grimes #include <sys/stat.h>
46df8bae1dSRodney W. Grimes 
47df8bae1dSRodney W. Grimes #include <net/if.h>
48df8bae1dSRodney W. Grimes #include <net/route.h>
49df8bae1dSRodney W. Grimes 
50df8bae1dSRodney W. Grimes #include <netinet/in.h>
51df8bae1dSRodney W. Grimes #include <netinet/in_systm.h>
52df8bae1dSRodney W. Grimes #include <netinet/ip.h>
53df8bae1dSRodney W. Grimes #include <netinet/in_pcb.h>
54df8bae1dSRodney W. Grimes #include <netinet/ip_var.h>
55df8bae1dSRodney W. Grimes #include <netinet/tcp.h>
56df8bae1dSRodney W. Grimes #include <netinet/tcp_fsm.h>
57df8bae1dSRodney W. Grimes #include <netinet/tcp_seq.h>
58df8bae1dSRodney W. Grimes #include <netinet/tcp_timer.h>
59df8bae1dSRodney W. Grimes #include <netinet/tcp_var.h>
60df8bae1dSRodney W. Grimes #include <netinet/tcpip.h>
61610ee2f9SDavid Greenman #ifdef TCPDEBUG
62df8bae1dSRodney W. Grimes #include <netinet/tcp_debug.h>
63610ee2f9SDavid Greenman #endif
64df8bae1dSRodney W. Grimes 
65df8bae1dSRodney W. Grimes /*
66df8bae1dSRodney W. Grimes  * TCP protocol interface to socket abstraction.
67df8bae1dSRodney W. Grimes  */
68df8bae1dSRodney W. Grimes extern	char *tcpstates[];
69df8bae1dSRodney W. Grimes 
70df8bae1dSRodney W. Grimes /*
71df8bae1dSRodney W. Grimes  * Process a TCP user request for TCP tb.  If this is a send request
72df8bae1dSRodney W. Grimes  * then m is the mbuf chain of send data.  If this is a timer expiration
73df8bae1dSRodney W. Grimes  * (called from the software clock routine), then timertype tells which timer.
74df8bae1dSRodney W. Grimes  */
75df8bae1dSRodney W. Grimes /*ARGSUSED*/
76df8bae1dSRodney W. Grimes int
77df8bae1dSRodney W. Grimes tcp_usrreq(so, req, m, nam, control)
78df8bae1dSRodney W. Grimes 	struct socket *so;
79df8bae1dSRodney W. Grimes 	int req;
80df8bae1dSRodney W. Grimes 	struct mbuf *m, *nam, *control;
81df8bae1dSRodney W. Grimes {
82df8bae1dSRodney W. Grimes 	register struct inpcb *inp;
8326f9a767SRodney W. Grimes 	register struct tcpcb *tp = 0;
849ee39fc6SGarrett Wollman 	struct sockaddr_in *sinp;
85df8bae1dSRodney W. Grimes 	int s;
86df8bae1dSRodney W. Grimes 	int error = 0;
87a0292f23SGarrett Wollman #ifdef TCPDEBUG
88df8bae1dSRodney W. Grimes 	int ostate;
89a0292f23SGarrett Wollman #endif
90df8bae1dSRodney W. Grimes 
91df8bae1dSRodney W. Grimes 	if (req == PRU_CONTROL)
92df8bae1dSRodney W. Grimes 		return (in_control(so, (int)m, (caddr_t)nam,
93df8bae1dSRodney W. Grimes 			(struct ifnet *)control));
94df8bae1dSRodney W. Grimes 	if (control && control->m_len) {
95df8bae1dSRodney W. Grimes 		m_freem(control);
96df8bae1dSRodney W. Grimes 		if (m)
97df8bae1dSRodney W. Grimes 			m_freem(m);
98df8bae1dSRodney W. Grimes 		return (EINVAL);
99df8bae1dSRodney W. Grimes 	}
100df8bae1dSRodney W. Grimes 
101df8bae1dSRodney W. Grimes 	s = splnet();
102df8bae1dSRodney W. Grimes 	inp = sotoinpcb(so);
103df8bae1dSRodney W. Grimes 	/*
104df8bae1dSRodney W. Grimes 	 * When a TCP is attached to a socket, then there will be
105df8bae1dSRodney W. Grimes 	 * a (struct inpcb) pointed at by the socket, and this
106df8bae1dSRodney W. Grimes 	 * structure will point at a subsidary (struct tcpcb).
107df8bae1dSRodney W. Grimes 	 */
108df8bae1dSRodney W. Grimes 	if (inp == 0 && req != PRU_ATTACH) {
109df8bae1dSRodney W. Grimes 		splx(s);
110df8bae1dSRodney W. Grimes 		return (EINVAL);		/* XXX */
111df8bae1dSRodney W. Grimes 	}
112df8bae1dSRodney W. Grimes 	if (inp) {
113df8bae1dSRodney W. Grimes 		tp = intotcpcb(inp);
114df8bae1dSRodney W. Grimes 		/* WHAT IF TP IS 0? */
115df8bae1dSRodney W. Grimes #ifdef KPROF
116df8bae1dSRodney W. Grimes 		tcp_acounts[tp->t_state][req]++;
117df8bae1dSRodney W. Grimes #endif
118a0292f23SGarrett Wollman #ifdef TCPDEBUG
119df8bae1dSRodney W. Grimes 		ostate = tp->t_state;
120df8bae1dSRodney W. Grimes 	} else
121df8bae1dSRodney W. Grimes 		ostate = 0;
122a0292f23SGarrett Wollman #else /* TCPDEBUG */
123a0292f23SGarrett Wollman 	}
124a0292f23SGarrett Wollman #endif /* TCPDEBUG */
125a0292f23SGarrett Wollman 
126df8bae1dSRodney W. Grimes 	switch (req) {
127df8bae1dSRodney W. Grimes 
128df8bae1dSRodney W. Grimes 	/*
129df8bae1dSRodney W. Grimes 	 * TCP attaches to socket via PRU_ATTACH, reserving space,
130df8bae1dSRodney W. Grimes 	 * and an internet control block.
131df8bae1dSRodney W. Grimes 	 */
132df8bae1dSRodney W. Grimes 	case PRU_ATTACH:
133df8bae1dSRodney W. Grimes 		if (inp) {
134df8bae1dSRodney W. Grimes 			error = EISCONN;
135df8bae1dSRodney W. Grimes 			break;
136df8bae1dSRodney W. Grimes 		}
137df8bae1dSRodney W. Grimes 		error = tcp_attach(so);
138df8bae1dSRodney W. Grimes 		if (error)
139df8bae1dSRodney W. Grimes 			break;
140df8bae1dSRodney W. Grimes 		if ((so->so_options & SO_LINGER) && so->so_linger == 0)
141df8bae1dSRodney W. Grimes 			so->so_linger = TCP_LINGERTIME;
142df8bae1dSRodney W. Grimes 		tp = sototcpcb(so);
143df8bae1dSRodney W. Grimes 		break;
144df8bae1dSRodney W. Grimes 
145df8bae1dSRodney W. Grimes 	/*
146df8bae1dSRodney W. Grimes 	 * PRU_DETACH detaches the TCP protocol from the socket.
147df8bae1dSRodney W. Grimes 	 * If the protocol state is non-embryonic, then can't
148df8bae1dSRodney W. Grimes 	 * do this directly: have to initiate a PRU_DISCONNECT,
149df8bae1dSRodney W. Grimes 	 * which may finish later; embryonic TCB's can just
150df8bae1dSRodney W. Grimes 	 * be discarded here.
151df8bae1dSRodney W. Grimes 	 */
152df8bae1dSRodney W. Grimes 	case PRU_DETACH:
153df8bae1dSRodney W. Grimes 		if (tp->t_state > TCPS_LISTEN)
154df8bae1dSRodney W. Grimes 			tp = tcp_disconnect(tp);
155df8bae1dSRodney W. Grimes 		else
156df8bae1dSRodney W. Grimes 			tp = tcp_close(tp);
157df8bae1dSRodney W. Grimes 		break;
158df8bae1dSRodney W. Grimes 
159df8bae1dSRodney W. Grimes 	/*
160df8bae1dSRodney W. Grimes 	 * Give the socket an address.
161df8bae1dSRodney W. Grimes 	 */
162df8bae1dSRodney W. Grimes 	case PRU_BIND:
1639ee39fc6SGarrett Wollman 		/*
1649ee39fc6SGarrett Wollman 		 * Must check for multicast addresses and disallow binding
1659ee39fc6SGarrett Wollman 		 * to them.
1669ee39fc6SGarrett Wollman 		 */
1679ee39fc6SGarrett Wollman 		sinp = mtod(nam, struct sockaddr_in *);
1689ee39fc6SGarrett Wollman 		if (sinp->sin_family == AF_INET &&
1699ee39fc6SGarrett Wollman 		    IN_MULTICAST(ntohl(sinp->sin_addr.s_addr))) {
1709ee39fc6SGarrett Wollman 			error = EAFNOSUPPORT;
1719ee39fc6SGarrett Wollman 			break;
1729ee39fc6SGarrett Wollman 		}
173df8bae1dSRodney W. Grimes 		error = in_pcbbind(inp, nam);
174df8bae1dSRodney W. Grimes 		if (error)
175df8bae1dSRodney W. Grimes 			break;
176df8bae1dSRodney W. Grimes 		break;
177df8bae1dSRodney W. Grimes 
178df8bae1dSRodney W. Grimes 	/*
179df8bae1dSRodney W. Grimes 	 * Prepare to accept connections.
180df8bae1dSRodney W. Grimes 	 */
181df8bae1dSRodney W. Grimes 	case PRU_LISTEN:
182df8bae1dSRodney W. Grimes 		if (inp->inp_lport == 0)
183df8bae1dSRodney W. Grimes 			error = in_pcbbind(inp, (struct mbuf *)0);
184df8bae1dSRodney W. Grimes 		if (error == 0)
185df8bae1dSRodney W. Grimes 			tp->t_state = TCPS_LISTEN;
186df8bae1dSRodney W. Grimes 		break;
187df8bae1dSRodney W. Grimes 
188df8bae1dSRodney W. Grimes 	/*
189df8bae1dSRodney W. Grimes 	 * Initiate connection to peer.
190df8bae1dSRodney W. Grimes 	 * Create a template for use in transmissions on this connection.
191df8bae1dSRodney W. Grimes 	 * Enter SYN_SENT state, and mark socket as connecting.
192df8bae1dSRodney W. Grimes 	 * Start keep-alive timer, and seed output sequence space.
193df8bae1dSRodney W. Grimes 	 * Send initial segment on connection.
194df8bae1dSRodney W. Grimes 	 */
195df8bae1dSRodney W. Grimes 	case PRU_CONNECT:
1969ee39fc6SGarrett Wollman 		/*
1979ee39fc6SGarrett Wollman 		 * Must disallow TCP ``connections'' to multicast addresses.
1989ee39fc6SGarrett Wollman 		 */
1999ee39fc6SGarrett Wollman 		sinp = mtod(nam, struct sockaddr_in *);
2009ee39fc6SGarrett Wollman 		if (sinp->sin_family == AF_INET
2019ee39fc6SGarrett Wollman 		    && IN_MULTICAST(ntohl(sinp->sin_addr.s_addr))) {
2029ee39fc6SGarrett Wollman 			error = EAFNOSUPPORT;
2039ee39fc6SGarrett Wollman 			break;
2049ee39fc6SGarrett Wollman 		}
2059ee39fc6SGarrett Wollman 
206a0292f23SGarrett Wollman #ifdef TTCP
207a0292f23SGarrett Wollman 		if ((error = tcp_connect(tp, nam)) != 0)
208a0292f23SGarrett Wollman 			break;
209a0292f23SGarrett Wollman #else /* TTCP */
210df8bae1dSRodney W. Grimes 		if (inp->inp_lport == 0) {
211df8bae1dSRodney W. Grimes 			error = in_pcbbind(inp, (struct mbuf *)0);
212df8bae1dSRodney W. Grimes 			if (error)
213df8bae1dSRodney W. Grimes 				break;
214df8bae1dSRodney W. Grimes 		}
215df8bae1dSRodney W. Grimes 		error = in_pcbconnect(inp, nam);
216df8bae1dSRodney W. Grimes 		if (error)
217df8bae1dSRodney W. Grimes 			break;
218df8bae1dSRodney W. Grimes 		tp->t_template = tcp_template(tp);
219df8bae1dSRodney W. Grimes 		if (tp->t_template == 0) {
220df8bae1dSRodney W. Grimes 			in_pcbdisconnect(inp);
221df8bae1dSRodney W. Grimes 			error = ENOBUFS;
222df8bae1dSRodney W. Grimes 			break;
223df8bae1dSRodney W. Grimes 		}
224df8bae1dSRodney W. Grimes 		/* Compute window scaling to request.  */
225df8bae1dSRodney W. Grimes 		while (tp->request_r_scale < TCP_MAX_WINSHIFT &&
226df8bae1dSRodney W. Grimes 		    (TCP_MAXWIN << tp->request_r_scale) < so->so_rcv.sb_hiwat)
227df8bae1dSRodney W. Grimes 			tp->request_r_scale++;
228df8bae1dSRodney W. Grimes 		soisconnecting(so);
229df8bae1dSRodney W. Grimes 		tcpstat.tcps_connattempt++;
230df8bae1dSRodney W. Grimes 		tp->t_state = TCPS_SYN_SENT;
231df8bae1dSRodney W. Grimes 		tp->t_timer[TCPT_KEEP] = TCPTV_KEEP_INIT;
232df8bae1dSRodney W. Grimes 		tp->iss = tcp_iss; tcp_iss += TCP_ISSINCR/2;
233df8bae1dSRodney W. Grimes 		tcp_sendseqinit(tp);
234a0292f23SGarrett Wollman #endif /* TTCP */
235df8bae1dSRodney W. Grimes 		error = tcp_output(tp);
236df8bae1dSRodney W. Grimes 		break;
237df8bae1dSRodney W. Grimes 
238df8bae1dSRodney W. Grimes 	/*
239df8bae1dSRodney W. Grimes 	 * Create a TCP connection between two sockets.
240df8bae1dSRodney W. Grimes 	 */
241df8bae1dSRodney W. Grimes 	case PRU_CONNECT2:
242df8bae1dSRodney W. Grimes 		error = EOPNOTSUPP;
243df8bae1dSRodney W. Grimes 		break;
244df8bae1dSRodney W. Grimes 
245df8bae1dSRodney W. Grimes 	/*
246df8bae1dSRodney W. Grimes 	 * Initiate disconnect from peer.
247df8bae1dSRodney W. Grimes 	 * If connection never passed embryonic stage, just drop;
248df8bae1dSRodney W. Grimes 	 * else if don't need to let data drain, then can just drop anyways,
249df8bae1dSRodney W. Grimes 	 * else have to begin TCP shutdown process: mark socket disconnecting,
250df8bae1dSRodney W. Grimes 	 * drain unread data, state switch to reflect user close, and
251df8bae1dSRodney W. Grimes 	 * send segment (e.g. FIN) to peer.  Socket will be really disconnected
252df8bae1dSRodney W. Grimes 	 * when peer sends FIN and acks ours.
253df8bae1dSRodney W. Grimes 	 *
254df8bae1dSRodney W. Grimes 	 * SHOULD IMPLEMENT LATER PRU_CONNECT VIA REALLOC TCPCB.
255df8bae1dSRodney W. Grimes 	 */
256df8bae1dSRodney W. Grimes 	case PRU_DISCONNECT:
257df8bae1dSRodney W. Grimes 		tp = tcp_disconnect(tp);
258df8bae1dSRodney W. Grimes 		break;
259df8bae1dSRodney W. Grimes 
260df8bae1dSRodney W. Grimes 	/*
261df8bae1dSRodney W. Grimes 	 * Accept a connection.  Essentially all the work is
262df8bae1dSRodney W. Grimes 	 * done at higher levels; just return the address
263df8bae1dSRodney W. Grimes 	 * of the peer, storing through addr.
264df8bae1dSRodney W. Grimes 	 */
265df8bae1dSRodney W. Grimes 	case PRU_ACCEPT:
266df8bae1dSRodney W. Grimes 		in_setpeeraddr(inp, nam);
267df8bae1dSRodney W. Grimes 		break;
268df8bae1dSRodney W. Grimes 
269df8bae1dSRodney W. Grimes 	/*
270df8bae1dSRodney W. Grimes 	 * Mark the connection as being incapable of further output.
271df8bae1dSRodney W. Grimes 	 */
272df8bae1dSRodney W. Grimes 	case PRU_SHUTDOWN:
273df8bae1dSRodney W. Grimes 		socantsendmore(so);
274df8bae1dSRodney W. Grimes 		tp = tcp_usrclosed(tp);
275df8bae1dSRodney W. Grimes 		if (tp)
276df8bae1dSRodney W. Grimes 			error = tcp_output(tp);
277df8bae1dSRodney W. Grimes 		break;
278df8bae1dSRodney W. Grimes 
279df8bae1dSRodney W. Grimes 	/*
280df8bae1dSRodney W. Grimes 	 * After a receive, possibly send window update to peer.
281df8bae1dSRodney W. Grimes 	 */
282df8bae1dSRodney W. Grimes 	case PRU_RCVD:
283df8bae1dSRodney W. Grimes 		(void) tcp_output(tp);
284df8bae1dSRodney W. Grimes 		break;
285df8bae1dSRodney W. Grimes 
286df8bae1dSRodney W. Grimes 	/*
287df8bae1dSRodney W. Grimes 	 * Do a send by putting data in output queue and updating urgent
288df8bae1dSRodney W. Grimes 	 * marker if URG set.  Possibly send more data.
289df8bae1dSRodney W. Grimes 	 */
290a0292f23SGarrett Wollman #ifdef TTCP
291a0292f23SGarrett Wollman 	case PRU_SEND_EOF:
292a0292f23SGarrett Wollman #endif
293df8bae1dSRodney W. Grimes 	case PRU_SEND:
294df8bae1dSRodney W. Grimes 		sbappend(&so->so_snd, m);
295a0292f23SGarrett Wollman #ifdef TTCP
296a0292f23SGarrett Wollman 		if (nam && tp->t_state < TCPS_SYN_SENT) {
297a0292f23SGarrett Wollman 			/*
298a0292f23SGarrett Wollman 			 * Do implied connect if not yet connected,
299a0292f23SGarrett Wollman 			 * initialize window to default value, and
300a0292f23SGarrett Wollman 			 * initialize maxseg/maxopd using peer's cached
301a0292f23SGarrett Wollman 			 * MSS.
302a0292f23SGarrett Wollman 			 */
303a0292f23SGarrett Wollman 			error = tcp_connect(tp, nam);
304a0292f23SGarrett Wollman 			if (error)
305a0292f23SGarrett Wollman 				break;
306a0292f23SGarrett Wollman 			tp->snd_wnd = TTCP_CLIENT_SND_WND;
307a0292f23SGarrett Wollman 			tcp_mss(tp, -1);
308a0292f23SGarrett Wollman 		}
309a0292f23SGarrett Wollman 
310a0292f23SGarrett Wollman 		if (req == PRU_SEND_EOF) {
311a0292f23SGarrett Wollman 			/*
312a0292f23SGarrett Wollman 			 * Close the send side of the connection after
313a0292f23SGarrett Wollman 			 * the data is sent.
314a0292f23SGarrett Wollman 			 */
315a0292f23SGarrett Wollman 			socantsendmore(so);
316a0292f23SGarrett Wollman 			tp = tcp_usrclosed(tp);
317a0292f23SGarrett Wollman 		}
318a0292f23SGarrett Wollman 		if (tp != NULL)
319a0292f23SGarrett Wollman #endif TTCP
320df8bae1dSRodney W. Grimes 			error = tcp_output(tp);
321df8bae1dSRodney W. Grimes 		break;
322df8bae1dSRodney W. Grimes 
323df8bae1dSRodney W. Grimes 	/*
324df8bae1dSRodney W. Grimes 	 * Abort the TCP.
325df8bae1dSRodney W. Grimes 	 */
326df8bae1dSRodney W. Grimes 	case PRU_ABORT:
327df8bae1dSRodney W. Grimes 		tp = tcp_drop(tp, ECONNABORTED);
328df8bae1dSRodney W. Grimes 		break;
329df8bae1dSRodney W. Grimes 
330df8bae1dSRodney W. Grimes 	case PRU_SENSE:
331df8bae1dSRodney W. Grimes 		((struct stat *) m)->st_blksize = so->so_snd.sb_hiwat;
332df8bae1dSRodney W. Grimes 		(void) splx(s);
333df8bae1dSRodney W. Grimes 		return (0);
334df8bae1dSRodney W. Grimes 
335df8bae1dSRodney W. Grimes 	case PRU_RCVOOB:
336df8bae1dSRodney W. Grimes 		if ((so->so_oobmark == 0 &&
337df8bae1dSRodney W. Grimes 		    (so->so_state & SS_RCVATMARK) == 0) ||
338df8bae1dSRodney W. Grimes 		    so->so_options & SO_OOBINLINE ||
339df8bae1dSRodney W. Grimes 		    tp->t_oobflags & TCPOOB_HADDATA) {
340df8bae1dSRodney W. Grimes 			error = EINVAL;
341df8bae1dSRodney W. Grimes 			break;
342df8bae1dSRodney W. Grimes 		}
343df8bae1dSRodney W. Grimes 		if ((tp->t_oobflags & TCPOOB_HAVEDATA) == 0) {
344df8bae1dSRodney W. Grimes 			error = EWOULDBLOCK;
345df8bae1dSRodney W. Grimes 			break;
346df8bae1dSRodney W. Grimes 		}
347df8bae1dSRodney W. Grimes 		m->m_len = 1;
348df8bae1dSRodney W. Grimes 		*mtod(m, caddr_t) = tp->t_iobc;
349df8bae1dSRodney W. Grimes 		if (((int)nam & MSG_PEEK) == 0)
350df8bae1dSRodney W. Grimes 			tp->t_oobflags ^= (TCPOOB_HAVEDATA | TCPOOB_HADDATA);
351df8bae1dSRodney W. Grimes 		break;
352df8bae1dSRodney W. Grimes 
353df8bae1dSRodney W. Grimes 	case PRU_SENDOOB:
354df8bae1dSRodney W. Grimes 		if (sbspace(&so->so_snd) < -512) {
355df8bae1dSRodney W. Grimes 			m_freem(m);
356df8bae1dSRodney W. Grimes 			error = ENOBUFS;
357df8bae1dSRodney W. Grimes 			break;
358df8bae1dSRodney W. Grimes 		}
359df8bae1dSRodney W. Grimes 		/*
360df8bae1dSRodney W. Grimes 		 * According to RFC961 (Assigned Protocols),
361df8bae1dSRodney W. Grimes 		 * the urgent pointer points to the last octet
362df8bae1dSRodney W. Grimes 		 * of urgent data.  We continue, however,
363df8bae1dSRodney W. Grimes 		 * to consider it to indicate the first octet
364df8bae1dSRodney W. Grimes 		 * of data past the urgent section.
365df8bae1dSRodney W. Grimes 		 * Otherwise, snd_up should be one lower.
366df8bae1dSRodney W. Grimes 		 */
367df8bae1dSRodney W. Grimes 		sbappend(&so->so_snd, m);
368df8bae1dSRodney W. Grimes 		tp->snd_up = tp->snd_una + so->so_snd.sb_cc;
369df8bae1dSRodney W. Grimes 		tp->t_force = 1;
370df8bae1dSRodney W. Grimes 		error = tcp_output(tp);
371df8bae1dSRodney W. Grimes 		tp->t_force = 0;
372df8bae1dSRodney W. Grimes 		break;
373df8bae1dSRodney W. Grimes 
374df8bae1dSRodney W. Grimes 	case PRU_SOCKADDR:
375df8bae1dSRodney W. Grimes 		in_setsockaddr(inp, nam);
376df8bae1dSRodney W. Grimes 		break;
377df8bae1dSRodney W. Grimes 
378df8bae1dSRodney W. Grimes 	case PRU_PEERADDR:
379df8bae1dSRodney W. Grimes 		in_setpeeraddr(inp, nam);
380df8bae1dSRodney W. Grimes 		break;
381df8bae1dSRodney W. Grimes 
382df8bae1dSRodney W. Grimes 	/*
383df8bae1dSRodney W. Grimes 	 * TCP slow timer went off; going through this
384df8bae1dSRodney W. Grimes 	 * routine for tracing's sake.
385df8bae1dSRodney W. Grimes 	 */
386df8bae1dSRodney W. Grimes 	case PRU_SLOWTIMO:
387df8bae1dSRodney W. Grimes 		tp = tcp_timers(tp, (int)nam);
388a0292f23SGarrett Wollman #ifdef TCPDEBUG
389df8bae1dSRodney W. Grimes 		req |= (int)nam << 8;		/* for debug's sake */
390a0292f23SGarrett Wollman #endif
391df8bae1dSRodney W. Grimes 		break;
392df8bae1dSRodney W. Grimes 
393df8bae1dSRodney W. Grimes 	default:
394df8bae1dSRodney W. Grimes 		panic("tcp_usrreq");
395df8bae1dSRodney W. Grimes 	}
396610ee2f9SDavid Greenman #ifdef TCPDEBUG
397df8bae1dSRodney W. Grimes 	if (tp && (so->so_options & SO_DEBUG))
398df8bae1dSRodney W. Grimes 		tcp_trace(TA_USER, ostate, tp, (struct tcpiphdr *)0, req);
399610ee2f9SDavid Greenman #endif
400df8bae1dSRodney W. Grimes 	splx(s);
401df8bae1dSRodney W. Grimes 	return (error);
402df8bae1dSRodney W. Grimes }
403df8bae1dSRodney W. Grimes 
404a0292f23SGarrett Wollman #ifdef TTCP
405a0292f23SGarrett Wollman /*
406a0292f23SGarrett Wollman  * Common subroutine to open a TCP connection to remote host specified
407a0292f23SGarrett Wollman  * by struct sockaddr_in in mbuf *nam.  Call in_pcbbind to assign a local
408a0292f23SGarrett Wollman  * port number if needed.  Call in_pcbladdr to do the routing and to choose
409a0292f23SGarrett Wollman  * a local host address (interface).  If there is an existing incarnation
410a0292f23SGarrett Wollman  * of the same connection in TIME-WAIT state and if the remote host was
411a0292f23SGarrett Wollman  * sending CC options and if the connection duration was < MSL, then
412a0292f23SGarrett Wollman  * truncate the previous TIME-WAIT state and proceed.
413a0292f23SGarrett Wollman  * Initialize connection parameters and enter SYN-SENT state.
414a0292f23SGarrett Wollman  */
415a0292f23SGarrett Wollman int
416a0292f23SGarrett Wollman tcp_connect(tp, nam)
417a0292f23SGarrett Wollman 	register struct tcpcb *tp;
418a0292f23SGarrett Wollman 	struct mbuf *nam;
419a0292f23SGarrett Wollman {
420a0292f23SGarrett Wollman 	struct inpcb *inp = tp->t_inpcb, *oinp;
421a0292f23SGarrett Wollman 	struct socket *so = inp->inp_socket;
422a0292f23SGarrett Wollman 	struct tcpcb *otp;
423a0292f23SGarrett Wollman 	struct sockaddr_in *sin = mtod(nam, struct sockaddr_in *);
424a0292f23SGarrett Wollman 	struct sockaddr_in *ifaddr;
425a0292f23SGarrett Wollman 	int error;
426a0292f23SGarrett Wollman 
427a0292f23SGarrett Wollman 	if (inp->inp_lport == 0) {
428a0292f23SGarrett Wollman 		error = in_pcbbind(inp, NULL);
429a0292f23SGarrett Wollman 		if (error)
430a0292f23SGarrett Wollman 			return error;
431a0292f23SGarrett Wollman 	}
432a0292f23SGarrett Wollman 
433a0292f23SGarrett Wollman 	/*
434a0292f23SGarrett Wollman 	 * Cannot simply call in_pcbconnect, because there might be an
435a0292f23SGarrett Wollman 	 * earlier incarnation of this same connection still in
436a0292f23SGarrett Wollman 	 * TIME_WAIT state, creating an ADDRINUSE error.
437a0292f23SGarrett Wollman 	 */
438a0292f23SGarrett Wollman 	error = in_pcbladdr(inp, nam, &ifaddr);
439a0292f23SGarrett Wollman 	oinp = in_pcblookup(inp->inp_head,
440a0292f23SGarrett Wollman 	    sin->sin_addr, sin->sin_port,
441a0292f23SGarrett Wollman 	    inp->inp_laddr.s_addr != INADDR_ANY ? inp->inp_laddr
442a0292f23SGarrett Wollman 						: ifaddr->sin_addr,
443a0292f23SGarrett Wollman 	    inp->inp_lport,  0);
444a0292f23SGarrett Wollman 	if (oinp) {
445a0292f23SGarrett Wollman 		if (oinp != inp && (otp = intotcpcb(oinp)) != NULL &&
446a0292f23SGarrett Wollman 		otp->t_state == TCPS_TIME_WAIT &&
447a0292f23SGarrett Wollman 		    otp->t_duration < TCPTV_MSL &&
448a0292f23SGarrett Wollman 		    (otp->t_flags & TF_RCVD_CC))
449a0292f23SGarrett Wollman 			otp = tcp_close(otp);
450a0292f23SGarrett Wollman 		else
451a0292f23SGarrett Wollman 			return EADDRINUSE;
452a0292f23SGarrett Wollman 	}
453a0292f23SGarrett Wollman 	if (inp->inp_laddr.s_addr == INADDR_ANY)
454a0292f23SGarrett Wollman 		inp->inp_laddr = ifaddr->sin_addr;
455a0292f23SGarrett Wollman 	inp->inp_faddr = sin->sin_addr;
456a0292f23SGarrett Wollman 	inp->inp_fport = sin->sin_port;
457a0292f23SGarrett Wollman 
458a0292f23SGarrett Wollman 	tp->t_template = tcp_template(tp);
459a0292f23SGarrett Wollman 	if (tp->t_template == 0) {
460a0292f23SGarrett Wollman 		in_pcbdisconnect(inp);
461a0292f23SGarrett Wollman 		return ENOBUFS;
462a0292f23SGarrett Wollman 	}
463a0292f23SGarrett Wollman 
464a0292f23SGarrett Wollman 	/* Compute window scaling to request.  */
465a0292f23SGarrett Wollman 	while (tp->request_r_scale < TCP_MAX_WINSHIFT &&
466a0292f23SGarrett Wollman 	    (TCP_MAXWIN << tp->request_r_scale) < so->so_rcv.sb_hiwat)
467a0292f23SGarrett Wollman 		tp->request_r_scale++;
468a0292f23SGarrett Wollman 
469a0292f23SGarrett Wollman 	soisconnecting(so);
470a0292f23SGarrett Wollman 	tcpstat.tcps_connattempt++;
471a0292f23SGarrett Wollman 	tp->t_state = TCPS_SYN_SENT;
472a0292f23SGarrett Wollman 	tp->t_timer[TCPT_KEEP] = TCPTV_KEEP_INIT;
473a0292f23SGarrett Wollman 	tp->iss = tcp_iss; tcp_iss += TCP_ISSINCR/2;
474a0292f23SGarrett Wollman 	tcp_sendseqinit(tp);
475a0292f23SGarrett Wollman 	tp->cc_send = CC_INC(tcp_ccgen);
476a0292f23SGarrett Wollman 
477a0292f23SGarrett Wollman 	return 0;
478a0292f23SGarrett Wollman }
479a0292f23SGarrett Wollman #endif /* TTCP */
480a0292f23SGarrett Wollman 
481df8bae1dSRodney W. Grimes int
482df8bae1dSRodney W. Grimes tcp_ctloutput(op, so, level, optname, mp)
483df8bae1dSRodney W. Grimes 	int op;
484df8bae1dSRodney W. Grimes 	struct socket *so;
485df8bae1dSRodney W. Grimes 	int level, optname;
486df8bae1dSRodney W. Grimes 	struct mbuf **mp;
487df8bae1dSRodney W. Grimes {
488df8bae1dSRodney W. Grimes 	int error = 0, s;
489df8bae1dSRodney W. Grimes 	struct inpcb *inp;
490df8bae1dSRodney W. Grimes 	register struct tcpcb *tp;
491df8bae1dSRodney W. Grimes 	register struct mbuf *m;
492df8bae1dSRodney W. Grimes 	register int i;
493df8bae1dSRodney W. Grimes 
494df8bae1dSRodney W. Grimes 	s = splnet();
495df8bae1dSRodney W. Grimes 	inp = sotoinpcb(so);
496df8bae1dSRodney W. Grimes 	if (inp == NULL) {
497df8bae1dSRodney W. Grimes 		splx(s);
498df8bae1dSRodney W. Grimes 		if (op == PRCO_SETOPT && *mp)
499df8bae1dSRodney W. Grimes 			(void) m_free(*mp);
500df8bae1dSRodney W. Grimes 		return (ECONNRESET);
501df8bae1dSRodney W. Grimes 	}
502df8bae1dSRodney W. Grimes 	if (level != IPPROTO_TCP) {
503df8bae1dSRodney W. Grimes 		error = ip_ctloutput(op, so, level, optname, mp);
504df8bae1dSRodney W. Grimes 		splx(s);
505df8bae1dSRodney W. Grimes 		return (error);
506df8bae1dSRodney W. Grimes 	}
507df8bae1dSRodney W. Grimes 	tp = intotcpcb(inp);
508df8bae1dSRodney W. Grimes 
509df8bae1dSRodney W. Grimes 	switch (op) {
510df8bae1dSRodney W. Grimes 
511df8bae1dSRodney W. Grimes 	case PRCO_SETOPT:
512df8bae1dSRodney W. Grimes 		m = *mp;
513df8bae1dSRodney W. Grimes 		switch (optname) {
514df8bae1dSRodney W. Grimes 
515df8bae1dSRodney W. Grimes 		case TCP_NODELAY:
516df8bae1dSRodney W. Grimes 			if (m == NULL || m->m_len < sizeof (int))
517df8bae1dSRodney W. Grimes 				error = EINVAL;
518df8bae1dSRodney W. Grimes 			else if (*mtod(m, int *))
519df8bae1dSRodney W. Grimes 				tp->t_flags |= TF_NODELAY;
520df8bae1dSRodney W. Grimes 			else
521df8bae1dSRodney W. Grimes 				tp->t_flags &= ~TF_NODELAY;
522df8bae1dSRodney W. Grimes 			break;
523df8bae1dSRodney W. Grimes 
524df8bae1dSRodney W. Grimes 		case TCP_MAXSEG:
525df8bae1dSRodney W. Grimes 			if (m && (i = *mtod(m, int *)) > 0 && i <= tp->t_maxseg)
526df8bae1dSRodney W. Grimes 				tp->t_maxseg = i;
527df8bae1dSRodney W. Grimes 			else
528df8bae1dSRodney W. Grimes 				error = EINVAL;
529df8bae1dSRodney W. Grimes 			break;
530df8bae1dSRodney W. Grimes 
531a0292f23SGarrett Wollman #ifdef TTCP
532a0292f23SGarrett Wollman 		case TCP_NOOPT:
533a0292f23SGarrett Wollman 			if (m == NULL || m->m_len < sizeof (int))
534a0292f23SGarrett Wollman 				error = EINVAL;
535a0292f23SGarrett Wollman 			else if (*mtod(m, int *))
536a0292f23SGarrett Wollman 				tp->t_flags |= TF_NOOPT;
537a0292f23SGarrett Wollman 			else
538a0292f23SGarrett Wollman 				tp->t_flags &= ~TF_NOOPT;
539a0292f23SGarrett Wollman 			break;
540a0292f23SGarrett Wollman 
541a0292f23SGarrett Wollman 		case TCP_NOPUSH:
542a0292f23SGarrett Wollman 			if (m == NULL || m->m_len < sizeof (int))
543a0292f23SGarrett Wollman 				error = EINVAL;
544a0292f23SGarrett Wollman 			else if (*mtod(m, int *))
545a0292f23SGarrett Wollman 				tp->t_flags |= TF_NOPUSH;
546a0292f23SGarrett Wollman 			else
547a0292f23SGarrett Wollman 				tp->t_flags &= ~TF_NOPUSH;
548a0292f23SGarrett Wollman 			break;
549a0292f23SGarrett Wollman #endif /* TTCP */
550a0292f23SGarrett Wollman 
551df8bae1dSRodney W. Grimes 		default:
552df8bae1dSRodney W. Grimes 			error = ENOPROTOOPT;
553df8bae1dSRodney W. Grimes 			break;
554df8bae1dSRodney W. Grimes 		}
555df8bae1dSRodney W. Grimes 		if (m)
556df8bae1dSRodney W. Grimes 			(void) m_free(m);
557df8bae1dSRodney W. Grimes 		break;
558df8bae1dSRodney W. Grimes 
559df8bae1dSRodney W. Grimes 	case PRCO_GETOPT:
560df8bae1dSRodney W. Grimes 		*mp = m = m_get(M_WAIT, MT_SOOPTS);
561df8bae1dSRodney W. Grimes 		m->m_len = sizeof(int);
562df8bae1dSRodney W. Grimes 
563df8bae1dSRodney W. Grimes 		switch (optname) {
564df8bae1dSRodney W. Grimes 		case TCP_NODELAY:
565df8bae1dSRodney W. Grimes 			*mtod(m, int *) = tp->t_flags & TF_NODELAY;
566df8bae1dSRodney W. Grimes 			break;
567df8bae1dSRodney W. Grimes 		case TCP_MAXSEG:
568df8bae1dSRodney W. Grimes 			*mtod(m, int *) = tp->t_maxseg;
569df8bae1dSRodney W. Grimes 			break;
570a0292f23SGarrett Wollman #ifdef TTCP
571a0292f23SGarrett Wollman 		case TCP_NOOPT:
572a0292f23SGarrett Wollman 			*mtod(m, int *) = tp->t_flags & TF_NOOPT;
573a0292f23SGarrett Wollman 			break;
574a0292f23SGarrett Wollman 		case TCP_NOPUSH:
575a0292f23SGarrett Wollman 			*mtod(m, int *) = tp->t_flags & TF_NOPUSH;
576a0292f23SGarrett Wollman 			break;
577a0292f23SGarrett Wollman #endif /* TTCP */
578df8bae1dSRodney W. Grimes 		default:
579df8bae1dSRodney W. Grimes 			error = ENOPROTOOPT;
580df8bae1dSRodney W. Grimes 			break;
581df8bae1dSRodney W. Grimes 		}
582df8bae1dSRodney W. Grimes 		break;
583df8bae1dSRodney W. Grimes 	}
584df8bae1dSRodney W. Grimes 	splx(s);
585df8bae1dSRodney W. Grimes 	return (error);
586df8bae1dSRodney W. Grimes }
587df8bae1dSRodney W. Grimes 
58826e30fbbSDavid Greenman /*
58926e30fbbSDavid Greenman  * tcp_sendspace and tcp_recvspace are the default send and receive window
59026e30fbbSDavid Greenman  * sizes, respectively.  These are obsolescent (this information should
59126e30fbbSDavid Greenman  * be set by the route).
59226e30fbbSDavid Greenman  */
59326e30fbbSDavid Greenman #ifdef TCP_SMALLSPACE
59426e30fbbSDavid Greenman u_long	tcp_sendspace = 1024*4;
59526e30fbbSDavid Greenman u_long	tcp_recvspace = 1024*4;
59626e30fbbSDavid Greenman #else
59726e30fbbSDavid Greenman u_long	tcp_sendspace = 1024*16;
59826e30fbbSDavid Greenman u_long	tcp_recvspace = 1024*16;
59926e30fbbSDavid Greenman #endif
600df8bae1dSRodney W. Grimes 
601df8bae1dSRodney W. Grimes /*
602df8bae1dSRodney W. Grimes  * Attach TCP protocol to socket, allocating
603df8bae1dSRodney W. Grimes  * internet protocol control block, tcp control block,
604df8bae1dSRodney W. Grimes  * bufer space, and entering LISTEN state if to accept connections.
605df8bae1dSRodney W. Grimes  */
606df8bae1dSRodney W. Grimes int
607df8bae1dSRodney W. Grimes tcp_attach(so)
608df8bae1dSRodney W. Grimes 	struct socket *so;
609df8bae1dSRodney W. Grimes {
610df8bae1dSRodney W. Grimes 	register struct tcpcb *tp;
611df8bae1dSRodney W. Grimes 	struct inpcb *inp;
612df8bae1dSRodney W. Grimes 	int error;
613df8bae1dSRodney W. Grimes 
614df8bae1dSRodney W. Grimes 	if (so->so_snd.sb_hiwat == 0 || so->so_rcv.sb_hiwat == 0) {
615df8bae1dSRodney W. Grimes 		error = soreserve(so, tcp_sendspace, tcp_recvspace);
616df8bae1dSRodney W. Grimes 		if (error)
617df8bae1dSRodney W. Grimes 			return (error);
618df8bae1dSRodney W. Grimes 	}
619df8bae1dSRodney W. Grimes 	error = in_pcballoc(so, &tcb);
620df8bae1dSRodney W. Grimes 	if (error)
621df8bae1dSRodney W. Grimes 		return (error);
622df8bae1dSRodney W. Grimes 	inp = sotoinpcb(so);
623df8bae1dSRodney W. Grimes 	tp = tcp_newtcpcb(inp);
624df8bae1dSRodney W. Grimes 	if (tp == 0) {
625df8bae1dSRodney W. Grimes 		int nofd = so->so_state & SS_NOFDREF;	/* XXX */
626df8bae1dSRodney W. Grimes 
627df8bae1dSRodney W. Grimes 		so->so_state &= ~SS_NOFDREF;	/* don't free the socket yet */
628df8bae1dSRodney W. Grimes 		in_pcbdetach(inp);
629df8bae1dSRodney W. Grimes 		so->so_state |= nofd;
630df8bae1dSRodney W. Grimes 		return (ENOBUFS);
631df8bae1dSRodney W. Grimes 	}
632df8bae1dSRodney W. Grimes 	tp->t_state = TCPS_CLOSED;
633df8bae1dSRodney W. Grimes 	return (0);
634df8bae1dSRodney W. Grimes }
635df8bae1dSRodney W. Grimes 
636df8bae1dSRodney W. Grimes /*
637df8bae1dSRodney W. Grimes  * Initiate (or continue) disconnect.
638df8bae1dSRodney W. Grimes  * If embryonic state, just send reset (once).
639df8bae1dSRodney W. Grimes  * If in ``let data drain'' option and linger null, just drop.
640df8bae1dSRodney W. Grimes  * Otherwise (hard), mark socket disconnecting and drop
641df8bae1dSRodney W. Grimes  * current input data; switch states based on user close, and
642df8bae1dSRodney W. Grimes  * send segment to peer (with FIN).
643df8bae1dSRodney W. Grimes  */
644df8bae1dSRodney W. Grimes struct tcpcb *
645df8bae1dSRodney W. Grimes tcp_disconnect(tp)
646df8bae1dSRodney W. Grimes 	register struct tcpcb *tp;
647df8bae1dSRodney W. Grimes {
648df8bae1dSRodney W. Grimes 	struct socket *so = tp->t_inpcb->inp_socket;
649df8bae1dSRodney W. Grimes 
650df8bae1dSRodney W. Grimes 	if (tp->t_state < TCPS_ESTABLISHED)
651df8bae1dSRodney W. Grimes 		tp = tcp_close(tp);
652df8bae1dSRodney W. Grimes 	else if ((so->so_options & SO_LINGER) && so->so_linger == 0)
653df8bae1dSRodney W. Grimes 		tp = tcp_drop(tp, 0);
654df8bae1dSRodney W. Grimes 	else {
655df8bae1dSRodney W. Grimes 		soisdisconnecting(so);
656df8bae1dSRodney W. Grimes 		sbflush(&so->so_rcv);
657df8bae1dSRodney W. Grimes 		tp = tcp_usrclosed(tp);
658df8bae1dSRodney W. Grimes 		if (tp)
659df8bae1dSRodney W. Grimes 			(void) tcp_output(tp);
660df8bae1dSRodney W. Grimes 	}
661df8bae1dSRodney W. Grimes 	return (tp);
662df8bae1dSRodney W. Grimes }
663df8bae1dSRodney W. Grimes 
664df8bae1dSRodney W. Grimes /*
665df8bae1dSRodney W. Grimes  * User issued close, and wish to trail through shutdown states:
666df8bae1dSRodney W. Grimes  * if never received SYN, just forget it.  If got a SYN from peer,
667df8bae1dSRodney W. Grimes  * but haven't sent FIN, then go to FIN_WAIT_1 state to send peer a FIN.
668df8bae1dSRodney W. Grimes  * If already got a FIN from peer, then almost done; go to LAST_ACK
669df8bae1dSRodney W. Grimes  * state.  In all other cases, have already sent FIN to peer (e.g.
670df8bae1dSRodney W. Grimes  * after PRU_SHUTDOWN), and just have to play tedious game waiting
671df8bae1dSRodney W. Grimes  * for peer to send FIN or not respond to keep-alives, etc.
672df8bae1dSRodney W. Grimes  * We can let the user exit from the close as soon as the FIN is acked.
673df8bae1dSRodney W. Grimes  */
674df8bae1dSRodney W. Grimes struct tcpcb *
675df8bae1dSRodney W. Grimes tcp_usrclosed(tp)
676df8bae1dSRodney W. Grimes 	register struct tcpcb *tp;
677df8bae1dSRodney W. Grimes {
678df8bae1dSRodney W. Grimes 
679df8bae1dSRodney W. Grimes 	switch (tp->t_state) {
680df8bae1dSRodney W. Grimes 
681df8bae1dSRodney W. Grimes 	case TCPS_CLOSED:
682df8bae1dSRodney W. Grimes 	case TCPS_LISTEN:
683a0292f23SGarrett Wollman #ifndef TTCP
684df8bae1dSRodney W. Grimes 	case TCPS_SYN_SENT:
685a0292f23SGarrett Wollman #endif
686df8bae1dSRodney W. Grimes 		tp->t_state = TCPS_CLOSED;
687df8bae1dSRodney W. Grimes 		tp = tcp_close(tp);
688df8bae1dSRodney W. Grimes 		break;
689df8bae1dSRodney W. Grimes 
690a0292f23SGarrett Wollman #ifdef TTCP
691a0292f23SGarrett Wollman 	case TCPS_SYN_SENT:
692df8bae1dSRodney W. Grimes 	case TCPS_SYN_RECEIVED:
693a0292f23SGarrett Wollman 		tp->t_flags |= TF_NEEDFIN;
694a0292f23SGarrett Wollman 		break;
695a0292f23SGarrett Wollman 
696a0292f23SGarrett Wollman #else
697a0292f23SGarrett Wollman 	case TCPS_SYN_RECEIVED:
698a0292f23SGarrett Wollman #endif
699df8bae1dSRodney W. Grimes 	case TCPS_ESTABLISHED:
700df8bae1dSRodney W. Grimes 		tp->t_state = TCPS_FIN_WAIT_1;
701df8bae1dSRodney W. Grimes 		break;
702df8bae1dSRodney W. Grimes 
703df8bae1dSRodney W. Grimes 	case TCPS_CLOSE_WAIT:
704df8bae1dSRodney W. Grimes 		tp->t_state = TCPS_LAST_ACK;
705df8bae1dSRodney W. Grimes 		break;
706df8bae1dSRodney W. Grimes 	}
707df8bae1dSRodney W. Grimes 	if (tp && tp->t_state >= TCPS_FIN_WAIT_2)
708df8bae1dSRodney W. Grimes 		soisdisconnected(tp->t_inpcb->inp_socket);
709df8bae1dSRodney W. Grimes 	return (tp);
710df8bae1dSRodney W. Grimes }
711a0292f23SGarrett Wollman 
712a0292f23SGarrett Wollman /*
713a0292f23SGarrett Wollman  * Sysctl for tcp variables.
714a0292f23SGarrett Wollman  */
715a0292f23SGarrett Wollman int
716a0292f23SGarrett Wollman tcp_sysctl(name, namelen, oldp, oldlenp, newp, newlen)
717a0292f23SGarrett Wollman 	int *name;
718a0292f23SGarrett Wollman 	u_int namelen;
719a0292f23SGarrett Wollman 	void *oldp;
720a0292f23SGarrett Wollman 	size_t *oldlenp;
721a0292f23SGarrett Wollman 	void *newp;
722a0292f23SGarrett Wollman 	size_t newlen;
723a0292f23SGarrett Wollman {
724a0292f23SGarrett Wollman 	extern	int tcp_do_rfc1323;
725a0292f23SGarrett Wollman #ifdef TTCP
726a0292f23SGarrett Wollman 	extern	int tcp_do_rfc1644;
727a0292f23SGarrett Wollman #endif
728a0292f23SGarrett Wollman 	extern	int tcp_mssdflt;
729a0292f23SGarrett Wollman 
730a0292f23SGarrett Wollman 	/* All sysctl names at this level are terminal. */
731a0292f23SGarrett Wollman 	if (namelen != 1)
732a0292f23SGarrett Wollman 		return (ENOTDIR);
733a0292f23SGarrett Wollman 
734a0292f23SGarrett Wollman 	switch (name[0]) {
735a0292f23SGarrett Wollman 	case TCPCTL_DO_RFC1323:
736a0292f23SGarrett Wollman 		return (sysctl_int(oldp, oldlenp, newp, newlen,
737a0292f23SGarrett Wollman 		    &tcp_do_rfc1323));
738a0292f23SGarrett Wollman #ifdef TTCP
739a0292f23SGarrett Wollman 	case TCPCTL_DO_RFC1644:
740a0292f23SGarrett Wollman 		return (sysctl_int(oldp, oldlenp, newp, newlen,
741a0292f23SGarrett Wollman 		    &tcp_do_rfc1644));
742a0292f23SGarrett Wollman #endif
743a0292f23SGarrett Wollman 	case TCPCTL_MSSDFLT:
744a0292f23SGarrett Wollman 		return (sysctl_int(oldp, oldlenp, newp, newlen,
745a0292f23SGarrett Wollman 		    &tcp_mssdflt));
746a0292f23SGarrett Wollman 	default:
747a0292f23SGarrett Wollman 		return (ENOPROTOOPT);
748a0292f23SGarrett Wollman 	}
749a0292f23SGarrett Wollman 	/* NOTREACHED */
750a0292f23SGarrett Wollman }
751