update for HEAD-2003091401
[reactos.git] / drivers / net / tcpip / transport / tcp / tcp_output.c
1 /*
2  * COPYRIGHT:   See COPYING in the top level directory
3  * PROJECT:     ReactOS TCP/IP protocol driver
4  * FILE:        transport/tcp/tcp_output.c
5  * PURPOSE:     Transmission Control Protocol
6  * PROGRAMMERS: Casper S. Hornstrup (chorns@users.sourceforge.net)
7  * REVISIONS:
8  *   CSH 15-01-2003 Imported from linux kernel 2.4.20
9  */
10
11 /*
12  * INET         An implementation of the TCP/IP protocol suite for the LINUX
13  *              operating system.  INET is implemented using the  BSD Socket
14  *              interface as the means of communication with the user level.
15  *
16  *              Implementation of the Transmission Control Protocol(TCP).
17  *
18  * Version:     $Id$
19  *
20  * Authors:     Ross Biro, <bir7@leland.Stanford.Edu>
21  *              Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
22  *              Mark Evans, <evansmp@uhura.aston.ac.uk>
23  *              Corey Minyard <wf-rch!minyard@relay.EU.net>
24  *              Florian La Roche, <flla@stud.uni-sb.de>
25  *              Charles Hedrick, <hedrick@klinzhai.rutgers.edu>
26  *              Linus Torvalds, <torvalds@cs.helsinki.fi>
27  *              Alan Cox, <gw4pts@gw4pts.ampr.org>
28  *              Matthew Dillon, <dillon@apollo.west.oic.com>
29  *              Arnt Gulbrandsen, <agulbra@nvg.unit.no>
30  *              Jorge Cwik, <jorge@laser.satlink.net>
31  */
32
33 /*
34  * Changes:     Pedro Roque     :       Retransmit queue handled by TCP.
35  *                              :       Fragmentation on mtu decrease
36  *                              :       Segment collapse on retransmit
37  *                              :       AF independence
38  *
39  *              Linus Torvalds  :       send_delayed_ack
40  *              David S. Miller :       Charge memory using the right skb
41  *                                      during syn/ack processing.
42  *              David S. Miller :       Output engine completely rewritten.
43  *              Andrea Arcangeli:       SYNACK carry ts_recent in tsecr.
44  *              Cacophonix Gaul :       draft-minshall-nagle-01
45  *              J Hadi Salim    :       ECN support
46  *
47  */
48
49 #if 0
50 #include <net/tcp.h>
51
52 #include <linux/compiler.h>
53 #include <linux/smp_lock.h>
54 #else
55 #include "linux.h"
56 #include "tcpcore.h"
57 #endif
58
59 /* People can turn this off for buggy TCP's found in printers etc. */
60 int sysctl_tcp_retrans_collapse = 1;
61
62 static __inline__
63 void update_send_head(struct sock *sk, struct tcp_opt *tp, struct sk_buff *skb)
64 {
65         tp->send_head = skb->next;
66         if (tp->send_head == (struct sk_buff *) &sk->write_queue)
67                 tp->send_head = NULL;
68         tp->snd_nxt = TCP_SKB_CB(skb)->end_seq;
69         if (tp->packets_out++ == 0)
70                 tcp_reset_xmit_timer(sk, TCP_TIME_RETRANS, tp->rto);
71 }
72
73 /* SND.NXT, if window was not shrunk.
74  * If window has been shrunk, what should we make? It is not clear at all.
75  * Using SND.UNA we will fail to open window, SND.NXT is out of window. :-(
76  * Anything in between SND.UNA...SND.UNA+SND.WND also can be already
77  * invalid. OK, let's make this for now:
78  */
79 static __inline__ __u32 tcp_acceptable_seq(struct sock *sk, struct tcp_opt *tp)
80 {
81         if (!before(tp->snd_una+tp->snd_wnd, tp->snd_nxt))
82                 return tp->snd_nxt;
83         else
84                 return tp->snd_una+tp->snd_wnd;
85 }
86
87 /* Calculate mss to advertise in SYN segment.
88  * RFC1122, RFC1063, draft-ietf-tcpimpl-pmtud-01 state that:
89  *
90  * 1. It is independent of path mtu.
91  * 2. Ideally, it is maximal possible segment size i.e. 65535-40.
92  * 3. For IPv4 it is reasonable to calculate it from maximal MTU of
93  *    attached devices, because some buggy hosts are confused by
94  *    large MSS.
95  * 4. We do not make 3, we advertise MSS, calculated from first
96  *    hop device mtu, but allow to raise it to ip_rt_min_advmss.
97  *    This may be overriden via information stored in routing table.
98  * 5. Value 65535 for MSS is valid in IPv6 and means "as large as possible,
99  *    probably even Jumbo".
100  */
101 static __u16 tcp_advertise_mss(struct sock *sk)
102 {
103 #if 0
104         struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
105         struct dst_entry *dst = __sk_dst_get(sk);
106         int mss = tp->advmss;
107
108         if (dst && dst->advmss < mss) {
109                 mss = dst->advmss;
110                 tp->advmss = mss;
111         }
112
113         return (__u16)mss;
114 #else
115   return 0;
116 #endif
117 }
118
119 /* RFC2861. Reset CWND after idle period longer RTO to "restart window".
120  * This is the first part of cwnd validation mechanism. */
121 static void tcp_cwnd_restart(struct tcp_opt *tp)
122 {
123 #if 0
124         s32 delta = tcp_time_stamp - tp->lsndtime;
125         u32 restart_cwnd = tcp_init_cwnd(tp);
126         u32 cwnd = tp->snd_cwnd;
127
128         tp->snd_ssthresh = tcp_current_ssthresh(tp);
129         restart_cwnd = min(restart_cwnd, cwnd);
130
131         while ((delta -= tp->rto) > 0 && cwnd > restart_cwnd)
132                 cwnd >>= 1;
133         tp->snd_cwnd = max(cwnd, restart_cwnd);
134         tp->snd_cwnd_stamp = tcp_time_stamp;
135         tp->snd_cwnd_used = 0;
136 #endif
137 }
138
139 static __inline__ void tcp_event_data_sent(struct tcp_opt *tp, struct sk_buff *skb)
140 {
141 #if 0
142         u32 now = tcp_time_stamp;
143
144         if (!tp->packets_out && (s32)(now - tp->lsndtime) > tp->rto)
145                 tcp_cwnd_restart(tp);
146
147         tp->lsndtime = now;
148
149         /* If it is a reply for ato after last received
150          * packet, enter pingpong mode.
151          */
152         if ((u32)(now - tp->ack.lrcvtime) < tp->ack.ato)
153                 tp->ack.pingpong = 1;
154 #endif
155 }
156
157 static __inline__ void tcp_event_ack_sent(struct sock *sk)
158 {
159 #if 0
160         struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
161
162         tcp_dec_quickack_mode(tp);
163         tcp_clear_xmit_timer(sk, TCP_TIME_DACK);
164 #endif
165 }
166
167 /* Chose a new window to advertise, update state in tcp_opt for the
168  * socket, and return result with RFC1323 scaling applied.  The return
169  * value can be stuffed directly into th->window for an outgoing
170  * frame.
171  */
172 static __inline__ u16 tcp_select_window(struct sock *sk)
173 {
174 #if 0
175         struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
176         u32 cur_win = tcp_receive_window(tp);
177         u32 new_win = __tcp_select_window(sk);
178
179         /* Never shrink the offered window */
180         if(new_win < cur_win) {
181                 /* Danger Will Robinson!
182                  * Don't update rcv_wup/rcv_wnd here or else
183                  * we will not be able to advertise a zero
184                  * window in time.  --DaveM
185                  *
186                  * Relax Will Robinson.
187                  */
188                 new_win = cur_win;
189         }
190         tp->rcv_wnd = new_win;
191         tp->rcv_wup = tp->rcv_nxt;
192
193         /* RFC1323 scaling applied */
194         new_win >>= tp->rcv_wscale;
195
196         /* If we advertise zero window, disable fast path. */
197         if (new_win == 0)
198                 tp->pred_flags = 0;
199
200         return new_win;
201 #else
202   return 0;
203 #endif
204 }
205
206
207 /* This routine actually transmits TCP packets queued in by
208  * tcp_do_sendmsg().  This is used by both the initial
209  * transmission and possible later retransmissions.
210  * All SKB's seen here are completely headerless.  It is our
211  * job to build the TCP header, and pass the packet down to
212  * IP so it can do the same plus pass the packet off to the
213  * device.
214  *
215  * We are working here with either a clone of the original
216  * SKB, or a fresh unique copy made by the retransmit engine.
217  */
218 int tcp_transmit_skb(struct sock *sk, struct sk_buff *skb)
219 {
220 #if 0
221         if(skb != NULL) {
222                 struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
223                 struct tcp_skb_cb *tcb = TCP_SKB_CB(skb);
224                 int tcp_header_size = tp->tcp_header_len;
225                 struct tcphdr *th;
226                 int sysctl_flags;
227                 int err;
228
229 #define SYSCTL_FLAG_TSTAMPS     0x1
230 #define SYSCTL_FLAG_WSCALE      0x2
231 #define SYSCTL_FLAG_SACK        0x4
232
233                 sysctl_flags = 0;
234                 if (tcb->flags & TCPCB_FLAG_SYN) {
235                         tcp_header_size = sizeof(struct tcphdr) + TCPOLEN_MSS;
236                         if(sysctl_tcp_timestamps) {
237                                 tcp_header_size += TCPOLEN_TSTAMP_ALIGNED;
238                                 sysctl_flags |= SYSCTL_FLAG_TSTAMPS;
239                         }
240                         if(sysctl_tcp_window_scaling) {
241                                 tcp_header_size += TCPOLEN_WSCALE_ALIGNED;
242                                 sysctl_flags |= SYSCTL_FLAG_WSCALE;
243                         }
244                         if(sysctl_tcp_sack) {
245                                 sysctl_flags |= SYSCTL_FLAG_SACK;
246                                 if(!(sysctl_flags & SYSCTL_FLAG_TSTAMPS))
247                                         tcp_header_size += TCPOLEN_SACKPERM_ALIGNED;
248                         }
249                 } else if (tp->eff_sacks) {
250                         /* A SACK is 2 pad bytes, a 2 byte header, plus
251                          * 2 32-bit sequence numbers for each SACK block.
252                          */
253                         tcp_header_size += (TCPOLEN_SACK_BASE_ALIGNED +
254                                             (tp->eff_sacks * TCPOLEN_SACK_PERBLOCK));
255                 }
256                 th = (struct tcphdr *) skb_push(skb, tcp_header_size);
257                 skb->h.th = th;
258                 skb_set_owner_w(skb, sk);
259
260                 /* Build TCP header and checksum it. */
261                 th->source              = sk->sport;
262                 th->dest                = sk->dport;
263                 th->seq                 = htonl(tcb->seq);
264                 th->ack_seq             = htonl(tp->rcv_nxt);
265                 *(((__u16 *)th) + 6)    = htons(((tcp_header_size >> 2) << 12) | tcb->flags);
266                 if (tcb->flags & TCPCB_FLAG_SYN) {
267                         /* RFC1323: The window in SYN & SYN/ACK segments
268                          * is never scaled.
269                          */
270                         th->window      = htons(tp->rcv_wnd);
271                 } else {
272                         th->window      = htons(tcp_select_window(sk));
273                 }
274                 th->check               = 0;
275                 th->urg_ptr             = 0;
276
277                 if (tp->urg_mode &&
278                     between(tp->snd_up, tcb->seq+1, tcb->seq+0xFFFF)) {
279                         th->urg_ptr             = htons(tp->snd_up-tcb->seq);
280                         th->urg                 = 1;
281                 }
282
283                 if (tcb->flags & TCPCB_FLAG_SYN) {
284                         tcp_syn_build_options((__u32 *)(th + 1),
285                                               tcp_advertise_mss(sk),
286                                               (sysctl_flags & SYSCTL_FLAG_TSTAMPS),
287                                               (sysctl_flags & SYSCTL_FLAG_SACK),
288                                               (sysctl_flags & SYSCTL_FLAG_WSCALE),
289                                               tp->rcv_wscale,
290                                               tcb->when,
291                                               tp->ts_recent);
292                 } else {
293                         tcp_build_and_update_options((__u32 *)(th + 1),
294                                                      tp, tcb->when);
295
296                         TCP_ECN_send(sk, tp, skb, tcp_header_size);
297                 }
298                 tp->af_specific->send_check(sk, th, skb->len, skb);
299
300                 if (tcb->flags & TCPCB_FLAG_ACK)
301                         tcp_event_ack_sent(sk);
302
303                 if (skb->len != tcp_header_size)
304                         tcp_event_data_sent(tp, skb);
305
306                 TCP_INC_STATS(TcpOutSegs);
307
308                 err = tp->af_specific->queue_xmit(skb);
309                 if (err <= 0)
310                         return err;
311
312                 tcp_enter_cwr(tp);
313
314                 /* NET_XMIT_CN is special. It does not guarantee,
315                  * that this packet is lost. It tells that device
316                  * is about to start to drop packets or already
317                  * drops some packets of the same priority and
318                  * invokes us to send less aggressively.
319                  */
320                 return err == NET_XMIT_CN ? 0 : err;
321         }
322         return -ENOBUFS;
323 #undef SYSCTL_FLAG_TSTAMPS
324 #undef SYSCTL_FLAG_WSCALE
325 #undef SYSCTL_FLAG_SACK
326 #else
327   return 0;
328 #endif
329 }
330
331
332 /* This is the main buffer sending routine. We queue the buffer
333  * and decide whether to queue or transmit now.
334  *
335  * NOTE: probe0 timer is not checked, do not forget tcp_push_pending_frames,
336  * otherwise socket can stall.
337  */
338 void tcp_send_skb(struct sock *sk, struct sk_buff *skb, int force_queue, unsigned cur_mss)
339 {
340 #if 0
341         struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
342
343         /* Advance write_seq and place onto the write_queue. */
344         tp->write_seq = TCP_SKB_CB(skb)->end_seq;
345         __skb_queue_tail(&sk->write_queue, skb);
346         tcp_charge_skb(sk, skb);
347
348         if (!force_queue && tp->send_head == NULL && tcp_snd_test(tp, skb, cur_mss, tp->nonagle)) {
349                 /* Send it out now. */
350                 TCP_SKB_CB(skb)->when = tcp_time_stamp;
351                 if (tcp_transmit_skb(sk, skb_clone(skb, sk->allocation)) == 0) {
352                         tp->snd_nxt = TCP_SKB_CB(skb)->end_seq;
353                         tcp_minshall_update(tp, cur_mss, skb);
354                         if (tp->packets_out++ == 0)
355                                 tcp_reset_xmit_timer(sk, TCP_TIME_RETRANS, tp->rto);
356                         return;
357                 }
358         }
359         /* Queue it, remembering where we must start sending. */
360         if (tp->send_head == NULL)
361                 tp->send_head = skb;
362 #endif
363 }
364
365 /* Send _single_ skb sitting at the send head. This function requires
366  * true push pending frames to setup probe timer etc.
367  */
368 void tcp_push_one(struct sock *sk, unsigned cur_mss)
369 {
370 #if 0
371         struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
372         struct sk_buff *skb = tp->send_head;
373
374         if (tcp_snd_test(tp, skb, cur_mss, 1)) {
375                 /* Send it out now. */
376                 TCP_SKB_CB(skb)->when = tcp_time_stamp;
377                 if (tcp_transmit_skb(sk, skb_clone(skb, sk->allocation)) == 0) {
378                         tp->send_head = NULL;
379                         tp->snd_nxt = TCP_SKB_CB(skb)->end_seq;
380                         if (tp->packets_out++ == 0)
381                                 tcp_reset_xmit_timer(sk, TCP_TIME_RETRANS, tp->rto);
382                         return;
383                 }
384         }
385 #endif
386 }
387
388 /* Split fragmented skb to two parts at length len. */
389
390 static void skb_split(struct sk_buff *skb, struct sk_buff *skb1, u32 len)
391 {
392 #if 0
393         int i;
394         int pos = skb->len - skb->data_len;
395
396         if (len < pos) {
397                 /* Split line is inside header. */
398                 memcpy(skb_put(skb1, pos-len), skb->data + len, pos-len);
399
400                 /* And move data appendix as is. */
401                 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
402                         skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
403
404                 skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
405                 skb_shinfo(skb)->nr_frags = 0;
406
407                 skb1->data_len = skb->data_len;
408                 skb1->len += skb1->data_len;
409                 skb->data_len = 0;
410                 skb->len = len;
411                 skb->tail = skb->data+len;
412         } else {
413                 int k = 0;
414                 int nfrags = skb_shinfo(skb)->nr_frags;
415
416                 /* Second chunk has no header, nothing to copy. */
417
418                 skb_shinfo(skb)->nr_frags = 0;
419                 skb1->len = skb1->data_len = skb->len - len;
420                 skb->len = len;
421                 skb->data_len = len - pos;
422
423                 for (i=0; i<nfrags; i++) {
424                         int size = skb_shinfo(skb)->frags[i].size;
425                         if (pos + size > len) {
426                                 skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
427
428                                 if (pos < len) {
429                                         /* Split frag.
430                                          * We have to variants in this case:
431                                          * 1. Move all the frag to the second
432                                          *    part, if it is possible. F.e.
433                                          *    this approach is mandatory for TUX,
434                                          *    where splitting is expensive.
435                                          * 2. Split is accurately. We make this.
436                                          */
437                                         get_page(skb_shinfo(skb)->frags[i].page);
438                                         skb_shinfo(skb1)->frags[0].page_offset += (len-pos);
439                                         skb_shinfo(skb1)->frags[0].size -= (len-pos);
440                                         skb_shinfo(skb)->frags[i].size = len-pos;
441                                         skb_shinfo(skb)->nr_frags++;
442                                 }
443                                 k++;
444                         } else {
445                                 skb_shinfo(skb)->nr_frags++;
446                         }
447                         pos += size;
448                 }
449                 skb_shinfo(skb1)->nr_frags = k;
450         }
451 #endif
452 }
453
454 /* Function to create two new TCP segments.  Shrinks the given segment
455  * to the specified size and appends a new segment with the rest of the
456  * packet to the list.  This won't be called frequently, I hope. 
457  * Remember, these are still headerless SKBs at this point.
458  */
459 static int tcp_fragment(struct sock *sk, struct sk_buff *skb, u32 len)
460 {
461 #if 0
462         struct tcp_opt *tp = &sk->tp_pinfo.af_tcp;
463         struct sk_buff *buff;
464         int nsize = skb->len - len;
465         u16 flags;
466
467         if (skb_cloned(skb) &&
468             skb_is_nonlinear(skb) &&
469             pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
470                 return -ENOMEM;
471
472         /* Get a new skb... force flag on. */
473         buff = tcp_alloc_skb(sk, nsize, GFP_ATOMIC);
474         if (buff == NULL)
475                 return -ENOMEM; /* We'll just try again later. */
476         tcp_charge_skb(sk, buff);
477
478         /* Correct the sequence numbers. */
479         TCP_SKB_CB(buff)->seq = TCP_SKB_CB(skb)->seq + len;
480         TCP_SKB_CB(buff)->end_seq = TCP_SKB_CB(skb)->end_seq;
481         TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(buff)->seq;
482
483         /* PSH and FIN should only be set in the second packet. */
484         flags = TCP_SKB_CB(skb)->flags;
485         TCP_SKB_CB(skb)->flags = flags & ~(TCPCB_FLAG_FIN|TCPCB_FLAG_PSH);
486         TCP_SKB_CB(buff)->flags = flags;
487         TCP_SKB_CB(buff)->sacked = TCP_SKB_CB(skb)->sacked&(TCPCB_LOST|TCPCB_EVER_RETRANS|TCPCB_AT_TAIL);
488         if (TCP_SKB_CB(buff)->sacked&TCPCB_LOST) {
489                 tp->lost_out++;
490                 tp->left_out++;
491         }
492         TCP_SKB_CB(skb)->sacked &= ~TCPCB_AT_TAIL;
493
494         if (!skb_shinfo(skb)->nr_frags && skb->ip_summed != CHECKSUM_HW) {
495                 /* Copy and checksum data tail into the new buffer. */
496                 buff->csum = csum_partial_copy_nocheck(skb->data + len, skb_put(buff, nsize),
497                                                        nsize, 0);
498
499                 skb_trim(skb, len);
500
501                 skb->csum = csum_block_sub(skb->csum, buff->csum, len);
502         } else {
503                 skb->ip_summed = CHECKSUM_HW;
504                 skb_split(skb, buff, len);
505         }
506
507         buff->ip_summed = skb->ip_summed;
508
509         /* Looks stupid, but our code really uses when of
510          * skbs, which it never sent before. --ANK
511          */
512         TCP_SKB_CB(buff)->when = TCP_SKB_CB(skb)->when;
513
514         /* Link BUFF into the send queue. */
515         __skb_append(skb, buff);
516
517         return 0;
518 #else
519   return 0;
520 #endif
521 }
522
523 /* This function synchronize snd mss to current pmtu/exthdr set.
524
525    tp->user_mss is mss set by user by TCP_MAXSEG. It does NOT counts
526    for TCP options, but includes only bare TCP header.
527
528    tp->mss_clamp is mss negotiated at connection setup.
529    It is minumum of user_mss and mss received with SYN.
530    It also does not include TCP options.
531
532    tp->pmtu_cookie is last pmtu, seen by this function.
533
534    tp->mss_cache is current effective sending mss, including
535    all tcp options except for SACKs. It is evaluated,
536    taking into account current pmtu, but never exceeds
537    tp->mss_clamp.
538
539    NOTE1. rfc1122 clearly states that advertised MSS
540    DOES NOT include either tcp or ip options.
541
542    NOTE2. tp->pmtu_cookie and tp->mss_cache are READ ONLY outside
543    this function.                       --ANK (980731)
544  */
545
546 int tcp_sync_mss(struct sock *sk, u32 pmtu)
547 {
548 #if 0
549         struct tcp_opt *tp = &sk->tp_pinfo.af_tcp;
550         int mss_now;
551
552         /* Calculate base mss without TCP options:
553            It is MMS_S - sizeof(tcphdr) of rfc1122
554          */
555
556         mss_now = pmtu - tp->af_specific->net_header_len - sizeof(struct tcphdr);
557
558         /* Clamp it (mss_clamp does not include tcp options) */
559         if (mss_now > tp->mss_clamp)
560                 mss_now = tp->mss_clamp;
561
562         /* Now subtract optional transport overhead */
563         mss_now -= tp->ext_header_len;
564
565         /* Then reserve room for full set of TCP options and 8 bytes of data */
566         if (mss_now < 48)
567                 mss_now = 48;
568
569         /* Now subtract TCP options size, not including SACKs */
570         mss_now -= tp->tcp_header_len - sizeof(struct tcphdr);
571
572         /* Bound mss with half of window */
573         if (tp->max_window && mss_now > (tp->max_window>>1))
574                 mss_now = max((tp->max_window>>1), 68U - tp->tcp_header_len);
575
576         /* And store cached results */
577         tp->pmtu_cookie = pmtu;
578         tp->mss_cache = mss_now;
579         return mss_now;
580 #else
581   return 0;
582 #endif
583 }
584
585
586 /* This routine writes packets to the network.  It advances the
587  * send_head.  This happens as incoming acks open up the remote
588  * window for us.
589  *
590  * Returns 1, if no segments are in flight and we have queued segments, but
591  * cannot send anything now because of SWS or another problem.
592  */
593 int tcp_write_xmit(struct sock *sk, int nonagle)
594 {
595 #if 0
596         struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
597         unsigned int mss_now;
598
599         /* If we are closed, the bytes will have to remain here.
600          * In time closedown will finish, we empty the write queue and all
601          * will be happy.
602          */
603         if(sk->state != TCP_CLOSE) {
604                 struct sk_buff *skb;
605                 int sent_pkts = 0;
606
607                 /* Account for SACKS, we may need to fragment due to this.
608                  * It is just like the real MSS changing on us midstream.
609                  * We also handle things correctly when the user adds some
610                  * IP options mid-stream.  Silly to do, but cover it.
611                  */
612                 mss_now = tcp_current_mss(sk); 
613
614                 while((skb = tp->send_head) &&
615                       tcp_snd_test(tp, skb, mss_now, tcp_skb_is_last(sk, skb) ? nonagle : 1)) {
616                         if (skb->len > mss_now) {
617                                 if (tcp_fragment(sk, skb, mss_now))
618                                         break;
619                         }
620
621                         TCP_SKB_CB(skb)->when = tcp_time_stamp;
622                         if (tcp_transmit_skb(sk, skb_clone(skb, GFP_ATOMIC)))
623                                 break;
624                         /* Advance the send_head.  This one is sent out. */
625                         update_send_head(sk, tp, skb);
626                         tcp_minshall_update(tp, mss_now, skb);
627                         sent_pkts = 1;
628                 }
629
630                 if (sent_pkts) {
631                         tcp_cwnd_validate(sk, tp);
632                         return 0;
633                 }
634
635                 return !tp->packets_out && tp->send_head;
636         }
637         return 0;
638 #else
639   return 0;
640 #endif
641 }
642
643 /* This function returns the amount that we can raise the
644  * usable window based on the following constraints
645  *  
646  * 1. The window can never be shrunk once it is offered (RFC 793)
647  * 2. We limit memory per socket
648  *
649  * RFC 1122:
650  * "the suggested [SWS] avoidance algorithm for the receiver is to keep
651  *  RECV.NEXT + RCV.WIN fixed until:
652  *  RCV.BUFF - RCV.USER - RCV.WINDOW >= min(1/2 RCV.BUFF, MSS)"
653  *
654  * i.e. don't raise the right edge of the window until you can raise
655  * it at least MSS bytes.
656  *
657  * Unfortunately, the recommended algorithm breaks header prediction,
658  * since header prediction assumes th->window stays fixed.
659  *
660  * Strictly speaking, keeping th->window fixed violates the receiver
661  * side SWS prevention criteria. The problem is that under this rule
662  * a stream of single byte packets will cause the right side of the
663  * window to always advance by a single byte.
664  * 
665  * Of course, if the sender implements sender side SWS prevention
666  * then this will not be a problem.
667  * 
668  * BSD seems to make the following compromise:
669  * 
670  *      If the free space is less than the 1/4 of the maximum
671  *      space available and the free space is less than 1/2 mss,
672  *      then set the window to 0.
673  *      [ Actually, bsd uses MSS and 1/4 of maximal _window_ ]
674  *      Otherwise, just prevent the window from shrinking
675  *      and from being larger than the largest representable value.
676  *
677  * This prevents incremental opening of the window in the regime
678  * where TCP is limited by the speed of the reader side taking
679  * data out of the TCP receive queue. It does nothing about
680  * those cases where the window is constrained on the sender side
681  * because the pipeline is full.
682  *
683  * BSD also seems to "accidentally" limit itself to windows that are a
684  * multiple of MSS, at least until the free space gets quite small.
685  * This would appear to be a side effect of the mbuf implementation.
686  * Combining these two algorithms results in the observed behavior
687  * of having a fixed window size at almost all times.
688  *
689  * Below we obtain similar behavior by forcing the offered window to
690  * a multiple of the mss when it is feasible to do so.
691  *
692  * Note, we don't "adjust" for TIMESTAMP or SACK option bytes.
693  * Regular options like TIMESTAMP are taken into account.
694  */
695 u32 __tcp_select_window(struct sock *sk)
696 {
697 #if 0
698         struct tcp_opt *tp = &sk->tp_pinfo.af_tcp;
699         /* MSS for the peer's data.  Previous verions used mss_clamp
700          * here.  I don't know if the value based on our guesses
701          * of peer's MSS is better for the performance.  It's more correct
702          * but may be worse for the performance because of rcv_mss
703          * fluctuations.  --SAW  1998/11/1
704          */
705         int mss = tp->ack.rcv_mss;
706         int free_space = tcp_space(sk);
707         int full_space = min_t(int, tp->window_clamp, tcp_full_space(sk));
708         int window;
709
710         if (mss > full_space)
711                 mss = full_space; 
712
713         if (free_space < full_space/2) {
714                 tp->ack.quick = 0;
715
716                 if (tcp_memory_pressure)
717                         tp->rcv_ssthresh = min(tp->rcv_ssthresh, 4U*tp->advmss);
718
719                 if (free_space < mss)
720                         return 0;
721         }
722
723         if (free_space > tp->rcv_ssthresh)
724                 free_space = tp->rcv_ssthresh;
725
726         /* Get the largest window that is a nice multiple of mss.
727          * Window clamp already applied above.
728          * If our current window offering is within 1 mss of the
729          * free space we just keep it. This prevents the divide
730          * and multiply from happening most of the time.
731          * We also don't do any window rounding when the free space
732          * is too small.
733          */
734         window = tp->rcv_wnd;
735         if (window <= free_space - mss || window > free_space)
736                 window = (free_space/mss)*mss;
737
738         return window;
739 #else
740   return 0;
741 #endif
742 }
743
744 /* Attempt to collapse two adjacent SKB's during retransmission. */
745 static void tcp_retrans_try_collapse(struct sock *sk, struct sk_buff *skb, int mss_now)
746 {
747 #if 0
748         struct tcp_opt *tp = &sk->tp_pinfo.af_tcp;
749         struct sk_buff *next_skb = skb->next;
750
751         /* The first test we must make is that neither of these two
752          * SKB's are still referenced by someone else.
753          */
754         if(!skb_cloned(skb) && !skb_cloned(next_skb)) {
755                 int skb_size = skb->len, next_skb_size = next_skb->len;
756                 u16 flags = TCP_SKB_CB(skb)->flags;
757
758                 /* Also punt if next skb has been SACK'd. */
759                 if(TCP_SKB_CB(next_skb)->sacked & TCPCB_SACKED_ACKED)
760                         return;
761
762                 /* Next skb is out of window. */
763                 if (after(TCP_SKB_CB(next_skb)->end_seq, tp->snd_una+tp->snd_wnd))
764                         return;
765
766                 /* Punt if not enough space exists in the first SKB for
767                  * the data in the second, or the total combined payload
768                  * would exceed the MSS.
769                  */
770                 if ((next_skb_size > skb_tailroom(skb)) ||
771                     ((skb_size + next_skb_size) > mss_now))
772                         return;
773
774                 /* Ok.  We will be able to collapse the packet. */
775                 __skb_unlink(next_skb, next_skb->list);
776
777                 if (next_skb->ip_summed == CHECKSUM_HW)
778                         skb->ip_summed = CHECKSUM_HW;
779
780                 if (skb->ip_summed != CHECKSUM_HW) {
781                         memcpy(skb_put(skb, next_skb_size), next_skb->data, next_skb_size);
782                         skb->csum = csum_block_add(skb->csum, next_skb->csum, skb_size);
783                 }
784
785                 /* Update sequence range on original skb. */
786                 TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(next_skb)->end_seq;
787
788                 /* Merge over control information. */
789                 flags |= TCP_SKB_CB(next_skb)->flags; /* This moves PSH/FIN etc. over */
790                 TCP_SKB_CB(skb)->flags = flags;
791
792                 /* All done, get rid of second SKB and account for it so
793                  * packet counting does not break.
794                  */
795                 TCP_SKB_CB(skb)->sacked |= TCP_SKB_CB(next_skb)->sacked&(TCPCB_EVER_RETRANS|TCPCB_AT_TAIL);
796                 if (TCP_SKB_CB(next_skb)->sacked&TCPCB_SACKED_RETRANS)
797                         tp->retrans_out--;
798                 if (TCP_SKB_CB(next_skb)->sacked&TCPCB_LOST) {
799                         tp->lost_out--;
800                         tp->left_out--;
801                 }
802                 /* Reno case is special. Sigh... */
803                 if (!tp->sack_ok && tp->sacked_out) {
804                         tp->sacked_out--;
805                         tp->left_out--;
806                 }
807
808                 /* Not quite right: it can be > snd.fack, but
809                  * it is better to underestimate fackets.
810                  */
811                 if (tp->fackets_out)
812                         tp->fackets_out--;
813                 tcp_free_skb(sk, next_skb);
814                 tp->packets_out--;
815         }
816 #endif
817 }
818
819 /* Do a simple retransmit without using the backoff mechanisms in
820  * tcp_timer. This is used for path mtu discovery. 
821  * The socket is already locked here.
822  */ 
823 void tcp_simple_retransmit(struct sock *sk)
824 {
825 #if 0
826         struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
827         struct sk_buff *skb;
828         unsigned int mss = tcp_current_mss(sk);
829         int lost = 0;
830
831         for_retrans_queue(skb, sk, tp) {
832                 if (skb->len > mss && 
833                     !(TCP_SKB_CB(skb)->sacked&TCPCB_SACKED_ACKED)) {
834                         if (TCP_SKB_CB(skb)->sacked&TCPCB_SACKED_RETRANS) {
835                                 TCP_SKB_CB(skb)->sacked &= ~TCPCB_SACKED_RETRANS;
836                                 tp->retrans_out--;
837                         }
838                         if (!(TCP_SKB_CB(skb)->sacked&TCPCB_LOST)) {
839                                 TCP_SKB_CB(skb)->sacked |= TCPCB_LOST;
840                                 tp->lost_out++;
841                                 lost = 1;
842                         }
843                 }
844         }
845
846         if (!lost)
847                 return;
848
849         tcp_sync_left_out(tp);
850
851         /* Don't muck with the congestion window here.
852          * Reason is that we do not increase amount of _data_
853          * in network, but units changed and effective
854          * cwnd/ssthresh really reduced now.
855          */
856         if (tp->ca_state != TCP_CA_Loss) {
857                 tp->high_seq = tp->snd_nxt;
858                 tp->snd_ssthresh = tcp_current_ssthresh(tp);
859                 tp->prior_ssthresh = 0;
860                 tp->undo_marker = 0;
861                 tp->ca_state = TCP_CA_Loss;
862         }
863         tcp_xmit_retransmit_queue(sk);
864 #endif
865 }
866
867 /* This retransmits one SKB.  Policy decisions and retransmit queue
868  * state updates are done by the caller.  Returns non-zero if an
869  * error occurred which prevented the send.
870  */
871 int tcp_retransmit_skb(struct sock *sk, struct sk_buff *skb)
872 {
873 #if 0
874         struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
875         unsigned int cur_mss = tcp_current_mss(sk);
876         int err;
877
878         /* Do not sent more than we queued. 1/4 is reserved for possible
879          * copying overhead: frgagmentation, tunneling, mangling etc.
880          */
881         if (atomic_read(&sk->wmem_alloc) > min(sk->wmem_queued+(sk->wmem_queued>>2),sk->sndbuf))
882                 return -EAGAIN;
883
884         /* If receiver has shrunk his window, and skb is out of
885          * new window, do not retransmit it. The exception is the
886          * case, when window is shrunk to zero. In this case
887          * our retransmit serves as a zero window probe.
888          */
889         if (!before(TCP_SKB_CB(skb)->seq, tp->snd_una+tp->snd_wnd)
890             && TCP_SKB_CB(skb)->seq != tp->snd_una)
891                 return -EAGAIN;
892
893         if(skb->len > cur_mss) {
894                 if(tcp_fragment(sk, skb, cur_mss))
895                         return -ENOMEM; /* We'll try again later. */
896
897                 /* New SKB created, account for it. */
898                 tp->packets_out++;
899         }
900
901         /* Collapse two adjacent packets if worthwhile and we can. */
902         if(!(TCP_SKB_CB(skb)->flags & TCPCB_FLAG_SYN) &&
903            (skb->len < (cur_mss >> 1)) &&
904            (skb->next != tp->send_head) &&
905            (skb->next != (struct sk_buff *)&sk->write_queue) &&
906            (skb_shinfo(skb)->nr_frags == 0 && skb_shinfo(skb->next)->nr_frags == 0) &&
907            (sysctl_tcp_retrans_collapse != 0))
908                 tcp_retrans_try_collapse(sk, skb, cur_mss);
909
910         if(tp->af_specific->rebuild_header(sk))
911                 return -EHOSTUNREACH; /* Routing failure or similar. */
912
913         /* Some Solaris stacks overoptimize and ignore the FIN on a
914          * retransmit when old data is attached.  So strip it off
915          * since it is cheap to do so and saves bytes on the network.
916          */
917         if(skb->len > 0 &&
918            (TCP_SKB_CB(skb)->flags & TCPCB_FLAG_FIN) &&
919            tp->snd_una == (TCP_SKB_CB(skb)->end_seq - 1)) {
920                 if (!pskb_trim(skb, 0)) {
921                         TCP_SKB_CB(skb)->seq = TCP_SKB_CB(skb)->end_seq - 1;
922                         skb->ip_summed = CHECKSUM_NONE;
923                         skb->csum = 0;
924                 }
925         }
926
927         /* Make a copy, if the first transmission SKB clone we made
928          * is still in somebody's hands, else make a clone.
929          */
930         TCP_SKB_CB(skb)->when = tcp_time_stamp;
931
932         err = tcp_transmit_skb(sk, (skb_cloned(skb) ?
933                                     pskb_copy(skb, GFP_ATOMIC):
934                                     skb_clone(skb, GFP_ATOMIC)));
935
936         if (err == 0) {
937                 /* Update global TCP statistics. */
938                 TCP_INC_STATS(TcpRetransSegs);
939
940 #if FASTRETRANS_DEBUG > 0
941                 if (TCP_SKB_CB(skb)->sacked&TCPCB_SACKED_RETRANS) {
942                         if (net_ratelimit())
943                                 printk(KERN_DEBUG "retrans_out leaked.\n");
944                 }
945 #endif
946                 TCP_SKB_CB(skb)->sacked |= TCPCB_RETRANS;
947                 tp->retrans_out++;
948
949                 /* Save stamp of the first retransmit. */
950                 if (!tp->retrans_stamp)
951                         tp->retrans_stamp = TCP_SKB_CB(skb)->when;
952
953                 tp->undo_retrans++;
954
955                 /* snd_nxt is stored to detect loss of retransmitted segment,
956                  * see tcp_input.c tcp_sacktag_write_queue().
957                  */
958                 TCP_SKB_CB(skb)->ack_seq = tp->snd_nxt;
959         }
960         return err;
961 #else
962   return 0;
963 #endif
964 }
965
966 /* This gets called after a retransmit timeout, and the initially
967  * retransmitted data is acknowledged.  It tries to continue
968  * resending the rest of the retransmit queue, until either
969  * we've sent it all or the congestion window limit is reached.
970  * If doing SACK, the first ACK which comes back for a timeout
971  * based retransmit packet might feed us FACK information again.
972  * If so, we use it to avoid unnecessarily retransmissions.
973  */
974 void tcp_xmit_retransmit_queue(struct sock *sk)
975 {
976 #if 0
977         struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
978         struct sk_buff *skb;
979         int packet_cnt = tp->lost_out;
980
981         /* First pass: retransmit lost packets. */
982         if (packet_cnt) {
983                 for_retrans_queue(skb, sk, tp) {
984                         __u8 sacked = TCP_SKB_CB(skb)->sacked;
985
986                         if (tcp_packets_in_flight(tp) >= tp->snd_cwnd)
987                                 return;
988
989                         if (sacked&TCPCB_LOST) {
990                                 if (!(sacked&(TCPCB_SACKED_ACKED|TCPCB_SACKED_RETRANS))) {
991                                         if (tcp_retransmit_skb(sk, skb))
992                                                 return;
993                                         if (tp->ca_state != TCP_CA_Loss)
994                                                 NET_INC_STATS_BH(TCPFastRetrans);
995                                         else
996                                                 NET_INC_STATS_BH(TCPSlowStartRetrans);
997
998                                         if (skb == skb_peek(&sk->write_queue))
999                                                 tcp_reset_xmit_timer(sk, TCP_TIME_RETRANS, tp->rto);
1000                                 }
1001
1002                                 if (--packet_cnt <= 0)
1003                                         break;
1004                         }
1005                 }
1006         }
1007
1008         /* OK, demanded retransmission is finished. */
1009
1010         /* Forward retransmissions are possible only during Recovery. */
1011         if (tp->ca_state != TCP_CA_Recovery)
1012                 return;
1013
1014         /* No forward retransmissions in Reno are possible. */
1015         if (!tp->sack_ok)
1016                 return;
1017
1018         /* Yeah, we have to make difficult choice between forward transmission
1019          * and retransmission... Both ways have their merits...
1020          *
1021          * For now we do not retrnamsit anything, while we have some new
1022          * segments to send.
1023          */
1024
1025         if (tcp_may_send_now(sk, tp))
1026                 return;
1027
1028         packet_cnt = 0;
1029
1030         for_retrans_queue(skb, sk, tp) {
1031                 if(++packet_cnt > tp->fackets_out)
1032                         break;
1033
1034                 if (tcp_packets_in_flight(tp) >= tp->snd_cwnd)
1035                         break;
1036
1037                 if(TCP_SKB_CB(skb)->sacked & TCPCB_TAGBITS)
1038                         continue;
1039
1040                 /* Ok, retransmit it. */
1041                 if(tcp_retransmit_skb(sk, skb))
1042                         break;
1043
1044                 if (skb == skb_peek(&sk->write_queue))
1045                         tcp_reset_xmit_timer(sk, TCP_TIME_RETRANS, tp->rto);
1046
1047                 NET_INC_STATS_BH(TCPForwardRetrans);
1048         }
1049 #endif
1050 }
1051
1052
1053 /* Send a fin.  The caller locks the socket for us.  This cannot be
1054  * allowed to fail queueing a FIN frame under any circumstances.
1055  */
1056 void tcp_send_fin(struct sock *sk)
1057 {
1058 #if 0
1059         struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);    
1060         struct sk_buff *skb = skb_peek_tail(&sk->write_queue);
1061         unsigned int mss_now;
1062         
1063         /* Optimization, tack on the FIN if we have a queue of
1064          * unsent frames.  But be careful about outgoing SACKS
1065          * and IP options.
1066          */
1067         mss_now = tcp_current_mss(sk); 
1068
1069         if(tp->send_head != NULL) {
1070                 TCP_SKB_CB(skb)->flags |= TCPCB_FLAG_FIN;
1071                 TCP_SKB_CB(skb)->end_seq++;
1072                 tp->write_seq++;
1073         } else {
1074                 /* Socket is locked, keep trying until memory is available. */
1075                 for (;;) {
1076                         skb = alloc_skb(MAX_TCP_HEADER, GFP_KERNEL);
1077                         if (skb)
1078                                 break;
1079                         yield();
1080                 }
1081
1082                 /* Reserve space for headers and prepare control bits. */
1083                 skb_reserve(skb, MAX_TCP_HEADER);
1084                 skb->csum = 0;
1085                 TCP_SKB_CB(skb)->flags = (TCPCB_FLAG_ACK | TCPCB_FLAG_FIN);
1086                 TCP_SKB_CB(skb)->sacked = 0;
1087
1088                 /* FIN eats a sequence byte, write_seq advanced by tcp_send_skb(). */
1089                 TCP_SKB_CB(skb)->seq = tp->write_seq;
1090                 TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(skb)->seq + 1;
1091                 tcp_send_skb(sk, skb, 1, mss_now);
1092         }
1093         __tcp_push_pending_frames(sk, tp, mss_now, 1);
1094 #endif
1095 }
1096
1097 /* We get here when a process closes a file descriptor (either due to
1098  * an explicit close() or as a byproduct of exit()'ing) and there
1099  * was unread data in the receive queue.  This behavior is recommended
1100  * by draft-ietf-tcpimpl-prob-03.txt section 3.10.  -DaveM
1101  */
1102 void tcp_send_active_reset(struct sock *sk, int priority)
1103 {
1104 #if 0
1105         struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
1106         struct sk_buff *skb;
1107
1108         /* NOTE: No TCP options attached and we never retransmit this. */
1109         skb = alloc_skb(MAX_TCP_HEADER, priority);
1110         if (!skb) {
1111                 NET_INC_STATS(TCPAbortFailed);
1112                 return;
1113         }
1114
1115         /* Reserve space for headers and prepare control bits. */
1116         skb_reserve(skb, MAX_TCP_HEADER);
1117         skb->csum = 0;
1118         TCP_SKB_CB(skb)->flags = (TCPCB_FLAG_ACK | TCPCB_FLAG_RST);
1119         TCP_SKB_CB(skb)->sacked = 0;
1120
1121         /* Send it off. */
1122         TCP_SKB_CB(skb)->seq = tcp_acceptable_seq(sk, tp);
1123         TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(skb)->seq;
1124         TCP_SKB_CB(skb)->when = tcp_time_stamp;
1125         if (tcp_transmit_skb(sk, skb))
1126                 NET_INC_STATS(TCPAbortFailed);
1127 #endif
1128 }
1129
1130 /* WARNING: This routine must only be called when we have already sent
1131  * a SYN packet that crossed the incoming SYN that caused this routine
1132  * to get called. If this assumption fails then the initial rcv_wnd
1133  * and rcv_wscale values will not be correct.
1134  */
1135 int tcp_send_synack(struct sock *sk)
1136 {
1137 #if 0
1138         struct sk_buff* skb;
1139
1140         skb = skb_peek(&sk->write_queue);
1141         if (skb == NULL || !(TCP_SKB_CB(skb)->flags&TCPCB_FLAG_SYN)) {
1142                 printk(KERN_DEBUG "tcp_send_synack: wrong queue state\n");
1143                 return -EFAULT;
1144         }
1145         if (!(TCP_SKB_CB(skb)->flags&TCPCB_FLAG_ACK)) {
1146                 if (skb_cloned(skb)) {
1147                         struct sk_buff *nskb = skb_copy(skb, GFP_ATOMIC);
1148                         if (nskb == NULL)
1149                                 return -ENOMEM;
1150                         __skb_unlink(skb, &sk->write_queue);
1151                         __skb_queue_head(&sk->write_queue, nskb);
1152                         tcp_free_skb(sk, skb);
1153                         tcp_charge_skb(sk, nskb);
1154                         skb = nskb;
1155                 }
1156
1157                 TCP_SKB_CB(skb)->flags |= TCPCB_FLAG_ACK;
1158                 TCP_ECN_send_synack(&sk->tp_pinfo.af_tcp, skb);
1159         }
1160         TCP_SKB_CB(skb)->when = tcp_time_stamp;
1161         return tcp_transmit_skb(sk, skb_clone(skb, GFP_ATOMIC));
1162 #else
1163   return 0;
1164 #endif
1165 }
1166
1167 /*
1168  * Prepare a SYN-ACK.
1169  */
1170 struct sk_buff * tcp_make_synack(struct sock *sk, struct dst_entry *dst,
1171                                  struct open_request *req)
1172 {
1173 #if 0
1174         struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
1175         struct tcphdr *th;
1176         int tcp_header_size;
1177         struct sk_buff *skb;
1178
1179         skb = sock_wmalloc(sk, MAX_TCP_HEADER + 15, 1, GFP_ATOMIC);
1180         if (skb == NULL)
1181                 return NULL;
1182
1183         /* Reserve space for headers. */
1184         skb_reserve(skb, MAX_TCP_HEADER);
1185
1186         skb->dst = dst_clone(dst);
1187
1188         tcp_header_size = (sizeof(struct tcphdr) + TCPOLEN_MSS +
1189                            (req->tstamp_ok ? TCPOLEN_TSTAMP_ALIGNED : 0) +
1190                            (req->wscale_ok ? TCPOLEN_WSCALE_ALIGNED : 0) +
1191                            /* SACK_PERM is in the place of NOP NOP of TS */
1192                            ((req->sack_ok && !req->tstamp_ok) ? TCPOLEN_SACKPERM_ALIGNED : 0));
1193         skb->h.th = th = (struct tcphdr *) skb_push(skb, tcp_header_size);
1194
1195         memset(th, 0, sizeof(struct tcphdr));
1196         th->syn = 1;
1197         th->ack = 1;
1198         TCP_ECN_make_synack(req, th);
1199         th->source = sk->sport;
1200         th->dest = req->rmt_port;
1201         TCP_SKB_CB(skb)->seq = req->snt_isn;
1202         TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(skb)->seq + 1;
1203         th->seq = htonl(TCP_SKB_CB(skb)->seq);
1204         th->ack_seq = htonl(req->rcv_isn + 1);
1205         if (req->rcv_wnd == 0) { /* ignored for retransmitted syns */
1206                 __u8 rcv_wscale; 
1207                 /* Set this up on the first call only */
1208                 req->window_clamp = tp->window_clamp ? : dst->window;
1209                 /* tcp_full_space because it is guaranteed to be the first packet */
1210                 tcp_select_initial_window(tcp_full_space(sk), 
1211                         dst->advmss - (req->tstamp_ok ? TCPOLEN_TSTAMP_ALIGNED : 0),
1212                         &req->rcv_wnd,
1213                         &req->window_clamp,
1214                         req->wscale_ok,
1215                         &rcv_wscale);
1216                 req->rcv_wscale = rcv_wscale; 
1217         }
1218
1219         /* RFC1323: The window in SYN & SYN/ACK segments is never scaled. */
1220         th->window = htons(req->rcv_wnd);
1221
1222         TCP_SKB_CB(skb)->when = tcp_time_stamp;
1223         tcp_syn_build_options((__u32 *)(th + 1), dst->advmss, req->tstamp_ok,
1224                               req->sack_ok, req->wscale_ok, req->rcv_wscale,
1225                               TCP_SKB_CB(skb)->when,
1226                               req->ts_recent);
1227
1228         skb->csum = 0;
1229         th->doff = (tcp_header_size >> 2);
1230         TCP_INC_STATS(TcpOutSegs);
1231         return skb;
1232 #else
1233   return 0;
1234 #endif
1235 }
1236
1237 /* 
1238  * Do all connect socket setups that can be done AF independent.
1239  */ 
1240 static inline void tcp_connect_init(struct sock *sk)
1241 {
1242 #if 0
1243         struct dst_entry *dst = __sk_dst_get(sk);
1244         struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
1245
1246         /* We'll fix this up when we get a response from the other end.
1247          * See tcp_input.c:tcp_rcv_state_process case TCP_SYN_SENT.
1248          */
1249         tp->tcp_header_len = sizeof(struct tcphdr) +
1250                 (sysctl_tcp_timestamps ? TCPOLEN_TSTAMP_ALIGNED : 0);
1251
1252         /* If user gave his TCP_MAXSEG, record it to clamp */
1253         if (tp->user_mss)
1254                 tp->mss_clamp = tp->user_mss;
1255         tp->max_window = 0;
1256         tcp_sync_mss(sk, dst->pmtu);
1257
1258         if (!tp->window_clamp)
1259                 tp->window_clamp = dst->window;
1260         tp->advmss = dst->advmss;
1261         tcp_initialize_rcv_mss(sk);
1262
1263         tcp_select_initial_window(tcp_full_space(sk),
1264                                   tp->advmss - (tp->ts_recent_stamp ? tp->tcp_header_len - sizeof(struct tcphdr) : 0),
1265                                   &tp->rcv_wnd,
1266                                   &tp->window_clamp,
1267                                   sysctl_tcp_window_scaling,
1268                                   &tp->rcv_wscale);
1269
1270         tp->rcv_ssthresh = tp->rcv_wnd;
1271
1272         sk->err = 0;
1273         sk->done = 0;
1274         tp->snd_wnd = 0;
1275         tcp_init_wl(tp, tp->write_seq, 0);
1276         tp->snd_una = tp->write_seq;
1277         tp->snd_sml = tp->write_seq;
1278         tp->rcv_nxt = 0;
1279         tp->rcv_wup = 0;
1280         tp->copied_seq = 0;
1281
1282         tp->rto = TCP_TIMEOUT_INIT;
1283         tp->retransmits = 0;
1284         tcp_clear_retrans(tp);
1285 #endif
1286 }
1287
1288 /*
1289  * Build a SYN and send it off.
1290  */ 
1291 int tcp_connect(struct sock *sk)
1292 {
1293 #if 0
1294         struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
1295         struct sk_buff *buff;
1296
1297         tcp_connect_init(sk);
1298
1299         buff = alloc_skb(MAX_TCP_HEADER + 15, sk->allocation);
1300         if (unlikely(buff == NULL))
1301                 return -ENOBUFS;
1302
1303         /* Reserve space for headers. */
1304         skb_reserve(buff, MAX_TCP_HEADER);
1305
1306         TCP_SKB_CB(buff)->flags = TCPCB_FLAG_SYN;
1307         TCP_ECN_send_syn(tp, buff);
1308         TCP_SKB_CB(buff)->sacked = 0;
1309         buff->csum = 0;
1310         TCP_SKB_CB(buff)->seq = tp->write_seq++;
1311         TCP_SKB_CB(buff)->end_seq = tp->write_seq;
1312         tp->snd_nxt = tp->write_seq;
1313         tp->pushed_seq = tp->write_seq;
1314
1315         /* Send it off. */
1316         TCP_SKB_CB(buff)->when = tcp_time_stamp;
1317         tp->retrans_stamp = TCP_SKB_CB(buff)->when;
1318         __skb_queue_tail(&sk->write_queue, buff);
1319         tcp_charge_skb(sk, buff);
1320         tp->packets_out++;
1321         tcp_transmit_skb(sk, skb_clone(buff, GFP_KERNEL));
1322         TCP_INC_STATS(TcpActiveOpens);
1323
1324         /* Timer for repeating the SYN until an answer. */
1325         tcp_reset_xmit_timer(sk, TCP_TIME_RETRANS, tp->rto);
1326         return 0;
1327 #else
1328   return 0;
1329 #endif
1330 }
1331
1332 /* Send out a delayed ack, the caller does the policy checking
1333  * to see if we should even be here.  See tcp_input.c:tcp_ack_snd_check()
1334  * for details.
1335  */
1336 void tcp_send_delayed_ack(struct sock *sk)
1337 {
1338 #if 0
1339         struct tcp_opt *tp = &sk->tp_pinfo.af_tcp;
1340         int ato = tp->ack.ato;
1341         unsigned long timeout;
1342
1343         if (ato > TCP_DELACK_MIN) {
1344                 int max_ato = HZ/2;
1345
1346                 if (tp->ack.pingpong || (tp->ack.pending&TCP_ACK_PUSHED))
1347                         max_ato = TCP_DELACK_MAX;
1348
1349                 /* Slow path, intersegment interval is "high". */
1350
1351                 /* If some rtt estimate is known, use it to bound delayed ack.
1352                  * Do not use tp->rto here, use results of rtt measurements
1353                  * directly.
1354                  */
1355                 if (tp->srtt) {
1356                         int rtt = max(tp->srtt>>3, TCP_DELACK_MIN);
1357
1358                         if (rtt < max_ato)
1359                                 max_ato = rtt;
1360                 }
1361
1362                 ato = min(ato, max_ato);
1363         }
1364
1365         /* Stay within the limit we were given */
1366         timeout = jiffies + ato;
1367
1368         /* Use new timeout only if there wasn't a older one earlier. */
1369         if (tp->ack.pending&TCP_ACK_TIMER) {
1370                 /* If delack timer was blocked or is about to expire,
1371                  * send ACK now.
1372                  */
1373                 if (tp->ack.blocked || time_before_eq(tp->ack.timeout, jiffies+(ato>>2))) {
1374                         tcp_send_ack(sk);
1375                         return;
1376                 }
1377
1378                 if (!time_before(timeout, tp->ack.timeout))
1379                         timeout = tp->ack.timeout;
1380         }
1381         tp->ack.pending |= TCP_ACK_SCHED|TCP_ACK_TIMER;
1382         tp->ack.timeout = timeout;
1383         if (!mod_timer(&tp->delack_timer, timeout))
1384                 sock_hold(sk);
1385 #endif
1386 }
1387
1388 /* This routine sends an ack and also updates the window. */
1389 void tcp_send_ack(struct sock *sk)
1390 {
1391 #if 0
1392         /* If we have been reset, we may not send again. */
1393         if(sk->state != TCP_CLOSE) {
1394                 struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
1395                 struct sk_buff *buff;
1396
1397                 /* We are not putting this on the write queue, so
1398                  * tcp_transmit_skb() will set the ownership to this
1399                  * sock.
1400                  */
1401                 buff = alloc_skb(MAX_TCP_HEADER, GFP_ATOMIC);
1402                 if (buff == NULL) {
1403                         tcp_schedule_ack(tp);
1404                         tp->ack.ato = TCP_ATO_MIN;
1405                         tcp_reset_xmit_timer(sk, TCP_TIME_DACK, TCP_DELACK_MAX);
1406                         return;
1407                 }
1408
1409                 /* Reserve space for headers and prepare control bits. */
1410                 skb_reserve(buff, MAX_TCP_HEADER);
1411                 buff->csum = 0;
1412                 TCP_SKB_CB(buff)->flags = TCPCB_FLAG_ACK;
1413                 TCP_SKB_CB(buff)->sacked = 0;
1414
1415                 /* Send it off, this clears delayed acks for us. */
1416                 TCP_SKB_CB(buff)->seq = TCP_SKB_CB(buff)->end_seq = tcp_acceptable_seq(sk, tp);
1417                 TCP_SKB_CB(buff)->when = tcp_time_stamp;
1418                 tcp_transmit_skb(sk, buff);
1419         }
1420 #else
1421   return;
1422 #endif
1423 }
1424
1425 /* This routine sends a packet with an out of date sequence
1426  * number. It assumes the other end will try to ack it.
1427  *
1428  * Question: what should we make while urgent mode?
1429  * 4.4BSD forces sending single byte of data. We cannot send
1430  * out of window data, because we have SND.NXT==SND.MAX...
1431  *
1432  * Current solution: to send TWO zero-length segments in urgent mode:
1433  * one is with SEG.SEQ=SND.UNA to deliver urgent pointer, another is
1434  * out-of-date with SND.UNA-1 to probe window.
1435  */
1436 static int tcp_xmit_probe_skb(struct sock *sk, int urgent)
1437 {
1438 #if 0
1439         struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
1440         struct sk_buff *skb;
1441
1442         /* We don't queue it, tcp_transmit_skb() sets ownership. */
1443         skb = alloc_skb(MAX_TCP_HEADER, GFP_ATOMIC);
1444         if (skb == NULL) 
1445                 return -1;
1446
1447         /* Reserve space for headers and set control bits. */
1448         skb_reserve(skb, MAX_TCP_HEADER);
1449         skb->csum = 0;
1450         TCP_SKB_CB(skb)->flags = TCPCB_FLAG_ACK;
1451         TCP_SKB_CB(skb)->sacked = urgent;
1452
1453         /* Use a previous sequence.  This should cause the other
1454          * end to send an ack.  Don't queue or clone SKB, just
1455          * send it.
1456          */
1457         TCP_SKB_CB(skb)->seq = urgent ? tp->snd_una : tp->snd_una - 1;
1458         TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(skb)->seq;
1459         TCP_SKB_CB(skb)->when = tcp_time_stamp;
1460         return tcp_transmit_skb(sk, skb);
1461 #else
1462   return 0;
1463 #endif
1464 }
1465
1466 int tcp_write_wakeup(struct sock *sk)
1467 {
1468 #if 0
1469         if (sk->state != TCP_CLOSE) {
1470                 struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
1471                 struct sk_buff *skb;
1472
1473                 if ((skb = tp->send_head) != NULL &&
1474                     before(TCP_SKB_CB(skb)->seq, tp->snd_una+tp->snd_wnd)) {
1475                         int err;
1476                         int mss = tcp_current_mss(sk);
1477                         int seg_size = tp->snd_una+tp->snd_wnd-TCP_SKB_CB(skb)->seq;
1478
1479                         if (before(tp->pushed_seq, TCP_SKB_CB(skb)->end_seq))
1480                                 tp->pushed_seq = TCP_SKB_CB(skb)->end_seq;
1481
1482                         /* We are probing the opening of a window
1483                          * but the window size is != 0
1484                          * must have been a result SWS avoidance ( sender )
1485                          */
1486                         if (seg_size < TCP_SKB_CB(skb)->end_seq - TCP_SKB_CB(skb)->seq ||
1487                             skb->len > mss) {
1488                                 seg_size = min(seg_size, mss);
1489                                 TCP_SKB_CB(skb)->flags |= TCPCB_FLAG_PSH;
1490                                 if (tcp_fragment(sk, skb, seg_size))
1491                                         return -1;
1492                         }
1493                         TCP_SKB_CB(skb)->flags |= TCPCB_FLAG_PSH;
1494                         TCP_SKB_CB(skb)->when = tcp_time_stamp;
1495                         err = tcp_transmit_skb(sk, skb_clone(skb, GFP_ATOMIC));
1496                         if (!err) {
1497                                 update_send_head(sk, tp, skb);
1498                         }
1499                         return err;
1500                 } else {
1501                         if (tp->urg_mode &&
1502                             between(tp->snd_up, tp->snd_una+1, tp->snd_una+0xFFFF))
1503                                 tcp_xmit_probe_skb(sk, TCPCB_URG);
1504                         return tcp_xmit_probe_skb(sk, 0);
1505                 }
1506         }
1507         return -1;
1508 #else
1509   return 0;
1510 #endif
1511 }
1512
1513 /* A window probe timeout has occurred.  If window is not closed send
1514  * a partial packet else a zero probe.
1515  */
1516 void tcp_send_probe0(struct sock *sk)
1517 {
1518 #if 0
1519         struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
1520         int err;
1521
1522         err = tcp_write_wakeup(sk);
1523
1524         if (tp->packets_out || !tp->send_head) {
1525                 /* Cancel probe timer, if it is not required. */
1526                 tp->probes_out = 0;
1527                 tp->backoff = 0;
1528                 return;
1529         }
1530
1531         if (err <= 0) {
1532                 tp->backoff++;
1533                 tp->probes_out++;
1534                 tcp_reset_xmit_timer (sk, TCP_TIME_PROBE0, 
1535                                       min(tp->rto << tp->backoff, TCP_RTO_MAX));
1536         } else {
1537                 /* If packet was not sent due to local congestion,
1538                  * do not backoff and do not remember probes_out.
1539                  * Let local senders to fight for local resources.
1540                  *
1541                  * Use accumulated backoff yet.
1542                  */
1543                 if (!tp->probes_out)
1544                         tp->probes_out=1;
1545                 tcp_reset_xmit_timer (sk, TCP_TIME_PROBE0, 
1546                                       min(tp->rto << tp->backoff, TCP_RESOURCE_PROBE_INTERVAL));
1547         }
1548 #endif
1549 }