[NET]: Introduce inet_connection_sock
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / net / ipv4 / tcp_output.c
CommitLineData
1da177e4
LT
1/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * Implementation of the Transmission Control Protocol(TCP).
7 *
8 * Version: $Id: tcp_output.c,v 1.146 2002/02/01 22:01:04 davem Exp $
9 *
02c30a84 10 * Authors: Ross Biro
1da177e4
LT
11 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
12 * Mark Evans, <evansmp@uhura.aston.ac.uk>
13 * Corey Minyard <wf-rch!minyard@relay.EU.net>
14 * Florian La Roche, <flla@stud.uni-sb.de>
15 * Charles Hedrick, <hedrick@klinzhai.rutgers.edu>
16 * Linus Torvalds, <torvalds@cs.helsinki.fi>
17 * Alan Cox, <gw4pts@gw4pts.ampr.org>
18 * Matthew Dillon, <dillon@apollo.west.oic.com>
19 * Arnt Gulbrandsen, <agulbra@nvg.unit.no>
20 * Jorge Cwik, <jorge@laser.satlink.net>
21 */
22
23/*
24 * Changes: Pedro Roque : Retransmit queue handled by TCP.
25 * : Fragmentation on mtu decrease
26 * : Segment collapse on retransmit
27 * : AF independence
28 *
29 * Linus Torvalds : send_delayed_ack
30 * David S. Miller : Charge memory using the right skb
31 * during syn/ack processing.
32 * David S. Miller : Output engine completely rewritten.
33 * Andrea Arcangeli: SYNACK carry ts_recent in tsecr.
34 * Cacophonix Gaul : draft-minshall-nagle-01
35 * J Hadi Salim : ECN support
36 *
37 */
38
39#include <net/tcp.h>
40
41#include <linux/compiler.h>
42#include <linux/module.h>
43#include <linux/smp_lock.h>
44
45/* People can turn this off for buggy TCP's found in printers etc. */
46int sysctl_tcp_retrans_collapse = 1;
47
48/* This limits the percentage of the congestion window which we
49 * will allow a single TSO frame to consume. Building TSO frames
50 * which are too large can cause TCP streams to be bursty.
51 */
c1b4a7e6 52int sysctl_tcp_tso_win_divisor = 3;
1da177e4
LT
53
54static inline void update_send_head(struct sock *sk, struct tcp_sock *tp,
55 struct sk_buff *skb)
56{
57 sk->sk_send_head = skb->next;
58 if (sk->sk_send_head == (struct sk_buff *)&sk->sk_write_queue)
59 sk->sk_send_head = NULL;
60 tp->snd_nxt = TCP_SKB_CB(skb)->end_seq;
61 tcp_packets_out_inc(sk, tp, skb);
62}
63
64/* SND.NXT, if window was not shrunk.
65 * If window has been shrunk, what should we make? It is not clear at all.
66 * Using SND.UNA we will fail to open window, SND.NXT is out of window. :-(
67 * Anything in between SND.UNA...SND.UNA+SND.WND also can be already
68 * invalid. OK, let's make this for now:
69 */
70static inline __u32 tcp_acceptable_seq(struct sock *sk, struct tcp_sock *tp)
71{
72 if (!before(tp->snd_una+tp->snd_wnd, tp->snd_nxt))
73 return tp->snd_nxt;
74 else
75 return tp->snd_una+tp->snd_wnd;
76}
77
78/* Calculate mss to advertise in SYN segment.
79 * RFC1122, RFC1063, draft-ietf-tcpimpl-pmtud-01 state that:
80 *
81 * 1. It is independent of path mtu.
82 * 2. Ideally, it is maximal possible segment size i.e. 65535-40.
83 * 3. For IPv4 it is reasonable to calculate it from maximal MTU of
84 * attached devices, because some buggy hosts are confused by
85 * large MSS.
86 * 4. We do not make 3, we advertise MSS, calculated from first
87 * hop device mtu, but allow to raise it to ip_rt_min_advmss.
88 * This may be overridden via information stored in routing table.
89 * 5. Value 65535 for MSS is valid in IPv6 and means "as large as possible,
90 * probably even Jumbo".
91 */
92static __u16 tcp_advertise_mss(struct sock *sk)
93{
94 struct tcp_sock *tp = tcp_sk(sk);
95 struct dst_entry *dst = __sk_dst_get(sk);
96 int mss = tp->advmss;
97
98 if (dst && dst_metric(dst, RTAX_ADVMSS) < mss) {
99 mss = dst_metric(dst, RTAX_ADVMSS);
100 tp->advmss = mss;
101 }
102
103 return (__u16)mss;
104}
105
106/* RFC2861. Reset CWND after idle period longer RTO to "restart window".
107 * This is the first part of cwnd validation mechanism. */
463c84b9 108static void tcp_cwnd_restart(struct sock *sk, struct dst_entry *dst)
1da177e4 109{
463c84b9 110 struct tcp_sock *tp = tcp_sk(sk);
1da177e4
LT
111 s32 delta = tcp_time_stamp - tp->lsndtime;
112 u32 restart_cwnd = tcp_init_cwnd(tp, dst);
113 u32 cwnd = tp->snd_cwnd;
114
317a76f9 115 tcp_ca_event(tp, CA_EVENT_CWND_RESTART);
1da177e4
LT
116
117 tp->snd_ssthresh = tcp_current_ssthresh(tp);
118 restart_cwnd = min(restart_cwnd, cwnd);
119
463c84b9 120 while ((delta -= inet_csk(sk)->icsk_rto) > 0 && cwnd > restart_cwnd)
1da177e4
LT
121 cwnd >>= 1;
122 tp->snd_cwnd = max(cwnd, restart_cwnd);
123 tp->snd_cwnd_stamp = tcp_time_stamp;
124 tp->snd_cwnd_used = 0;
125}
126
127static inline void tcp_event_data_sent(struct tcp_sock *tp,
128 struct sk_buff *skb, struct sock *sk)
129{
463c84b9
ACM
130 struct inet_connection_sock *icsk = inet_csk(sk);
131 const u32 now = tcp_time_stamp;
1da177e4 132
463c84b9
ACM
133 if (!tp->packets_out && (s32)(now - tp->lsndtime) > icsk->icsk_rto)
134 tcp_cwnd_restart(sk, __sk_dst_get(sk));
1da177e4
LT
135
136 tp->lsndtime = now;
137
138 /* If it is a reply for ato after last received
139 * packet, enter pingpong mode.
140 */
463c84b9
ACM
141 if ((u32)(now - icsk->icsk_ack.lrcvtime) < icsk->icsk_ack.ato)
142 icsk->icsk_ack.pingpong = 1;
1da177e4
LT
143}
144
fc6415bc 145static __inline__ void tcp_event_ack_sent(struct sock *sk, unsigned int pkts)
1da177e4 146{
463c84b9
ACM
147 tcp_dec_quickack_mode(sk, pkts);
148 inet_csk_clear_xmit_timer(sk, ICSK_TIME_DACK);
1da177e4
LT
149}
150
151/* Determine a window scaling and initial window to offer.
152 * Based on the assumption that the given amount of space
153 * will be offered. Store the results in the tp structure.
154 * NOTE: for smooth operation initial space offering should
155 * be a multiple of mss if possible. We assume here that mss >= 1.
156 * This MUST be enforced by all callers.
157 */
158void tcp_select_initial_window(int __space, __u32 mss,
159 __u32 *rcv_wnd, __u32 *window_clamp,
160 int wscale_ok, __u8 *rcv_wscale)
161{
162 unsigned int space = (__space < 0 ? 0 : __space);
163
164 /* If no clamp set the clamp to the max possible scaled window */
165 if (*window_clamp == 0)
166 (*window_clamp) = (65535 << 14);
167 space = min(*window_clamp, space);
168
169 /* Quantize space offering to a multiple of mss if possible. */
170 if (space > mss)
171 space = (space / mss) * mss;
172
173 /* NOTE: offering an initial window larger than 32767
174 * will break some buggy TCP stacks. We try to be nice.
175 * If we are not window scaling, then this truncates
176 * our initial window offering to 32k. There should also
177 * be a sysctl option to stop being nice.
178 */
179 (*rcv_wnd) = min(space, MAX_TCP_WINDOW);
180 (*rcv_wscale) = 0;
181 if (wscale_ok) {
182 /* Set window scaling on max possible window
183 * See RFC1323 for an explanation of the limit to 14
184 */
185 space = max_t(u32, sysctl_tcp_rmem[2], sysctl_rmem_max);
186 while (space > 65535 && (*rcv_wscale) < 14) {
187 space >>= 1;
188 (*rcv_wscale)++;
189 }
190 }
191
192 /* Set initial window to value enough for senders,
193 * following RFC1414. Senders, not following this RFC,
194 * will be satisfied with 2.
195 */
196 if (mss > (1<<*rcv_wscale)) {
197 int init_cwnd = 4;
198 if (mss > 1460*3)
199 init_cwnd = 2;
200 else if (mss > 1460)
201 init_cwnd = 3;
202 if (*rcv_wnd > init_cwnd*mss)
203 *rcv_wnd = init_cwnd*mss;
204 }
205
206 /* Set the clamp no higher than max representable value */
207 (*window_clamp) = min(65535U << (*rcv_wscale), *window_clamp);
208}
209
210/* Chose a new window to advertise, update state in tcp_sock for the
211 * socket, and return result with RFC1323 scaling applied. The return
212 * value can be stuffed directly into th->window for an outgoing
213 * frame.
214 */
215static __inline__ u16 tcp_select_window(struct sock *sk)
216{
217 struct tcp_sock *tp = tcp_sk(sk);
218 u32 cur_win = tcp_receive_window(tp);
219 u32 new_win = __tcp_select_window(sk);
220
221 /* Never shrink the offered window */
222 if(new_win < cur_win) {
223 /* Danger Will Robinson!
224 * Don't update rcv_wup/rcv_wnd here or else
225 * we will not be able to advertise a zero
226 * window in time. --DaveM
227 *
228 * Relax Will Robinson.
229 */
230 new_win = cur_win;
231 }
232 tp->rcv_wnd = new_win;
233 tp->rcv_wup = tp->rcv_nxt;
234
235 /* Make sure we do not exceed the maximum possible
236 * scaled window.
237 */
238 if (!tp->rx_opt.rcv_wscale)
239 new_win = min(new_win, MAX_TCP_WINDOW);
240 else
241 new_win = min(new_win, (65535U << tp->rx_opt.rcv_wscale));
242
243 /* RFC1323 scaling applied */
244 new_win >>= tp->rx_opt.rcv_wscale;
245
246 /* If we advertise zero window, disable fast path. */
247 if (new_win == 0)
248 tp->pred_flags = 0;
249
250 return new_win;
251}
252
253
254/* This routine actually transmits TCP packets queued in by
255 * tcp_do_sendmsg(). This is used by both the initial
256 * transmission and possible later retransmissions.
257 * All SKB's seen here are completely headerless. It is our
258 * job to build the TCP header, and pass the packet down to
259 * IP so it can do the same plus pass the packet off to the
260 * device.
261 *
262 * We are working here with either a clone of the original
263 * SKB, or a fresh unique copy made by the retransmit engine.
264 */
265static int tcp_transmit_skb(struct sock *sk, struct sk_buff *skb)
266{
267 if (skb != NULL) {
268 struct inet_sock *inet = inet_sk(sk);
269 struct tcp_sock *tp = tcp_sk(sk);
270 struct tcp_skb_cb *tcb = TCP_SKB_CB(skb);
271 int tcp_header_size = tp->tcp_header_len;
272 struct tcphdr *th;
273 int sysctl_flags;
274 int err;
275
276 BUG_ON(!tcp_skb_pcount(skb));
277
278#define SYSCTL_FLAG_TSTAMPS 0x1
279#define SYSCTL_FLAG_WSCALE 0x2
280#define SYSCTL_FLAG_SACK 0x4
281
317a76f9
SH
282 /* If congestion control is doing timestamping */
283 if (tp->ca_ops->rtt_sample)
284 do_gettimeofday(&skb->stamp);
285
1da177e4
LT
286 sysctl_flags = 0;
287 if (tcb->flags & TCPCB_FLAG_SYN) {
288 tcp_header_size = sizeof(struct tcphdr) + TCPOLEN_MSS;
289 if(sysctl_tcp_timestamps) {
290 tcp_header_size += TCPOLEN_TSTAMP_ALIGNED;
291 sysctl_flags |= SYSCTL_FLAG_TSTAMPS;
292 }
293 if(sysctl_tcp_window_scaling) {
294 tcp_header_size += TCPOLEN_WSCALE_ALIGNED;
295 sysctl_flags |= SYSCTL_FLAG_WSCALE;
296 }
297 if(sysctl_tcp_sack) {
298 sysctl_flags |= SYSCTL_FLAG_SACK;
299 if(!(sysctl_flags & SYSCTL_FLAG_TSTAMPS))
300 tcp_header_size += TCPOLEN_SACKPERM_ALIGNED;
301 }
302 } else if (tp->rx_opt.eff_sacks) {
303 /* A SACK is 2 pad bytes, a 2 byte header, plus
304 * 2 32-bit sequence numbers for each SACK block.
305 */
306 tcp_header_size += (TCPOLEN_SACK_BASE_ALIGNED +
307 (tp->rx_opt.eff_sacks * TCPOLEN_SACK_PERBLOCK));
308 }
309
317a76f9
SH
310 if (tcp_packets_in_flight(tp) == 0)
311 tcp_ca_event(tp, CA_EVENT_TX_START);
1da177e4
LT
312
313 th = (struct tcphdr *) skb_push(skb, tcp_header_size);
314 skb->h.th = th;
315 skb_set_owner_w(skb, sk);
316
317 /* Build TCP header and checksum it. */
318 th->source = inet->sport;
319 th->dest = inet->dport;
320 th->seq = htonl(tcb->seq);
321 th->ack_seq = htonl(tp->rcv_nxt);
322 *(((__u16 *)th) + 6) = htons(((tcp_header_size >> 2) << 12) | tcb->flags);
323 if (tcb->flags & TCPCB_FLAG_SYN) {
324 /* RFC1323: The window in SYN & SYN/ACK segments
325 * is never scaled.
326 */
327 th->window = htons(tp->rcv_wnd);
328 } else {
329 th->window = htons(tcp_select_window(sk));
330 }
331 th->check = 0;
332 th->urg_ptr = 0;
333
334 if (tp->urg_mode &&
335 between(tp->snd_up, tcb->seq+1, tcb->seq+0xFFFF)) {
336 th->urg_ptr = htons(tp->snd_up-tcb->seq);
337 th->urg = 1;
338 }
339
340 if (tcb->flags & TCPCB_FLAG_SYN) {
341 tcp_syn_build_options((__u32 *)(th + 1),
342 tcp_advertise_mss(sk),
343 (sysctl_flags & SYSCTL_FLAG_TSTAMPS),
344 (sysctl_flags & SYSCTL_FLAG_SACK),
345 (sysctl_flags & SYSCTL_FLAG_WSCALE),
346 tp->rx_opt.rcv_wscale,
347 tcb->when,
348 tp->rx_opt.ts_recent);
349 } else {
350 tcp_build_and_update_options((__u32 *)(th + 1),
351 tp, tcb->when);
352
353 TCP_ECN_send(sk, tp, skb, tcp_header_size);
354 }
355 tp->af_specific->send_check(sk, th, skb->len, skb);
356
357 if (tcb->flags & TCPCB_FLAG_ACK)
fc6415bc 358 tcp_event_ack_sent(sk, tcp_skb_pcount(skb));
1da177e4
LT
359
360 if (skb->len != tcp_header_size)
361 tcp_event_data_sent(tp, skb, sk);
362
363 TCP_INC_STATS(TCP_MIB_OUTSEGS);
364
365 err = tp->af_specific->queue_xmit(skb, 0);
366 if (err <= 0)
367 return err;
368
369 tcp_enter_cwr(tp);
370
371 /* NET_XMIT_CN is special. It does not guarantee,
372 * that this packet is lost. It tells that device
373 * is about to start to drop packets or already
374 * drops some packets of the same priority and
375 * invokes us to send less aggressively.
376 */
377 return err == NET_XMIT_CN ? 0 : err;
378 }
379 return -ENOBUFS;
380#undef SYSCTL_FLAG_TSTAMPS
381#undef SYSCTL_FLAG_WSCALE
382#undef SYSCTL_FLAG_SACK
383}
384
385
386/* This routine just queue's the buffer
387 *
388 * NOTE: probe0 timer is not checked, do not forget tcp_push_pending_frames,
389 * otherwise socket can stall.
390 */
391static void tcp_queue_skb(struct sock *sk, struct sk_buff *skb)
392{
393 struct tcp_sock *tp = tcp_sk(sk);
394
395 /* Advance write_seq and place onto the write_queue. */
396 tp->write_seq = TCP_SKB_CB(skb)->end_seq;
397 skb_header_release(skb);
398 __skb_queue_tail(&sk->sk_write_queue, skb);
399 sk_charge_skb(sk, skb);
400
401 /* Queue it, remembering where we must start sending. */
402 if (sk->sk_send_head == NULL)
403 sk->sk_send_head = skb;
404}
405
846998ae 406static void tcp_set_skb_tso_segs(struct sock *sk, struct sk_buff *skb, unsigned int mss_now)
f6302d1d 407{
846998ae 408 if (skb->len <= mss_now ||
f6302d1d
DM
409 !(sk->sk_route_caps & NETIF_F_TSO)) {
410 /* Avoid the costly divide in the normal
411 * non-TSO case.
412 */
413 skb_shinfo(skb)->tso_segs = 1;
414 skb_shinfo(skb)->tso_size = 0;
415 } else {
416 unsigned int factor;
417
846998ae
DM
418 factor = skb->len + (mss_now - 1);
419 factor /= mss_now;
f6302d1d 420 skb_shinfo(skb)->tso_segs = factor;
846998ae 421 skb_shinfo(skb)->tso_size = mss_now;
1da177e4
LT
422 }
423}
424
1da177e4
LT
425/* Function to create two new TCP segments. Shrinks the given segment
426 * to the specified size and appends a new segment with the rest of the
427 * packet to the list. This won't be called frequently, I hope.
428 * Remember, these are still headerless SKBs at this point.
429 */
846998ae 430static int tcp_fragment(struct sock *sk, struct sk_buff *skb, u32 len, unsigned int mss_now)
1da177e4
LT
431{
432 struct tcp_sock *tp = tcp_sk(sk);
433 struct sk_buff *buff;
434 int nsize;
435 u16 flags;
436
437 nsize = skb_headlen(skb) - len;
438 if (nsize < 0)
439 nsize = 0;
440
441 if (skb_cloned(skb) &&
442 skb_is_nonlinear(skb) &&
443 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
444 return -ENOMEM;
445
446 /* Get a new skb... force flag on. */
447 buff = sk_stream_alloc_skb(sk, nsize, GFP_ATOMIC);
448 if (buff == NULL)
449 return -ENOMEM; /* We'll just try again later. */
450 sk_charge_skb(sk, buff);
451
452 /* Correct the sequence numbers. */
453 TCP_SKB_CB(buff)->seq = TCP_SKB_CB(skb)->seq + len;
454 TCP_SKB_CB(buff)->end_seq = TCP_SKB_CB(skb)->end_seq;
455 TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(buff)->seq;
456
457 /* PSH and FIN should only be set in the second packet. */
458 flags = TCP_SKB_CB(skb)->flags;
459 TCP_SKB_CB(skb)->flags = flags & ~(TCPCB_FLAG_FIN|TCPCB_FLAG_PSH);
460 TCP_SKB_CB(buff)->flags = flags;
461 TCP_SKB_CB(buff)->sacked =
462 (TCP_SKB_CB(skb)->sacked &
463 (TCPCB_LOST | TCPCB_EVER_RETRANS | TCPCB_AT_TAIL));
464 TCP_SKB_CB(skb)->sacked &= ~TCPCB_AT_TAIL;
465
466 if (!skb_shinfo(skb)->nr_frags && skb->ip_summed != CHECKSUM_HW) {
467 /* Copy and checksum data tail into the new buffer. */
468 buff->csum = csum_partial_copy_nocheck(skb->data + len, skb_put(buff, nsize),
469 nsize, 0);
470
471 skb_trim(skb, len);
472
473 skb->csum = csum_block_sub(skb->csum, buff->csum, len);
474 } else {
475 skb->ip_summed = CHECKSUM_HW;
476 skb_split(skb, buff, len);
477 }
478
479 buff->ip_summed = skb->ip_summed;
480
481 /* Looks stupid, but our code really uses when of
482 * skbs, which it never sent before. --ANK
483 */
484 TCP_SKB_CB(buff)->when = TCP_SKB_CB(skb)->when;
317a76f9 485 buff->stamp = skb->stamp;
1da177e4
LT
486
487 if (TCP_SKB_CB(skb)->sacked & TCPCB_LOST) {
488 tp->lost_out -= tcp_skb_pcount(skb);
489 tp->left_out -= tcp_skb_pcount(skb);
490 }
491
492 /* Fix up tso_factor for both original and new SKB. */
846998ae
DM
493 tcp_set_skb_tso_segs(sk, skb, mss_now);
494 tcp_set_skb_tso_segs(sk, buff, mss_now);
1da177e4
LT
495
496 if (TCP_SKB_CB(skb)->sacked & TCPCB_LOST) {
497 tp->lost_out += tcp_skb_pcount(skb);
498 tp->left_out += tcp_skb_pcount(skb);
499 }
500
501 if (TCP_SKB_CB(buff)->sacked&TCPCB_LOST) {
502 tp->lost_out += tcp_skb_pcount(buff);
503 tp->left_out += tcp_skb_pcount(buff);
504 }
505
506 /* Link BUFF into the send queue. */
f44b5271 507 skb_header_release(buff);
8728b834 508 __skb_append(skb, buff, &sk->sk_write_queue);
1da177e4
LT
509
510 return 0;
511}
512
513/* This is similar to __pskb_pull_head() (it will go to core/skbuff.c
514 * eventually). The difference is that pulled data not copied, but
515 * immediately discarded.
516 */
517static unsigned char *__pskb_trim_head(struct sk_buff *skb, int len)
518{
519 int i, k, eat;
520
521 eat = len;
522 k = 0;
523 for (i=0; i<skb_shinfo(skb)->nr_frags; i++) {
524 if (skb_shinfo(skb)->frags[i].size <= eat) {
525 put_page(skb_shinfo(skb)->frags[i].page);
526 eat -= skb_shinfo(skb)->frags[i].size;
527 } else {
528 skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
529 if (eat) {
530 skb_shinfo(skb)->frags[k].page_offset += eat;
531 skb_shinfo(skb)->frags[k].size -= eat;
532 eat = 0;
533 }
534 k++;
535 }
536 }
537 skb_shinfo(skb)->nr_frags = k;
538
539 skb->tail = skb->data;
540 skb->data_len -= len;
541 skb->len = skb->data_len;
542 return skb->tail;
543}
544
545int tcp_trim_head(struct sock *sk, struct sk_buff *skb, u32 len)
546{
547 if (skb_cloned(skb) &&
548 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
549 return -ENOMEM;
550
551 if (len <= skb_headlen(skb)) {
552 __skb_pull(skb, len);
553 } else {
554 if (__pskb_trim_head(skb, len-skb_headlen(skb)) == NULL)
555 return -ENOMEM;
556 }
557
558 TCP_SKB_CB(skb)->seq += len;
559 skb->ip_summed = CHECKSUM_HW;
560
561 skb->truesize -= len;
562 sk->sk_wmem_queued -= len;
563 sk->sk_forward_alloc += len;
564 sock_set_flag(sk, SOCK_QUEUE_SHRUNK);
565
566 /* Any change of skb->len requires recalculation of tso
567 * factor and mss.
568 */
569 if (tcp_skb_pcount(skb) > 1)
846998ae 570 tcp_set_skb_tso_segs(sk, skb, tcp_current_mss(sk, 1));
1da177e4
LT
571
572 return 0;
573}
574
575/* This function synchronize snd mss to current pmtu/exthdr set.
576
577 tp->rx_opt.user_mss is mss set by user by TCP_MAXSEG. It does NOT counts
578 for TCP options, but includes only bare TCP header.
579
580 tp->rx_opt.mss_clamp is mss negotiated at connection setup.
581 It is minumum of user_mss and mss received with SYN.
582 It also does not include TCP options.
583
584 tp->pmtu_cookie is last pmtu, seen by this function.
585
586 tp->mss_cache is current effective sending mss, including
587 all tcp options except for SACKs. It is evaluated,
588 taking into account current pmtu, but never exceeds
589 tp->rx_opt.mss_clamp.
590
591 NOTE1. rfc1122 clearly states that advertised MSS
592 DOES NOT include either tcp or ip options.
593
594 NOTE2. tp->pmtu_cookie and tp->mss_cache are READ ONLY outside
595 this function. --ANK (980731)
596 */
597
598unsigned int tcp_sync_mss(struct sock *sk, u32 pmtu)
599{
600 struct tcp_sock *tp = tcp_sk(sk);
601 int mss_now;
602
603 /* Calculate base mss without TCP options:
604 It is MMS_S - sizeof(tcphdr) of rfc1122
605 */
606 mss_now = pmtu - tp->af_specific->net_header_len - sizeof(struct tcphdr);
607
608 /* Clamp it (mss_clamp does not include tcp options) */
609 if (mss_now > tp->rx_opt.mss_clamp)
610 mss_now = tp->rx_opt.mss_clamp;
611
612 /* Now subtract optional transport overhead */
613 mss_now -= tp->ext_header_len;
614
615 /* Then reserve room for full set of TCP options and 8 bytes of data */
616 if (mss_now < 48)
617 mss_now = 48;
618
619 /* Now subtract TCP options size, not including SACKs */
620 mss_now -= tp->tcp_header_len - sizeof(struct tcphdr);
621
622 /* Bound mss with half of window */
623 if (tp->max_window && mss_now > (tp->max_window>>1))
624 mss_now = max((tp->max_window>>1), 68U - tp->tcp_header_len);
625
626 /* And store cached results */
627 tp->pmtu_cookie = pmtu;
c1b4a7e6 628 tp->mss_cache = mss_now;
1da177e4
LT
629
630 return mss_now;
631}
632
633/* Compute the current effective MSS, taking SACKs and IP options,
634 * and even PMTU discovery events into account.
635 *
636 * LARGESEND note: !urg_mode is overkill, only frames up to snd_up
637 * cannot be large. However, taking into account rare use of URG, this
638 * is not a big flaw.
639 */
c1b4a7e6 640unsigned int tcp_current_mss(struct sock *sk, int large_allowed)
1da177e4
LT
641{
642 struct tcp_sock *tp = tcp_sk(sk);
643 struct dst_entry *dst = __sk_dst_get(sk);
c1b4a7e6
DM
644 u32 mss_now;
645 u16 xmit_size_goal;
646 int doing_tso = 0;
647
648 mss_now = tp->mss_cache;
649
650 if (large_allowed &&
651 (sk->sk_route_caps & NETIF_F_TSO) &&
652 !tp->urg_mode)
653 doing_tso = 1;
1da177e4 654
1da177e4
LT
655 if (dst) {
656 u32 mtu = dst_mtu(dst);
657 if (mtu != tp->pmtu_cookie)
658 mss_now = tcp_sync_mss(sk, mtu);
659 }
660
c1b4a7e6
DM
661 if (tp->rx_opt.eff_sacks)
662 mss_now -= (TCPOLEN_SACK_BASE_ALIGNED +
663 (tp->rx_opt.eff_sacks * TCPOLEN_SACK_PERBLOCK));
1da177e4 664
c1b4a7e6 665 xmit_size_goal = mss_now;
1da177e4 666
c1b4a7e6
DM
667 if (doing_tso) {
668 xmit_size_goal = 65535 -
669 tp->af_specific->net_header_len -
1da177e4
LT
670 tp->ext_header_len - tp->tcp_header_len;
671
c1b4a7e6
DM
672 if (tp->max_window &&
673 (xmit_size_goal > (tp->max_window >> 1)))
674 xmit_size_goal = max((tp->max_window >> 1),
675 68U - tp->tcp_header_len);
1da177e4 676
c1b4a7e6 677 xmit_size_goal -= (xmit_size_goal % mss_now);
1da177e4 678 }
c1b4a7e6 679 tp->xmit_size_goal = xmit_size_goal;
1da177e4 680
1da177e4
LT
681 return mss_now;
682}
683
a762a980
DM
684/* Congestion window validation. (RFC2861) */
685
686static inline void tcp_cwnd_validate(struct sock *sk, struct tcp_sock *tp)
687{
688 __u32 packets_out = tp->packets_out;
689
690 if (packets_out >= tp->snd_cwnd) {
691 /* Network is feed fully. */
692 tp->snd_cwnd_used = 0;
693 tp->snd_cwnd_stamp = tcp_time_stamp;
694 } else {
695 /* Network starves. */
696 if (tp->packets_out > tp->snd_cwnd_used)
697 tp->snd_cwnd_used = tp->packets_out;
698
463c84b9 699 if ((s32)(tcp_time_stamp - tp->snd_cwnd_stamp) >= inet_csk(sk)->icsk_rto)
a762a980
DM
700 tcp_cwnd_application_limited(sk);
701 }
702}
703
c1b4a7e6
DM
704static unsigned int tcp_window_allows(struct tcp_sock *tp, struct sk_buff *skb, unsigned int mss_now, unsigned int cwnd)
705{
706 u32 window, cwnd_len;
707
708 window = (tp->snd_una + tp->snd_wnd - TCP_SKB_CB(skb)->seq);
709 cwnd_len = mss_now * cwnd;
710 return min(window, cwnd_len);
711}
712
713/* Can at least one segment of SKB be sent right now, according to the
714 * congestion window rules? If so, return how many segments are allowed.
715 */
716static inline unsigned int tcp_cwnd_test(struct tcp_sock *tp, struct sk_buff *skb)
717{
718 u32 in_flight, cwnd;
719
720 /* Don't be strict about the congestion window for the final FIN. */
721 if (TCP_SKB_CB(skb)->flags & TCPCB_FLAG_FIN)
722 return 1;
723
724 in_flight = tcp_packets_in_flight(tp);
725 cwnd = tp->snd_cwnd;
726 if (in_flight < cwnd)
727 return (cwnd - in_flight);
728
729 return 0;
730}
731
732/* This must be invoked the first time we consider transmitting
733 * SKB onto the wire.
734 */
846998ae 735static inline int tcp_init_tso_segs(struct sock *sk, struct sk_buff *skb, unsigned int mss_now)
c1b4a7e6
DM
736{
737 int tso_segs = tcp_skb_pcount(skb);
738
846998ae
DM
739 if (!tso_segs ||
740 (tso_segs > 1 &&
741 skb_shinfo(skb)->tso_size != mss_now)) {
742 tcp_set_skb_tso_segs(sk, skb, mss_now);
c1b4a7e6
DM
743 tso_segs = tcp_skb_pcount(skb);
744 }
745 return tso_segs;
746}
747
748static inline int tcp_minshall_check(const struct tcp_sock *tp)
749{
750 return after(tp->snd_sml,tp->snd_una) &&
751 !after(tp->snd_sml, tp->snd_nxt);
752}
753
754/* Return 0, if packet can be sent now without violation Nagle's rules:
755 * 1. It is full sized.
756 * 2. Or it contains FIN. (already checked by caller)
757 * 3. Or TCP_NODELAY was set.
758 * 4. Or TCP_CORK is not set, and all sent packets are ACKed.
759 * With Minshall's modification: all sent small packets are ACKed.
760 */
761
762static inline int tcp_nagle_check(const struct tcp_sock *tp,
763 const struct sk_buff *skb,
764 unsigned mss_now, int nonagle)
765{
766 return (skb->len < mss_now &&
767 ((nonagle&TCP_NAGLE_CORK) ||
768 (!nonagle &&
769 tp->packets_out &&
770 tcp_minshall_check(tp))));
771}
772
773/* Return non-zero if the Nagle test allows this packet to be
774 * sent now.
775 */
776static inline int tcp_nagle_test(struct tcp_sock *tp, struct sk_buff *skb,
777 unsigned int cur_mss, int nonagle)
778{
779 /* Nagle rule does not apply to frames, which sit in the middle of the
780 * write_queue (they have no chances to get new data).
781 *
782 * This is implemented in the callers, where they modify the 'nonagle'
783 * argument based upon the location of SKB in the send queue.
784 */
785 if (nonagle & TCP_NAGLE_PUSH)
786 return 1;
787
788 /* Don't use the nagle rule for urgent data (or for the final FIN). */
789 if (tp->urg_mode ||
790 (TCP_SKB_CB(skb)->flags & TCPCB_FLAG_FIN))
791 return 1;
792
793 if (!tcp_nagle_check(tp, skb, cur_mss, nonagle))
794 return 1;
795
796 return 0;
797}
798
799/* Does at least the first segment of SKB fit into the send window? */
800static inline int tcp_snd_wnd_test(struct tcp_sock *tp, struct sk_buff *skb, unsigned int cur_mss)
801{
802 u32 end_seq = TCP_SKB_CB(skb)->end_seq;
803
804 if (skb->len > cur_mss)
805 end_seq = TCP_SKB_CB(skb)->seq + cur_mss;
806
807 return !after(end_seq, tp->snd_una + tp->snd_wnd);
808}
809
810/* This checks if the data bearing packet SKB (usually sk->sk_send_head)
811 * should be put on the wire right now. If so, it returns the number of
812 * packets allowed by the congestion window.
813 */
814static unsigned int tcp_snd_test(struct sock *sk, struct sk_buff *skb,
815 unsigned int cur_mss, int nonagle)
816{
817 struct tcp_sock *tp = tcp_sk(sk);
818 unsigned int cwnd_quota;
819
846998ae 820 tcp_init_tso_segs(sk, skb, cur_mss);
c1b4a7e6
DM
821
822 if (!tcp_nagle_test(tp, skb, cur_mss, nonagle))
823 return 0;
824
825 cwnd_quota = tcp_cwnd_test(tp, skb);
826 if (cwnd_quota &&
827 !tcp_snd_wnd_test(tp, skb, cur_mss))
828 cwnd_quota = 0;
829
830 return cwnd_quota;
831}
832
833static inline int tcp_skb_is_last(const struct sock *sk,
834 const struct sk_buff *skb)
835{
836 return skb->next == (struct sk_buff *)&sk->sk_write_queue;
837}
838
839int tcp_may_send_now(struct sock *sk, struct tcp_sock *tp)
840{
841 struct sk_buff *skb = sk->sk_send_head;
842
843 return (skb &&
844 tcp_snd_test(sk, skb, tcp_current_mss(sk, 1),
845 (tcp_skb_is_last(sk, skb) ?
846 TCP_NAGLE_PUSH :
847 tp->nonagle)));
848}
849
850/* Trim TSO SKB to LEN bytes, put the remaining data into a new packet
851 * which is put after SKB on the list. It is very much like
852 * tcp_fragment() except that it may make several kinds of assumptions
853 * in order to speed up the splitting operation. In particular, we
854 * know that all the data is in scatter-gather pages, and that the
855 * packet has never been sent out before (and thus is not cloned).
856 */
846998ae 857static int tso_fragment(struct sock *sk, struct sk_buff *skb, unsigned int len, unsigned int mss_now)
c1b4a7e6
DM
858{
859 struct sk_buff *buff;
860 int nlen = skb->len - len;
861 u16 flags;
862
863 /* All of a TSO frame must be composed of paged data. */
c8ac3774
HX
864 if (skb->len != skb->data_len)
865 return tcp_fragment(sk, skb, len, mss_now);
c1b4a7e6
DM
866
867 buff = sk_stream_alloc_pskb(sk, 0, 0, GFP_ATOMIC);
868 if (unlikely(buff == NULL))
869 return -ENOMEM;
870
871 buff->truesize = nlen;
872 skb->truesize -= nlen;
873
874 /* Correct the sequence numbers. */
875 TCP_SKB_CB(buff)->seq = TCP_SKB_CB(skb)->seq + len;
876 TCP_SKB_CB(buff)->end_seq = TCP_SKB_CB(skb)->end_seq;
877 TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(buff)->seq;
878
879 /* PSH and FIN should only be set in the second packet. */
880 flags = TCP_SKB_CB(skb)->flags;
881 TCP_SKB_CB(skb)->flags = flags & ~(TCPCB_FLAG_FIN|TCPCB_FLAG_PSH);
882 TCP_SKB_CB(buff)->flags = flags;
883
884 /* This packet was never sent out yet, so no SACK bits. */
885 TCP_SKB_CB(buff)->sacked = 0;
886
887 buff->ip_summed = skb->ip_summed = CHECKSUM_HW;
888 skb_split(skb, buff, len);
889
890 /* Fix up tso_factor for both original and new SKB. */
846998ae
DM
891 tcp_set_skb_tso_segs(sk, skb, mss_now);
892 tcp_set_skb_tso_segs(sk, buff, mss_now);
c1b4a7e6
DM
893
894 /* Link BUFF into the send queue. */
895 skb_header_release(buff);
8728b834 896 __skb_append(skb, buff, &sk->sk_write_queue);
c1b4a7e6
DM
897
898 return 0;
899}
900
901/* Try to defer sending, if possible, in order to minimize the amount
902 * of TSO splitting we do. View it as a kind of TSO Nagle test.
903 *
904 * This algorithm is from John Heffner.
905 */
906static int tcp_tso_should_defer(struct sock *sk, struct tcp_sock *tp, struct sk_buff *skb)
907{
908 u32 send_win, cong_win, limit, in_flight;
909
910 if (TCP_SKB_CB(skb)->flags & TCPCB_FLAG_FIN)
911 return 0;
912
908a75c1
DM
913 if (tp->ca_state != TCP_CA_Open)
914 return 0;
915
c1b4a7e6
DM
916 in_flight = tcp_packets_in_flight(tp);
917
918 BUG_ON(tcp_skb_pcount(skb) <= 1 ||
919 (tp->snd_cwnd <= in_flight));
920
921 send_win = (tp->snd_una + tp->snd_wnd) - TCP_SKB_CB(skb)->seq;
922
923 /* From in_flight test above, we know that cwnd > in_flight. */
924 cong_win = (tp->snd_cwnd - in_flight) * tp->mss_cache;
925
926 limit = min(send_win, cong_win);
927
c1b4a7e6
DM
928 if (sysctl_tcp_tso_win_divisor) {
929 u32 chunk = min(tp->snd_wnd, tp->snd_cwnd * tp->mss_cache);
930
931 /* If at least some fraction of a window is available,
932 * just use it.
933 */
934 chunk /= sysctl_tcp_tso_win_divisor;
935 if (limit >= chunk)
936 return 0;
937 } else {
938 /* Different approach, try not to defer past a single
939 * ACK. Receiver should ACK every other full sized
940 * frame, so if we have space for more than 3 frames
941 * then send now.
942 */
943 if (limit > tcp_max_burst(tp) * tp->mss_cache)
944 return 0;
945 }
946
947 /* Ok, it looks like it is advisable to defer. */
948 return 1;
949}
950
1da177e4
LT
951/* This routine writes packets to the network. It advances the
952 * send_head. This happens as incoming acks open up the remote
953 * window for us.
954 *
955 * Returns 1, if no segments are in flight and we have queued segments, but
956 * cannot send anything now because of SWS or another problem.
957 */
a2e2a59c 958static int tcp_write_xmit(struct sock *sk, unsigned int mss_now, int nonagle)
1da177e4
LT
959{
960 struct tcp_sock *tp = tcp_sk(sk);
92df7b51 961 struct sk_buff *skb;
c1b4a7e6
DM
962 unsigned int tso_segs, sent_pkts;
963 int cwnd_quota;
1da177e4
LT
964
965 /* If we are closed, the bytes will have to remain here.
966 * In time closedown will finish, we empty the write queue and all
967 * will be happy.
968 */
92df7b51
DM
969 if (unlikely(sk->sk_state == TCP_CLOSE))
970 return 0;
1da177e4 971
92df7b51 972 sent_pkts = 0;
b68e9f85 973 while ((skb = sk->sk_send_head)) {
c8ac3774
HX
974 unsigned int limit;
975
b68e9f85 976 tso_segs = tcp_init_tso_segs(sk, skb, mss_now);
c1b4a7e6 977 BUG_ON(!tso_segs);
aa93466b 978
b68e9f85
HX
979 cwnd_quota = tcp_cwnd_test(tp, skb);
980 if (!cwnd_quota)
981 break;
982
983 if (unlikely(!tcp_snd_wnd_test(tp, skb, mss_now)))
984 break;
985
c1b4a7e6
DM
986 if (tso_segs == 1) {
987 if (unlikely(!tcp_nagle_test(tp, skb, mss_now,
988 (tcp_skb_is_last(sk, skb) ?
989 nonagle : TCP_NAGLE_PUSH))))
990 break;
991 } else {
992 if (tcp_tso_should_defer(sk, tp, skb))
993 break;
994 }
aa93466b 995
c8ac3774 996 limit = mss_now;
c1b4a7e6 997 if (tso_segs > 1) {
c8ac3774
HX
998 limit = tcp_window_allows(tp, skb,
999 mss_now, cwnd_quota);
c1b4a7e6
DM
1000
1001 if (skb->len < limit) {
1002 unsigned int trim = skb->len % mss_now;
aa93466b 1003
c1b4a7e6
DM
1004 if (trim)
1005 limit = skb->len - trim;
1006 }
92df7b51 1007 }
1da177e4 1008
c8ac3774
HX
1009 if (skb->len > limit &&
1010 unlikely(tso_fragment(sk, skb, limit, mss_now)))
1011 break;
1012
92df7b51 1013 TCP_SKB_CB(skb)->when = tcp_time_stamp;
c1b4a7e6 1014
aa93466b 1015 if (unlikely(tcp_transmit_skb(sk, skb_clone(skb, GFP_ATOMIC))))
92df7b51 1016 break;
1da177e4 1017
92df7b51
DM
1018 /* Advance the send_head. This one is sent out.
1019 * This call will increment packets_out.
1020 */
1021 update_send_head(sk, tp, skb);
1da177e4 1022
92df7b51 1023 tcp_minshall_update(tp, mss_now, skb);
aa93466b 1024 sent_pkts++;
92df7b51 1025 }
1da177e4 1026
aa93466b 1027 if (likely(sent_pkts)) {
92df7b51
DM
1028 tcp_cwnd_validate(sk, tp);
1029 return 0;
1da177e4 1030 }
92df7b51 1031 return !tp->packets_out && sk->sk_send_head;
1da177e4
LT
1032}
1033
a762a980
DM
1034/* Push out any pending frames which were held back due to
1035 * TCP_CORK or attempt at coalescing tiny packets.
1036 * The socket must be locked by the caller.
1037 */
1038void __tcp_push_pending_frames(struct sock *sk, struct tcp_sock *tp,
a2e2a59c 1039 unsigned int cur_mss, int nonagle)
a762a980
DM
1040{
1041 struct sk_buff *skb = sk->sk_send_head;
1042
1043 if (skb) {
55c97f3e 1044 if (tcp_write_xmit(sk, cur_mss, nonagle))
a762a980
DM
1045 tcp_check_probe_timer(sk, tp);
1046 }
1047}
1048
c1b4a7e6
DM
1049/* Send _single_ skb sitting at the send head. This function requires
1050 * true push pending frames to setup probe timer etc.
1051 */
1052void tcp_push_one(struct sock *sk, unsigned int mss_now)
1053{
1054 struct tcp_sock *tp = tcp_sk(sk);
1055 struct sk_buff *skb = sk->sk_send_head;
1056 unsigned int tso_segs, cwnd_quota;
1057
1058 BUG_ON(!skb || skb->len < mss_now);
1059
846998ae 1060 tso_segs = tcp_init_tso_segs(sk, skb, mss_now);
c1b4a7e6
DM
1061 cwnd_quota = tcp_snd_test(sk, skb, mss_now, TCP_NAGLE_PUSH);
1062
1063 if (likely(cwnd_quota)) {
c8ac3774
HX
1064 unsigned int limit;
1065
c1b4a7e6
DM
1066 BUG_ON(!tso_segs);
1067
c8ac3774 1068 limit = mss_now;
c1b4a7e6 1069 if (tso_segs > 1) {
c8ac3774
HX
1070 limit = tcp_window_allows(tp, skb,
1071 mss_now, cwnd_quota);
c1b4a7e6
DM
1072
1073 if (skb->len < limit) {
1074 unsigned int trim = skb->len % mss_now;
1075
1076 if (trim)
1077 limit = skb->len - trim;
1078 }
c1b4a7e6
DM
1079 }
1080
c8ac3774
HX
1081 if (skb->len > limit &&
1082 unlikely(tso_fragment(sk, skb, limit, mss_now)))
1083 return;
1084
c1b4a7e6
DM
1085 /* Send it out now. */
1086 TCP_SKB_CB(skb)->when = tcp_time_stamp;
1087
1088 if (likely(!tcp_transmit_skb(sk, skb_clone(skb, sk->sk_allocation)))) {
1089 update_send_head(sk, tp, skb);
1090 tcp_cwnd_validate(sk, tp);
1091 return;
1092 }
1093 }
1094}
1095
1da177e4
LT
1096/* This function returns the amount that we can raise the
1097 * usable window based on the following constraints
1098 *
1099 * 1. The window can never be shrunk once it is offered (RFC 793)
1100 * 2. We limit memory per socket
1101 *
1102 * RFC 1122:
1103 * "the suggested [SWS] avoidance algorithm for the receiver is to keep
1104 * RECV.NEXT + RCV.WIN fixed until:
1105 * RCV.BUFF - RCV.USER - RCV.WINDOW >= min(1/2 RCV.BUFF, MSS)"
1106 *
1107 * i.e. don't raise the right edge of the window until you can raise
1108 * it at least MSS bytes.
1109 *
1110 * Unfortunately, the recommended algorithm breaks header prediction,
1111 * since header prediction assumes th->window stays fixed.
1112 *
1113 * Strictly speaking, keeping th->window fixed violates the receiver
1114 * side SWS prevention criteria. The problem is that under this rule
1115 * a stream of single byte packets will cause the right side of the
1116 * window to always advance by a single byte.
1117 *
1118 * Of course, if the sender implements sender side SWS prevention
1119 * then this will not be a problem.
1120 *
1121 * BSD seems to make the following compromise:
1122 *
1123 * If the free space is less than the 1/4 of the maximum
1124 * space available and the free space is less than 1/2 mss,
1125 * then set the window to 0.
1126 * [ Actually, bsd uses MSS and 1/4 of maximal _window_ ]
1127 * Otherwise, just prevent the window from shrinking
1128 * and from being larger than the largest representable value.
1129 *
1130 * This prevents incremental opening of the window in the regime
1131 * where TCP is limited by the speed of the reader side taking
1132 * data out of the TCP receive queue. It does nothing about
1133 * those cases where the window is constrained on the sender side
1134 * because the pipeline is full.
1135 *
1136 * BSD also seems to "accidentally" limit itself to windows that are a
1137 * multiple of MSS, at least until the free space gets quite small.
1138 * This would appear to be a side effect of the mbuf implementation.
1139 * Combining these two algorithms results in the observed behavior
1140 * of having a fixed window size at almost all times.
1141 *
1142 * Below we obtain similar behavior by forcing the offered window to
1143 * a multiple of the mss when it is feasible to do so.
1144 *
1145 * Note, we don't "adjust" for TIMESTAMP or SACK option bytes.
1146 * Regular options like TIMESTAMP are taken into account.
1147 */
1148u32 __tcp_select_window(struct sock *sk)
1149{
463c84b9 1150 struct inet_connection_sock *icsk = inet_csk(sk);
1da177e4
LT
1151 struct tcp_sock *tp = tcp_sk(sk);
1152 /* MSS for the peer's data. Previous verions used mss_clamp
1153 * here. I don't know if the value based on our guesses
1154 * of peer's MSS is better for the performance. It's more correct
1155 * but may be worse for the performance because of rcv_mss
1156 * fluctuations. --SAW 1998/11/1
1157 */
463c84b9 1158 int mss = icsk->icsk_ack.rcv_mss;
1da177e4
LT
1159 int free_space = tcp_space(sk);
1160 int full_space = min_t(int, tp->window_clamp, tcp_full_space(sk));
1161 int window;
1162
1163 if (mss > full_space)
1164 mss = full_space;
1165
1166 if (free_space < full_space/2) {
463c84b9 1167 icsk->icsk_ack.quick = 0;
1da177e4
LT
1168
1169 if (tcp_memory_pressure)
1170 tp->rcv_ssthresh = min(tp->rcv_ssthresh, 4U*tp->advmss);
1171
1172 if (free_space < mss)
1173 return 0;
1174 }
1175
1176 if (free_space > tp->rcv_ssthresh)
1177 free_space = tp->rcv_ssthresh;
1178
1179 /* Don't do rounding if we are using window scaling, since the
1180 * scaled window will not line up with the MSS boundary anyway.
1181 */
1182 window = tp->rcv_wnd;
1183 if (tp->rx_opt.rcv_wscale) {
1184 window = free_space;
1185
1186 /* Advertise enough space so that it won't get scaled away.
1187 * Import case: prevent zero window announcement if
1188 * 1<<rcv_wscale > mss.
1189 */
1190 if (((window >> tp->rx_opt.rcv_wscale) << tp->rx_opt.rcv_wscale) != window)
1191 window = (((window >> tp->rx_opt.rcv_wscale) + 1)
1192 << tp->rx_opt.rcv_wscale);
1193 } else {
1194 /* Get the largest window that is a nice multiple of mss.
1195 * Window clamp already applied above.
1196 * If our current window offering is within 1 mss of the
1197 * free space we just keep it. This prevents the divide
1198 * and multiply from happening most of the time.
1199 * We also don't do any window rounding when the free space
1200 * is too small.
1201 */
1202 if (window <= free_space - mss || window > free_space)
1203 window = (free_space/mss)*mss;
1204 }
1205
1206 return window;
1207}
1208
1209/* Attempt to collapse two adjacent SKB's during retransmission. */
1210static void tcp_retrans_try_collapse(struct sock *sk, struct sk_buff *skb, int mss_now)
1211{
1212 struct tcp_sock *tp = tcp_sk(sk);
1213 struct sk_buff *next_skb = skb->next;
1214
1215 /* The first test we must make is that neither of these two
1216 * SKB's are still referenced by someone else.
1217 */
1218 if (!skb_cloned(skb) && !skb_cloned(next_skb)) {
1219 int skb_size = skb->len, next_skb_size = next_skb->len;
1220 u16 flags = TCP_SKB_CB(skb)->flags;
1221
1222 /* Also punt if next skb has been SACK'd. */
1223 if(TCP_SKB_CB(next_skb)->sacked & TCPCB_SACKED_ACKED)
1224 return;
1225
1226 /* Next skb is out of window. */
1227 if (after(TCP_SKB_CB(next_skb)->end_seq, tp->snd_una+tp->snd_wnd))
1228 return;
1229
1230 /* Punt if not enough space exists in the first SKB for
1231 * the data in the second, or the total combined payload
1232 * would exceed the MSS.
1233 */
1234 if ((next_skb_size > skb_tailroom(skb)) ||
1235 ((skb_size + next_skb_size) > mss_now))
1236 return;
1237
1238 BUG_ON(tcp_skb_pcount(skb) != 1 ||
1239 tcp_skb_pcount(next_skb) != 1);
1240
1241 /* Ok. We will be able to collapse the packet. */
8728b834 1242 __skb_unlink(next_skb, &sk->sk_write_queue);
1da177e4
LT
1243
1244 memcpy(skb_put(skb, next_skb_size), next_skb->data, next_skb_size);
1245
1246 if (next_skb->ip_summed == CHECKSUM_HW)
1247 skb->ip_summed = CHECKSUM_HW;
1248
1249 if (skb->ip_summed != CHECKSUM_HW)
1250 skb->csum = csum_block_add(skb->csum, next_skb->csum, skb_size);
1251
1252 /* Update sequence range on original skb. */
1253 TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(next_skb)->end_seq;
1254
1255 /* Merge over control information. */
1256 flags |= TCP_SKB_CB(next_skb)->flags; /* This moves PSH/FIN etc. over */
1257 TCP_SKB_CB(skb)->flags = flags;
1258
1259 /* All done, get rid of second SKB and account for it so
1260 * packet counting does not break.
1261 */
1262 TCP_SKB_CB(skb)->sacked |= TCP_SKB_CB(next_skb)->sacked&(TCPCB_EVER_RETRANS|TCPCB_AT_TAIL);
1263 if (TCP_SKB_CB(next_skb)->sacked&TCPCB_SACKED_RETRANS)
1264 tp->retrans_out -= tcp_skb_pcount(next_skb);
1265 if (TCP_SKB_CB(next_skb)->sacked&TCPCB_LOST) {
1266 tp->lost_out -= tcp_skb_pcount(next_skb);
1267 tp->left_out -= tcp_skb_pcount(next_skb);
1268 }
1269 /* Reno case is special. Sigh... */
1270 if (!tp->rx_opt.sack_ok && tp->sacked_out) {
1271 tcp_dec_pcount_approx(&tp->sacked_out, next_skb);
1272 tp->left_out -= tcp_skb_pcount(next_skb);
1273 }
1274
1275 /* Not quite right: it can be > snd.fack, but
1276 * it is better to underestimate fackets.
1277 */
1278 tcp_dec_pcount_approx(&tp->fackets_out, next_skb);
1279 tcp_packets_out_dec(tp, next_skb);
1280 sk_stream_free_skb(sk, next_skb);
1281 }
1282}
1283
1284/* Do a simple retransmit without using the backoff mechanisms in
1285 * tcp_timer. This is used for path mtu discovery.
1286 * The socket is already locked here.
1287 */
1288void tcp_simple_retransmit(struct sock *sk)
1289{
1290 struct tcp_sock *tp = tcp_sk(sk);
1291 struct sk_buff *skb;
1292 unsigned int mss = tcp_current_mss(sk, 0);
1293 int lost = 0;
1294
1295 sk_stream_for_retrans_queue(skb, sk) {
1296 if (skb->len > mss &&
1297 !(TCP_SKB_CB(skb)->sacked&TCPCB_SACKED_ACKED)) {
1298 if (TCP_SKB_CB(skb)->sacked&TCPCB_SACKED_RETRANS) {
1299 TCP_SKB_CB(skb)->sacked &= ~TCPCB_SACKED_RETRANS;
1300 tp->retrans_out -= tcp_skb_pcount(skb);
1301 }
1302 if (!(TCP_SKB_CB(skb)->sacked&TCPCB_LOST)) {
1303 TCP_SKB_CB(skb)->sacked |= TCPCB_LOST;
1304 tp->lost_out += tcp_skb_pcount(skb);
1305 lost = 1;
1306 }
1307 }
1308 }
1309
1310 if (!lost)
1311 return;
1312
1313 tcp_sync_left_out(tp);
1314
1315 /* Don't muck with the congestion window here.
1316 * Reason is that we do not increase amount of _data_
1317 * in network, but units changed and effective
1318 * cwnd/ssthresh really reduced now.
1319 */
1320 if (tp->ca_state != TCP_CA_Loss) {
1321 tp->high_seq = tp->snd_nxt;
1322 tp->snd_ssthresh = tcp_current_ssthresh(tp);
1323 tp->prior_ssthresh = 0;
1324 tp->undo_marker = 0;
1325 tcp_set_ca_state(tp, TCP_CA_Loss);
1326 }
1327 tcp_xmit_retransmit_queue(sk);
1328}
1329
1330/* This retransmits one SKB. Policy decisions and retransmit queue
1331 * state updates are done by the caller. Returns non-zero if an
1332 * error occurred which prevented the send.
1333 */
1334int tcp_retransmit_skb(struct sock *sk, struct sk_buff *skb)
1335{
1336 struct tcp_sock *tp = tcp_sk(sk);
1337 unsigned int cur_mss = tcp_current_mss(sk, 0);
1338 int err;
1339
1340 /* Do not sent more than we queued. 1/4 is reserved for possible
1341 * copying overhead: frgagmentation, tunneling, mangling etc.
1342 */
1343 if (atomic_read(&sk->sk_wmem_alloc) >
1344 min(sk->sk_wmem_queued + (sk->sk_wmem_queued >> 2), sk->sk_sndbuf))
1345 return -EAGAIN;
1346
1347 if (before(TCP_SKB_CB(skb)->seq, tp->snd_una)) {
1348 if (before(TCP_SKB_CB(skb)->end_seq, tp->snd_una))
1349 BUG();
1350
1351 if (sk->sk_route_caps & NETIF_F_TSO) {
1352 sk->sk_route_caps &= ~NETIF_F_TSO;
1353 sock_set_flag(sk, SOCK_NO_LARGESEND);
1da177e4
LT
1354 }
1355
1356 if (tcp_trim_head(sk, skb, tp->snd_una - TCP_SKB_CB(skb)->seq))
1357 return -ENOMEM;
1358 }
1359
1360 /* If receiver has shrunk his window, and skb is out of
1361 * new window, do not retransmit it. The exception is the
1362 * case, when window is shrunk to zero. In this case
1363 * our retransmit serves as a zero window probe.
1364 */
1365 if (!before(TCP_SKB_CB(skb)->seq, tp->snd_una+tp->snd_wnd)
1366 && TCP_SKB_CB(skb)->seq != tp->snd_una)
1367 return -EAGAIN;
1368
1369 if (skb->len > cur_mss) {
1370 int old_factor = tcp_skb_pcount(skb);
b5da623a 1371 int diff;
1da177e4 1372
846998ae 1373 if (tcp_fragment(sk, skb, cur_mss, cur_mss))
1da177e4
LT
1374 return -ENOMEM; /* We'll try again later. */
1375
1376 /* New SKB created, account for it. */
b5da623a
HX
1377 diff = old_factor - tcp_skb_pcount(skb) -
1378 tcp_skb_pcount(skb->next);
1379 tp->packets_out -= diff;
1380
1381 if (diff > 0) {
1382 tp->fackets_out -= diff;
1383 if ((int)tp->fackets_out < 0)
1384 tp->fackets_out = 0;
1385 }
1da177e4
LT
1386 }
1387
1388 /* Collapse two adjacent packets if worthwhile and we can. */
1389 if(!(TCP_SKB_CB(skb)->flags & TCPCB_FLAG_SYN) &&
1390 (skb->len < (cur_mss >> 1)) &&
1391 (skb->next != sk->sk_send_head) &&
1392 (skb->next != (struct sk_buff *)&sk->sk_write_queue) &&
1393 (skb_shinfo(skb)->nr_frags == 0 && skb_shinfo(skb->next)->nr_frags == 0) &&
1394 (tcp_skb_pcount(skb) == 1 && tcp_skb_pcount(skb->next) == 1) &&
1395 (sysctl_tcp_retrans_collapse != 0))
1396 tcp_retrans_try_collapse(sk, skb, cur_mss);
1397
1398 if(tp->af_specific->rebuild_header(sk))
1399 return -EHOSTUNREACH; /* Routing failure or similar. */
1400
1401 /* Some Solaris stacks overoptimize and ignore the FIN on a
1402 * retransmit when old data is attached. So strip it off
1403 * since it is cheap to do so and saves bytes on the network.
1404 */
1405 if(skb->len > 0 &&
1406 (TCP_SKB_CB(skb)->flags & TCPCB_FLAG_FIN) &&
1407 tp->snd_una == (TCP_SKB_CB(skb)->end_seq - 1)) {
1408 if (!pskb_trim(skb, 0)) {
1409 TCP_SKB_CB(skb)->seq = TCP_SKB_CB(skb)->end_seq - 1;
1410 skb_shinfo(skb)->tso_segs = 1;
1411 skb_shinfo(skb)->tso_size = 0;
1412 skb->ip_summed = CHECKSUM_NONE;
1413 skb->csum = 0;
1414 }
1415 }
1416
1417 /* Make a copy, if the first transmission SKB clone we made
1418 * is still in somebody's hands, else make a clone.
1419 */
1420 TCP_SKB_CB(skb)->when = tcp_time_stamp;
1da177e4
LT
1421
1422 err = tcp_transmit_skb(sk, (skb_cloned(skb) ?
1423 pskb_copy(skb, GFP_ATOMIC):
1424 skb_clone(skb, GFP_ATOMIC)));
1425
1426 if (err == 0) {
1427 /* Update global TCP statistics. */
1428 TCP_INC_STATS(TCP_MIB_RETRANSSEGS);
1429
1430 tp->total_retrans++;
1431
1432#if FASTRETRANS_DEBUG > 0
1433 if (TCP_SKB_CB(skb)->sacked&TCPCB_SACKED_RETRANS) {
1434 if (net_ratelimit())
1435 printk(KERN_DEBUG "retrans_out leaked.\n");
1436 }
1437#endif
1438 TCP_SKB_CB(skb)->sacked |= TCPCB_RETRANS;
1439 tp->retrans_out += tcp_skb_pcount(skb);
1440
1441 /* Save stamp of the first retransmit. */
1442 if (!tp->retrans_stamp)
1443 tp->retrans_stamp = TCP_SKB_CB(skb)->when;
1444
1445 tp->undo_retrans++;
1446
1447 /* snd_nxt is stored to detect loss of retransmitted segment,
1448 * see tcp_input.c tcp_sacktag_write_queue().
1449 */
1450 TCP_SKB_CB(skb)->ack_seq = tp->snd_nxt;
1451 }
1452 return err;
1453}
1454
1455/* This gets called after a retransmit timeout, and the initially
1456 * retransmitted data is acknowledged. It tries to continue
1457 * resending the rest of the retransmit queue, until either
1458 * we've sent it all or the congestion window limit is reached.
1459 * If doing SACK, the first ACK which comes back for a timeout
1460 * based retransmit packet might feed us FACK information again.
1461 * If so, we use it to avoid unnecessarily retransmissions.
1462 */
1463void tcp_xmit_retransmit_queue(struct sock *sk)
1464{
1465 struct tcp_sock *tp = tcp_sk(sk);
1466 struct sk_buff *skb;
1467 int packet_cnt = tp->lost_out;
1468
1469 /* First pass: retransmit lost packets. */
1470 if (packet_cnt) {
1471 sk_stream_for_retrans_queue(skb, sk) {
1472 __u8 sacked = TCP_SKB_CB(skb)->sacked;
1473
1474 /* Assume this retransmit will generate
1475 * only one packet for congestion window
1476 * calculation purposes. This works because
1477 * tcp_retransmit_skb() will chop up the
1478 * packet to be MSS sized and all the
1479 * packet counting works out.
1480 */
1481 if (tcp_packets_in_flight(tp) >= tp->snd_cwnd)
1482 return;
1483
1484 if (sacked&TCPCB_LOST) {
1485 if (!(sacked&(TCPCB_SACKED_ACKED|TCPCB_SACKED_RETRANS))) {
1486 if (tcp_retransmit_skb(sk, skb))
1487 return;
1488 if (tp->ca_state != TCP_CA_Loss)
1489 NET_INC_STATS_BH(LINUX_MIB_TCPFASTRETRANS);
1490 else
1491 NET_INC_STATS_BH(LINUX_MIB_TCPSLOWSTARTRETRANS);
1492
1493 if (skb ==
1494 skb_peek(&sk->sk_write_queue))
463c84b9
ACM
1495 inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS,
1496 inet_csk(sk)->icsk_rto);
1da177e4
LT
1497 }
1498
1499 packet_cnt -= tcp_skb_pcount(skb);
1500 if (packet_cnt <= 0)
1501 break;
1502 }
1503 }
1504 }
1505
1506 /* OK, demanded retransmission is finished. */
1507
1508 /* Forward retransmissions are possible only during Recovery. */
1509 if (tp->ca_state != TCP_CA_Recovery)
1510 return;
1511
1512 /* No forward retransmissions in Reno are possible. */
1513 if (!tp->rx_opt.sack_ok)
1514 return;
1515
1516 /* Yeah, we have to make difficult choice between forward transmission
1517 * and retransmission... Both ways have their merits...
1518 *
1519 * For now we do not retransmit anything, while we have some new
1520 * segments to send.
1521 */
1522
1523 if (tcp_may_send_now(sk, tp))
1524 return;
1525
1526 packet_cnt = 0;
1527
1528 sk_stream_for_retrans_queue(skb, sk) {
1529 /* Similar to the retransmit loop above we
1530 * can pretend that the retransmitted SKB
1531 * we send out here will be composed of one
1532 * real MSS sized packet because tcp_retransmit_skb()
1533 * will fragment it if necessary.
1534 */
1535 if (++packet_cnt > tp->fackets_out)
1536 break;
1537
1538 if (tcp_packets_in_flight(tp) >= tp->snd_cwnd)
1539 break;
1540
1541 if (TCP_SKB_CB(skb)->sacked & TCPCB_TAGBITS)
1542 continue;
1543
1544 /* Ok, retransmit it. */
1545 if (tcp_retransmit_skb(sk, skb))
1546 break;
1547
1548 if (skb == skb_peek(&sk->sk_write_queue))
463c84b9 1549 inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS, inet_csk(sk)->icsk_rto);
1da177e4
LT
1550
1551 NET_INC_STATS_BH(LINUX_MIB_TCPFORWARDRETRANS);
1552 }
1553}
1554
1555
1556/* Send a fin. The caller locks the socket for us. This cannot be
1557 * allowed to fail queueing a FIN frame under any circumstances.
1558 */
1559void tcp_send_fin(struct sock *sk)
1560{
1561 struct tcp_sock *tp = tcp_sk(sk);
1562 struct sk_buff *skb = skb_peek_tail(&sk->sk_write_queue);
1563 int mss_now;
1564
1565 /* Optimization, tack on the FIN if we have a queue of
1566 * unsent frames. But be careful about outgoing SACKS
1567 * and IP options.
1568 */
1569 mss_now = tcp_current_mss(sk, 1);
1570
1571 if (sk->sk_send_head != NULL) {
1572 TCP_SKB_CB(skb)->flags |= TCPCB_FLAG_FIN;
1573 TCP_SKB_CB(skb)->end_seq++;
1574 tp->write_seq++;
1575 } else {
1576 /* Socket is locked, keep trying until memory is available. */
1577 for (;;) {
1578 skb = alloc_skb(MAX_TCP_HEADER, GFP_KERNEL);
1579 if (skb)
1580 break;
1581 yield();
1582 }
1583
1584 /* Reserve space for headers and prepare control bits. */
1585 skb_reserve(skb, MAX_TCP_HEADER);
1586 skb->csum = 0;
1587 TCP_SKB_CB(skb)->flags = (TCPCB_FLAG_ACK | TCPCB_FLAG_FIN);
1588 TCP_SKB_CB(skb)->sacked = 0;
1589 skb_shinfo(skb)->tso_segs = 1;
1590 skb_shinfo(skb)->tso_size = 0;
1591
1592 /* FIN eats a sequence byte, write_seq advanced by tcp_queue_skb(). */
1593 TCP_SKB_CB(skb)->seq = tp->write_seq;
1594 TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(skb)->seq + 1;
1595 tcp_queue_skb(sk, skb);
1596 }
1597 __tcp_push_pending_frames(sk, tp, mss_now, TCP_NAGLE_OFF);
1598}
1599
1600/* We get here when a process closes a file descriptor (either due to
1601 * an explicit close() or as a byproduct of exit()'ing) and there
1602 * was unread data in the receive queue. This behavior is recommended
1603 * by draft-ietf-tcpimpl-prob-03.txt section 3.10. -DaveM
1604 */
86a76caf 1605void tcp_send_active_reset(struct sock *sk, unsigned int __nocast priority)
1da177e4
LT
1606{
1607 struct tcp_sock *tp = tcp_sk(sk);
1608 struct sk_buff *skb;
1609
1610 /* NOTE: No TCP options attached and we never retransmit this. */
1611 skb = alloc_skb(MAX_TCP_HEADER, priority);
1612 if (!skb) {
1613 NET_INC_STATS(LINUX_MIB_TCPABORTFAILED);
1614 return;
1615 }
1616
1617 /* Reserve space for headers and prepare control bits. */
1618 skb_reserve(skb, MAX_TCP_HEADER);
1619 skb->csum = 0;
1620 TCP_SKB_CB(skb)->flags = (TCPCB_FLAG_ACK | TCPCB_FLAG_RST);
1621 TCP_SKB_CB(skb)->sacked = 0;
1622 skb_shinfo(skb)->tso_segs = 1;
1623 skb_shinfo(skb)->tso_size = 0;
1624
1625 /* Send it off. */
1626 TCP_SKB_CB(skb)->seq = tcp_acceptable_seq(sk, tp);
1627 TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(skb)->seq;
1628 TCP_SKB_CB(skb)->when = tcp_time_stamp;
1629 if (tcp_transmit_skb(sk, skb))
1630 NET_INC_STATS(LINUX_MIB_TCPABORTFAILED);
1631}
1632
1633/* WARNING: This routine must only be called when we have already sent
1634 * a SYN packet that crossed the incoming SYN that caused this routine
1635 * to get called. If this assumption fails then the initial rcv_wnd
1636 * and rcv_wscale values will not be correct.
1637 */
1638int tcp_send_synack(struct sock *sk)
1639{
1640 struct sk_buff* skb;
1641
1642 skb = skb_peek(&sk->sk_write_queue);
1643 if (skb == NULL || !(TCP_SKB_CB(skb)->flags&TCPCB_FLAG_SYN)) {
1644 printk(KERN_DEBUG "tcp_send_synack: wrong queue state\n");
1645 return -EFAULT;
1646 }
1647 if (!(TCP_SKB_CB(skb)->flags&TCPCB_FLAG_ACK)) {
1648 if (skb_cloned(skb)) {
1649 struct sk_buff *nskb = skb_copy(skb, GFP_ATOMIC);
1650 if (nskb == NULL)
1651 return -ENOMEM;
1652 __skb_unlink(skb, &sk->sk_write_queue);
1653 skb_header_release(nskb);
1654 __skb_queue_head(&sk->sk_write_queue, nskb);
1655 sk_stream_free_skb(sk, skb);
1656 sk_charge_skb(sk, nskb);
1657 skb = nskb;
1658 }
1659
1660 TCP_SKB_CB(skb)->flags |= TCPCB_FLAG_ACK;
1661 TCP_ECN_send_synack(tcp_sk(sk), skb);
1662 }
1663 TCP_SKB_CB(skb)->when = tcp_time_stamp;
1664 return tcp_transmit_skb(sk, skb_clone(skb, GFP_ATOMIC));
1665}
1666
1667/*
1668 * Prepare a SYN-ACK.
1669 */
1670struct sk_buff * tcp_make_synack(struct sock *sk, struct dst_entry *dst,
60236fdd 1671 struct request_sock *req)
1da177e4 1672{
2e6599cb 1673 struct inet_request_sock *ireq = inet_rsk(req);
1da177e4
LT
1674 struct tcp_sock *tp = tcp_sk(sk);
1675 struct tcphdr *th;
1676 int tcp_header_size;
1677 struct sk_buff *skb;
1678
1679 skb = sock_wmalloc(sk, MAX_TCP_HEADER + 15, 1, GFP_ATOMIC);
1680 if (skb == NULL)
1681 return NULL;
1682
1683 /* Reserve space for headers. */
1684 skb_reserve(skb, MAX_TCP_HEADER);
1685
1686 skb->dst = dst_clone(dst);
1687
1688 tcp_header_size = (sizeof(struct tcphdr) + TCPOLEN_MSS +
2e6599cb
ACM
1689 (ireq->tstamp_ok ? TCPOLEN_TSTAMP_ALIGNED : 0) +
1690 (ireq->wscale_ok ? TCPOLEN_WSCALE_ALIGNED : 0) +
1da177e4 1691 /* SACK_PERM is in the place of NOP NOP of TS */
2e6599cb 1692 ((ireq->sack_ok && !ireq->tstamp_ok) ? TCPOLEN_SACKPERM_ALIGNED : 0));
1da177e4
LT
1693 skb->h.th = th = (struct tcphdr *) skb_push(skb, tcp_header_size);
1694
1695 memset(th, 0, sizeof(struct tcphdr));
1696 th->syn = 1;
1697 th->ack = 1;
1698 if (dst->dev->features&NETIF_F_TSO)
2e6599cb 1699 ireq->ecn_ok = 0;
1da177e4
LT
1700 TCP_ECN_make_synack(req, th);
1701 th->source = inet_sk(sk)->sport;
2e6599cb
ACM
1702 th->dest = ireq->rmt_port;
1703 TCP_SKB_CB(skb)->seq = tcp_rsk(req)->snt_isn;
1da177e4
LT
1704 TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(skb)->seq + 1;
1705 TCP_SKB_CB(skb)->sacked = 0;
1706 skb_shinfo(skb)->tso_segs = 1;
1707 skb_shinfo(skb)->tso_size = 0;
1708 th->seq = htonl(TCP_SKB_CB(skb)->seq);
2e6599cb 1709 th->ack_seq = htonl(tcp_rsk(req)->rcv_isn + 1);
1da177e4
LT
1710 if (req->rcv_wnd == 0) { /* ignored for retransmitted syns */
1711 __u8 rcv_wscale;
1712 /* Set this up on the first call only */
1713 req->window_clamp = tp->window_clamp ? : dst_metric(dst, RTAX_WINDOW);
1714 /* tcp_full_space because it is guaranteed to be the first packet */
1715 tcp_select_initial_window(tcp_full_space(sk),
2e6599cb 1716 dst_metric(dst, RTAX_ADVMSS) - (ireq->tstamp_ok ? TCPOLEN_TSTAMP_ALIGNED : 0),
1da177e4
LT
1717 &req->rcv_wnd,
1718 &req->window_clamp,
2e6599cb 1719 ireq->wscale_ok,
1da177e4 1720 &rcv_wscale);
2e6599cb 1721 ireq->rcv_wscale = rcv_wscale;
1da177e4
LT
1722 }
1723
1724 /* RFC1323: The window in SYN & SYN/ACK segments is never scaled. */
1725 th->window = htons(req->rcv_wnd);
1726
1727 TCP_SKB_CB(skb)->when = tcp_time_stamp;
2e6599cb
ACM
1728 tcp_syn_build_options((__u32 *)(th + 1), dst_metric(dst, RTAX_ADVMSS), ireq->tstamp_ok,
1729 ireq->sack_ok, ireq->wscale_ok, ireq->rcv_wscale,
1da177e4
LT
1730 TCP_SKB_CB(skb)->when,
1731 req->ts_recent);
1732
1733 skb->csum = 0;
1734 th->doff = (tcp_header_size >> 2);
1735 TCP_INC_STATS(TCP_MIB_OUTSEGS);
1736 return skb;
1737}
1738
1739/*
1740 * Do all connect socket setups that can be done AF independent.
1741 */
1742static inline void tcp_connect_init(struct sock *sk)
1743{
1744 struct dst_entry *dst = __sk_dst_get(sk);
1745 struct tcp_sock *tp = tcp_sk(sk);
1746 __u8 rcv_wscale;
1747
1748 /* We'll fix this up when we get a response from the other end.
1749 * See tcp_input.c:tcp_rcv_state_process case TCP_SYN_SENT.
1750 */
1751 tp->tcp_header_len = sizeof(struct tcphdr) +
1752 (sysctl_tcp_timestamps ? TCPOLEN_TSTAMP_ALIGNED : 0);
1753
1754 /* If user gave his TCP_MAXSEG, record it to clamp */
1755 if (tp->rx_opt.user_mss)
1756 tp->rx_opt.mss_clamp = tp->rx_opt.user_mss;
1757 tp->max_window = 0;
1758 tcp_sync_mss(sk, dst_mtu(dst));
1759
1760 if (!tp->window_clamp)
1761 tp->window_clamp = dst_metric(dst, RTAX_WINDOW);
1762 tp->advmss = dst_metric(dst, RTAX_ADVMSS);
1763 tcp_initialize_rcv_mss(sk);
1da177e4
LT
1764
1765 tcp_select_initial_window(tcp_full_space(sk),
1766 tp->advmss - (tp->rx_opt.ts_recent_stamp ? tp->tcp_header_len - sizeof(struct tcphdr) : 0),
1767 &tp->rcv_wnd,
1768 &tp->window_clamp,
1769 sysctl_tcp_window_scaling,
1770 &rcv_wscale);
1771
1772 tp->rx_opt.rcv_wscale = rcv_wscale;
1773 tp->rcv_ssthresh = tp->rcv_wnd;
1774
1775 sk->sk_err = 0;
1776 sock_reset_flag(sk, SOCK_DONE);
1777 tp->snd_wnd = 0;
1778 tcp_init_wl(tp, tp->write_seq, 0);
1779 tp->snd_una = tp->write_seq;
1780 tp->snd_sml = tp->write_seq;
1781 tp->rcv_nxt = 0;
1782 tp->rcv_wup = 0;
1783 tp->copied_seq = 0;
1784
463c84b9
ACM
1785 inet_csk(sk)->icsk_rto = TCP_TIMEOUT_INIT;
1786 inet_csk(sk)->icsk_retransmits = 0;
1da177e4
LT
1787 tcp_clear_retrans(tp);
1788}
1789
1790/*
1791 * Build a SYN and send it off.
1792 */
1793int tcp_connect(struct sock *sk)
1794{
1795 struct tcp_sock *tp = tcp_sk(sk);
1796 struct sk_buff *buff;
1797
1798 tcp_connect_init(sk);
1799
1800 buff = alloc_skb(MAX_TCP_HEADER + 15, sk->sk_allocation);
1801 if (unlikely(buff == NULL))
1802 return -ENOBUFS;
1803
1804 /* Reserve space for headers. */
1805 skb_reserve(buff, MAX_TCP_HEADER);
1806
1807 TCP_SKB_CB(buff)->flags = TCPCB_FLAG_SYN;
1808 TCP_ECN_send_syn(sk, tp, buff);
1809 TCP_SKB_CB(buff)->sacked = 0;
1810 skb_shinfo(buff)->tso_segs = 1;
1811 skb_shinfo(buff)->tso_size = 0;
1812 buff->csum = 0;
1813 TCP_SKB_CB(buff)->seq = tp->write_seq++;
1814 TCP_SKB_CB(buff)->end_seq = tp->write_seq;
1815 tp->snd_nxt = tp->write_seq;
1816 tp->pushed_seq = tp->write_seq;
1da177e4
LT
1817
1818 /* Send it off. */
1819 TCP_SKB_CB(buff)->when = tcp_time_stamp;
1820 tp->retrans_stamp = TCP_SKB_CB(buff)->when;
1821 skb_header_release(buff);
1822 __skb_queue_tail(&sk->sk_write_queue, buff);
1823 sk_charge_skb(sk, buff);
1824 tp->packets_out += tcp_skb_pcount(buff);
1825 tcp_transmit_skb(sk, skb_clone(buff, GFP_KERNEL));
1826 TCP_INC_STATS(TCP_MIB_ACTIVEOPENS);
1827
1828 /* Timer for repeating the SYN until an answer. */
463c84b9 1829 inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS, inet_csk(sk)->icsk_rto);
1da177e4
LT
1830 return 0;
1831}
1832
1833/* Send out a delayed ack, the caller does the policy checking
1834 * to see if we should even be here. See tcp_input.c:tcp_ack_snd_check()
1835 * for details.
1836 */
1837void tcp_send_delayed_ack(struct sock *sk)
1838{
463c84b9
ACM
1839 struct inet_connection_sock *icsk = inet_csk(sk);
1840 int ato = icsk->icsk_ack.ato;
1da177e4
LT
1841 unsigned long timeout;
1842
1843 if (ato > TCP_DELACK_MIN) {
463c84b9 1844 const struct tcp_sock *tp = tcp_sk(sk);
1da177e4
LT
1845 int max_ato = HZ/2;
1846
463c84b9 1847 if (icsk->icsk_ack.pingpong || (icsk->icsk_ack.pending & ICSK_ACK_PUSHED))
1da177e4
LT
1848 max_ato = TCP_DELACK_MAX;
1849
1850 /* Slow path, intersegment interval is "high". */
1851
1852 /* If some rtt estimate is known, use it to bound delayed ack.
463c84b9 1853 * Do not use inet_csk(sk)->icsk_rto here, use results of rtt measurements
1da177e4
LT
1854 * directly.
1855 */
1856 if (tp->srtt) {
1857 int rtt = max(tp->srtt>>3, TCP_DELACK_MIN);
1858
1859 if (rtt < max_ato)
1860 max_ato = rtt;
1861 }
1862
1863 ato = min(ato, max_ato);
1864 }
1865
1866 /* Stay within the limit we were given */
1867 timeout = jiffies + ato;
1868
1869 /* Use new timeout only if there wasn't a older one earlier. */
463c84b9 1870 if (icsk->icsk_ack.pending & ICSK_ACK_TIMER) {
1da177e4
LT
1871 /* If delack timer was blocked or is about to expire,
1872 * send ACK now.
1873 */
463c84b9
ACM
1874 if (icsk->icsk_ack.blocked ||
1875 time_before_eq(icsk->icsk_ack.timeout, jiffies + (ato >> 2))) {
1da177e4
LT
1876 tcp_send_ack(sk);
1877 return;
1878 }
1879
463c84b9
ACM
1880 if (!time_before(timeout, icsk->icsk_ack.timeout))
1881 timeout = icsk->icsk_ack.timeout;
1da177e4 1882 }
463c84b9
ACM
1883 icsk->icsk_ack.pending |= ICSK_ACK_SCHED | ICSK_ACK_TIMER;
1884 icsk->icsk_ack.timeout = timeout;
1885 sk_reset_timer(sk, &icsk->icsk_delack_timer, timeout);
1da177e4
LT
1886}
1887
1888/* This routine sends an ack and also updates the window. */
1889void tcp_send_ack(struct sock *sk)
1890{
1891 /* If we have been reset, we may not send again. */
1892 if (sk->sk_state != TCP_CLOSE) {
1893 struct tcp_sock *tp = tcp_sk(sk);
1894 struct sk_buff *buff;
1895
1896 /* We are not putting this on the write queue, so
1897 * tcp_transmit_skb() will set the ownership to this
1898 * sock.
1899 */
1900 buff = alloc_skb(MAX_TCP_HEADER, GFP_ATOMIC);
1901 if (buff == NULL) {
463c84b9
ACM
1902 inet_csk_schedule_ack(sk);
1903 inet_csk(sk)->icsk_ack.ato = TCP_ATO_MIN;
1904 inet_csk_reset_xmit_timer(sk, ICSK_TIME_DACK, TCP_DELACK_MAX);
1da177e4
LT
1905 return;
1906 }
1907
1908 /* Reserve space for headers and prepare control bits. */
1909 skb_reserve(buff, MAX_TCP_HEADER);
1910 buff->csum = 0;
1911 TCP_SKB_CB(buff)->flags = TCPCB_FLAG_ACK;
1912 TCP_SKB_CB(buff)->sacked = 0;
1913 skb_shinfo(buff)->tso_segs = 1;
1914 skb_shinfo(buff)->tso_size = 0;
1915
1916 /* Send it off, this clears delayed acks for us. */
1917 TCP_SKB_CB(buff)->seq = TCP_SKB_CB(buff)->end_seq = tcp_acceptable_seq(sk, tp);
1918 TCP_SKB_CB(buff)->when = tcp_time_stamp;
1919 tcp_transmit_skb(sk, buff);
1920 }
1921}
1922
1923/* This routine sends a packet with an out of date sequence
1924 * number. It assumes the other end will try to ack it.
1925 *
1926 * Question: what should we make while urgent mode?
1927 * 4.4BSD forces sending single byte of data. We cannot send
1928 * out of window data, because we have SND.NXT==SND.MAX...
1929 *
1930 * Current solution: to send TWO zero-length segments in urgent mode:
1931 * one is with SEG.SEQ=SND.UNA to deliver urgent pointer, another is
1932 * out-of-date with SND.UNA-1 to probe window.
1933 */
1934static int tcp_xmit_probe_skb(struct sock *sk, int urgent)
1935{
1936 struct tcp_sock *tp = tcp_sk(sk);
1937 struct sk_buff *skb;
1938
1939 /* We don't queue it, tcp_transmit_skb() sets ownership. */
1940 skb = alloc_skb(MAX_TCP_HEADER, GFP_ATOMIC);
1941 if (skb == NULL)
1942 return -1;
1943
1944 /* Reserve space for headers and set control bits. */
1945 skb_reserve(skb, MAX_TCP_HEADER);
1946 skb->csum = 0;
1947 TCP_SKB_CB(skb)->flags = TCPCB_FLAG_ACK;
1948 TCP_SKB_CB(skb)->sacked = urgent;
1949 skb_shinfo(skb)->tso_segs = 1;
1950 skb_shinfo(skb)->tso_size = 0;
1951
1952 /* Use a previous sequence. This should cause the other
1953 * end to send an ack. Don't queue or clone SKB, just
1954 * send it.
1955 */
1956 TCP_SKB_CB(skb)->seq = urgent ? tp->snd_una : tp->snd_una - 1;
1957 TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(skb)->seq;
1958 TCP_SKB_CB(skb)->when = tcp_time_stamp;
1959 return tcp_transmit_skb(sk, skb);
1960}
1961
1962int tcp_write_wakeup(struct sock *sk)
1963{
1964 if (sk->sk_state != TCP_CLOSE) {
1965 struct tcp_sock *tp = tcp_sk(sk);
1966 struct sk_buff *skb;
1967
1968 if ((skb = sk->sk_send_head) != NULL &&
1969 before(TCP_SKB_CB(skb)->seq, tp->snd_una+tp->snd_wnd)) {
1970 int err;
1971 unsigned int mss = tcp_current_mss(sk, 0);
1972 unsigned int seg_size = tp->snd_una+tp->snd_wnd-TCP_SKB_CB(skb)->seq;
1973
1974 if (before(tp->pushed_seq, TCP_SKB_CB(skb)->end_seq))
1975 tp->pushed_seq = TCP_SKB_CB(skb)->end_seq;
1976
1977 /* We are probing the opening of a window
1978 * but the window size is != 0
1979 * must have been a result SWS avoidance ( sender )
1980 */
1981 if (seg_size < TCP_SKB_CB(skb)->end_seq - TCP_SKB_CB(skb)->seq ||
1982 skb->len > mss) {
1983 seg_size = min(seg_size, mss);
1984 TCP_SKB_CB(skb)->flags |= TCPCB_FLAG_PSH;
846998ae 1985 if (tcp_fragment(sk, skb, seg_size, mss))
1da177e4
LT
1986 return -1;
1987 /* SWS override triggered forced fragmentation.
1988 * Disable TSO, the connection is too sick. */
1989 if (sk->sk_route_caps & NETIF_F_TSO) {
1990 sock_set_flag(sk, SOCK_NO_LARGESEND);
1991 sk->sk_route_caps &= ~NETIF_F_TSO;
1da177e4
LT
1992 }
1993 } else if (!tcp_skb_pcount(skb))
846998ae 1994 tcp_set_skb_tso_segs(sk, skb, mss);
1da177e4
LT
1995
1996 TCP_SKB_CB(skb)->flags |= TCPCB_FLAG_PSH;
1997 TCP_SKB_CB(skb)->when = tcp_time_stamp;
1da177e4
LT
1998 err = tcp_transmit_skb(sk, skb_clone(skb, GFP_ATOMIC));
1999 if (!err) {
2000 update_send_head(sk, tp, skb);
2001 }
2002 return err;
2003 } else {
2004 if (tp->urg_mode &&
2005 between(tp->snd_up, tp->snd_una+1, tp->snd_una+0xFFFF))
2006 tcp_xmit_probe_skb(sk, TCPCB_URG);
2007 return tcp_xmit_probe_skb(sk, 0);
2008 }
2009 }
2010 return -1;
2011}
2012
2013/* A window probe timeout has occurred. If window is not closed send
2014 * a partial packet else a zero probe.
2015 */
2016void tcp_send_probe0(struct sock *sk)
2017{
463c84b9 2018 struct inet_connection_sock *icsk = inet_csk(sk);
1da177e4
LT
2019 struct tcp_sock *tp = tcp_sk(sk);
2020 int err;
2021
2022 err = tcp_write_wakeup(sk);
2023
2024 if (tp->packets_out || !sk->sk_send_head) {
2025 /* Cancel probe timer, if it is not required. */
2026 tp->probes_out = 0;
463c84b9 2027 icsk->icsk_backoff = 0;
1da177e4
LT
2028 return;
2029 }
2030
2031 if (err <= 0) {
463c84b9
ACM
2032 if (icsk->icsk_backoff < sysctl_tcp_retries2)
2033 icsk->icsk_backoff++;
1da177e4 2034 tp->probes_out++;
463c84b9
ACM
2035 inet_csk_reset_xmit_timer(sk, ICSK_TIME_PROBE0,
2036 min(icsk->icsk_rto << icsk->icsk_backoff, TCP_RTO_MAX));
1da177e4
LT
2037 } else {
2038 /* If packet was not sent due to local congestion,
2039 * do not backoff and do not remember probes_out.
2040 * Let local senders to fight for local resources.
2041 *
2042 * Use accumulated backoff yet.
2043 */
2044 if (!tp->probes_out)
2045 tp->probes_out=1;
463c84b9
ACM
2046 inet_csk_reset_xmit_timer(sk, ICSK_TIME_PROBE0,
2047 min(icsk->icsk_rto << icsk->icsk_backoff,
2048 TCP_RESOURCE_PROBE_INTERVAL));
1da177e4
LT
2049 }
2050}
2051
2052EXPORT_SYMBOL(tcp_connect);
2053EXPORT_SYMBOL(tcp_make_synack);
2054EXPORT_SYMBOL(tcp_simple_retransmit);
2055EXPORT_SYMBOL(tcp_sync_mss);