2 * Copyright (c) 1982, 1986, 1988, 1990, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * @(#)tcp_input.c 8.5 (Berkeley) 4/10/94
30 * tcp_input.c,v 1.10 1994/10/13 18:36:32 wollman Exp
34 * Changes and additions relating to SLiRP
35 * Copyright (c) 1995 Danny Gasparovski.
37 * Please read the file COPYRIGHT for the
38 * terms and conditions of the copyright.
46 #define TCPREXMTTHRESH 3
47 struct socket *tcp_last_so = &tcb;
49 tcp_seq tcp_iss; /* tcp initial send seq # */
51 #define TCP_PAWS_IDLE (24 * 24 * 60 * 60 * PR_SLOWHZ)
53 /* for modulo comparisons of timestamps */
54 #define TSTMP_LT(a,b) ((int)((a)-(b)) < 0)
55 #define TSTMP_GEQ(a,b) ((int)((a)-(b)) >= 0)
58 * Insert segment ti into reassembly queue of tcp with
59 * control block tp. Return TH_FIN if reassembly now includes
60 * a segment with FIN. The macro form does the common case inline
61 * (segment is the next to be received on an established connection,
62 * and the queue is empty), avoiding linkage into and removal
63 * from the queue and repetition of various conversions.
64 * Set DELACK for segments received in order, but ack immediately
65 * when segments are out of order (so fast retransmit can work).
68 #define TCP_REASS(tp, ti, m, so, flags) {\
69 if ((ti)->ti_seq == (tp)->rcv_nxt && \
70 tcpfrag_list_empty(tp) && \
71 (tp)->t_state == TCPS_ESTABLISHED) {\
72 if (ti->ti_flags & TH_PUSH) \
73 tp->t_flags |= TF_ACKNOW; \
75 tp->t_flags |= TF_DELACK; \
76 (tp)->rcv_nxt += (ti)->ti_len; \
77 flags = (ti)->ti_flags & TH_FIN; \
78 STAT(tcpstat.tcps_rcvpack++); \
79 STAT(tcpstat.tcps_rcvbyte += (ti)->ti_len); \
81 if (tcp_emu((so),(m))) sbappend((so), (m)); \
83 sbappend((so), (m)); \
84 /* sorwakeup(so); */ \
86 (flags) = tcp_reass((tp), (ti), (m)); \
87 tp->t_flags |= TF_ACKNOW; \
91 #define TCP_REASS(tp, ti, m, so, flags) { \
92 if ((ti)->ti_seq == (tp)->rcv_nxt && \
93 tcpfrag_list_empty(tp) && \
94 (tp)->t_state == TCPS_ESTABLISHED) { \
95 tp->t_flags |= TF_DELACK; \
96 (tp)->rcv_nxt += (ti)->ti_len; \
97 flags = (ti)->ti_flags & TH_FIN; \
98 STAT(tcpstat.tcps_rcvpack++); \
99 STAT(tcpstat.tcps_rcvbyte += (ti)->ti_len); \
101 if (tcp_emu((so),(m))) sbappend(so, (m)); \
103 sbappend((so), (m)); \
104 /* sorwakeup(so); */ \
106 (flags) = tcp_reass((tp), (ti), (m)); \
107 tp->t_flags |= TF_ACKNOW; \
111 static void tcp_dooptions(struct tcpcb *tp, u_char *cp, int cnt,
112 struct tcpiphdr *ti);
113 static void tcp_xmit_timer(register struct tcpcb *tp, int rtt);
116 tcp_reass(register struct tcpcb *tp, register struct tcpiphdr *ti,
119 register struct tcpiphdr *q;
120 struct socket *so = tp->t_socket;
124 * Call with ti==NULL after become established to
125 * force pre-ESTABLISHED data up to user socket.
131 * Find a segment which begins after this one does.
133 for (q = tcpfrag_list_first(tp); !tcpfrag_list_end(q, tp);
134 q = tcpiphdr_next(q))
135 if (SEQ_GT(q->ti_seq, ti->ti_seq))
139 * If there is a preceding segment, it may provide some of
140 * our data already. If so, drop the data from the incoming
141 * segment. If it provides all of our data, drop us.
143 if (!tcpfrag_list_end(tcpiphdr_prev(q), tp)) {
145 q = tcpiphdr_prev(q);
146 /* conversion to int (in i) handles seq wraparound */
147 i = q->ti_seq + q->ti_len - ti->ti_seq;
149 if (i >= ti->ti_len) {
150 STAT(tcpstat.tcps_rcvduppack++);
151 STAT(tcpstat.tcps_rcvdupbyte += ti->ti_len);
154 * Try to present any queued data
155 * at the left window edge to the user.
156 * This is needed after the 3-WHS
159 goto present; /* ??? */
165 q = tcpiphdr_next(q);
167 STAT(tcpstat.tcps_rcvoopack++);
168 STAT(tcpstat.tcps_rcvoobyte += ti->ti_len);
172 * While we overlap succeeding segments trim them or,
173 * if they are completely covered, dequeue them.
175 while (!tcpfrag_list_end(q, tp)) {
176 register int i = (ti->ti_seq + ti->ti_len) - q->ti_seq;
182 m_adj(q->ti_mbuf, i);
185 q = tcpiphdr_next(q);
186 m = tcpiphdr_prev(q)->ti_mbuf;
187 remque(tcpiphdr2qlink(tcpiphdr_prev(q)));
192 * Stick new segment in its place.
194 insque(tcpiphdr2qlink(ti), tcpiphdr2qlink(tcpiphdr_prev(q)));
198 * Present data to user, advancing rcv_nxt through
199 * completed sequence space.
201 if (!TCPS_HAVEESTABLISHED(tp->t_state))
203 ti = tcpfrag_list_first(tp);
204 if (tcpfrag_list_end(ti, tp) || ti->ti_seq != tp->rcv_nxt)
206 if (tp->t_state == TCPS_SYN_RECEIVED && ti->ti_len)
209 tp->rcv_nxt += ti->ti_len;
210 flags = ti->ti_flags & TH_FIN;
211 remque(tcpiphdr2qlink(ti));
213 ti = tcpiphdr_next(ti);
214 /* if (so->so_state & SS_FCANTRCVMORE) */
215 if (so->so_state & SS_FCANTSENDMORE)
219 if (tcp_emu(so,m)) sbappend(so, m);
223 } while (ti != (struct tcpiphdr *)tp && ti->ti_seq == tp->rcv_nxt);
229 * TCP input routine, follows pages 65-76 of the
230 * protocol specification dated September, 1981 very closely.
233 tcp_input(struct mbuf *m, int iphlen, struct socket *inso)
235 struct ip save_ip, *ip;
236 register struct tcpiphdr *ti;
240 register struct tcpcb *tp = NULL;
241 register int tiflags;
242 struct socket *so = NULL;
243 int todrop, acked, ourfinisacked, needoutput = 0;
244 /* int dropsocket = 0; */
248 /* int ts_present = 0; */
249 struct ex_list *ex_ptr;
251 DEBUG_CALL("tcp_input");
252 DEBUG_ARGS((dfd," m = %8lx iphlen = %2d inso = %lx\n",
253 (long )m, iphlen, (long )inso ));
256 * If called with m == 0, then we're continuing the connect
261 /* Re-set a few variables */
267 tiflags = ti->ti_flags;
273 STAT(tcpstat.tcps_rcvtotal++);
275 * Get IP and TCP header together in first mbuf.
276 * Note: IP leaves IP header in first mbuf.
278 ti = mtod(m, struct tcpiphdr *);
279 if (iphlen > sizeof(struct ip )) {
280 ip_stripoptions(m, (struct mbuf *)0);
281 iphlen=sizeof(struct ip );
283 /* XXX Check if too short */
287 * Save a copy of the IP header in case we want restore it
288 * for sending an ICMP error message in response.
290 ip=mtod(m, struct ip *);
292 save_ip.ip_len+= iphlen;
295 * Checksum extended TCP header and data.
297 tlen = ((struct ip *)ti)->ip_len;
298 tcpiphdr2qlink(ti)->next = tcpiphdr2qlink(ti)->prev = NULL;
299 memset(&ti->ti_i.ih_mbuf, 0 , sizeof(struct mbuf_ptr));
301 ti->ti_len = htons((u_int16_t)tlen);
302 len = sizeof(struct ip ) + tlen;
303 /* keep checksum for ICMP reply
304 * ti->ti_sum = cksum(m, len);
305 * if (ti->ti_sum) { */
307 STAT(tcpstat.tcps_rcvbadsum++);
312 * Check that TCP offset makes sense,
313 * pull out TCP options and adjust length. XXX
315 off = ti->ti_off << 2;
316 if (off < sizeof (struct tcphdr) || off > tlen) {
317 STAT(tcpstat.tcps_rcvbadoff++);
322 if (off > sizeof (struct tcphdr)) {
323 optlen = off - sizeof (struct tcphdr);
324 optp = mtod(m, caddr_t) + sizeof (struct tcpiphdr);
327 * Do quick retrieval of timestamp options ("options
328 * prediction?"). If timestamp is the only option and it's
329 * formatted as recommended in RFC 1323 appendix A, we
330 * quickly get the values now and not bother calling
331 * tcp_dooptions(), etc.
333 /* if ((optlen == TCPOLEN_TSTAMP_APPA ||
334 * (optlen > TCPOLEN_TSTAMP_APPA &&
335 * optp[TCPOLEN_TSTAMP_APPA] == TCPOPT_EOL)) &&
336 * *(u_int32_t *)optp == htonl(TCPOPT_TSTAMP_HDR) &&
337 * (ti->ti_flags & TH_SYN) == 0) {
339 * ts_val = ntohl(*(u_int32_t *)(optp + 4));
340 * ts_ecr = ntohl(*(u_int32_t *)(optp + 8));
341 * optp = NULL; / * we've parsed the options * /
345 tiflags = ti->ti_flags;
348 * Convert TCP protocol specific fields to host format.
356 * Drop TCP, IP headers and TCP options.
358 m->m_data += sizeof(struct tcpiphdr)+off-sizeof(struct tcphdr);
359 m->m_len -= sizeof(struct tcpiphdr)+off-sizeof(struct tcphdr);
361 if (slirp_restrict) {
362 for (ex_ptr = exec_list; ex_ptr; ex_ptr = ex_ptr->ex_next)
363 if (ex_ptr->ex_fport == ti->ti_dport &&
364 (ntohl(ti->ti_dst.s_addr) & 0xff) == ex_ptr->ex_addr)
371 * Locate pcb for segment.
375 if (so->so_fport != ti->ti_dport ||
376 so->so_lport != ti->ti_sport ||
377 so->so_laddr.s_addr != ti->ti_src.s_addr ||
378 so->so_faddr.s_addr != ti->ti_dst.s_addr) {
379 so = solookup(&tcb, ti->ti_src, ti->ti_sport,
380 ti->ti_dst, ti->ti_dport);
383 STAT(tcpstat.tcps_socachemiss++);
387 * If the state is CLOSED (i.e., TCB does not exist) then
388 * all data in the incoming segment is discarded.
389 * If the TCB exists but is in CLOSED state, it is embryonic,
390 * but should either do a listen or a connect soon.
392 * state == CLOSED means we've done socreate() but haven't
393 * attached it to a protocol yet...
395 * XXX If a TCB does not exist, and the TH_SYN flag is
396 * the only flag set, then create a session, mark it
397 * as if it was LISTENING, and continue...
400 if ((tiflags & (TH_SYN|TH_FIN|TH_RST|TH_URG|TH_ACK)) != TH_SYN)
403 if ((so = socreate()) == NULL)
405 if (tcp_attach(so) < 0) {
406 free(so); /* Not sofree (if it failed, it's not insqued) */
410 sbreserve(&so->so_snd, TCP_SNDSPACE);
411 sbreserve(&so->so_rcv, TCP_RCVSPACE);
413 /* tcp_last_so = so; */ /* XXX ? */
414 /* tp = sototcpcb(so); */
416 so->so_laddr = ti->ti_src;
417 so->so_lport = ti->ti_sport;
418 so->so_faddr = ti->ti_dst;
419 so->so_fport = ti->ti_dport;
421 if ((so->so_iptos = tcp_tos(so)) == 0)
422 so->so_iptos = ((struct ip *)ti)->ip_tos;
425 tp->t_state = TCPS_LISTEN;
429 * If this is a still-connecting socket, this probably
430 * a retransmit of the SYN. Whether it's a retransmit SYN
431 * or something else, we nuke it.
433 if (so->so_state & SS_ISFCONNECTING)
438 /* XXX Should never fail */
441 if (tp->t_state == TCPS_CLOSED)
444 /* Unscale the window into a 32-bit value. */
445 /* if ((tiflags & TH_SYN) == 0)
446 * tiwin = ti->ti_win << tp->snd_scale;
452 * Segment received on connection.
453 * Reset idle time and keep-alive timer.
457 tp->t_timer[TCPT_KEEP] = TCPTV_KEEPINTVL;
459 tp->t_timer[TCPT_KEEP] = TCPTV_KEEP_IDLE;
462 * Process options if not in LISTEN state,
463 * else do it below (after getting remote address).
465 if (optp && tp->t_state != TCPS_LISTEN)
466 tcp_dooptions(tp, (u_char *)optp, optlen, ti);
468 /* &ts_present, &ts_val, &ts_ecr); */
471 * Header prediction: check for the two common cases
472 * of a uni-directional data xfer. If the packet has
473 * no control flags, is in-sequence, the window didn't
474 * change and we're not retransmitting, it's a
475 * candidate. If the length is zero and the ack moved
476 * forward, we're the sender side of the xfer. Just
477 * free the data acked & wake any higher level process
478 * that was blocked waiting for space. If the length
479 * is non-zero and the ack didn't move, we're the
480 * receiver side. If we're getting packets in-order
481 * (the reassembly queue is empty), add the data to
482 * the socket buffer and note that we need a delayed ack.
484 * XXX Some of these tests are not needed
485 * eg: the tiwin == tp->snd_wnd prevents many more
486 * predictions.. with no *real* advantage..
488 if (tp->t_state == TCPS_ESTABLISHED &&
489 (tiflags & (TH_SYN|TH_FIN|TH_RST|TH_URG|TH_ACK)) == TH_ACK &&
490 /* (!ts_present || TSTMP_GEQ(ts_val, tp->ts_recent)) && */
491 ti->ti_seq == tp->rcv_nxt &&
492 tiwin && tiwin == tp->snd_wnd &&
493 tp->snd_nxt == tp->snd_max) {
495 * If last ACK falls within this segment's sequence numbers,
496 * record the timestamp.
498 /* if (ts_present && SEQ_LEQ(ti->ti_seq, tp->last_ack_sent) &&
499 * SEQ_LT(tp->last_ack_sent, ti->ti_seq + ti->ti_len)) {
500 * tp->ts_recent_age = tcp_now;
501 * tp->ts_recent = ts_val;
504 if (ti->ti_len == 0) {
505 if (SEQ_GT(ti->ti_ack, tp->snd_una) &&
506 SEQ_LEQ(ti->ti_ack, tp->snd_max) &&
507 tp->snd_cwnd >= tp->snd_wnd) {
509 * this is a pure ack for outstanding data.
511 STAT(tcpstat.tcps_predack++);
513 * tcp_xmit_timer(tp, tcp_now-ts_ecr+1);
516 SEQ_GT(ti->ti_ack, tp->t_rtseq))
517 tcp_xmit_timer(tp, tp->t_rtt);
518 acked = ti->ti_ack - tp->snd_una;
519 STAT(tcpstat.tcps_rcvackpack++);
520 STAT(tcpstat.tcps_rcvackbyte += acked);
521 sbdrop(&so->so_snd, acked);
522 tp->snd_una = ti->ti_ack;
526 * If all outstanding data are acked, stop
527 * retransmit timer, otherwise restart timer
528 * using current (possibly backed-off) value.
529 * If process is waiting for space,
530 * wakeup/selwakeup/signal. If data
531 * are ready to send, let tcp_output
532 * decide between more output or persist.
534 if (tp->snd_una == tp->snd_max)
535 tp->t_timer[TCPT_REXMT] = 0;
536 else if (tp->t_timer[TCPT_PERSIST] == 0)
537 tp->t_timer[TCPT_REXMT] = tp->t_rxtcur;
540 * There's room in so_snd, sowwakup will read()
541 * from the socket if we can
543 /* if (so->so_snd.sb_flags & SB_NOTIFY)
547 * This is called because sowwakeup might have
548 * put data into so_snd. Since we don't so sowwakeup,
549 * we don't need this.. XXX???
551 if (so->so_snd.sb_cc)
552 (void) tcp_output(tp);
556 } else if (ti->ti_ack == tp->snd_una &&
557 tcpfrag_list_empty(tp) &&
558 ti->ti_len <= sbspace(&so->so_rcv)) {
560 * this is a pure, in-sequence data packet
561 * with nothing on the reassembly queue and
562 * we have enough buffer space to take it.
564 STAT(tcpstat.tcps_preddat++);
565 tp->rcv_nxt += ti->ti_len;
566 STAT(tcpstat.tcps_rcvpack++);
567 STAT(tcpstat.tcps_rcvbyte += ti->ti_len);
569 * Add data to socket buffer.
572 if (tcp_emu(so,m)) sbappend(so, m);
577 * XXX This is called when data arrives. Later, check
578 * if we can actually write() to the socket
579 * XXX Need to check? It's be NON_BLOCKING
584 * If this is a short packet, then ACK now - with Nagel
585 * congestion avoidance sender won't send more until
588 * It is better to not delay acks at all to maximize
589 * TCP throughput. See RFC 2581.
591 tp->t_flags |= TF_ACKNOW;
595 } /* header prediction */
597 * Calculate amount of space in receive window,
598 * and then do TCP input processing.
599 * Receive window is amount of space in rcv queue,
600 * but not less than advertised window.
603 win = sbspace(&so->so_rcv);
606 tp->rcv_wnd = max(win, (int)(tp->rcv_adv - tp->rcv_nxt));
609 switch (tp->t_state) {
612 * If the state is LISTEN then ignore segment if it contains an RST.
613 * If the segment contains an ACK then it is bad and send a RST.
614 * If it does not contain a SYN then it is not interesting; drop it.
615 * Don't bother responding if the destination was a broadcast.
616 * Otherwise initialize tp->rcv_nxt, and tp->irs, select an initial
617 * tp->iss, and send a segment:
618 * <SEQ=ISS><ACK=RCV_NXT><CTL=SYN,ACK>
619 * Also initialize tp->snd_nxt to tp->iss+1 and tp->snd_una to tp->iss.
620 * Fill in remote peer address fields if not previously specified.
621 * Enter SYN_RECEIVED state, and process any other fields of this
622 * segment in this state.
626 if (tiflags & TH_RST)
628 if (tiflags & TH_ACK)
630 if ((tiflags & TH_SYN) == 0)
634 * This has way too many gotos...
635 * But a bit of spaghetti code never hurt anybody :)
639 * If this is destined for the control address, then flag to
640 * tcp_ctl once connected, otherwise connect
642 if ((so->so_faddr.s_addr&htonl(0xffffff00)) == special_addr.s_addr) {
643 int lastbyte=ntohl(so->so_faddr.s_addr) & 0xff;
644 if (lastbyte!=CTL_ALIAS && lastbyte!=CTL_DNS) {
646 if(lastbyte==CTL_CMD || lastbyte==CTL_EXEC) {
647 /* Command or exec adress */
648 so->so_state |= SS_CTL;
652 /* May be an add exec */
653 for(ex_ptr = exec_list; ex_ptr; ex_ptr = ex_ptr->ex_next) {
654 if(ex_ptr->ex_fport == so->so_fport &&
655 lastbyte == ex_ptr->ex_addr) {
656 so->so_state |= SS_CTL;
661 if(so->so_state & SS_CTL) goto cont_input;
663 /* CTL_ALIAS: Do nothing, tcp_fconnect will be called on it */
666 if (so->so_emu & EMU_NOCONNECT) {
667 so->so_emu &= ~EMU_NOCONNECT;
671 if((tcp_fconnect(so) == -1) && (errno != EINPROGRESS) && (errno != EWOULDBLOCK)) {
672 u_char code=ICMP_UNREACH_NET;
673 DEBUG_MISC((dfd," tcp fconnect errno = %d-%s\n",
674 errno,strerror(errno)));
675 if(errno == ECONNREFUSED) {
676 /* ACK the SYN, send RST to refuse the connection */
677 tcp_respond(tp, ti, m, ti->ti_seq+1, (tcp_seq)0,
680 if(errno == EHOSTUNREACH) code=ICMP_UNREACH_HOST;
681 HTONL(ti->ti_seq); /* restore tcp header */
685 m->m_data -= sizeof(struct tcpiphdr)+off-sizeof(struct tcphdr);
686 m->m_len += sizeof(struct tcpiphdr)+off-sizeof(struct tcphdr);
688 icmp_error(m, ICMP_UNREACH,code, 0,strerror(errno));
694 * Haven't connected yet, save the current mbuf
696 * XXX Some OS's don't tell us whether the connect()
697 * succeeded or not. So we must time it out.
701 tp->t_timer[TCPT_KEEP] = TCPTV_KEEP_INIT;
702 tp->t_state = TCPS_SYN_RECEIVED;
708 * Check if the connect succeeded
710 if (so->so_state & SS_NOFDREF) {
718 tcp_dooptions(tp, (u_char *)optp, optlen, ti);
720 /* &ts_present, &ts_val, &ts_ecr); */
726 tcp_iss += TCP_ISSINCR/2;
727 tp->irs = ti->ti_seq;
730 tp->t_flags |= TF_ACKNOW;
731 tp->t_state = TCPS_SYN_RECEIVED;
732 tp->t_timer[TCPT_KEEP] = TCPTV_KEEP_INIT;
733 STAT(tcpstat.tcps_accepts++);
735 } /* case TCPS_LISTEN */
738 * If the state is SYN_SENT:
739 * if seg contains an ACK, but not for our SYN, drop the input.
740 * if seg contains a RST, then drop the connection.
741 * if seg does not contain SYN, then drop it.
742 * Otherwise this is an acceptable SYN segment
743 * initialize tp->rcv_nxt and tp->irs
744 * if seg contains ack then advance tp->snd_una
745 * if SYN has been acked change to ESTABLISHED else SYN_RCVD state
746 * arrange for segment to be acked (eventually)
747 * continue processing rest of data/controls, beginning with URG
750 if ((tiflags & TH_ACK) &&
751 (SEQ_LEQ(ti->ti_ack, tp->iss) ||
752 SEQ_GT(ti->ti_ack, tp->snd_max)))
755 if (tiflags & TH_RST) {
756 if (tiflags & TH_ACK)
757 tp = tcp_drop(tp,0); /* XXX Check t_softerror! */
761 if ((tiflags & TH_SYN) == 0)
763 if (tiflags & TH_ACK) {
764 tp->snd_una = ti->ti_ack;
765 if (SEQ_LT(tp->snd_nxt, tp->snd_una))
766 tp->snd_nxt = tp->snd_una;
769 tp->t_timer[TCPT_REXMT] = 0;
770 tp->irs = ti->ti_seq;
772 tp->t_flags |= TF_ACKNOW;
773 if (tiflags & TH_ACK && SEQ_GT(tp->snd_una, tp->iss)) {
774 STAT(tcpstat.tcps_connects++);
776 tp->t_state = TCPS_ESTABLISHED;
778 /* Do window scaling on this connection? */
779 /* if ((tp->t_flags & (TF_RCVD_SCALE|TF_REQ_SCALE)) ==
780 * (TF_RCVD_SCALE|TF_REQ_SCALE)) {
781 * tp->snd_scale = tp->requested_s_scale;
782 * tp->rcv_scale = tp->request_r_scale;
785 (void) tcp_reass(tp, (struct tcpiphdr *)0,
788 * if we didn't have to retransmit the SYN,
789 * use its rtt as our initial srtt & rtt var.
792 tcp_xmit_timer(tp, tp->t_rtt);
794 tp->t_state = TCPS_SYN_RECEIVED;
798 * Advance ti->ti_seq to correspond to first data byte.
799 * If data, trim to stay within window,
800 * dropping FIN if necessary.
803 if (ti->ti_len > tp->rcv_wnd) {
804 todrop = ti->ti_len - tp->rcv_wnd;
806 ti->ti_len = tp->rcv_wnd;
808 STAT(tcpstat.tcps_rcvpackafterwin++);
809 STAT(tcpstat.tcps_rcvbyteafterwin += todrop);
811 tp->snd_wl1 = ti->ti_seq - 1;
812 tp->rcv_up = ti->ti_seq;
814 } /* switch tp->t_state */
816 * States other than LISTEN or SYN_SENT.
817 * First check timestamp, if present.
818 * Then check that at least some bytes of segment are within
819 * receive window. If segment begins before rcv_nxt,
820 * drop leading data (and SYN); if nothing left, just ack.
822 * RFC 1323 PAWS: If we have a timestamp reply on this segment
823 * and it's less than ts_recent, drop it.
825 /* if (ts_present && (tiflags & TH_RST) == 0 && tp->ts_recent &&
826 * TSTMP_LT(ts_val, tp->ts_recent)) {
828 */ /* Check to see if ts_recent is over 24 days old. */
829 /* if ((int)(tcp_now - tp->ts_recent_age) > TCP_PAWS_IDLE) {
831 * * Invalidate ts_recent. If this segment updates
832 * * ts_recent, the age will be reset later and ts_recent
833 * * will get a valid value. If it does not, setting
834 * * ts_recent to zero will at least satisfy the
835 * * requirement that zero be placed in the timestamp
836 * * echo reply when ts_recent isn't valid. The
837 * * age isn't reset until we get a valid ts_recent
838 * * because we don't want out-of-order segments to be
839 * * dropped when ts_recent is old.
841 /* tp->ts_recent = 0;
843 * tcpstat.tcps_rcvduppack++;
844 * tcpstat.tcps_rcvdupbyte += ti->ti_len;
845 * tcpstat.tcps_pawsdrop++;
851 todrop = tp->rcv_nxt - ti->ti_seq;
853 if (tiflags & TH_SYN) {
863 * Following if statement from Stevens, vol. 2, p. 960.
865 if (todrop > ti->ti_len
866 || (todrop == ti->ti_len && (tiflags & TH_FIN) == 0)) {
868 * Any valid FIN must be to the left of the window.
869 * At this point the FIN must be a duplicate or out
870 * of sequence; drop it.
875 * Send an ACK to resynchronize and drop any data.
876 * But keep on processing for RST or ACK.
878 tp->t_flags |= TF_ACKNOW;
880 STAT(tcpstat.tcps_rcvduppack++);
881 STAT(tcpstat.tcps_rcvdupbyte += todrop);
883 STAT(tcpstat.tcps_rcvpartduppack++);
884 STAT(tcpstat.tcps_rcvpartdupbyte += todrop);
887 ti->ti_seq += todrop;
888 ti->ti_len -= todrop;
889 if (ti->ti_urp > todrop)
890 ti->ti_urp -= todrop;
897 * If new data are received on a connection after the
898 * user processes are gone, then RST the other end.
900 if ((so->so_state & SS_NOFDREF) &&
901 tp->t_state > TCPS_CLOSE_WAIT && ti->ti_len) {
903 STAT(tcpstat.tcps_rcvafterclose++);
908 * If segment ends after window, drop trailing data
909 * (and PUSH and FIN); if nothing left, just ACK.
911 todrop = (ti->ti_seq+ti->ti_len) - (tp->rcv_nxt+tp->rcv_wnd);
913 STAT(tcpstat.tcps_rcvpackafterwin++);
914 if (todrop >= ti->ti_len) {
915 STAT(tcpstat.tcps_rcvbyteafterwin += ti->ti_len);
917 * If a new connection request is received
918 * while in TIME_WAIT, drop the old connection
919 * and start over if the sequence numbers
920 * are above the previous ones.
922 if (tiflags & TH_SYN &&
923 tp->t_state == TCPS_TIME_WAIT &&
924 SEQ_GT(ti->ti_seq, tp->rcv_nxt)) {
925 iss = tp->rcv_nxt + TCP_ISSINCR;
930 * If window is closed can only take segments at
931 * window edge, and have to drop data and PUSH from
932 * incoming segments. Continue processing, but
933 * remember to ack. Otherwise, drop segment
936 if (tp->rcv_wnd == 0 && ti->ti_seq == tp->rcv_nxt) {
937 tp->t_flags |= TF_ACKNOW;
938 STAT(tcpstat.tcps_rcvwinprobe++);
942 STAT(tcpstat.tcps_rcvbyteafterwin += todrop);
944 ti->ti_len -= todrop;
945 tiflags &= ~(TH_PUSH|TH_FIN);
949 * If last ACK falls within this segment's sequence numbers,
950 * record its timestamp.
952 /* if (ts_present && SEQ_LEQ(ti->ti_seq, tp->last_ack_sent) &&
953 * SEQ_LT(tp->last_ack_sent, ti->ti_seq + ti->ti_len +
954 * ((tiflags & (TH_SYN|TH_FIN)) != 0))) {
955 * tp->ts_recent_age = tcp_now;
956 * tp->ts_recent = ts_val;
961 * If the RST bit is set examine the state:
962 * SYN_RECEIVED STATE:
963 * If passive open, return to LISTEN state.
964 * If active open, inform user that connection was refused.
965 * ESTABLISHED, FIN_WAIT_1, FIN_WAIT2, CLOSE_WAIT STATES:
966 * Inform user that connection was reset, and close tcb.
967 * CLOSING, LAST_ACK, TIME_WAIT STATES
970 if (tiflags&TH_RST) switch (tp->t_state) {
972 case TCPS_SYN_RECEIVED:
973 /* so->so_error = ECONNREFUSED; */
976 case TCPS_ESTABLISHED:
977 case TCPS_FIN_WAIT_1:
978 case TCPS_FIN_WAIT_2:
979 case TCPS_CLOSE_WAIT:
980 /* so->so_error = ECONNRESET; */
982 tp->t_state = TCPS_CLOSED;
983 STAT(tcpstat.tcps_drops++);
995 * If a SYN is in the window, then this is an
996 * error and we send an RST and drop the connection.
998 if (tiflags & TH_SYN) {
1004 * If the ACK bit is off we drop the segment and return.
1006 if ((tiflags & TH_ACK) == 0) goto drop;
1011 switch (tp->t_state) {
1013 * In SYN_RECEIVED state if the ack ACKs our SYN then enter
1014 * ESTABLISHED state and continue processing, otherwise
1015 * send an RST. una<=ack<=max
1017 case TCPS_SYN_RECEIVED:
1019 if (SEQ_GT(tp->snd_una, ti->ti_ack) ||
1020 SEQ_GT(ti->ti_ack, tp->snd_max))
1022 STAT(tcpstat.tcps_connects++);
1023 tp->t_state = TCPS_ESTABLISHED;
1025 * The sent SYN is ack'ed with our sequence number +1
1026 * The first data byte already in the buffer will get
1027 * lost if no correction is made. This is only needed for
1028 * SS_CTL since the buffer is empty otherwise.
1029 * tp->snd_una++; or:
1031 tp->snd_una=ti->ti_ack;
1032 if (so->so_state & SS_CTL) {
1033 /* So tcp_ctl reports the right state */
1037 so->so_state &= ~SS_CTL; /* success XXX */
1038 } else if (ret == 2) {
1039 so->so_state = SS_NOFDREF; /* CTL_CMD */
1042 tp->t_state = TCPS_FIN_WAIT_1;
1048 /* Do window scaling? */
1049 /* if ((tp->t_flags & (TF_RCVD_SCALE|TF_REQ_SCALE)) ==
1050 * (TF_RCVD_SCALE|TF_REQ_SCALE)) {
1051 * tp->snd_scale = tp->requested_s_scale;
1052 * tp->rcv_scale = tp->request_r_scale;
1055 (void) tcp_reass(tp, (struct tcpiphdr *)0, (struct mbuf *)0);
1056 tp->snd_wl1 = ti->ti_seq - 1;
1057 /* Avoid ack processing; snd_una==ti_ack => dup ack */
1062 * In ESTABLISHED state: drop duplicate ACKs; ACK out of range
1063 * ACKs. If the ack is in the range
1064 * tp->snd_una < ti->ti_ack <= tp->snd_max
1065 * then advance tp->snd_una to ti->ti_ack and drop
1066 * data from the retransmission queue. If this ACK reflects
1067 * more up to date window information we update our window information.
1069 case TCPS_ESTABLISHED:
1070 case TCPS_FIN_WAIT_1:
1071 case TCPS_FIN_WAIT_2:
1072 case TCPS_CLOSE_WAIT:
1075 case TCPS_TIME_WAIT:
1077 if (SEQ_LEQ(ti->ti_ack, tp->snd_una)) {
1078 if (ti->ti_len == 0 && tiwin == tp->snd_wnd) {
1079 STAT(tcpstat.tcps_rcvdupack++);
1080 DEBUG_MISC((dfd," dup ack m = %lx so = %lx \n",
1081 (long )m, (long )so));
1083 * If we have outstanding data (other than
1084 * a window probe), this is a completely
1085 * duplicate ack (ie, window info didn't
1086 * change), the ack is the biggest we've
1087 * seen and we've seen exactly our rexmt
1088 * threshold of them, assume a packet
1089 * has been dropped and retransmit it.
1090 * Kludge snd_nxt & the congestion
1091 * window so we send only this one
1094 * We know we're losing at the current
1095 * window size so do congestion avoidance
1096 * (set ssthresh to half the current window
1097 * and pull our congestion window back to
1098 * the new ssthresh).
1100 * Dup acks mean that packets have left the
1101 * network (they're now cached at the receiver)
1102 * so bump cwnd by the amount in the receiver
1103 * to keep a constant cwnd packets in the
1106 if (tp->t_timer[TCPT_REXMT] == 0 ||
1107 ti->ti_ack != tp->snd_una)
1109 else if (++tp->t_dupacks == TCPREXMTTHRESH) {
1110 tcp_seq onxt = tp->snd_nxt;
1112 min(tp->snd_wnd, tp->snd_cwnd) / 2 /
1117 tp->snd_ssthresh = win * tp->t_maxseg;
1118 tp->t_timer[TCPT_REXMT] = 0;
1120 tp->snd_nxt = ti->ti_ack;
1121 tp->snd_cwnd = tp->t_maxseg;
1122 (void) tcp_output(tp);
1123 tp->snd_cwnd = tp->snd_ssthresh +
1124 tp->t_maxseg * tp->t_dupacks;
1125 if (SEQ_GT(onxt, tp->snd_nxt))
1128 } else if (tp->t_dupacks > TCPREXMTTHRESH) {
1129 tp->snd_cwnd += tp->t_maxseg;
1130 (void) tcp_output(tp);
1139 * If the congestion window was inflated to account
1140 * for the other side's cached packets, retract it.
1142 if (tp->t_dupacks > TCPREXMTTHRESH &&
1143 tp->snd_cwnd > tp->snd_ssthresh)
1144 tp->snd_cwnd = tp->snd_ssthresh;
1146 if (SEQ_GT(ti->ti_ack, tp->snd_max)) {
1147 STAT(tcpstat.tcps_rcvacktoomuch++);
1150 acked = ti->ti_ack - tp->snd_una;
1151 STAT(tcpstat.tcps_rcvackpack++);
1152 STAT(tcpstat.tcps_rcvackbyte += acked);
1155 * If we have a timestamp reply, update smoothed
1156 * round trip time. If no timestamp is present but
1157 * transmit timer is running and timed sequence
1158 * number was acked, update smoothed round trip time.
1159 * Since we now have an rtt measurement, cancel the
1160 * timer backoff (cf., Phil Karn's retransmit alg.).
1161 * Recompute the initial retransmit timer.
1164 * tcp_xmit_timer(tp, tcp_now-ts_ecr+1);
1167 if (tp->t_rtt && SEQ_GT(ti->ti_ack, tp->t_rtseq))
1168 tcp_xmit_timer(tp,tp->t_rtt);
1171 * If all outstanding data is acked, stop retransmit
1172 * timer and remember to restart (more output or persist).
1173 * If there is more data to be acked, restart retransmit
1174 * timer, using current (possibly backed-off) value.
1176 if (ti->ti_ack == tp->snd_max) {
1177 tp->t_timer[TCPT_REXMT] = 0;
1179 } else if (tp->t_timer[TCPT_PERSIST] == 0)
1180 tp->t_timer[TCPT_REXMT] = tp->t_rxtcur;
1182 * When new data is acked, open the congestion window.
1183 * If the window gives us less than ssthresh packets
1184 * in flight, open exponentially (maxseg per packet).
1185 * Otherwise open linearly: maxseg per window
1186 * (maxseg^2 / cwnd per packet).
1189 register u_int cw = tp->snd_cwnd;
1190 register u_int incr = tp->t_maxseg;
1192 if (cw > tp->snd_ssthresh)
1193 incr = incr * incr / cw;
1194 tp->snd_cwnd = min(cw + incr, TCP_MAXWIN<<tp->snd_scale);
1196 if (acked > so->so_snd.sb_cc) {
1197 tp->snd_wnd -= so->so_snd.sb_cc;
1198 sbdrop(&so->so_snd, (int )so->so_snd.sb_cc);
1201 sbdrop(&so->so_snd, acked);
1202 tp->snd_wnd -= acked;
1206 * XXX sowwakup is called when data is acked and there's room for
1207 * for more data... it should read() the socket
1209 /* if (so->so_snd.sb_flags & SB_NOTIFY)
1212 tp->snd_una = ti->ti_ack;
1213 if (SEQ_LT(tp->snd_nxt, tp->snd_una))
1214 tp->snd_nxt = tp->snd_una;
1216 switch (tp->t_state) {
1219 * In FIN_WAIT_1 STATE in addition to the processing
1220 * for the ESTABLISHED state if our FIN is now acknowledged
1221 * then enter FIN_WAIT_2.
1223 case TCPS_FIN_WAIT_1:
1224 if (ourfinisacked) {
1226 * If we can't receive any more
1227 * data, then closing user can proceed.
1228 * Starting the timer is contrary to the
1229 * specification, but if we don't get a FIN
1230 * we'll hang forever.
1232 if (so->so_state & SS_FCANTRCVMORE) {
1233 soisfdisconnected(so);
1234 tp->t_timer[TCPT_2MSL] = TCP_MAXIDLE;
1236 tp->t_state = TCPS_FIN_WAIT_2;
1241 * In CLOSING STATE in addition to the processing for
1242 * the ESTABLISHED state if the ACK acknowledges our FIN
1243 * then enter the TIME-WAIT state, otherwise ignore
1247 if (ourfinisacked) {
1248 tp->t_state = TCPS_TIME_WAIT;
1249 tcp_canceltimers(tp);
1250 tp->t_timer[TCPT_2MSL] = 2 * TCPTV_MSL;
1251 soisfdisconnected(so);
1256 * In LAST_ACK, we may still be waiting for data to drain
1257 * and/or to be acked, as well as for the ack of our FIN.
1258 * If our FIN is now acknowledged, delete the TCB,
1259 * enter the closed state and return.
1262 if (ourfinisacked) {
1269 * In TIME_WAIT state the only thing that should arrive
1270 * is a retransmission of the remote FIN. Acknowledge
1271 * it and restart the finack timer.
1273 case TCPS_TIME_WAIT:
1274 tp->t_timer[TCPT_2MSL] = 2 * TCPTV_MSL;
1277 } /* switch(tp->t_state) */
1281 * Update window information.
1282 * Don't look at window if no ACK: TAC's send garbage on first SYN.
1284 if ((tiflags & TH_ACK) &&
1285 (SEQ_LT(tp->snd_wl1, ti->ti_seq) ||
1286 (tp->snd_wl1 == ti->ti_seq && (SEQ_LT(tp->snd_wl2, ti->ti_ack) ||
1287 (tp->snd_wl2 == ti->ti_ack && tiwin > tp->snd_wnd))))) {
1288 /* keep track of pure window updates */
1289 if (ti->ti_len == 0 &&
1290 tp->snd_wl2 == ti->ti_ack && tiwin > tp->snd_wnd)
1291 STAT(tcpstat.tcps_rcvwinupd++);
1292 tp->snd_wnd = tiwin;
1293 tp->snd_wl1 = ti->ti_seq;
1294 tp->snd_wl2 = ti->ti_ack;
1295 if (tp->snd_wnd > tp->max_sndwnd)
1296 tp->max_sndwnd = tp->snd_wnd;
1301 * Process segments with URG.
1303 if ((tiflags & TH_URG) && ti->ti_urp &&
1304 TCPS_HAVERCVDFIN(tp->t_state) == 0) {
1306 * This is a kludge, but if we receive and accept
1307 * random urgent pointers, we'll crash in
1308 * soreceive. It's hard to imagine someone
1309 * actually wanting to send this much urgent data.
1311 if (ti->ti_urp + so->so_rcv.sb_cc > so->so_rcv.sb_datalen) {
1317 * If this segment advances the known urgent pointer,
1318 * then mark the data stream. This should not happen
1319 * in CLOSE_WAIT, CLOSING, LAST_ACK or TIME_WAIT STATES since
1320 * a FIN has been received from the remote side.
1321 * In these states we ignore the URG.
1323 * According to RFC961 (Assigned Protocols),
1324 * the urgent pointer points to the last octet
1325 * of urgent data. We continue, however,
1326 * to consider it to indicate the first octet
1327 * of data past the urgent section as the original
1328 * spec states (in one of two places).
1330 if (SEQ_GT(ti->ti_seq+ti->ti_urp, tp->rcv_up)) {
1331 tp->rcv_up = ti->ti_seq + ti->ti_urp;
1332 so->so_urgc = so->so_rcv.sb_cc +
1333 (tp->rcv_up - tp->rcv_nxt); /* -1; */
1334 tp->rcv_up = ti->ti_seq + ti->ti_urp;
1339 * If no out of band data is expected,
1340 * pull receive urgent pointer along
1341 * with the receive window.
1343 if (SEQ_GT(tp->rcv_nxt, tp->rcv_up))
1344 tp->rcv_up = tp->rcv_nxt;
1348 * Process the segment text, merging it into the TCP sequencing queue,
1349 * and arranging for acknowledgment of receipt if necessary.
1350 * This process logically involves adjusting tp->rcv_wnd as data
1351 * is presented to the user (this happens in tcp_usrreq.c,
1352 * case PRU_RCVD). If a FIN has already been received on this
1353 * connection then we just ignore the text.
1355 if ((ti->ti_len || (tiflags&TH_FIN)) &&
1356 TCPS_HAVERCVDFIN(tp->t_state) == 0) {
1357 TCP_REASS(tp, ti, m, so, tiflags);
1359 * Note the amount of data that peer has sent into
1360 * our window, in order to estimate the sender's
1363 len = so->so_rcv.sb_datalen - (tp->rcv_adv - tp->rcv_nxt);
1370 * If FIN is received ACK the FIN and let the user know
1371 * that the connection is closing.
1373 if (tiflags & TH_FIN) {
1374 if (TCPS_HAVERCVDFIN(tp->t_state) == 0) {
1376 * If we receive a FIN we can't send more data,
1378 * Shutdown the socket if there is no rx data in the
1380 * soread() is called on completion of shutdown() and
1381 * will got to TCPS_LAST_ACK, and use tcp_output()
1384 /* sofcantrcvmore(so); */
1387 tp->t_flags |= TF_ACKNOW;
1390 switch (tp->t_state) {
1393 * In SYN_RECEIVED and ESTABLISHED STATES
1394 * enter the CLOSE_WAIT state.
1396 case TCPS_SYN_RECEIVED:
1397 case TCPS_ESTABLISHED:
1398 if(so->so_emu == EMU_CTL) /* no shutdown on socket */
1399 tp->t_state = TCPS_LAST_ACK;
1401 tp->t_state = TCPS_CLOSE_WAIT;
1405 * If still in FIN_WAIT_1 STATE FIN has not been acked so
1406 * enter the CLOSING state.
1408 case TCPS_FIN_WAIT_1:
1409 tp->t_state = TCPS_CLOSING;
1413 * In FIN_WAIT_2 state enter the TIME_WAIT state,
1414 * starting the time-wait timer, turning off the other
1417 case TCPS_FIN_WAIT_2:
1418 tp->t_state = TCPS_TIME_WAIT;
1419 tcp_canceltimers(tp);
1420 tp->t_timer[TCPT_2MSL] = 2 * TCPTV_MSL;
1421 soisfdisconnected(so);
1425 * In TIME_WAIT state restart the 2 MSL time_wait timer.
1427 case TCPS_TIME_WAIT:
1428 tp->t_timer[TCPT_2MSL] = 2 * TCPTV_MSL;
1434 * If this is a small packet, then ACK now - with Nagel
1435 * congestion avoidance sender won't send more until
1440 /* if (ti->ti_len && (unsigned)ti->ti_len < tp->t_maxseg) {
1442 /* if ((ti->ti_len && (unsigned)ti->ti_len < tp->t_maxseg &&
1443 * (so->so_iptos & IPTOS_LOWDELAY) == 0) ||
1444 * ((so->so_iptos & IPTOS_LOWDELAY) &&
1445 * ((struct tcpiphdr_2 *)ti)->first_char == (char)27)) {
1447 if (ti->ti_len && (unsigned)ti->ti_len <= 5 &&
1448 ((struct tcpiphdr_2 *)ti)->first_char == (char)27) {
1449 tp->t_flags |= TF_ACKNOW;
1453 * Return any desired output.
1455 if (needoutput || (tp->t_flags & TF_ACKNOW)) {
1456 (void) tcp_output(tp);
1462 * Generate an ACK dropping incoming segment if it occupies
1463 * sequence space, where the ACK reflects our state.
1465 if (tiflags & TH_RST)
1468 tp->t_flags |= TF_ACKNOW;
1469 (void) tcp_output(tp);
1473 /* reuses m if m!=NULL, m_free() unnecessary */
1474 if (tiflags & TH_ACK)
1475 tcp_respond(tp, ti, m, (tcp_seq)0, ti->ti_ack, TH_RST);
1477 if (tiflags & TH_SYN) ti->ti_len++;
1478 tcp_respond(tp, ti, m, ti->ti_seq+ti->ti_len, (tcp_seq)0,
1486 * Drop space held by incoming segment and return.
1493 /* , ts_present, ts_val, ts_ecr) */
1495 * u_int32_t *ts_val, *ts_ecr;
1498 tcp_dooptions(struct tcpcb *tp, u_char *cp, int cnt, struct tcpiphdr *ti)
1503 DEBUG_CALL("tcp_dooptions");
1504 DEBUG_ARGS((dfd," tp = %lx cnt=%i \n", (long )tp, cnt));
1506 for (; cnt > 0; cnt -= optlen, cp += optlen) {
1508 if (opt == TCPOPT_EOL)
1510 if (opt == TCPOPT_NOP)
1523 if (optlen != TCPOLEN_MAXSEG)
1525 if (!(ti->ti_flags & TH_SYN))
1527 memcpy((char *) &mss, (char *) cp + 2, sizeof(mss));
1529 (void) tcp_mss(tp, mss); /* sets t_maxseg */
1532 /* case TCPOPT_WINDOW:
1533 * if (optlen != TCPOLEN_WINDOW)
1535 * if (!(ti->ti_flags & TH_SYN))
1537 * tp->t_flags |= TF_RCVD_SCALE;
1538 * tp->requested_s_scale = min(cp[2], TCP_MAX_WINSHIFT);
1541 /* case TCPOPT_TIMESTAMP:
1542 * if (optlen != TCPOLEN_TIMESTAMP)
1545 * memcpy((char *) ts_val, (char *)cp + 2, sizeof(*ts_val));
1547 * memcpy((char *) ts_ecr, (char *)cp + 6, sizeof(*ts_ecr));
1551 * * A timestamp received in a SYN makes
1552 * * it ok to send timestamp requests and replies.
1554 /* if (ti->ti_flags & TH_SYN) {
1555 * tp->t_flags |= TF_RCVD_TSTMP;
1556 * tp->ts_recent = *ts_val;
1557 * tp->ts_recent_age = tcp_now;
1566 * Pull out of band byte out of a segment so
1567 * it doesn't appear in the user's data queue.
1568 * It is still reflected in the segment length for
1569 * sequencing purposes.
1575 tcp_pulloutofband(so, ti, m)
1577 struct tcpiphdr *ti;
1578 register struct mbuf *m;
1580 int cnt = ti->ti_urp - 1;
1583 if (m->m_len > cnt) {
1584 char *cp = mtod(m, caddr_t) + cnt;
1585 struct tcpcb *tp = sototcpcb(so);
1588 tp->t_oobflags |= TCPOOB_HAVEDATA;
1589 memcpy(sp, cp+1, (unsigned)(m->m_len - cnt - 1));
1594 m = m->m_next; /* XXX WRONG! Fix it! */
1598 panic("tcp_pulloutofband");
1604 * Collect new round-trip time estimate
1605 * and update averages and current timeout.
1609 tcp_xmit_timer(register struct tcpcb *tp, int rtt)
1611 register short delta;
1613 DEBUG_CALL("tcp_xmit_timer");
1614 DEBUG_ARG("tp = %lx", (long)tp);
1615 DEBUG_ARG("rtt = %d", rtt);
1617 STAT(tcpstat.tcps_rttupdated++);
1618 if (tp->t_srtt != 0) {
1620 * srtt is stored as fixed point with 3 bits after the
1621 * binary point (i.e., scaled by 8). The following magic
1622 * is equivalent to the smoothing algorithm in rfc793 with
1623 * an alpha of .875 (srtt = rtt/8 + srtt*7/8 in fixed
1624 * point). Adjust rtt to origin 0.
1626 delta = rtt - 1 - (tp->t_srtt >> TCP_RTT_SHIFT);
1627 if ((tp->t_srtt += delta) <= 0)
1630 * We accumulate a smoothed rtt variance (actually, a
1631 * smoothed mean difference), then set the retransmit
1632 * timer to smoothed rtt + 4 times the smoothed variance.
1633 * rttvar is stored as fixed point with 2 bits after the
1634 * binary point (scaled by 4). The following is
1635 * equivalent to rfc793 smoothing with an alpha of .75
1636 * (rttvar = rttvar*3/4 + |delta| / 4). This replaces
1637 * rfc793's wired-in beta.
1641 delta -= (tp->t_rttvar >> TCP_RTTVAR_SHIFT);
1642 if ((tp->t_rttvar += delta) <= 0)
1646 * No rtt measurement yet - use the unsmoothed rtt.
1647 * Set the variance to half the rtt (so our first
1648 * retransmit happens at 3*rtt).
1650 tp->t_srtt = rtt << TCP_RTT_SHIFT;
1651 tp->t_rttvar = rtt << (TCP_RTTVAR_SHIFT - 1);
1657 * the retransmit should happen at rtt + 4 * rttvar.
1658 * Because of the way we do the smoothing, srtt and rttvar
1659 * will each average +1/2 tick of bias. When we compute
1660 * the retransmit timer, we want 1/2 tick of rounding and
1661 * 1 extra tick because of +-1/2 tick uncertainty in the
1662 * firing of the timer. The bias will give us exactly the
1663 * 1.5 tick we need. But, because the bias is
1664 * statistical, we have to test that we don't drop below
1665 * the minimum feasible timer (which is 2 ticks).
1667 TCPT_RANGESET(tp->t_rxtcur, TCP_REXMTVAL(tp),
1668 (short)tp->t_rttmin, TCPTV_REXMTMAX); /* XXX */
1671 * We received an ack for a packet that wasn't retransmitted;
1672 * it is probably safe to discard any error indications we've
1673 * received recently. This isn't quite right, but close enough
1674 * for now (a route might have failed after we sent a segment,
1675 * and the return path might not be symmetrical).
1677 tp->t_softerror = 0;
1681 * Determine a reasonable value for maxseg size.
1682 * If the route is known, check route for mtu.
1683 * If none, use an mss that can be handled on the outgoing
1684 * interface without forcing IP to fragment; if bigger than
1685 * an mbuf cluster (MCLBYTES), round down to nearest multiple of MCLBYTES
1686 * to utilize large mbufs. If no route is found, route has no mtu,
1687 * or the destination isn't local, use a default, hopefully conservative
1688 * size (usually 512 or the default IP max size, but no more than the mtu
1689 * of the interface), as we can't discover anything about intervening
1690 * gateways or networks. We also initialize the congestion/slow start
1691 * window to be a single segment if the destination isn't local.
1692 * While looking at the routing entry, we also initialize other path-dependent
1693 * parameters from pre-set or cached values in the routing entry.
1697 tcp_mss(struct tcpcb *tp, u_int offer)
1699 struct socket *so = tp->t_socket;
1702 DEBUG_CALL("tcp_mss");
1703 DEBUG_ARG("tp = %lx", (long)tp);
1704 DEBUG_ARG("offer = %d", offer);
1706 mss = min(IF_MTU, IF_MRU) - sizeof(struct tcpiphdr);
1708 mss = min(mss, offer);
1710 if (mss < tp->t_maxseg || offer != 0)
1715 sbreserve(&so->so_snd, TCP_SNDSPACE + ((TCP_SNDSPACE % mss) ?
1716 (mss - (TCP_SNDSPACE % mss)) :
1718 sbreserve(&so->so_rcv, TCP_RCVSPACE + ((TCP_RCVSPACE % mss) ?
1719 (mss - (TCP_RCVSPACE % mss)) :
1722 DEBUG_MISC((dfd, " returning mss = %d\n", mss));