blob: e292e11c7319f8d6b214c51737078651d774f599 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 *
Jesper Juhl02c30a82005-05-05 16:16:16 -070010 * Authors: Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * 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 */
52int sysctl_tcp_tso_win_divisor = 8;
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. */
108static void tcp_cwnd_restart(struct tcp_sock *tp, struct dst_entry *dst)
109{
110 s32 delta = tcp_time_stamp - tp->lsndtime;
111 u32 restart_cwnd = tcp_init_cwnd(tp, dst);
112 u32 cwnd = tp->snd_cwnd;
113
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700114 tcp_ca_event(tp, CA_EVENT_CWND_RESTART);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116 tp->snd_ssthresh = tcp_current_ssthresh(tp);
117 restart_cwnd = min(restart_cwnd, cwnd);
118
119 while ((delta -= tp->rto) > 0 && cwnd > restart_cwnd)
120 cwnd >>= 1;
121 tp->snd_cwnd = max(cwnd, restart_cwnd);
122 tp->snd_cwnd_stamp = tcp_time_stamp;
123 tp->snd_cwnd_used = 0;
124}
125
126static inline void tcp_event_data_sent(struct tcp_sock *tp,
127 struct sk_buff *skb, struct sock *sk)
128{
129 u32 now = tcp_time_stamp;
130
131 if (!tp->packets_out && (s32)(now - tp->lsndtime) > tp->rto)
132 tcp_cwnd_restart(tp, __sk_dst_get(sk));
133
134 tp->lsndtime = now;
135
136 /* If it is a reply for ato after last received
137 * packet, enter pingpong mode.
138 */
139 if ((u32)(now - tp->ack.lrcvtime) < tp->ack.ato)
140 tp->ack.pingpong = 1;
141}
142
David S. Millerfc6415b2005-07-05 15:17:45 -0700143static __inline__ void tcp_event_ack_sent(struct sock *sk, unsigned int pkts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
145 struct tcp_sock *tp = tcp_sk(sk);
146
David S. Millerfc6415b2005-07-05 15:17:45 -0700147 tcp_dec_quickack_mode(tp, pkts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 tcp_clear_xmit_timer(sk, TCP_TIME_DACK);
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
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700282 /* If congestion control is doing timestamping */
283 if (tp->ca_ops->rtt_sample)
284 do_gettimeofday(&skb->stamp);
285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 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
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700310 if (tcp_packets_in_flight(tp) == 0)
311 tcp_ca_event(tp, CA_EVENT_TX_START);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
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)
David S. Millerfc6415b2005-07-05 15:17:45 -0700358 tcp_event_ack_sent(sk, tcp_skb_pcount(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
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
406static inline void tcp_tso_set_push(struct sk_buff *skb)
407{
408 /* Force push to be on for any TSO frames to workaround
409 * problems with busted implementations like Mac OS-X that
410 * hold off socket receive wakeups until push is seen.
411 */
412 if (tcp_skb_pcount(skb) > 1)
413 TCP_SKB_CB(skb)->flags |= TCPCB_FLAG_PSH;
414}
415
David S. Millerf6302d12005-07-05 15:18:03 -0700416static void tcp_set_skb_tso_segs(struct sock *sk, struct sk_buff *skb)
417{
418 struct tcp_sock *tp = tcp_sk(sk);
419
420 if (skb->len <= tp->mss_cache_std ||
421 !(sk->sk_route_caps & NETIF_F_TSO)) {
422 /* Avoid the costly divide in the normal
423 * non-TSO case.
424 */
425 skb_shinfo(skb)->tso_segs = 1;
426 skb_shinfo(skb)->tso_size = 0;
427 } else {
428 unsigned int factor;
429
430 factor = skb->len + (tp->mss_cache_std - 1);
431 factor /= tp->mss_cache_std;
432 skb_shinfo(skb)->tso_segs = factor;
433 skb_shinfo(skb)->tso_size = tp->mss_cache_std;
434 }
435}
436
437static inline int tcp_minshall_check(const struct tcp_sock *tp)
438{
439 return after(tp->snd_sml,tp->snd_una) &&
440 !after(tp->snd_sml, tp->snd_nxt);
441}
442
443/* Return 0, if packet can be sent now without violation Nagle's rules:
444 * 1. It is full sized.
445 * 2. Or it contains FIN.
446 * 3. Or TCP_NODELAY was set.
447 * 4. Or TCP_CORK is not set, and all sent packets are ACKed.
448 * With Minshall's modification: all sent small packets are ACKed.
449 */
450
451static inline int tcp_nagle_check(const struct tcp_sock *tp,
452 const struct sk_buff *skb,
453 unsigned mss_now, int nonagle)
454{
455 return (skb->len < mss_now &&
456 !(TCP_SKB_CB(skb)->flags & TCPCB_FLAG_FIN) &&
457 ((nonagle&TCP_NAGLE_CORK) ||
458 (!nonagle &&
459 tp->packets_out &&
460 tcp_minshall_check(tp))));
461}
462
463/* This checks if the data bearing packet SKB (usually sk->sk_send_head)
464 * should be put on the wire right now.
465 */
466static int tcp_snd_test(struct sock *sk, struct sk_buff *skb,
467 unsigned cur_mss, int nonagle)
468{
469 struct tcp_sock *tp = tcp_sk(sk);
470 int pkts = tcp_skb_pcount(skb);
471
472 if (!pkts) {
473 tcp_set_skb_tso_segs(sk, skb);
474 pkts = tcp_skb_pcount(skb);
475 }
476
477 /* RFC 1122 - section 4.2.3.4
478 *
479 * We must queue if
480 *
481 * a) The right edge of this frame exceeds the window
482 * b) There are packets in flight and we have a small segment
483 * [SWS avoidance and Nagle algorithm]
484 * (part of SWS is done on packetization)
485 * Minshall version sounds: there are no _small_
486 * segments in flight. (tcp_nagle_check)
487 * c) We have too many packets 'in flight'
488 *
489 * Don't use the nagle rule for urgent data (or
490 * for the final FIN -DaveM).
491 *
492 * Also, Nagle rule does not apply to frames, which
493 * sit in the middle of queue (they have no chances
494 * to get new data) and if room at tail of skb is
495 * not enough to save something seriously (<32 for now).
496 */
497
498 /* Don't be strict about the congestion window for the
499 * final FIN frame. -DaveM
500 */
501 return (((nonagle&TCP_NAGLE_PUSH) || tp->urg_mode
502 || !tcp_nagle_check(tp, skb, cur_mss, nonagle)) &&
503 (((tcp_packets_in_flight(tp) + (pkts-1)) < tp->snd_cwnd) ||
504 (TCP_SKB_CB(skb)->flags & TCPCB_FLAG_FIN)) &&
505 !after(TCP_SKB_CB(skb)->end_seq, tp->snd_una + tp->snd_wnd));
506}
507
508static inline int tcp_skb_is_last(const struct sock *sk,
509 const struct sk_buff *skb)
510{
511 return skb->next == (struct sk_buff *)&sk->sk_write_queue;
512}
513
David S. Millerf6302d12005-07-05 15:18:03 -0700514int tcp_may_send_now(struct sock *sk, struct tcp_sock *tp)
515{
516 struct sk_buff *skb = sk->sk_send_head;
517
518 return (skb &&
519 tcp_snd_test(sk, skb, tcp_current_mss(sk, 1),
520 (tcp_skb_is_last(sk, skb) ?
521 TCP_NAGLE_PUSH :
522 tp->nonagle)));
523}
524
525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526/* Send _single_ skb sitting at the send head. This function requires
527 * true push pending frames to setup probe timer etc.
528 */
529void tcp_push_one(struct sock *sk, unsigned cur_mss)
530{
531 struct tcp_sock *tp = tcp_sk(sk);
532 struct sk_buff *skb = sk->sk_send_head;
533
David S. Millerd5ac99a2005-04-24 19:12:33 -0700534 if (tcp_snd_test(sk, skb, cur_mss, TCP_NAGLE_PUSH)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 /* Send it out now. */
536 TCP_SKB_CB(skb)->when = tcp_time_stamp;
537 tcp_tso_set_push(skb);
538 if (!tcp_transmit_skb(sk, skb_clone(skb, sk->sk_allocation))) {
539 sk->sk_send_head = NULL;
540 tp->snd_nxt = TCP_SKB_CB(skb)->end_seq;
541 tcp_packets_out_inc(sk, tp, skb);
542 return;
543 }
544 }
545}
546
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547/* Function to create two new TCP segments. Shrinks the given segment
548 * to the specified size and appends a new segment with the rest of the
549 * packet to the list. This won't be called frequently, I hope.
550 * Remember, these are still headerless SKBs at this point.
551 */
552static int tcp_fragment(struct sock *sk, struct sk_buff *skb, u32 len)
553{
554 struct tcp_sock *tp = tcp_sk(sk);
555 struct sk_buff *buff;
556 int nsize;
557 u16 flags;
558
559 nsize = skb_headlen(skb) - len;
560 if (nsize < 0)
561 nsize = 0;
562
563 if (skb_cloned(skb) &&
564 skb_is_nonlinear(skb) &&
565 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
566 return -ENOMEM;
567
568 /* Get a new skb... force flag on. */
569 buff = sk_stream_alloc_skb(sk, nsize, GFP_ATOMIC);
570 if (buff == NULL)
571 return -ENOMEM; /* We'll just try again later. */
572 sk_charge_skb(sk, buff);
573
574 /* Correct the sequence numbers. */
575 TCP_SKB_CB(buff)->seq = TCP_SKB_CB(skb)->seq + len;
576 TCP_SKB_CB(buff)->end_seq = TCP_SKB_CB(skb)->end_seq;
577 TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(buff)->seq;
578
579 /* PSH and FIN should only be set in the second packet. */
580 flags = TCP_SKB_CB(skb)->flags;
581 TCP_SKB_CB(skb)->flags = flags & ~(TCPCB_FLAG_FIN|TCPCB_FLAG_PSH);
582 TCP_SKB_CB(buff)->flags = flags;
583 TCP_SKB_CB(buff)->sacked =
584 (TCP_SKB_CB(skb)->sacked &
585 (TCPCB_LOST | TCPCB_EVER_RETRANS | TCPCB_AT_TAIL));
586 TCP_SKB_CB(skb)->sacked &= ~TCPCB_AT_TAIL;
587
588 if (!skb_shinfo(skb)->nr_frags && skb->ip_summed != CHECKSUM_HW) {
589 /* Copy and checksum data tail into the new buffer. */
590 buff->csum = csum_partial_copy_nocheck(skb->data + len, skb_put(buff, nsize),
591 nsize, 0);
592
593 skb_trim(skb, len);
594
595 skb->csum = csum_block_sub(skb->csum, buff->csum, len);
596 } else {
597 skb->ip_summed = CHECKSUM_HW;
598 skb_split(skb, buff, len);
599 }
600
601 buff->ip_summed = skb->ip_summed;
602
603 /* Looks stupid, but our code really uses when of
604 * skbs, which it never sent before. --ANK
605 */
606 TCP_SKB_CB(buff)->when = TCP_SKB_CB(skb)->when;
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700607 buff->stamp = skb->stamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
609 if (TCP_SKB_CB(skb)->sacked & TCPCB_LOST) {
610 tp->lost_out -= tcp_skb_pcount(skb);
611 tp->left_out -= tcp_skb_pcount(skb);
612 }
613
614 /* Fix up tso_factor for both original and new SKB. */
David S. Millerd5ac99a2005-04-24 19:12:33 -0700615 tcp_set_skb_tso_segs(sk, skb);
616 tcp_set_skb_tso_segs(sk, buff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618 if (TCP_SKB_CB(skb)->sacked & TCPCB_LOST) {
619 tp->lost_out += tcp_skb_pcount(skb);
620 tp->left_out += tcp_skb_pcount(skb);
621 }
622
623 if (TCP_SKB_CB(buff)->sacked&TCPCB_LOST) {
624 tp->lost_out += tcp_skb_pcount(buff);
625 tp->left_out += tcp_skb_pcount(buff);
626 }
627
628 /* Link BUFF into the send queue. */
David S. Millerf44b5272005-07-05 15:18:34 -0700629 skb_header_release(buff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 __skb_append(skb, buff);
631
632 return 0;
633}
634
635/* This is similar to __pskb_pull_head() (it will go to core/skbuff.c
636 * eventually). The difference is that pulled data not copied, but
637 * immediately discarded.
638 */
639static unsigned char *__pskb_trim_head(struct sk_buff *skb, int len)
640{
641 int i, k, eat;
642
643 eat = len;
644 k = 0;
645 for (i=0; i<skb_shinfo(skb)->nr_frags; i++) {
646 if (skb_shinfo(skb)->frags[i].size <= eat) {
647 put_page(skb_shinfo(skb)->frags[i].page);
648 eat -= skb_shinfo(skb)->frags[i].size;
649 } else {
650 skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
651 if (eat) {
652 skb_shinfo(skb)->frags[k].page_offset += eat;
653 skb_shinfo(skb)->frags[k].size -= eat;
654 eat = 0;
655 }
656 k++;
657 }
658 }
659 skb_shinfo(skb)->nr_frags = k;
660
661 skb->tail = skb->data;
662 skb->data_len -= len;
663 skb->len = skb->data_len;
664 return skb->tail;
665}
666
667int tcp_trim_head(struct sock *sk, struct sk_buff *skb, u32 len)
668{
669 if (skb_cloned(skb) &&
670 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
671 return -ENOMEM;
672
673 if (len <= skb_headlen(skb)) {
674 __skb_pull(skb, len);
675 } else {
676 if (__pskb_trim_head(skb, len-skb_headlen(skb)) == NULL)
677 return -ENOMEM;
678 }
679
680 TCP_SKB_CB(skb)->seq += len;
681 skb->ip_summed = CHECKSUM_HW;
682
683 skb->truesize -= len;
684 sk->sk_wmem_queued -= len;
685 sk->sk_forward_alloc += len;
686 sock_set_flag(sk, SOCK_QUEUE_SHRUNK);
687
688 /* Any change of skb->len requires recalculation of tso
689 * factor and mss.
690 */
691 if (tcp_skb_pcount(skb) > 1)
David S. Millerd5ac99a2005-04-24 19:12:33 -0700692 tcp_set_skb_tso_segs(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 return 0;
695}
696
697/* This function synchronize snd mss to current pmtu/exthdr set.
698
699 tp->rx_opt.user_mss is mss set by user by TCP_MAXSEG. It does NOT counts
700 for TCP options, but includes only bare TCP header.
701
702 tp->rx_opt.mss_clamp is mss negotiated at connection setup.
703 It is minumum of user_mss and mss received with SYN.
704 It also does not include TCP options.
705
706 tp->pmtu_cookie is last pmtu, seen by this function.
707
708 tp->mss_cache is current effective sending mss, including
709 all tcp options except for SACKs. It is evaluated,
710 taking into account current pmtu, but never exceeds
711 tp->rx_opt.mss_clamp.
712
713 NOTE1. rfc1122 clearly states that advertised MSS
714 DOES NOT include either tcp or ip options.
715
716 NOTE2. tp->pmtu_cookie and tp->mss_cache are READ ONLY outside
717 this function. --ANK (980731)
718 */
719
720unsigned int tcp_sync_mss(struct sock *sk, u32 pmtu)
721{
722 struct tcp_sock *tp = tcp_sk(sk);
723 int mss_now;
724
725 /* Calculate base mss without TCP options:
726 It is MMS_S - sizeof(tcphdr) of rfc1122
727 */
728 mss_now = pmtu - tp->af_specific->net_header_len - sizeof(struct tcphdr);
729
730 /* Clamp it (mss_clamp does not include tcp options) */
731 if (mss_now > tp->rx_opt.mss_clamp)
732 mss_now = tp->rx_opt.mss_clamp;
733
734 /* Now subtract optional transport overhead */
735 mss_now -= tp->ext_header_len;
736
737 /* Then reserve room for full set of TCP options and 8 bytes of data */
738 if (mss_now < 48)
739 mss_now = 48;
740
741 /* Now subtract TCP options size, not including SACKs */
742 mss_now -= tp->tcp_header_len - sizeof(struct tcphdr);
743
744 /* Bound mss with half of window */
745 if (tp->max_window && mss_now > (tp->max_window>>1))
746 mss_now = max((tp->max_window>>1), 68U - tp->tcp_header_len);
747
748 /* And store cached results */
749 tp->pmtu_cookie = pmtu;
750 tp->mss_cache = tp->mss_cache_std = mss_now;
751
752 return mss_now;
753}
754
755/* Compute the current effective MSS, taking SACKs and IP options,
756 * and even PMTU discovery events into account.
757 *
758 * LARGESEND note: !urg_mode is overkill, only frames up to snd_up
759 * cannot be large. However, taking into account rare use of URG, this
760 * is not a big flaw.
761 */
762
763unsigned int tcp_current_mss(struct sock *sk, int large)
764{
765 struct tcp_sock *tp = tcp_sk(sk);
766 struct dst_entry *dst = __sk_dst_get(sk);
767 unsigned int do_large, mss_now;
768
769 mss_now = tp->mss_cache_std;
770 if (dst) {
771 u32 mtu = dst_mtu(dst);
772 if (mtu != tp->pmtu_cookie)
773 mss_now = tcp_sync_mss(sk, mtu);
774 }
775
776 do_large = (large &&
777 (sk->sk_route_caps & NETIF_F_TSO) &&
778 !tp->urg_mode);
779
780 if (do_large) {
781 unsigned int large_mss, factor, limit;
782
783 large_mss = 65535 - tp->af_specific->net_header_len -
784 tp->ext_header_len - tp->tcp_header_len;
785
786 if (tp->max_window && large_mss > (tp->max_window>>1))
787 large_mss = max((tp->max_window>>1),
788 68U - tp->tcp_header_len);
789
790 factor = large_mss / mss_now;
791
792 /* Always keep large mss multiple of real mss, but
793 * do not exceed 1/tso_win_divisor of the congestion window
794 * so we can keep the ACK clock ticking and minimize
795 * bursting.
796 */
797 limit = tp->snd_cwnd;
798 if (sysctl_tcp_tso_win_divisor)
799 limit /= sysctl_tcp_tso_win_divisor;
800 limit = max(1U, limit);
801 if (factor > limit)
802 factor = limit;
803
804 tp->mss_cache = mss_now * factor;
805
806 mss_now = tp->mss_cache;
807 }
808
809 if (tp->rx_opt.eff_sacks)
810 mss_now -= (TCPOLEN_SACK_BASE_ALIGNED +
811 (tp->rx_opt.eff_sacks * TCPOLEN_SACK_PERBLOCK));
812 return mss_now;
813}
814
David S. Millera762a982005-07-05 15:18:51 -0700815/* Congestion window validation. (RFC2861) */
816
817static inline void tcp_cwnd_validate(struct sock *sk, struct tcp_sock *tp)
818{
819 __u32 packets_out = tp->packets_out;
820
821 if (packets_out >= tp->snd_cwnd) {
822 /* Network is feed fully. */
823 tp->snd_cwnd_used = 0;
824 tp->snd_cwnd_stamp = tcp_time_stamp;
825 } else {
826 /* Network starves. */
827 if (tp->packets_out > tp->snd_cwnd_used)
828 tp->snd_cwnd_used = tp->packets_out;
829
830 if ((s32)(tcp_time_stamp - tp->snd_cwnd_stamp) >= tp->rto)
831 tcp_cwnd_application_limited(sk);
832 }
833}
834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835/* This routine writes packets to the network. It advances the
836 * send_head. This happens as incoming acks open up the remote
837 * window for us.
838 *
839 * Returns 1, if no segments are in flight and we have queued segments, but
840 * cannot send anything now because of SWS or another problem.
841 */
David S. Millera2e2a592005-07-05 15:19:23 -0700842static int tcp_write_xmit(struct sock *sk, unsigned int mss_now, int nonagle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843{
844 struct tcp_sock *tp = tcp_sk(sk);
David S. Miller92df7b52005-07-05 15:19:06 -0700845 struct sk_buff *skb;
David S. Miller92df7b52005-07-05 15:19:06 -0700846 int sent_pkts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 /* If we are closed, the bytes will have to remain here.
849 * In time closedown will finish, we empty the write queue and all
850 * will be happy.
851 */
David S. Miller92df7b52005-07-05 15:19:06 -0700852 if (unlikely(sk->sk_state == TCP_CLOSE))
853 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
David S. Miller92df7b52005-07-05 15:19:06 -0700855 sent_pkts = 0;
856 while ((skb = sk->sk_send_head) &&
857 tcp_snd_test(sk, skb, mss_now,
858 tcp_skb_is_last(sk, skb) ? nonagle :
859 TCP_NAGLE_PUSH)) {
860 if (skb->len > mss_now) {
861 if (tcp_fragment(sk, skb, mss_now))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 }
864
David S. Miller92df7b52005-07-05 15:19:06 -0700865 TCP_SKB_CB(skb)->when = tcp_time_stamp;
866 tcp_tso_set_push(skb);
867 if (tcp_transmit_skb(sk, skb_clone(skb, GFP_ATOMIC)))
868 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
David S. Miller92df7b52005-07-05 15:19:06 -0700870 /* Advance the send_head. This one is sent out.
871 * This call will increment packets_out.
872 */
873 update_send_head(sk, tp, skb);
874
875 tcp_minshall_update(tp, mss_now, skb);
876 sent_pkts = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 }
David S. Miller92df7b52005-07-05 15:19:06 -0700878
879 if (sent_pkts) {
880 tcp_cwnd_validate(sk, tp);
881 return 0;
882 }
883
884 return !tp->packets_out && sk->sk_send_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885}
886
David S. Millera762a982005-07-05 15:18:51 -0700887/* Push out any pending frames which were held back due to
888 * TCP_CORK or attempt at coalescing tiny packets.
889 * The socket must be locked by the caller.
890 */
891void __tcp_push_pending_frames(struct sock *sk, struct tcp_sock *tp,
David S. Millera2e2a592005-07-05 15:19:23 -0700892 unsigned int cur_mss, int nonagle)
David S. Millera762a982005-07-05 15:18:51 -0700893{
894 struct sk_buff *skb = sk->sk_send_head;
895
896 if (skb) {
897 if (!tcp_skb_is_last(sk, skb))
898 nonagle = TCP_NAGLE_PUSH;
899 if (!tcp_snd_test(sk, skb, cur_mss, nonagle) ||
David S. Millera2e2a592005-07-05 15:19:23 -0700900 tcp_write_xmit(sk, cur_mss, nonagle))
David S. Millera762a982005-07-05 15:18:51 -0700901 tcp_check_probe_timer(sk, tp);
902 }
903}
904
905void __tcp_data_snd_check(struct sock *sk, struct sk_buff *skb)
906{
907 struct tcp_sock *tp = tcp_sk(sk);
908
909 if (after(TCP_SKB_CB(skb)->end_seq, tp->snd_una + tp->snd_wnd) ||
910 tcp_packets_in_flight(tp) >= tp->snd_cwnd ||
David S. Millera2e2a592005-07-05 15:19:23 -0700911 tcp_write_xmit(sk, tcp_current_mss(sk, 1), tp->nonagle))
David S. Millera762a982005-07-05 15:18:51 -0700912 tcp_check_probe_timer(sk, tp);
913}
914
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915/* This function returns the amount that we can raise the
916 * usable window based on the following constraints
917 *
918 * 1. The window can never be shrunk once it is offered (RFC 793)
919 * 2. We limit memory per socket
920 *
921 * RFC 1122:
922 * "the suggested [SWS] avoidance algorithm for the receiver is to keep
923 * RECV.NEXT + RCV.WIN fixed until:
924 * RCV.BUFF - RCV.USER - RCV.WINDOW >= min(1/2 RCV.BUFF, MSS)"
925 *
926 * i.e. don't raise the right edge of the window until you can raise
927 * it at least MSS bytes.
928 *
929 * Unfortunately, the recommended algorithm breaks header prediction,
930 * since header prediction assumes th->window stays fixed.
931 *
932 * Strictly speaking, keeping th->window fixed violates the receiver
933 * side SWS prevention criteria. The problem is that under this rule
934 * a stream of single byte packets will cause the right side of the
935 * window to always advance by a single byte.
936 *
937 * Of course, if the sender implements sender side SWS prevention
938 * then this will not be a problem.
939 *
940 * BSD seems to make the following compromise:
941 *
942 * If the free space is less than the 1/4 of the maximum
943 * space available and the free space is less than 1/2 mss,
944 * then set the window to 0.
945 * [ Actually, bsd uses MSS and 1/4 of maximal _window_ ]
946 * Otherwise, just prevent the window from shrinking
947 * and from being larger than the largest representable value.
948 *
949 * This prevents incremental opening of the window in the regime
950 * where TCP is limited by the speed of the reader side taking
951 * data out of the TCP receive queue. It does nothing about
952 * those cases where the window is constrained on the sender side
953 * because the pipeline is full.
954 *
955 * BSD also seems to "accidentally" limit itself to windows that are a
956 * multiple of MSS, at least until the free space gets quite small.
957 * This would appear to be a side effect of the mbuf implementation.
958 * Combining these two algorithms results in the observed behavior
959 * of having a fixed window size at almost all times.
960 *
961 * Below we obtain similar behavior by forcing the offered window to
962 * a multiple of the mss when it is feasible to do so.
963 *
964 * Note, we don't "adjust" for TIMESTAMP or SACK option bytes.
965 * Regular options like TIMESTAMP are taken into account.
966 */
967u32 __tcp_select_window(struct sock *sk)
968{
969 struct tcp_sock *tp = tcp_sk(sk);
970 /* MSS for the peer's data. Previous verions used mss_clamp
971 * here. I don't know if the value based on our guesses
972 * of peer's MSS is better for the performance. It's more correct
973 * but may be worse for the performance because of rcv_mss
974 * fluctuations. --SAW 1998/11/1
975 */
976 int mss = tp->ack.rcv_mss;
977 int free_space = tcp_space(sk);
978 int full_space = min_t(int, tp->window_clamp, tcp_full_space(sk));
979 int window;
980
981 if (mss > full_space)
982 mss = full_space;
983
984 if (free_space < full_space/2) {
985 tp->ack.quick = 0;
986
987 if (tcp_memory_pressure)
988 tp->rcv_ssthresh = min(tp->rcv_ssthresh, 4U*tp->advmss);
989
990 if (free_space < mss)
991 return 0;
992 }
993
994 if (free_space > tp->rcv_ssthresh)
995 free_space = tp->rcv_ssthresh;
996
997 /* Don't do rounding if we are using window scaling, since the
998 * scaled window will not line up with the MSS boundary anyway.
999 */
1000 window = tp->rcv_wnd;
1001 if (tp->rx_opt.rcv_wscale) {
1002 window = free_space;
1003
1004 /* Advertise enough space so that it won't get scaled away.
1005 * Import case: prevent zero window announcement if
1006 * 1<<rcv_wscale > mss.
1007 */
1008 if (((window >> tp->rx_opt.rcv_wscale) << tp->rx_opt.rcv_wscale) != window)
1009 window = (((window >> tp->rx_opt.rcv_wscale) + 1)
1010 << tp->rx_opt.rcv_wscale);
1011 } else {
1012 /* Get the largest window that is a nice multiple of mss.
1013 * Window clamp already applied above.
1014 * If our current window offering is within 1 mss of the
1015 * free space we just keep it. This prevents the divide
1016 * and multiply from happening most of the time.
1017 * We also don't do any window rounding when the free space
1018 * is too small.
1019 */
1020 if (window <= free_space - mss || window > free_space)
1021 window = (free_space/mss)*mss;
1022 }
1023
1024 return window;
1025}
1026
1027/* Attempt to collapse two adjacent SKB's during retransmission. */
1028static void tcp_retrans_try_collapse(struct sock *sk, struct sk_buff *skb, int mss_now)
1029{
1030 struct tcp_sock *tp = tcp_sk(sk);
1031 struct sk_buff *next_skb = skb->next;
1032
1033 /* The first test we must make is that neither of these two
1034 * SKB's are still referenced by someone else.
1035 */
1036 if (!skb_cloned(skb) && !skb_cloned(next_skb)) {
1037 int skb_size = skb->len, next_skb_size = next_skb->len;
1038 u16 flags = TCP_SKB_CB(skb)->flags;
1039
1040 /* Also punt if next skb has been SACK'd. */
1041 if(TCP_SKB_CB(next_skb)->sacked & TCPCB_SACKED_ACKED)
1042 return;
1043
1044 /* Next skb is out of window. */
1045 if (after(TCP_SKB_CB(next_skb)->end_seq, tp->snd_una+tp->snd_wnd))
1046 return;
1047
1048 /* Punt if not enough space exists in the first SKB for
1049 * the data in the second, or the total combined payload
1050 * would exceed the MSS.
1051 */
1052 if ((next_skb_size > skb_tailroom(skb)) ||
1053 ((skb_size + next_skb_size) > mss_now))
1054 return;
1055
1056 BUG_ON(tcp_skb_pcount(skb) != 1 ||
1057 tcp_skb_pcount(next_skb) != 1);
1058
1059 /* Ok. We will be able to collapse the packet. */
1060 __skb_unlink(next_skb, next_skb->list);
1061
1062 memcpy(skb_put(skb, next_skb_size), next_skb->data, next_skb_size);
1063
1064 if (next_skb->ip_summed == CHECKSUM_HW)
1065 skb->ip_summed = CHECKSUM_HW;
1066
1067 if (skb->ip_summed != CHECKSUM_HW)
1068 skb->csum = csum_block_add(skb->csum, next_skb->csum, skb_size);
1069
1070 /* Update sequence range on original skb. */
1071 TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(next_skb)->end_seq;
1072
1073 /* Merge over control information. */
1074 flags |= TCP_SKB_CB(next_skb)->flags; /* This moves PSH/FIN etc. over */
1075 TCP_SKB_CB(skb)->flags = flags;
1076
1077 /* All done, get rid of second SKB and account for it so
1078 * packet counting does not break.
1079 */
1080 TCP_SKB_CB(skb)->sacked |= TCP_SKB_CB(next_skb)->sacked&(TCPCB_EVER_RETRANS|TCPCB_AT_TAIL);
1081 if (TCP_SKB_CB(next_skb)->sacked&TCPCB_SACKED_RETRANS)
1082 tp->retrans_out -= tcp_skb_pcount(next_skb);
1083 if (TCP_SKB_CB(next_skb)->sacked&TCPCB_LOST) {
1084 tp->lost_out -= tcp_skb_pcount(next_skb);
1085 tp->left_out -= tcp_skb_pcount(next_skb);
1086 }
1087 /* Reno case is special. Sigh... */
1088 if (!tp->rx_opt.sack_ok && tp->sacked_out) {
1089 tcp_dec_pcount_approx(&tp->sacked_out, next_skb);
1090 tp->left_out -= tcp_skb_pcount(next_skb);
1091 }
1092
1093 /* Not quite right: it can be > snd.fack, but
1094 * it is better to underestimate fackets.
1095 */
1096 tcp_dec_pcount_approx(&tp->fackets_out, next_skb);
1097 tcp_packets_out_dec(tp, next_skb);
1098 sk_stream_free_skb(sk, next_skb);
1099 }
1100}
1101
1102/* Do a simple retransmit without using the backoff mechanisms in
1103 * tcp_timer. This is used for path mtu discovery.
1104 * The socket is already locked here.
1105 */
1106void tcp_simple_retransmit(struct sock *sk)
1107{
1108 struct tcp_sock *tp = tcp_sk(sk);
1109 struct sk_buff *skb;
1110 unsigned int mss = tcp_current_mss(sk, 0);
1111 int lost = 0;
1112
1113 sk_stream_for_retrans_queue(skb, sk) {
1114 if (skb->len > mss &&
1115 !(TCP_SKB_CB(skb)->sacked&TCPCB_SACKED_ACKED)) {
1116 if (TCP_SKB_CB(skb)->sacked&TCPCB_SACKED_RETRANS) {
1117 TCP_SKB_CB(skb)->sacked &= ~TCPCB_SACKED_RETRANS;
1118 tp->retrans_out -= tcp_skb_pcount(skb);
1119 }
1120 if (!(TCP_SKB_CB(skb)->sacked&TCPCB_LOST)) {
1121 TCP_SKB_CB(skb)->sacked |= TCPCB_LOST;
1122 tp->lost_out += tcp_skb_pcount(skb);
1123 lost = 1;
1124 }
1125 }
1126 }
1127
1128 if (!lost)
1129 return;
1130
1131 tcp_sync_left_out(tp);
1132
1133 /* Don't muck with the congestion window here.
1134 * Reason is that we do not increase amount of _data_
1135 * in network, but units changed and effective
1136 * cwnd/ssthresh really reduced now.
1137 */
1138 if (tp->ca_state != TCP_CA_Loss) {
1139 tp->high_seq = tp->snd_nxt;
1140 tp->snd_ssthresh = tcp_current_ssthresh(tp);
1141 tp->prior_ssthresh = 0;
1142 tp->undo_marker = 0;
1143 tcp_set_ca_state(tp, TCP_CA_Loss);
1144 }
1145 tcp_xmit_retransmit_queue(sk);
1146}
1147
1148/* This retransmits one SKB. Policy decisions and retransmit queue
1149 * state updates are done by the caller. Returns non-zero if an
1150 * error occurred which prevented the send.
1151 */
1152int tcp_retransmit_skb(struct sock *sk, struct sk_buff *skb)
1153{
1154 struct tcp_sock *tp = tcp_sk(sk);
1155 unsigned int cur_mss = tcp_current_mss(sk, 0);
1156 int err;
1157
1158 /* Do not sent more than we queued. 1/4 is reserved for possible
1159 * copying overhead: frgagmentation, tunneling, mangling etc.
1160 */
1161 if (atomic_read(&sk->sk_wmem_alloc) >
1162 min(sk->sk_wmem_queued + (sk->sk_wmem_queued >> 2), sk->sk_sndbuf))
1163 return -EAGAIN;
1164
1165 if (before(TCP_SKB_CB(skb)->seq, tp->snd_una)) {
1166 if (before(TCP_SKB_CB(skb)->end_seq, tp->snd_una))
1167 BUG();
1168
1169 if (sk->sk_route_caps & NETIF_F_TSO) {
1170 sk->sk_route_caps &= ~NETIF_F_TSO;
1171 sock_set_flag(sk, SOCK_NO_LARGESEND);
1172 tp->mss_cache = tp->mss_cache_std;
1173 }
1174
1175 if (tcp_trim_head(sk, skb, tp->snd_una - TCP_SKB_CB(skb)->seq))
1176 return -ENOMEM;
1177 }
1178
1179 /* If receiver has shrunk his window, and skb is out of
1180 * new window, do not retransmit it. The exception is the
1181 * case, when window is shrunk to zero. In this case
1182 * our retransmit serves as a zero window probe.
1183 */
1184 if (!before(TCP_SKB_CB(skb)->seq, tp->snd_una+tp->snd_wnd)
1185 && TCP_SKB_CB(skb)->seq != tp->snd_una)
1186 return -EAGAIN;
1187
1188 if (skb->len > cur_mss) {
1189 int old_factor = tcp_skb_pcount(skb);
1190 int new_factor;
1191
1192 if (tcp_fragment(sk, skb, cur_mss))
1193 return -ENOMEM; /* We'll try again later. */
1194
1195 /* New SKB created, account for it. */
1196 new_factor = tcp_skb_pcount(skb);
1197 tp->packets_out -= old_factor - new_factor;
1198 tp->packets_out += tcp_skb_pcount(skb->next);
1199 }
1200
1201 /* Collapse two adjacent packets if worthwhile and we can. */
1202 if(!(TCP_SKB_CB(skb)->flags & TCPCB_FLAG_SYN) &&
1203 (skb->len < (cur_mss >> 1)) &&
1204 (skb->next != sk->sk_send_head) &&
1205 (skb->next != (struct sk_buff *)&sk->sk_write_queue) &&
1206 (skb_shinfo(skb)->nr_frags == 0 && skb_shinfo(skb->next)->nr_frags == 0) &&
1207 (tcp_skb_pcount(skb) == 1 && tcp_skb_pcount(skb->next) == 1) &&
1208 (sysctl_tcp_retrans_collapse != 0))
1209 tcp_retrans_try_collapse(sk, skb, cur_mss);
1210
1211 if(tp->af_specific->rebuild_header(sk))
1212 return -EHOSTUNREACH; /* Routing failure or similar. */
1213
1214 /* Some Solaris stacks overoptimize and ignore the FIN on a
1215 * retransmit when old data is attached. So strip it off
1216 * since it is cheap to do so and saves bytes on the network.
1217 */
1218 if(skb->len > 0 &&
1219 (TCP_SKB_CB(skb)->flags & TCPCB_FLAG_FIN) &&
1220 tp->snd_una == (TCP_SKB_CB(skb)->end_seq - 1)) {
1221 if (!pskb_trim(skb, 0)) {
1222 TCP_SKB_CB(skb)->seq = TCP_SKB_CB(skb)->end_seq - 1;
1223 skb_shinfo(skb)->tso_segs = 1;
1224 skb_shinfo(skb)->tso_size = 0;
1225 skb->ip_summed = CHECKSUM_NONE;
1226 skb->csum = 0;
1227 }
1228 }
1229
1230 /* Make a copy, if the first transmission SKB clone we made
1231 * is still in somebody's hands, else make a clone.
1232 */
1233 TCP_SKB_CB(skb)->when = tcp_time_stamp;
1234 tcp_tso_set_push(skb);
1235
1236 err = tcp_transmit_skb(sk, (skb_cloned(skb) ?
1237 pskb_copy(skb, GFP_ATOMIC):
1238 skb_clone(skb, GFP_ATOMIC)));
1239
1240 if (err == 0) {
1241 /* Update global TCP statistics. */
1242 TCP_INC_STATS(TCP_MIB_RETRANSSEGS);
1243
1244 tp->total_retrans++;
1245
1246#if FASTRETRANS_DEBUG > 0
1247 if (TCP_SKB_CB(skb)->sacked&TCPCB_SACKED_RETRANS) {
1248 if (net_ratelimit())
1249 printk(KERN_DEBUG "retrans_out leaked.\n");
1250 }
1251#endif
1252 TCP_SKB_CB(skb)->sacked |= TCPCB_RETRANS;
1253 tp->retrans_out += tcp_skb_pcount(skb);
1254
1255 /* Save stamp of the first retransmit. */
1256 if (!tp->retrans_stamp)
1257 tp->retrans_stamp = TCP_SKB_CB(skb)->when;
1258
1259 tp->undo_retrans++;
1260
1261 /* snd_nxt is stored to detect loss of retransmitted segment,
1262 * see tcp_input.c tcp_sacktag_write_queue().
1263 */
1264 TCP_SKB_CB(skb)->ack_seq = tp->snd_nxt;
1265 }
1266 return err;
1267}
1268
1269/* This gets called after a retransmit timeout, and the initially
1270 * retransmitted data is acknowledged. It tries to continue
1271 * resending the rest of the retransmit queue, until either
1272 * we've sent it all or the congestion window limit is reached.
1273 * If doing SACK, the first ACK which comes back for a timeout
1274 * based retransmit packet might feed us FACK information again.
1275 * If so, we use it to avoid unnecessarily retransmissions.
1276 */
1277void tcp_xmit_retransmit_queue(struct sock *sk)
1278{
1279 struct tcp_sock *tp = tcp_sk(sk);
1280 struct sk_buff *skb;
1281 int packet_cnt = tp->lost_out;
1282
1283 /* First pass: retransmit lost packets. */
1284 if (packet_cnt) {
1285 sk_stream_for_retrans_queue(skb, sk) {
1286 __u8 sacked = TCP_SKB_CB(skb)->sacked;
1287
1288 /* Assume this retransmit will generate
1289 * only one packet for congestion window
1290 * calculation purposes. This works because
1291 * tcp_retransmit_skb() will chop up the
1292 * packet to be MSS sized and all the
1293 * packet counting works out.
1294 */
1295 if (tcp_packets_in_flight(tp) >= tp->snd_cwnd)
1296 return;
1297
1298 if (sacked&TCPCB_LOST) {
1299 if (!(sacked&(TCPCB_SACKED_ACKED|TCPCB_SACKED_RETRANS))) {
1300 if (tcp_retransmit_skb(sk, skb))
1301 return;
1302 if (tp->ca_state != TCP_CA_Loss)
1303 NET_INC_STATS_BH(LINUX_MIB_TCPFASTRETRANS);
1304 else
1305 NET_INC_STATS_BH(LINUX_MIB_TCPSLOWSTARTRETRANS);
1306
1307 if (skb ==
1308 skb_peek(&sk->sk_write_queue))
1309 tcp_reset_xmit_timer(sk, TCP_TIME_RETRANS, tp->rto);
1310 }
1311
1312 packet_cnt -= tcp_skb_pcount(skb);
1313 if (packet_cnt <= 0)
1314 break;
1315 }
1316 }
1317 }
1318
1319 /* OK, demanded retransmission is finished. */
1320
1321 /* Forward retransmissions are possible only during Recovery. */
1322 if (tp->ca_state != TCP_CA_Recovery)
1323 return;
1324
1325 /* No forward retransmissions in Reno are possible. */
1326 if (!tp->rx_opt.sack_ok)
1327 return;
1328
1329 /* Yeah, we have to make difficult choice between forward transmission
1330 * and retransmission... Both ways have their merits...
1331 *
1332 * For now we do not retransmit anything, while we have some new
1333 * segments to send.
1334 */
1335
1336 if (tcp_may_send_now(sk, tp))
1337 return;
1338
1339 packet_cnt = 0;
1340
1341 sk_stream_for_retrans_queue(skb, sk) {
1342 /* Similar to the retransmit loop above we
1343 * can pretend that the retransmitted SKB
1344 * we send out here will be composed of one
1345 * real MSS sized packet because tcp_retransmit_skb()
1346 * will fragment it if necessary.
1347 */
1348 if (++packet_cnt > tp->fackets_out)
1349 break;
1350
1351 if (tcp_packets_in_flight(tp) >= tp->snd_cwnd)
1352 break;
1353
1354 if (TCP_SKB_CB(skb)->sacked & TCPCB_TAGBITS)
1355 continue;
1356
1357 /* Ok, retransmit it. */
1358 if (tcp_retransmit_skb(sk, skb))
1359 break;
1360
1361 if (skb == skb_peek(&sk->sk_write_queue))
1362 tcp_reset_xmit_timer(sk, TCP_TIME_RETRANS, tp->rto);
1363
1364 NET_INC_STATS_BH(LINUX_MIB_TCPFORWARDRETRANS);
1365 }
1366}
1367
1368
1369/* Send a fin. The caller locks the socket for us. This cannot be
1370 * allowed to fail queueing a FIN frame under any circumstances.
1371 */
1372void tcp_send_fin(struct sock *sk)
1373{
1374 struct tcp_sock *tp = tcp_sk(sk);
1375 struct sk_buff *skb = skb_peek_tail(&sk->sk_write_queue);
1376 int mss_now;
1377
1378 /* Optimization, tack on the FIN if we have a queue of
1379 * unsent frames. But be careful about outgoing SACKS
1380 * and IP options.
1381 */
1382 mss_now = tcp_current_mss(sk, 1);
1383
1384 if (sk->sk_send_head != NULL) {
1385 TCP_SKB_CB(skb)->flags |= TCPCB_FLAG_FIN;
1386 TCP_SKB_CB(skb)->end_seq++;
1387 tp->write_seq++;
1388 } else {
1389 /* Socket is locked, keep trying until memory is available. */
1390 for (;;) {
1391 skb = alloc_skb(MAX_TCP_HEADER, GFP_KERNEL);
1392 if (skb)
1393 break;
1394 yield();
1395 }
1396
1397 /* Reserve space for headers and prepare control bits. */
1398 skb_reserve(skb, MAX_TCP_HEADER);
1399 skb->csum = 0;
1400 TCP_SKB_CB(skb)->flags = (TCPCB_FLAG_ACK | TCPCB_FLAG_FIN);
1401 TCP_SKB_CB(skb)->sacked = 0;
1402 skb_shinfo(skb)->tso_segs = 1;
1403 skb_shinfo(skb)->tso_size = 0;
1404
1405 /* FIN eats a sequence byte, write_seq advanced by tcp_queue_skb(). */
1406 TCP_SKB_CB(skb)->seq = tp->write_seq;
1407 TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(skb)->seq + 1;
1408 tcp_queue_skb(sk, skb);
1409 }
1410 __tcp_push_pending_frames(sk, tp, mss_now, TCP_NAGLE_OFF);
1411}
1412
1413/* We get here when a process closes a file descriptor (either due to
1414 * an explicit close() or as a byproduct of exit()'ing) and there
1415 * was unread data in the receive queue. This behavior is recommended
1416 * by draft-ietf-tcpimpl-prob-03.txt section 3.10. -DaveM
1417 */
1418void tcp_send_active_reset(struct sock *sk, int priority)
1419{
1420 struct tcp_sock *tp = tcp_sk(sk);
1421 struct sk_buff *skb;
1422
1423 /* NOTE: No TCP options attached and we never retransmit this. */
1424 skb = alloc_skb(MAX_TCP_HEADER, priority);
1425 if (!skb) {
1426 NET_INC_STATS(LINUX_MIB_TCPABORTFAILED);
1427 return;
1428 }
1429
1430 /* Reserve space for headers and prepare control bits. */
1431 skb_reserve(skb, MAX_TCP_HEADER);
1432 skb->csum = 0;
1433 TCP_SKB_CB(skb)->flags = (TCPCB_FLAG_ACK | TCPCB_FLAG_RST);
1434 TCP_SKB_CB(skb)->sacked = 0;
1435 skb_shinfo(skb)->tso_segs = 1;
1436 skb_shinfo(skb)->tso_size = 0;
1437
1438 /* Send it off. */
1439 TCP_SKB_CB(skb)->seq = tcp_acceptable_seq(sk, tp);
1440 TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(skb)->seq;
1441 TCP_SKB_CB(skb)->when = tcp_time_stamp;
1442 if (tcp_transmit_skb(sk, skb))
1443 NET_INC_STATS(LINUX_MIB_TCPABORTFAILED);
1444}
1445
1446/* WARNING: This routine must only be called when we have already sent
1447 * a SYN packet that crossed the incoming SYN that caused this routine
1448 * to get called. If this assumption fails then the initial rcv_wnd
1449 * and rcv_wscale values will not be correct.
1450 */
1451int tcp_send_synack(struct sock *sk)
1452{
1453 struct sk_buff* skb;
1454
1455 skb = skb_peek(&sk->sk_write_queue);
1456 if (skb == NULL || !(TCP_SKB_CB(skb)->flags&TCPCB_FLAG_SYN)) {
1457 printk(KERN_DEBUG "tcp_send_synack: wrong queue state\n");
1458 return -EFAULT;
1459 }
1460 if (!(TCP_SKB_CB(skb)->flags&TCPCB_FLAG_ACK)) {
1461 if (skb_cloned(skb)) {
1462 struct sk_buff *nskb = skb_copy(skb, GFP_ATOMIC);
1463 if (nskb == NULL)
1464 return -ENOMEM;
1465 __skb_unlink(skb, &sk->sk_write_queue);
1466 skb_header_release(nskb);
1467 __skb_queue_head(&sk->sk_write_queue, nskb);
1468 sk_stream_free_skb(sk, skb);
1469 sk_charge_skb(sk, nskb);
1470 skb = nskb;
1471 }
1472
1473 TCP_SKB_CB(skb)->flags |= TCPCB_FLAG_ACK;
1474 TCP_ECN_send_synack(tcp_sk(sk), skb);
1475 }
1476 TCP_SKB_CB(skb)->when = tcp_time_stamp;
1477 return tcp_transmit_skb(sk, skb_clone(skb, GFP_ATOMIC));
1478}
1479
1480/*
1481 * Prepare a SYN-ACK.
1482 */
1483struct sk_buff * tcp_make_synack(struct sock *sk, struct dst_entry *dst,
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -07001484 struct request_sock *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485{
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001486 struct inet_request_sock *ireq = inet_rsk(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 struct tcp_sock *tp = tcp_sk(sk);
1488 struct tcphdr *th;
1489 int tcp_header_size;
1490 struct sk_buff *skb;
1491
1492 skb = sock_wmalloc(sk, MAX_TCP_HEADER + 15, 1, GFP_ATOMIC);
1493 if (skb == NULL)
1494 return NULL;
1495
1496 /* Reserve space for headers. */
1497 skb_reserve(skb, MAX_TCP_HEADER);
1498
1499 skb->dst = dst_clone(dst);
1500
1501 tcp_header_size = (sizeof(struct tcphdr) + TCPOLEN_MSS +
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001502 (ireq->tstamp_ok ? TCPOLEN_TSTAMP_ALIGNED : 0) +
1503 (ireq->wscale_ok ? TCPOLEN_WSCALE_ALIGNED : 0) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 /* SACK_PERM is in the place of NOP NOP of TS */
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001505 ((ireq->sack_ok && !ireq->tstamp_ok) ? TCPOLEN_SACKPERM_ALIGNED : 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 skb->h.th = th = (struct tcphdr *) skb_push(skb, tcp_header_size);
1507
1508 memset(th, 0, sizeof(struct tcphdr));
1509 th->syn = 1;
1510 th->ack = 1;
1511 if (dst->dev->features&NETIF_F_TSO)
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001512 ireq->ecn_ok = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 TCP_ECN_make_synack(req, th);
1514 th->source = inet_sk(sk)->sport;
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001515 th->dest = ireq->rmt_port;
1516 TCP_SKB_CB(skb)->seq = tcp_rsk(req)->snt_isn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(skb)->seq + 1;
1518 TCP_SKB_CB(skb)->sacked = 0;
1519 skb_shinfo(skb)->tso_segs = 1;
1520 skb_shinfo(skb)->tso_size = 0;
1521 th->seq = htonl(TCP_SKB_CB(skb)->seq);
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001522 th->ack_seq = htonl(tcp_rsk(req)->rcv_isn + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 if (req->rcv_wnd == 0) { /* ignored for retransmitted syns */
1524 __u8 rcv_wscale;
1525 /* Set this up on the first call only */
1526 req->window_clamp = tp->window_clamp ? : dst_metric(dst, RTAX_WINDOW);
1527 /* tcp_full_space because it is guaranteed to be the first packet */
1528 tcp_select_initial_window(tcp_full_space(sk),
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001529 dst_metric(dst, RTAX_ADVMSS) - (ireq->tstamp_ok ? TCPOLEN_TSTAMP_ALIGNED : 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 &req->rcv_wnd,
1531 &req->window_clamp,
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001532 ireq->wscale_ok,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 &rcv_wscale);
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001534 ireq->rcv_wscale = rcv_wscale;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 }
1536
1537 /* RFC1323: The window in SYN & SYN/ACK segments is never scaled. */
1538 th->window = htons(req->rcv_wnd);
1539
1540 TCP_SKB_CB(skb)->when = tcp_time_stamp;
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001541 tcp_syn_build_options((__u32 *)(th + 1), dst_metric(dst, RTAX_ADVMSS), ireq->tstamp_ok,
1542 ireq->sack_ok, ireq->wscale_ok, ireq->rcv_wscale,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 TCP_SKB_CB(skb)->when,
1544 req->ts_recent);
1545
1546 skb->csum = 0;
1547 th->doff = (tcp_header_size >> 2);
1548 TCP_INC_STATS(TCP_MIB_OUTSEGS);
1549 return skb;
1550}
1551
1552/*
1553 * Do all connect socket setups that can be done AF independent.
1554 */
1555static inline void tcp_connect_init(struct sock *sk)
1556{
1557 struct dst_entry *dst = __sk_dst_get(sk);
1558 struct tcp_sock *tp = tcp_sk(sk);
1559 __u8 rcv_wscale;
1560
1561 /* We'll fix this up when we get a response from the other end.
1562 * See tcp_input.c:tcp_rcv_state_process case TCP_SYN_SENT.
1563 */
1564 tp->tcp_header_len = sizeof(struct tcphdr) +
1565 (sysctl_tcp_timestamps ? TCPOLEN_TSTAMP_ALIGNED : 0);
1566
1567 /* If user gave his TCP_MAXSEG, record it to clamp */
1568 if (tp->rx_opt.user_mss)
1569 tp->rx_opt.mss_clamp = tp->rx_opt.user_mss;
1570 tp->max_window = 0;
1571 tcp_sync_mss(sk, dst_mtu(dst));
1572
1573 if (!tp->window_clamp)
1574 tp->window_clamp = dst_metric(dst, RTAX_WINDOW);
1575 tp->advmss = dst_metric(dst, RTAX_ADVMSS);
1576 tcp_initialize_rcv_mss(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
1578 tcp_select_initial_window(tcp_full_space(sk),
1579 tp->advmss - (tp->rx_opt.ts_recent_stamp ? tp->tcp_header_len - sizeof(struct tcphdr) : 0),
1580 &tp->rcv_wnd,
1581 &tp->window_clamp,
1582 sysctl_tcp_window_scaling,
1583 &rcv_wscale);
1584
1585 tp->rx_opt.rcv_wscale = rcv_wscale;
1586 tp->rcv_ssthresh = tp->rcv_wnd;
1587
1588 sk->sk_err = 0;
1589 sock_reset_flag(sk, SOCK_DONE);
1590 tp->snd_wnd = 0;
1591 tcp_init_wl(tp, tp->write_seq, 0);
1592 tp->snd_una = tp->write_seq;
1593 tp->snd_sml = tp->write_seq;
1594 tp->rcv_nxt = 0;
1595 tp->rcv_wup = 0;
1596 tp->copied_seq = 0;
1597
1598 tp->rto = TCP_TIMEOUT_INIT;
1599 tp->retransmits = 0;
1600 tcp_clear_retrans(tp);
1601}
1602
1603/*
1604 * Build a SYN and send it off.
1605 */
1606int tcp_connect(struct sock *sk)
1607{
1608 struct tcp_sock *tp = tcp_sk(sk);
1609 struct sk_buff *buff;
1610
1611 tcp_connect_init(sk);
1612
1613 buff = alloc_skb(MAX_TCP_HEADER + 15, sk->sk_allocation);
1614 if (unlikely(buff == NULL))
1615 return -ENOBUFS;
1616
1617 /* Reserve space for headers. */
1618 skb_reserve(buff, MAX_TCP_HEADER);
1619
1620 TCP_SKB_CB(buff)->flags = TCPCB_FLAG_SYN;
1621 TCP_ECN_send_syn(sk, tp, buff);
1622 TCP_SKB_CB(buff)->sacked = 0;
1623 skb_shinfo(buff)->tso_segs = 1;
1624 skb_shinfo(buff)->tso_size = 0;
1625 buff->csum = 0;
1626 TCP_SKB_CB(buff)->seq = tp->write_seq++;
1627 TCP_SKB_CB(buff)->end_seq = tp->write_seq;
1628 tp->snd_nxt = tp->write_seq;
1629 tp->pushed_seq = tp->write_seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
1631 /* Send it off. */
1632 TCP_SKB_CB(buff)->when = tcp_time_stamp;
1633 tp->retrans_stamp = TCP_SKB_CB(buff)->when;
1634 skb_header_release(buff);
1635 __skb_queue_tail(&sk->sk_write_queue, buff);
1636 sk_charge_skb(sk, buff);
1637 tp->packets_out += tcp_skb_pcount(buff);
1638 tcp_transmit_skb(sk, skb_clone(buff, GFP_KERNEL));
1639 TCP_INC_STATS(TCP_MIB_ACTIVEOPENS);
1640
1641 /* Timer for repeating the SYN until an answer. */
1642 tcp_reset_xmit_timer(sk, TCP_TIME_RETRANS, tp->rto);
1643 return 0;
1644}
1645
1646/* Send out a delayed ack, the caller does the policy checking
1647 * to see if we should even be here. See tcp_input.c:tcp_ack_snd_check()
1648 * for details.
1649 */
1650void tcp_send_delayed_ack(struct sock *sk)
1651{
1652 struct tcp_sock *tp = tcp_sk(sk);
1653 int ato = tp->ack.ato;
1654 unsigned long timeout;
1655
1656 if (ato > TCP_DELACK_MIN) {
1657 int max_ato = HZ/2;
1658
1659 if (tp->ack.pingpong || (tp->ack.pending&TCP_ACK_PUSHED))
1660 max_ato = TCP_DELACK_MAX;
1661
1662 /* Slow path, intersegment interval is "high". */
1663
1664 /* If some rtt estimate is known, use it to bound delayed ack.
1665 * Do not use tp->rto here, use results of rtt measurements
1666 * directly.
1667 */
1668 if (tp->srtt) {
1669 int rtt = max(tp->srtt>>3, TCP_DELACK_MIN);
1670
1671 if (rtt < max_ato)
1672 max_ato = rtt;
1673 }
1674
1675 ato = min(ato, max_ato);
1676 }
1677
1678 /* Stay within the limit we were given */
1679 timeout = jiffies + ato;
1680
1681 /* Use new timeout only if there wasn't a older one earlier. */
1682 if (tp->ack.pending&TCP_ACK_TIMER) {
1683 /* If delack timer was blocked or is about to expire,
1684 * send ACK now.
1685 */
1686 if (tp->ack.blocked || time_before_eq(tp->ack.timeout, jiffies+(ato>>2))) {
1687 tcp_send_ack(sk);
1688 return;
1689 }
1690
1691 if (!time_before(timeout, tp->ack.timeout))
1692 timeout = tp->ack.timeout;
1693 }
1694 tp->ack.pending |= TCP_ACK_SCHED|TCP_ACK_TIMER;
1695 tp->ack.timeout = timeout;
1696 sk_reset_timer(sk, &tp->delack_timer, timeout);
1697}
1698
1699/* This routine sends an ack and also updates the window. */
1700void tcp_send_ack(struct sock *sk)
1701{
1702 /* If we have been reset, we may not send again. */
1703 if (sk->sk_state != TCP_CLOSE) {
1704 struct tcp_sock *tp = tcp_sk(sk);
1705 struct sk_buff *buff;
1706
1707 /* We are not putting this on the write queue, so
1708 * tcp_transmit_skb() will set the ownership to this
1709 * sock.
1710 */
1711 buff = alloc_skb(MAX_TCP_HEADER, GFP_ATOMIC);
1712 if (buff == NULL) {
1713 tcp_schedule_ack(tp);
1714 tp->ack.ato = TCP_ATO_MIN;
1715 tcp_reset_xmit_timer(sk, TCP_TIME_DACK, TCP_DELACK_MAX);
1716 return;
1717 }
1718
1719 /* Reserve space for headers and prepare control bits. */
1720 skb_reserve(buff, MAX_TCP_HEADER);
1721 buff->csum = 0;
1722 TCP_SKB_CB(buff)->flags = TCPCB_FLAG_ACK;
1723 TCP_SKB_CB(buff)->sacked = 0;
1724 skb_shinfo(buff)->tso_segs = 1;
1725 skb_shinfo(buff)->tso_size = 0;
1726
1727 /* Send it off, this clears delayed acks for us. */
1728 TCP_SKB_CB(buff)->seq = TCP_SKB_CB(buff)->end_seq = tcp_acceptable_seq(sk, tp);
1729 TCP_SKB_CB(buff)->when = tcp_time_stamp;
1730 tcp_transmit_skb(sk, buff);
1731 }
1732}
1733
1734/* This routine sends a packet with an out of date sequence
1735 * number. It assumes the other end will try to ack it.
1736 *
1737 * Question: what should we make while urgent mode?
1738 * 4.4BSD forces sending single byte of data. We cannot send
1739 * out of window data, because we have SND.NXT==SND.MAX...
1740 *
1741 * Current solution: to send TWO zero-length segments in urgent mode:
1742 * one is with SEG.SEQ=SND.UNA to deliver urgent pointer, another is
1743 * out-of-date with SND.UNA-1 to probe window.
1744 */
1745static int tcp_xmit_probe_skb(struct sock *sk, int urgent)
1746{
1747 struct tcp_sock *tp = tcp_sk(sk);
1748 struct sk_buff *skb;
1749
1750 /* We don't queue it, tcp_transmit_skb() sets ownership. */
1751 skb = alloc_skb(MAX_TCP_HEADER, GFP_ATOMIC);
1752 if (skb == NULL)
1753 return -1;
1754
1755 /* Reserve space for headers and set control bits. */
1756 skb_reserve(skb, MAX_TCP_HEADER);
1757 skb->csum = 0;
1758 TCP_SKB_CB(skb)->flags = TCPCB_FLAG_ACK;
1759 TCP_SKB_CB(skb)->sacked = urgent;
1760 skb_shinfo(skb)->tso_segs = 1;
1761 skb_shinfo(skb)->tso_size = 0;
1762
1763 /* Use a previous sequence. This should cause the other
1764 * end to send an ack. Don't queue or clone SKB, just
1765 * send it.
1766 */
1767 TCP_SKB_CB(skb)->seq = urgent ? tp->snd_una : tp->snd_una - 1;
1768 TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(skb)->seq;
1769 TCP_SKB_CB(skb)->when = tcp_time_stamp;
1770 return tcp_transmit_skb(sk, skb);
1771}
1772
1773int tcp_write_wakeup(struct sock *sk)
1774{
1775 if (sk->sk_state != TCP_CLOSE) {
1776 struct tcp_sock *tp = tcp_sk(sk);
1777 struct sk_buff *skb;
1778
1779 if ((skb = sk->sk_send_head) != NULL &&
1780 before(TCP_SKB_CB(skb)->seq, tp->snd_una+tp->snd_wnd)) {
1781 int err;
1782 unsigned int mss = tcp_current_mss(sk, 0);
1783 unsigned int seg_size = tp->snd_una+tp->snd_wnd-TCP_SKB_CB(skb)->seq;
1784
1785 if (before(tp->pushed_seq, TCP_SKB_CB(skb)->end_seq))
1786 tp->pushed_seq = TCP_SKB_CB(skb)->end_seq;
1787
1788 /* We are probing the opening of a window
1789 * but the window size is != 0
1790 * must have been a result SWS avoidance ( sender )
1791 */
1792 if (seg_size < TCP_SKB_CB(skb)->end_seq - TCP_SKB_CB(skb)->seq ||
1793 skb->len > mss) {
1794 seg_size = min(seg_size, mss);
1795 TCP_SKB_CB(skb)->flags |= TCPCB_FLAG_PSH;
1796 if (tcp_fragment(sk, skb, seg_size))
1797 return -1;
1798 /* SWS override triggered forced fragmentation.
1799 * Disable TSO, the connection is too sick. */
1800 if (sk->sk_route_caps & NETIF_F_TSO) {
1801 sock_set_flag(sk, SOCK_NO_LARGESEND);
1802 sk->sk_route_caps &= ~NETIF_F_TSO;
1803 tp->mss_cache = tp->mss_cache_std;
1804 }
1805 } else if (!tcp_skb_pcount(skb))
David S. Millerd5ac99a2005-04-24 19:12:33 -07001806 tcp_set_skb_tso_segs(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
1808 TCP_SKB_CB(skb)->flags |= TCPCB_FLAG_PSH;
1809 TCP_SKB_CB(skb)->when = tcp_time_stamp;
1810 tcp_tso_set_push(skb);
1811 err = tcp_transmit_skb(sk, skb_clone(skb, GFP_ATOMIC));
1812 if (!err) {
1813 update_send_head(sk, tp, skb);
1814 }
1815 return err;
1816 } else {
1817 if (tp->urg_mode &&
1818 between(tp->snd_up, tp->snd_una+1, tp->snd_una+0xFFFF))
1819 tcp_xmit_probe_skb(sk, TCPCB_URG);
1820 return tcp_xmit_probe_skb(sk, 0);
1821 }
1822 }
1823 return -1;
1824}
1825
1826/* A window probe timeout has occurred. If window is not closed send
1827 * a partial packet else a zero probe.
1828 */
1829void tcp_send_probe0(struct sock *sk)
1830{
1831 struct tcp_sock *tp = tcp_sk(sk);
1832 int err;
1833
1834 err = tcp_write_wakeup(sk);
1835
1836 if (tp->packets_out || !sk->sk_send_head) {
1837 /* Cancel probe timer, if it is not required. */
1838 tp->probes_out = 0;
1839 tp->backoff = 0;
1840 return;
1841 }
1842
1843 if (err <= 0) {
1844 if (tp->backoff < sysctl_tcp_retries2)
1845 tp->backoff++;
1846 tp->probes_out++;
1847 tcp_reset_xmit_timer (sk, TCP_TIME_PROBE0,
1848 min(tp->rto << tp->backoff, TCP_RTO_MAX));
1849 } else {
1850 /* If packet was not sent due to local congestion,
1851 * do not backoff and do not remember probes_out.
1852 * Let local senders to fight for local resources.
1853 *
1854 * Use accumulated backoff yet.
1855 */
1856 if (!tp->probes_out)
1857 tp->probes_out=1;
1858 tcp_reset_xmit_timer (sk, TCP_TIME_PROBE0,
1859 min(tp->rto << tp->backoff, TCP_RESOURCE_PROBE_INTERVAL));
1860 }
1861}
1862
1863EXPORT_SYMBOL(tcp_connect);
1864EXPORT_SYMBOL(tcp_make_synack);
1865EXPORT_SYMBOL(tcp_simple_retransmit);
1866EXPORT_SYMBOL(tcp_sync_mss);