blob: 3a0a914de917cc5b06eeb1fd00b5a1750754937f [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 */
David S. Millerc1b4a7e2005-07-05 15:24:38 -070052int sysctl_tcp_tso_win_divisor = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
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. */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700108static void tcp_cwnd_restart(struct sock *sk, struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700110 struct tcp_sock *tp = tcp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 s32 delta = tcp_time_stamp - tp->lsndtime;
112 u32 restart_cwnd = tcp_init_cwnd(tp, dst);
113 u32 cwnd = tp->snd_cwnd;
114
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300115 tcp_ca_event(sk, CA_EVENT_CWND_RESTART);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300117 tp->snd_ssthresh = tcp_current_ssthresh(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 restart_cwnd = min(restart_cwnd, cwnd);
119
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700120 while ((delta -= inet_csk(sk)->icsk_rto) > 0 && cwnd > restart_cwnd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 cwnd >>= 1;
122 tp->snd_cwnd = max(cwnd, restart_cwnd);
123 tp->snd_cwnd_stamp = tcp_time_stamp;
124 tp->snd_cwnd_used = 0;
125}
126
127static inline void tcp_event_data_sent(struct tcp_sock *tp,
128 struct sk_buff *skb, struct sock *sk)
129{
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700130 struct inet_connection_sock *icsk = inet_csk(sk);
131 const u32 now = tcp_time_stamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700133 if (!tp->packets_out && (s32)(now - tp->lsndtime) > icsk->icsk_rto)
134 tcp_cwnd_restart(sk, __sk_dst_get(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136 tp->lsndtime = now;
137
138 /* If it is a reply for ato after last received
139 * packet, enter pingpong mode.
140 */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700141 if ((u32)(now - icsk->icsk_ack.lrcvtime) < icsk->icsk_ack.ato)
142 icsk->icsk_ack.pingpong = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}
144
David S. Millerfc6415bc2005-07-05 15:17:45 -0700145static __inline__ void tcp_event_ack_sent(struct sock *sk, unsigned int pkts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700147 tcp_dec_quickack_mode(sk, pkts);
148 inet_csk_clear_xmit_timer(sk, ICSK_TIME_DACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
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,
David S. Miller6b251852005-09-28 16:31:48 -0700193 * following RFC2414. Senders, not following this RFC,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 * will be satisfied with 2.
195 */
196 if (mss > (1<<*rcv_wscale)) {
David S. Miller01ff3672005-09-29 17:07:20 -0700197 int init_cwnd = 4;
198 if (mss > 1460*3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 init_cwnd = 2;
David S. Miller01ff3672005-09-29 17:07:20 -0700200 else if (mss > 1460)
201 init_cwnd = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 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 */
David S. Millerdfb4b9d2005-12-06 16:24:52 -0800265static int tcp_transmit_skb(struct sock *sk, struct sk_buff *skb, int clone_it, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
David S. Millerdfb4b9d2005-12-06 16:24:52 -0800267 const struct inet_connection_sock *icsk = inet_csk(sk);
268 struct inet_sock *inet;
269 struct tcp_sock *tp;
270 struct tcp_skb_cb *tcb;
271 int tcp_header_size;
272 struct tcphdr *th;
273 int sysctl_flags;
274 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
David S. Millerdfb4b9d2005-12-06 16:24:52 -0800276 BUG_ON(!skb || !tcp_skb_pcount(skb));
277
278 /* If congestion control is doing timestamping, we must
279 * take such a timestamp before we potentially clone/copy.
280 */
281 if (icsk->icsk_ca_ops->rtt_sample)
282 __net_timestamp(skb);
283
284 if (likely(clone_it)) {
285 if (unlikely(skb_cloned(skb)))
286 skb = pskb_copy(skb, gfp_mask);
287 else
288 skb = skb_clone(skb, gfp_mask);
289 if (unlikely(!skb))
290 return -ENOBUFS;
291 }
292
293 inet = inet_sk(sk);
294 tp = tcp_sk(sk);
295 tcb = TCP_SKB_CB(skb);
296 tcp_header_size = tp->tcp_header_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298#define SYSCTL_FLAG_TSTAMPS 0x1
299#define SYSCTL_FLAG_WSCALE 0x2
300#define SYSCTL_FLAG_SACK 0x4
301
David S. Millerdfb4b9d2005-12-06 16:24:52 -0800302 sysctl_flags = 0;
303 if (unlikely(tcb->flags & TCPCB_FLAG_SYN)) {
304 tcp_header_size = sizeof(struct tcphdr) + TCPOLEN_MSS;
305 if(sysctl_tcp_timestamps) {
306 tcp_header_size += TCPOLEN_TSTAMP_ALIGNED;
307 sysctl_flags |= SYSCTL_FLAG_TSTAMPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 }
David S. Millerdfb4b9d2005-12-06 16:24:52 -0800309 if (sysctl_tcp_window_scaling) {
310 tcp_header_size += TCPOLEN_WSCALE_ALIGNED;
311 sysctl_flags |= SYSCTL_FLAG_WSCALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 }
David S. Millerdfb4b9d2005-12-06 16:24:52 -0800313 if (sysctl_tcp_sack) {
314 sysctl_flags |= SYSCTL_FLAG_SACK;
315 if (!(sysctl_flags & SYSCTL_FLAG_TSTAMPS))
316 tcp_header_size += TCPOLEN_SACKPERM_ALIGNED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 }
David S. Millerdfb4b9d2005-12-06 16:24:52 -0800318 } else if (unlikely(tp->rx_opt.eff_sacks)) {
319 /* A SACK is 2 pad bytes, a 2 byte header, plus
320 * 2 32-bit sequence numbers for each SACK block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 */
David S. Millerdfb4b9d2005-12-06 16:24:52 -0800322 tcp_header_size += (TCPOLEN_SACK_BASE_ALIGNED +
323 (tp->rx_opt.eff_sacks *
324 TCPOLEN_SACK_PERBLOCK));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 }
David S. Millerdfb4b9d2005-12-06 16:24:52 -0800326
327 if (tcp_packets_in_flight(tp) == 0)
328 tcp_ca_event(sk, CA_EVENT_TX_START);
329
330 th = (struct tcphdr *) skb_push(skb, tcp_header_size);
331 skb->h.th = th;
332 skb_set_owner_w(skb, sk);
333
334 /* Build TCP header and checksum it. */
335 th->source = inet->sport;
336 th->dest = inet->dport;
337 th->seq = htonl(tcb->seq);
338 th->ack_seq = htonl(tp->rcv_nxt);
339 *(((__u16 *)th) + 6) = htons(((tcp_header_size >> 2) << 12) |
340 tcb->flags);
341
342 if (unlikely(tcb->flags & TCPCB_FLAG_SYN)) {
343 /* RFC1323: The window in SYN & SYN/ACK segments
344 * is never scaled.
345 */
346 th->window = htons(tp->rcv_wnd);
347 } else {
348 th->window = htons(tcp_select_window(sk));
349 }
350 th->check = 0;
351 th->urg_ptr = 0;
352
353 if (unlikely(tp->urg_mode &&
354 between(tp->snd_up, tcb->seq+1, tcb->seq+0xFFFF))) {
355 th->urg_ptr = htons(tp->snd_up-tcb->seq);
356 th->urg = 1;
357 }
358
359 if (unlikely(tcb->flags & TCPCB_FLAG_SYN)) {
360 tcp_syn_build_options((__u32 *)(th + 1),
361 tcp_advertise_mss(sk),
362 (sysctl_flags & SYSCTL_FLAG_TSTAMPS),
363 (sysctl_flags & SYSCTL_FLAG_SACK),
364 (sysctl_flags & SYSCTL_FLAG_WSCALE),
365 tp->rx_opt.rcv_wscale,
366 tcb->when,
367 tp->rx_opt.ts_recent);
368 } else {
369 tcp_build_and_update_options((__u32 *)(th + 1),
370 tp, tcb->when);
371 TCP_ECN_send(sk, tp, skb, tcp_header_size);
372 }
373
Arnaldo Carvalho de Melo8292a172005-12-13 23:15:52 -0800374 icsk->icsk_af_ops->send_check(sk, skb->len, skb);
David S. Millerdfb4b9d2005-12-06 16:24:52 -0800375
376 if (likely(tcb->flags & TCPCB_FLAG_ACK))
377 tcp_event_ack_sent(sk, tcp_skb_pcount(skb));
378
379 if (skb->len != tcp_header_size)
380 tcp_event_data_sent(tp, skb, sk);
381
382 TCP_INC_STATS(TCP_MIB_OUTSEGS);
383
Arnaldo Carvalho de Melo8292a172005-12-13 23:15:52 -0800384 err = icsk->icsk_af_ops->queue_xmit(skb, 0);
David S. Millerdfb4b9d2005-12-06 16:24:52 -0800385 if (unlikely(err <= 0))
386 return err;
387
388 tcp_enter_cwr(sk);
389
390 /* NET_XMIT_CN is special. It does not guarantee,
391 * that this packet is lost. It tells that device
392 * is about to start to drop packets or already
393 * drops some packets of the same priority and
394 * invokes us to send less aggressively.
395 */
396 return err == NET_XMIT_CN ? 0 : err;
397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398#undef SYSCTL_FLAG_TSTAMPS
399#undef SYSCTL_FLAG_WSCALE
400#undef SYSCTL_FLAG_SACK
401}
402
403
404/* This routine just queue's the buffer
405 *
406 * NOTE: probe0 timer is not checked, do not forget tcp_push_pending_frames,
407 * otherwise socket can stall.
408 */
409static void tcp_queue_skb(struct sock *sk, struct sk_buff *skb)
410{
411 struct tcp_sock *tp = tcp_sk(sk);
412
413 /* Advance write_seq and place onto the write_queue. */
414 tp->write_seq = TCP_SKB_CB(skb)->end_seq;
415 skb_header_release(skb);
416 __skb_queue_tail(&sk->sk_write_queue, skb);
417 sk_charge_skb(sk, skb);
418
419 /* Queue it, remembering where we must start sending. */
420 if (sk->sk_send_head == NULL)
421 sk->sk_send_head = skb;
422}
423
David S. Miller846998a2005-08-04 19:52:01 -0700424static void tcp_set_skb_tso_segs(struct sock *sk, struct sk_buff *skb, unsigned int mss_now)
David S. Millerf6302d12005-07-05 15:18:03 -0700425{
David S. Miller846998a2005-08-04 19:52:01 -0700426 if (skb->len <= mss_now ||
David S. Millerf6302d12005-07-05 15:18:03 -0700427 !(sk->sk_route_caps & NETIF_F_TSO)) {
428 /* Avoid the costly divide in the normal
429 * non-TSO case.
430 */
431 skb_shinfo(skb)->tso_segs = 1;
432 skb_shinfo(skb)->tso_size = 0;
433 } else {
434 unsigned int factor;
435
David S. Miller846998a2005-08-04 19:52:01 -0700436 factor = skb->len + (mss_now - 1);
437 factor /= mss_now;
David S. Millerf6302d12005-07-05 15:18:03 -0700438 skb_shinfo(skb)->tso_segs = factor;
David S. Miller846998a2005-08-04 19:52:01 -0700439 skb_shinfo(skb)->tso_size = mss_now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 }
441}
442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443/* Function to create two new TCP segments. Shrinks the given segment
444 * to the specified size and appends a new segment with the rest of the
445 * packet to the list. This won't be called frequently, I hope.
446 * Remember, these are still headerless SKBs at this point.
447 */
David S. Miller6475be12005-09-01 22:47:01 -0700448int tcp_fragment(struct sock *sk, struct sk_buff *skb, u32 len, unsigned int mss_now)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449{
450 struct tcp_sock *tp = tcp_sk(sk);
451 struct sk_buff *buff;
David S. Miller6475be12005-09-01 22:47:01 -0700452 int nsize, old_factor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 u16 flags;
454
Herbert Xub2cc99f02005-10-20 17:13:13 -0200455 BUG_ON(len > skb->len);
Stephen Hemminger6a438bb2005-11-10 17:14:59 -0800456
457 clear_all_retrans_hints(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 nsize = skb_headlen(skb) - len;
459 if (nsize < 0)
460 nsize = 0;
461
462 if (skb_cloned(skb) &&
463 skb_is_nonlinear(skb) &&
464 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
465 return -ENOMEM;
466
467 /* Get a new skb... force flag on. */
468 buff = sk_stream_alloc_skb(sk, nsize, GFP_ATOMIC);
469 if (buff == NULL)
470 return -ENOMEM; /* We'll just try again later. */
471 sk_charge_skb(sk, buff);
472
473 /* Correct the sequence numbers. */
474 TCP_SKB_CB(buff)->seq = TCP_SKB_CB(skb)->seq + len;
475 TCP_SKB_CB(buff)->end_seq = TCP_SKB_CB(skb)->end_seq;
476 TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(buff)->seq;
477
478 /* PSH and FIN should only be set in the second packet. */
479 flags = TCP_SKB_CB(skb)->flags;
480 TCP_SKB_CB(skb)->flags = flags & ~(TCPCB_FLAG_FIN|TCPCB_FLAG_PSH);
481 TCP_SKB_CB(buff)->flags = flags;
Herbert Xue14c3ca2005-09-19 18:18:38 -0700482 TCP_SKB_CB(buff)->sacked = TCP_SKB_CB(skb)->sacked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 TCP_SKB_CB(skb)->sacked &= ~TCPCB_AT_TAIL;
484
485 if (!skb_shinfo(skb)->nr_frags && skb->ip_summed != CHECKSUM_HW) {
486 /* Copy and checksum data tail into the new buffer. */
487 buff->csum = csum_partial_copy_nocheck(skb->data + len, skb_put(buff, nsize),
488 nsize, 0);
489
490 skb_trim(skb, len);
491
492 skb->csum = csum_block_sub(skb->csum, buff->csum, len);
493 } else {
494 skb->ip_summed = CHECKSUM_HW;
495 skb_split(skb, buff, len);
496 }
497
498 buff->ip_summed = skb->ip_summed;
499
500 /* Looks stupid, but our code really uses when of
501 * skbs, which it never sent before. --ANK
502 */
503 TCP_SKB_CB(buff)->when = TCP_SKB_CB(skb)->when;
Patrick McHardya61bbcf2005-08-14 17:24:31 -0700504 buff->tstamp = skb->tstamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
David S. Miller6475be12005-09-01 22:47:01 -0700506 old_factor = tcp_skb_pcount(skb);
507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 /* Fix up tso_factor for both original and new SKB. */
David S. Miller846998a2005-08-04 19:52:01 -0700509 tcp_set_skb_tso_segs(sk, skb, mss_now);
510 tcp_set_skb_tso_segs(sk, buff, mss_now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
David S. Miller6475be12005-09-01 22:47:01 -0700512 /* If this packet has been sent out already, we must
513 * adjust the various packet counters.
514 */
Herbert Xucf0b4502005-09-08 15:10:52 -0700515 if (!before(tp->snd_nxt, TCP_SKB_CB(buff)->end_seq)) {
David S. Miller6475be12005-09-01 22:47:01 -0700516 int diff = old_factor - tcp_skb_pcount(skb) -
517 tcp_skb_pcount(buff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
David S. Miller6475be12005-09-01 22:47:01 -0700519 tp->packets_out -= diff;
Herbert Xue14c3ca2005-09-19 18:18:38 -0700520
521 if (TCP_SKB_CB(skb)->sacked & TCPCB_SACKED_ACKED)
522 tp->sacked_out -= diff;
523 if (TCP_SKB_CB(skb)->sacked & TCPCB_SACKED_RETRANS)
524 tp->retrans_out -= diff;
525
David S. Miller6475be12005-09-01 22:47:01 -0700526 if (TCP_SKB_CB(skb)->sacked & TCPCB_LOST) {
527 tp->lost_out -= diff;
528 tp->left_out -= diff;
529 }
Herbert Xu83ca28b2005-09-22 23:32:56 -0700530
David S. Miller6475be12005-09-01 22:47:01 -0700531 if (diff > 0) {
Herbert Xu83ca28b2005-09-22 23:32:56 -0700532 /* Adjust Reno SACK estimate. */
533 if (!tp->rx_opt.sack_ok) {
534 tp->sacked_out -= diff;
535 if ((int)tp->sacked_out < 0)
536 tp->sacked_out = 0;
537 tcp_sync_left_out(tp);
538 }
539
David S. Miller6475be12005-09-01 22:47:01 -0700540 tp->fackets_out -= diff;
541 if ((int)tp->fackets_out < 0)
542 tp->fackets_out = 0;
543 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 }
545
546 /* Link BUFF into the send queue. */
David S. Millerf44b5272005-07-05 15:18:34 -0700547 skb_header_release(buff);
David S. Miller8728b832005-08-09 19:25:21 -0700548 __skb_append(skb, buff, &sk->sk_write_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
550 return 0;
551}
552
553/* This is similar to __pskb_pull_head() (it will go to core/skbuff.c
554 * eventually). The difference is that pulled data not copied, but
555 * immediately discarded.
556 */
557static unsigned char *__pskb_trim_head(struct sk_buff *skb, int len)
558{
559 int i, k, eat;
560
561 eat = len;
562 k = 0;
563 for (i=0; i<skb_shinfo(skb)->nr_frags; i++) {
564 if (skb_shinfo(skb)->frags[i].size <= eat) {
565 put_page(skb_shinfo(skb)->frags[i].page);
566 eat -= skb_shinfo(skb)->frags[i].size;
567 } else {
568 skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
569 if (eat) {
570 skb_shinfo(skb)->frags[k].page_offset += eat;
571 skb_shinfo(skb)->frags[k].size -= eat;
572 eat = 0;
573 }
574 k++;
575 }
576 }
577 skb_shinfo(skb)->nr_frags = k;
578
579 skb->tail = skb->data;
580 skb->data_len -= len;
581 skb->len = skb->data_len;
582 return skb->tail;
583}
584
585int tcp_trim_head(struct sock *sk, struct sk_buff *skb, u32 len)
586{
587 if (skb_cloned(skb) &&
588 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
589 return -ENOMEM;
590
591 if (len <= skb_headlen(skb)) {
592 __skb_pull(skb, len);
593 } else {
594 if (__pskb_trim_head(skb, len-skb_headlen(skb)) == NULL)
595 return -ENOMEM;
596 }
597
598 TCP_SKB_CB(skb)->seq += len;
599 skb->ip_summed = CHECKSUM_HW;
600
601 skb->truesize -= len;
602 sk->sk_wmem_queued -= len;
603 sk->sk_forward_alloc += len;
604 sock_set_flag(sk, SOCK_QUEUE_SHRUNK);
605
606 /* Any change of skb->len requires recalculation of tso
607 * factor and mss.
608 */
609 if (tcp_skb_pcount(skb) > 1)
David S. Miller846998a2005-08-04 19:52:01 -0700610 tcp_set_skb_tso_segs(sk, skb, tcp_current_mss(sk, 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
612 return 0;
613}
614
615/* This function synchronize snd mss to current pmtu/exthdr set.
616
617 tp->rx_opt.user_mss is mss set by user by TCP_MAXSEG. It does NOT counts
618 for TCP options, but includes only bare TCP header.
619
620 tp->rx_opt.mss_clamp is mss negotiated at connection setup.
Stephen Hemmingercaa20d9a2005-11-10 17:13:47 -0800621 It is minimum of user_mss and mss received with SYN.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 It also does not include TCP options.
623
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -0800624 inet_csk(sk)->icsk_pmtu_cookie is last pmtu, seen by this function.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 tp->mss_cache is current effective sending mss, including
627 all tcp options except for SACKs. It is evaluated,
628 taking into account current pmtu, but never exceeds
629 tp->rx_opt.mss_clamp.
630
631 NOTE1. rfc1122 clearly states that advertised MSS
632 DOES NOT include either tcp or ip options.
633
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -0800634 NOTE2. inet_csk(sk)->icsk_pmtu_cookie and tp->mss_cache
635 are READ ONLY outside this function. --ANK (980731)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 */
637
638unsigned int tcp_sync_mss(struct sock *sk, u32 pmtu)
639{
640 struct tcp_sock *tp = tcp_sk(sk);
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -0800641 struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 /* Calculate base mss without TCP options:
643 It is MMS_S - sizeof(tcphdr) of rfc1122
644 */
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -0800645 int mss_now = (pmtu - icsk->icsk_af_ops->net_header_len -
Arnaldo Carvalho de Melo8292a172005-12-13 23:15:52 -0800646 sizeof(struct tcphdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
648 /* Clamp it (mss_clamp does not include tcp options) */
649 if (mss_now > tp->rx_opt.mss_clamp)
650 mss_now = tp->rx_opt.mss_clamp;
651
652 /* Now subtract optional transport overhead */
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -0800653 mss_now -= icsk->icsk_ext_hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
655 /* Then reserve room for full set of TCP options and 8 bytes of data */
656 if (mss_now < 48)
657 mss_now = 48;
658
659 /* Now subtract TCP options size, not including SACKs */
660 mss_now -= tp->tcp_header_len - sizeof(struct tcphdr);
661
662 /* Bound mss with half of window */
663 if (tp->max_window && mss_now > (tp->max_window>>1))
664 mss_now = max((tp->max_window>>1), 68U - tp->tcp_header_len);
665
666 /* And store cached results */
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -0800667 icsk->icsk_pmtu_cookie = pmtu;
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700668 tp->mss_cache = mss_now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
670 return mss_now;
671}
672
673/* Compute the current effective MSS, taking SACKs and IP options,
674 * and even PMTU discovery events into account.
675 *
676 * LARGESEND note: !urg_mode is overkill, only frames up to snd_up
677 * cannot be large. However, taking into account rare use of URG, this
678 * is not a big flaw.
679 */
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700680unsigned int tcp_current_mss(struct sock *sk, int large_allowed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
682 struct tcp_sock *tp = tcp_sk(sk);
683 struct dst_entry *dst = __sk_dst_get(sk);
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700684 u32 mss_now;
685 u16 xmit_size_goal;
686 int doing_tso = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700688 mss_now = tp->mss_cache;
689
690 if (large_allowed &&
691 (sk->sk_route_caps & NETIF_F_TSO) &&
692 !tp->urg_mode)
693 doing_tso = 1;
694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 if (dst) {
696 u32 mtu = dst_mtu(dst);
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -0800697 if (mtu != inet_csk(sk)->icsk_pmtu_cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 mss_now = tcp_sync_mss(sk, mtu);
699 }
700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 if (tp->rx_opt.eff_sacks)
702 mss_now -= (TCPOLEN_SACK_BASE_ALIGNED +
703 (tp->rx_opt.eff_sacks * TCPOLEN_SACK_PERBLOCK));
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700704
705 xmit_size_goal = mss_now;
706
707 if (doing_tso) {
Arnaldo Carvalho de Melo8292a172005-12-13 23:15:52 -0800708 xmit_size_goal = (65535 -
709 inet_csk(sk)->icsk_af_ops->net_header_len -
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -0800710 inet_csk(sk)->icsk_ext_hdr_len -
711 tp->tcp_header_len);
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700712
713 if (tp->max_window &&
714 (xmit_size_goal > (tp->max_window >> 1)))
715 xmit_size_goal = max((tp->max_window >> 1),
716 68U - tp->tcp_header_len);
717
718 xmit_size_goal -= (xmit_size_goal % mss_now);
719 }
720 tp->xmit_size_goal = xmit_size_goal;
721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 return mss_now;
723}
724
David S. Millera762a982005-07-05 15:18:51 -0700725/* Congestion window validation. (RFC2861) */
726
727static inline void tcp_cwnd_validate(struct sock *sk, struct tcp_sock *tp)
728{
729 __u32 packets_out = tp->packets_out;
730
731 if (packets_out >= tp->snd_cwnd) {
732 /* Network is feed fully. */
733 tp->snd_cwnd_used = 0;
734 tp->snd_cwnd_stamp = tcp_time_stamp;
735 } else {
736 /* Network starves. */
737 if (tp->packets_out > tp->snd_cwnd_used)
738 tp->snd_cwnd_used = tp->packets_out;
739
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700740 if ((s32)(tcp_time_stamp - tp->snd_cwnd_stamp) >= inet_csk(sk)->icsk_rto)
David S. Millera762a982005-07-05 15:18:51 -0700741 tcp_cwnd_application_limited(sk);
742 }
743}
744
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700745static unsigned int tcp_window_allows(struct tcp_sock *tp, struct sk_buff *skb, unsigned int mss_now, unsigned int cwnd)
746{
747 u32 window, cwnd_len;
748
749 window = (tp->snd_una + tp->snd_wnd - TCP_SKB_CB(skb)->seq);
750 cwnd_len = mss_now * cwnd;
751 return min(window, cwnd_len);
752}
753
754/* Can at least one segment of SKB be sent right now, according to the
755 * congestion window rules? If so, return how many segments are allowed.
756 */
757static inline unsigned int tcp_cwnd_test(struct tcp_sock *tp, struct sk_buff *skb)
758{
759 u32 in_flight, cwnd;
760
761 /* Don't be strict about the congestion window for the final FIN. */
762 if (TCP_SKB_CB(skb)->flags & TCPCB_FLAG_FIN)
763 return 1;
764
765 in_flight = tcp_packets_in_flight(tp);
766 cwnd = tp->snd_cwnd;
767 if (in_flight < cwnd)
768 return (cwnd - in_flight);
769
770 return 0;
771}
772
773/* This must be invoked the first time we consider transmitting
774 * SKB onto the wire.
775 */
David S. Miller846998a2005-08-04 19:52:01 -0700776static inline int tcp_init_tso_segs(struct sock *sk, struct sk_buff *skb, unsigned int mss_now)
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700777{
778 int tso_segs = tcp_skb_pcount(skb);
779
David S. Miller846998a2005-08-04 19:52:01 -0700780 if (!tso_segs ||
781 (tso_segs > 1 &&
782 skb_shinfo(skb)->tso_size != mss_now)) {
783 tcp_set_skb_tso_segs(sk, skb, mss_now);
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700784 tso_segs = tcp_skb_pcount(skb);
785 }
786 return tso_segs;
787}
788
789static inline int tcp_minshall_check(const struct tcp_sock *tp)
790{
791 return after(tp->snd_sml,tp->snd_una) &&
792 !after(tp->snd_sml, tp->snd_nxt);
793}
794
795/* Return 0, if packet can be sent now without violation Nagle's rules:
796 * 1. It is full sized.
797 * 2. Or it contains FIN. (already checked by caller)
798 * 3. Or TCP_NODELAY was set.
799 * 4. Or TCP_CORK is not set, and all sent packets are ACKed.
800 * With Minshall's modification: all sent small packets are ACKed.
801 */
802
803static inline int tcp_nagle_check(const struct tcp_sock *tp,
804 const struct sk_buff *skb,
805 unsigned mss_now, int nonagle)
806{
807 return (skb->len < mss_now &&
808 ((nonagle&TCP_NAGLE_CORK) ||
809 (!nonagle &&
810 tp->packets_out &&
811 tcp_minshall_check(tp))));
812}
813
814/* Return non-zero if the Nagle test allows this packet to be
815 * sent now.
816 */
817static inline int tcp_nagle_test(struct tcp_sock *tp, struct sk_buff *skb,
818 unsigned int cur_mss, int nonagle)
819{
820 /* Nagle rule does not apply to frames, which sit in the middle of the
821 * write_queue (they have no chances to get new data).
822 *
823 * This is implemented in the callers, where they modify the 'nonagle'
824 * argument based upon the location of SKB in the send queue.
825 */
826 if (nonagle & TCP_NAGLE_PUSH)
827 return 1;
828
829 /* Don't use the nagle rule for urgent data (or for the final FIN). */
830 if (tp->urg_mode ||
831 (TCP_SKB_CB(skb)->flags & TCPCB_FLAG_FIN))
832 return 1;
833
834 if (!tcp_nagle_check(tp, skb, cur_mss, nonagle))
835 return 1;
836
837 return 0;
838}
839
840/* Does at least the first segment of SKB fit into the send window? */
841static inline int tcp_snd_wnd_test(struct tcp_sock *tp, struct sk_buff *skb, unsigned int cur_mss)
842{
843 u32 end_seq = TCP_SKB_CB(skb)->end_seq;
844
845 if (skb->len > cur_mss)
846 end_seq = TCP_SKB_CB(skb)->seq + cur_mss;
847
848 return !after(end_seq, tp->snd_una + tp->snd_wnd);
849}
850
851/* This checks if the data bearing packet SKB (usually sk->sk_send_head)
852 * should be put on the wire right now. If so, it returns the number of
853 * packets allowed by the congestion window.
854 */
855static unsigned int tcp_snd_test(struct sock *sk, struct sk_buff *skb,
856 unsigned int cur_mss, int nonagle)
857{
858 struct tcp_sock *tp = tcp_sk(sk);
859 unsigned int cwnd_quota;
860
David S. Miller846998a2005-08-04 19:52:01 -0700861 tcp_init_tso_segs(sk, skb, cur_mss);
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700862
863 if (!tcp_nagle_test(tp, skb, cur_mss, nonagle))
864 return 0;
865
866 cwnd_quota = tcp_cwnd_test(tp, skb);
867 if (cwnd_quota &&
868 !tcp_snd_wnd_test(tp, skb, cur_mss))
869 cwnd_quota = 0;
870
871 return cwnd_quota;
872}
873
874static inline int tcp_skb_is_last(const struct sock *sk,
875 const struct sk_buff *skb)
876{
877 return skb->next == (struct sk_buff *)&sk->sk_write_queue;
878}
879
880int tcp_may_send_now(struct sock *sk, struct tcp_sock *tp)
881{
882 struct sk_buff *skb = sk->sk_send_head;
883
884 return (skb &&
885 tcp_snd_test(sk, skb, tcp_current_mss(sk, 1),
886 (tcp_skb_is_last(sk, skb) ?
887 TCP_NAGLE_PUSH :
888 tp->nonagle)));
889}
890
891/* Trim TSO SKB to LEN bytes, put the remaining data into a new packet
892 * which is put after SKB on the list. It is very much like
893 * tcp_fragment() except that it may make several kinds of assumptions
894 * in order to speed up the splitting operation. In particular, we
895 * know that all the data is in scatter-gather pages, and that the
896 * packet has never been sent out before (and thus is not cloned).
897 */
David S. Miller846998a2005-08-04 19:52:01 -0700898static int tso_fragment(struct sock *sk, struct sk_buff *skb, unsigned int len, unsigned int mss_now)
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700899{
900 struct sk_buff *buff;
901 int nlen = skb->len - len;
902 u16 flags;
903
904 /* All of a TSO frame must be composed of paged data. */
Herbert Xuc8ac3772005-08-16 20:43:40 -0700905 if (skb->len != skb->data_len)
906 return tcp_fragment(sk, skb, len, mss_now);
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700907
908 buff = sk_stream_alloc_pskb(sk, 0, 0, GFP_ATOMIC);
909 if (unlikely(buff == NULL))
910 return -ENOMEM;
911
912 buff->truesize = nlen;
913 skb->truesize -= nlen;
914
915 /* Correct the sequence numbers. */
916 TCP_SKB_CB(buff)->seq = TCP_SKB_CB(skb)->seq + len;
917 TCP_SKB_CB(buff)->end_seq = TCP_SKB_CB(skb)->end_seq;
918 TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(buff)->seq;
919
920 /* PSH and FIN should only be set in the second packet. */
921 flags = TCP_SKB_CB(skb)->flags;
922 TCP_SKB_CB(skb)->flags = flags & ~(TCPCB_FLAG_FIN|TCPCB_FLAG_PSH);
923 TCP_SKB_CB(buff)->flags = flags;
924
925 /* This packet was never sent out yet, so no SACK bits. */
926 TCP_SKB_CB(buff)->sacked = 0;
927
928 buff->ip_summed = skb->ip_summed = CHECKSUM_HW;
929 skb_split(skb, buff, len);
930
931 /* Fix up tso_factor for both original and new SKB. */
David S. Miller846998a2005-08-04 19:52:01 -0700932 tcp_set_skb_tso_segs(sk, skb, mss_now);
933 tcp_set_skb_tso_segs(sk, buff, mss_now);
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700934
935 /* Link BUFF into the send queue. */
936 skb_header_release(buff);
David S. Miller8728b832005-08-09 19:25:21 -0700937 __skb_append(skb, buff, &sk->sk_write_queue);
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700938
939 return 0;
940}
941
942/* Try to defer sending, if possible, in order to minimize the amount
943 * of TSO splitting we do. View it as a kind of TSO Nagle test.
944 *
945 * This algorithm is from John Heffner.
946 */
947static int tcp_tso_should_defer(struct sock *sk, struct tcp_sock *tp, struct sk_buff *skb)
948{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300949 const struct inet_connection_sock *icsk = inet_csk(sk);
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700950 u32 send_win, cong_win, limit, in_flight;
951
952 if (TCP_SKB_CB(skb)->flags & TCPCB_FLAG_FIN)
953 return 0;
954
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300955 if (icsk->icsk_ca_state != TCP_CA_Open)
David S. Miller908a75c2005-07-05 15:43:58 -0700956 return 0;
957
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700958 in_flight = tcp_packets_in_flight(tp);
959
960 BUG_ON(tcp_skb_pcount(skb) <= 1 ||
961 (tp->snd_cwnd <= in_flight));
962
963 send_win = (tp->snd_una + tp->snd_wnd) - TCP_SKB_CB(skb)->seq;
964
965 /* From in_flight test above, we know that cwnd > in_flight. */
966 cong_win = (tp->snd_cwnd - in_flight) * tp->mss_cache;
967
968 limit = min(send_win, cong_win);
969
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700970 if (sysctl_tcp_tso_win_divisor) {
971 u32 chunk = min(tp->snd_wnd, tp->snd_cwnd * tp->mss_cache);
972
973 /* If at least some fraction of a window is available,
974 * just use it.
975 */
976 chunk /= sysctl_tcp_tso_win_divisor;
977 if (limit >= chunk)
978 return 0;
979 } else {
980 /* Different approach, try not to defer past a single
981 * ACK. Receiver should ACK every other full sized
982 * frame, so if we have space for more than 3 frames
983 * then send now.
984 */
985 if (limit > tcp_max_burst(tp) * tp->mss_cache)
986 return 0;
987 }
988
989 /* Ok, it looks like it is advisable to defer. */
990 return 1;
991}
992
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993/* This routine writes packets to the network. It advances the
994 * send_head. This happens as incoming acks open up the remote
995 * window for us.
996 *
997 * Returns 1, if no segments are in flight and we have queued segments, but
998 * cannot send anything now because of SWS or another problem.
999 */
David S. Millera2e2a592005-07-05 15:19:23 -07001000static int tcp_write_xmit(struct sock *sk, unsigned int mss_now, int nonagle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001{
1002 struct tcp_sock *tp = tcp_sk(sk);
David S. Miller92df7b52005-07-05 15:19:06 -07001003 struct sk_buff *skb;
David S. Millerc1b4a7e2005-07-05 15:24:38 -07001004 unsigned int tso_segs, sent_pkts;
1005 int cwnd_quota;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
1007 /* If we are closed, the bytes will have to remain here.
1008 * In time closedown will finish, we empty the write queue and all
1009 * will be happy.
1010 */
David S. Miller92df7b52005-07-05 15:19:06 -07001011 if (unlikely(sk->sk_state == TCP_CLOSE))
1012 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
David S. Miller92df7b52005-07-05 15:19:06 -07001014 sent_pkts = 0;
Herbert Xub68e9f82005-08-04 19:52:02 -07001015 while ((skb = sk->sk_send_head)) {
Herbert Xuc8ac3772005-08-16 20:43:40 -07001016 unsigned int limit;
1017
Herbert Xub68e9f82005-08-04 19:52:02 -07001018 tso_segs = tcp_init_tso_segs(sk, skb, mss_now);
David S. Millerc1b4a7e2005-07-05 15:24:38 -07001019 BUG_ON(!tso_segs);
David S. Milleraa934662005-07-05 15:20:09 -07001020
Herbert Xub68e9f82005-08-04 19:52:02 -07001021 cwnd_quota = tcp_cwnd_test(tp, skb);
1022 if (!cwnd_quota)
1023 break;
1024
1025 if (unlikely(!tcp_snd_wnd_test(tp, skb, mss_now)))
1026 break;
1027
David S. Millerc1b4a7e2005-07-05 15:24:38 -07001028 if (tso_segs == 1) {
1029 if (unlikely(!tcp_nagle_test(tp, skb, mss_now,
1030 (tcp_skb_is_last(sk, skb) ?
1031 nonagle : TCP_NAGLE_PUSH))))
1032 break;
1033 } else {
1034 if (tcp_tso_should_defer(sk, tp, skb))
1035 break;
1036 }
David S. Milleraa934662005-07-05 15:20:09 -07001037
Herbert Xuc8ac3772005-08-16 20:43:40 -07001038 limit = mss_now;
David S. Millerc1b4a7e2005-07-05 15:24:38 -07001039 if (tso_segs > 1) {
Herbert Xuc8ac3772005-08-16 20:43:40 -07001040 limit = tcp_window_allows(tp, skb,
1041 mss_now, cwnd_quota);
David S. Milleraa934662005-07-05 15:20:09 -07001042
David S. Millerc1b4a7e2005-07-05 15:24:38 -07001043 if (skb->len < limit) {
1044 unsigned int trim = skb->len % mss_now;
1045
1046 if (trim)
1047 limit = skb->len - trim;
1048 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 }
1050
Herbert Xuc8ac3772005-08-16 20:43:40 -07001051 if (skb->len > limit &&
1052 unlikely(tso_fragment(sk, skb, limit, mss_now)))
1053 break;
1054
David S. Miller92df7b52005-07-05 15:19:06 -07001055 TCP_SKB_CB(skb)->when = tcp_time_stamp;
David S. Millerc1b4a7e2005-07-05 15:24:38 -07001056
David S. Millerdfb4b9d2005-12-06 16:24:52 -08001057 if (unlikely(tcp_transmit_skb(sk, skb, 1, GFP_ATOMIC)))
David S. Miller92df7b52005-07-05 15:19:06 -07001058 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
David S. Miller92df7b52005-07-05 15:19:06 -07001060 /* Advance the send_head. This one is sent out.
1061 * This call will increment packets_out.
1062 */
1063 update_send_head(sk, tp, skb);
1064
1065 tcp_minshall_update(tp, mss_now, skb);
David S. Milleraa934662005-07-05 15:20:09 -07001066 sent_pkts++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 }
David S. Miller92df7b52005-07-05 15:19:06 -07001068
David S. Milleraa934662005-07-05 15:20:09 -07001069 if (likely(sent_pkts)) {
David S. Miller92df7b52005-07-05 15:19:06 -07001070 tcp_cwnd_validate(sk, tp);
1071 return 0;
1072 }
David S. Miller92df7b52005-07-05 15:19:06 -07001073 return !tp->packets_out && sk->sk_send_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074}
1075
David S. Millera762a982005-07-05 15:18:51 -07001076/* Push out any pending frames which were held back due to
1077 * TCP_CORK or attempt at coalescing tiny packets.
1078 * The socket must be locked by the caller.
1079 */
1080void __tcp_push_pending_frames(struct sock *sk, struct tcp_sock *tp,
David S. Millera2e2a592005-07-05 15:19:23 -07001081 unsigned int cur_mss, int nonagle)
David S. Millera762a982005-07-05 15:18:51 -07001082{
1083 struct sk_buff *skb = sk->sk_send_head;
1084
1085 if (skb) {
David S. Miller55c97f32005-07-05 15:19:38 -07001086 if (tcp_write_xmit(sk, cur_mss, nonagle))
David S. Millera762a982005-07-05 15:18:51 -07001087 tcp_check_probe_timer(sk, tp);
1088 }
1089}
1090
David S. Millerc1b4a7e2005-07-05 15:24:38 -07001091/* Send _single_ skb sitting at the send head. This function requires
1092 * true push pending frames to setup probe timer etc.
1093 */
1094void tcp_push_one(struct sock *sk, unsigned int mss_now)
1095{
1096 struct tcp_sock *tp = tcp_sk(sk);
1097 struct sk_buff *skb = sk->sk_send_head;
1098 unsigned int tso_segs, cwnd_quota;
1099
1100 BUG_ON(!skb || skb->len < mss_now);
1101
David S. Miller846998a2005-08-04 19:52:01 -07001102 tso_segs = tcp_init_tso_segs(sk, skb, mss_now);
David S. Millerc1b4a7e2005-07-05 15:24:38 -07001103 cwnd_quota = tcp_snd_test(sk, skb, mss_now, TCP_NAGLE_PUSH);
1104
1105 if (likely(cwnd_quota)) {
Herbert Xuc8ac3772005-08-16 20:43:40 -07001106 unsigned int limit;
1107
David S. Millerc1b4a7e2005-07-05 15:24:38 -07001108 BUG_ON(!tso_segs);
1109
Herbert Xuc8ac3772005-08-16 20:43:40 -07001110 limit = mss_now;
David S. Millerc1b4a7e2005-07-05 15:24:38 -07001111 if (tso_segs > 1) {
Herbert Xuc8ac3772005-08-16 20:43:40 -07001112 limit = tcp_window_allows(tp, skb,
1113 mss_now, cwnd_quota);
David S. Millerc1b4a7e2005-07-05 15:24:38 -07001114
1115 if (skb->len < limit) {
1116 unsigned int trim = skb->len % mss_now;
1117
1118 if (trim)
1119 limit = skb->len - trim;
1120 }
David S. Millerc1b4a7e2005-07-05 15:24:38 -07001121 }
1122
Herbert Xuc8ac3772005-08-16 20:43:40 -07001123 if (skb->len > limit &&
1124 unlikely(tso_fragment(sk, skb, limit, mss_now)))
1125 return;
1126
David S. Millerc1b4a7e2005-07-05 15:24:38 -07001127 /* Send it out now. */
1128 TCP_SKB_CB(skb)->when = tcp_time_stamp;
1129
David S. Millerdfb4b9d2005-12-06 16:24:52 -08001130 if (likely(!tcp_transmit_skb(sk, skb, 1, sk->sk_allocation))) {
David S. Millerc1b4a7e2005-07-05 15:24:38 -07001131 update_send_head(sk, tp, skb);
1132 tcp_cwnd_validate(sk, tp);
1133 return;
1134 }
1135 }
1136}
1137
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138/* This function returns the amount that we can raise the
1139 * usable window based on the following constraints
1140 *
1141 * 1. The window can never be shrunk once it is offered (RFC 793)
1142 * 2. We limit memory per socket
1143 *
1144 * RFC 1122:
1145 * "the suggested [SWS] avoidance algorithm for the receiver is to keep
1146 * RECV.NEXT + RCV.WIN fixed until:
1147 * RCV.BUFF - RCV.USER - RCV.WINDOW >= min(1/2 RCV.BUFF, MSS)"
1148 *
1149 * i.e. don't raise the right edge of the window until you can raise
1150 * it at least MSS bytes.
1151 *
1152 * Unfortunately, the recommended algorithm breaks header prediction,
1153 * since header prediction assumes th->window stays fixed.
1154 *
1155 * Strictly speaking, keeping th->window fixed violates the receiver
1156 * side SWS prevention criteria. The problem is that under this rule
1157 * a stream of single byte packets will cause the right side of the
1158 * window to always advance by a single byte.
1159 *
1160 * Of course, if the sender implements sender side SWS prevention
1161 * then this will not be a problem.
1162 *
1163 * BSD seems to make the following compromise:
1164 *
1165 * If the free space is less than the 1/4 of the maximum
1166 * space available and the free space is less than 1/2 mss,
1167 * then set the window to 0.
1168 * [ Actually, bsd uses MSS and 1/4 of maximal _window_ ]
1169 * Otherwise, just prevent the window from shrinking
1170 * and from being larger than the largest representable value.
1171 *
1172 * This prevents incremental opening of the window in the regime
1173 * where TCP is limited by the speed of the reader side taking
1174 * data out of the TCP receive queue. It does nothing about
1175 * those cases where the window is constrained on the sender side
1176 * because the pipeline is full.
1177 *
1178 * BSD also seems to "accidentally" limit itself to windows that are a
1179 * multiple of MSS, at least until the free space gets quite small.
1180 * This would appear to be a side effect of the mbuf implementation.
1181 * Combining these two algorithms results in the observed behavior
1182 * of having a fixed window size at almost all times.
1183 *
1184 * Below we obtain similar behavior by forcing the offered window to
1185 * a multiple of the mss when it is feasible to do so.
1186 *
1187 * Note, we don't "adjust" for TIMESTAMP or SACK option bytes.
1188 * Regular options like TIMESTAMP are taken into account.
1189 */
1190u32 __tcp_select_window(struct sock *sk)
1191{
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001192 struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 struct tcp_sock *tp = tcp_sk(sk);
Stephen Hemmingercaa20d9a2005-11-10 17:13:47 -08001194 /* MSS for the peer's data. Previous versions used mss_clamp
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 * here. I don't know if the value based on our guesses
1196 * of peer's MSS is better for the performance. It's more correct
1197 * but may be worse for the performance because of rcv_mss
1198 * fluctuations. --SAW 1998/11/1
1199 */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001200 int mss = icsk->icsk_ack.rcv_mss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 int free_space = tcp_space(sk);
1202 int full_space = min_t(int, tp->window_clamp, tcp_full_space(sk));
1203 int window;
1204
1205 if (mss > full_space)
1206 mss = full_space;
1207
1208 if (free_space < full_space/2) {
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001209 icsk->icsk_ack.quick = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
1211 if (tcp_memory_pressure)
1212 tp->rcv_ssthresh = min(tp->rcv_ssthresh, 4U*tp->advmss);
1213
1214 if (free_space < mss)
1215 return 0;
1216 }
1217
1218 if (free_space > tp->rcv_ssthresh)
1219 free_space = tp->rcv_ssthresh;
1220
1221 /* Don't do rounding if we are using window scaling, since the
1222 * scaled window will not line up with the MSS boundary anyway.
1223 */
1224 window = tp->rcv_wnd;
1225 if (tp->rx_opt.rcv_wscale) {
1226 window = free_space;
1227
1228 /* Advertise enough space so that it won't get scaled away.
1229 * Import case: prevent zero window announcement if
1230 * 1<<rcv_wscale > mss.
1231 */
1232 if (((window >> tp->rx_opt.rcv_wscale) << tp->rx_opt.rcv_wscale) != window)
1233 window = (((window >> tp->rx_opt.rcv_wscale) + 1)
1234 << tp->rx_opt.rcv_wscale);
1235 } else {
1236 /* Get the largest window that is a nice multiple of mss.
1237 * Window clamp already applied above.
1238 * If our current window offering is within 1 mss of the
1239 * free space we just keep it. This prevents the divide
1240 * and multiply from happening most of the time.
1241 * We also don't do any window rounding when the free space
1242 * is too small.
1243 */
1244 if (window <= free_space - mss || window > free_space)
1245 window = (free_space/mss)*mss;
1246 }
1247
1248 return window;
1249}
1250
1251/* Attempt to collapse two adjacent SKB's during retransmission. */
1252static void tcp_retrans_try_collapse(struct sock *sk, struct sk_buff *skb, int mss_now)
1253{
1254 struct tcp_sock *tp = tcp_sk(sk);
1255 struct sk_buff *next_skb = skb->next;
1256
1257 /* The first test we must make is that neither of these two
1258 * SKB's are still referenced by someone else.
1259 */
1260 if (!skb_cloned(skb) && !skb_cloned(next_skb)) {
1261 int skb_size = skb->len, next_skb_size = next_skb->len;
1262 u16 flags = TCP_SKB_CB(skb)->flags;
1263
1264 /* Also punt if next skb has been SACK'd. */
1265 if(TCP_SKB_CB(next_skb)->sacked & TCPCB_SACKED_ACKED)
1266 return;
1267
1268 /* Next skb is out of window. */
1269 if (after(TCP_SKB_CB(next_skb)->end_seq, tp->snd_una+tp->snd_wnd))
1270 return;
1271
1272 /* Punt if not enough space exists in the first SKB for
1273 * the data in the second, or the total combined payload
1274 * would exceed the MSS.
1275 */
1276 if ((next_skb_size > skb_tailroom(skb)) ||
1277 ((skb_size + next_skb_size) > mss_now))
1278 return;
1279
1280 BUG_ON(tcp_skb_pcount(skb) != 1 ||
1281 tcp_skb_pcount(next_skb) != 1);
1282
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001283 /* changing transmit queue under us so clear hints */
1284 clear_all_retrans_hints(tp);
1285
1286 /* Ok. We will be able to collapse the packet. */
David S. Miller8728b832005-08-09 19:25:21 -07001287 __skb_unlink(next_skb, &sk->sk_write_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
1289 memcpy(skb_put(skb, next_skb_size), next_skb->data, next_skb_size);
1290
1291 if (next_skb->ip_summed == CHECKSUM_HW)
1292 skb->ip_summed = CHECKSUM_HW;
1293
1294 if (skb->ip_summed != CHECKSUM_HW)
1295 skb->csum = csum_block_add(skb->csum, next_skb->csum, skb_size);
1296
1297 /* Update sequence range on original skb. */
1298 TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(next_skb)->end_seq;
1299
1300 /* Merge over control information. */
1301 flags |= TCP_SKB_CB(next_skb)->flags; /* This moves PSH/FIN etc. over */
1302 TCP_SKB_CB(skb)->flags = flags;
1303
1304 /* All done, get rid of second SKB and account for it so
1305 * packet counting does not break.
1306 */
1307 TCP_SKB_CB(skb)->sacked |= TCP_SKB_CB(next_skb)->sacked&(TCPCB_EVER_RETRANS|TCPCB_AT_TAIL);
1308 if (TCP_SKB_CB(next_skb)->sacked&TCPCB_SACKED_RETRANS)
1309 tp->retrans_out -= tcp_skb_pcount(next_skb);
1310 if (TCP_SKB_CB(next_skb)->sacked&TCPCB_LOST) {
1311 tp->lost_out -= tcp_skb_pcount(next_skb);
1312 tp->left_out -= tcp_skb_pcount(next_skb);
1313 }
1314 /* Reno case is special. Sigh... */
1315 if (!tp->rx_opt.sack_ok && tp->sacked_out) {
1316 tcp_dec_pcount_approx(&tp->sacked_out, next_skb);
1317 tp->left_out -= tcp_skb_pcount(next_skb);
1318 }
1319
1320 /* Not quite right: it can be > snd.fack, but
1321 * it is better to underestimate fackets.
1322 */
1323 tcp_dec_pcount_approx(&tp->fackets_out, next_skb);
1324 tcp_packets_out_dec(tp, next_skb);
1325 sk_stream_free_skb(sk, next_skb);
1326 }
1327}
1328
1329/* Do a simple retransmit without using the backoff mechanisms in
1330 * tcp_timer. This is used for path mtu discovery.
1331 * The socket is already locked here.
1332 */
1333void tcp_simple_retransmit(struct sock *sk)
1334{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001335 const struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 struct tcp_sock *tp = tcp_sk(sk);
1337 struct sk_buff *skb;
1338 unsigned int mss = tcp_current_mss(sk, 0);
1339 int lost = 0;
1340
1341 sk_stream_for_retrans_queue(skb, sk) {
1342 if (skb->len > mss &&
1343 !(TCP_SKB_CB(skb)->sacked&TCPCB_SACKED_ACKED)) {
1344 if (TCP_SKB_CB(skb)->sacked&TCPCB_SACKED_RETRANS) {
1345 TCP_SKB_CB(skb)->sacked &= ~TCPCB_SACKED_RETRANS;
1346 tp->retrans_out -= tcp_skb_pcount(skb);
1347 }
1348 if (!(TCP_SKB_CB(skb)->sacked&TCPCB_LOST)) {
1349 TCP_SKB_CB(skb)->sacked |= TCPCB_LOST;
1350 tp->lost_out += tcp_skb_pcount(skb);
1351 lost = 1;
1352 }
1353 }
1354 }
1355
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001356 clear_all_retrans_hints(tp);
1357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 if (!lost)
1359 return;
1360
1361 tcp_sync_left_out(tp);
1362
1363 /* Don't muck with the congestion window here.
1364 * Reason is that we do not increase amount of _data_
1365 * in network, but units changed and effective
1366 * cwnd/ssthresh really reduced now.
1367 */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001368 if (icsk->icsk_ca_state != TCP_CA_Loss) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 tp->high_seq = tp->snd_nxt;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001370 tp->snd_ssthresh = tcp_current_ssthresh(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 tp->prior_ssthresh = 0;
1372 tp->undo_marker = 0;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001373 tcp_set_ca_state(sk, TCP_CA_Loss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 }
1375 tcp_xmit_retransmit_queue(sk);
1376}
1377
1378/* This retransmits one SKB. Policy decisions and retransmit queue
1379 * state updates are done by the caller. Returns non-zero if an
1380 * error occurred which prevented the send.
1381 */
1382int tcp_retransmit_skb(struct sock *sk, struct sk_buff *skb)
1383{
1384 struct tcp_sock *tp = tcp_sk(sk);
1385 unsigned int cur_mss = tcp_current_mss(sk, 0);
1386 int err;
1387
1388 /* Do not sent more than we queued. 1/4 is reserved for possible
Stephen Hemmingercaa20d9a2005-11-10 17:13:47 -08001389 * copying overhead: fragmentation, tunneling, mangling etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 */
1391 if (atomic_read(&sk->sk_wmem_alloc) >
1392 min(sk->sk_wmem_queued + (sk->sk_wmem_queued >> 2), sk->sk_sndbuf))
1393 return -EAGAIN;
1394
1395 if (before(TCP_SKB_CB(skb)->seq, tp->snd_una)) {
1396 if (before(TCP_SKB_CB(skb)->end_seq, tp->snd_una))
1397 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 if (tcp_trim_head(sk, skb, tp->snd_una - TCP_SKB_CB(skb)->seq))
1399 return -ENOMEM;
1400 }
1401
1402 /* If receiver has shrunk his window, and skb is out of
1403 * new window, do not retransmit it. The exception is the
1404 * case, when window is shrunk to zero. In this case
1405 * our retransmit serves as a zero window probe.
1406 */
1407 if (!before(TCP_SKB_CB(skb)->seq, tp->snd_una+tp->snd_wnd)
1408 && TCP_SKB_CB(skb)->seq != tp->snd_una)
1409 return -EAGAIN;
1410
1411 if (skb->len > cur_mss) {
David S. Miller846998a2005-08-04 19:52:01 -07001412 if (tcp_fragment(sk, skb, cur_mss, cur_mss))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 return -ENOMEM; /* We'll try again later. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 }
1415
1416 /* Collapse two adjacent packets if worthwhile and we can. */
1417 if(!(TCP_SKB_CB(skb)->flags & TCPCB_FLAG_SYN) &&
1418 (skb->len < (cur_mss >> 1)) &&
1419 (skb->next != sk->sk_send_head) &&
1420 (skb->next != (struct sk_buff *)&sk->sk_write_queue) &&
1421 (skb_shinfo(skb)->nr_frags == 0 && skb_shinfo(skb->next)->nr_frags == 0) &&
1422 (tcp_skb_pcount(skb) == 1 && tcp_skb_pcount(skb->next) == 1) &&
1423 (sysctl_tcp_retrans_collapse != 0))
1424 tcp_retrans_try_collapse(sk, skb, cur_mss);
1425
Arnaldo Carvalho de Melo8292a172005-12-13 23:15:52 -08001426 if (inet_csk(sk)->icsk_af_ops->rebuild_header(sk))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 return -EHOSTUNREACH; /* Routing failure or similar. */
1428
1429 /* Some Solaris stacks overoptimize and ignore the FIN on a
1430 * retransmit when old data is attached. So strip it off
1431 * since it is cheap to do so and saves bytes on the network.
1432 */
1433 if(skb->len > 0 &&
1434 (TCP_SKB_CB(skb)->flags & TCPCB_FLAG_FIN) &&
1435 tp->snd_una == (TCP_SKB_CB(skb)->end_seq - 1)) {
1436 if (!pskb_trim(skb, 0)) {
1437 TCP_SKB_CB(skb)->seq = TCP_SKB_CB(skb)->end_seq - 1;
1438 skb_shinfo(skb)->tso_segs = 1;
1439 skb_shinfo(skb)->tso_size = 0;
1440 skb->ip_summed = CHECKSUM_NONE;
1441 skb->csum = 0;
1442 }
1443 }
1444
1445 /* Make a copy, if the first transmission SKB clone we made
1446 * is still in somebody's hands, else make a clone.
1447 */
1448 TCP_SKB_CB(skb)->when = tcp_time_stamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
David S. Millerdfb4b9d2005-12-06 16:24:52 -08001450 err = tcp_transmit_skb(sk, skb, 1, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
1452 if (err == 0) {
1453 /* Update global TCP statistics. */
1454 TCP_INC_STATS(TCP_MIB_RETRANSSEGS);
1455
1456 tp->total_retrans++;
1457
1458#if FASTRETRANS_DEBUG > 0
1459 if (TCP_SKB_CB(skb)->sacked&TCPCB_SACKED_RETRANS) {
1460 if (net_ratelimit())
1461 printk(KERN_DEBUG "retrans_out leaked.\n");
1462 }
1463#endif
1464 TCP_SKB_CB(skb)->sacked |= TCPCB_RETRANS;
1465 tp->retrans_out += tcp_skb_pcount(skb);
1466
1467 /* Save stamp of the first retransmit. */
1468 if (!tp->retrans_stamp)
1469 tp->retrans_stamp = TCP_SKB_CB(skb)->when;
1470
1471 tp->undo_retrans++;
1472
1473 /* snd_nxt is stored to detect loss of retransmitted segment,
1474 * see tcp_input.c tcp_sacktag_write_queue().
1475 */
1476 TCP_SKB_CB(skb)->ack_seq = tp->snd_nxt;
1477 }
1478 return err;
1479}
1480
1481/* This gets called after a retransmit timeout, and the initially
1482 * retransmitted data is acknowledged. It tries to continue
1483 * resending the rest of the retransmit queue, until either
1484 * we've sent it all or the congestion window limit is reached.
1485 * If doing SACK, the first ACK which comes back for a timeout
1486 * based retransmit packet might feed us FACK information again.
1487 * If so, we use it to avoid unnecessarily retransmissions.
1488 */
1489void tcp_xmit_retransmit_queue(struct sock *sk)
1490{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001491 const struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 struct tcp_sock *tp = tcp_sk(sk);
1493 struct sk_buff *skb;
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001494 int packet_cnt;
1495
1496 if (tp->retransmit_skb_hint) {
1497 skb = tp->retransmit_skb_hint;
1498 packet_cnt = tp->retransmit_cnt_hint;
1499 }else{
1500 skb = sk->sk_write_queue.next;
1501 packet_cnt = 0;
1502 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
1504 /* First pass: retransmit lost packets. */
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001505 if (tp->lost_out) {
1506 sk_stream_for_retrans_queue_from(skb, sk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 __u8 sacked = TCP_SKB_CB(skb)->sacked;
1508
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001509 /* we could do better than to assign each time */
1510 tp->retransmit_skb_hint = skb;
1511 tp->retransmit_cnt_hint = packet_cnt;
1512
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 /* Assume this retransmit will generate
1514 * only one packet for congestion window
1515 * calculation purposes. This works because
1516 * tcp_retransmit_skb() will chop up the
1517 * packet to be MSS sized and all the
1518 * packet counting works out.
1519 */
1520 if (tcp_packets_in_flight(tp) >= tp->snd_cwnd)
1521 return;
1522
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001523 if (sacked & TCPCB_LOST) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 if (!(sacked&(TCPCB_SACKED_ACKED|TCPCB_SACKED_RETRANS))) {
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001525 if (tcp_retransmit_skb(sk, skb)) {
1526 tp->retransmit_skb_hint = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 return;
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001528 }
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001529 if (icsk->icsk_ca_state != TCP_CA_Loss)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 NET_INC_STATS_BH(LINUX_MIB_TCPFASTRETRANS);
1531 else
1532 NET_INC_STATS_BH(LINUX_MIB_TCPSLOWSTARTRETRANS);
1533
1534 if (skb ==
1535 skb_peek(&sk->sk_write_queue))
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001536 inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS,
Arnaldo Carvalho de Melo3f421ba2005-08-09 20:11:08 -07001537 inet_csk(sk)->icsk_rto,
1538 TCP_RTO_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 }
1540
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001541 packet_cnt += tcp_skb_pcount(skb);
1542 if (packet_cnt >= tp->lost_out)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 break;
1544 }
1545 }
1546 }
1547
1548 /* OK, demanded retransmission is finished. */
1549
1550 /* Forward retransmissions are possible only during Recovery. */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001551 if (icsk->icsk_ca_state != TCP_CA_Recovery)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 return;
1553
1554 /* No forward retransmissions in Reno are possible. */
1555 if (!tp->rx_opt.sack_ok)
1556 return;
1557
1558 /* Yeah, we have to make difficult choice between forward transmission
1559 * and retransmission... Both ways have their merits...
1560 *
1561 * For now we do not retransmit anything, while we have some new
1562 * segments to send.
1563 */
1564
1565 if (tcp_may_send_now(sk, tp))
1566 return;
1567
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001568 if (tp->forward_skb_hint) {
1569 skb = tp->forward_skb_hint;
1570 packet_cnt = tp->forward_cnt_hint;
1571 } else{
1572 skb = sk->sk_write_queue.next;
1573 packet_cnt = 0;
1574 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001576 sk_stream_for_retrans_queue_from(skb, sk) {
1577 tp->forward_cnt_hint = packet_cnt;
1578 tp->forward_skb_hint = skb;
1579
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 /* Similar to the retransmit loop above we
1581 * can pretend that the retransmitted SKB
1582 * we send out here will be composed of one
1583 * real MSS sized packet because tcp_retransmit_skb()
1584 * will fragment it if necessary.
1585 */
1586 if (++packet_cnt > tp->fackets_out)
1587 break;
1588
1589 if (tcp_packets_in_flight(tp) >= tp->snd_cwnd)
1590 break;
1591
1592 if (TCP_SKB_CB(skb)->sacked & TCPCB_TAGBITS)
1593 continue;
1594
1595 /* Ok, retransmit it. */
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001596 if (tcp_retransmit_skb(sk, skb)) {
1597 tp->forward_skb_hint = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 break;
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
1601 if (skb == skb_peek(&sk->sk_write_queue))
Arnaldo Carvalho de Melo3f421ba2005-08-09 20:11:08 -07001602 inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS,
1603 inet_csk(sk)->icsk_rto,
1604 TCP_RTO_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
1606 NET_INC_STATS_BH(LINUX_MIB_TCPFORWARDRETRANS);
1607 }
1608}
1609
1610
1611/* Send a fin. The caller locks the socket for us. This cannot be
1612 * allowed to fail queueing a FIN frame under any circumstances.
1613 */
1614void tcp_send_fin(struct sock *sk)
1615{
1616 struct tcp_sock *tp = tcp_sk(sk);
1617 struct sk_buff *skb = skb_peek_tail(&sk->sk_write_queue);
1618 int mss_now;
1619
1620 /* Optimization, tack on the FIN if we have a queue of
1621 * unsent frames. But be careful about outgoing SACKS
1622 * and IP options.
1623 */
1624 mss_now = tcp_current_mss(sk, 1);
1625
1626 if (sk->sk_send_head != NULL) {
1627 TCP_SKB_CB(skb)->flags |= TCPCB_FLAG_FIN;
1628 TCP_SKB_CB(skb)->end_seq++;
1629 tp->write_seq++;
1630 } else {
1631 /* Socket is locked, keep trying until memory is available. */
1632 for (;;) {
David S. Millerd179cd12005-08-17 14:57:30 -07001633 skb = alloc_skb_fclone(MAX_TCP_HEADER, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 if (skb)
1635 break;
1636 yield();
1637 }
1638
1639 /* Reserve space for headers and prepare control bits. */
1640 skb_reserve(skb, MAX_TCP_HEADER);
1641 skb->csum = 0;
1642 TCP_SKB_CB(skb)->flags = (TCPCB_FLAG_ACK | TCPCB_FLAG_FIN);
1643 TCP_SKB_CB(skb)->sacked = 0;
1644 skb_shinfo(skb)->tso_segs = 1;
1645 skb_shinfo(skb)->tso_size = 0;
1646
1647 /* FIN eats a sequence byte, write_seq advanced by tcp_queue_skb(). */
1648 TCP_SKB_CB(skb)->seq = tp->write_seq;
1649 TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(skb)->seq + 1;
1650 tcp_queue_skb(sk, skb);
1651 }
1652 __tcp_push_pending_frames(sk, tp, mss_now, TCP_NAGLE_OFF);
1653}
1654
1655/* We get here when a process closes a file descriptor (either due to
1656 * an explicit close() or as a byproduct of exit()'ing) and there
1657 * was unread data in the receive queue. This behavior is recommended
1658 * by draft-ietf-tcpimpl-prob-03.txt section 3.10. -DaveM
1659 */
Al Virodd0fc662005-10-07 07:46:04 +01001660void tcp_send_active_reset(struct sock *sk, gfp_t priority)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661{
1662 struct tcp_sock *tp = tcp_sk(sk);
1663 struct sk_buff *skb;
1664
1665 /* NOTE: No TCP options attached and we never retransmit this. */
1666 skb = alloc_skb(MAX_TCP_HEADER, priority);
1667 if (!skb) {
1668 NET_INC_STATS(LINUX_MIB_TCPABORTFAILED);
1669 return;
1670 }
1671
1672 /* Reserve space for headers and prepare control bits. */
1673 skb_reserve(skb, MAX_TCP_HEADER);
1674 skb->csum = 0;
1675 TCP_SKB_CB(skb)->flags = (TCPCB_FLAG_ACK | TCPCB_FLAG_RST);
1676 TCP_SKB_CB(skb)->sacked = 0;
1677 skb_shinfo(skb)->tso_segs = 1;
1678 skb_shinfo(skb)->tso_size = 0;
1679
1680 /* Send it off. */
1681 TCP_SKB_CB(skb)->seq = tcp_acceptable_seq(sk, tp);
1682 TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(skb)->seq;
1683 TCP_SKB_CB(skb)->when = tcp_time_stamp;
David S. Millerdfb4b9d2005-12-06 16:24:52 -08001684 if (tcp_transmit_skb(sk, skb, 0, priority))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 NET_INC_STATS(LINUX_MIB_TCPABORTFAILED);
1686}
1687
1688/* WARNING: This routine must only be called when we have already sent
1689 * a SYN packet that crossed the incoming SYN that caused this routine
1690 * to get called. If this assumption fails then the initial rcv_wnd
1691 * and rcv_wscale values will not be correct.
1692 */
1693int tcp_send_synack(struct sock *sk)
1694{
1695 struct sk_buff* skb;
1696
1697 skb = skb_peek(&sk->sk_write_queue);
1698 if (skb == NULL || !(TCP_SKB_CB(skb)->flags&TCPCB_FLAG_SYN)) {
1699 printk(KERN_DEBUG "tcp_send_synack: wrong queue state\n");
1700 return -EFAULT;
1701 }
1702 if (!(TCP_SKB_CB(skb)->flags&TCPCB_FLAG_ACK)) {
1703 if (skb_cloned(skb)) {
1704 struct sk_buff *nskb = skb_copy(skb, GFP_ATOMIC);
1705 if (nskb == NULL)
1706 return -ENOMEM;
1707 __skb_unlink(skb, &sk->sk_write_queue);
1708 skb_header_release(nskb);
1709 __skb_queue_head(&sk->sk_write_queue, nskb);
1710 sk_stream_free_skb(sk, skb);
1711 sk_charge_skb(sk, nskb);
1712 skb = nskb;
1713 }
1714
1715 TCP_SKB_CB(skb)->flags |= TCPCB_FLAG_ACK;
1716 TCP_ECN_send_synack(tcp_sk(sk), skb);
1717 }
1718 TCP_SKB_CB(skb)->when = tcp_time_stamp;
David S. Millerdfb4b9d2005-12-06 16:24:52 -08001719 return tcp_transmit_skb(sk, skb, 1, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720}
1721
1722/*
1723 * Prepare a SYN-ACK.
1724 */
1725struct sk_buff * tcp_make_synack(struct sock *sk, struct dst_entry *dst,
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -07001726 struct request_sock *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727{
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001728 struct inet_request_sock *ireq = inet_rsk(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 struct tcp_sock *tp = tcp_sk(sk);
1730 struct tcphdr *th;
1731 int tcp_header_size;
1732 struct sk_buff *skb;
1733
1734 skb = sock_wmalloc(sk, MAX_TCP_HEADER + 15, 1, GFP_ATOMIC);
1735 if (skb == NULL)
1736 return NULL;
1737
1738 /* Reserve space for headers. */
1739 skb_reserve(skb, MAX_TCP_HEADER);
1740
1741 skb->dst = dst_clone(dst);
1742
1743 tcp_header_size = (sizeof(struct tcphdr) + TCPOLEN_MSS +
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001744 (ireq->tstamp_ok ? TCPOLEN_TSTAMP_ALIGNED : 0) +
1745 (ireq->wscale_ok ? TCPOLEN_WSCALE_ALIGNED : 0) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 /* SACK_PERM is in the place of NOP NOP of TS */
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001747 ((ireq->sack_ok && !ireq->tstamp_ok) ? TCPOLEN_SACKPERM_ALIGNED : 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 skb->h.th = th = (struct tcphdr *) skb_push(skb, tcp_header_size);
1749
1750 memset(th, 0, sizeof(struct tcphdr));
1751 th->syn = 1;
1752 th->ack = 1;
1753 if (dst->dev->features&NETIF_F_TSO)
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001754 ireq->ecn_ok = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 TCP_ECN_make_synack(req, th);
1756 th->source = inet_sk(sk)->sport;
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001757 th->dest = ireq->rmt_port;
1758 TCP_SKB_CB(skb)->seq = tcp_rsk(req)->snt_isn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(skb)->seq + 1;
1760 TCP_SKB_CB(skb)->sacked = 0;
1761 skb_shinfo(skb)->tso_segs = 1;
1762 skb_shinfo(skb)->tso_size = 0;
1763 th->seq = htonl(TCP_SKB_CB(skb)->seq);
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001764 th->ack_seq = htonl(tcp_rsk(req)->rcv_isn + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 if (req->rcv_wnd == 0) { /* ignored for retransmitted syns */
1766 __u8 rcv_wscale;
1767 /* Set this up on the first call only */
1768 req->window_clamp = tp->window_clamp ? : dst_metric(dst, RTAX_WINDOW);
1769 /* tcp_full_space because it is guaranteed to be the first packet */
1770 tcp_select_initial_window(tcp_full_space(sk),
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001771 dst_metric(dst, RTAX_ADVMSS) - (ireq->tstamp_ok ? TCPOLEN_TSTAMP_ALIGNED : 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 &req->rcv_wnd,
1773 &req->window_clamp,
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001774 ireq->wscale_ok,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 &rcv_wscale);
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001776 ireq->rcv_wscale = rcv_wscale;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 }
1778
1779 /* RFC1323: The window in SYN & SYN/ACK segments is never scaled. */
1780 th->window = htons(req->rcv_wnd);
1781
1782 TCP_SKB_CB(skb)->when = tcp_time_stamp;
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001783 tcp_syn_build_options((__u32 *)(th + 1), dst_metric(dst, RTAX_ADVMSS), ireq->tstamp_ok,
1784 ireq->sack_ok, ireq->wscale_ok, ireq->rcv_wscale,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 TCP_SKB_CB(skb)->when,
1786 req->ts_recent);
1787
1788 skb->csum = 0;
1789 th->doff = (tcp_header_size >> 2);
1790 TCP_INC_STATS(TCP_MIB_OUTSEGS);
1791 return skb;
1792}
1793
1794/*
1795 * Do all connect socket setups that can be done AF independent.
1796 */
1797static inline void tcp_connect_init(struct sock *sk)
1798{
1799 struct dst_entry *dst = __sk_dst_get(sk);
1800 struct tcp_sock *tp = tcp_sk(sk);
1801 __u8 rcv_wscale;
1802
1803 /* We'll fix this up when we get a response from the other end.
1804 * See tcp_input.c:tcp_rcv_state_process case TCP_SYN_SENT.
1805 */
1806 tp->tcp_header_len = sizeof(struct tcphdr) +
1807 (sysctl_tcp_timestamps ? TCPOLEN_TSTAMP_ALIGNED : 0);
1808
1809 /* If user gave his TCP_MAXSEG, record it to clamp */
1810 if (tp->rx_opt.user_mss)
1811 tp->rx_opt.mss_clamp = tp->rx_opt.user_mss;
1812 tp->max_window = 0;
1813 tcp_sync_mss(sk, dst_mtu(dst));
1814
1815 if (!tp->window_clamp)
1816 tp->window_clamp = dst_metric(dst, RTAX_WINDOW);
1817 tp->advmss = dst_metric(dst, RTAX_ADVMSS);
1818 tcp_initialize_rcv_mss(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819
1820 tcp_select_initial_window(tcp_full_space(sk),
1821 tp->advmss - (tp->rx_opt.ts_recent_stamp ? tp->tcp_header_len - sizeof(struct tcphdr) : 0),
1822 &tp->rcv_wnd,
1823 &tp->window_clamp,
1824 sysctl_tcp_window_scaling,
1825 &rcv_wscale);
1826
1827 tp->rx_opt.rcv_wscale = rcv_wscale;
1828 tp->rcv_ssthresh = tp->rcv_wnd;
1829
1830 sk->sk_err = 0;
1831 sock_reset_flag(sk, SOCK_DONE);
1832 tp->snd_wnd = 0;
1833 tcp_init_wl(tp, tp->write_seq, 0);
1834 tp->snd_una = tp->write_seq;
1835 tp->snd_sml = tp->write_seq;
1836 tp->rcv_nxt = 0;
1837 tp->rcv_wup = 0;
1838 tp->copied_seq = 0;
1839
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001840 inet_csk(sk)->icsk_rto = TCP_TIMEOUT_INIT;
1841 inet_csk(sk)->icsk_retransmits = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 tcp_clear_retrans(tp);
1843}
1844
1845/*
1846 * Build a SYN and send it off.
1847 */
1848int tcp_connect(struct sock *sk)
1849{
1850 struct tcp_sock *tp = tcp_sk(sk);
1851 struct sk_buff *buff;
1852
1853 tcp_connect_init(sk);
1854
David S. Millerd179cd12005-08-17 14:57:30 -07001855 buff = alloc_skb_fclone(MAX_TCP_HEADER + 15, sk->sk_allocation);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 if (unlikely(buff == NULL))
1857 return -ENOBUFS;
1858
1859 /* Reserve space for headers. */
1860 skb_reserve(buff, MAX_TCP_HEADER);
1861
1862 TCP_SKB_CB(buff)->flags = TCPCB_FLAG_SYN;
1863 TCP_ECN_send_syn(sk, tp, buff);
1864 TCP_SKB_CB(buff)->sacked = 0;
1865 skb_shinfo(buff)->tso_segs = 1;
1866 skb_shinfo(buff)->tso_size = 0;
1867 buff->csum = 0;
1868 TCP_SKB_CB(buff)->seq = tp->write_seq++;
1869 TCP_SKB_CB(buff)->end_seq = tp->write_seq;
1870 tp->snd_nxt = tp->write_seq;
1871 tp->pushed_seq = tp->write_seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
1873 /* Send it off. */
1874 TCP_SKB_CB(buff)->when = tcp_time_stamp;
1875 tp->retrans_stamp = TCP_SKB_CB(buff)->when;
1876 skb_header_release(buff);
1877 __skb_queue_tail(&sk->sk_write_queue, buff);
1878 sk_charge_skb(sk, buff);
1879 tp->packets_out += tcp_skb_pcount(buff);
David S. Millerdfb4b9d2005-12-06 16:24:52 -08001880 tcp_transmit_skb(sk, buff, 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 TCP_INC_STATS(TCP_MIB_ACTIVEOPENS);
1882
1883 /* Timer for repeating the SYN until an answer. */
Arnaldo Carvalho de Melo3f421ba2005-08-09 20:11:08 -07001884 inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS,
1885 inet_csk(sk)->icsk_rto, TCP_RTO_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 return 0;
1887}
1888
1889/* Send out a delayed ack, the caller does the policy checking
1890 * to see if we should even be here. See tcp_input.c:tcp_ack_snd_check()
1891 * for details.
1892 */
1893void tcp_send_delayed_ack(struct sock *sk)
1894{
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001895 struct inet_connection_sock *icsk = inet_csk(sk);
1896 int ato = icsk->icsk_ack.ato;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 unsigned long timeout;
1898
1899 if (ato > TCP_DELACK_MIN) {
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001900 const struct tcp_sock *tp = tcp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 int max_ato = HZ/2;
1902
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001903 if (icsk->icsk_ack.pingpong || (icsk->icsk_ack.pending & ICSK_ACK_PUSHED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 max_ato = TCP_DELACK_MAX;
1905
1906 /* Slow path, intersegment interval is "high". */
1907
1908 /* If some rtt estimate is known, use it to bound delayed ack.
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001909 * Do not use inet_csk(sk)->icsk_rto here, use results of rtt measurements
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 * directly.
1911 */
1912 if (tp->srtt) {
1913 int rtt = max(tp->srtt>>3, TCP_DELACK_MIN);
1914
1915 if (rtt < max_ato)
1916 max_ato = rtt;
1917 }
1918
1919 ato = min(ato, max_ato);
1920 }
1921
1922 /* Stay within the limit we were given */
1923 timeout = jiffies + ato;
1924
1925 /* Use new timeout only if there wasn't a older one earlier. */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001926 if (icsk->icsk_ack.pending & ICSK_ACK_TIMER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 /* If delack timer was blocked or is about to expire,
1928 * send ACK now.
1929 */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001930 if (icsk->icsk_ack.blocked ||
1931 time_before_eq(icsk->icsk_ack.timeout, jiffies + (ato >> 2))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 tcp_send_ack(sk);
1933 return;
1934 }
1935
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001936 if (!time_before(timeout, icsk->icsk_ack.timeout))
1937 timeout = icsk->icsk_ack.timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 }
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001939 icsk->icsk_ack.pending |= ICSK_ACK_SCHED | ICSK_ACK_TIMER;
1940 icsk->icsk_ack.timeout = timeout;
1941 sk_reset_timer(sk, &icsk->icsk_delack_timer, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942}
1943
1944/* This routine sends an ack and also updates the window. */
1945void tcp_send_ack(struct sock *sk)
1946{
1947 /* If we have been reset, we may not send again. */
1948 if (sk->sk_state != TCP_CLOSE) {
1949 struct tcp_sock *tp = tcp_sk(sk);
1950 struct sk_buff *buff;
1951
1952 /* We are not putting this on the write queue, so
1953 * tcp_transmit_skb() will set the ownership to this
1954 * sock.
1955 */
1956 buff = alloc_skb(MAX_TCP_HEADER, GFP_ATOMIC);
1957 if (buff == NULL) {
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001958 inet_csk_schedule_ack(sk);
1959 inet_csk(sk)->icsk_ack.ato = TCP_ATO_MIN;
Arnaldo Carvalho de Melo3f421ba2005-08-09 20:11:08 -07001960 inet_csk_reset_xmit_timer(sk, ICSK_TIME_DACK,
1961 TCP_DELACK_MAX, TCP_RTO_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 return;
1963 }
1964
1965 /* Reserve space for headers and prepare control bits. */
1966 skb_reserve(buff, MAX_TCP_HEADER);
1967 buff->csum = 0;
1968 TCP_SKB_CB(buff)->flags = TCPCB_FLAG_ACK;
1969 TCP_SKB_CB(buff)->sacked = 0;
1970 skb_shinfo(buff)->tso_segs = 1;
1971 skb_shinfo(buff)->tso_size = 0;
1972
1973 /* Send it off, this clears delayed acks for us. */
1974 TCP_SKB_CB(buff)->seq = TCP_SKB_CB(buff)->end_seq = tcp_acceptable_seq(sk, tp);
1975 TCP_SKB_CB(buff)->when = tcp_time_stamp;
David S. Millerdfb4b9d2005-12-06 16:24:52 -08001976 tcp_transmit_skb(sk, buff, 0, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 }
1978}
1979
1980/* This routine sends a packet with an out of date sequence
1981 * number. It assumes the other end will try to ack it.
1982 *
1983 * Question: what should we make while urgent mode?
1984 * 4.4BSD forces sending single byte of data. We cannot send
1985 * out of window data, because we have SND.NXT==SND.MAX...
1986 *
1987 * Current solution: to send TWO zero-length segments in urgent mode:
1988 * one is with SEG.SEQ=SND.UNA to deliver urgent pointer, another is
1989 * out-of-date with SND.UNA-1 to probe window.
1990 */
1991static int tcp_xmit_probe_skb(struct sock *sk, int urgent)
1992{
1993 struct tcp_sock *tp = tcp_sk(sk);
1994 struct sk_buff *skb;
1995
1996 /* We don't queue it, tcp_transmit_skb() sets ownership. */
1997 skb = alloc_skb(MAX_TCP_HEADER, GFP_ATOMIC);
1998 if (skb == NULL)
1999 return -1;
2000
2001 /* Reserve space for headers and set control bits. */
2002 skb_reserve(skb, MAX_TCP_HEADER);
2003 skb->csum = 0;
2004 TCP_SKB_CB(skb)->flags = TCPCB_FLAG_ACK;
2005 TCP_SKB_CB(skb)->sacked = urgent;
2006 skb_shinfo(skb)->tso_segs = 1;
2007 skb_shinfo(skb)->tso_size = 0;
2008
2009 /* Use a previous sequence. This should cause the other
2010 * end to send an ack. Don't queue or clone SKB, just
2011 * send it.
2012 */
2013 TCP_SKB_CB(skb)->seq = urgent ? tp->snd_una : tp->snd_una - 1;
2014 TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(skb)->seq;
2015 TCP_SKB_CB(skb)->when = tcp_time_stamp;
David S. Millerdfb4b9d2005-12-06 16:24:52 -08002016 return tcp_transmit_skb(sk, skb, 0, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017}
2018
2019int tcp_write_wakeup(struct sock *sk)
2020{
2021 if (sk->sk_state != TCP_CLOSE) {
2022 struct tcp_sock *tp = tcp_sk(sk);
2023 struct sk_buff *skb;
2024
2025 if ((skb = sk->sk_send_head) != NULL &&
2026 before(TCP_SKB_CB(skb)->seq, tp->snd_una+tp->snd_wnd)) {
2027 int err;
2028 unsigned int mss = tcp_current_mss(sk, 0);
2029 unsigned int seg_size = tp->snd_una+tp->snd_wnd-TCP_SKB_CB(skb)->seq;
2030
2031 if (before(tp->pushed_seq, TCP_SKB_CB(skb)->end_seq))
2032 tp->pushed_seq = TCP_SKB_CB(skb)->end_seq;
2033
2034 /* We are probing the opening of a window
2035 * but the window size is != 0
2036 * must have been a result SWS avoidance ( sender )
2037 */
2038 if (seg_size < TCP_SKB_CB(skb)->end_seq - TCP_SKB_CB(skb)->seq ||
2039 skb->len > mss) {
2040 seg_size = min(seg_size, mss);
2041 TCP_SKB_CB(skb)->flags |= TCPCB_FLAG_PSH;
David S. Miller846998a2005-08-04 19:52:01 -07002042 if (tcp_fragment(sk, skb, seg_size, mss))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 } else if (!tcp_skb_pcount(skb))
David S. Miller846998a2005-08-04 19:52:01 -07002045 tcp_set_skb_tso_segs(sk, skb, mss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
2047 TCP_SKB_CB(skb)->flags |= TCPCB_FLAG_PSH;
2048 TCP_SKB_CB(skb)->when = tcp_time_stamp;
David S. Millerdfb4b9d2005-12-06 16:24:52 -08002049 err = tcp_transmit_skb(sk, skb, 1, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 if (!err) {
2051 update_send_head(sk, tp, skb);
2052 }
2053 return err;
2054 } else {
2055 if (tp->urg_mode &&
2056 between(tp->snd_up, tp->snd_una+1, tp->snd_una+0xFFFF))
2057 tcp_xmit_probe_skb(sk, TCPCB_URG);
2058 return tcp_xmit_probe_skb(sk, 0);
2059 }
2060 }
2061 return -1;
2062}
2063
2064/* A window probe timeout has occurred. If window is not closed send
2065 * a partial packet else a zero probe.
2066 */
2067void tcp_send_probe0(struct sock *sk)
2068{
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002069 struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 struct tcp_sock *tp = tcp_sk(sk);
2071 int err;
2072
2073 err = tcp_write_wakeup(sk);
2074
2075 if (tp->packets_out || !sk->sk_send_head) {
2076 /* Cancel probe timer, if it is not required. */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002077 icsk->icsk_probes_out = 0;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002078 icsk->icsk_backoff = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 return;
2080 }
2081
2082 if (err <= 0) {
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002083 if (icsk->icsk_backoff < sysctl_tcp_retries2)
2084 icsk->icsk_backoff++;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002085 icsk->icsk_probes_out++;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002086 inet_csk_reset_xmit_timer(sk, ICSK_TIME_PROBE0,
Arnaldo Carvalho de Melo3f421ba2005-08-09 20:11:08 -07002087 min(icsk->icsk_rto << icsk->icsk_backoff, TCP_RTO_MAX),
2088 TCP_RTO_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 } else {
2090 /* If packet was not sent due to local congestion,
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002091 * do not backoff and do not remember icsk_probes_out.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 * Let local senders to fight for local resources.
2093 *
2094 * Use accumulated backoff yet.
2095 */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002096 if (!icsk->icsk_probes_out)
2097 icsk->icsk_probes_out = 1;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002098 inet_csk_reset_xmit_timer(sk, ICSK_TIME_PROBE0,
2099 min(icsk->icsk_rto << icsk->icsk_backoff,
Arnaldo Carvalho de Melo3f421ba2005-08-09 20:11:08 -07002100 TCP_RESOURCE_PROBE_INTERVAL),
2101 TCP_RTO_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 }
2103}
2104
2105EXPORT_SYMBOL(tcp_connect);
2106EXPORT_SYMBOL(tcp_make_synack);
2107EXPORT_SYMBOL(tcp_simple_retransmit);
2108EXPORT_SYMBOL(tcp_sync_mss);
Stephen Hemmingerf4805ed2005-11-10 16:53:30 -08002109EXPORT_SYMBOL(sysctl_tcp_tso_win_divisor);