]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/sctp/outqueue.c
sctp: save transmit error to sk_err in sctp_outq_flush
[mirror_ubuntu-bionic-kernel.git] / net / sctp / outqueue.c
CommitLineData
60c778b2 1/* SCTP kernel implementation
1da177e4
LT
2 * (C) Copyright IBM Corp. 2001, 2004
3 * Copyright (c) 1999-2000 Cisco, Inc.
4 * Copyright (c) 1999-2001 Motorola, Inc.
5 * Copyright (c) 2001-2003 Intel Corp.
6 *
60c778b2 7 * This file is part of the SCTP kernel implementation
1da177e4
LT
8 *
9 * These functions implement the sctp_outq class. The outqueue handles
10 * bundling and queueing of outgoing SCTP chunks.
11 *
60c778b2 12 * This SCTP implementation is free software;
1da177e4
LT
13 * you can redistribute it and/or modify it under the terms of
14 * the GNU General Public License as published by
15 * the Free Software Foundation; either version 2, or (at your option)
16 * any later version.
17 *
60c778b2 18 * This SCTP implementation is distributed in the hope that it
1da177e4
LT
19 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
20 * ************************
21 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
22 * See the GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
4b2f13a2
JK
25 * along with GNU CC; see the file COPYING. If not, see
26 * <http://www.gnu.org/licenses/>.
1da177e4
LT
27 *
28 * Please send any bug reports or fixes you make to the
29 * email address(es):
91705c61 30 * lksctp developers <linux-sctp@vger.kernel.org>
1da177e4 31 *
1da177e4
LT
32 * Written or modified by:
33 * La Monte H.P. Yarroll <piggy@acm.org>
34 * Karl Knutson <karl@athena.chicago.il.us>
35 * Perry Melange <pmelange@null.cc.uic.edu>
36 * Xingang Guo <xingang.guo@intel.com>
37 * Hui Huang <hui.huang@nokia.com>
38 * Sridhar Samudrala <sri@us.ibm.com>
39 * Jon Grimm <jgrimm@us.ibm.com>
1da177e4
LT
40 */
41
145ce502
JP
42#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
43
1da177e4
LT
44#include <linux/types.h>
45#include <linux/list.h> /* For struct list_head */
46#include <linux/socket.h>
47#include <linux/ip.h>
5a0e3ad6 48#include <linux/slab.h>
1da177e4
LT
49#include <net/sock.h> /* For skb_set_owner_w */
50
51#include <net/sctp/sctp.h>
52#include <net/sctp/sm.h>
53
54/* Declare internal functions here. */
55static int sctp_acked(struct sctp_sackhdr *sack, __u32 tsn);
56static void sctp_check_transmitted(struct sctp_outq *q,
57 struct list_head *transmitted_queue,
58 struct sctp_transport *transport,
edfee033 59 union sctp_addr *saddr,
1da177e4 60 struct sctp_sackhdr *sack,
bfa0d984 61 __u32 *highest_new_tsn);
1da177e4
LT
62
63static void sctp_mark_missing(struct sctp_outq *q,
64 struct list_head *transmitted_queue,
65 struct sctp_transport *transport,
66 __u32 highest_new_tsn,
67 int count_of_newacks);
68
69static void sctp_generate_fwdtsn(struct sctp_outq *q, __u32 sack_ctsn);
70
cea8768f 71static int sctp_outq_flush(struct sctp_outq *q, int rtx_timeout, gfp_t gfp);
abd0b198 72
1da177e4
LT
73/* Add data to the front of the queue. */
74static inline void sctp_outq_head_data(struct sctp_outq *q,
75 struct sctp_chunk *ch)
76{
79af02c2 77 list_add(&ch->list, &q->out_chunk_list);
1da177e4 78 q->out_qlen += ch->skb->len;
1da177e4
LT
79}
80
81/* Take data from the front of the queue. */
82static inline struct sctp_chunk *sctp_outq_dequeue_data(struct sctp_outq *q)
83{
79af02c2
DM
84 struct sctp_chunk *ch = NULL;
85
86 if (!list_empty(&q->out_chunk_list)) {
87 struct list_head *entry = q->out_chunk_list.next;
88
89 ch = list_entry(entry, struct sctp_chunk, list);
90 list_del_init(entry);
1da177e4 91 q->out_qlen -= ch->skb->len;
79af02c2 92 }
1da177e4
LT
93 return ch;
94}
95/* Add data chunk to the end of the queue. */
96static inline void sctp_outq_tail_data(struct sctp_outq *q,
97 struct sctp_chunk *ch)
98{
79af02c2 99 list_add_tail(&ch->list, &q->out_chunk_list);
1da177e4 100 q->out_qlen += ch->skb->len;
1da177e4
LT
101}
102
103/*
104 * SFR-CACC algorithm:
105 * D) If count_of_newacks is greater than or equal to 2
106 * and t was not sent to the current primary then the
107 * sender MUST NOT increment missing report count for t.
108 */
109static inline int sctp_cacc_skip_3_1_d(struct sctp_transport *primary,
110 struct sctp_transport *transport,
111 int count_of_newacks)
112{
cb3f837b 113 if (count_of_newacks >= 2 && transport != primary)
1da177e4
LT
114 return 1;
115 return 0;
116}
117
118/*
119 * SFR-CACC algorithm:
120 * F) If count_of_newacks is less than 2, let d be the
121 * destination to which t was sent. If cacc_saw_newack
122 * is 0 for destination d, then the sender MUST NOT
123 * increment missing report count for t.
124 */
125static inline int sctp_cacc_skip_3_1_f(struct sctp_transport *transport,
126 int count_of_newacks)
127{
f246a7b7
VY
128 if (count_of_newacks < 2 &&
129 (transport && !transport->cacc.cacc_saw_newack))
1da177e4
LT
130 return 1;
131 return 0;
132}
133
134/*
135 * SFR-CACC algorithm:
136 * 3.1) If CYCLING_CHANGEOVER is 0, the sender SHOULD
137 * execute steps C, D, F.
138 *
139 * C has been implemented in sctp_outq_sack
140 */
141static inline int sctp_cacc_skip_3_1(struct sctp_transport *primary,
142 struct sctp_transport *transport,
143 int count_of_newacks)
144{
145 if (!primary->cacc.cycling_changeover) {
146 if (sctp_cacc_skip_3_1_d(primary, transport, count_of_newacks))
147 return 1;
148 if (sctp_cacc_skip_3_1_f(transport, count_of_newacks))
149 return 1;
150 return 0;
151 }
152 return 0;
153}
154
155/*
156 * SFR-CACC algorithm:
157 * 3.2) Else if CYCLING_CHANGEOVER is 1, and t is less
158 * than next_tsn_at_change of the current primary, then
159 * the sender MUST NOT increment missing report count
160 * for t.
161 */
162static inline int sctp_cacc_skip_3_2(struct sctp_transport *primary, __u32 tsn)
163{
164 if (primary->cacc.cycling_changeover &&
165 TSN_lt(tsn, primary->cacc.next_tsn_at_change))
166 return 1;
167 return 0;
168}
169
170/*
171 * SFR-CACC algorithm:
172 * 3) If the missing report count for TSN t is to be
173 * incremented according to [RFC2960] and
174 * [SCTP_STEWART-2002], and CHANGEOVER_ACTIVE is set,
25985edc 175 * then the sender MUST further execute steps 3.1 and
1da177e4
LT
176 * 3.2 to determine if the missing report count for
177 * TSN t SHOULD NOT be incremented.
178 *
179 * 3.3) If 3.1 and 3.2 do not dictate that the missing
180 * report count for t should not be incremented, then
25985edc 181 * the sender SHOULD increment missing report count for
1da177e4
LT
182 * t (according to [RFC2960] and [SCTP_STEWART_2002]).
183 */
184static inline int sctp_cacc_skip(struct sctp_transport *primary,
185 struct sctp_transport *transport,
186 int count_of_newacks,
187 __u32 tsn)
188{
189 if (primary->cacc.changeover_active &&
f64f9e71
JP
190 (sctp_cacc_skip_3_1(primary, transport, count_of_newacks) ||
191 sctp_cacc_skip_3_2(primary, tsn)))
1da177e4
LT
192 return 1;
193 return 0;
194}
195
196/* Initialize an existing sctp_outq. This does the boring stuff.
197 * You still need to define handlers if you really want to DO
198 * something with this structure...
199 */
200void sctp_outq_init(struct sctp_association *asoc, struct sctp_outq *q)
201{
c5c7774d
NH
202 memset(q, 0, sizeof(struct sctp_outq));
203
1da177e4 204 q->asoc = asoc;
79af02c2
DM
205 INIT_LIST_HEAD(&q->out_chunk_list);
206 INIT_LIST_HEAD(&q->control_chunk_list);
1da177e4
LT
207 INIT_LIST_HEAD(&q->retransmit);
208 INIT_LIST_HEAD(&q->sacked);
209 INIT_LIST_HEAD(&q->abandoned);
1da177e4
LT
210}
211
212/* Free the outqueue structure and any related pending chunks.
213 */
2f94aabd 214static void __sctp_outq_teardown(struct sctp_outq *q)
1da177e4
LT
215{
216 struct sctp_transport *transport;
9dbc15f0 217 struct list_head *lchunk, *temp;
79af02c2 218 struct sctp_chunk *chunk, *tmp;
1da177e4
LT
219
220 /* Throw away unacknowledged chunks. */
9dbc15f0
RD
221 list_for_each_entry(transport, &q->asoc->peer.transport_addr_list,
222 transports) {
1da177e4
LT
223 while ((lchunk = sctp_list_dequeue(&transport->transmitted)) != NULL) {
224 chunk = list_entry(lchunk, struct sctp_chunk,
225 transmitted_list);
226 /* Mark as part of a failed message. */
227 sctp_chunk_fail(chunk, q->error);
228 sctp_chunk_free(chunk);
229 }
230 }
231
232 /* Throw away chunks that have been gap ACKed. */
233 list_for_each_safe(lchunk, temp, &q->sacked) {
234 list_del_init(lchunk);
235 chunk = list_entry(lchunk, struct sctp_chunk,
236 transmitted_list);
237 sctp_chunk_fail(chunk, q->error);
238 sctp_chunk_free(chunk);
239 }
240
241 /* Throw away any chunks in the retransmit queue. */
242 list_for_each_safe(lchunk, temp, &q->retransmit) {
243 list_del_init(lchunk);
244 chunk = list_entry(lchunk, struct sctp_chunk,
245 transmitted_list);
246 sctp_chunk_fail(chunk, q->error);
247 sctp_chunk_free(chunk);
248 }
249
250 /* Throw away any chunks that are in the abandoned queue. */
251 list_for_each_safe(lchunk, temp, &q->abandoned) {
252 list_del_init(lchunk);
253 chunk = list_entry(lchunk, struct sctp_chunk,
254 transmitted_list);
255 sctp_chunk_fail(chunk, q->error);
256 sctp_chunk_free(chunk);
257 }
258
259 /* Throw away any leftover data chunks. */
260 while ((chunk = sctp_outq_dequeue_data(q)) != NULL) {
261
262 /* Mark as send failure. */
263 sctp_chunk_fail(chunk, q->error);
264 sctp_chunk_free(chunk);
265 }
266
1da177e4 267 /* Throw away any leftover control chunks. */
79af02c2
DM
268 list_for_each_entry_safe(chunk, tmp, &q->control_chunk_list, list) {
269 list_del_init(&chunk->list);
1da177e4 270 sctp_chunk_free(chunk);
79af02c2 271 }
1da177e4
LT
272}
273
2f94aabd
NH
274void sctp_outq_teardown(struct sctp_outq *q)
275{
276 __sctp_outq_teardown(q);
277 sctp_outq_init(q->asoc, q);
278}
279
1da177e4
LT
280/* Free the outqueue structure and any related pending chunks. */
281void sctp_outq_free(struct sctp_outq *q)
282{
283 /* Throw away leftover chunks. */
2f94aabd 284 __sctp_outq_teardown(q);
1da177e4
LT
285}
286
287/* Put a new chunk in an sctp_outq. */
cea8768f 288int sctp_outq_tail(struct sctp_outq *q, struct sctp_chunk *chunk, gfp_t gfp)
1da177e4 289{
b01a2407 290 struct net *net = sock_net(q->asoc->base.sk);
1da177e4
LT
291 int error = 0;
292
bb33381d
DB
293 pr_debug("%s: outq:%p, chunk:%p[%s]\n", __func__, q, chunk,
294 chunk && chunk->chunk_hdr ?
295 sctp_cname(SCTP_ST_CHUNK(chunk->chunk_hdr->type)) :
296 "illegal chunk");
1da177e4
LT
297
298 /* If it is data, queue it up, otherwise, send it
299 * immediately.
300 */
ec7b9519 301 if (sctp_chunk_is_data(chunk)) {
2c89791e
XL
302 pr_debug("%s: outqueueing: outq:%p, chunk:%p[%s])\n",
303 __func__, q, chunk, chunk && chunk->chunk_hdr ?
304 sctp_cname(SCTP_ST_CHUNK(chunk->chunk_hdr->type)) :
305 "illegal chunk");
306
2c89791e
XL
307 sctp_outq_tail_data(q, chunk);
308 if (chunk->asoc->prsctp_enable &&
309 SCTP_PR_PRIO_ENABLED(chunk->sinfo.sinfo_flags))
310 chunk->asoc->sent_cnt_removable++;
311 if (chunk->chunk_hdr->flags & SCTP_DATA_UNORDERED)
312 SCTP_INC_STATS(net, SCTP_MIB_OUTUNORDERCHUNKS);
313 else
314 SCTP_INC_STATS(net, SCTP_MIB_OUTORDERCHUNKS);
1da177e4 315 } else {
79af02c2 316 list_add_tail(&chunk->list, &q->control_chunk_list);
b01a2407 317 SCTP_INC_STATS(net, SCTP_MIB_OUTCTRLCHUNKS);
1da177e4
LT
318 }
319
1da177e4 320 if (!q->cork)
cea8768f 321 error = sctp_outq_flush(q, 0, gfp);
1da177e4
LT
322
323 return error;
324}
325
326/* Insert a chunk into the sorted list based on the TSNs. The retransmit list
327 * and the abandoned list are in ascending order.
328 */
329static void sctp_insert_list(struct list_head *head, struct list_head *new)
330{
331 struct list_head *pos;
332 struct sctp_chunk *nchunk, *lchunk;
333 __u32 ntsn, ltsn;
334 int done = 0;
335
336 nchunk = list_entry(new, struct sctp_chunk, transmitted_list);
337 ntsn = ntohl(nchunk->subh.data_hdr->tsn);
338
339 list_for_each(pos, head) {
340 lchunk = list_entry(pos, struct sctp_chunk, transmitted_list);
341 ltsn = ntohl(lchunk->subh.data_hdr->tsn);
342 if (TSN_lt(ntsn, ltsn)) {
343 list_add(new, pos->prev);
344 done = 1;
345 break;
346 }
347 }
348 if (!done)
d808ad9a 349 list_add_tail(new, head);
1da177e4
LT
350}
351
8dbdf1f5
XL
352static int sctp_prsctp_prune_sent(struct sctp_association *asoc,
353 struct sctp_sndrcvinfo *sinfo,
354 struct list_head *queue, int msg_len)
355{
356 struct sctp_chunk *chk, *temp;
357
358 list_for_each_entry_safe(chk, temp, queue, transmitted_list) {
359 if (!SCTP_PR_PRIO_ENABLED(chk->sinfo.sinfo_flags) ||
360 chk->prsctp_param <= sinfo->sinfo_timetolive)
361 continue;
362
363 list_del_init(&chk->transmitted_list);
364 sctp_insert_list(&asoc->outqueue.abandoned,
365 &chk->transmitted_list);
366
367 asoc->sent_cnt_removable--;
368 asoc->abandoned_sent[SCTP_PR_INDEX(PRIO)]++;
369
370 if (!chk->tsn_gap_acked) {
371 if (chk->transport)
372 chk->transport->flight_size -=
373 sctp_data_size(chk);
374 asoc->outqueue.outstanding_bytes -= sctp_data_size(chk);
375 }
376
377 msg_len -= SCTP_DATA_SNDSIZE(chk) +
378 sizeof(struct sk_buff) +
379 sizeof(struct sctp_chunk);
380 if (msg_len <= 0)
381 break;
382 }
383
384 return msg_len;
385}
386
387static int sctp_prsctp_prune_unsent(struct sctp_association *asoc,
388 struct sctp_sndrcvinfo *sinfo,
389 struct list_head *queue, int msg_len)
390{
391 struct sctp_chunk *chk, *temp;
392
393 list_for_each_entry_safe(chk, temp, queue, list) {
394 if (!SCTP_PR_PRIO_ENABLED(chk->sinfo.sinfo_flags) ||
395 chk->prsctp_param <= sinfo->sinfo_timetolive)
396 continue;
397
398 list_del_init(&chk->list);
399 asoc->sent_cnt_removable--;
400 asoc->abandoned_unsent[SCTP_PR_INDEX(PRIO)]++;
401
402 msg_len -= SCTP_DATA_SNDSIZE(chk) +
403 sizeof(struct sk_buff) +
404 sizeof(struct sctp_chunk);
405 sctp_chunk_free(chk);
406 if (msg_len <= 0)
407 break;
408 }
409
410 return msg_len;
411}
412
413/* Abandon the chunks according their priorities */
414void sctp_prsctp_prune(struct sctp_association *asoc,
415 struct sctp_sndrcvinfo *sinfo, int msg_len)
416{
417 struct sctp_transport *transport;
418
419 if (!asoc->prsctp_enable || !asoc->sent_cnt_removable)
420 return;
421
422 msg_len = sctp_prsctp_prune_sent(asoc, sinfo,
423 &asoc->outqueue.retransmit,
424 msg_len);
425 if (msg_len <= 0)
426 return;
427
428 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
429 transports) {
430 msg_len = sctp_prsctp_prune_sent(asoc, sinfo,
431 &transport->transmitted,
432 msg_len);
433 if (msg_len <= 0)
434 return;
435 }
436
437 sctp_prsctp_prune_unsent(asoc, sinfo,
438 &asoc->outqueue.out_chunk_list,
439 msg_len);
440}
441
1da177e4
LT
442/* Mark all the eligible packets on a transport for retransmission. */
443void sctp_retransmit_mark(struct sctp_outq *q,
444 struct sctp_transport *transport,
b6157d8e 445 __u8 reason)
1da177e4
LT
446{
447 struct list_head *lchunk, *ltemp;
448 struct sctp_chunk *chunk;
449
450 /* Walk through the specified transmitted queue. */
451 list_for_each_safe(lchunk, ltemp, &transport->transmitted) {
452 chunk = list_entry(lchunk, struct sctp_chunk,
453 transmitted_list);
454
455 /* If the chunk is abandoned, move it to abandoned list. */
456 if (sctp_chunk_abandoned(chunk)) {
457 list_del_init(lchunk);
458 sctp_insert_list(&q->abandoned, lchunk);
8c4a2d41
VY
459
460 /* If this chunk has not been previousely acked,
461 * stop considering it 'outstanding'. Our peer
462 * will most likely never see it since it will
463 * not be retransmitted
464 */
465 if (!chunk->tsn_gap_acked) {
31b02e15
VY
466 if (chunk->transport)
467 chunk->transport->flight_size -=
468 sctp_data_size(chunk);
8c4a2d41 469 q->outstanding_bytes -= sctp_data_size(chunk);
a76c0adf 470 q->asoc->peer.rwnd += sctp_data_size(chunk);
8c4a2d41 471 }
1da177e4
LT
472 continue;
473 }
474
b6157d8e
VY
475 /* If we are doing retransmission due to a timeout or pmtu
476 * discovery, only the chunks that are not yet acked should
477 * be added to the retransmit queue.
1da177e4 478 */
b6157d8e 479 if ((reason == SCTP_RTXR_FAST_RTX &&
c226ef9b 480 (chunk->fast_retransmit == SCTP_NEED_FRTX)) ||
b6157d8e 481 (reason != SCTP_RTXR_FAST_RTX && !chunk->tsn_gap_acked)) {
1da177e4
LT
482 /* RFC 2960 6.2.1 Processing a Received SACK
483 *
484 * C) Any time a DATA chunk is marked for
485 * retransmission (via either T3-rtx timer expiration
486 * (Section 6.3.3) or via fast retransmit
487 * (Section 7.2.4)), add the data size of those
488 * chunks to the rwnd.
489 */
a76c0adf 490 q->asoc->peer.rwnd += sctp_data_size(chunk);
1da177e4 491 q->outstanding_bytes -= sctp_data_size(chunk);
31b02e15
VY
492 if (chunk->transport)
493 transport->flight_size -= sctp_data_size(chunk);
1da177e4
LT
494
495 /* sctpimpguide-05 Section 2.8.2
496 * M5) If a T3-rtx timer expires, the
497 * 'TSN.Missing.Report' of all affected TSNs is set
498 * to 0.
499 */
500 chunk->tsn_missing_report = 0;
501
502 /* If a chunk that is being used for RTT measurement
503 * has to be retransmitted, we cannot use this chunk
504 * anymore for RTT measurements. Reset rto_pending so
505 * that a new RTT measurement is started when a new
506 * data chunk is sent.
507 */
508 if (chunk->rtt_in_progress) {
509 chunk->rtt_in_progress = 0;
510 transport->rto_pending = 0;
511 }
512
6eabca54
XZ
513 chunk->resent = 1;
514
1da177e4
LT
515 /* Move the chunk to the retransmit queue. The chunks
516 * on the retransmit queue are always kept in order.
517 */
518 list_del_init(lchunk);
519 sctp_insert_list(&q->retransmit, lchunk);
520 }
521 }
522
bb33381d
DB
523 pr_debug("%s: transport:%p, reason:%d, cwnd:%d, ssthresh:%d, "
524 "flight_size:%d, pba:%d\n", __func__, transport, reason,
525 transport->cwnd, transport->ssthresh, transport->flight_size,
526 transport->partial_bytes_acked);
1da177e4
LT
527}
528
529/* Mark all the eligible packets on a transport for retransmission and force
530 * one packet out.
531 */
532void sctp_retransmit(struct sctp_outq *q, struct sctp_transport *transport,
533 sctp_retransmit_reason_t reason)
534{
b01a2407 535 struct net *net = sock_net(q->asoc->base.sk);
1da177e4 536
cb3f837b 537 switch (reason) {
1da177e4 538 case SCTP_RTXR_T3_RTX:
b01a2407 539 SCTP_INC_STATS(net, SCTP_MIB_T3_RETRANSMITS);
1da177e4
LT
540 sctp_transport_lower_cwnd(transport, SCTP_LOWER_CWND_T3_RTX);
541 /* Update the retran path if the T3-rtx timer has expired for
542 * the current retran path.
543 */
544 if (transport == transport->asoc->peer.retran_path)
545 sctp_assoc_update_retran_path(transport->asoc);
58fbbed4
NH
546 transport->asoc->rtx_data_chunks +=
547 transport->asoc->unack_data;
1da177e4
LT
548 break;
549 case SCTP_RTXR_FAST_RTX:
b01a2407 550 SCTP_INC_STATS(net, SCTP_MIB_FAST_RETRANSMITS);
1da177e4 551 sctp_transport_lower_cwnd(transport, SCTP_LOWER_CWND_FAST_RTX);
62aeaff5 552 q->fast_rtx = 1;
1da177e4
LT
553 break;
554 case SCTP_RTXR_PMTUD:
b01a2407 555 SCTP_INC_STATS(net, SCTP_MIB_PMTUD_RETRANSMITS);
1da177e4 556 break;
b6157d8e 557 case SCTP_RTXR_T1_RTX:
b01a2407 558 SCTP_INC_STATS(net, SCTP_MIB_T1_RETRANSMITS);
58fbbed4 559 transport->asoc->init_retries++;
b6157d8e 560 break;
ac0b0462
SS
561 default:
562 BUG();
1da177e4
LT
563 }
564
b6157d8e 565 sctp_retransmit_mark(q, transport, reason);
1da177e4
LT
566
567 /* PR-SCTP A5) Any time the T3-rtx timer expires, on any destination,
568 * the sender SHOULD try to advance the "Advanced.Peer.Ack.Point" by
569 * following the procedures outlined in C1 - C5.
570 */
8b750ce5
VY
571 if (reason == SCTP_RTXR_T3_RTX)
572 sctp_generate_fwdtsn(q, q->asoc->ctsn_ack_point);
1da177e4 573
8b750ce5
VY
574 /* Flush the queues only on timeout, since fast_rtx is only
575 * triggered during sack processing and the queue
576 * will be flushed at the end.
577 */
578 if (reason != SCTP_RTXR_FAST_RTX)
64519440 579 sctp_outq_flush(q, /* rtx_timeout */ 1, GFP_ATOMIC);
1da177e4
LT
580}
581
582/*
583 * Transmit DATA chunks on the retransmit queue. Upon return from
584 * sctp_outq_flush_rtx() the packet 'pkt' may contain chunks which
585 * need to be transmitted by the caller.
586 * We assume that pkt->transport has already been set.
587 *
588 * The return value is a normal kernel error return value.
589 */
590static int sctp_outq_flush_rtx(struct sctp_outq *q, struct sctp_packet *pkt,
591 int rtx_timeout, int *start_timer)
592{
593 struct list_head *lqueue;
1da177e4
LT
594 struct sctp_transport *transport = pkt->transport;
595 sctp_xmit_t status;
596 struct sctp_chunk *chunk, *chunk1;
62aeaff5 597 int fast_rtx;
1da177e4 598 int error = 0;
62aeaff5 599 int timer = 0;
8b750ce5 600 int done = 0;
1da177e4 601
1da177e4 602 lqueue = &q->retransmit;
62aeaff5 603 fast_rtx = q->fast_rtx;
1da177e4 604
8b750ce5
VY
605 /* This loop handles time-out retransmissions, fast retransmissions,
606 * and retransmissions due to opening of whindow.
607 *
608 * RFC 2960 6.3.3 Handle T3-rtx Expiration
1da177e4
LT
609 *
610 * E3) Determine how many of the earliest (i.e., lowest TSN)
611 * outstanding DATA chunks for the address for which the
612 * T3-rtx has expired will fit into a single packet, subject
613 * to the MTU constraint for the path corresponding to the
614 * destination transport address to which the retransmission
615 * is being sent (this may be different from the address for
616 * which the timer expires [see Section 6.4]). Call this value
617 * K. Bundle and retransmit those K DATA chunks in a single
618 * packet to the destination endpoint.
619 *
620 * [Just to be painfully clear, if we are retransmitting
621 * because a timeout just happened, we should send only ONE
622 * packet of retransmitted data.]
8b750ce5
VY
623 *
624 * For fast retransmissions we also send only ONE packet. However,
625 * if we are just flushing the queue due to open window, we'll
626 * try to send as much as possible.
1da177e4 627 */
8b750ce5 628 list_for_each_entry_safe(chunk, chunk1, lqueue, transmitted_list) {
4c6a6f42
WY
629 /* If the chunk is abandoned, move it to abandoned list. */
630 if (sctp_chunk_abandoned(chunk)) {
631 list_del_init(&chunk->transmitted_list);
632 sctp_insert_list(&q->abandoned,
633 &chunk->transmitted_list);
634 continue;
635 }
1da177e4
LT
636
637 /* Make sure that Gap Acked TSNs are not retransmitted. A
638 * simple approach is just to move such TSNs out of the
639 * way and into a 'transmitted' queue and skip to the
640 * next chunk.
641 */
642 if (chunk->tsn_gap_acked) {
54a27924
WY
643 list_move_tail(&chunk->transmitted_list,
644 &transport->transmitted);
1da177e4
LT
645 continue;
646 }
647
8b750ce5
VY
648 /* If we are doing fast retransmit, ignore non-fast_rtransmit
649 * chunks
650 */
651 if (fast_rtx && !chunk->fast_retransmit)
652 continue;
653
bc4f841a 654redo:
1da177e4
LT
655 /* Attempt to append this chunk to the packet. */
656 status = sctp_packet_append_chunk(pkt, chunk);
657
658 switch (status) {
659 case SCTP_XMIT_PMTU_FULL:
bc4f841a
WY
660 if (!pkt->has_data && !pkt->has_cookie_echo) {
661 /* If this packet did not contain DATA then
662 * retransmission did not happen, so do it
663 * again. We'll ignore the error here since
664 * control chunks are already freed so there
665 * is nothing we can do.
666 */
cea8768f 667 sctp_packet_transmit(pkt, GFP_ATOMIC);
bc4f841a
WY
668 goto redo;
669 }
670
1da177e4 671 /* Send this packet. */
cea8768f 672 error = sctp_packet_transmit(pkt, GFP_ATOMIC);
1da177e4
LT
673
674 /* If we are retransmitting, we should only
675 * send a single packet.
f246a7b7 676 * Otherwise, try appending this chunk again.
1da177e4 677 */
8b750ce5
VY
678 if (rtx_timeout || fast_rtx)
679 done = 1;
f246a7b7
VY
680 else
681 goto redo;
1da177e4 682
8b750ce5 683 /* Bundle next chunk in the next round. */
1da177e4
LT
684 break;
685
686 case SCTP_XMIT_RWND_FULL:
d808ad9a 687 /* Send this packet. */
cea8768f 688 error = sctp_packet_transmit(pkt, GFP_ATOMIC);
1da177e4
LT
689
690 /* Stop sending DATA as there is no more room
691 * at the receiver.
692 */
8b750ce5 693 done = 1;
1da177e4
LT
694 break;
695
526cbef7 696 case SCTP_XMIT_DELAY:
d808ad9a 697 /* Send this packet. */
cea8768f 698 error = sctp_packet_transmit(pkt, GFP_ATOMIC);
1da177e4
LT
699
700 /* Stop sending DATA because of nagle delay. */
8b750ce5 701 done = 1;
1da177e4
LT
702 break;
703
704 default:
705 /* The append was successful, so add this chunk to
706 * the transmitted list.
707 */
54a27924
WY
708 list_move_tail(&chunk->transmitted_list,
709 &transport->transmitted);
1da177e4 710
d808ad9a 711 /* Mark the chunk as ineligible for fast retransmit
1da177e4
LT
712 * after it is retransmitted.
713 */
c226ef9b
NH
714 if (chunk->fast_retransmit == SCTP_NEED_FRTX)
715 chunk->fast_retransmit = SCTP_DONT_FRTX;
1da177e4 716
196d6759 717 q->asoc->stats.rtxchunks++;
1da177e4 718 break;
3ff50b79 719 }
1da177e4 720
62aeaff5
VY
721 /* Set the timer if there were no errors */
722 if (!error && !timer)
723 timer = 1;
724
8b750ce5
VY
725 if (done)
726 break;
727 }
728
729 /* If we are here due to a retransmit timeout or a fast
730 * retransmit and if there are any chunks left in the retransmit
731 * queue that could not fit in the PMTU sized packet, they need
732 * to be marked as ineligible for a subsequent fast retransmit.
733 */
734 if (rtx_timeout || fast_rtx) {
735 list_for_each_entry(chunk1, lqueue, transmitted_list) {
c226ef9b
NH
736 if (chunk1->fast_retransmit == SCTP_NEED_FRTX)
737 chunk1->fast_retransmit = SCTP_DONT_FRTX;
1da177e4
LT
738 }
739 }
740
62aeaff5
VY
741 *start_timer = timer;
742
743 /* Clear fast retransmit hint */
744 if (fast_rtx)
745 q->fast_rtx = 0;
746
1da177e4
LT
747 return error;
748}
749
750/* Cork the outqueue so queued chunks are really queued. */
cea8768f 751int sctp_outq_uncork(struct sctp_outq *q, gfp_t gfp)
1da177e4 752{
7d54dc68 753 if (q->cork)
1da177e4 754 q->cork = 0;
dacda32e 755
cea8768f 756 return sctp_outq_flush(q, 0, gfp);
1da177e4
LT
757}
758
2e3216cd 759
1da177e4
LT
760/*
761 * Try to flush an outqueue.
762 *
763 * Description: Send everything in q which we legally can, subject to
764 * congestion limitations.
765 * * Note: This function can be called from multiple contexts so appropriate
766 * locking concerns must be made. Today we use the sock lock to protect
767 * this function.
768 */
cea8768f 769static int sctp_outq_flush(struct sctp_outq *q, int rtx_timeout, gfp_t gfp)
1da177e4
LT
770{
771 struct sctp_packet *packet;
772 struct sctp_packet singleton;
773 struct sctp_association *asoc = q->asoc;
774 __u16 sport = asoc->base.bind_addr.port;
775 __u16 dport = asoc->peer.port;
776 __u32 vtag = asoc->peer.i.init_tag;
1da177e4
LT
777 struct sctp_transport *transport = NULL;
778 struct sctp_transport *new_transport;
79af02c2 779 struct sctp_chunk *chunk, *tmp;
1da177e4
LT
780 sctp_xmit_t status;
781 int error = 0;
782 int start_timer = 0;
2e3216cd 783 int one_packet = 0;
1da177e4
LT
784
785 /* These transports have chunks to send. */
786 struct list_head transport_list;
787 struct list_head *ltransport;
788
789 INIT_LIST_HEAD(&transport_list);
790 packet = NULL;
791
792 /*
793 * 6.10 Bundling
794 * ...
795 * When bundling control chunks with DATA chunks, an
796 * endpoint MUST place control chunks first in the outbound
797 * SCTP packet. The transmitter MUST transmit DATA chunks
798 * within a SCTP packet in increasing order of TSN.
799 * ...
800 */
801
79af02c2 802 list_for_each_entry_safe(chunk, tmp, &q->control_chunk_list, list) {
8a07eb0a
MH
803 /* RFC 5061, 5.3
804 * F1) This means that until such time as the ASCONF
805 * containing the add is acknowledged, the sender MUST
806 * NOT use the new IP address as a source for ANY SCTP
807 * packet except on carrying an ASCONF Chunk.
808 */
809 if (asoc->src_out_of_asoc_ok &&
810 chunk->chunk_hdr->type != SCTP_CID_ASCONF)
811 continue;
812
79af02c2
DM
813 list_del_init(&chunk->list);
814
1da177e4
LT
815 /* Pick the right transport to use. */
816 new_transport = chunk->transport;
817
818 if (!new_transport) {
a08de64d
VY
819 /*
820 * If we have a prior transport pointer, see if
821 * the destination address of the chunk
822 * matches the destination address of the
823 * current transport. If not a match, then
824 * try to look up the transport with a given
825 * destination address. We do this because
826 * after processing ASCONFs, we may have new
827 * transports created.
828 */
829 if (transport &&
830 sctp_cmp_addr_exact(&chunk->dest,
831 &transport->ipaddr))
832 new_transport = transport;
833 else
834 new_transport = sctp_assoc_lookup_paddr(asoc,
835 &chunk->dest);
836
837 /* if we still don't have a new transport, then
838 * use the current active path.
839 */
840 if (!new_transport)
841 new_transport = asoc->peer.active_path;
ad8fec17 842 } else if ((new_transport->state == SCTP_INACTIVE) ||
5aa93bcf
NH
843 (new_transport->state == SCTP_UNCONFIRMED) ||
844 (new_transport->state == SCTP_PF)) {
3f7a87d2
FF
845 /* If the chunk is Heartbeat or Heartbeat Ack,
846 * send it to chunk->transport, even if it's
1da177e4
LT
847 * inactive.
848 *
849 * 3.3.6 Heartbeat Acknowledgement:
d808ad9a 850 * ...
1da177e4
LT
851 * A HEARTBEAT ACK is always sent to the source IP
852 * address of the IP datagram containing the
853 * HEARTBEAT chunk to which this ack is responding.
d808ad9a 854 * ...
a08de64d
VY
855 *
856 * ASCONF_ACKs also must be sent to the source.
1da177e4
LT
857 */
858 if (chunk->chunk_hdr->type != SCTP_CID_HEARTBEAT &&
a08de64d
VY
859 chunk->chunk_hdr->type != SCTP_CID_HEARTBEAT_ACK &&
860 chunk->chunk_hdr->type != SCTP_CID_ASCONF_ACK)
1da177e4
LT
861 new_transport = asoc->peer.active_path;
862 }
863
864 /* Are we switching transports?
865 * Take care of transport locks.
866 */
867 if (new_transport != transport) {
868 transport = new_transport;
869 if (list_empty(&transport->send_ready)) {
870 list_add_tail(&transport->send_ready,
871 &transport_list);
872 }
873 packet = &transport->packet;
874 sctp_packet_config(packet, vtag,
875 asoc->peer.ecn_capable);
876 }
877
878 switch (chunk->chunk_hdr->type) {
879 /*
880 * 6.10 Bundling
881 * ...
882 * An endpoint MUST NOT bundle INIT, INIT ACK or SHUTDOWN
883 * COMPLETE with any other chunks. [Send them immediately.]
884 */
885 case SCTP_CID_INIT:
886 case SCTP_CID_INIT_ACK:
887 case SCTP_CID_SHUTDOWN_COMPLETE:
888 sctp_packet_init(&singleton, transport, sport, dport);
889 sctp_packet_config(&singleton, vtag, 0);
890 sctp_packet_append_chunk(&singleton, chunk);
cea8768f 891 error = sctp_packet_transmit(&singleton, gfp);
64519440
XL
892 if (error < 0) {
893 asoc->base.sk->sk_err = -error;
894 return 0;
895 }
1da177e4
LT
896 break;
897
898 case SCTP_CID_ABORT:
f4ad85ca
GJ
899 if (sctp_test_T_bit(chunk)) {
900 packet->vtag = asoc->c.my_vtag;
901 }
2e3216cd
VY
902 /* The following chunks are "response" chunks, i.e.
903 * they are generated in response to something we
904 * received. If we are sending these, then we can
905 * send only 1 packet containing these chunks.
906 */
1da177e4 907 case SCTP_CID_HEARTBEAT_ACK:
1da177e4 908 case SCTP_CID_SHUTDOWN_ACK:
1da177e4 909 case SCTP_CID_COOKIE_ACK:
2e3216cd
VY
910 case SCTP_CID_COOKIE_ECHO:
911 case SCTP_CID_ERROR:
1da177e4 912 case SCTP_CID_ECN_CWR:
1da177e4 913 case SCTP_CID_ASCONF_ACK:
2e3216cd 914 one_packet = 1;
25985edc 915 /* Fall through */
2e3216cd
VY
916
917 case SCTP_CID_SACK:
918 case SCTP_CID_HEARTBEAT:
919 case SCTP_CID_SHUTDOWN:
920 case SCTP_CID_ECN_ECNE:
921 case SCTP_CID_ASCONF:
1da177e4 922 case SCTP_CID_FWD_TSN:
2e3216cd 923 status = sctp_packet_transmit_chunk(packet, chunk,
cea8768f 924 one_packet, gfp);
2e3216cd
VY
925 if (status != SCTP_XMIT_OK) {
926 /* put the chunk back */
927 list_add(&chunk->list, &q->control_chunk_list);
196d6759
MB
928 } else {
929 asoc->stats.octrlchunks++;
bd69b981
WY
930 /* PR-SCTP C5) If a FORWARD TSN is sent, the
931 * sender MUST assure that at least one T3-rtx
932 * timer is running.
933 */
ba6f5e33
MRL
934 if (chunk->chunk_hdr->type == SCTP_CID_FWD_TSN) {
935 sctp_transport_reset_t3_rtx(transport);
936 transport->last_time_sent = jiffies;
937 }
2e3216cd 938 }
1da177e4
LT
939 break;
940
941 default:
942 /* We built a chunk with an illegal type! */
943 BUG();
3ff50b79 944 }
1da177e4
LT
945 }
946
8a07eb0a
MH
947 if (q->asoc->src_out_of_asoc_ok)
948 goto sctp_flush_out;
949
1da177e4
LT
950 /* Is it OK to send data chunks? */
951 switch (asoc->state) {
952 case SCTP_STATE_COOKIE_ECHOED:
953 /* Only allow bundling when this packet has a COOKIE-ECHO
954 * chunk.
955 */
956 if (!packet || !packet->has_cookie_echo)
957 break;
958
959 /* fallthru */
960 case SCTP_STATE_ESTABLISHED:
961 case SCTP_STATE_SHUTDOWN_PENDING:
962 case SCTP_STATE_SHUTDOWN_RECEIVED:
963 /*
964 * RFC 2960 6.1 Transmission of DATA Chunks
965 *
966 * C) When the time comes for the sender to transmit,
967 * before sending new DATA chunks, the sender MUST
968 * first transmit any outstanding DATA chunks which
969 * are marked for retransmission (limited by the
970 * current cwnd).
971 */
972 if (!list_empty(&q->retransmit)) {
f207c050
MH
973 if (asoc->peer.retran_path->state == SCTP_UNCONFIRMED)
974 goto sctp_flush_out;
1da177e4
LT
975 if (transport == asoc->peer.retran_path)
976 goto retran;
977
978 /* Switch transports & prepare the packet. */
979
980 transport = asoc->peer.retran_path;
981
982 if (list_empty(&transport->send_ready)) {
983 list_add_tail(&transport->send_ready,
984 &transport_list);
985 }
986
987 packet = &transport->packet;
988 sctp_packet_config(packet, vtag,
989 asoc->peer.ecn_capable);
990 retran:
991 error = sctp_outq_flush_rtx(q, packet,
992 rtx_timeout, &start_timer);
64519440
XL
993 if (error < 0)
994 asoc->base.sk->sk_err = -error;
1da177e4 995
ba6f5e33
MRL
996 if (start_timer) {
997 sctp_transport_reset_t3_rtx(transport);
998 transport->last_time_sent = jiffies;
999 }
1da177e4
LT
1000
1001 /* This can happen on COOKIE-ECHO resend. Only
1002 * one chunk can get bundled with a COOKIE-ECHO.
1003 */
1004 if (packet->has_cookie_echo)
1005 goto sctp_flush_out;
1006
1007 /* Don't send new data if there is still data
1008 * waiting to retransmit.
1009 */
1010 if (!list_empty(&q->retransmit))
1011 goto sctp_flush_out;
1012 }
1013
46d5a808
VY
1014 /* Apply Max.Burst limitation to the current transport in
1015 * case it will be used for new data. We are going to
1016 * rest it before we return, but we want to apply the limit
1017 * to the currently queued data.
1018 */
1019 if (transport)
1020 sctp_transport_burst_limited(transport);
1021
1da177e4 1022 /* Finally, transmit new packets. */
1da177e4
LT
1023 while ((chunk = sctp_outq_dequeue_data(q)) != NULL) {
1024 /* RFC 2960 6.5 Every DATA chunk MUST carry a valid
1025 * stream identifier.
1026 */
1027 if (chunk->sinfo.sinfo_stream >=
1028 asoc->c.sinit_num_ostreams) {
1029
1030 /* Mark as failed send. */
1031 sctp_chunk_fail(chunk, SCTP_ERROR_INV_STRM);
8dbdf1f5
XL
1032 if (asoc->prsctp_enable &&
1033 SCTP_PR_PRIO_ENABLED(chunk->sinfo.sinfo_flags))
1034 asoc->sent_cnt_removable--;
1da177e4
LT
1035 sctp_chunk_free(chunk);
1036 continue;
1037 }
1038
1039 /* Has this chunk expired? */
1040 if (sctp_chunk_abandoned(chunk)) {
1041 sctp_chunk_fail(chunk, 0);
1042 sctp_chunk_free(chunk);
1043 continue;
1044 }
1045
1046 /* If there is a specified transport, use it.
1047 * Otherwise, we want to use the active path.
1048 */
1049 new_transport = chunk->transport;
3f7a87d2 1050 if (!new_transport ||
ad8fec17 1051 ((new_transport->state == SCTP_INACTIVE) ||
5aa93bcf
NH
1052 (new_transport->state == SCTP_UNCONFIRMED) ||
1053 (new_transport->state == SCTP_PF)))
1da177e4 1054 new_transport = asoc->peer.active_path;
31b055ef
MRL
1055 if (new_transport->state == SCTP_UNCONFIRMED) {
1056 WARN_ONCE(1, "Atempt to send packet on unconfirmed path.");
1057 sctp_chunk_fail(chunk, 0);
1058 sctp_chunk_free(chunk);
f207c050 1059 continue;
31b055ef 1060 }
1da177e4
LT
1061
1062 /* Change packets if necessary. */
1063 if (new_transport != transport) {
1064 transport = new_transport;
1065
1066 /* Schedule to have this transport's
1067 * packet flushed.
1068 */
1069 if (list_empty(&transport->send_ready)) {
1070 list_add_tail(&transport->send_ready,
1071 &transport_list);
1072 }
1073
1074 packet = &transport->packet;
1075 sctp_packet_config(packet, vtag,
1076 asoc->peer.ecn_capable);
46d5a808
VY
1077 /* We've switched transports, so apply the
1078 * Burst limit to the new transport.
1079 */
1080 sctp_transport_burst_limited(transport);
1da177e4
LT
1081 }
1082
bb33381d
DB
1083 pr_debug("%s: outq:%p, chunk:%p[%s], tx-tsn:0x%x skb->head:%p "
1084 "skb->users:%d\n",
1085 __func__, q, chunk, chunk && chunk->chunk_hdr ?
1086 sctp_cname(SCTP_ST_CHUNK(chunk->chunk_hdr->type)) :
1087 "illegal chunk", ntohl(chunk->subh.data_hdr->tsn),
1088 chunk->skb ? chunk->skb->head : NULL, chunk->skb ?
1089 atomic_read(&chunk->skb->users) : -1);
1da177e4
LT
1090
1091 /* Add the chunk to the packet. */
cea8768f 1092 status = sctp_packet_transmit_chunk(packet, chunk, 0, gfp);
1da177e4
LT
1093
1094 switch (status) {
1095 case SCTP_XMIT_PMTU_FULL:
1096 case SCTP_XMIT_RWND_FULL:
526cbef7 1097 case SCTP_XMIT_DELAY:
1da177e4
LT
1098 /* We could not append this chunk, so put
1099 * the chunk back on the output queue.
1100 */
bb33381d
DB
1101 pr_debug("%s: could not transmit tsn:0x%x, status:%d\n",
1102 __func__, ntohl(chunk->subh.data_hdr->tsn),
1103 status);
1104
1da177e4
LT
1105 sctp_outq_head_data(q, chunk);
1106 goto sctp_flush_out;
1da177e4
LT
1107
1108 case SCTP_XMIT_OK:
b93d6471
WY
1109 /* The sender is in the SHUTDOWN-PENDING state,
1110 * The sender MAY set the I-bit in the DATA
1111 * chunk header.
1112 */
1113 if (asoc->state == SCTP_STATE_SHUTDOWN_PENDING)
1114 chunk->chunk_hdr->flags |= SCTP_DATA_SACK_IMM;
196d6759
MB
1115 if (chunk->chunk_hdr->flags & SCTP_DATA_UNORDERED)
1116 asoc->stats.ouodchunks++;
1117 else
1118 asoc->stats.oodchunks++;
b93d6471 1119
1da177e4
LT
1120 break;
1121
1122 default:
1123 BUG();
1124 }
1125
d808ad9a 1126 /* BUG: We assume that the sctp_packet_transmit()
1da177e4
LT
1127 * call below will succeed all the time and add the
1128 * chunk to the transmitted list and restart the
1129 * timers.
1130 * It is possible that the call can fail under OOM
1131 * conditions.
1132 *
1133 * Is this really a problem? Won't this behave
1134 * like a lost TSN?
1135 */
1136 list_add_tail(&chunk->transmitted_list,
1137 &transport->transmitted);
1138
ba6f5e33
MRL
1139 sctp_transport_reset_t3_rtx(transport);
1140 transport->last_time_sent = jiffies;
1da177e4 1141
1da177e4
LT
1142 /* Only let one DATA chunk get bundled with a
1143 * COOKIE-ECHO chunk.
1144 */
1145 if (packet->has_cookie_echo)
1146 goto sctp_flush_out;
1147 }
1148 break;
1149
1150 default:
1151 /* Do nothing. */
1152 break;
1153 }
1154
1155sctp_flush_out:
1156
1157 /* Before returning, examine all the transports touched in
1158 * this call. Right now, we bluntly force clear all the
1159 * transports. Things might change after we implement Nagle.
1160 * But such an examination is still required.
1161 *
1162 * --xguo
1163 */
cb3f837b 1164 while ((ltransport = sctp_list_dequeue(&transport_list)) != NULL) {
1da177e4
LT
1165 struct sctp_transport *t = list_entry(ltransport,
1166 struct sctp_transport,
1167 send_ready);
1168 packet = &t->packet;
64519440 1169 if (!sctp_packet_empty(packet)) {
cea8768f 1170 error = sctp_packet_transmit(packet, gfp);
64519440
XL
1171 if (error < 0)
1172 asoc->base.sk->sk_err = -error;
1173 }
46d5a808
VY
1174
1175 /* Clear the burst limited state, if any */
1176 sctp_transport_burst_reset(t);
1da177e4
LT
1177 }
1178
64519440 1179 return 0;
1da177e4
LT
1180}
1181
1182/* Update unack_data based on the incoming SACK chunk */
1183static void sctp_sack_update_unack_data(struct sctp_association *assoc,
1184 struct sctp_sackhdr *sack)
1185{
1186 sctp_sack_variable_t *frags;
1187 __u16 unack_data;
1188 int i;
1189
1190 unack_data = assoc->next_tsn - assoc->ctsn_ack_point - 1;
1191
1192 frags = sack->variable;
1193 for (i = 0; i < ntohs(sack->num_gap_ack_blocks); i++) {
1194 unack_data -= ((ntohs(frags[i].gab.end) -
1195 ntohs(frags[i].gab.start) + 1));
1196 }
1197
1198 assoc->unack_data = unack_data;
1199}
1200
1da177e4
LT
1201/* This is where we REALLY process a SACK.
1202 *
1203 * Process the SACK against the outqueue. Mostly, this just frees
1204 * things off the transmitted queue.
1205 */
edfee033 1206int sctp_outq_sack(struct sctp_outq *q, struct sctp_chunk *chunk)
1da177e4
LT
1207{
1208 struct sctp_association *asoc = q->asoc;
edfee033 1209 struct sctp_sackhdr *sack = chunk->subh.sack_hdr;
1da177e4
LT
1210 struct sctp_transport *transport;
1211 struct sctp_chunk *tchunk = NULL;
9dbc15f0 1212 struct list_head *lchunk, *transport_list, *temp;
1da177e4
LT
1213 sctp_sack_variable_t *frags = sack->variable;
1214 __u32 sack_ctsn, ctsn, tsn;
1215 __u32 highest_tsn, highest_new_tsn;
1216 __u32 sack_a_rwnd;
95c96174 1217 unsigned int outstanding;
1da177e4
LT
1218 struct sctp_transport *primary = asoc->peer.primary_path;
1219 int count_of_newacks = 0;
2cd9b822 1220 int gap_ack_blocks;
ea862c8d 1221 u8 accum_moved = 0;
1da177e4
LT
1222
1223 /* Grab the association's destination address list. */
1224 transport_list = &asoc->peer.transport_addr_list;
1225
1226 sack_ctsn = ntohl(sack->cum_tsn_ack);
2cd9b822 1227 gap_ack_blocks = ntohs(sack->num_gap_ack_blocks);
196d6759 1228 asoc->stats.gapcnt += gap_ack_blocks;
1da177e4
LT
1229 /*
1230 * SFR-CACC algorithm:
1231 * On receipt of a SACK the sender SHOULD execute the
1232 * following statements.
1233 *
1234 * 1) If the cumulative ack in the SACK passes next tsn_at_change
1235 * on the current primary, the CHANGEOVER_ACTIVE flag SHOULD be
1236 * cleared. The CYCLING_CHANGEOVER flag SHOULD also be cleared for
1237 * all destinations.
1da177e4
LT
1238 * 2) If the SACK contains gap acks and the flag CHANGEOVER_ACTIVE
1239 * is set the receiver of the SACK MUST take the following actions:
1240 *
1241 * A) Initialize the cacc_saw_newack to 0 for all destination
1242 * addresses.
ab5216a5
VY
1243 *
1244 * Only bother if changeover_active is set. Otherwise, this is
1245 * totally suboptimal to do on every SACK.
1da177e4 1246 */
ab5216a5
VY
1247 if (primary->cacc.changeover_active) {
1248 u8 clear_cycling = 0;
1249
1250 if (TSN_lte(primary->cacc.next_tsn_at_change, sack_ctsn)) {
1251 primary->cacc.changeover_active = 0;
1252 clear_cycling = 1;
1253 }
1254
1255 if (clear_cycling || gap_ack_blocks) {
1256 list_for_each_entry(transport, transport_list,
1257 transports) {
1258 if (clear_cycling)
1259 transport->cacc.cycling_changeover = 0;
1260 if (gap_ack_blocks)
1261 transport->cacc.cacc_saw_newack = 0;
1262 }
1da177e4
LT
1263 }
1264 }
1265
1266 /* Get the highest TSN in the sack. */
1267 highest_tsn = sack_ctsn;
2cd9b822
VY
1268 if (gap_ack_blocks)
1269 highest_tsn += ntohs(frags[gap_ack_blocks - 1].gab.end);
1da177e4 1270
bfa0d984 1271 if (TSN_lt(asoc->highest_sacked, highest_tsn))
1da177e4 1272 asoc->highest_sacked = highest_tsn;
1da177e4 1273
bfa0d984 1274 highest_new_tsn = sack_ctsn;
2cd9b822 1275
1da177e4
LT
1276 /* Run through the retransmit queue. Credit bytes received
1277 * and free those chunks that we can.
1278 */
edfee033 1279 sctp_check_transmitted(q, &q->retransmit, NULL, NULL, sack, &highest_new_tsn);
1da177e4
LT
1280
1281 /* Run through the transmitted queue.
1282 * Credit bytes received and free those chunks which we can.
1283 *
1284 * This is a MASSIVE candidate for optimization.
1285 */
9dbc15f0 1286 list_for_each_entry(transport, transport_list, transports) {
1da177e4 1287 sctp_check_transmitted(q, &transport->transmitted,
edfee033
ND
1288 transport, &chunk->source, sack,
1289 &highest_new_tsn);
1da177e4
LT
1290 /*
1291 * SFR-CACC algorithm:
1292 * C) Let count_of_newacks be the number of
1293 * destinations for which cacc_saw_newack is set.
1294 */
1295 if (transport->cacc.cacc_saw_newack)
cb3f837b 1296 count_of_newacks++;
1da177e4
LT
1297 }
1298
ea862c8d
VY
1299 /* Move the Cumulative TSN Ack Point if appropriate. */
1300 if (TSN_lt(asoc->ctsn_ack_point, sack_ctsn)) {
1301 asoc->ctsn_ack_point = sack_ctsn;
1302 accum_moved = 1;
1303 }
1304
2cd9b822 1305 if (gap_ack_blocks) {
ea862c8d
VY
1306
1307 if (asoc->fast_recovery && accum_moved)
1308 highest_new_tsn = highest_tsn;
1309
2cd9b822
VY
1310 list_for_each_entry(transport, transport_list, transports)
1311 sctp_mark_missing(q, &transport->transmitted, transport,
1312 highest_new_tsn, count_of_newacks);
1da177e4
LT
1313 }
1314
1da177e4
LT
1315 /* Update unack_data field in the assoc. */
1316 sctp_sack_update_unack_data(asoc, sack);
1317
1318 ctsn = asoc->ctsn_ack_point;
1319
1320 /* Throw away stuff rotting on the sack queue. */
1321 list_for_each_safe(lchunk, temp, &q->sacked) {
1322 tchunk = list_entry(lchunk, struct sctp_chunk,
1323 transmitted_list);
1324 tsn = ntohl(tchunk->subh.data_hdr->tsn);
5f9646c3
VY
1325 if (TSN_lte(tsn, ctsn)) {
1326 list_del_init(&tchunk->transmitted_list);
8dbdf1f5
XL
1327 if (asoc->prsctp_enable &&
1328 SCTP_PR_PRIO_ENABLED(chunk->sinfo.sinfo_flags))
1329 asoc->sent_cnt_removable--;
1da177e4 1330 sctp_chunk_free(tchunk);
5f9646c3 1331 }
1da177e4
LT
1332 }
1333
1334 /* ii) Set rwnd equal to the newly received a_rwnd minus the
1335 * number of bytes still outstanding after processing the
1336 * Cumulative TSN Ack and the Gap Ack Blocks.
1337 */
1338
1339 sack_a_rwnd = ntohl(sack->a_rwnd);
8a0d19c5 1340 asoc->peer.zero_window_announced = !sack_a_rwnd;
1da177e4
LT
1341 outstanding = q->outstanding_bytes;
1342
1343 if (outstanding < sack_a_rwnd)
1344 sack_a_rwnd -= outstanding;
1345 else
1346 sack_a_rwnd = 0;
1347
1348 asoc->peer.rwnd = sack_a_rwnd;
1349
1350 sctp_generate_fwdtsn(q, sack_ctsn);
1351
bb33381d
DB
1352 pr_debug("%s: sack cumulative tsn ack:0x%x\n", __func__, sack_ctsn);
1353 pr_debug("%s: cumulative tsn ack of assoc:%p is 0x%x, "
1354 "advertised peer ack point:0x%x\n", __func__, asoc, ctsn,
1355 asoc->adv_peer_ack_point);
1da177e4 1356
619a60ee 1357 return sctp_outq_is_empty(q);
1da177e4
LT
1358}
1359
619a60ee
VY
1360/* Is the outqueue empty?
1361 * The queue is empty when we have not pending data, no in-flight data
1362 * and nothing pending retransmissions.
1363 */
1da177e4
LT
1364int sctp_outq_is_empty(const struct sctp_outq *q)
1365{
619a60ee
VY
1366 return q->out_qlen == 0 && q->outstanding_bytes == 0 &&
1367 list_empty(&q->retransmit);
1da177e4
LT
1368}
1369
1370/********************************************************************
1371 * 2nd Level Abstractions
1372 ********************************************************************/
1373
1374/* Go through a transport's transmitted list or the association's retransmit
1375 * list and move chunks that are acked by the Cumulative TSN Ack to q->sacked.
1376 * The retransmit list will not have an associated transport.
1377 *
1378 * I added coherent debug information output. --xguo
1379 *
1380 * Instead of printing 'sacked' or 'kept' for each TSN on the
1381 * transmitted_queue, we print a range: SACKED: TSN1-TSN2, TSN3, TSN4-TSN5.
1382 * KEPT TSN6-TSN7, etc.
1383 */
1384static void sctp_check_transmitted(struct sctp_outq *q,
1385 struct list_head *transmitted_queue,
1386 struct sctp_transport *transport,
edfee033 1387 union sctp_addr *saddr,
1da177e4 1388 struct sctp_sackhdr *sack,
bfa0d984 1389 __u32 *highest_new_tsn_in_sack)
1da177e4
LT
1390{
1391 struct list_head *lchunk;
1392 struct sctp_chunk *tchunk;
1393 struct list_head tlist;
1394 __u32 tsn;
1395 __u32 sack_ctsn;
1396 __u32 rtt;
1397 __u8 restart_timer = 0;
1398 int bytes_acked = 0;
31b02e15 1399 int migrate_bytes = 0;
8c2f414a 1400 bool forward_progress = false;
1da177e4 1401
1da177e4
LT
1402 sack_ctsn = ntohl(sack->cum_tsn_ack);
1403
1404 INIT_LIST_HEAD(&tlist);
1405
1406 /* The while loop will skip empty transmitted queues. */
1407 while (NULL != (lchunk = sctp_list_dequeue(transmitted_queue))) {
1408 tchunk = list_entry(lchunk, struct sctp_chunk,
1409 transmitted_list);
1410
1411 if (sctp_chunk_abandoned(tchunk)) {
1412 /* Move the chunk to abandoned list. */
1413 sctp_insert_list(&q->abandoned, lchunk);
8c4a2d41
VY
1414
1415 /* If this chunk has not been acked, stop
1416 * considering it as 'outstanding'.
1417 */
1418 if (!tchunk->tsn_gap_acked) {
31b02e15
VY
1419 if (tchunk->transport)
1420 tchunk->transport->flight_size -=
1421 sctp_data_size(tchunk);
8c4a2d41
VY
1422 q->outstanding_bytes -= sctp_data_size(tchunk);
1423 }
1da177e4
LT
1424 continue;
1425 }
1426
1427 tsn = ntohl(tchunk->subh.data_hdr->tsn);
1428 if (sctp_acked(sack, tsn)) {
1429 /* If this queue is the retransmit queue, the
1430 * retransmit timer has already reclaimed
1431 * the outstanding bytes for this chunk, so only
1432 * count bytes associated with a transport.
1433 */
1434 if (transport) {
1435 /* If this chunk is being used for RTT
1436 * measurement, calculate the RTT and update
1437 * the RTO using this value.
1438 *
1439 * 6.3.1 C5) Karn's algorithm: RTT measurements
1440 * MUST NOT be made using packets that were
1441 * retransmitted (and thus for which it is
1442 * ambiguous whether the reply was for the
1443 * first instance of the packet or a later
1444 * instance).
1445 */
d808ad9a 1446 if (!tchunk->tsn_gap_acked &&
6eabca54 1447 !tchunk->resent &&
1da177e4 1448 tchunk->rtt_in_progress) {
4c9f5d53 1449 tchunk->rtt_in_progress = 0;
1da177e4
LT
1450 rtt = jiffies - tchunk->sent_at;
1451 sctp_transport_update_rto(transport,
1452 rtt);
1453 }
1454 }
31b02e15
VY
1455
1456 /* If the chunk hasn't been marked as ACKED,
1457 * mark it and account bytes_acked if the
1458 * chunk had a valid transport (it will not
1459 * have a transport if ASCONF had deleted it
1460 * while DATA was outstanding).
1461 */
1462 if (!tchunk->tsn_gap_acked) {
1463 tchunk->tsn_gap_acked = 1;
d6c41614
CX
1464 if (TSN_lt(*highest_new_tsn_in_sack, tsn))
1465 *highest_new_tsn_in_sack = tsn;
31b02e15
VY
1466 bytes_acked += sctp_data_size(tchunk);
1467 if (!tchunk->transport)
1468 migrate_bytes += sctp_data_size(tchunk);
8c2f414a 1469 forward_progress = true;
31b02e15
VY
1470 }
1471
d808ad9a 1472 if (TSN_lte(tsn, sack_ctsn)) {
1da177e4
LT
1473 /* RFC 2960 6.3.2 Retransmission Timer Rules
1474 *
1475 * R3) Whenever a SACK is received
1476 * that acknowledges the DATA chunk
1477 * with the earliest outstanding TSN
1478 * for that address, restart T3-rtx
1479 * timer for that address with its
1480 * current RTO.
1481 */
1482 restart_timer = 1;
8c2f414a 1483 forward_progress = true;
1da177e4
LT
1484
1485 if (!tchunk->tsn_gap_acked) {
1da177e4
LT
1486 /*
1487 * SFR-CACC algorithm:
1488 * 2) If the SACK contains gap acks
1489 * and the flag CHANGEOVER_ACTIVE is
1490 * set the receiver of the SACK MUST
1491 * take the following action:
1492 *
1493 * B) For each TSN t being acked that
1494 * has not been acked in any SACK so
1495 * far, set cacc_saw_newack to 1 for
1496 * the destination that the TSN was
1497 * sent to.
1498 */
1499 if (transport &&
1500 sack->num_gap_ack_blocks &&
1501 q->asoc->peer.primary_path->cacc.
1502 changeover_active)
1503 transport->cacc.cacc_saw_newack
1504 = 1;
1505 }
1506
1507 list_add_tail(&tchunk->transmitted_list,
1508 &q->sacked);
1509 } else {
1510 /* RFC2960 7.2.4, sctpimpguide-05 2.8.2
1511 * M2) Each time a SACK arrives reporting
1512 * 'Stray DATA chunk(s)' record the highest TSN
1513 * reported as newly acknowledged, call this
1514 * value 'HighestTSNinSack'. A newly
1515 * acknowledged DATA chunk is one not
1516 * previously acknowledged in a SACK.
1517 *
1518 * When the SCTP sender of data receives a SACK
1519 * chunk that acknowledges, for the first time,
1520 * the receipt of a DATA chunk, all the still
1521 * unacknowledged DATA chunks whose TSN is
1522 * older than that newly acknowledged DATA
1523 * chunk, are qualified as 'Stray DATA chunks'.
1524 */
1da177e4
LT
1525 list_add_tail(lchunk, &tlist);
1526 }
1da177e4
LT
1527 } else {
1528 if (tchunk->tsn_gap_acked) {
bb33381d
DB
1529 pr_debug("%s: receiver reneged on data TSN:0x%x\n",
1530 __func__, tsn);
1531
1da177e4
LT
1532 tchunk->tsn_gap_acked = 0;
1533
31b02e15
VY
1534 if (tchunk->transport)
1535 bytes_acked -= sctp_data_size(tchunk);
1da177e4
LT
1536
1537 /* RFC 2960 6.3.2 Retransmission Timer Rules
1538 *
1539 * R4) Whenever a SACK is received missing a
1540 * TSN that was previously acknowledged via a
1541 * Gap Ack Block, start T3-rtx for the
1542 * destination address to which the DATA
1543 * chunk was originally
1544 * transmitted if it is not already running.
1545 */
1546 restart_timer = 1;
1547 }
1548
1549 list_add_tail(lchunk, &tlist);
1da177e4
LT
1550 }
1551 }
1552
1da177e4
LT
1553 if (transport) {
1554 if (bytes_acked) {
f8d96052
TG
1555 struct sctp_association *asoc = transport->asoc;
1556
31b02e15
VY
1557 /* We may have counted DATA that was migrated
1558 * to this transport due to DEL-IP operation.
1559 * Subtract those bytes, since the were never
1560 * send on this transport and shouldn't be
1561 * credited to this transport.
1562 */
1563 bytes_acked -= migrate_bytes;
1564
1da177e4
LT
1565 /* 8.2. When an outstanding TSN is acknowledged,
1566 * the endpoint shall clear the error counter of
1567 * the destination transport address to which the
1568 * DATA chunk was last sent.
1569 * The association's overall error counter is
1570 * also cleared.
1571 */
1572 transport->error_count = 0;
1573 transport->asoc->overall_error_count = 0;
8c2f414a 1574 forward_progress = true;
1da177e4 1575
f8d96052
TG
1576 /*
1577 * While in SHUTDOWN PENDING, we may have started
1578 * the T5 shutdown guard timer after reaching the
1579 * retransmission limit. Stop that timer as soon
1580 * as the receiver acknowledged any data.
1581 */
1582 if (asoc->state == SCTP_STATE_SHUTDOWN_PENDING &&
1583 del_timer(&asoc->timers
1584 [SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD]))
1585 sctp_association_put(asoc);
1586
1da177e4
LT
1587 /* Mark the destination transport address as
1588 * active if it is not so marked.
1589 */
edfee033
ND
1590 if ((transport->state == SCTP_INACTIVE ||
1591 transport->state == SCTP_UNCONFIRMED) &&
1592 sctp_cmp_addr_exact(&transport->ipaddr, saddr)) {
1da177e4
LT
1593 sctp_assoc_control_transport(
1594 transport->asoc,
1595 transport,
1596 SCTP_TRANSPORT_UP,
1597 SCTP_RECEIVED_SACK);
1598 }
1599
1600 sctp_transport_raise_cwnd(transport, sack_ctsn,
1601 bytes_acked);
1602
1603 transport->flight_size -= bytes_acked;
8b73a07c
GJ
1604 if (transport->flight_size == 0)
1605 transport->partial_bytes_acked = 0;
31b02e15 1606 q->outstanding_bytes -= bytes_acked + migrate_bytes;
1da177e4
LT
1607 } else {
1608 /* RFC 2960 6.1, sctpimpguide-06 2.15.2
1609 * When a sender is doing zero window probing, it
1610 * should not timeout the association if it continues
1611 * to receive new packets from the receiver. The
1612 * reason is that the receiver MAY keep its window
1613 * closed for an indefinite time.
1614 * A sender is doing zero window probing when the
1615 * receiver's advertised window is zero, and there is
1616 * only one data chunk in flight to the receiver.
f8d96052
TG
1617 *
1618 * Allow the association to timeout while in SHUTDOWN
1619 * PENDING or SHUTDOWN RECEIVED in case the receiver
1620 * stays in zero window mode forever.
1da177e4
LT
1621 */
1622 if (!q->asoc->peer.rwnd &&
1623 !list_empty(&tlist) &&
f8d96052
TG
1624 (sack_ctsn+2 == q->asoc->next_tsn) &&
1625 q->asoc->state < SCTP_STATE_SHUTDOWN_PENDING) {
bb33381d
DB
1626 pr_debug("%s: sack received for zero window "
1627 "probe:%u\n", __func__, sack_ctsn);
1628
1da177e4
LT
1629 q->asoc->overall_error_count = 0;
1630 transport->error_count = 0;
1631 }
1632 }
1633
1634 /* RFC 2960 6.3.2 Retransmission Timer Rules
1635 *
1636 * R2) Whenever all outstanding data sent to an address have
1637 * been acknowledged, turn off the T3-rtx timer of that
1638 * address.
1639 */
1640 if (!transport->flight_size) {
25cc4ae9 1641 if (del_timer(&transport->T3_rtx_timer))
1da177e4 1642 sctp_transport_put(transport);
1da177e4
LT
1643 } else if (restart_timer) {
1644 if (!mod_timer(&transport->T3_rtx_timer,
1645 jiffies + transport->rto))
1646 sctp_transport_hold(transport);
1647 }
8c2f414a
DB
1648
1649 if (forward_progress) {
1650 if (transport->dst)
1651 dst_confirm(transport->dst);
1652 }
1da177e4
LT
1653 }
1654
1655 list_splice(&tlist, transmitted_queue);
1656}
1657
1658/* Mark chunks as missing and consequently may get retransmitted. */
1659static void sctp_mark_missing(struct sctp_outq *q,
1660 struct list_head *transmitted_queue,
1661 struct sctp_transport *transport,
1662 __u32 highest_new_tsn_in_sack,
1663 int count_of_newacks)
1664{
1665 struct sctp_chunk *chunk;
1da177e4
LT
1666 __u32 tsn;
1667 char do_fast_retransmit = 0;
ea862c8d
VY
1668 struct sctp_association *asoc = q->asoc;
1669 struct sctp_transport *primary = asoc->peer.primary_path;
1da177e4 1670
9dbc15f0 1671 list_for_each_entry(chunk, transmitted_queue, transmitted_list) {
1da177e4 1672
1da177e4
LT
1673 tsn = ntohl(chunk->subh.data_hdr->tsn);
1674
1675 /* RFC 2960 7.2.4, sctpimpguide-05 2.8.2 M3) Examine all
1676 * 'Unacknowledged TSN's', if the TSN number of an
1677 * 'Unacknowledged TSN' is smaller than the 'HighestTSNinSack'
1678 * value, increment the 'TSN.Missing.Report' count on that
1679 * chunk if it has NOT been fast retransmitted or marked for
1680 * fast retransmit already.
1681 */
c226ef9b 1682 if (chunk->fast_retransmit == SCTP_CAN_FRTX &&
1da177e4
LT
1683 !chunk->tsn_gap_acked &&
1684 TSN_lt(tsn, highest_new_tsn_in_sack)) {
1685
1686 /* SFR-CACC may require us to skip marking
1687 * this chunk as missing.
1688 */
f246a7b7
VY
1689 if (!transport || !sctp_cacc_skip(primary,
1690 chunk->transport,
1691 count_of_newacks, tsn)) {
1da177e4
LT
1692 chunk->tsn_missing_report++;
1693
bb33381d
DB
1694 pr_debug("%s: tsn:0x%x missing counter:%d\n",
1695 __func__, tsn, chunk->tsn_missing_report);
1da177e4
LT
1696 }
1697 }
1698 /*
1699 * M4) If any DATA chunk is found to have a
1700 * 'TSN.Missing.Report'
27852c26 1701 * value larger than or equal to 3, mark that chunk for
1da177e4
LT
1702 * retransmission and start the fast retransmit procedure.
1703 */
1704
27852c26 1705 if (chunk->tsn_missing_report >= 3) {
c226ef9b 1706 chunk->fast_retransmit = SCTP_NEED_FRTX;
1da177e4
LT
1707 do_fast_retransmit = 1;
1708 }
1709 }
1710
1711 if (transport) {
1712 if (do_fast_retransmit)
1713 sctp_retransmit(q, transport, SCTP_RTXR_FAST_RTX);
1714
bb33381d
DB
1715 pr_debug("%s: transport:%p, cwnd:%d, ssthresh:%d, "
1716 "flight_size:%d, pba:%d\n", __func__, transport,
1717 transport->cwnd, transport->ssthresh,
1718 transport->flight_size, transport->partial_bytes_acked);
1da177e4
LT
1719 }
1720}
1721
1722/* Is the given TSN acked by this packet? */
1723static int sctp_acked(struct sctp_sackhdr *sack, __u32 tsn)
1724{
1725 int i;
1726 sctp_sack_variable_t *frags;
1727 __u16 gap;
1728 __u32 ctsn = ntohl(sack->cum_tsn_ack);
1729
d808ad9a 1730 if (TSN_lte(tsn, ctsn))
1da177e4
LT
1731 goto pass;
1732
1733 /* 3.3.4 Selective Acknowledgement (SACK) (3):
1734 *
1735 * Gap Ack Blocks:
1736 * These fields contain the Gap Ack Blocks. They are repeated
1737 * for each Gap Ack Block up to the number of Gap Ack Blocks
1738 * defined in the Number of Gap Ack Blocks field. All DATA
1739 * chunks with TSNs greater than or equal to (Cumulative TSN
1740 * Ack + Gap Ack Block Start) and less than or equal to
1741 * (Cumulative TSN Ack + Gap Ack Block End) of each Gap Ack
1742 * Block are assumed to have been received correctly.
1743 */
1744
1745 frags = sack->variable;
1746 gap = tsn - ctsn;
1747 for (i = 0; i < ntohs(sack->num_gap_ack_blocks); ++i) {
1748 if (TSN_lte(ntohs(frags[i].gab.start), gap) &&
1749 TSN_lte(gap, ntohs(frags[i].gab.end)))
1750 goto pass;
1751 }
1752
1753 return 0;
1754pass:
1755 return 1;
1756}
1757
1758static inline int sctp_get_skip_pos(struct sctp_fwdtsn_skip *skiplist,
9f81bcd9 1759 int nskips, __be16 stream)
1da177e4
LT
1760{
1761 int i;
1762
1763 for (i = 0; i < nskips; i++) {
1764 if (skiplist[i].stream == stream)
1765 return i;
1766 }
1767 return i;
1768}
1769
1770/* Create and add a fwdtsn chunk to the outq's control queue if needed. */
1771static void sctp_generate_fwdtsn(struct sctp_outq *q, __u32 ctsn)
1772{
1773 struct sctp_association *asoc = q->asoc;
1774 struct sctp_chunk *ftsn_chunk = NULL;
1775 struct sctp_fwdtsn_skip ftsn_skip_arr[10];
1776 int nskips = 0;
1777 int skip_pos = 0;
1778 __u32 tsn;
1779 struct sctp_chunk *chunk;
1780 struct list_head *lchunk, *temp;
1781
76595024
WY
1782 if (!asoc->peer.prsctp_capable)
1783 return;
1784
1da177e4
LT
1785 /* PR-SCTP C1) Let SackCumAck be the Cumulative TSN ACK carried in the
1786 * received SACK.
d808ad9a 1787 *
1da177e4
LT
1788 * If (Advanced.Peer.Ack.Point < SackCumAck), then update
1789 * Advanced.Peer.Ack.Point to be equal to SackCumAck.
1790 */
1791 if (TSN_lt(asoc->adv_peer_ack_point, ctsn))
1792 asoc->adv_peer_ack_point = ctsn;
1793
1794 /* PR-SCTP C2) Try to further advance the "Advanced.Peer.Ack.Point"
1795 * locally, that is, to move "Advanced.Peer.Ack.Point" up as long as
1796 * the chunk next in the out-queue space is marked as "abandoned" as
1797 * shown in the following example:
1798 *
1799 * Assuming that a SACK arrived with the Cumulative TSN ACK 102
1800 * and the Advanced.Peer.Ack.Point is updated to this value:
d808ad9a 1801 *
1da177e4
LT
1802 * out-queue at the end of ==> out-queue after Adv.Ack.Point
1803 * normal SACK processing local advancement
1804 * ... ...
1805 * Adv.Ack.Pt-> 102 acked 102 acked
1806 * 103 abandoned 103 abandoned
1807 * 104 abandoned Adv.Ack.P-> 104 abandoned
1808 * 105 105
1809 * 106 acked 106 acked
1810 * ... ...
1811 *
1812 * In this example, the data sender successfully advanced the
1813 * "Advanced.Peer.Ack.Point" from 102 to 104 locally.
1814 */
1815 list_for_each_safe(lchunk, temp, &q->abandoned) {
1816 chunk = list_entry(lchunk, struct sctp_chunk,
1817 transmitted_list);
1818 tsn = ntohl(chunk->subh.data_hdr->tsn);
1819
1820 /* Remove any chunks in the abandoned queue that are acked by
1821 * the ctsn.
d808ad9a 1822 */
1da177e4
LT
1823 if (TSN_lte(tsn, ctsn)) {
1824 list_del_init(lchunk);
1da177e4
LT
1825 sctp_chunk_free(chunk);
1826 } else {
1827 if (TSN_lte(tsn, asoc->adv_peer_ack_point+1)) {
1828 asoc->adv_peer_ack_point = tsn;
1829 if (chunk->chunk_hdr->flags &
1830 SCTP_DATA_UNORDERED)
1831 continue;
1832 skip_pos = sctp_get_skip_pos(&ftsn_skip_arr[0],
1833 nskips,
1834 chunk->subh.data_hdr->stream);
1835 ftsn_skip_arr[skip_pos].stream =
1836 chunk->subh.data_hdr->stream;
1837 ftsn_skip_arr[skip_pos].ssn =
1838 chunk->subh.data_hdr->ssn;
1839 if (skip_pos == nskips)
1840 nskips++;
1841 if (nskips == 10)
1842 break;
1843 } else
1844 break;
1845 }
1846 }
1847
1848 /* PR-SCTP C3) If, after step C1 and C2, the "Advanced.Peer.Ack.Point"
1849 * is greater than the Cumulative TSN ACK carried in the received
1850 * SACK, the data sender MUST send the data receiver a FORWARD TSN
1851 * chunk containing the latest value of the
1852 * "Advanced.Peer.Ack.Point".
1853 *
1854 * C4) For each "abandoned" TSN the sender of the FORWARD TSN SHOULD
1855 * list each stream and sequence number in the forwarded TSN. This
1856 * information will enable the receiver to easily find any
1857 * stranded TSN's waiting on stream reorder queues. Each stream
1858 * SHOULD only be reported once; this means that if multiple
1859 * abandoned messages occur in the same stream then only the
1860 * highest abandoned stream sequence number is reported. If the
1861 * total size of the FORWARD TSN does NOT fit in a single MTU then
1862 * the sender of the FORWARD TSN SHOULD lower the
1863 * Advanced.Peer.Ack.Point to the last TSN that will fit in a
1864 * single MTU.
1865 */
1866 if (asoc->adv_peer_ack_point > ctsn)
1867 ftsn_chunk = sctp_make_fwdtsn(asoc, asoc->adv_peer_ack_point,
d808ad9a 1868 nskips, &ftsn_skip_arr[0]);
1da177e4
LT
1869
1870 if (ftsn_chunk) {
79af02c2 1871 list_add_tail(&ftsn_chunk->list, &q->control_chunk_list);
b01a2407 1872 SCTP_INC_STATS(sock_net(asoc->base.sk), SCTP_MIB_OUTCTRLCHUNKS);
1da177e4
LT
1873 }
1874}