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