]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - sys/netinet/tcp_output.c
MFC r216758,217252:
[FreeBSD/stable/8.git] / sys / netinet / tcp_output.c
1 /*-
2  * Copyright (c) 1982, 1986, 1988, 1990, 1993, 1995
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
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  * 4. 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.
16  *
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
27  * SUCH DAMAGE.
28  *
29  *      @(#)tcp_output.c        8.4 (Berkeley) 5/24/95
30  */
31
32 #include <sys/cdefs.h>
33 __FBSDID("$FreeBSD$");
34
35 #include "opt_inet.h"
36 #include "opt_inet6.h"
37 #include "opt_ipsec.h"
38 #include "opt_tcpdebug.h"
39
40 #include <sys/param.h>
41 #include <sys/systm.h>
42 #include <sys/domain.h>
43 #include <sys/hhook.h>
44 #include <sys/kernel.h>
45 #include <sys/lock.h>
46 #include <sys/mbuf.h>
47 #include <sys/mutex.h>
48 #include <sys/protosw.h>
49 #include <sys/socket.h>
50 #include <sys/socketvar.h>
51 #include <sys/sysctl.h>
52
53 #include <net/if.h>
54 #include <net/route.h>
55 #include <net/vnet.h>
56
57 #include <netinet/cc.h>
58 #include <netinet/in.h>
59 #include <netinet/in_systm.h>
60 #include <netinet/ip.h>
61 #include <netinet/in_pcb.h>
62 #include <netinet/ip_var.h>
63 #include <netinet/ip_options.h>
64 #ifdef INET6
65 #include <netinet6/in6_pcb.h>
66 #include <netinet/ip6.h>
67 #include <netinet6/ip6_var.h>
68 #endif
69 #define TCPOUTFLAGS
70 #include <netinet/tcp_fsm.h>
71 #include <netinet/tcp_seq.h>
72 #include <netinet/tcp_timer.h>
73 #include <netinet/tcp_var.h>
74 #include <netinet/tcpip.h>
75 #ifdef TCPDEBUG
76 #include <netinet/tcp_debug.h>
77 #endif
78
79 #ifdef IPSEC
80 #include <netipsec/ipsec.h>
81 #endif /*IPSEC*/
82
83 #include <machine/in_cksum.h>
84
85 #include <security/mac/mac_framework.h>
86
87 #ifdef notyet
88 extern struct mbuf *m_copypack();
89 #endif
90
91 VNET_DEFINE(int, path_mtu_discovery) = 1;
92 SYSCTL_VNET_INT(_net_inet_tcp, OID_AUTO, path_mtu_discovery, CTLFLAG_RW,
93         &VNET_NAME(path_mtu_discovery), 1,
94         "Enable Path MTU Discovery");
95
96 VNET_DEFINE(int, ss_fltsz) = 1;
97 SYSCTL_VNET_INT(_net_inet_tcp, OID_AUTO, slowstart_flightsize, CTLFLAG_RW,
98         &VNET_NAME(ss_fltsz), 1,
99         "Slow start flight size");
100
101 VNET_DEFINE(int, ss_fltsz_local) = 4;
102 SYSCTL_VNET_INT(_net_inet_tcp, OID_AUTO, local_slowstart_flightsize,
103         CTLFLAG_RW, &VNET_NAME(ss_fltsz_local), 1,
104         "Slow start flight size for local networks");
105
106 VNET_DEFINE(int, tcp_do_tso) = 1;
107 #define V_tcp_do_tso            VNET(tcp_do_tso)
108 SYSCTL_VNET_INT(_net_inet_tcp, OID_AUTO, tso, CTLFLAG_RW,
109         &VNET_NAME(tcp_do_tso), 0,
110         "Enable TCP Segmentation Offload");
111
112 VNET_DEFINE(int, tcp_do_autosndbuf) = 1;
113 #define V_tcp_do_autosndbuf     VNET(tcp_do_autosndbuf)
114 SYSCTL_VNET_INT(_net_inet_tcp, OID_AUTO, sendbuf_auto, CTLFLAG_RW,
115         &VNET_NAME(tcp_do_autosndbuf), 0,
116         "Enable automatic send buffer sizing");
117
118 VNET_DEFINE(int, tcp_autosndbuf_inc) = 8*1024;
119 #define V_tcp_autosndbuf_inc    VNET(tcp_autosndbuf_inc)
120 SYSCTL_VNET_INT(_net_inet_tcp, OID_AUTO, sendbuf_inc, CTLFLAG_RW,
121         &VNET_NAME(tcp_autosndbuf_inc), 0,
122         "Incrementor step size of automatic send buffer");
123
124 VNET_DEFINE(int, tcp_autosndbuf_max) = 256*1024;
125 #define V_tcp_autosndbuf_max    VNET(tcp_autosndbuf_max)
126 SYSCTL_VNET_INT(_net_inet_tcp, OID_AUTO, sendbuf_max, CTLFLAG_RW,
127         &VNET_NAME(tcp_autosndbuf_max), 0,
128         "Max size of automatic send buffer");
129
130 static void inline      hhook_run_tcp_est_out(struct tcpcb *tp,
131                             struct tcphdr *th, struct tcpopt *to,
132                             long len, int tso);
133 static void inline      cc_after_idle(struct tcpcb *tp);
134
135 /*
136  * Wrapper for the TCP established ouput helper hook.
137  */
138 static void inline
139 hhook_run_tcp_est_out(struct tcpcb *tp, struct tcphdr *th,
140     struct tcpopt *to, long len, int tso)
141 {
142         struct tcp_hhook_data hhook_data;
143
144         if (V_tcp_hhh[HHOOK_TCP_EST_OUT]->hhh_nhooks > 0) {
145                 hhook_data.tp = tp;
146                 hhook_data.th = th;
147                 hhook_data.to = to;
148                 hhook_data.len = len;
149                 hhook_data.tso = tso;
150
151                 hhook_run_hooks(V_tcp_hhh[HHOOK_TCP_EST_OUT], &hhook_data,
152                     tp->osd);
153         }
154 }
155
156 /*
157  * CC wrapper hook functions
158  */
159 static void inline
160 cc_after_idle(struct tcpcb *tp)
161 {
162         INP_WLOCK_ASSERT(tp->t_inpcb);
163
164         if (CC_ALGO(tp)->after_idle != NULL)
165                 CC_ALGO(tp)->after_idle(tp->ccv);
166 }
167
168 /*
169  * Tcp output routine: figure out what should be sent and send it.
170  */
171 int
172 tcp_output(struct tcpcb *tp)
173 {
174         struct socket *so = tp->t_inpcb->inp_socket;
175         long len, recwin, sendwin;
176         int off, flags, error;
177         struct mbuf *m;
178         struct ip *ip = NULL;
179         struct ipovly *ipov = NULL;
180         struct tcphdr *th;
181         u_char opt[TCP_MAXOLEN];
182         unsigned ipoptlen, optlen, hdrlen;
183 #ifdef IPSEC
184         unsigned ipsec_optlen = 0;
185 #endif
186         int idle, sendalot;
187         int sack_rxmit, sack_bytes_rxmt;
188         struct sackhole *p;
189         int tso;
190         struct tcpopt to;
191 #if 0
192         int maxburst = TCP_MAXBURST;
193 #endif
194 #ifdef INET6
195         struct ip6_hdr *ip6 = NULL;
196         int isipv6;
197
198         isipv6 = (tp->t_inpcb->inp_vflag & INP_IPV6) != 0;
199 #endif
200
201         INP_WLOCK_ASSERT(tp->t_inpcb);
202
203         /*
204          * Determine length of data that should be transmitted,
205          * and flags that will be used.
206          * If there is some data or critical controls (SYN, RST)
207          * to send, then transmit; otherwise, investigate further.
208          */
209         idle = (tp->t_flags & TF_LASTIDLE) || (tp->snd_max == tp->snd_una);
210         if (idle && ticks - tp->t_rcvtime >= tp->t_rxtcur)
211                 cc_after_idle(tp);
212         tp->t_flags &= ~TF_LASTIDLE;
213         if (idle) {
214                 if (tp->t_flags & TF_MORETOCOME) {
215                         tp->t_flags |= TF_LASTIDLE;
216                         idle = 0;
217                 }
218         }
219 again:
220         /*
221          * If we've recently taken a timeout, snd_max will be greater than
222          * snd_nxt.  There may be SACK information that allows us to avoid
223          * resending already delivered data.  Adjust snd_nxt accordingly.
224          */
225         if ((tp->t_flags & TF_SACK_PERMIT) &&
226             SEQ_LT(tp->snd_nxt, tp->snd_max))
227                 tcp_sack_adjust(tp);
228         sendalot = 0;
229         tso = 0;
230         off = tp->snd_nxt - tp->snd_una;
231         sendwin = min(tp->snd_wnd, tp->snd_cwnd);
232         sendwin = min(sendwin, tp->snd_bwnd);
233
234         flags = tcp_outflags[tp->t_state];
235         /*
236          * Send any SACK-generated retransmissions.  If we're explicitly trying
237          * to send out new data (when sendalot is 1), bypass this function.
238          * If we retransmit in fast recovery mode, decrement snd_cwnd, since
239          * we're replacing a (future) new transmission with a retransmission
240          * now, and we previously incremented snd_cwnd in tcp_input().
241          */
242         /*
243          * Still in sack recovery , reset rxmit flag to zero.
244          */
245         sack_rxmit = 0;
246         sack_bytes_rxmt = 0;
247         len = 0;
248         p = NULL;
249         if ((tp->t_flags & TF_SACK_PERMIT) && IN_FASTRECOVERY(tp->t_flags) &&
250             (p = tcp_sack_output(tp, &sack_bytes_rxmt))) {
251                 long cwin;
252                 
253                 cwin = min(tp->snd_wnd, tp->snd_cwnd) - sack_bytes_rxmt;
254                 if (cwin < 0)
255                         cwin = 0;
256                 /* Do not retransmit SACK segments beyond snd_recover */
257                 if (SEQ_GT(p->end, tp->snd_recover)) {
258                         /*
259                          * (At least) part of sack hole extends beyond
260                          * snd_recover. Check to see if we can rexmit data
261                          * for this hole.
262                          */
263                         if (SEQ_GEQ(p->rxmit, tp->snd_recover)) {
264                                 /*
265                                  * Can't rexmit any more data for this hole.
266                                  * That data will be rexmitted in the next
267                                  * sack recovery episode, when snd_recover
268                                  * moves past p->rxmit.
269                                  */
270                                 p = NULL;
271                                 goto after_sack_rexmit;
272                         } else
273                                 /* Can rexmit part of the current hole */
274                                 len = ((long)ulmin(cwin,
275                                                    tp->snd_recover - p->rxmit));
276                 } else
277                         len = ((long)ulmin(cwin, p->end - p->rxmit));
278                 off = p->rxmit - tp->snd_una;
279                 KASSERT(off >= 0,("%s: sack block to the left of una : %d",
280                     __func__, off));
281                 if (len > 0) {
282                         sack_rxmit = 1;
283                         sendalot = 1;
284                         TCPSTAT_INC(tcps_sack_rexmits);
285                         TCPSTAT_ADD(tcps_sack_rexmit_bytes,
286                             min(len, tp->t_maxseg));
287                 }
288         }
289 after_sack_rexmit:
290         /*
291          * Get standard flags, and add SYN or FIN if requested by 'hidden'
292          * state flags.
293          */
294         if (tp->t_flags & TF_NEEDFIN)
295                 flags |= TH_FIN;
296         if (tp->t_flags & TF_NEEDSYN)
297                 flags |= TH_SYN;
298
299         SOCKBUF_LOCK(&so->so_snd);
300         /*
301          * If in persist timeout with window of 0, send 1 byte.
302          * Otherwise, if window is small but nonzero
303          * and timer expired, we will send what we can
304          * and go to transmit state.
305          */
306         if (tp->t_flags & TF_FORCEDATA) {
307                 if (sendwin == 0) {
308                         /*
309                          * If we still have some data to send, then
310                          * clear the FIN bit.  Usually this would
311                          * happen below when it realizes that we
312                          * aren't sending all the data.  However,
313                          * if we have exactly 1 byte of unsent data,
314                          * then it won't clear the FIN bit below,
315                          * and if we are in persist state, we wind
316                          * up sending the packet without recording
317                          * that we sent the FIN bit.
318                          *
319                          * We can't just blindly clear the FIN bit,
320                          * because if we don't have any more data
321                          * to send then the probe will be the FIN
322                          * itself.
323                          */
324                         if (off < so->so_snd.sb_cc)
325                                 flags &= ~TH_FIN;
326                         sendwin = 1;
327                 } else {
328                         tcp_timer_activate(tp, TT_PERSIST, 0);
329                         tp->t_rxtshift = 0;
330                 }
331         }
332
333         /*
334          * If snd_nxt == snd_max and we have transmitted a FIN, the
335          * offset will be > 0 even if so_snd.sb_cc is 0, resulting in
336          * a negative length.  This can also occur when TCP opens up
337          * its congestion window while receiving additional duplicate
338          * acks after fast-retransmit because TCP will reset snd_nxt
339          * to snd_max after the fast-retransmit.
340          *
341          * In the normal retransmit-FIN-only case, however, snd_nxt will
342          * be set to snd_una, the offset will be 0, and the length may
343          * wind up 0.
344          *
345          * If sack_rxmit is true we are retransmitting from the scoreboard
346          * in which case len is already set.
347          */
348         if (sack_rxmit == 0) {
349                 if (sack_bytes_rxmt == 0)
350                         len = ((long)ulmin(so->so_snd.sb_cc, sendwin) - off);
351                 else {
352                         long cwin;
353
354                         /*
355                          * We are inside of a SACK recovery episode and are
356                          * sending new data, having retransmitted all the
357                          * data possible in the scoreboard.
358                          */
359                         len = ((long)ulmin(so->so_snd.sb_cc, tp->snd_wnd) 
360                                - off);
361                         /*
362                          * Don't remove this (len > 0) check !
363                          * We explicitly check for len > 0 here (although it 
364                          * isn't really necessary), to work around a gcc 
365                          * optimization issue - to force gcc to compute
366                          * len above. Without this check, the computation
367                          * of len is bungled by the optimizer.
368                          */
369                         if (len > 0) {
370                                 cwin = tp->snd_cwnd - 
371                                         (tp->snd_nxt - tp->sack_newdata) -
372                                         sack_bytes_rxmt;
373                                 if (cwin < 0)
374                                         cwin = 0;
375                                 len = lmin(len, cwin);
376                         }
377                 }
378         }
379
380         /*
381          * Lop off SYN bit if it has already been sent.  However, if this
382          * is SYN-SENT state and if segment contains data and if we don't
383          * know that foreign host supports TAO, suppress sending segment.
384          */
385         if ((flags & TH_SYN) && SEQ_GT(tp->snd_nxt, tp->snd_una)) {
386                 if (tp->t_state != TCPS_SYN_RECEIVED)
387                         flags &= ~TH_SYN;
388                 off--, len++;
389         }
390
391         /*
392          * Be careful not to send data and/or FIN on SYN segments.
393          * This measure is needed to prevent interoperability problems
394          * with not fully conformant TCP implementations.
395          */
396         if ((flags & TH_SYN) && (tp->t_flags & TF_NOOPT)) {
397                 len = 0;
398                 flags &= ~TH_FIN;
399         }
400
401         if (len < 0) {
402                 /*
403                  * If FIN has been sent but not acked,
404                  * but we haven't been called to retransmit,
405                  * len will be < 0.  Otherwise, window shrank
406                  * after we sent into it.  If window shrank to 0,
407                  * cancel pending retransmit, pull snd_nxt back
408                  * to (closed) window, and set the persist timer
409                  * if it isn't already going.  If the window didn't
410                  * close completely, just wait for an ACK.
411                  */
412                 len = 0;
413                 if (sendwin == 0) {
414                         tcp_timer_activate(tp, TT_REXMT, 0);
415                         tp->t_rxtshift = 0;
416                         tp->snd_nxt = tp->snd_una;
417                         if (!tcp_timer_active(tp, TT_PERSIST))
418                                 tcp_setpersist(tp);
419                 }
420         }
421
422         /* len will be >= 0 after this point. */
423         KASSERT(len >= 0, ("[%s:%d]: len < 0", __func__, __LINE__));
424
425         /*
426          * Automatic sizing of send socket buffer.  Often the send buffer
427          * size is not optimally adjusted to the actual network conditions
428          * at hand (delay bandwidth product).  Setting the buffer size too
429          * small limits throughput on links with high bandwidth and high
430          * delay (eg. trans-continental/oceanic links).  Setting the
431          * buffer size too big consumes too much real kernel memory,
432          * especially with many connections on busy servers.
433          *
434          * The criteria to step up the send buffer one notch are:
435          *  1. receive window of remote host is larger than send buffer
436          *     (with a fudge factor of 5/4th);
437          *  2. send buffer is filled to 7/8th with data (so we actually
438          *     have data to make use of it);
439          *  3. send buffer fill has not hit maximal automatic size;
440          *  4. our send window (slow start and cogestion controlled) is
441          *     larger than sent but unacknowledged data in send buffer.
442          *
443          * The remote host receive window scaling factor may limit the
444          * growing of the send buffer before it reaches its allowed
445          * maximum.
446          *
447          * It scales directly with slow start or congestion window
448          * and does at most one step per received ACK.  This fast
449          * scaling has the drawback of growing the send buffer beyond
450          * what is strictly necessary to make full use of a given
451          * delay*bandwith product.  However testing has shown this not
452          * to be much of an problem.  At worst we are trading wasting
453          * of available bandwith (the non-use of it) for wasting some
454          * socket buffer memory.
455          *
456          * TODO: Shrink send buffer during idle periods together
457          * with congestion window.  Requires another timer.  Has to
458          * wait for upcoming tcp timer rewrite.
459          */
460         if (V_tcp_do_autosndbuf && so->so_snd.sb_flags & SB_AUTOSIZE) {
461                 if ((tp->snd_wnd / 4 * 5) >= so->so_snd.sb_hiwat &&
462                     so->so_snd.sb_cc >= (so->so_snd.sb_hiwat / 8 * 7) &&
463                     so->so_snd.sb_cc < V_tcp_autosndbuf_max &&
464                     sendwin >= (so->so_snd.sb_cc - (tp->snd_nxt - tp->snd_una))) {
465                         if (!sbreserve_locked(&so->so_snd,
466                             min(so->so_snd.sb_hiwat + V_tcp_autosndbuf_inc,
467                              V_tcp_autosndbuf_max), so, curthread))
468                                 so->so_snd.sb_flags &= ~SB_AUTOSIZE;
469                 }
470         }
471
472         /*
473          * Truncate to the maximum segment length or enable TCP Segmentation
474          * Offloading (if supported by hardware) and ensure that FIN is removed
475          * if the length no longer contains the last data byte.
476          *
477          * TSO may only be used if we are in a pure bulk sending state.  The
478          * presence of TCP-MD5, SACK retransmits, SACK advertizements and
479          * IP options prevent using TSO.  With TSO the TCP header is the same
480          * (except for the sequence number) for all generated packets.  This
481          * makes it impossible to transmit any options which vary per generated
482          * segment or packet.
483          *
484          * The length of TSO bursts is limited to TCP_MAXWIN.  That limit and
485          * removal of FIN (if not already catched here) are handled later after
486          * the exact length of the TCP options are known.
487          */
488 #ifdef IPSEC
489         /*
490          * Pre-calculate here as we save another lookup into the darknesses
491          * of IPsec that way and can actually decide if TSO is ok.
492          */
493         ipsec_optlen = ipsec_hdrsiz_tcp(tp);
494 #endif
495         if (len > tp->t_maxseg) {
496                 if ((tp->t_flags & TF_TSO) && V_tcp_do_tso &&
497                     ((tp->t_flags & TF_SIGNATURE) == 0) &&
498                     tp->rcv_numsacks == 0 && sack_rxmit == 0 &&
499                     tp->t_inpcb->inp_options == NULL &&
500                     tp->t_inpcb->in6p_options == NULL
501 #ifdef IPSEC
502                     && ipsec_optlen == 0
503 #endif
504                     ) {
505                         tso = 1;
506                 } else {
507                         len = tp->t_maxseg;
508                         sendalot = 1;
509                 }
510         }
511
512         if (sack_rxmit) {
513                 if (SEQ_LT(p->rxmit + len, tp->snd_una + so->so_snd.sb_cc))
514                         flags &= ~TH_FIN;
515         } else {
516                 if (SEQ_LT(tp->snd_nxt + len, tp->snd_una + so->so_snd.sb_cc))
517                         flags &= ~TH_FIN;
518         }
519
520         recwin = sbspace(&so->so_rcv);
521
522         /*
523          * Sender silly window avoidance.   We transmit under the following
524          * conditions when len is non-zero:
525          *
526          *      - We have a full segment (or more with TSO)
527          *      - This is the last buffer in a write()/send() and we are
528          *        either idle or running NODELAY
529          *      - we've timed out (e.g. persist timer)
530          *      - we have more then 1/2 the maximum send window's worth of
531          *        data (receiver may be limited the window size)
532          *      - we need to retransmit
533          */
534         if (len) {
535                 if (len >= tp->t_maxseg)
536                         goto send;
537                 /*
538                  * NOTE! on localhost connections an 'ack' from the remote
539                  * end may occur synchronously with the output and cause
540                  * us to flush a buffer queued with moretocome.  XXX
541                  *
542                  * note: the len + off check is almost certainly unnecessary.
543                  */
544                 if (!(tp->t_flags & TF_MORETOCOME) &&   /* normal case */
545                     (idle || (tp->t_flags & TF_NODELAY)) &&
546                     len + off >= so->so_snd.sb_cc &&
547                     (tp->t_flags & TF_NOPUSH) == 0) {
548                         goto send;
549                 }
550                 if (tp->t_flags & TF_FORCEDATA)         /* typ. timeout case */
551                         goto send;
552                 if (len >= tp->max_sndwnd / 2 && tp->max_sndwnd > 0)
553                         goto send;
554                 if (SEQ_LT(tp->snd_nxt, tp->snd_max))   /* retransmit case */
555                         goto send;
556                 if (sack_rxmit)
557                         goto send;
558         }
559
560         /*
561          * Compare available window to amount of window
562          * known to peer (as advertised window less
563          * next expected input).  If the difference is at least two
564          * max size segments, or at least 50% of the maximum possible
565          * window, then want to send a window update to peer.
566          * Skip this if the connection is in T/TCP half-open state.
567          * Don't send pure window updates when the peer has closed
568          * the connection and won't ever send more data.
569          */
570         if (recwin > 0 && !(tp->t_flags & TF_NEEDSYN) &&
571             !TCPS_HAVERCVDFIN(tp->t_state)) {
572                 /*
573                  * "adv" is the amount we can increase the window,
574                  * taking into account that we are limited by
575                  * TCP_MAXWIN << tp->rcv_scale.
576                  */
577                 long adv = min(recwin, (long)TCP_MAXWIN << tp->rcv_scale) -
578                         (tp->rcv_adv - tp->rcv_nxt);
579
580                 if (adv >= (long) (2 * tp->t_maxseg))
581                         goto send;
582                 if (2 * adv >= (long) so->so_rcv.sb_hiwat)
583                         goto send;
584         }
585
586         /*
587          * Send if we owe the peer an ACK, RST, SYN, or urgent data.  ACKNOW
588          * is also a catch-all for the retransmit timer timeout case.
589          */
590         if (tp->t_flags & TF_ACKNOW)
591                 goto send;
592         if ((flags & TH_RST) ||
593             ((flags & TH_SYN) && (tp->t_flags & TF_NEEDSYN) == 0))
594                 goto send;
595         if (SEQ_GT(tp->snd_up, tp->snd_una))
596                 goto send;
597         /*
598          * If our state indicates that FIN should be sent
599          * and we have not yet done so, then we need to send.
600          */
601         if (flags & TH_FIN &&
602             ((tp->t_flags & TF_SENTFIN) == 0 || tp->snd_nxt == tp->snd_una))
603                 goto send;
604         /*
605          * In SACK, it is possible for tcp_output to fail to send a segment
606          * after the retransmission timer has been turned off.  Make sure
607          * that the retransmission timer is set.
608          */
609         if ((tp->t_flags & TF_SACK_PERMIT) &&
610             SEQ_GT(tp->snd_max, tp->snd_una) &&
611             !tcp_timer_active(tp, TT_REXMT) &&
612             !tcp_timer_active(tp, TT_PERSIST)) {
613                 tcp_timer_activate(tp, TT_REXMT, tp->t_rxtcur);
614                 goto just_return;
615         } 
616         /*
617          * TCP window updates are not reliable, rather a polling protocol
618          * using ``persist'' packets is used to insure receipt of window
619          * updates.  The three ``states'' for the output side are:
620          *      idle                    not doing retransmits or persists
621          *      persisting              to move a small or zero window
622          *      (re)transmitting        and thereby not persisting
623          *
624          * tcp_timer_active(tp, TT_PERSIST)
625          *      is true when we are in persist state.
626          * (tp->t_flags & TF_FORCEDATA)
627          *      is set when we are called to send a persist packet.
628          * tcp_timer_active(tp, TT_REXMT)
629          *      is set when we are retransmitting
630          * The output side is idle when both timers are zero.
631          *
632          * If send window is too small, there is data to transmit, and no
633          * retransmit or persist is pending, then go to persist state.
634          * If nothing happens soon, send when timer expires:
635          * if window is nonzero, transmit what we can,
636          * otherwise force out a byte.
637          */
638         if (so->so_snd.sb_cc && !tcp_timer_active(tp, TT_REXMT) &&
639             !tcp_timer_active(tp, TT_PERSIST)) {
640                 tp->t_rxtshift = 0;
641                 tcp_setpersist(tp);
642         }
643
644         /*
645          * No reason to send a segment, just return.
646          */
647 just_return:
648         SOCKBUF_UNLOCK(&so->so_snd);
649         return (0);
650
651 send:
652         SOCKBUF_LOCK_ASSERT(&so->so_snd);
653         /*
654          * Before ESTABLISHED, force sending of initial options
655          * unless TCP set not to do any options.
656          * NOTE: we assume that the IP/TCP header plus TCP options
657          * always fit in a single mbuf, leaving room for a maximum
658          * link header, i.e.
659          *      max_linkhdr + sizeof (struct tcpiphdr) + optlen <= MCLBYTES
660          */
661         optlen = 0;
662 #ifdef INET6
663         if (isipv6)
664                 hdrlen = sizeof (struct ip6_hdr) + sizeof (struct tcphdr);
665         else
666 #endif
667         hdrlen = sizeof (struct tcpiphdr);
668
669         /*
670          * Compute options for segment.
671          * We only have to care about SYN and established connection
672          * segments.  Options for SYN-ACK segments are handled in TCP
673          * syncache.
674          */
675         if ((tp->t_flags & TF_NOOPT) == 0) {
676                 to.to_flags = 0;
677                 /* Maximum segment size. */
678                 if (flags & TH_SYN) {
679                         tp->snd_nxt = tp->iss;
680                         to.to_mss = tcp_mssopt(&tp->t_inpcb->inp_inc);
681                         to.to_flags |= TOF_MSS;
682                 }
683                 /* Window scaling. */
684                 if ((flags & TH_SYN) && (tp->t_flags & TF_REQ_SCALE)) {
685                         to.to_wscale = tp->request_r_scale;
686                         to.to_flags |= TOF_SCALE;
687                 }
688                 /* Timestamps. */
689                 if ((tp->t_flags & TF_RCVD_TSTMP) ||
690                     ((flags & TH_SYN) && (tp->t_flags & TF_REQ_TSTMP))) {
691                         to.to_tsval = ticks + tp->ts_offset;
692                         to.to_tsecr = tp->ts_recent;
693                         to.to_flags |= TOF_TS;
694                         /* Set receive buffer autosizing timestamp. */
695                         if (tp->rfbuf_ts == 0 &&
696                             (so->so_rcv.sb_flags & SB_AUTOSIZE))
697                                 tp->rfbuf_ts = ticks;
698                 }
699                 /* Selective ACK's. */
700                 if (tp->t_flags & TF_SACK_PERMIT) {
701                         if (flags & TH_SYN)
702                                 to.to_flags |= TOF_SACKPERM;
703                         else if (TCPS_HAVEESTABLISHED(tp->t_state) &&
704                             (tp->t_flags & TF_SACK_PERMIT) &&
705                             tp->rcv_numsacks > 0) {
706                                 to.to_flags |= TOF_SACK;
707                                 to.to_nsacks = tp->rcv_numsacks;
708                                 to.to_sacks = (u_char *)tp->sackblks;
709                         }
710                 }
711 #ifdef TCP_SIGNATURE
712                 /* TCP-MD5 (RFC2385). */
713                 if (tp->t_flags & TF_SIGNATURE)
714                         to.to_flags |= TOF_SIGNATURE;
715 #endif /* TCP_SIGNATURE */
716
717                 /* Processing the options. */
718                 hdrlen += optlen = tcp_addoptions(&to, opt);
719         }
720
721 #ifdef INET6
722         if (isipv6)
723                 ipoptlen = ip6_optlen(tp->t_inpcb);
724         else
725 #endif
726         if (tp->t_inpcb->inp_options)
727                 ipoptlen = tp->t_inpcb->inp_options->m_len -
728                                 offsetof(struct ipoption, ipopt_list);
729         else
730                 ipoptlen = 0;
731 #ifdef IPSEC
732         ipoptlen += ipsec_optlen;
733 #endif
734
735         /*
736          * Adjust data length if insertion of options will
737          * bump the packet length beyond the t_maxopd length.
738          * Clear the FIN bit because we cut off the tail of
739          * the segment.
740          *
741          * When doing TSO limit a burst to TCP_MAXWIN minus the
742          * IP, TCP and Options length to keep ip->ip_len from
743          * overflowing.  Prevent the last segment from being
744          * fractional thus making them all equal sized and set
745          * the flag to continue sending.  TSO is disabled when
746          * IP options or IPSEC are present.
747          */
748         if (len + optlen + ipoptlen > tp->t_maxopd) {
749                 flags &= ~TH_FIN;
750                 if (tso) {
751                         if (len > TCP_MAXWIN - hdrlen - optlen) {
752                                 len = TCP_MAXWIN - hdrlen - optlen;
753                                 len = len - (len % (tp->t_maxopd - optlen));
754                                 sendalot = 1;
755                         } else if (tp->t_flags & TF_NEEDFIN)
756                                 sendalot = 1;
757                 } else {
758                         len = tp->t_maxopd - optlen - ipoptlen;
759                         sendalot = 1;
760                 }
761         }
762
763 /*#ifdef DIAGNOSTIC*/
764 #ifdef INET6
765         if (max_linkhdr + hdrlen > MCLBYTES)
766 #else
767         if (max_linkhdr + hdrlen > MHLEN)
768 #endif
769                 panic("tcphdr too big");
770 /*#endif*/
771
772         /*
773          * This KASSERT is here to catch edge cases at a well defined place.
774          * Before, those had triggered (random) panic conditions further down.
775          */
776         KASSERT(len >= 0, ("[%s:%d]: len < 0", __func__, __LINE__));
777
778         /*
779          * Grab a header mbuf, attaching a copy of data to
780          * be transmitted, and initialize the header from
781          * the template for sends on this connection.
782          */
783         if (len) {
784                 struct mbuf *mb;
785                 u_int moff;
786
787                 if ((tp->t_flags & TF_FORCEDATA) && len == 1)
788                         TCPSTAT_INC(tcps_sndprobe);
789                 else if (SEQ_LT(tp->snd_nxt, tp->snd_max) || sack_rxmit) {
790                         tp->t_sndrexmitpack++;
791                         TCPSTAT_INC(tcps_sndrexmitpack);
792                         TCPSTAT_ADD(tcps_sndrexmitbyte, len);
793                 } else {
794                         TCPSTAT_INC(tcps_sndpack);
795                         TCPSTAT_ADD(tcps_sndbyte, len);
796                 }
797 #ifdef notyet
798                 if ((m = m_copypack(so->so_snd.sb_mb, off,
799                     (int)len, max_linkhdr + hdrlen)) == 0) {
800                         SOCKBUF_UNLOCK(&so->so_snd);
801                         error = ENOBUFS;
802                         goto out;
803                 }
804                 /*
805                  * m_copypack left space for our hdr; use it.
806                  */
807                 m->m_len += hdrlen;
808                 m->m_data -= hdrlen;
809 #else
810                 MGETHDR(m, M_DONTWAIT, MT_DATA);
811                 if (m == NULL) {
812                         SOCKBUF_UNLOCK(&so->so_snd);
813                         error = ENOBUFS;
814                         goto out;
815                 }
816 #ifdef INET6
817                 if (MHLEN < hdrlen + max_linkhdr) {
818                         MCLGET(m, M_DONTWAIT);
819                         if ((m->m_flags & M_EXT) == 0) {
820                                 SOCKBUF_UNLOCK(&so->so_snd);
821                                 m_freem(m);
822                                 error = ENOBUFS;
823                                 goto out;
824                         }
825                 }
826 #endif
827                 m->m_data += max_linkhdr;
828                 m->m_len = hdrlen;
829
830                 /*
831                  * Start the m_copy functions from the closest mbuf
832                  * to the offset in the socket buffer chain.
833                  */
834                 mb = sbsndptr(&so->so_snd, off, len, &moff);
835
836                 if (len <= MHLEN - hdrlen - max_linkhdr) {
837                         m_copydata(mb, moff, (int)len,
838                             mtod(m, caddr_t) + hdrlen);
839                         m->m_len += len;
840                 } else {
841                         m->m_next = m_copy(mb, moff, (int)len);
842                         if (m->m_next == NULL) {
843                                 SOCKBUF_UNLOCK(&so->so_snd);
844                                 (void) m_free(m);
845                                 error = ENOBUFS;
846                                 goto out;
847                         }
848                 }
849 #endif
850                 /*
851                  * If we're sending everything we've got, set PUSH.
852                  * (This will keep happy those implementations which only
853                  * give data to the user when a buffer fills or
854                  * a PUSH comes in.)
855                  */
856                 if (off + len == so->so_snd.sb_cc)
857                         flags |= TH_PUSH;
858                 SOCKBUF_UNLOCK(&so->so_snd);
859         } else {
860                 SOCKBUF_UNLOCK(&so->so_snd);
861                 if (tp->t_flags & TF_ACKNOW)
862                         TCPSTAT_INC(tcps_sndacks);
863                 else if (flags & (TH_SYN|TH_FIN|TH_RST))
864                         TCPSTAT_INC(tcps_sndctrl);
865                 else if (SEQ_GT(tp->snd_up, tp->snd_una))
866                         TCPSTAT_INC(tcps_sndurg);
867                 else
868                         TCPSTAT_INC(tcps_sndwinup);
869
870                 MGETHDR(m, M_DONTWAIT, MT_DATA);
871                 if (m == NULL) {
872                         error = ENOBUFS;
873                         goto out;
874                 }
875 #ifdef INET6
876                 if (isipv6 && (MHLEN < hdrlen + max_linkhdr) &&
877                     MHLEN >= hdrlen) {
878                         MH_ALIGN(m, hdrlen);
879                 } else
880 #endif
881                 m->m_data += max_linkhdr;
882                 m->m_len = hdrlen;
883         }
884         SOCKBUF_UNLOCK_ASSERT(&so->so_snd);
885         m->m_pkthdr.rcvif = (struct ifnet *)0;
886 #ifdef MAC
887         mac_inpcb_create_mbuf(tp->t_inpcb, m);
888 #endif
889 #ifdef INET6
890         if (isipv6) {
891                 ip6 = mtod(m, struct ip6_hdr *);
892                 th = (struct tcphdr *)(ip6 + 1);
893                 tcpip_fillheaders(tp->t_inpcb, ip6, th);
894         } else
895 #endif /* INET6 */
896         {
897                 ip = mtod(m, struct ip *);
898                 ipov = (struct ipovly *)ip;
899                 th = (struct tcphdr *)(ip + 1);
900                 tcpip_fillheaders(tp->t_inpcb, ip, th);
901         }
902
903         /*
904          * Fill in fields, remembering maximum advertised
905          * window for use in delaying messages about window sizes.
906          * If resending a FIN, be sure not to use a new sequence number.
907          */
908         if (flags & TH_FIN && tp->t_flags & TF_SENTFIN &&
909             tp->snd_nxt == tp->snd_max)
910                 tp->snd_nxt--;
911         /*
912          * If we are starting a connection, send ECN setup
913          * SYN packet. If we are on a retransmit, we may
914          * resend those bits a number of times as per
915          * RFC 3168.
916          */
917         if (tp->t_state == TCPS_SYN_SENT && V_tcp_do_ecn) {
918                 if (tp->t_rxtshift >= 1) {
919                         if (tp->t_rxtshift <= V_tcp_ecn_maxretries)
920                                 flags |= TH_ECE|TH_CWR;
921                 } else
922                         flags |= TH_ECE|TH_CWR;
923         }
924         
925         if (tp->t_state == TCPS_ESTABLISHED &&
926             (tp->t_flags & TF_ECN_PERMIT)) {
927                 /*
928                  * If the peer has ECN, mark data packets with
929                  * ECN capable transmission (ECT).
930                  * Ignore pure ack packets, retransmissions and window probes.
931                  */
932                 if (len > 0 && SEQ_GEQ(tp->snd_nxt, tp->snd_max) &&
933                     !((tp->t_flags & TF_FORCEDATA) && len == 1)) {
934 #ifdef INET6
935                         if (isipv6)
936                                 ip6->ip6_flow |= htonl(IPTOS_ECN_ECT0 << 20);
937                         else
938 #endif
939                                 ip->ip_tos |= IPTOS_ECN_ECT0;
940                         TCPSTAT_INC(tcps_ecn_ect0);
941                 }
942                 
943                 /*
944                  * Reply with proper ECN notifications.
945                  */
946                 if (tp->t_flags & TF_ECN_SND_CWR) {
947                         flags |= TH_CWR;
948                         tp->t_flags &= ~TF_ECN_SND_CWR;
949                 } 
950                 if (tp->t_flags & TF_ECN_SND_ECE)
951                         flags |= TH_ECE;
952         }
953         
954         /*
955          * If we are doing retransmissions, then snd_nxt will
956          * not reflect the first unsent octet.  For ACK only
957          * packets, we do not want the sequence number of the
958          * retransmitted packet, we want the sequence number
959          * of the next unsent octet.  So, if there is no data
960          * (and no SYN or FIN), use snd_max instead of snd_nxt
961          * when filling in ti_seq.  But if we are in persist
962          * state, snd_max might reflect one byte beyond the
963          * right edge of the window, so use snd_nxt in that
964          * case, since we know we aren't doing a retransmission.
965          * (retransmit and persist are mutually exclusive...)
966          */
967         if (sack_rxmit == 0) {
968                 if (len || (flags & (TH_SYN|TH_FIN)) ||
969                     tcp_timer_active(tp, TT_PERSIST))
970                         th->th_seq = htonl(tp->snd_nxt);
971                 else
972                         th->th_seq = htonl(tp->snd_max);
973         } else {
974                 th->th_seq = htonl(p->rxmit);
975                 p->rxmit += len;
976                 tp->sackhint.sack_bytes_rexmit += len;
977         }
978         th->th_ack = htonl(tp->rcv_nxt);
979         if (optlen) {
980                 bcopy(opt, th + 1, optlen);
981                 th->th_off = (sizeof (struct tcphdr) + optlen) >> 2;
982         }
983         th->th_flags = flags;
984         /*
985          * Calculate receive window.  Don't shrink window,
986          * but avoid silly window syndrome.
987          */
988         if (recwin < (long)(so->so_rcv.sb_hiwat / 4) &&
989             recwin < (long)tp->t_maxseg)
990                 recwin = 0;
991         if (recwin < (long)(tp->rcv_adv - tp->rcv_nxt))
992                 recwin = (long)(tp->rcv_adv - tp->rcv_nxt);
993         if (recwin > (long)TCP_MAXWIN << tp->rcv_scale)
994                 recwin = (long)TCP_MAXWIN << tp->rcv_scale;
995
996         /*
997          * According to RFC1323 the window field in a SYN (i.e., a <SYN>
998          * or <SYN,ACK>) segment itself is never scaled.  The <SYN,ACK>
999          * case is handled in syncache.
1000          */
1001         if (flags & TH_SYN)
1002                 th->th_win = htons((u_short)
1003                                 (min(sbspace(&so->so_rcv), TCP_MAXWIN)));
1004         else
1005                 th->th_win = htons((u_short)(recwin >> tp->rcv_scale));
1006
1007         /*
1008          * Adjust the RXWIN0SENT flag - indicate that we have advertised
1009          * a 0 window.  This may cause the remote transmitter to stall.  This
1010          * flag tells soreceive() to disable delayed acknowledgements when
1011          * draining the buffer.  This can occur if the receiver is attempting
1012          * to read more data than can be buffered prior to transmitting on
1013          * the connection.
1014          */
1015         if (th->th_win == 0) {
1016                 tp->t_sndzerowin++;
1017                 tp->t_flags |= TF_RXWIN0SENT;
1018         } else
1019                 tp->t_flags &= ~TF_RXWIN0SENT;
1020         if (SEQ_GT(tp->snd_up, tp->snd_nxt)) {
1021                 th->th_urp = htons((u_short)(tp->snd_up - tp->snd_nxt));
1022                 th->th_flags |= TH_URG;
1023         } else
1024                 /*
1025                  * If no urgent pointer to send, then we pull
1026                  * the urgent pointer to the left edge of the send window
1027                  * so that it doesn't drift into the send window on sequence
1028                  * number wraparound.
1029                  */
1030                 tp->snd_up = tp->snd_una;               /* drag it along */
1031
1032 #ifdef TCP_SIGNATURE
1033         if (tp->t_flags & TF_SIGNATURE) {
1034                 int sigoff = to.to_signature - opt;
1035                 tcp_signature_compute(m, 0, len, optlen,
1036                     (u_char *)(th + 1) + sigoff, IPSEC_DIR_OUTBOUND);
1037         }
1038 #endif
1039
1040         /*
1041          * Put TCP length in extended header, and then
1042          * checksum extended header and data.
1043          */
1044         m->m_pkthdr.len = hdrlen + len; /* in6_cksum() need this */
1045 #ifdef INET6
1046         if (isipv6)
1047                 /*
1048                  * ip6_plen is not need to be filled now, and will be filled
1049                  * in ip6_output.
1050                  */
1051                 th->th_sum = in6_cksum(m, IPPROTO_TCP, sizeof(struct ip6_hdr),
1052                                        sizeof(struct tcphdr) + optlen + len);
1053         else
1054 #endif /* INET6 */
1055         {
1056                 m->m_pkthdr.csum_flags = CSUM_TCP;
1057                 m->m_pkthdr.csum_data = offsetof(struct tcphdr, th_sum);
1058                 th->th_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr,
1059                     htons(sizeof(struct tcphdr) + IPPROTO_TCP + len + optlen));
1060
1061                 /* IP version must be set here for ipv4/ipv6 checking later */
1062                 KASSERT(ip->ip_v == IPVERSION,
1063                     ("%s: IP version incorrect: %d", __func__, ip->ip_v));
1064         }
1065
1066         /*
1067          * Enable TSO and specify the size of the segments.
1068          * The TCP pseudo header checksum is always provided.
1069          * XXX: Fixme: This is currently not the case for IPv6.
1070          */
1071         if (tso) {
1072                 KASSERT(len > tp->t_maxopd - optlen,
1073                     ("%s: len <= tso_segsz", __func__));
1074                 m->m_pkthdr.csum_flags |= CSUM_TSO;
1075                 m->m_pkthdr.tso_segsz = tp->t_maxopd - optlen;
1076         }
1077
1078         /*
1079          * In transmit state, time the transmission and arrange for
1080          * the retransmit.  In persist state, just set snd_max.
1081          */
1082         if ((tp->t_flags & TF_FORCEDATA) == 0 || 
1083             !tcp_timer_active(tp, TT_PERSIST)) {
1084                 tcp_seq startseq = tp->snd_nxt;
1085
1086                 /*
1087                  * Advance snd_nxt over sequence space of this segment.
1088                  */
1089                 if (flags & (TH_SYN|TH_FIN)) {
1090                         if (flags & TH_SYN)
1091                                 tp->snd_nxt++;
1092                         if (flags & TH_FIN) {
1093                                 tp->snd_nxt++;
1094                                 tp->t_flags |= TF_SENTFIN;
1095                         }
1096                 }
1097                 if (sack_rxmit)
1098                         goto timer;
1099                 tp->snd_nxt += len;
1100                 if (SEQ_GT(tp->snd_nxt, tp->snd_max)) {
1101                         tp->snd_max = tp->snd_nxt;
1102                         /*
1103                          * Time this transmission if not a retransmission and
1104                          * not currently timing anything.
1105                          */
1106                         if (tp->t_rtttime == 0) {
1107                                 tp->t_rtttime = ticks;
1108                                 tp->t_rtseq = startseq;
1109                                 TCPSTAT_INC(tcps_segstimed);
1110                         }
1111                 }
1112
1113                 /*
1114                  * Set retransmit timer if not currently set,
1115                  * and not doing a pure ack or a keep-alive probe.
1116                  * Initial value for retransmit timer is smoothed
1117                  * round-trip time + 2 * round-trip time variance.
1118                  * Initialize shift counter which is used for backoff
1119                  * of retransmit time.
1120                  */
1121 timer:
1122                 if (!tcp_timer_active(tp, TT_REXMT) &&
1123                     ((sack_rxmit && tp->snd_nxt != tp->snd_max) ||
1124                      (tp->snd_nxt != tp->snd_una))) {
1125                         if (tcp_timer_active(tp, TT_PERSIST)) {
1126                                 tcp_timer_activate(tp, TT_PERSIST, 0);
1127                                 tp->t_rxtshift = 0;
1128                         }
1129                         tcp_timer_activate(tp, TT_REXMT, tp->t_rxtcur);
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                         ++xlen;
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 + len;
1145         }
1146
1147         /* Run HHOOK_TCP_ESTABLISHED_OUT helper hooks. */
1148         hhook_run_tcp_est_out(tp, th, &to, len, tso);
1149
1150 #ifdef TCPDEBUG
1151         /*
1152          * Trace.
1153          */
1154         if (so->so_options & SO_DEBUG) {
1155                 u_short save = 0;
1156 #ifdef INET6
1157                 if (!isipv6)
1158 #endif
1159                 {
1160                         save = ipov->ih_len;
1161                         ipov->ih_len = htons(m->m_pkthdr.len /* - hdrlen + (th->th_off << 2) */);
1162                 }
1163                 tcp_trace(TA_OUTPUT, tp->t_state, tp, mtod(m, void *), th, 0);
1164 #ifdef INET6
1165                 if (!isipv6)
1166 #endif
1167                 ipov->ih_len = save;
1168         }
1169 #endif
1170
1171         /*
1172          * Fill in IP length and desired time to live and
1173          * send to IP level.  There should be a better way
1174          * to handle ttl and tos; we could keep them in
1175          * the template, but need a way to checksum without them.
1176          */
1177         /*
1178          * m->m_pkthdr.len should have been set before cksum calcuration,
1179          * because in6_cksum() need it.
1180          */
1181 #ifdef INET6
1182         if (isipv6) {
1183                 /*
1184                  * we separately set hoplimit for every segment, since the
1185                  * user might want to change the value via setsockopt.
1186                  * Also, desired default hop limit might be changed via
1187                  * Neighbor Discovery.
1188                  */
1189                 ip6->ip6_hlim = in6_selecthlim(tp->t_inpcb, NULL);
1190
1191                 /* TODO: IPv6 IP6TOS_ECT bit on */
1192                 error = ip6_output(m,
1193                             tp->t_inpcb->in6p_outputopts, NULL,
1194                             ((so->so_options & SO_DONTROUTE) ?
1195                             IP_ROUTETOIF : 0), NULL, NULL, tp->t_inpcb);
1196         } else
1197 #endif /* INET6 */
1198     {
1199         ip->ip_len = m->m_pkthdr.len;
1200 #ifdef INET6
1201         if (tp->t_inpcb->inp_vflag & INP_IPV6PROTO)
1202                 ip->ip_ttl = in6_selecthlim(tp->t_inpcb, NULL);
1203 #endif /* INET6 */
1204         /*
1205          * If we do path MTU discovery, then we set DF on every packet.
1206          * This might not be the best thing to do according to RFC3390
1207          * Section 2. However the tcp hostcache migitates the problem
1208          * so it affects only the first tcp connection with a host.
1209          *
1210          * NB: Don't set DF on small MTU/MSS to have a safe fallback.
1211          */
1212         if (V_path_mtu_discovery && tp->t_maxopd > V_tcp_minmss)
1213                 ip->ip_off |= IP_DF;
1214
1215         error = ip_output(m, tp->t_inpcb->inp_options, NULL,
1216             ((so->so_options & SO_DONTROUTE) ? IP_ROUTETOIF : 0), 0,
1217             tp->t_inpcb);
1218     }
1219         if (error) {
1220
1221                 /*
1222                  * We know that the packet was lost, so back out the
1223                  * sequence number advance, if any.
1224                  *
1225                  * If the error is EPERM the packet got blocked by the
1226                  * local firewall.  Normally we should terminate the
1227                  * connection but the blocking may have been spurious
1228                  * due to a firewall reconfiguration cycle.  So we treat
1229                  * it like a packet loss and let the retransmit timer and
1230                  * timeouts do their work over time.
1231                  * XXX: It is a POLA question whether calling tcp_drop right
1232                  * away would be the really correct behavior instead.
1233                  */
1234                 if (((tp->t_flags & TF_FORCEDATA) == 0 ||
1235                     !tcp_timer_active(tp, TT_PERSIST)) &&
1236                     ((flags & TH_SYN) == 0) &&
1237                     (error != EPERM)) {
1238                         if (sack_rxmit) {
1239                                 p->rxmit -= len;
1240                                 tp->sackhint.sack_bytes_rexmit -= len;
1241                                 KASSERT(tp->sackhint.sack_bytes_rexmit >= 0,
1242                                     ("sackhint bytes rtx >= 0"));
1243                         } else
1244                                 tp->snd_nxt -= len;
1245                 }
1246 out:
1247                 SOCKBUF_UNLOCK_ASSERT(&so->so_snd);     /* Check gotos. */
1248                 switch (error) {
1249                 case EPERM:
1250                         tp->t_softerror = error;
1251                         return (error);
1252                 case ENOBUFS:
1253                         if (!tcp_timer_active(tp, TT_REXMT) &&
1254                             !tcp_timer_active(tp, TT_PERSIST))
1255                                 tcp_timer_activate(tp, TT_REXMT, tp->t_rxtcur);
1256                         tp->snd_cwnd = tp->t_maxseg;
1257                         return (0);
1258                 case EMSGSIZE:
1259                         /*
1260                          * For some reason the interface we used initially
1261                          * to send segments changed to another or lowered
1262                          * its MTU.
1263                          *
1264                          * tcp_mtudisc() will find out the new MTU and as
1265                          * its last action, initiate retransmission, so it
1266                          * is important to not do so here.
1267                          *
1268                          * If TSO was active we either got an interface
1269                          * without TSO capabilits or TSO was turned off.
1270                          * Disable it for this connection as too and
1271                          * immediatly retry with MSS sized segments generated
1272                          * by this function.
1273                          */
1274                         if (tso)
1275                                 tp->t_flags &= ~TF_TSO;
1276                         tcp_mtudisc(tp->t_inpcb, 0);
1277                         return (0);
1278                 case EHOSTDOWN:
1279                 case EHOSTUNREACH:
1280                 case ENETDOWN:
1281                 case ENETUNREACH:
1282                         if (TCPS_HAVERCVDSYN(tp->t_state)) {
1283                                 tp->t_softerror = error;
1284                                 return (0);
1285                         }
1286                         /* FALLTHROUGH */
1287                 default:
1288                         return (error);
1289                 }
1290         }
1291         TCPSTAT_INC(tcps_sndtotal);
1292
1293         /*
1294          * Data sent (as far as we can tell).
1295          * If this advertises a larger window than any other segment,
1296          * then remember the size of the advertised window.
1297          * Any pending ACK has now been sent.
1298          */
1299         if (recwin > 0 && SEQ_GT(tp->rcv_nxt + recwin, tp->rcv_adv))
1300                 tp->rcv_adv = tp->rcv_nxt + recwin;
1301         tp->last_ack_sent = tp->rcv_nxt;
1302         tp->t_flags &= ~(TF_ACKNOW | TF_DELACK);
1303         if (tcp_timer_active(tp, TT_DELACK))
1304                 tcp_timer_activate(tp, TT_DELACK, 0);
1305 #if 0
1306         /*
1307          * This completely breaks TCP if newreno is turned on.  What happens
1308          * is that if delayed-acks are turned on on the receiver, this code
1309          * on the transmitter effectively destroys the TCP window, forcing
1310          * it to four packets (1.5Kx4 = 6K window).
1311          */
1312         if (sendalot && --maxburst)
1313                 goto again;
1314 #endif
1315         if (sendalot)
1316                 goto again;
1317         return (0);
1318 }
1319
1320 void
1321 tcp_setpersist(struct tcpcb *tp)
1322 {
1323         int t = ((tp->t_srtt >> 2) + tp->t_rttvar) >> 1;
1324         int tt;
1325
1326         if (tcp_timer_active(tp, TT_REXMT))
1327                 panic("tcp_setpersist: retransmit pending");
1328         /*
1329          * Start/restart persistance timer.
1330          */
1331         TCPT_RANGESET(tt, t * tcp_backoff[tp->t_rxtshift],
1332                       TCPTV_PERSMIN, TCPTV_PERSMAX);
1333         tcp_timer_activate(tp, TT_PERSIST, tt);
1334         if (tp->t_rxtshift < TCP_MAXRXTSHIFT)
1335                 tp->t_rxtshift++;
1336 }
1337
1338 /*
1339  * Insert TCP options according to the supplied parameters to the place
1340  * optp in a consistent way.  Can handle unaligned destinations.
1341  *
1342  * The order of the option processing is crucial for optimal packing and
1343  * alignment for the scarce option space.
1344  *
1345  * The optimal order for a SYN/SYN-ACK segment is:
1346  *   MSS (4) + NOP (1) + Window scale (3) + SACK permitted (2) +
1347  *   Timestamp (10) + Signature (18) = 38 bytes out of a maximum of 40.
1348  *
1349  * The SACK options should be last.  SACK blocks consume 8*n+2 bytes.
1350  * So a full size SACK blocks option is 34 bytes (with 4 SACK blocks).
1351  * At minimum we need 10 bytes (to generate 1 SACK block).  If both
1352  * TCP Timestamps (12 bytes) and TCP Signatures (18 bytes) are present,
1353  * we only have 10 bytes for SACK options (40 - (12 + 18)).
1354  */
1355 int
1356 tcp_addoptions(struct tcpopt *to, u_char *optp)
1357 {
1358         u_int mask, optlen = 0;
1359
1360         for (mask = 1; mask < TOF_MAXOPT; mask <<= 1) {
1361                 if ((to->to_flags & mask) != mask)
1362                         continue;
1363                 if (optlen == TCP_MAXOLEN)
1364                         break;
1365                 switch (to->to_flags & mask) {
1366                 case TOF_MSS:
1367                         while (optlen % 4) {
1368                                 optlen += TCPOLEN_NOP;
1369                                 *optp++ = TCPOPT_NOP;
1370                         }
1371                         if (TCP_MAXOLEN - optlen < TCPOLEN_MAXSEG)
1372                                 continue;
1373                         optlen += TCPOLEN_MAXSEG;
1374                         *optp++ = TCPOPT_MAXSEG;
1375                         *optp++ = TCPOLEN_MAXSEG;
1376                         to->to_mss = htons(to->to_mss);
1377                         bcopy((u_char *)&to->to_mss, optp, sizeof(to->to_mss));
1378                         optp += sizeof(to->to_mss);
1379                         break;
1380                 case TOF_SCALE:
1381                         while (!optlen || optlen % 2 != 1) {
1382                                 optlen += TCPOLEN_NOP;
1383                                 *optp++ = TCPOPT_NOP;
1384                         }
1385                         if (TCP_MAXOLEN - optlen < TCPOLEN_WINDOW)
1386                                 continue;
1387                         optlen += TCPOLEN_WINDOW;
1388                         *optp++ = TCPOPT_WINDOW;
1389                         *optp++ = TCPOLEN_WINDOW;
1390                         *optp++ = to->to_wscale;
1391                         break;
1392                 case TOF_SACKPERM:
1393                         while (optlen % 2) {
1394                                 optlen += TCPOLEN_NOP;
1395                                 *optp++ = TCPOPT_NOP;
1396                         }
1397                         if (TCP_MAXOLEN - optlen < TCPOLEN_SACK_PERMITTED)
1398                                 continue;
1399                         optlen += TCPOLEN_SACK_PERMITTED;
1400                         *optp++ = TCPOPT_SACK_PERMITTED;
1401                         *optp++ = TCPOLEN_SACK_PERMITTED;
1402                         break;
1403                 case TOF_TS:
1404                         while (!optlen || optlen % 4 != 2) {
1405                                 optlen += TCPOLEN_NOP;
1406                                 *optp++ = TCPOPT_NOP;
1407                         }
1408                         if (TCP_MAXOLEN - optlen < TCPOLEN_TIMESTAMP)
1409                                 continue;
1410                         optlen += TCPOLEN_TIMESTAMP;
1411                         *optp++ = TCPOPT_TIMESTAMP;
1412                         *optp++ = TCPOLEN_TIMESTAMP;
1413                         to->to_tsval = htonl(to->to_tsval);
1414                         to->to_tsecr = htonl(to->to_tsecr);
1415                         bcopy((u_char *)&to->to_tsval, optp, sizeof(to->to_tsval));
1416                         optp += sizeof(to->to_tsval);
1417                         bcopy((u_char *)&to->to_tsecr, optp, sizeof(to->to_tsecr));
1418                         optp += sizeof(to->to_tsecr);
1419                         break;
1420                 case TOF_SIGNATURE:
1421                         {
1422                         int siglen = TCPOLEN_SIGNATURE - 2;
1423
1424                         while (!optlen || optlen % 4 != 2) {
1425                                 optlen += TCPOLEN_NOP;
1426                                 *optp++ = TCPOPT_NOP;
1427                         }
1428                         if (TCP_MAXOLEN - optlen < TCPOLEN_SIGNATURE)
1429                                 continue;
1430                         optlen += TCPOLEN_SIGNATURE;
1431                         *optp++ = TCPOPT_SIGNATURE;
1432                         *optp++ = TCPOLEN_SIGNATURE;
1433                         to->to_signature = optp;
1434                         while (siglen--)
1435                                  *optp++ = 0;
1436                         break;
1437                         }
1438                 case TOF_SACK:
1439                         {
1440                         int sackblks = 0;
1441                         struct sackblk *sack = (struct sackblk *)to->to_sacks;
1442                         tcp_seq sack_seq;
1443
1444                         while (!optlen || optlen % 4 != 2) {
1445                                 optlen += TCPOLEN_NOP;
1446                                 *optp++ = TCPOPT_NOP;
1447                         }
1448                         if (TCP_MAXOLEN - optlen < TCPOLEN_SACKHDR + TCPOLEN_SACK)
1449                                 continue;
1450                         optlen += TCPOLEN_SACKHDR;
1451                         *optp++ = TCPOPT_SACK;
1452                         sackblks = min(to->to_nsacks,
1453                                         (TCP_MAXOLEN - optlen) / TCPOLEN_SACK);
1454                         *optp++ = TCPOLEN_SACKHDR + sackblks * TCPOLEN_SACK;
1455                         while (sackblks--) {
1456                                 sack_seq = htonl(sack->start);
1457                                 bcopy((u_char *)&sack_seq, optp, sizeof(sack_seq));
1458                                 optp += sizeof(sack_seq);
1459                                 sack_seq = htonl(sack->end);
1460                                 bcopy((u_char *)&sack_seq, optp, sizeof(sack_seq));
1461                                 optp += sizeof(sack_seq);
1462                                 optlen += TCPOLEN_SACK;
1463                                 sack++;
1464                         }
1465                         TCPSTAT_INC(tcps_sack_send_blocks);
1466                         break;
1467                         }
1468                 default:
1469                         panic("%s: unknown TCP option type", __func__);
1470                         break;
1471                 }
1472         }
1473
1474         /* Terminate and pad TCP options to a 4 byte boundary. */
1475         if (optlen % 4) {
1476                 optlen += TCPOLEN_EOL;
1477                 *optp++ = TCPOPT_EOL;
1478         }
1479         /*
1480          * According to RFC 793 (STD0007):
1481          *   "The content of the header beyond the End-of-Option option
1482          *    must be header padding (i.e., zero)."
1483          *   and later: "The padding is composed of zeros."
1484          */
1485         while (optlen % 4) {
1486                 optlen += TCPOLEN_PAD;
1487                 *optp++ = TCPOPT_PAD;
1488         }
1489
1490         KASSERT(optlen <= TCP_MAXOLEN, ("%s: TCP options too long", __func__));
1491         return (optlen);
1492 }