0671dc8b946048adab37eb8733f316043c307245
[dragonfly.git] / sys / netinet / tcp_output.c
1 /*
2  * Copyright (c) 2004 Jeffrey M. Hsu.  All rights reserved.
3  * Copyright (c) 2004 The DragonFly Project.  All rights reserved.
4  *
5  * This code is derived from software contributed to The DragonFly Project
6  * by Jeffrey M. Hsu.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. Neither the name of The DragonFly Project nor the names of its
17  *    contributors may be used to endorse or promote products derived
18  *    from this software without specific, prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
24  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
25  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
26  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
28  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
30  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33
34 /*
35  * Copyright (c) 1982, 1986, 1988, 1990, 1993, 1995
36  *      The Regents of the University of California.  All rights reserved.
37  *
38  * Redistribution and use in source and binary forms, with or without
39  * modification, are permitted provided that the following conditions
40  * are met:
41  * 1. Redistributions of source code must retain the above copyright
42  *    notice, this list of conditions and the following disclaimer.
43  * 2. Redistributions in binary form must reproduce the above copyright
44  *    notice, this list of conditions and the following disclaimer in the
45  *    documentation and/or other materials provided with the distribution.
46  * 3. All advertising materials mentioning features or use of this software
47  *    must display the following acknowledgement:
48  *      This product includes software developed by the University of
49  *      California, Berkeley and its contributors.
50  * 4. Neither the name of the University nor the names of its contributors
51  *    may be used to endorse or promote products derived from this software
52  *    without specific prior written permission.
53  *
54  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
55  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
56  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
57  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
58  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
59  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
60  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
61  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
62  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
63  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
64  * SUCH DAMAGE.
65  *
66  *      @(#)tcp_output.c        8.4 (Berkeley) 5/24/95
67  * $FreeBSD: src/sys/netinet/tcp_output.c,v 1.39.2.20 2003/01/29 22:45:36 hsu Exp $
68  */
69
70 #include "opt_inet.h"
71 #include "opt_inet6.h"
72 #include "opt_ipsec.h"
73 #include "opt_tcpdebug.h"
74
75 #include <sys/param.h>
76 #include <sys/systm.h>
77 #include <sys/kernel.h>
78 #include <sys/sysctl.h>
79 #include <sys/mbuf.h>
80 #include <sys/domain.h>
81 #include <sys/protosw.h>
82 #include <sys/socket.h>
83 #include <sys/socketvar.h>
84 #include <sys/in_cksum.h>
85 #include <sys/thread.h>
86 #include <sys/globaldata.h>
87
88 #include <net/if_var.h>
89 #include <net/route.h>
90 #include <net/netmsg2.h>
91 #include <net/netisr2.h>
92
93 #include <netinet/in.h>
94 #include <netinet/in_systm.h>
95 #include <netinet/ip.h>
96 #include <netinet/in_pcb.h>
97 #include <netinet/ip_var.h>
98 #include <netinet6/in6_pcb.h>
99 #include <netinet/ip6.h>
100 #include <netinet6/ip6_var.h>
101 #include <netinet/tcp.h>
102 #define TCPOUTFLAGS
103 #include <netinet/tcp_fsm.h>
104 #include <netinet/tcp_seq.h>
105 #include <netinet/tcp_timer.h>
106 #include <netinet/tcp_timer2.h>
107 #include <netinet/tcp_var.h>
108 #include <netinet/tcpip.h>
109 #ifdef TCPDEBUG
110 #include <netinet/tcp_debug.h>
111 #endif
112
113 #ifdef IPSEC
114 #include <netinet6/ipsec.h>
115 #endif /*IPSEC*/
116
117 #ifdef FAST_IPSEC
118 #include <netproto/ipsec/ipsec.h>
119 #define IPSEC
120 #endif /*FAST_IPSEC*/
121
122 #ifdef notyet
123 extern struct mbuf *m_copypack();
124 #endif
125
126 int path_mtu_discovery = 0;
127 SYSCTL_INT(_net_inet_tcp, OID_AUTO, path_mtu_discovery, CTLFLAG_RW,
128         &path_mtu_discovery, 1, "Enable Path MTU Discovery");
129
130 static int avoid_pure_win_update = 1;
131 SYSCTL_INT(_net_inet_tcp, OID_AUTO, avoid_pure_win_update, CTLFLAG_RW,
132         &avoid_pure_win_update, 1, "Avoid pure window updates when possible");
133
134 int tcp_do_autosndbuf = 1;
135 SYSCTL_INT(_net_inet_tcp, OID_AUTO, sendbuf_auto, CTLFLAG_RW,
136     &tcp_do_autosndbuf, 0, "Enable automatic send buffer sizing");
137
138 int tcp_autosndbuf_inc = 8*1024;
139 SYSCTL_INT(_net_inet_tcp, OID_AUTO, sendbuf_inc, CTLFLAG_RW,
140     &tcp_autosndbuf_inc, 0, "Incrementor step size of automatic send buffer");
141
142 int tcp_autosndbuf_max = 2*1024*1024;
143 SYSCTL_INT(_net_inet_tcp, OID_AUTO, sendbuf_max, CTLFLAG_RW,
144     &tcp_autosndbuf_max, 0, "Max size of automatic send buffer");
145
146 static int tcp_idle_cwv = 1;
147 SYSCTL_INT(_net_inet_tcp, OID_AUTO, idle_cwv, CTLFLAG_RW,
148     &tcp_idle_cwv, 0,
149     "Congestion window validation after idle period (part of RFC2861)");
150
151 static int tcp_idle_restart = 1;
152 SYSCTL_INT(_net_inet_tcp, OID_AUTO, idle_restart, CTLFLAG_RW,
153     &tcp_idle_restart, 0, "Reset congestion window after idle period");
154
155 static int tcp_do_tso = 1;
156 SYSCTL_INT(_net_inet_tcp, OID_AUTO, tso, CTLFLAG_RW,
157     &tcp_do_tso, 0, "Enable TCP Segmentation Offload (TSO)");
158
159 static int tcp_fairsend = 4;
160 SYSCTL_INT(_net_inet_tcp, OID_AUTO, fairsend, CTLFLAG_RW,
161     &tcp_fairsend, 0,
162     "Amount of segments sent before yield to other senders or receivers");
163
164 static void     tcp_idle_cwnd_validate(struct tcpcb *);
165
166 static int      tcp_tso_getsize(struct tcpcb *tp, u_int *segsz, u_int *hlen);
167 static void     tcp_output_sched(struct tcpcb *tp);
168
169 /*
170  * Tcp output routine: figure out what should be sent and send it.
171  */
172 int
173 tcp_output(struct tcpcb *tp)
174 {
175         struct inpcb * const inp = tp->t_inpcb;
176         struct socket *so = inp->inp_socket;
177         long len, recvwin, sendwin;
178         int nsacked = 0;
179         int off, flags, error = 0;
180 #ifdef TCP_SIGNATURE
181         int sigoff = 0;
182 #endif
183         struct mbuf *m;
184         struct ip *ip;
185         struct tcphdr *th;
186         u_char opt[TCP_MAXOLEN];
187         unsigned int ipoptlen, optlen, hdrlen;
188         int idle;
189         boolean_t sendalot;
190         struct ip6_hdr *ip6;
191 #ifdef INET6
192         const boolean_t isipv6 = (inp->inp_vflag & INP_IPV6) != 0;
193 #else
194         const boolean_t isipv6 = FALSE;
195 #endif
196         boolean_t can_tso = FALSE, use_tso;
197         boolean_t report_sack, idle_cwv = FALSE;
198         u_int segsz, tso_hlen, tso_lenmax = 0;
199         int segcnt = 0;
200         boolean_t need_sched = FALSE;
201
202         KKASSERT(so->so_port == &curthread->td_msgport);
203
204         /*
205          * Determine length of data that should be transmitted,
206          * and flags that will be used.
207          * If there is some data or critical controls (SYN, RST)
208          * to send, then transmit; otherwise, investigate further.
209          */
210
211         /*
212          * If we have been idle for a while, the send congestion window
213          * could be no longer representative of the current state of the
214          * link; need to validate congestion window.  However, we should
215          * not perform congestion window validation here, since we could
216          * be asked to send pure ACK.
217          */
218         if (tp->snd_max == tp->snd_una &&
219             (ticks - tp->snd_last) >= tp->t_rxtcur && tcp_idle_restart)
220                 idle_cwv = TRUE;
221
222         /*
223          * Calculate whether the transmit stream was previously idle 
224          * and adjust TF_LASTIDLE for the next time.
225          */
226         idle = (tp->t_flags & TF_LASTIDLE) || (tp->snd_max == tp->snd_una);
227         if (idle && (tp->t_flags & TF_MORETOCOME))
228                 tp->t_flags |= TF_LASTIDLE;
229         else
230                 tp->t_flags &= ~TF_LASTIDLE;
231
232         if (TCP_DO_SACK(tp) && tp->snd_nxt != tp->snd_max &&
233             !IN_FASTRECOVERY(tp))
234                 nsacked = tcp_sack_bytes_below(&tp->scb, tp->snd_nxt);
235
236         /*
237          * Find out whether TSO could be used or not
238          *
239          * For TSO capable devices, the following assumptions apply to
240          * the processing of TCP flags:
241          * - If FIN is set on the large TCP segment, the device must set
242          *   FIN on the last segment that it creates from the large TCP
243          *   segment.
244          * - If PUSH is set on the large TCP segment, the device must set
245          *   PUSH on the last segment that it creates from the large TCP
246          *   segment.
247          */
248 #if !defined(IPSEC) && !defined(FAST_IPSEC)
249         if (tcp_do_tso
250 #ifdef TCP_SIGNATURE
251             && (tp->t_flags & TF_SIGNATURE) == 0
252 #endif
253         ) {
254                 if (!isipv6) {
255                         struct rtentry *rt = inp->inp_route.ro_rt;
256
257                         if (rt != NULL && (rt->rt_flags & RTF_UP) &&
258                             (rt->rt_ifp->if_hwassist & CSUM_TSO)) {
259                                 can_tso = TRUE;
260                                 tso_lenmax = rt->rt_ifp->if_tsolen;
261                         }
262                 }
263         }
264 #endif  /* !IPSEC && !FAST_IPSEC */
265
266 again:
267         m = NULL;
268         ip = NULL;
269         th = NULL;
270         ip6 = NULL;
271
272         if ((tp->t_flags & (TF_SACK_PERMITTED | TF_NOOPT)) ==
273                 TF_SACK_PERMITTED &&
274             (!TAILQ_EMPTY(&tp->t_segq) ||
275              tp->reportblk.rblk_start != tp->reportblk.rblk_end))
276                 report_sack = TRUE;
277         else
278                 report_sack = FALSE;
279
280         /* Make use of SACK information when slow-starting after a RTO. */
281         if (TCP_DO_SACK(tp) && tp->snd_nxt != tp->snd_max &&
282             !IN_FASTRECOVERY(tp)) {
283                 tcp_seq old_snd_nxt = tp->snd_nxt;
284
285                 tcp_sack_skip_sacked(&tp->scb, &tp->snd_nxt);
286                 nsacked += tp->snd_nxt - old_snd_nxt;
287         }
288
289         sendalot = FALSE;
290         off = tp->snd_nxt - tp->snd_una;
291         sendwin = min(tp->snd_wnd, tp->snd_cwnd + nsacked);
292         sendwin = min(sendwin, tp->snd_bwnd);
293
294         flags = tcp_outflags[tp->t_state];
295         /*
296          * Get standard flags, and add SYN or FIN if requested by 'hidden'
297          * state flags.
298          */
299         if (tp->t_flags & TF_NEEDFIN)
300                 flags |= TH_FIN;
301         if (tp->t_flags & TF_NEEDSYN)
302                 flags |= TH_SYN;
303
304         /*
305          * If in persist timeout with window of 0, send 1 byte.
306          * Otherwise, if window is small but nonzero
307          * and timer expired, we will send what we can
308          * and go to transmit state.
309          */
310         if (tp->t_flags & TF_FORCE) {
311                 if (sendwin == 0) {
312                         /*
313                          * If we still have some data to send, then
314                          * clear the FIN bit.  Usually this would
315                          * happen below when it realizes that we
316                          * aren't sending all the data.  However,
317                          * if we have exactly 1 byte of unsent data,
318                          * then it won't clear the FIN bit below,
319                          * and if we are in persist state, we wind
320                          * up sending the packet without recording
321                          * that we sent the FIN bit.
322                          *
323                          * We can't just blindly clear the FIN bit,
324                          * because if we don't have any more data
325                          * to send then the probe will be the FIN
326                          * itself.
327                          */
328                         if (off < so->so_snd.ssb_cc)
329                                 flags &= ~TH_FIN;
330                         sendwin = 1;
331                 } else {
332                         tcp_callout_stop(tp, tp->tt_persist);
333                         tp->t_rxtshift = 0;
334                 }
335         }
336
337         /*
338          * If snd_nxt == snd_max and we have transmitted a FIN, the
339          * offset will be > 0 even if so_snd.ssb_cc is 0, resulting in
340          * a negative length.  This can also occur when TCP opens up
341          * its congestion window while receiving additional duplicate
342          * acks after fast-retransmit because TCP will reset snd_nxt
343          * to snd_max after the fast-retransmit.
344          *
345          * A negative length can also occur when we are in the
346          * TCPS_SYN_RECEIVED state due to a simultanious connect where
347          * our SYN has not been acked yet.
348          *
349          * In the normal retransmit-FIN-only case, however, snd_nxt will
350          * be set to snd_una, the offset will be 0, and the length may
351          * wind up 0.
352          */
353         len = (long)ulmin(so->so_snd.ssb_cc, sendwin) - off;
354
355         /*
356          * Lop off SYN bit if it has already been sent.  However, if this
357          * is SYN-SENT state and if segment contains data, suppress sending
358          * segment (sending the segment would be an option if we still
359          * did TAO and the remote host supported it).
360          */
361         if ((flags & TH_SYN) && SEQ_GT(tp->snd_nxt, tp->snd_una)) {
362                 flags &= ~TH_SYN;
363                 off--, len++;
364                 if (len > 0 && tp->t_state == TCPS_SYN_SENT) {
365                         tp->t_flags &= ~(TF_ACKNOW | TF_XMITNOW);
366                         return 0;
367                 }
368         }
369
370         /*
371          * Be careful not to send data and/or FIN on SYN segments.
372          * This measure is needed to prevent interoperability problems
373          * with not fully conformant TCP implementations.
374          */
375         if (flags & TH_SYN) {
376                 len = 0;
377                 flags &= ~TH_FIN;
378         }
379
380         if (len < 0) {
381                 /*
382                  * A negative len can occur if our FIN has been sent but not
383                  * acked, or if we are in a simultanious connect in the
384                  * TCPS_SYN_RECEIVED state with our SYN sent but not yet
385                  * acked.
386                  *
387                  * If our window has contracted to 0 in the FIN case
388                  * (which can only occur if we have NOT been called to
389                  * retransmit as per code a few paragraphs up) then we
390                  * want to shift the retransmit timer over to the
391                  * persist timer.
392                  *
393                  * However, if we are in the TCPS_SYN_RECEIVED state
394                  * (the SYN case) we will be in a simultanious connect and
395                  * the window may be zero degeneratively.  In this case we
396                  * do not want to shift to the persist timer after the SYN
397                  * or the SYN+ACK transmission.
398                  */
399                 len = 0;
400                 if (sendwin == 0 && tp->t_state != TCPS_SYN_RECEIVED) {
401                         tcp_callout_stop(tp, tp->tt_rexmt);
402                         tp->t_rxtshift = 0;
403                         tp->snd_nxt = tp->snd_una;
404                         if (!tcp_callout_active(tp, tp->tt_persist))
405                                 tcp_setpersist(tp);
406                 }
407         }
408
409         KASSERT(len >= 0, ("%s: len < 0", __func__));
410         /*
411          * Automatic sizing of send socket buffer.  Often the send buffer
412          * size is not optimally adjusted to the actual network conditions
413          * at hand (delay bandwidth product).  Setting the buffer size too
414          * small limits throughput on links with high bandwidth and high
415          * delay (eg. trans-continental/oceanic links).  Setting the
416          * buffer size too big consumes too much real kernel memory,
417          * especially with many connections on busy servers.
418          *
419          * The criteria to step up the send buffer one notch are:
420          *  1. receive window of remote host is larger than send buffer
421          *     (with a fudge factor of 5/4th);
422          *  2. send buffer is filled to 7/8th with data (so we actually
423          *     have data to make use of it);
424          *  3. send buffer fill has not hit maximal automatic size;
425          *  4. our send window (slow start and cogestion controlled) is
426          *     larger than sent but unacknowledged data in send buffer.
427          *
428          * The remote host receive window scaling factor may limit the
429          * growing of the send buffer before it reaches its allowed
430          * maximum.
431          *
432          * It scales directly with slow start or congestion window
433          * and does at most one step per received ACK.  This fast
434          * scaling has the drawback of growing the send buffer beyond
435          * what is strictly necessary to make full use of a given
436          * delay*bandwith product.  However testing has shown this not
437          * to be much of an problem.  At worst we are trading wasting
438          * of available bandwith (the non-use of it) for wasting some
439          * socket buffer memory.
440          *
441          * TODO: Shrink send buffer during idle periods together
442          * with congestion window.  Requires another timer.  Has to
443          * wait for upcoming tcp timer rewrite.
444          */
445         if (tcp_do_autosndbuf && so->so_snd.ssb_flags & SSB_AUTOSIZE) {
446                 if ((tp->snd_wnd / 4 * 5) >= so->so_snd.ssb_hiwat &&
447                     so->so_snd.ssb_cc >= (so->so_snd.ssb_hiwat / 8 * 7) &&
448                     so->so_snd.ssb_cc < tcp_autosndbuf_max &&
449                     sendwin >= (so->so_snd.ssb_cc - (tp->snd_nxt - tp->snd_una))) {
450                         u_long newsize;
451
452                         newsize = ulmin(so->so_snd.ssb_hiwat +
453                                          tcp_autosndbuf_inc,
454                                         tcp_autosndbuf_max);
455                         if (!ssb_reserve(&so->so_snd, newsize, so, NULL))
456                                 atomic_clear_int(&so->so_snd.ssb_flags, SSB_AUTOSIZE);
457                         if (newsize >= (TCP_MAXWIN << tp->snd_scale))
458                                 atomic_clear_int(&so->so_snd.ssb_flags, SSB_AUTOSIZE);
459                 }
460         }
461
462         /*
463          * Don't use TSO, if:
464          * - Congestion window needs validation
465          * - There are SACK blocks to report
466          * - RST or SYN flags is set
467          * - URG will be set
468          *
469          * XXX
470          * Checking for SYN|RST looks overkill, just to be safe than sorry
471          */
472         use_tso = can_tso;
473         if (report_sack || idle_cwv || (flags & (TH_RST | TH_SYN)))
474                 use_tso = FALSE;
475         if (use_tso) {
476                 tcp_seq ugr_nxt = tp->snd_nxt;
477
478                 if ((flags & TH_FIN) && (tp->t_flags & TF_SENTFIN) &&
479                     tp->snd_nxt == tp->snd_max)
480                         --ugr_nxt;
481
482                 if (SEQ_GT(tp->snd_up, ugr_nxt))
483                         use_tso = FALSE;
484         }
485
486         if (use_tso) {
487                 /*
488                  * Find out segment size and header length for TSO
489                  */
490                 error = tcp_tso_getsize(tp, &segsz, &tso_hlen);
491                 if (error)
492                         use_tso = FALSE;
493         }
494         if (!use_tso) {
495                 segsz = tp->t_maxseg;
496                 tso_hlen = 0; /* not used */
497         }
498
499         /*
500          * Truncate to the maximum segment length if not TSO, and ensure that
501          * FIN is removed if the length no longer contains the last data byte.
502          */
503         if (len > segsz) {
504                 if (!use_tso) {
505                         len = segsz;
506                         ++segcnt;
507                 } else {
508                         int nsegs;
509
510                         if (__predict_false(tso_lenmax < segsz))
511                                 tso_lenmax = segsz << 1;
512
513                         /*
514                          * Truncate TSO transfers to (IP_MAXPACKET - iphlen -
515                          * thoff), and make sure that we send equal size
516                          * transfers down the stack (rather than big-small-
517                          * big-small-...).
518                          */
519                         len = min(len, tso_lenmax);
520                         nsegs = min(len, (IP_MAXPACKET - tso_hlen)) / segsz;
521                         KKASSERT(nsegs > 0);
522
523                         len = nsegs * segsz;
524
525                         if (len <= segsz) {
526                                 use_tso = FALSE;
527                                 ++segcnt;
528                         } else {
529                                 segcnt += nsegs;
530                         }
531                 }
532                 sendalot = TRUE;
533         } else {
534                 use_tso = FALSE;
535                 if (len > 0)
536                         ++segcnt;
537         }
538         if (SEQ_LT(tp->snd_nxt + len, tp->snd_una + so->so_snd.ssb_cc))
539                 flags &= ~TH_FIN;
540
541         recvwin = ssb_space(&so->so_rcv);
542
543         /*
544          * Sender silly window avoidance.   We transmit under the following
545          * conditions when len is non-zero:
546          *
547          *      - We have a full segment
548          *      - This is the last buffer in a write()/send() and we are
549          *        either idle or running NODELAY
550          *      - we've timed out (e.g. persist timer)
551          *      - we have more then 1/2 the maximum send window's worth of
552          *        data (receiver may be limiting the window size)
553          *      - we need to retransmit
554          */
555         if (len) {
556                 if (len >= segsz)
557                         goto send;
558                 /*
559                  * NOTE! on localhost connections an 'ack' from the remote
560                  * end may occur synchronously with the output and cause
561                  * us to flush a buffer queued with moretocome.  XXX
562                  *
563                  * note: the len + off check is almost certainly unnecessary.
564                  */
565                 if (!(tp->t_flags & TF_MORETOCOME) &&   /* normal case */
566                     (idle || (tp->t_flags & TF_NODELAY)) &&
567                     len + off >= so->so_snd.ssb_cc &&
568                     !(tp->t_flags & TF_NOPUSH)) {
569                         goto send;
570                 }
571                 if (tp->t_flags & TF_FORCE)             /* typ. timeout case */
572                         goto send;
573                 if (len >= tp->max_sndwnd / 2 && tp->max_sndwnd > 0)
574                         goto send;
575                 if (SEQ_LT(tp->snd_nxt, tp->snd_max))   /* retransmit case */
576                         goto send;
577                 if (tp->t_flags & TF_XMITNOW)
578                         goto send;
579         }
580
581         /*
582          * Compare available window to amount of window
583          * known to peer (as advertised window less
584          * next expected input).  If the difference is at least two
585          * max size segments, or at least 50% of the maximum possible
586          * window, then want to send a window update to peer.
587          */
588         if (recvwin > 0) {
589                 /*
590                  * "adv" is the amount we can increase the window,
591                  * taking into account that we are limited by
592                  * TCP_MAXWIN << tp->rcv_scale.
593                  */
594                 long adv = min(recvwin, (long)TCP_MAXWIN << tp->rcv_scale) -
595                         (tp->rcv_adv - tp->rcv_nxt);
596                 long hiwat;
597
598                 /*
599                  * This ack case typically occurs when the user has drained
600                  * the TCP socket buffer sufficiently to warrent an ack
601                  * containing a 'pure window update'... that is, an ack that
602                  * ONLY updates the tcp window.
603                  *
604                  * It is unclear why we would need to do a pure window update
605                  * past 2 segments if we are going to do one at 1/2 the high
606                  * water mark anyway, especially since under normal conditions
607                  * the user program will drain the socket buffer quickly.
608                  * The 2-segment pure window update will often add a large
609                  * number of extra, unnecessary acks to the stream.
610                  *
611                  * avoid_pure_win_update now defaults to 1.
612                  */
613                 if (avoid_pure_win_update == 0 ||
614                     (tp->t_flags & TF_RXRESIZED)) {
615                         if (adv >= (long) (2 * segsz)) {
616                                 goto send;
617                         }
618                 }
619                 hiwat = (long)(TCP_MAXWIN << tp->rcv_scale);
620                 if (hiwat > (long)so->so_rcv.ssb_hiwat)
621                         hiwat = (long)so->so_rcv.ssb_hiwat;
622                 if (adv >= hiwat / 2)
623                         goto send;
624         }
625
626         /*
627          * Send if we owe the peer an ACK, RST, SYN, or urgent data.  ACKNOW
628          * is also a catch-all for the retransmit timer timeout case.
629          */
630         if (tp->t_flags & TF_ACKNOW)
631                 goto send;
632         if ((flags & TH_RST) ||
633             ((flags & TH_SYN) && !(tp->t_flags & TF_NEEDSYN)))
634                 goto send;
635         if (SEQ_GT(tp->snd_up, tp->snd_una))
636                 goto send;
637         /*
638          * If our state indicates that FIN should be sent
639          * and we have not yet done so, then we need to send.
640          */
641         if ((flags & TH_FIN) &&
642             (!(tp->t_flags & TF_SENTFIN) || tp->snd_nxt == tp->snd_una))
643                 goto send;
644
645         /*
646          * TCP window updates are not reliable, rather a polling protocol
647          * using ``persist'' packets is used to insure receipt of window
648          * updates.  The three ``states'' for the output side are:
649          *      idle                    not doing retransmits or persists
650          *      persisting              to move a small or zero window
651          *      (re)transmitting        and thereby not persisting
652          *
653          * tcp_callout_active(tp, tp->tt_persist)
654          *      is true when we are in persist state.
655          * The TF_FORCE flag in tp->t_flags
656          *      is set when we are called to send a persist packet.
657          * tcp_callout_active(tp, tp->tt_rexmt)
658          *      is set when we are retransmitting
659          * The output side is idle when both timers are zero.
660          *
661          * If send window is too small, there is data to transmit, and no
662          * retransmit or persist is pending, then go to persist state.
663          *
664          * If nothing happens soon, send when timer expires:
665          * if window is nonzero, transmit what we can, otherwise force out
666          * a byte.
667          *
668          * Don't try to set the persist state if we are in TCPS_SYN_RECEIVED
669          * with data pending.  This situation can occur during a
670          * simultanious connect.
671          */
672         if (so->so_snd.ssb_cc > 0 &&
673             tp->t_state != TCPS_SYN_RECEIVED &&
674             !tcp_callout_active(tp, tp->tt_rexmt) &&
675             !tcp_callout_active(tp, tp->tt_persist)) {
676                 tp->t_rxtshift = 0;
677                 tcp_setpersist(tp);
678         }
679
680         /*
681          * No reason to send a segment, just return.
682          */
683         tp->t_flags &= ~TF_XMITNOW;
684         return (0);
685
686 send:
687         if (need_sched && len > 0) {
688                 tcp_output_sched(tp);
689                 return 0;
690         }
691
692         /*
693          * Before ESTABLISHED, force sending of initial options
694          * unless TCP set not to do any options.
695          * NOTE: we assume that the IP/TCP header plus TCP options
696          * always fit in a single mbuf, leaving room for a maximum
697          * link header, i.e.
698          *      max_linkhdr + sizeof(struct tcpiphdr) + optlen <= MCLBYTES
699          */
700         optlen = 0;
701         if (isipv6)
702                 hdrlen = sizeof(struct ip6_hdr) + sizeof(struct tcphdr);
703         else
704                 hdrlen = sizeof(struct tcpiphdr);
705         if (flags & TH_SYN) {
706                 tp->snd_nxt = tp->iss;
707                 if (!(tp->t_flags & TF_NOOPT)) {
708                         u_short mss;
709
710                         opt[0] = TCPOPT_MAXSEG;
711                         opt[1] = TCPOLEN_MAXSEG;
712                         mss = htons((u_short) tcp_mssopt(tp));
713                         memcpy(opt + 2, &mss, sizeof mss);
714                         optlen = TCPOLEN_MAXSEG;
715
716                         if ((tp->t_flags & TF_REQ_SCALE) &&
717                             (!(flags & TH_ACK) ||
718                              (tp->t_flags & TF_RCVD_SCALE))) {
719                                 *((u_int32_t *)(opt + optlen)) = htonl(
720                                         TCPOPT_NOP << 24 |
721                                         TCPOPT_WINDOW << 16 |
722                                         TCPOLEN_WINDOW << 8 |
723                                         tp->request_r_scale);
724                                 optlen += 4;
725                         }
726
727                         if ((tcp_do_sack && !(flags & TH_ACK)) ||
728                             tp->t_flags & TF_SACK_PERMITTED) {
729                                 uint32_t *lp = (uint32_t *)(opt + optlen);
730
731                                 *lp = htonl(TCPOPT_SACK_PERMITTED_ALIGNED);
732                                 optlen += TCPOLEN_SACK_PERMITTED_ALIGNED;
733                         }
734                 }
735         }
736
737         /*
738          * Send a timestamp and echo-reply if this is a SYN and our side
739          * wants to use timestamps (TF_REQ_TSTMP is set) or both our side
740          * and our peer have sent timestamps in our SYN's.
741          */
742         if ((tp->t_flags & (TF_REQ_TSTMP | TF_NOOPT)) == TF_REQ_TSTMP &&
743             !(flags & TH_RST) &&
744             (!(flags & TH_ACK) || (tp->t_flags & TF_RCVD_TSTMP))) {
745                 u_int32_t *lp = (u_int32_t *)(opt + optlen);
746
747                 /* Form timestamp option as shown in appendix A of RFC 1323. */
748                 *lp++ = htonl(TCPOPT_TSTAMP_HDR);
749                 *lp++ = htonl(ticks);
750                 *lp   = htonl(tp->ts_recent);
751                 optlen += TCPOLEN_TSTAMP_APPA;
752         }
753
754         /* Set receive buffer autosizing timestamp. */
755         if (tp->rfbuf_ts == 0 && (so->so_rcv.ssb_flags & SSB_AUTOSIZE))
756                 tp->rfbuf_ts = ticks;
757
758         /*
759          * If this is a SACK connection and we have a block to report,
760          * fill in the SACK blocks in the TCP options.
761          */
762         if (report_sack)
763                 tcp_sack_fill_report(tp, opt, &optlen);
764
765 #ifdef TCP_SIGNATURE
766         if (tp->t_flags & TF_SIGNATURE) {
767                 int i;
768                 u_char *bp;
769                 /*
770                  * Initialize TCP-MD5 option (RFC2385)
771                  */
772                 bp = (u_char *)opt + optlen;
773                 *bp++ = TCPOPT_SIGNATURE;
774                 *bp++ = TCPOLEN_SIGNATURE;
775                 sigoff = optlen + 2;
776                 for (i = 0; i < TCP_SIGLEN; i++)
777                         *bp++ = 0;
778                 optlen += TCPOLEN_SIGNATURE;
779                 /*
780                  * Terminate options list and maintain 32-bit alignment.
781                  */
782                 *bp++ = TCPOPT_NOP;
783                 *bp++ = TCPOPT_EOL;
784                 optlen += 2;
785         }
786 #endif /* TCP_SIGNATURE */
787         KASSERT(optlen <= TCP_MAXOLEN, ("too many TCP options"));
788         hdrlen += optlen;
789
790         if (isipv6) {
791                 ipoptlen = ip6_optlen(inp);
792         } else {
793                 if (inp->inp_options) {
794                         ipoptlen = inp->inp_options->m_len -
795                             offsetof(struct ipoption, ipopt_list);
796                 } else {
797                         ipoptlen = 0;
798                 }
799         }
800 #ifdef IPSEC
801         ipoptlen += ipsec_hdrsiz_tcp(tp);
802 #endif
803
804         if (use_tso) {
805                 /* TSO segment length must be multiple of segment size */
806                 KASSERT(len >= (2 * segsz) && (len % segsz == 0),
807                     ("invalid TSO len %ld, segsz %u", len, segsz));
808         } else {
809                 KASSERT(len <= segsz,
810                     ("invalid len %ld, segsz %u", len, segsz));
811
812                 /*
813                  * Adjust data length if insertion of options will bump
814                  * the packet length beyond the t_maxopd length.  Clear
815                  * FIN to prevent premature closure since there is still
816                  * more data to send after this (now truncated) packet.
817                  *
818                  * If just the options do not fit we are in a no-win
819                  * situation and we treat it as an unreachable host.
820                  */
821                 if (len + optlen + ipoptlen > tp->t_maxopd) {
822                         if (tp->t_maxopd <= optlen + ipoptlen) {
823                                 static time_t last_optlen_report;
824
825                                 if (last_optlen_report != time_second) {
826                                         last_optlen_report = time_second;
827                                         kprintf("tcpcb %p: MSS (%d) too "
828                                             "small to hold options!\n",
829                                             tp, tp->t_maxopd);
830                                 }
831                                 error = EHOSTUNREACH;
832                                 goto out;
833                         } else {
834                                 flags &= ~TH_FIN;
835                                 len = tp->t_maxopd - optlen - ipoptlen;
836                                 sendalot = TRUE;
837                         }
838                 }
839         }
840
841 #ifdef INET6
842         KASSERT(max_linkhdr + hdrlen <= MCLBYTES, ("tcphdr too big"));
843 #else
844         KASSERT(max_linkhdr + hdrlen <= MHLEN, ("tcphdr too big"));
845 #endif
846
847         /*
848          * Grab a header mbuf, attaching a copy of data to
849          * be transmitted, and initialize the header from
850          * the template for sends on this connection.
851          */
852         if (len) {
853                 if ((tp->t_flags & TF_FORCE) && len == 1)
854                         tcpstat.tcps_sndprobe++;
855                 else if (SEQ_LT(tp->snd_nxt, tp->snd_max)) {
856                         if (tp->snd_nxt == tp->snd_una)
857                                 tp->snd_max_rexmt = tp->snd_max;
858                         if (nsacked) {
859                                 tcpstat.tcps_sndsackrtopack++;
860                                 tcpstat.tcps_sndsackrtobyte += len;
861                         }
862                         tcpstat.tcps_sndrexmitpack++;
863                         tcpstat.tcps_sndrexmitbyte += len;
864                 } else {
865                         tcpstat.tcps_sndpack++;
866                         tcpstat.tcps_sndbyte += len;
867                 }
868                 if (idle_cwv) {
869                         idle_cwv = FALSE;
870                         tcp_idle_cwnd_validate(tp);
871                 }
872                 /* Update last send time after CWV */
873                 tp->snd_last = ticks;
874 #ifdef notyet
875                 if ((m = m_copypack(so->so_snd.ssb_mb, off, (int)len,
876                     max_linkhdr + hdrlen)) == NULL) {
877                         error = ENOBUFS;
878                         goto after_th;
879                 }
880                 /*
881                  * m_copypack left space for our hdr; use it.
882                  */
883                 m->m_len += hdrlen;
884                 m->m_data -= hdrlen;
885 #else
886 #ifndef INET6
887                 m = m_gethdr(MB_DONTWAIT, MT_HEADER);
888 #else
889                 m = m_getl(hdrlen + max_linkhdr, MB_DONTWAIT, MT_HEADER,
890                            M_PKTHDR, NULL);
891 #endif
892                 if (m == NULL) {
893                         error = ENOBUFS;
894                         goto after_th;
895                 }
896                 m->m_data += max_linkhdr;
897                 m->m_len = hdrlen;
898                 if (len <= MHLEN - hdrlen - max_linkhdr) {
899                         m_copydata(so->so_snd.ssb_mb, off, (int) len,
900                             mtod(m, caddr_t) + hdrlen);
901                         m->m_len += len;
902                 } else {
903                         m->m_next = m_copy(so->so_snd.ssb_mb, off, (int) len);
904                         if (m->m_next == NULL) {
905                                 m_free(m);
906                                 m = NULL;
907                                 error = ENOBUFS;
908                                 goto after_th;
909                         }
910                 }
911 #endif
912                 /*
913                  * If we're sending everything we've got, set PUSH.
914                  * (This will keep happy those implementations which only
915                  * give data to the user when a buffer fills or
916                  * a PUSH comes in.)
917                  */
918                 if (off + len == so->so_snd.ssb_cc)
919                         flags |= TH_PUSH;
920         } else {
921                 if (tp->t_flags & TF_ACKNOW)
922                         tcpstat.tcps_sndacks++;
923                 else if (flags & (TH_SYN | TH_FIN | TH_RST))
924                         tcpstat.tcps_sndctrl++;
925                 else if (SEQ_GT(tp->snd_up, tp->snd_una))
926                         tcpstat.tcps_sndurg++;
927                 else
928                         tcpstat.tcps_sndwinup++;
929
930                 MGETHDR(m, MB_DONTWAIT, MT_HEADER);
931                 if (m == NULL) {
932                         error = ENOBUFS;
933                         goto after_th;
934                 }
935                 if (isipv6 &&
936                     (hdrlen + max_linkhdr > MHLEN) && hdrlen <= MHLEN)
937                         MH_ALIGN(m, hdrlen);
938                 else
939                         m->m_data += max_linkhdr;
940                 m->m_len = hdrlen;
941         }
942         m->m_pkthdr.rcvif = NULL;
943         if (isipv6) {
944                 ip6 = mtod(m, struct ip6_hdr *);
945                 th = (struct tcphdr *)(ip6 + 1);
946                 tcp_fillheaders(tp, ip6, th, use_tso);
947         } else {
948                 ip = mtod(m, struct ip *);
949                 th = (struct tcphdr *)(ip + 1);
950                 /* this picks up the pseudo header (w/o the length) */
951                 tcp_fillheaders(tp, ip, th, use_tso);
952         }
953 after_th:
954         /*
955          * Fill in fields, remembering maximum advertised
956          * window for use in delaying messages about window sizes.
957          * If resending a FIN, be sure not to use a new sequence number.
958          */
959         if (flags & TH_FIN && tp->t_flags & TF_SENTFIN &&
960             tp->snd_nxt == tp->snd_max)
961                 tp->snd_nxt--;
962
963         if (th != NULL) {
964                 /*
965                  * If we are doing retransmissions, then snd_nxt will
966                  * not reflect the first unsent octet.  For ACK only
967                  * packets, we do not want the sequence number of the
968                  * retransmitted packet, we want the sequence number
969                  * of the next unsent octet.  So, if there is no data
970                  * (and no SYN or FIN), use snd_max instead of snd_nxt
971                  * when filling in ti_seq.  But if we are in persist
972                  * state, snd_max might reflect one byte beyond the
973                  * right edge of the window, so use snd_nxt in that
974                  * case, since we know we aren't doing a retransmission.
975                  * (retransmit and persist are mutually exclusive...)
976                  */
977                 if (len || (flags & (TH_SYN|TH_FIN)) ||
978                     tcp_callout_active(tp, tp->tt_persist))
979                         th->th_seq = htonl(tp->snd_nxt);
980                 else
981                         th->th_seq = htonl(tp->snd_max);
982                 th->th_ack = htonl(tp->rcv_nxt);
983                 if (optlen) {
984                         bcopy(opt, th + 1, optlen);
985                         th->th_off = (sizeof(struct tcphdr) + optlen) >> 2;
986                 }
987                 th->th_flags = flags;
988         }
989
990         /*
991          * Calculate receive window.  Don't shrink window, but avoid
992          * silly window syndrome by sending a 0 window if the actual
993          * window is less then one segment.
994          */
995         if (recvwin < (long)(so->so_rcv.ssb_hiwat / 4) &&
996             recvwin < (long)segsz)
997                 recvwin = 0;
998         if (recvwin < (tcp_seq_diff_t)(tp->rcv_adv - tp->rcv_nxt))
999                 recvwin = (tcp_seq_diff_t)(tp->rcv_adv - tp->rcv_nxt);
1000         if (recvwin > (long)TCP_MAXWIN << tp->rcv_scale)
1001                 recvwin = (long)TCP_MAXWIN << tp->rcv_scale;
1002
1003         /*
1004          * Adjust the RXWIN0SENT flag - indicate that we have advertised
1005          * a 0 window.  This may cause the remote transmitter to stall.  This
1006          * flag tells soreceive() to disable delayed acknowledgements when
1007          * draining the buffer.  This can occur if the receiver is attempting
1008          * to read more data then can be buffered prior to transmitting on
1009          * the connection.
1010          */
1011         if (recvwin == 0)
1012                 tp->t_flags |= TF_RXWIN0SENT;
1013         else
1014                 tp->t_flags &= ~TF_RXWIN0SENT;
1015
1016         if (th != NULL)
1017                 th->th_win = htons((u_short) (recvwin>>tp->rcv_scale));
1018
1019         if (SEQ_GT(tp->snd_up, tp->snd_nxt)) {
1020                 KASSERT(!use_tso, ("URG with TSO"));
1021                 if (th != NULL) {
1022                         th->th_urp = htons((u_short)(tp->snd_up - tp->snd_nxt));
1023                         th->th_flags |= TH_URG;
1024                 }
1025         } else {
1026                 /*
1027                  * If no urgent pointer to send, then we pull
1028                  * the urgent pointer to the left edge of the send window
1029                  * so that it doesn't drift into the send window on sequence
1030                  * number wraparound.
1031                  */
1032                 tp->snd_up = tp->snd_una;               /* drag it along */
1033         }
1034
1035         if (th != NULL) {
1036 #ifdef TCP_SIGNATURE
1037                 if (tp->t_flags & TF_SIGNATURE) {
1038                         tcpsignature_compute(m, len, optlen,
1039                             (u_char *)(th + 1) + sigoff, IPSEC_DIR_OUTBOUND);
1040                 }
1041 #endif /* TCP_SIGNATURE */
1042
1043                 /*
1044                  * Put TCP length in extended header, and then
1045                  * checksum extended header and data.
1046                  */
1047                 m->m_pkthdr.len = hdrlen + len; /* in6_cksum() need this */
1048                 if (isipv6) {
1049                         /*
1050                          * ip6_plen is not need to be filled now, and will be
1051                          * filled in ip6_output().
1052                          */
1053                         th->th_sum = in6_cksum(m, IPPROTO_TCP,
1054                             sizeof(struct ip6_hdr),
1055                             sizeof(struct tcphdr) + optlen + len);
1056                 } else {
1057                         m->m_pkthdr.csum_thlen = sizeof(struct tcphdr) + optlen;
1058                         if (use_tso) {
1059                                 m->m_pkthdr.csum_flags = CSUM_TSO;
1060                                 m->m_pkthdr.tso_segsz = segsz;
1061                         } else {
1062                                 m->m_pkthdr.csum_flags = CSUM_TCP;
1063                                 m->m_pkthdr.csum_data =
1064                                     offsetof(struct tcphdr, th_sum);
1065                                 if (len + optlen) {
1066                                         th->th_sum = in_addword(th->th_sum,
1067                                             htons((u_short)(optlen + len)));
1068                                 }
1069                         }
1070
1071                         /*
1072                          * IP version must be set here for ipv4/ipv6 checking
1073                          * later
1074                          */
1075                         KASSERT(ip->ip_v == IPVERSION,
1076                             ("%s: IP version incorrect: %d",
1077                              __func__, ip->ip_v));
1078                 }
1079         }
1080
1081         /*
1082          * In transmit state, time the transmission and arrange for
1083          * the retransmit.  In persist state, just set snd_max.
1084          */
1085         if (!(tp->t_flags & TF_FORCE) ||
1086             !tcp_callout_active(tp, tp->tt_persist)) {
1087                 tcp_seq startseq = tp->snd_nxt;
1088
1089                 /*
1090                  * Advance snd_nxt over sequence space of this segment.
1091                  */
1092                 if (flags & (TH_SYN | TH_FIN)) {
1093                         if (flags & TH_SYN)
1094                                 tp->snd_nxt++;
1095                         if (flags & TH_FIN) {
1096                                 tp->snd_nxt++;
1097                                 tp->t_flags |= TF_SENTFIN;
1098                         }
1099                 }
1100                 tp->snd_nxt += len;
1101                 if (SEQ_GT(tp->snd_nxt, tp->snd_max)) {
1102                         tp->snd_max = tp->snd_nxt;
1103                         /*
1104                          * Time this transmission if not a retransmission and
1105                          * not currently timing anything.
1106                          */
1107                         if (tp->t_rtttime == 0) {
1108                                 tp->t_rtttime = ticks;
1109                                 tp->t_rtseq = startseq;
1110                                 tcpstat.tcps_segstimed++;
1111                         }
1112                 }
1113
1114                 /*
1115                  * Set retransmit timer if not currently set,
1116                  * and not doing a pure ack or a keep-alive probe.
1117                  * Initial value for retransmit timer is smoothed
1118                  * round-trip time + 2 * round-trip time variance.
1119                  * Initialize shift counter which is used for backoff
1120                  * of retransmit time.
1121                  */
1122                 if (!tcp_callout_active(tp, tp->tt_rexmt) &&
1123                     tp->snd_nxt != tp->snd_una) {
1124                         if (tcp_callout_active(tp, tp->tt_persist)) {
1125                                 tcp_callout_stop(tp, tp->tt_persist);
1126                                 tp->t_rxtshift = 0;
1127                         }
1128                         tcp_callout_reset(tp, tp->tt_rexmt, tp->t_rxtcur,
1129                             tcp_timer_rexmt);
1130                 }
1131         } else {
1132                 /*
1133                  * Persist case, update snd_max but since we are in
1134                  * persist mode (no window) we do not update snd_nxt.
1135                  */
1136                 int xlen = len;
1137                 if (flags & TH_SYN)
1138                         panic("tcp_output: persist timer to send SYN");
1139                 if (flags & TH_FIN) {
1140                         ++xlen;
1141                         tp->t_flags |= TF_SENTFIN;
1142                 }
1143                 if (SEQ_GT(tp->snd_nxt + xlen, tp->snd_max))
1144                         tp->snd_max = tp->snd_nxt + xlen;
1145         }
1146
1147         if (th != NULL) {
1148 #ifdef TCPDEBUG
1149                 /* Trace. */
1150                 if (so->so_options & SO_DEBUG) {
1151                         tcp_trace(TA_OUTPUT, tp->t_state, tp,
1152                             mtod(m, void *), th, 0);
1153                 }
1154 #endif
1155
1156                 /*
1157                  * Fill in IP length and desired time to live and
1158                  * send to IP level.  There should be a better way
1159                  * to handle ttl and tos; we could keep them in
1160                  * the template, but need a way to checksum without them.
1161                  */
1162                 /*
1163                  * m->m_pkthdr.len should have been set before cksum
1164                  * calcuration, because in6_cksum() need it.
1165                  */
1166                 if (isipv6) {
1167                         /*
1168                          * we separately set hoplimit for every segment,
1169                          * since the user might want to change the value
1170                          * via setsockopt.  Also, desired default hop
1171                          * limit might be changed via Neighbor Discovery.
1172                          */
1173                         ip6->ip6_hlim = in6_selecthlim(inp,
1174                             (inp->in6p_route.ro_rt ?
1175                              inp->in6p_route.ro_rt->rt_ifp : NULL));
1176
1177                         /* TODO: IPv6 IP6TOS_ECT bit on */
1178                         error = ip6_output(m, inp->in6p_outputopts,
1179                             &inp->in6p_route, (so->so_options & SO_DONTROUTE),
1180                             NULL, NULL, inp);
1181                 } else {
1182                         struct rtentry *rt;
1183                         ip->ip_len = m->m_pkthdr.len;
1184 #ifdef INET6
1185                         if (INP_CHECK_SOCKAF(so, AF_INET6))
1186                                 ip->ip_ttl = in6_selecthlim(inp,
1187                                     (inp->in6p_route.ro_rt ?
1188                                      inp->in6p_route.ro_rt->rt_ifp : NULL));
1189                         else
1190 #endif
1191                                 ip->ip_ttl = inp->inp_ip_ttl;   /* XXX */
1192
1193                         ip->ip_tos = inp->inp_ip_tos;   /* XXX */
1194                         /*
1195                          * See if we should do MTU discovery.
1196                          * We do it only if the following are true:
1197                          *      1) we have a valid route to the destination
1198                          *      2) the MTU is not locked (if it is,
1199                          *         then discovery has been disabled)
1200                          */
1201                         if (path_mtu_discovery &&
1202                             (rt = inp->inp_route.ro_rt) &&
1203                             (rt->rt_flags & RTF_UP) &&
1204                             !(rt->rt_rmx.rmx_locks & RTV_MTU))
1205                                 ip->ip_off |= IP_DF;
1206
1207                         error = ip_output(m, inp->inp_options, &inp->inp_route,
1208                                           (so->so_options & SO_DONTROUTE) |
1209                                           IP_DEBUGROUTE, NULL, inp);
1210                 }
1211         } else {
1212                 KASSERT(error != 0, ("no error, but th not set"));
1213         }
1214         if (error) {
1215                 tp->t_flags &= ~(TF_ACKNOW | TF_XMITNOW);
1216
1217                 /*
1218                  * We know that the packet was lost, so back out the
1219                  * sequence number advance, if any.
1220                  */
1221                 if (!(tp->t_flags & TF_FORCE) ||
1222                     !tcp_callout_active(tp, tp->tt_persist)) {
1223                         /*
1224                          * No need to check for TH_FIN here because
1225                          * the TF_SENTFIN flag handles that case.
1226                          */
1227                         if (!(flags & TH_SYN))
1228                                 tp->snd_nxt -= len;
1229                 }
1230
1231 out:
1232                 if (error == ENOBUFS) {
1233                         /*
1234                          * If we can't send, make sure there is something
1235                          * to get us going again later.
1236                          *
1237                          * The persist timer isn't necessarily allowed in all
1238                          * states, use the rexmt timer.
1239                          */
1240                         if (!tcp_callout_active(tp, tp->tt_rexmt) &&
1241                             !tcp_callout_active(tp, tp->tt_persist)) {
1242                                 tcp_callout_reset(tp, tp->tt_rexmt,
1243                                                   tp->t_rxtcur,
1244                                                   tcp_timer_rexmt);
1245 #if 0
1246                                 tp->t_rxtshift = 0;
1247                                 tcp_setpersist(tp);
1248 #endif
1249                         }
1250                         tcp_quench(inp, 0);
1251                         return (0);
1252                 }
1253                 if (error == EMSGSIZE) {
1254                         /*
1255                          * ip_output() will have already fixed the route
1256                          * for us.  tcp_mtudisc() will, as its last action,
1257                          * initiate retransmission, so it is important to
1258                          * not do so here.
1259                          */
1260                         tcp_mtudisc(inp, 0);
1261                         return 0;
1262                 }
1263                 if ((error == EHOSTUNREACH || error == ENETDOWN) &&
1264                     TCPS_HAVERCVDSYN(tp->t_state)) {
1265                         tp->t_softerror = error;
1266                         return (0);
1267                 }
1268                 return (error);
1269         }
1270         tcpstat.tcps_sndtotal++;
1271
1272         /*
1273          * Data sent (as far as we can tell).
1274          *
1275          * If this advertises a larger window than any other segment,
1276          * then remember the size of the advertised window.
1277          *
1278          * Any pending ACK has now been sent.
1279          */
1280         if (recvwin > 0 && SEQ_GT(tp->rcv_nxt + recvwin, tp->rcv_adv)) {
1281                 tp->rcv_adv = tp->rcv_nxt + recvwin;
1282                 tp->t_flags &= ~TF_RXRESIZED;
1283         }
1284         tp->last_ack_sent = tp->rcv_nxt;
1285         tp->t_flags &= ~(TF_ACKNOW | TF_XMITNOW);
1286         if (tcp_delack_enabled)
1287                 tcp_callout_stop(tp, tp->tt_delack);
1288         if (sendalot) {
1289                 if (tcp_fairsend > 0 && (tp->t_flags & TF_FAIRSEND) &&
1290                     segcnt >= tcp_fairsend)
1291                         need_sched = TRUE;
1292                 goto again;
1293         }
1294         return (0);
1295 }
1296
1297 void
1298 tcp_setpersist(struct tcpcb *tp)
1299 {
1300         int t = ((tp->t_srtt >> 2) + tp->t_rttvar) >> 1;
1301         int tt;
1302
1303         if (tp->t_state == TCPS_SYN_SENT ||
1304             tp->t_state == TCPS_SYN_RECEIVED) {
1305                 panic("tcp_setpersist: not established yet, current %s",
1306                       tp->t_state == TCPS_SYN_SENT ?
1307                       "SYN_SENT" : "SYN_RECEIVED");
1308         }
1309
1310         if (tcp_callout_active(tp, tp->tt_rexmt))
1311                 panic("tcp_setpersist: retransmit pending");
1312         /*
1313          * Start/restart persistance timer.
1314          */
1315         TCPT_RANGESET(tt, t * tcp_backoff[tp->t_rxtshift], TCPTV_PERSMIN,
1316                       TCPTV_PERSMAX);
1317         tcp_callout_reset(tp, tp->tt_persist, tt, tcp_timer_persist);
1318         if (tp->t_rxtshift < TCP_MAXRXTSHIFT)
1319                 tp->t_rxtshift++;
1320 }
1321
1322 static void
1323 tcp_idle_cwnd_validate(struct tcpcb *tp)
1324 {
1325         u_long initial_cwnd = tcp_initial_window(tp);
1326         u_long min_cwnd;
1327
1328         tcpstat.tcps_sndidle++;
1329
1330         /* According to RFC5681: RW=min(IW,cwnd) */
1331         min_cwnd = min(tp->snd_cwnd, initial_cwnd);
1332
1333         if (tcp_idle_cwv) {
1334                 u_long idle_time, decay_cwnd;
1335
1336                 /*
1337                  * RFC2861, but only after idle period.
1338                  */
1339
1340                 /*
1341                  * Before the congestion window is reduced, ssthresh
1342                  * is set to the maximum of its current value and 3/4
1343                  * cwnd.  If the sender then has more data to send
1344                  * than the decayed cwnd allows, the TCP will slow-
1345                  * start (perform exponential increase) at least
1346                  * half-way back up to the old value of cwnd.
1347                  */
1348                 tp->snd_ssthresh = max(tp->snd_ssthresh,
1349                     (3 * tp->snd_cwnd) / 4);
1350
1351                 /*
1352                  * Decay the congestion window by half for every RTT
1353                  * that the flow remains inactive.
1354                  *
1355                  * The difference between our implementation and
1356                  * RFC2861 is that we don't allow cwnd to go below
1357                  * the value allowed by RFC5681 (min_cwnd).
1358                  */
1359                 idle_time = ticks - tp->snd_last;
1360                 decay_cwnd = tp->snd_cwnd;
1361                 while (idle_time >= tp->t_rxtcur &&
1362                     decay_cwnd > min_cwnd) {
1363                         decay_cwnd >>= 1;
1364                         idle_time -= tp->t_rxtcur;
1365                 }
1366                 tp->snd_cwnd = max(decay_cwnd, min_cwnd);
1367         } else {
1368                 /*
1369                  * Slow-start from scratch to re-determine the send
1370                  * congestion window.
1371                  */
1372                 tp->snd_cwnd = min_cwnd;
1373         }
1374
1375         /* Restart ABC counting during congestion avoidance */
1376         tp->snd_wacked = 0;
1377 }
1378
1379 static int
1380 tcp_tso_getsize(struct tcpcb *tp, u_int *segsz, u_int *hlen0)
1381 {
1382         struct inpcb * const inp = tp->t_inpcb;
1383 #ifdef INET6
1384         const boolean_t isipv6 = (inp->inp_vflag & INP_IPV6) != 0;
1385 #else
1386         const boolean_t isipv6 = FALSE;
1387 #endif
1388         unsigned int ipoptlen, optlen;
1389         u_int hlen;
1390
1391         hlen = sizeof(struct ip) + sizeof(struct tcphdr);
1392
1393         if (isipv6) {
1394                 ipoptlen = ip6_optlen(inp);
1395         } else {
1396                 if (inp->inp_options) {
1397                         ipoptlen = inp->inp_options->m_len -
1398                             offsetof(struct ipoption, ipopt_list);
1399                 } else {
1400                         ipoptlen = 0;
1401                 }
1402         }
1403 #ifdef IPSEC
1404         ipoptlen += ipsec_hdrsiz_tcp(tp);
1405 #endif
1406         hlen += ipoptlen;
1407
1408         optlen = 0;
1409         if ((tp->t_flags & (TF_REQ_TSTMP | TF_NOOPT)) == TF_REQ_TSTMP &&
1410             (tp->t_flags & TF_RCVD_TSTMP))
1411                 optlen += TCPOLEN_TSTAMP_APPA;
1412         hlen += optlen;
1413
1414         if (tp->t_maxopd <= optlen + ipoptlen)
1415                 return EHOSTUNREACH;
1416
1417         *segsz = tp->t_maxopd - optlen - ipoptlen;
1418         *hlen0 = hlen;
1419         return 0;
1420 }
1421
1422 static void
1423 tcp_output_sched_handler(netmsg_t nmsg)
1424 {
1425         struct tcpcb *tp = nmsg->lmsg.u.ms_resultp;
1426
1427         /* Reply ASAP */
1428         crit_enter();
1429         lwkt_replymsg(&nmsg->lmsg, 0);
1430         crit_exit();
1431
1432         tcp_output_fair(tp);
1433 }
1434
1435 void
1436 tcp_output_init(struct tcpcb *tp)
1437 {
1438         netmsg_init(tp->tt_sndmore, NULL, &netisr_adone_rport, MSGF_DROPABLE,
1439             tcp_output_sched_handler);
1440         tp->tt_sndmore->lmsg.u.ms_resultp = tp;
1441 }
1442
1443 void
1444 tcp_output_cancel(struct tcpcb *tp)
1445 {
1446         /*
1447          * This message is still pending to be processed;
1448          * drop it.  Optimized.
1449          */
1450         crit_enter();
1451         if ((tp->tt_sndmore->lmsg.ms_flags & MSGF_DONE) == 0) {
1452                 lwkt_dropmsg(&tp->tt_sndmore->lmsg);
1453         }
1454         crit_exit();
1455 }
1456
1457 boolean_t
1458 tcp_output_pending(struct tcpcb *tp)
1459 {
1460         if ((tp->tt_sndmore->lmsg.ms_flags & MSGF_DONE) == 0)
1461                 return TRUE;
1462         else
1463                 return FALSE;
1464 }
1465
1466 static void
1467 tcp_output_sched(struct tcpcb *tp)
1468 {
1469         crit_enter();
1470         if (tp->tt_sndmore->lmsg.ms_flags & MSGF_DONE)
1471                 lwkt_sendmsg(netisr_cpuport(mycpuid), &tp->tt_sndmore->lmsg);
1472         crit_exit();
1473 }
1474
1475 /*
1476  * Fairsend
1477  *
1478  * Yield to other senders or receivers on the same netisr if the current
1479  * TCP stream has sent tcp_fairsend segments and is going to burst more
1480  * segments.  Bursting large amount of segements in a single TCP stream
1481  * could delay other senders' segments and receivers' ACKs quite a lot,
1482  * if others segments and ACKs are queued on to the same hardware transmit
1483  * queue; thus cause unfairness between senders and suppress receiving
1484  * performance.
1485  * 
1486  * Fairsend should be performed at the places that do not affect segment
1487  * sending during congestion control, e.g.
1488  * - User requested output
1489  * - ACK input triggered output
1490  *
1491  * NOTE:
1492  * For devices that are TSO capable, their TSO aggregation size limit could
1493  * affect fairsend.
1494  */
1495 int
1496 tcp_output_fair(struct tcpcb *tp)
1497 {
1498         int ret;
1499
1500         tp->t_flags |= TF_FAIRSEND;
1501         ret = tcp_output(tp);
1502         tp->t_flags &= ~TF_FAIRSEND;
1503
1504         return ret;
1505 }