xref: /original-bsd/sys/netinet/tcp_usrreq.c (revision 460057e1)
1 /* tcp_usrreq.c 1.53 82/03/11 */
2 
3 #include "../h/param.h"
4 #include "../h/systm.h"
5 #include "../h/mbuf.h"
6 #include "../h/socket.h"
7 #include "../h/socketvar.h"
8 #include "../h/protosw.h"
9 #include "../net/in.h"
10 #include "../net/in_pcb.h"
11 #include "../net/in_systm.h"
12 #include "../net/if.h"
13 #include "../net/ip.h"
14 #include "../net/ip_var.h"
15 #include "../net/tcp.h"
16 #include "../net/tcp_fsm.h"
17 #include "../net/tcp_seq.h"
18 #include "../net/tcp_timer.h"
19 #include "../net/tcp_var.h"
20 #include "../net/tcpip.h"
21 #include "../net/tcp_debug.h"
22 #include "../errno.h"
23 
24 /*
25  * TCP protocol interface to socket abstraction.
26  */
27 extern	char *tcpstates[];
28 struct	tcpcb *tcp_newtcpcb();
29 
30 /*
31  * Process a TCP user request for TCP tb.  If this is a send request
32  * then m is the mbuf chain of send data.  If this is a timer expiration
33  * (called from the software clock routine), then timertype tells which timer.
34  */
35 tcp_usrreq(so, req, m, addr)
36 	struct socket *so;
37 	int req;
38 	struct mbuf *m;
39 	caddr_t addr;
40 {
41 	register struct inpcb *inp = sotoinpcb(so);
42 	register struct tcpcb *tp;
43 	int s = splnet();
44 	int error = 0;
45 	int ostate;
46 COUNT(TCP_USRREQ);
47 
48 	/*
49 	 * When a TCP is attached to a socket, then there will be
50 	 * a (struct inpcb) pointed at by the socket, and this
51 	 * structure will point at a subsidary (struct tcpcb).
52 	 * The normal sequence of events is:
53 	 *	PRU_ATTACH		creating these structures
54 	 *	PRU_CONNECT		connecting to a remote peer
55 	 *	(PRU_SEND|PRU_RCVD)*	exchanging data
56 	 *	PRU_DISCONNECT		disconnecting from remote peer
57 	 *	PRU_DETACH		deleting the structures
58 	 * With the operations from PRU_CONNECT through PRU_DISCONNECT
59 	 * possible repeated several times.
60 	 *
61 	 * MULTIPLE CONNECTS ARE NOT YET IMPLEMENTED.
62 	 */
63 	if (inp == 0 && req != PRU_ATTACH) {
64 		splx(s);
65 		return (EINVAL);		/* XXX */
66 	}
67 	if (inp) {
68 		tp = intotcpcb(inp);
69 #ifdef KPROF
70 		tcp_acounts[tp->t_state][req]++;
71 #endif
72 		ostate = tp->t_state;
73 	}
74 	switch (req) {
75 
76 	/*
77 	 * TCP attaches to socket via PRU_ATTACH, reserving space,
78 	 * and internet and TCP control blocks.
79 	 * If the socket is to receive connections,
80 	 * then the LISTEN state is entered.
81 	 */
82 	case PRU_ATTACH:
83 		if (inp) {
84 			error = EISCONN;
85 			break;
86 		}
87 		error = tcp_attach(so, (struct sockaddr *)addr);
88 		if (error)
89 			break;
90 		if ((so->so_options & SO_DONTLINGER) == 0)
91 			so->so_linger = TCP_LINGERTIME;
92 		tp = sototcpcb(so);
93 		break;
94 
95 	/*
96 	 * PRU_DETACH detaches the TCP protocol from the socket.
97 	 * If the protocol state is non-embryonic, then can't
98 	 * do this directly: have to initiate a PRU_DISCONNECT,
99 	 * which may finish later; embryonic TCB's can just
100 	 * be discarded here.
101 	 */
102 	case PRU_DETACH:
103 		if (tp->t_state > TCPS_LISTEN)
104 			tcp_disconnect(tp);
105 		else {
106 			tcp_close(tp);
107 			tp = 0;
108 		}
109 		break;
110 
111 	/*
112 	 * Initiate connection to peer.
113 	 * Create a template for use in transmissions on this connection.
114 	 * Enter SYN_SENT state, and mark socket as connecting.
115 	 * Start keep-alive timer, and seed output sequence space.
116 	 * Send initial segment on connection.
117 	 */
118 	case PRU_CONNECT:
119 		error = in_pcbconnect(inp, (struct sockaddr_in *)addr);
120 		if (error)
121 			break;
122 		tp->t_template = tcp_template(tp);
123 		if (tp->t_template == 0) {
124 			in_pcbdisconnect(inp);
125 			error = ENOBUFS;
126 			break;
127 		}
128 		soisconnecting(so);
129 		tp->t_state = TCPS_SYN_SENT;
130 		tp->t_timer[TCPT_KEEP] = TCPTV_KEEP;
131 		tp->iss = tcp_iss; tcp_iss += TCP_ISSINCR/2;
132 		tcp_sendseqinit(tp);
133 		(void) tcp_output(tp);
134 		break;
135 
136 	/*
137 	 * Initiate disconnect from peer.
138 	 * If connection never passed embryonic stage, just drop;
139 	 * else if don't need to let data drain, then can just drop anyways,
140 	 * else have to begin TCP shutdown process: mark socket disconnecting,
141 	 * drain unread data, state switch to reflect user close, and
142 	 * send segment (e.g. FIN) to peer.  Socket will be really disconnected
143 	 * when peer sends FIN and acks ours.
144 	 *
145 	 * SHOULD IMPLEMENT LATER PRU_CONNECT VIA REALLOC TCPCB.
146 	 */
147 	case PRU_DISCONNECT:
148 		tcp_disconnect(tp);
149 		break;
150 
151 	/*
152 	 * Accept a connection.  Essentially all the work is
153 	 * done at higher levels; just return the address
154 	 * of the peer, storing through addr.
155 	 */
156 	case PRU_ACCEPT: {
157 		struct sockaddr_in *sin = (struct sockaddr_in *)addr;
158 
159 		if (sin) {
160 			bzero((caddr_t)sin, sizeof (*sin));
161 			sin->sin_family = AF_INET;
162 			sin->sin_port = inp->inp_fport;
163 			sin->sin_addr = inp->inp_faddr;
164 		}
165 		}
166 		break;
167 
168 	/*
169 	 * Mark the connection as being incapable of further output.
170 	 */
171 	case PRU_SHUTDOWN:
172 		socantsendmore(so);
173 		tcp_usrclosed(tp);
174 		(void) tcp_output(tp);
175 		break;
176 
177 	/*
178 	 * After a receive, possibly send window update to peer.
179 	 */
180 	case PRU_RCVD:
181 		(void) tcp_output(tp);
182 		break;
183 
184 	/*
185 	 * Do a send by putting data in output queue and updating urgent
186 	 * marker if URG set.  Possibly send more data.
187 	 */
188 	case PRU_SEND:
189 		sbappend(&so->so_snd, m);
190 /*
191 		if (tp->t_flags & TF_PUSH)
192 			tp->snd_end = tp->snd_una + so->so_snd.sb_cc;
193  */
194 		(void) tcp_output(tp);
195 		break;
196 
197 	/*
198 	 * Abort the TCP.
199 	 */
200 	case PRU_ABORT:
201 		tcp_drop(tp, ECONNABORTED);
202 		break;
203 
204 /* SOME AS YET UNIMPLEMENTED HOOKS */
205 	case PRU_CONTROL:
206 		error = EOPNOTSUPP;
207 		break;
208 
209 	case PRU_SENSE:
210 		error = EOPNOTSUPP;
211 		break;
212 /* END UNIMPLEMENTED HOOKS */
213 
214 	case PRU_RCVOOB:
215 		if (so->so_oobmark == 0 &&
216 		    (so->so_state & SS_RCVATMARK) == 0) {
217 			error = EINVAL;
218 			break;
219 		}
220 		if ((tp->t_oobflags & TCPOOB_HAVEDATA) == 0) {
221 			error = EWOULDBLOCK;
222 			break;
223 		}
224 		*mtod(m, caddr_t) = tp->t_iobc;
225 		break;
226 
227 	case PRU_SENDOOB:
228 #ifdef TCPTRUEOOB
229 		if (tp->t_flags & TF_DOOOB) {
230 			tp->t_oobseq++;
231 			tp->t_oobc = *mtod(m, caddr_t);
232 			tp->t_oobmark = tp->snd_una + so->so_snd.sb_cc;
233 printf("sendoob seq now %x oobc %x\n", tp->t_oobseq, tp->t_oobc);
234 			tp->t_oobflags |= TCPOOB_NEEDACK;
235 			(void) tcp_output(tp);
236 		}
237 #endif
238 		if (sbspace(&so->so_snd) < -512) {
239 			error = ENOBUFS;
240 			break;
241 		}
242 		tp->snd_up = tp->snd_una + so->so_snd.sb_cc + 1;
243 		sbappend(&so->so_snd, m);
244 /*
245 		if (tp->t_flags & TF_PUSH)
246 			tp->snd_end = tp->snd_una + so->so_snd.sb_cc;
247  */
248 		tp->t_force = 1;
249 		(void) tcp_output(tp);
250 		tp->t_force = 0;
251 		break;
252 
253 	/*
254 	 * TCP slow timer went off; going through this
255 	 * routine for tracing's sake.
256 	 */
257 	case PRU_SLOWTIMO:
258 		tcp_timers(tp, (int)addr);
259 		req |= (int)addr << 8;		/* for debug's sake */
260 		break;
261 
262 	default:
263 		panic("tcp_usrreq");
264 	}
265 	if (tp && (so->so_options & SO_DEBUG))
266 		tcp_trace(TA_USER, ostate, tp, (struct tcpiphdr *)0, req);
267 	splx(s);
268 	return (error);
269 }
270 
271 int	tcp_sendspace = 1024*2;
272 int	tcp_recvspace = 1024*3;
273 /*
274  * Attach TCP protocol to socket, allocating
275  * internet protocol control block, tcp control block,
276  * bufer space, and entering LISTEN state if to accept connections.
277  */
278 tcp_attach(so, sa)
279 	struct socket *so;
280 	struct sockaddr *sa;
281 {
282 	register struct tcpcb *tp;
283 	struct inpcb *inp;
284 	int error;
285 
286 	error = in_pcbattach(so, &tcb,
287 	    tcp_sendspace, tcp_recvspace, (struct sockaddr_in *)sa);
288 	if (error)
289 		return (error);
290 	inp = (struct inpcb *)so->so_pcb;
291 	tp = tcp_newtcpcb(inp);
292 	if (so->so_options & SO_ACCEPTCONN) {
293 		if (tp == 0) {
294 			in_pcbdetach(inp);
295 			return (ENOBUFS);
296 		}
297 		tp->t_state = TCPS_LISTEN;
298 	} else
299 		tp->t_state = TCPS_CLOSED;
300 	return (0);
301 }
302 
303 /*
304  * Initiate (or continue) disconnect.
305  * If embryonic state, just send reset (once).
306  * If not in ``let data drain'' option, just drop.
307  * Otherwise (hard), mark socket disconnecting and drop
308  * current input data; switch states based on user close, and
309  * send segment to peer (with FIN).
310  */
311 tcp_disconnect(tp)
312 	struct tcpcb *tp;
313 {
314 	struct socket *so = tp->t_inpcb->inp_socket;
315 
316 	if (tp->t_state < TCPS_ESTABLISHED)
317 		tcp_close(tp);
318 	else if (so->so_linger == 0)
319 		tcp_drop(tp, 0);
320 	else {
321 		soisdisconnecting(so);
322 		sbflush(&so->so_rcv);
323 		tcp_usrclosed(tp);
324 		(void) tcp_output(tp);
325 	}
326 }
327 
328 /*
329  * User issued close, and wish to trail through shutdown states:
330  * if never received SYN, just forget it.  If got a SYN from peer,
331  * but haven't sent FIN, then go to FIN_WAIT_1 state to send peer a FIN.
332  * If already got a FIN from peer, then almost done; go to LAST_ACK
333  * state.  In all other cases, have already sent FIN to peer (e.g.
334  * after PRU_SHUTDOWN), and just have to play tedious game waiting
335  * for peer to send FIN or not respond to keep-alives, etc.
336  * We can let the user exit from the close as soon as the FIN is acked.
337  */
338 tcp_usrclosed(tp)
339 	struct tcpcb *tp;
340 {
341 
342 	switch (tp->t_state) {
343 
344 	case TCPS_LISTEN:
345 	case TCPS_SYN_SENT:
346 		tp->t_state = TCPS_CLOSED;
347 		tcp_close(tp);
348 		break;
349 
350 	case TCPS_SYN_RECEIVED:
351 	case TCPS_ESTABLISHED:
352 		tp->t_state = TCPS_FIN_WAIT_1;
353 		break;
354 
355 	case TCPS_CLOSE_WAIT:
356 		tp->t_state = TCPS_LAST_ACK;
357 		break;
358 	}
359 	if (tp->t_state >= TCPS_FIN_WAIT_2)
360 		soisdisconnected(tp->t_inpcb->inp_socket);
361 }
362