sctp: free msg->chunks when sctp_primitive_SEND return err
[linux-2.6-block.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 int error = 0;
1da177e4 537
cb3f837b 538 switch (reason) {
1da177e4 539 case SCTP_RTXR_T3_RTX:
b01a2407 540 SCTP_INC_STATS(net, SCTP_MIB_T3_RETRANSMITS);
1da177e4
LT
541 sctp_transport_lower_cwnd(transport, SCTP_LOWER_CWND_T3_RTX);
542 /* Update the retran path if the T3-rtx timer has expired for
543 * the current retran path.
544 */
545 if (transport == transport->asoc->peer.retran_path)
546 sctp_assoc_update_retran_path(transport->asoc);
58fbbed4
NH
547 transport->asoc->rtx_data_chunks +=
548 transport->asoc->unack_data;
1da177e4
LT
549 break;
550 case SCTP_RTXR_FAST_RTX:
b01a2407 551 SCTP_INC_STATS(net, SCTP_MIB_FAST_RETRANSMITS);
1da177e4 552 sctp_transport_lower_cwnd(transport, SCTP_LOWER_CWND_FAST_RTX);
62aeaff5 553 q->fast_rtx = 1;
1da177e4
LT
554 break;
555 case SCTP_RTXR_PMTUD:
b01a2407 556 SCTP_INC_STATS(net, SCTP_MIB_PMTUD_RETRANSMITS);
1da177e4 557 break;
b6157d8e 558 case SCTP_RTXR_T1_RTX:
b01a2407 559 SCTP_INC_STATS(net, SCTP_MIB_T1_RETRANSMITS);
58fbbed4 560 transport->asoc->init_retries++;
b6157d8e 561 break;
ac0b0462
SS
562 default:
563 BUG();
1da177e4
LT
564 }
565
b6157d8e 566 sctp_retransmit_mark(q, transport, reason);
1da177e4
LT
567
568 /* PR-SCTP A5) Any time the T3-rtx timer expires, on any destination,
569 * the sender SHOULD try to advance the "Advanced.Peer.Ack.Point" by
570 * following the procedures outlined in C1 - C5.
571 */
8b750ce5
VY
572 if (reason == SCTP_RTXR_T3_RTX)
573 sctp_generate_fwdtsn(q, q->asoc->ctsn_ack_point);
1da177e4 574
8b750ce5
VY
575 /* Flush the queues only on timeout, since fast_rtx is only
576 * triggered during sack processing and the queue
577 * will be flushed at the end.
578 */
579 if (reason != SCTP_RTXR_FAST_RTX)
cea8768f 580 error = sctp_outq_flush(q, /* rtx_timeout */ 1, GFP_ATOMIC);
1da177e4
LT
581
582 if (error)
583 q->asoc->base.sk->sk_err = -error;
584}
585
586/*
587 * Transmit DATA chunks on the retransmit queue. Upon return from
588 * sctp_outq_flush_rtx() the packet 'pkt' may contain chunks which
589 * need to be transmitted by the caller.
590 * We assume that pkt->transport has already been set.
591 *
592 * The return value is a normal kernel error return value.
593 */
594static int sctp_outq_flush_rtx(struct sctp_outq *q, struct sctp_packet *pkt,
595 int rtx_timeout, int *start_timer)
596{
597 struct list_head *lqueue;
1da177e4
LT
598 struct sctp_transport *transport = pkt->transport;
599 sctp_xmit_t status;
600 struct sctp_chunk *chunk, *chunk1;
62aeaff5 601 int fast_rtx;
1da177e4 602 int error = 0;
62aeaff5 603 int timer = 0;
8b750ce5 604 int done = 0;
1da177e4 605
1da177e4 606 lqueue = &q->retransmit;
62aeaff5 607 fast_rtx = q->fast_rtx;
1da177e4 608
8b750ce5
VY
609 /* This loop handles time-out retransmissions, fast retransmissions,
610 * and retransmissions due to opening of whindow.
611 *
612 * RFC 2960 6.3.3 Handle T3-rtx Expiration
1da177e4
LT
613 *
614 * E3) Determine how many of the earliest (i.e., lowest TSN)
615 * outstanding DATA chunks for the address for which the
616 * T3-rtx has expired will fit into a single packet, subject
617 * to the MTU constraint for the path corresponding to the
618 * destination transport address to which the retransmission
619 * is being sent (this may be different from the address for
620 * which the timer expires [see Section 6.4]). Call this value
621 * K. Bundle and retransmit those K DATA chunks in a single
622 * packet to the destination endpoint.
623 *
624 * [Just to be painfully clear, if we are retransmitting
625 * because a timeout just happened, we should send only ONE
626 * packet of retransmitted data.]
8b750ce5
VY
627 *
628 * For fast retransmissions we also send only ONE packet. However,
629 * if we are just flushing the queue due to open window, we'll
630 * try to send as much as possible.
1da177e4 631 */
8b750ce5 632 list_for_each_entry_safe(chunk, chunk1, lqueue, transmitted_list) {
4c6a6f42
WY
633 /* If the chunk is abandoned, move it to abandoned list. */
634 if (sctp_chunk_abandoned(chunk)) {
635 list_del_init(&chunk->transmitted_list);
636 sctp_insert_list(&q->abandoned,
637 &chunk->transmitted_list);
638 continue;
639 }
1da177e4
LT
640
641 /* Make sure that Gap Acked TSNs are not retransmitted. A
642 * simple approach is just to move such TSNs out of the
643 * way and into a 'transmitted' queue and skip to the
644 * next chunk.
645 */
646 if (chunk->tsn_gap_acked) {
54a27924
WY
647 list_move_tail(&chunk->transmitted_list,
648 &transport->transmitted);
1da177e4
LT
649 continue;
650 }
651
8b750ce5
VY
652 /* If we are doing fast retransmit, ignore non-fast_rtransmit
653 * chunks
654 */
655 if (fast_rtx && !chunk->fast_retransmit)
656 continue;
657
bc4f841a 658redo:
1da177e4
LT
659 /* Attempt to append this chunk to the packet. */
660 status = sctp_packet_append_chunk(pkt, chunk);
661
662 switch (status) {
663 case SCTP_XMIT_PMTU_FULL:
bc4f841a
WY
664 if (!pkt->has_data && !pkt->has_cookie_echo) {
665 /* If this packet did not contain DATA then
666 * retransmission did not happen, so do it
667 * again. We'll ignore the error here since
668 * control chunks are already freed so there
669 * is nothing we can do.
670 */
cea8768f 671 sctp_packet_transmit(pkt, GFP_ATOMIC);
bc4f841a
WY
672 goto redo;
673 }
674
1da177e4 675 /* Send this packet. */
cea8768f 676 error = sctp_packet_transmit(pkt, GFP_ATOMIC);
1da177e4
LT
677
678 /* If we are retransmitting, we should only
679 * send a single packet.
f246a7b7 680 * Otherwise, try appending this chunk again.
1da177e4 681 */
8b750ce5
VY
682 if (rtx_timeout || fast_rtx)
683 done = 1;
f246a7b7
VY
684 else
685 goto redo;
1da177e4 686
8b750ce5 687 /* Bundle next chunk in the next round. */
1da177e4
LT
688 break;
689
690 case SCTP_XMIT_RWND_FULL:
d808ad9a 691 /* Send this packet. */
cea8768f 692 error = sctp_packet_transmit(pkt, GFP_ATOMIC);
1da177e4
LT
693
694 /* Stop sending DATA as there is no more room
695 * at the receiver.
696 */
8b750ce5 697 done = 1;
1da177e4
LT
698 break;
699
526cbef7 700 case SCTP_XMIT_DELAY:
d808ad9a 701 /* Send this packet. */
cea8768f 702 error = sctp_packet_transmit(pkt, GFP_ATOMIC);
1da177e4
LT
703
704 /* Stop sending DATA because of nagle delay. */
8b750ce5 705 done = 1;
1da177e4
LT
706 break;
707
708 default:
709 /* The append was successful, so add this chunk to
710 * the transmitted list.
711 */
54a27924
WY
712 list_move_tail(&chunk->transmitted_list,
713 &transport->transmitted);
1da177e4 714
d808ad9a 715 /* Mark the chunk as ineligible for fast retransmit
1da177e4
LT
716 * after it is retransmitted.
717 */
c226ef9b
NH
718 if (chunk->fast_retransmit == SCTP_NEED_FRTX)
719 chunk->fast_retransmit = SCTP_DONT_FRTX;
1da177e4 720
196d6759 721 q->asoc->stats.rtxchunks++;
1da177e4 722 break;
3ff50b79 723 }
1da177e4 724
62aeaff5
VY
725 /* Set the timer if there were no errors */
726 if (!error && !timer)
727 timer = 1;
728
8b750ce5
VY
729 if (done)
730 break;
731 }
732
733 /* If we are here due to a retransmit timeout or a fast
734 * retransmit and if there are any chunks left in the retransmit
735 * queue that could not fit in the PMTU sized packet, they need
736 * to be marked as ineligible for a subsequent fast retransmit.
737 */
738 if (rtx_timeout || fast_rtx) {
739 list_for_each_entry(chunk1, lqueue, transmitted_list) {
c226ef9b
NH
740 if (chunk1->fast_retransmit == SCTP_NEED_FRTX)
741 chunk1->fast_retransmit = SCTP_DONT_FRTX;
1da177e4
LT
742 }
743 }
744
62aeaff5
VY
745 *start_timer = timer;
746
747 /* Clear fast retransmit hint */
748 if (fast_rtx)
749 q->fast_rtx = 0;
750
1da177e4
LT
751 return error;
752}
753
754/* Cork the outqueue so queued chunks are really queued. */
cea8768f 755int sctp_outq_uncork(struct sctp_outq *q, gfp_t gfp)
1da177e4 756{
7d54dc68 757 if (q->cork)
1da177e4 758 q->cork = 0;
dacda32e 759
cea8768f 760 return sctp_outq_flush(q, 0, gfp);
1da177e4
LT
761}
762
2e3216cd 763
1da177e4
LT
764/*
765 * Try to flush an outqueue.
766 *
767 * Description: Send everything in q which we legally can, subject to
768 * congestion limitations.
769 * * Note: This function can be called from multiple contexts so appropriate
770 * locking concerns must be made. Today we use the sock lock to protect
771 * this function.
772 */
cea8768f 773static int sctp_outq_flush(struct sctp_outq *q, int rtx_timeout, gfp_t gfp)
1da177e4
LT
774{
775 struct sctp_packet *packet;
776 struct sctp_packet singleton;
777 struct sctp_association *asoc = q->asoc;
778 __u16 sport = asoc->base.bind_addr.port;
779 __u16 dport = asoc->peer.port;
780 __u32 vtag = asoc->peer.i.init_tag;
1da177e4
LT
781 struct sctp_transport *transport = NULL;
782 struct sctp_transport *new_transport;
79af02c2 783 struct sctp_chunk *chunk, *tmp;
1da177e4
LT
784 sctp_xmit_t status;
785 int error = 0;
786 int start_timer = 0;
2e3216cd 787 int one_packet = 0;
1da177e4
LT
788
789 /* These transports have chunks to send. */
790 struct list_head transport_list;
791 struct list_head *ltransport;
792
793 INIT_LIST_HEAD(&transport_list);
794 packet = NULL;
795
796 /*
797 * 6.10 Bundling
798 * ...
799 * When bundling control chunks with DATA chunks, an
800 * endpoint MUST place control chunks first in the outbound
801 * SCTP packet. The transmitter MUST transmit DATA chunks
802 * within a SCTP packet in increasing order of TSN.
803 * ...
804 */
805
79af02c2 806 list_for_each_entry_safe(chunk, tmp, &q->control_chunk_list, list) {
8a07eb0a
MH
807 /* RFC 5061, 5.3
808 * F1) This means that until such time as the ASCONF
809 * containing the add is acknowledged, the sender MUST
810 * NOT use the new IP address as a source for ANY SCTP
811 * packet except on carrying an ASCONF Chunk.
812 */
813 if (asoc->src_out_of_asoc_ok &&
814 chunk->chunk_hdr->type != SCTP_CID_ASCONF)
815 continue;
816
79af02c2
DM
817 list_del_init(&chunk->list);
818
1da177e4
LT
819 /* Pick the right transport to use. */
820 new_transport = chunk->transport;
821
822 if (!new_transport) {
a08de64d
VY
823 /*
824 * If we have a prior transport pointer, see if
825 * the destination address of the chunk
826 * matches the destination address of the
827 * current transport. If not a match, then
828 * try to look up the transport with a given
829 * destination address. We do this because
830 * after processing ASCONFs, we may have new
831 * transports created.
832 */
833 if (transport &&
834 sctp_cmp_addr_exact(&chunk->dest,
835 &transport->ipaddr))
836 new_transport = transport;
837 else
838 new_transport = sctp_assoc_lookup_paddr(asoc,
839 &chunk->dest);
840
841 /* if we still don't have a new transport, then
842 * use the current active path.
843 */
844 if (!new_transport)
845 new_transport = asoc->peer.active_path;
ad8fec17 846 } else if ((new_transport->state == SCTP_INACTIVE) ||
5aa93bcf
NH
847 (new_transport->state == SCTP_UNCONFIRMED) ||
848 (new_transport->state == SCTP_PF)) {
3f7a87d2
FF
849 /* If the chunk is Heartbeat or Heartbeat Ack,
850 * send it to chunk->transport, even if it's
1da177e4
LT
851 * inactive.
852 *
853 * 3.3.6 Heartbeat Acknowledgement:
d808ad9a 854 * ...
1da177e4
LT
855 * A HEARTBEAT ACK is always sent to the source IP
856 * address of the IP datagram containing the
857 * HEARTBEAT chunk to which this ack is responding.
d808ad9a 858 * ...
a08de64d
VY
859 *
860 * ASCONF_ACKs also must be sent to the source.
1da177e4
LT
861 */
862 if (chunk->chunk_hdr->type != SCTP_CID_HEARTBEAT &&
a08de64d
VY
863 chunk->chunk_hdr->type != SCTP_CID_HEARTBEAT_ACK &&
864 chunk->chunk_hdr->type != SCTP_CID_ASCONF_ACK)
1da177e4
LT
865 new_transport = asoc->peer.active_path;
866 }
867
868 /* Are we switching transports?
869 * Take care of transport locks.
870 */
871 if (new_transport != transport) {
872 transport = new_transport;
873 if (list_empty(&transport->send_ready)) {
874 list_add_tail(&transport->send_ready,
875 &transport_list);
876 }
877 packet = &transport->packet;
878 sctp_packet_config(packet, vtag,
879 asoc->peer.ecn_capable);
880 }
881
882 switch (chunk->chunk_hdr->type) {
883 /*
884 * 6.10 Bundling
885 * ...
886 * An endpoint MUST NOT bundle INIT, INIT ACK or SHUTDOWN
887 * COMPLETE with any other chunks. [Send them immediately.]
888 */
889 case SCTP_CID_INIT:
890 case SCTP_CID_INIT_ACK:
891 case SCTP_CID_SHUTDOWN_COMPLETE:
892 sctp_packet_init(&singleton, transport, sport, dport);
893 sctp_packet_config(&singleton, vtag, 0);
894 sctp_packet_append_chunk(&singleton, chunk);
cea8768f 895 error = sctp_packet_transmit(&singleton, gfp);
1da177e4
LT
896 if (error < 0)
897 return error;
898 break;
899
900 case SCTP_CID_ABORT:
f4ad85ca
GJ
901 if (sctp_test_T_bit(chunk)) {
902 packet->vtag = asoc->c.my_vtag;
903 }
2e3216cd
VY
904 /* The following chunks are "response" chunks, i.e.
905 * they are generated in response to something we
906 * received. If we are sending these, then we can
907 * send only 1 packet containing these chunks.
908 */
1da177e4 909 case SCTP_CID_HEARTBEAT_ACK:
1da177e4 910 case SCTP_CID_SHUTDOWN_ACK:
1da177e4 911 case SCTP_CID_COOKIE_ACK:
2e3216cd
VY
912 case SCTP_CID_COOKIE_ECHO:
913 case SCTP_CID_ERROR:
1da177e4 914 case SCTP_CID_ECN_CWR:
1da177e4 915 case SCTP_CID_ASCONF_ACK:
2e3216cd 916 one_packet = 1;
25985edc 917 /* Fall through */
2e3216cd
VY
918
919 case SCTP_CID_SACK:
920 case SCTP_CID_HEARTBEAT:
921 case SCTP_CID_SHUTDOWN:
922 case SCTP_CID_ECN_ECNE:
923 case SCTP_CID_ASCONF:
1da177e4 924 case SCTP_CID_FWD_TSN:
2e3216cd 925 status = sctp_packet_transmit_chunk(packet, chunk,
cea8768f 926 one_packet, gfp);
2e3216cd
VY
927 if (status != SCTP_XMIT_OK) {
928 /* put the chunk back */
929 list_add(&chunk->list, &q->control_chunk_list);
196d6759
MB
930 } else {
931 asoc->stats.octrlchunks++;
bd69b981
WY
932 /* PR-SCTP C5) If a FORWARD TSN is sent, the
933 * sender MUST assure that at least one T3-rtx
934 * timer is running.
935 */
ba6f5e33
MRL
936 if (chunk->chunk_hdr->type == SCTP_CID_FWD_TSN) {
937 sctp_transport_reset_t3_rtx(transport);
938 transport->last_time_sent = jiffies;
939 }
2e3216cd 940 }
1da177e4
LT
941 break;
942
943 default:
944 /* We built a chunk with an illegal type! */
945 BUG();
3ff50b79 946 }
1da177e4
LT
947 }
948
8a07eb0a
MH
949 if (q->asoc->src_out_of_asoc_ok)
950 goto sctp_flush_out;
951
1da177e4
LT
952 /* Is it OK to send data chunks? */
953 switch (asoc->state) {
954 case SCTP_STATE_COOKIE_ECHOED:
955 /* Only allow bundling when this packet has a COOKIE-ECHO
956 * chunk.
957 */
958 if (!packet || !packet->has_cookie_echo)
959 break;
960
961 /* fallthru */
962 case SCTP_STATE_ESTABLISHED:
963 case SCTP_STATE_SHUTDOWN_PENDING:
964 case SCTP_STATE_SHUTDOWN_RECEIVED:
965 /*
966 * RFC 2960 6.1 Transmission of DATA Chunks
967 *
968 * C) When the time comes for the sender to transmit,
969 * before sending new DATA chunks, the sender MUST
970 * first transmit any outstanding DATA chunks which
971 * are marked for retransmission (limited by the
972 * current cwnd).
973 */
974 if (!list_empty(&q->retransmit)) {
f207c050
MH
975 if (asoc->peer.retran_path->state == SCTP_UNCONFIRMED)
976 goto sctp_flush_out;
1da177e4
LT
977 if (transport == asoc->peer.retran_path)
978 goto retran;
979
980 /* Switch transports & prepare the packet. */
981
982 transport = asoc->peer.retran_path;
983
984 if (list_empty(&transport->send_ready)) {
985 list_add_tail(&transport->send_ready,
986 &transport_list);
987 }
988
989 packet = &transport->packet;
990 sctp_packet_config(packet, vtag,
991 asoc->peer.ecn_capable);
992 retran:
993 error = sctp_outq_flush_rtx(q, packet,
994 rtx_timeout, &start_timer);
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;
1169 if (!sctp_packet_empty(packet))
cea8768f 1170 error = sctp_packet_transmit(packet, gfp);
46d5a808
VY
1171
1172 /* Clear the burst limited state, if any */
1173 sctp_transport_burst_reset(t);
1da177e4
LT
1174 }
1175
1176 return error;
1177}
1178
1179/* Update unack_data based on the incoming SACK chunk */
1180static void sctp_sack_update_unack_data(struct sctp_association *assoc,
1181 struct sctp_sackhdr *sack)
1182{
1183 sctp_sack_variable_t *frags;
1184 __u16 unack_data;
1185 int i;
1186
1187 unack_data = assoc->next_tsn - assoc->ctsn_ack_point - 1;
1188
1189 frags = sack->variable;
1190 for (i = 0; i < ntohs(sack->num_gap_ack_blocks); i++) {
1191 unack_data -= ((ntohs(frags[i].gab.end) -
1192 ntohs(frags[i].gab.start) + 1));
1193 }
1194
1195 assoc->unack_data = unack_data;
1196}
1197
1da177e4
LT
1198/* This is where we REALLY process a SACK.
1199 *
1200 * Process the SACK against the outqueue. Mostly, this just frees
1201 * things off the transmitted queue.
1202 */
edfee033 1203int sctp_outq_sack(struct sctp_outq *q, struct sctp_chunk *chunk)
1da177e4
LT
1204{
1205 struct sctp_association *asoc = q->asoc;
edfee033 1206 struct sctp_sackhdr *sack = chunk->subh.sack_hdr;
1da177e4
LT
1207 struct sctp_transport *transport;
1208 struct sctp_chunk *tchunk = NULL;
9dbc15f0 1209 struct list_head *lchunk, *transport_list, *temp;
1da177e4
LT
1210 sctp_sack_variable_t *frags = sack->variable;
1211 __u32 sack_ctsn, ctsn, tsn;
1212 __u32 highest_tsn, highest_new_tsn;
1213 __u32 sack_a_rwnd;
95c96174 1214 unsigned int outstanding;
1da177e4
LT
1215 struct sctp_transport *primary = asoc->peer.primary_path;
1216 int count_of_newacks = 0;
2cd9b822 1217 int gap_ack_blocks;
ea862c8d 1218 u8 accum_moved = 0;
1da177e4
LT
1219
1220 /* Grab the association's destination address list. */
1221 transport_list = &asoc->peer.transport_addr_list;
1222
1223 sack_ctsn = ntohl(sack->cum_tsn_ack);
2cd9b822 1224 gap_ack_blocks = ntohs(sack->num_gap_ack_blocks);
196d6759 1225 asoc->stats.gapcnt += gap_ack_blocks;
1da177e4
LT
1226 /*
1227 * SFR-CACC algorithm:
1228 * On receipt of a SACK the sender SHOULD execute the
1229 * following statements.
1230 *
1231 * 1) If the cumulative ack in the SACK passes next tsn_at_change
1232 * on the current primary, the CHANGEOVER_ACTIVE flag SHOULD be
1233 * cleared. The CYCLING_CHANGEOVER flag SHOULD also be cleared for
1234 * all destinations.
1da177e4
LT
1235 * 2) If the SACK contains gap acks and the flag CHANGEOVER_ACTIVE
1236 * is set the receiver of the SACK MUST take the following actions:
1237 *
1238 * A) Initialize the cacc_saw_newack to 0 for all destination
1239 * addresses.
ab5216a5
VY
1240 *
1241 * Only bother if changeover_active is set. Otherwise, this is
1242 * totally suboptimal to do on every SACK.
1da177e4 1243 */
ab5216a5
VY
1244 if (primary->cacc.changeover_active) {
1245 u8 clear_cycling = 0;
1246
1247 if (TSN_lte(primary->cacc.next_tsn_at_change, sack_ctsn)) {
1248 primary->cacc.changeover_active = 0;
1249 clear_cycling = 1;
1250 }
1251
1252 if (clear_cycling || gap_ack_blocks) {
1253 list_for_each_entry(transport, transport_list,
1254 transports) {
1255 if (clear_cycling)
1256 transport->cacc.cycling_changeover = 0;
1257 if (gap_ack_blocks)
1258 transport->cacc.cacc_saw_newack = 0;
1259 }
1da177e4
LT
1260 }
1261 }
1262
1263 /* Get the highest TSN in the sack. */
1264 highest_tsn = sack_ctsn;
2cd9b822
VY
1265 if (gap_ack_blocks)
1266 highest_tsn += ntohs(frags[gap_ack_blocks - 1].gab.end);
1da177e4 1267
bfa0d984 1268 if (TSN_lt(asoc->highest_sacked, highest_tsn))
1da177e4 1269 asoc->highest_sacked = highest_tsn;
1da177e4 1270
bfa0d984 1271 highest_new_tsn = sack_ctsn;
2cd9b822 1272
1da177e4
LT
1273 /* Run through the retransmit queue. Credit bytes received
1274 * and free those chunks that we can.
1275 */
edfee033 1276 sctp_check_transmitted(q, &q->retransmit, NULL, NULL, sack, &highest_new_tsn);
1da177e4
LT
1277
1278 /* Run through the transmitted queue.
1279 * Credit bytes received and free those chunks which we can.
1280 *
1281 * This is a MASSIVE candidate for optimization.
1282 */
9dbc15f0 1283 list_for_each_entry(transport, transport_list, transports) {
1da177e4 1284 sctp_check_transmitted(q, &transport->transmitted,
edfee033
ND
1285 transport, &chunk->source, sack,
1286 &highest_new_tsn);
1da177e4
LT
1287 /*
1288 * SFR-CACC algorithm:
1289 * C) Let count_of_newacks be the number of
1290 * destinations for which cacc_saw_newack is set.
1291 */
1292 if (transport->cacc.cacc_saw_newack)
cb3f837b 1293 count_of_newacks++;
1da177e4
LT
1294 }
1295
ea862c8d
VY
1296 /* Move the Cumulative TSN Ack Point if appropriate. */
1297 if (TSN_lt(asoc->ctsn_ack_point, sack_ctsn)) {
1298 asoc->ctsn_ack_point = sack_ctsn;
1299 accum_moved = 1;
1300 }
1301
2cd9b822 1302 if (gap_ack_blocks) {
ea862c8d
VY
1303
1304 if (asoc->fast_recovery && accum_moved)
1305 highest_new_tsn = highest_tsn;
1306
2cd9b822
VY
1307 list_for_each_entry(transport, transport_list, transports)
1308 sctp_mark_missing(q, &transport->transmitted, transport,
1309 highest_new_tsn, count_of_newacks);
1da177e4
LT
1310 }
1311
1da177e4
LT
1312 /* Update unack_data field in the assoc. */
1313 sctp_sack_update_unack_data(asoc, sack);
1314
1315 ctsn = asoc->ctsn_ack_point;
1316
1317 /* Throw away stuff rotting on the sack queue. */
1318 list_for_each_safe(lchunk, temp, &q->sacked) {
1319 tchunk = list_entry(lchunk, struct sctp_chunk,
1320 transmitted_list);
1321 tsn = ntohl(tchunk->subh.data_hdr->tsn);
5f9646c3
VY
1322 if (TSN_lte(tsn, ctsn)) {
1323 list_del_init(&tchunk->transmitted_list);
8dbdf1f5
XL
1324 if (asoc->prsctp_enable &&
1325 SCTP_PR_PRIO_ENABLED(chunk->sinfo.sinfo_flags))
1326 asoc->sent_cnt_removable--;
1da177e4 1327 sctp_chunk_free(tchunk);
5f9646c3 1328 }
1da177e4
LT
1329 }
1330
1331 /* ii) Set rwnd equal to the newly received a_rwnd minus the
1332 * number of bytes still outstanding after processing the
1333 * Cumulative TSN Ack and the Gap Ack Blocks.
1334 */
1335
1336 sack_a_rwnd = ntohl(sack->a_rwnd);
8a0d19c5 1337 asoc->peer.zero_window_announced = !sack_a_rwnd;
1da177e4
LT
1338 outstanding = q->outstanding_bytes;
1339
1340 if (outstanding < sack_a_rwnd)
1341 sack_a_rwnd -= outstanding;
1342 else
1343 sack_a_rwnd = 0;
1344
1345 asoc->peer.rwnd = sack_a_rwnd;
1346
1347 sctp_generate_fwdtsn(q, sack_ctsn);
1348
bb33381d
DB
1349 pr_debug("%s: sack cumulative tsn ack:0x%x\n", __func__, sack_ctsn);
1350 pr_debug("%s: cumulative tsn ack of assoc:%p is 0x%x, "
1351 "advertised peer ack point:0x%x\n", __func__, asoc, ctsn,
1352 asoc->adv_peer_ack_point);
1da177e4 1353
619a60ee 1354 return sctp_outq_is_empty(q);
1da177e4
LT
1355}
1356
619a60ee
VY
1357/* Is the outqueue empty?
1358 * The queue is empty when we have not pending data, no in-flight data
1359 * and nothing pending retransmissions.
1360 */
1da177e4
LT
1361int sctp_outq_is_empty(const struct sctp_outq *q)
1362{
619a60ee
VY
1363 return q->out_qlen == 0 && q->outstanding_bytes == 0 &&
1364 list_empty(&q->retransmit);
1da177e4
LT
1365}
1366
1367/********************************************************************
1368 * 2nd Level Abstractions
1369 ********************************************************************/
1370
1371/* Go through a transport's transmitted list or the association's retransmit
1372 * list and move chunks that are acked by the Cumulative TSN Ack to q->sacked.
1373 * The retransmit list will not have an associated transport.
1374 *
1375 * I added coherent debug information output. --xguo
1376 *
1377 * Instead of printing 'sacked' or 'kept' for each TSN on the
1378 * transmitted_queue, we print a range: SACKED: TSN1-TSN2, TSN3, TSN4-TSN5.
1379 * KEPT TSN6-TSN7, etc.
1380 */
1381static void sctp_check_transmitted(struct sctp_outq *q,
1382 struct list_head *transmitted_queue,
1383 struct sctp_transport *transport,
edfee033 1384 union sctp_addr *saddr,
1da177e4 1385 struct sctp_sackhdr *sack,
bfa0d984 1386 __u32 *highest_new_tsn_in_sack)
1da177e4
LT
1387{
1388 struct list_head *lchunk;
1389 struct sctp_chunk *tchunk;
1390 struct list_head tlist;
1391 __u32 tsn;
1392 __u32 sack_ctsn;
1393 __u32 rtt;
1394 __u8 restart_timer = 0;
1395 int bytes_acked = 0;
31b02e15 1396 int migrate_bytes = 0;
8c2f414a 1397 bool forward_progress = false;
1da177e4 1398
1da177e4
LT
1399 sack_ctsn = ntohl(sack->cum_tsn_ack);
1400
1401 INIT_LIST_HEAD(&tlist);
1402
1403 /* The while loop will skip empty transmitted queues. */
1404 while (NULL != (lchunk = sctp_list_dequeue(transmitted_queue))) {
1405 tchunk = list_entry(lchunk, struct sctp_chunk,
1406 transmitted_list);
1407
1408 if (sctp_chunk_abandoned(tchunk)) {
1409 /* Move the chunk to abandoned list. */
1410 sctp_insert_list(&q->abandoned, lchunk);
8c4a2d41
VY
1411
1412 /* If this chunk has not been acked, stop
1413 * considering it as 'outstanding'.
1414 */
1415 if (!tchunk->tsn_gap_acked) {
31b02e15
VY
1416 if (tchunk->transport)
1417 tchunk->transport->flight_size -=
1418 sctp_data_size(tchunk);
8c4a2d41
VY
1419 q->outstanding_bytes -= sctp_data_size(tchunk);
1420 }
1da177e4
LT
1421 continue;
1422 }
1423
1424 tsn = ntohl(tchunk->subh.data_hdr->tsn);
1425 if (sctp_acked(sack, tsn)) {
1426 /* If this queue is the retransmit queue, the
1427 * retransmit timer has already reclaimed
1428 * the outstanding bytes for this chunk, so only
1429 * count bytes associated with a transport.
1430 */
1431 if (transport) {
1432 /* If this chunk is being used for RTT
1433 * measurement, calculate the RTT and update
1434 * the RTO using this value.
1435 *
1436 * 6.3.1 C5) Karn's algorithm: RTT measurements
1437 * MUST NOT be made using packets that were
1438 * retransmitted (and thus for which it is
1439 * ambiguous whether the reply was for the
1440 * first instance of the packet or a later
1441 * instance).
1442 */
d808ad9a 1443 if (!tchunk->tsn_gap_acked &&
6eabca54 1444 !tchunk->resent &&
1da177e4 1445 tchunk->rtt_in_progress) {
4c9f5d53 1446 tchunk->rtt_in_progress = 0;
1da177e4
LT
1447 rtt = jiffies - tchunk->sent_at;
1448 sctp_transport_update_rto(transport,
1449 rtt);
1450 }
1451 }
31b02e15
VY
1452
1453 /* If the chunk hasn't been marked as ACKED,
1454 * mark it and account bytes_acked if the
1455 * chunk had a valid transport (it will not
1456 * have a transport if ASCONF had deleted it
1457 * while DATA was outstanding).
1458 */
1459 if (!tchunk->tsn_gap_acked) {
1460 tchunk->tsn_gap_acked = 1;
d6c41614
CX
1461 if (TSN_lt(*highest_new_tsn_in_sack, tsn))
1462 *highest_new_tsn_in_sack = tsn;
31b02e15
VY
1463 bytes_acked += sctp_data_size(tchunk);
1464 if (!tchunk->transport)
1465 migrate_bytes += sctp_data_size(tchunk);
8c2f414a 1466 forward_progress = true;
31b02e15
VY
1467 }
1468
d808ad9a 1469 if (TSN_lte(tsn, sack_ctsn)) {
1da177e4
LT
1470 /* RFC 2960 6.3.2 Retransmission Timer Rules
1471 *
1472 * R3) Whenever a SACK is received
1473 * that acknowledges the DATA chunk
1474 * with the earliest outstanding TSN
1475 * for that address, restart T3-rtx
1476 * timer for that address with its
1477 * current RTO.
1478 */
1479 restart_timer = 1;
8c2f414a 1480 forward_progress = true;
1da177e4
LT
1481
1482 if (!tchunk->tsn_gap_acked) {
1da177e4
LT
1483 /*
1484 * SFR-CACC algorithm:
1485 * 2) If the SACK contains gap acks
1486 * and the flag CHANGEOVER_ACTIVE is
1487 * set the receiver of the SACK MUST
1488 * take the following action:
1489 *
1490 * B) For each TSN t being acked that
1491 * has not been acked in any SACK so
1492 * far, set cacc_saw_newack to 1 for
1493 * the destination that the TSN was
1494 * sent to.
1495 */
1496 if (transport &&
1497 sack->num_gap_ack_blocks &&
1498 q->asoc->peer.primary_path->cacc.
1499 changeover_active)
1500 transport->cacc.cacc_saw_newack
1501 = 1;
1502 }
1503
1504 list_add_tail(&tchunk->transmitted_list,
1505 &q->sacked);
1506 } else {
1507 /* RFC2960 7.2.4, sctpimpguide-05 2.8.2
1508 * M2) Each time a SACK arrives reporting
1509 * 'Stray DATA chunk(s)' record the highest TSN
1510 * reported as newly acknowledged, call this
1511 * value 'HighestTSNinSack'. A newly
1512 * acknowledged DATA chunk is one not
1513 * previously acknowledged in a SACK.
1514 *
1515 * When the SCTP sender of data receives a SACK
1516 * chunk that acknowledges, for the first time,
1517 * the receipt of a DATA chunk, all the still
1518 * unacknowledged DATA chunks whose TSN is
1519 * older than that newly acknowledged DATA
1520 * chunk, are qualified as 'Stray DATA chunks'.
1521 */
1da177e4
LT
1522 list_add_tail(lchunk, &tlist);
1523 }
1da177e4
LT
1524 } else {
1525 if (tchunk->tsn_gap_acked) {
bb33381d
DB
1526 pr_debug("%s: receiver reneged on data TSN:0x%x\n",
1527 __func__, tsn);
1528
1da177e4
LT
1529 tchunk->tsn_gap_acked = 0;
1530
31b02e15
VY
1531 if (tchunk->transport)
1532 bytes_acked -= sctp_data_size(tchunk);
1da177e4
LT
1533
1534 /* RFC 2960 6.3.2 Retransmission Timer Rules
1535 *
1536 * R4) Whenever a SACK is received missing a
1537 * TSN that was previously acknowledged via a
1538 * Gap Ack Block, start T3-rtx for the
1539 * destination address to which the DATA
1540 * chunk was originally
1541 * transmitted if it is not already running.
1542 */
1543 restart_timer = 1;
1544 }
1545
1546 list_add_tail(lchunk, &tlist);
1da177e4
LT
1547 }
1548 }
1549
1da177e4
LT
1550 if (transport) {
1551 if (bytes_acked) {
f8d96052
TG
1552 struct sctp_association *asoc = transport->asoc;
1553
31b02e15
VY
1554 /* We may have counted DATA that was migrated
1555 * to this transport due to DEL-IP operation.
1556 * Subtract those bytes, since the were never
1557 * send on this transport and shouldn't be
1558 * credited to this transport.
1559 */
1560 bytes_acked -= migrate_bytes;
1561
1da177e4
LT
1562 /* 8.2. When an outstanding TSN is acknowledged,
1563 * the endpoint shall clear the error counter of
1564 * the destination transport address to which the
1565 * DATA chunk was last sent.
1566 * The association's overall error counter is
1567 * also cleared.
1568 */
1569 transport->error_count = 0;
1570 transport->asoc->overall_error_count = 0;
8c2f414a 1571 forward_progress = true;
1da177e4 1572
f8d96052
TG
1573 /*
1574 * While in SHUTDOWN PENDING, we may have started
1575 * the T5 shutdown guard timer after reaching the
1576 * retransmission limit. Stop that timer as soon
1577 * as the receiver acknowledged any data.
1578 */
1579 if (asoc->state == SCTP_STATE_SHUTDOWN_PENDING &&
1580 del_timer(&asoc->timers
1581 [SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD]))
1582 sctp_association_put(asoc);
1583
1da177e4
LT
1584 /* Mark the destination transport address as
1585 * active if it is not so marked.
1586 */
edfee033
ND
1587 if ((transport->state == SCTP_INACTIVE ||
1588 transport->state == SCTP_UNCONFIRMED) &&
1589 sctp_cmp_addr_exact(&transport->ipaddr, saddr)) {
1da177e4
LT
1590 sctp_assoc_control_transport(
1591 transport->asoc,
1592 transport,
1593 SCTP_TRANSPORT_UP,
1594 SCTP_RECEIVED_SACK);
1595 }
1596
1597 sctp_transport_raise_cwnd(transport, sack_ctsn,
1598 bytes_acked);
1599
1600 transport->flight_size -= bytes_acked;
8b73a07c
GJ
1601 if (transport->flight_size == 0)
1602 transport->partial_bytes_acked = 0;
31b02e15 1603 q->outstanding_bytes -= bytes_acked + migrate_bytes;
1da177e4
LT
1604 } else {
1605 /* RFC 2960 6.1, sctpimpguide-06 2.15.2
1606 * When a sender is doing zero window probing, it
1607 * should not timeout the association if it continues
1608 * to receive new packets from the receiver. The
1609 * reason is that the receiver MAY keep its window
1610 * closed for an indefinite time.
1611 * A sender is doing zero window probing when the
1612 * receiver's advertised window is zero, and there is
1613 * only one data chunk in flight to the receiver.
f8d96052
TG
1614 *
1615 * Allow the association to timeout while in SHUTDOWN
1616 * PENDING or SHUTDOWN RECEIVED in case the receiver
1617 * stays in zero window mode forever.
1da177e4
LT
1618 */
1619 if (!q->asoc->peer.rwnd &&
1620 !list_empty(&tlist) &&
f8d96052
TG
1621 (sack_ctsn+2 == q->asoc->next_tsn) &&
1622 q->asoc->state < SCTP_STATE_SHUTDOWN_PENDING) {
bb33381d
DB
1623 pr_debug("%s: sack received for zero window "
1624 "probe:%u\n", __func__, sack_ctsn);
1625
1da177e4
LT
1626 q->asoc->overall_error_count = 0;
1627 transport->error_count = 0;
1628 }
1629 }
1630
1631 /* RFC 2960 6.3.2 Retransmission Timer Rules
1632 *
1633 * R2) Whenever all outstanding data sent to an address have
1634 * been acknowledged, turn off the T3-rtx timer of that
1635 * address.
1636 */
1637 if (!transport->flight_size) {
25cc4ae9 1638 if (del_timer(&transport->T3_rtx_timer))
1da177e4 1639 sctp_transport_put(transport);
1da177e4
LT
1640 } else if (restart_timer) {
1641 if (!mod_timer(&transport->T3_rtx_timer,
1642 jiffies + transport->rto))
1643 sctp_transport_hold(transport);
1644 }
8c2f414a
DB
1645
1646 if (forward_progress) {
1647 if (transport->dst)
1648 dst_confirm(transport->dst);
1649 }
1da177e4
LT
1650 }
1651
1652 list_splice(&tlist, transmitted_queue);
1653}
1654
1655/* Mark chunks as missing and consequently may get retransmitted. */
1656static void sctp_mark_missing(struct sctp_outq *q,
1657 struct list_head *transmitted_queue,
1658 struct sctp_transport *transport,
1659 __u32 highest_new_tsn_in_sack,
1660 int count_of_newacks)
1661{
1662 struct sctp_chunk *chunk;
1da177e4
LT
1663 __u32 tsn;
1664 char do_fast_retransmit = 0;
ea862c8d
VY
1665 struct sctp_association *asoc = q->asoc;
1666 struct sctp_transport *primary = asoc->peer.primary_path;
1da177e4 1667
9dbc15f0 1668 list_for_each_entry(chunk, transmitted_queue, transmitted_list) {
1da177e4 1669
1da177e4
LT
1670 tsn = ntohl(chunk->subh.data_hdr->tsn);
1671
1672 /* RFC 2960 7.2.4, sctpimpguide-05 2.8.2 M3) Examine all
1673 * 'Unacknowledged TSN's', if the TSN number of an
1674 * 'Unacknowledged TSN' is smaller than the 'HighestTSNinSack'
1675 * value, increment the 'TSN.Missing.Report' count on that
1676 * chunk if it has NOT been fast retransmitted or marked for
1677 * fast retransmit already.
1678 */
c226ef9b 1679 if (chunk->fast_retransmit == SCTP_CAN_FRTX &&
1da177e4
LT
1680 !chunk->tsn_gap_acked &&
1681 TSN_lt(tsn, highest_new_tsn_in_sack)) {
1682
1683 /* SFR-CACC may require us to skip marking
1684 * this chunk as missing.
1685 */
f246a7b7
VY
1686 if (!transport || !sctp_cacc_skip(primary,
1687 chunk->transport,
1688 count_of_newacks, tsn)) {
1da177e4
LT
1689 chunk->tsn_missing_report++;
1690
bb33381d
DB
1691 pr_debug("%s: tsn:0x%x missing counter:%d\n",
1692 __func__, tsn, chunk->tsn_missing_report);
1da177e4
LT
1693 }
1694 }
1695 /*
1696 * M4) If any DATA chunk is found to have a
1697 * 'TSN.Missing.Report'
27852c26 1698 * value larger than or equal to 3, mark that chunk for
1da177e4
LT
1699 * retransmission and start the fast retransmit procedure.
1700 */
1701
27852c26 1702 if (chunk->tsn_missing_report >= 3) {
c226ef9b 1703 chunk->fast_retransmit = SCTP_NEED_FRTX;
1da177e4
LT
1704 do_fast_retransmit = 1;
1705 }
1706 }
1707
1708 if (transport) {
1709 if (do_fast_retransmit)
1710 sctp_retransmit(q, transport, SCTP_RTXR_FAST_RTX);
1711
bb33381d
DB
1712 pr_debug("%s: transport:%p, cwnd:%d, ssthresh:%d, "
1713 "flight_size:%d, pba:%d\n", __func__, transport,
1714 transport->cwnd, transport->ssthresh,
1715 transport->flight_size, transport->partial_bytes_acked);
1da177e4
LT
1716 }
1717}
1718
1719/* Is the given TSN acked by this packet? */
1720static int sctp_acked(struct sctp_sackhdr *sack, __u32 tsn)
1721{
1722 int i;
1723 sctp_sack_variable_t *frags;
1724 __u16 gap;
1725 __u32 ctsn = ntohl(sack->cum_tsn_ack);
1726
d808ad9a 1727 if (TSN_lte(tsn, ctsn))
1da177e4
LT
1728 goto pass;
1729
1730 /* 3.3.4 Selective Acknowledgement (SACK) (3):
1731 *
1732 * Gap Ack Blocks:
1733 * These fields contain the Gap Ack Blocks. They are repeated
1734 * for each Gap Ack Block up to the number of Gap Ack Blocks
1735 * defined in the Number of Gap Ack Blocks field. All DATA
1736 * chunks with TSNs greater than or equal to (Cumulative TSN
1737 * Ack + Gap Ack Block Start) and less than or equal to
1738 * (Cumulative TSN Ack + Gap Ack Block End) of each Gap Ack
1739 * Block are assumed to have been received correctly.
1740 */
1741
1742 frags = sack->variable;
1743 gap = tsn - ctsn;
1744 for (i = 0; i < ntohs(sack->num_gap_ack_blocks); ++i) {
1745 if (TSN_lte(ntohs(frags[i].gab.start), gap) &&
1746 TSN_lte(gap, ntohs(frags[i].gab.end)))
1747 goto pass;
1748 }
1749
1750 return 0;
1751pass:
1752 return 1;
1753}
1754
1755static inline int sctp_get_skip_pos(struct sctp_fwdtsn_skip *skiplist,
9f81bcd9 1756 int nskips, __be16 stream)
1da177e4
LT
1757{
1758 int i;
1759
1760 for (i = 0; i < nskips; i++) {
1761 if (skiplist[i].stream == stream)
1762 return i;
1763 }
1764 return i;
1765}
1766
1767/* Create and add a fwdtsn chunk to the outq's control queue if needed. */
1768static void sctp_generate_fwdtsn(struct sctp_outq *q, __u32 ctsn)
1769{
1770 struct sctp_association *asoc = q->asoc;
1771 struct sctp_chunk *ftsn_chunk = NULL;
1772 struct sctp_fwdtsn_skip ftsn_skip_arr[10];
1773 int nskips = 0;
1774 int skip_pos = 0;
1775 __u32 tsn;
1776 struct sctp_chunk *chunk;
1777 struct list_head *lchunk, *temp;
1778
76595024
WY
1779 if (!asoc->peer.prsctp_capable)
1780 return;
1781
1da177e4
LT
1782 /* PR-SCTP C1) Let SackCumAck be the Cumulative TSN ACK carried in the
1783 * received SACK.
d808ad9a 1784 *
1da177e4
LT
1785 * If (Advanced.Peer.Ack.Point < SackCumAck), then update
1786 * Advanced.Peer.Ack.Point to be equal to SackCumAck.
1787 */
1788 if (TSN_lt(asoc->adv_peer_ack_point, ctsn))
1789 asoc->adv_peer_ack_point = ctsn;
1790
1791 /* PR-SCTP C2) Try to further advance the "Advanced.Peer.Ack.Point"
1792 * locally, that is, to move "Advanced.Peer.Ack.Point" up as long as
1793 * the chunk next in the out-queue space is marked as "abandoned" as
1794 * shown in the following example:
1795 *
1796 * Assuming that a SACK arrived with the Cumulative TSN ACK 102
1797 * and the Advanced.Peer.Ack.Point is updated to this value:
d808ad9a 1798 *
1da177e4
LT
1799 * out-queue at the end of ==> out-queue after Adv.Ack.Point
1800 * normal SACK processing local advancement
1801 * ... ...
1802 * Adv.Ack.Pt-> 102 acked 102 acked
1803 * 103 abandoned 103 abandoned
1804 * 104 abandoned Adv.Ack.P-> 104 abandoned
1805 * 105 105
1806 * 106 acked 106 acked
1807 * ... ...
1808 *
1809 * In this example, the data sender successfully advanced the
1810 * "Advanced.Peer.Ack.Point" from 102 to 104 locally.
1811 */
1812 list_for_each_safe(lchunk, temp, &q->abandoned) {
1813 chunk = list_entry(lchunk, struct sctp_chunk,
1814 transmitted_list);
1815 tsn = ntohl(chunk->subh.data_hdr->tsn);
1816
1817 /* Remove any chunks in the abandoned queue that are acked by
1818 * the ctsn.
d808ad9a 1819 */
1da177e4
LT
1820 if (TSN_lte(tsn, ctsn)) {
1821 list_del_init(lchunk);
1da177e4
LT
1822 sctp_chunk_free(chunk);
1823 } else {
1824 if (TSN_lte(tsn, asoc->adv_peer_ack_point+1)) {
1825 asoc->adv_peer_ack_point = tsn;
1826 if (chunk->chunk_hdr->flags &
1827 SCTP_DATA_UNORDERED)
1828 continue;
1829 skip_pos = sctp_get_skip_pos(&ftsn_skip_arr[0],
1830 nskips,
1831 chunk->subh.data_hdr->stream);
1832 ftsn_skip_arr[skip_pos].stream =
1833 chunk->subh.data_hdr->stream;
1834 ftsn_skip_arr[skip_pos].ssn =
1835 chunk->subh.data_hdr->ssn;
1836 if (skip_pos == nskips)
1837 nskips++;
1838 if (nskips == 10)
1839 break;
1840 } else
1841 break;
1842 }
1843 }
1844
1845 /* PR-SCTP C3) If, after step C1 and C2, the "Advanced.Peer.Ack.Point"
1846 * is greater than the Cumulative TSN ACK carried in the received
1847 * SACK, the data sender MUST send the data receiver a FORWARD TSN
1848 * chunk containing the latest value of the
1849 * "Advanced.Peer.Ack.Point".
1850 *
1851 * C4) For each "abandoned" TSN the sender of the FORWARD TSN SHOULD
1852 * list each stream and sequence number in the forwarded TSN. This
1853 * information will enable the receiver to easily find any
1854 * stranded TSN's waiting on stream reorder queues. Each stream
1855 * SHOULD only be reported once; this means that if multiple
1856 * abandoned messages occur in the same stream then only the
1857 * highest abandoned stream sequence number is reported. If the
1858 * total size of the FORWARD TSN does NOT fit in a single MTU then
1859 * the sender of the FORWARD TSN SHOULD lower the
1860 * Advanced.Peer.Ack.Point to the last TSN that will fit in a
1861 * single MTU.
1862 */
1863 if (asoc->adv_peer_ack_point > ctsn)
1864 ftsn_chunk = sctp_make_fwdtsn(asoc, asoc->adv_peer_ack_point,
d808ad9a 1865 nskips, &ftsn_skip_arr[0]);
1da177e4
LT
1866
1867 if (ftsn_chunk) {
79af02c2 1868 list_add_tail(&ftsn_chunk->list, &q->control_chunk_list);
b01a2407 1869 SCTP_INC_STATS(sock_net(asoc->base.sk), SCTP_MIB_OUTCTRLCHUNKS);
1da177e4
LT
1870 }
1871}