2 * Copyright (c) 2001-2007, by Cisco Systems, Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
7 * a) Redistributions of source code must retain the above copyright notice,
8 * this list of conditions and the following disclaimer.
10 * b) Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in
12 * the documentation and/or other materials provided with the distribution.
14 * c) Neither the name of Cisco Systems, Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived
16 * from this software without specific prior written permission.
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
20 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
22 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
28 * THE POSSIBILITY OF SUCH DAMAGE.
31 #include <netinet/sctp_os.h>
32 #include <netinet/sctp_var.h>
33 #include <netinet/sctp_sysctl.h>
34 #include <netinet/sctp_pcb.h>
35 #include <netinet/sctp_header.h>
36 #include <netinet/sctputil.h>
37 #include <netinet/sctp_output.h>
38 #include <netinet/sctp_input.h>
39 #include <netinet/sctp_indata.h>
40 #include <netinet/sctp_uio.h>
41 #include <netinet/sctp_timer.h>
42 #include <netinet/sctp_auth.h>
43 #include <netinet/sctp_asconf.h>
44 #include <netinet/sctp_cc_functions.h>
45 #include <sys/cdefs.h>
46 __FBSDID("$FreeBSD$");
48 sctp_set_initial_cc_param(struct sctp_tcb
*stcb
, struct sctp_nets
*net
)
51 * We take the max of the burst limit times a MTU or the
52 * INITIAL_CWND. We then limit this to 4 MTU's of sending. cwnd must
55 net
->cwnd
= min((net
->mtu
* 4), max((2 * net
->mtu
), SCTP_INITIAL_CWND
));
56 net
->ssthresh
= stcb
->asoc
.peers_rwnd
;
58 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & (SCTP_CWND_MONITOR_ENABLE
| SCTP_CWND_LOGGING_ENABLE
)) {
59 sctp_log_cwnd(stcb
, net
, 0, SCTP_CWND_INITIALIZATION
);
64 sctp_cwnd_update_after_fr(struct sctp_tcb
*stcb
,
65 struct sctp_association
*asoc
)
67 struct sctp_nets
*net
;
70 * CMT fast recovery code. Need to debug. ((sctp_cmt_on_off == 1) &&
71 * (net->fast_retran_loss_recovery == 0)))
73 TAILQ_FOREACH(net
, &asoc
->nets
, sctp_next
) {
74 if ((asoc
->fast_retran_loss_recovery
== 0) || (SCTP_BASE_SYSCTL(sctp_cmt_on_off
) == 1)) {
75 /* out of a RFC2582 Fast recovery window? */
76 if (net
->net_ack
> 0) {
78 * per section 7.2.3, are there any
79 * destinations that had a fast retransmit
80 * to them. If so what we need to do is
81 * adjust ssthresh and cwnd.
83 struct sctp_tmit_chunk
*lchk
;
84 int old_cwnd
= net
->cwnd
;
86 net
->ssthresh
= net
->cwnd
/ 2;
87 if (net
->ssthresh
< (net
->mtu
* 2)) {
88 net
->ssthresh
= 2 * net
->mtu
;
90 net
->cwnd
= net
->ssthresh
;
91 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_MONITOR_ENABLE
) {
92 sctp_log_cwnd(stcb
, net
, (net
->cwnd
- old_cwnd
),
93 SCTP_CWND_LOG_FROM_FR
);
95 lchk
= TAILQ_FIRST(&asoc
->send_queue
);
97 net
->partial_bytes_acked
= 0;
98 /* Turn on fast recovery window */
99 asoc
->fast_retran_loss_recovery
= 1;
101 /* Mark end of the window */
102 asoc
->fast_recovery_tsn
= asoc
->sending_seq
- 1;
104 asoc
->fast_recovery_tsn
= lchk
->rec
.data
.TSN_seq
- 1;
108 * CMT fast recovery -- per destination
111 net
->fast_retran_loss_recovery
= 1;
114 /* Mark end of the window */
115 net
->fast_recovery_tsn
= asoc
->sending_seq
- 1;
117 net
->fast_recovery_tsn
= lchk
->rec
.data
.TSN_seq
- 1;
121 * Disable Nonce Sum Checking and store the
124 asoc
->nonce_sum_check
= 0;
125 asoc
->nonce_resync_tsn
= asoc
->fast_recovery_tsn
+ 1;
127 sctp_timer_stop(SCTP_TIMER_TYPE_SEND
,
128 stcb
->sctp_ep
, stcb
, net
, SCTP_FROM_SCTP_INDATA
+ SCTP_LOC_32
);
129 sctp_timer_start(SCTP_TIMER_TYPE_SEND
,
130 stcb
->sctp_ep
, stcb
, net
);
132 } else if (net
->net_ack
> 0) {
134 * Mark a peg that we WOULD have done a cwnd
135 * reduction but RFC2582 prevented this action.
137 SCTP_STAT_INCR(sctps_fastretransinrtt
);
143 sctp_cwnd_update_after_sack(struct sctp_tcb
*stcb
,
144 struct sctp_association
*asoc
,
145 int accum_moved
, int reneged_all
, int will_exit
)
147 struct sctp_nets
*net
;
149 /******************************/
150 /* update cwnd and Early FR */
151 /******************************/
152 TAILQ_FOREACH(net
, &asoc
->nets
, sctp_next
) {
154 #ifdef JANA_CMT_FAST_RECOVERY
156 * CMT fast recovery code. Need to debug.
158 if (net
->fast_retran_loss_recovery
&& net
->new_pseudo_cumack
) {
159 if (compare_with_wrap(asoc
->last_acked_seq
,
160 net
->fast_recovery_tsn
, MAX_TSN
) ||
161 (asoc
->last_acked_seq
== net
->fast_recovery_tsn
) ||
162 compare_with_wrap(net
->pseudo_cumack
, net
->fast_recovery_tsn
, MAX_TSN
) ||
163 (net
->pseudo_cumack
== net
->fast_recovery_tsn
)) {
164 net
->will_exit_fast_recovery
= 1;
168 if (SCTP_BASE_SYSCTL(sctp_early_fr
)) {
170 * So, first of all do we need to have a Early FR
173 if (((TAILQ_FIRST(&asoc
->sent_queue
)) &&
174 (net
->ref_count
> 1) &&
175 (net
->flight_size
< net
->cwnd
)) ||
178 * yes, so in this case stop it if its
179 * running, and then restart it. Reneging
180 * all is a special case where we want to
181 * run the Early FR timer and then force the
182 * last few unacked to be sent, causing us
183 * to illicit a sack with gaps to force out
186 if (SCTP_OS_TIMER_PENDING(&net
->fr_timer
.timer
)) {
187 SCTP_STAT_INCR(sctps_earlyfrstpidsck2
);
188 sctp_timer_stop(SCTP_TIMER_TYPE_EARLYFR
, stcb
->sctp_ep
, stcb
, net
,
189 SCTP_FROM_SCTP_INDATA
+ SCTP_LOC_20
);
191 SCTP_STAT_INCR(sctps_earlyfrstrid
);
192 sctp_timer_start(SCTP_TIMER_TYPE_EARLYFR
, stcb
->sctp_ep
, stcb
, net
);
194 /* No, stop it if its running */
195 if (SCTP_OS_TIMER_PENDING(&net
->fr_timer
.timer
)) {
196 SCTP_STAT_INCR(sctps_earlyfrstpidsck3
);
197 sctp_timer_stop(SCTP_TIMER_TYPE_EARLYFR
, stcb
->sctp_ep
, stcb
, net
,
198 SCTP_FROM_SCTP_INDATA
+ SCTP_LOC_21
);
202 /* if nothing was acked on this destination skip it */
203 if (net
->net_ack
== 0) {
204 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_LOGGING_ENABLE
) {
205 sctp_log_cwnd(stcb
, net
, 0, SCTP_CWND_LOG_FROM_SACK
);
209 if (net
->net_ack2
> 0) {
211 * Karn's rule applies to clearing error count, this
214 net
->error_count
= 0;
215 if ((net
->dest_state
& SCTP_ADDR_NOT_REACHABLE
) ==
216 SCTP_ADDR_NOT_REACHABLE
) {
218 net
->dest_state
&= ~SCTP_ADDR_NOT_REACHABLE
;
219 net
->dest_state
|= SCTP_ADDR_REACHABLE
;
220 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_UP
, stcb
,
221 SCTP_RECEIVED_SACK
, (void *)net
, SCTP_SO_NOT_LOCKED
);
222 /* now was it the primary? if so restore */
223 if (net
->dest_state
& SCTP_ADDR_WAS_PRIMARY
) {
224 (void)sctp_set_primary_addr(stcb
, (struct sockaddr
*)NULL
, net
);
228 * JRS 5/14/07 - If CMT PF is on and the destination
229 * is in PF state, set the destination to active
230 * state and set the cwnd to one or two MTU's based
231 * on whether PF1 or PF2 is being used.
233 * Should we stop any running T3 timer here?
235 if (SCTP_BASE_SYSCTL(sctp_cmt_on_off
) &&
236 SCTP_BASE_SYSCTL(sctp_cmt_pf
) &&
237 ((net
->dest_state
& SCTP_ADDR_PF
) == SCTP_ADDR_PF
)) {
238 net
->dest_state
&= ~SCTP_ADDR_PF
;
239 net
->cwnd
= net
->mtu
* SCTP_BASE_SYSCTL(sctp_cmt_pf
);
240 SCTPDBG(SCTP_DEBUG_INDATA1
, "Destination %p moved from PF to reachable with cwnd %d.\n",
243 * Since the cwnd value is explicitly set,
244 * skip the code that updates the cwnd
247 goto skip_cwnd_update
;
250 #ifdef JANA_CMT_FAST_RECOVERY
252 * CMT fast recovery code
255 * if (sctp_cmt_on_off == 1 &&
256 * net->fast_retran_loss_recovery &&
257 * net->will_exit_fast_recovery == 0) { @@@ Do something }
258 * else if (sctp_cmt_on_off == 0 &&
259 * asoc->fast_retran_loss_recovery && will_exit == 0) {
263 if (asoc
->fast_retran_loss_recovery
&& will_exit
== 0 && SCTP_BASE_SYSCTL(sctp_cmt_on_off
) == 0) {
265 * If we are in loss recovery we skip any cwnd
268 goto skip_cwnd_update
;
271 * CMT: CUC algorithm. Update cwnd if pseudo-cumack has
274 if (accum_moved
|| (SCTP_BASE_SYSCTL(sctp_cmt_on_off
) && net
->new_pseudo_cumack
)) {
275 /* If the cumulative ack moved we can proceed */
276 if (net
->cwnd
<= net
->ssthresh
) {
277 /* We are in slow start */
278 if (net
->flight_size
+ net
->net_ack
>= net
->cwnd
) {
279 if (net
->net_ack
> (net
->mtu
* SCTP_BASE_SYSCTL(sctp_L2_abc_variable
))) {
280 net
->cwnd
+= (net
->mtu
* SCTP_BASE_SYSCTL(sctp_L2_abc_variable
));
281 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_MONITOR_ENABLE
) {
282 sctp_log_cwnd(stcb
, net
, net
->mtu
,
283 SCTP_CWND_LOG_FROM_SS
);
286 net
->cwnd
+= net
->net_ack
;
287 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_MONITOR_ENABLE
) {
288 sctp_log_cwnd(stcb
, net
, net
->net_ack
,
289 SCTP_CWND_LOG_FROM_SS
);
293 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_LOGGING_ENABLE
) {
294 sctp_log_cwnd(stcb
, net
, net
->net_ack
,
295 SCTP_CWND_LOG_NOADV_SS
);
299 /* We are in congestion avoidance */
303 net
->partial_bytes_acked
+= net
->net_ack
;
305 if ((net
->flight_size
+ net
->net_ack
>= net
->cwnd
) &&
306 (net
->partial_bytes_acked
>= net
->cwnd
)) {
307 net
->partial_bytes_acked
-= net
->cwnd
;
308 net
->cwnd
+= net
->mtu
;
309 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_MONITOR_ENABLE
) {
310 sctp_log_cwnd(stcb
, net
, net
->mtu
,
311 SCTP_CWND_LOG_FROM_CA
);
314 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_LOGGING_ENABLE
) {
315 sctp_log_cwnd(stcb
, net
, net
->net_ack
,
316 SCTP_CWND_LOG_NOADV_CA
);
321 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_LOGGING_ENABLE
) {
322 sctp_log_cwnd(stcb
, net
, net
->mtu
,
323 SCTP_CWND_LOG_NO_CUMACK
);
328 * NOW, according to Karn's rule do we need to restore the
329 * RTO timer back? Check our net_ack2. If not set then we
330 * have a ambiguity.. i.e. all data ack'd was sent to more
334 /* restore any doubled timers */
335 net
->RTO
= ((net
->lastsa
>> 2) + net
->lastsv
) >> 1;
336 if (net
->RTO
< stcb
->asoc
.minrto
) {
337 net
->RTO
= stcb
->asoc
.minrto
;
339 if (net
->RTO
> stcb
->asoc
.maxrto
) {
340 net
->RTO
= stcb
->asoc
.maxrto
;
347 sctp_cwnd_update_after_timeout(struct sctp_tcb
*stcb
, struct sctp_nets
*net
)
349 int old_cwnd
= net
->cwnd
;
351 net
->ssthresh
= max(net
->cwnd
/ 2, 2 * net
->mtu
);
352 net
->cwnd
= net
->mtu
;
353 net
->partial_bytes_acked
= 0;
355 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_MONITOR_ENABLE
) {
356 sctp_log_cwnd(stcb
, net
, net
->cwnd
- old_cwnd
, SCTP_CWND_LOG_FROM_RTX
);
361 sctp_cwnd_update_after_ecn_echo(struct sctp_tcb
*stcb
, struct sctp_nets
*net
)
363 int old_cwnd
= net
->cwnd
;
365 SCTP_STAT_INCR(sctps_ecnereducedcwnd
);
366 net
->ssthresh
= net
->cwnd
/ 2;
367 if (net
->ssthresh
< net
->mtu
) {
368 net
->ssthresh
= net
->mtu
;
369 /* here back off the timer as well, to slow us down */
372 net
->cwnd
= net
->ssthresh
;
373 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_MONITOR_ENABLE
) {
374 sctp_log_cwnd(stcb
, net
, (net
->cwnd
- old_cwnd
), SCTP_CWND_LOG_FROM_SAT
);
379 sctp_cwnd_update_after_packet_dropped(struct sctp_tcb
*stcb
,
380 struct sctp_nets
*net
, struct sctp_pktdrop_chunk
*cp
,
381 uint32_t * bottle_bw
, uint32_t * on_queue
)
385 int old_cwnd
= net
->cwnd
;
387 /* need real RTT for this calc */
388 rtt
= ((net
->lastsa
>> 2) + net
->lastsv
) >> 1;
389 /* get bottle neck bw */
390 *bottle_bw
= ntohl(cp
->bottle_bw
);
391 /* and whats on queue */
392 *on_queue
= ntohl(cp
->current_onq
);
394 * adjust the on-queue if our flight is more it could be that the
395 * router has not yet gotten data "in-flight" to it
397 if (*on_queue
< net
->flight_size
)
398 *on_queue
= net
->flight_size
;
399 /* calculate the available space */
400 bw_avail
= (*bottle_bw
* rtt
) / 1000;
401 if (bw_avail
> *bottle_bw
) {
403 * Cap the growth to no more than the bottle neck. This can
404 * happen as RTT slides up due to queues. It also means if
405 * you have more than a 1 second RTT with a empty queue you
406 * will be limited to the bottle_bw per second no matter if
407 * other points have 1/2 the RTT and you could get more
410 bw_avail
= *bottle_bw
;
412 if (*on_queue
> bw_avail
) {
414 * No room for anything else don't allow anything else to be
415 * "added to the fire".
417 int seg_inflight
, seg_onqueue
, my_portion
;
419 net
->partial_bytes_acked
= 0;
421 /* how much are we over queue size? */
422 incr
= *on_queue
- bw_avail
;
423 if (stcb
->asoc
.seen_a_sack_this_pkt
) {
425 * undo any cwnd adjustment that the sack might have
428 net
->cwnd
= net
->prev_cwnd
;
430 /* Now how much of that is mine? */
431 seg_inflight
= net
->flight_size
/ net
->mtu
;
432 seg_onqueue
= *on_queue
/ net
->mtu
;
433 my_portion
= (incr
* seg_inflight
) / seg_onqueue
;
435 /* Have I made an adjustment already */
436 if (net
->cwnd
> net
->flight_size
) {
438 * for this flight I made an adjustment we need to
439 * decrease the portion by a share our previous
444 diff_adj
= net
->cwnd
- net
->flight_size
;
445 if (diff_adj
> my_portion
)
448 my_portion
-= diff_adj
;
451 * back down to the previous cwnd (assume we have had a sack
452 * before this packet). minus what ever portion of the
453 * overage is my fault.
455 net
->cwnd
-= my_portion
;
457 /* we will NOT back down more than 1 MTU */
458 if (net
->cwnd
<= net
->mtu
) {
459 net
->cwnd
= net
->mtu
;
462 net
->ssthresh
= net
->cwnd
- 1;
465 * Take 1/4 of the space left or max burst up .. whichever
468 incr
= min((bw_avail
- *on_queue
) >> 2,
469 stcb
->asoc
.max_burst
* net
->mtu
);
472 if (net
->cwnd
> bw_avail
) {
473 /* We can't exceed the pipe size */
474 net
->cwnd
= bw_avail
;
476 if (net
->cwnd
< net
->mtu
) {
477 /* We always have 1 MTU */
478 net
->cwnd
= net
->mtu
;
480 if (net
->cwnd
- old_cwnd
!= 0) {
481 /* log only changes */
482 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_MONITOR_ENABLE
) {
483 sctp_log_cwnd(stcb
, net
, (net
->cwnd
- old_cwnd
),
484 SCTP_CWND_LOG_FROM_SAT
);
490 sctp_cwnd_update_after_output(struct sctp_tcb
*stcb
,
491 struct sctp_nets
*net
, int burst_limit
)
493 int old_cwnd
= net
->cwnd
;
495 if (net
->ssthresh
< net
->cwnd
)
496 net
->ssthresh
= net
->cwnd
;
497 net
->cwnd
= (net
->flight_size
+ (burst_limit
* net
->mtu
));
499 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_MONITOR_ENABLE
) {
500 sctp_log_cwnd(stcb
, net
, (net
->cwnd
- old_cwnd
), SCTP_CWND_LOG_FROM_BRST
);
505 sctp_cwnd_update_after_fr_timer(struct sctp_inpcb
*inp
,
506 struct sctp_tcb
*stcb
, struct sctp_nets
*net
)
508 int old_cwnd
= net
->cwnd
;
510 sctp_chunk_output(inp
, stcb
, SCTP_OUTPUT_FROM_EARLY_FR_TMR
, SCTP_SO_NOT_LOCKED
);
512 * make a small adjustment to cwnd and force to CA.
514 if (net
->cwnd
> net
->mtu
)
515 /* drop down one MTU after sending */
516 net
->cwnd
-= net
->mtu
;
517 if (net
->cwnd
< net
->ssthresh
)
518 /* still in SS move to CA */
519 net
->ssthresh
= net
->cwnd
- 1;
520 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_MONITOR_ENABLE
) {
521 sctp_log_cwnd(stcb
, net
, (old_cwnd
- net
->cwnd
), SCTP_CWND_LOG_FROM_FR
);
525 struct sctp_hs_raise_drop
{
528 int32_t drop_percent
;
531 #define SCTP_HS_TABLE_SIZE 73
533 struct sctp_hs_raise_drop sctp_cwnd_adjust
[SCTP_HS_TABLE_SIZE
] = {
535 {118, 2, 44}, /* 1 */
536 {221, 3, 41}, /* 2 */
537 {347, 4, 38}, /* 3 */
538 {495, 5, 37}, /* 4 */
539 {663, 6, 35}, /* 5 */
540 {851, 7, 34}, /* 6 */
541 {1058, 8, 33}, /* 7 */
542 {1284, 9, 32}, /* 8 */
543 {1529, 10, 31}, /* 9 */
544 {1793, 11, 30}, /* 10 */
545 {2076, 12, 29}, /* 11 */
546 {2378, 13, 28}, /* 12 */
547 {2699, 14, 28}, /* 13 */
548 {3039, 15, 27}, /* 14 */
549 {3399, 16, 27}, /* 15 */
550 {3778, 17, 26}, /* 16 */
551 {4177, 18, 26}, /* 17 */
552 {4596, 19, 25}, /* 18 */
553 {5036, 20, 25}, /* 19 */
554 {5497, 21, 24}, /* 20 */
555 {5979, 22, 24}, /* 21 */
556 {6483, 23, 23}, /* 22 */
557 {7009, 24, 23}, /* 23 */
558 {7558, 25, 22}, /* 24 */
559 {8130, 26, 22}, /* 25 */
560 {8726, 27, 22}, /* 26 */
561 {9346, 28, 21}, /* 27 */
562 {9991, 29, 21}, /* 28 */
563 {10661, 30, 21}, /* 29 */
564 {11358, 31, 20}, /* 30 */
565 {12082, 32, 20}, /* 31 */
566 {12834, 33, 20}, /* 32 */
567 {13614, 34, 19}, /* 33 */
568 {14424, 35, 19}, /* 34 */
569 {15265, 36, 19}, /* 35 */
570 {16137, 37, 19}, /* 36 */
571 {17042, 38, 18}, /* 37 */
572 {17981, 39, 18}, /* 38 */
573 {18955, 40, 18}, /* 39 */
574 {19965, 41, 17}, /* 40 */
575 {21013, 42, 17}, /* 41 */
576 {22101, 43, 17}, /* 42 */
577 {23230, 44, 17}, /* 43 */
578 {24402, 45, 16}, /* 44 */
579 {25618, 46, 16}, /* 45 */
580 {26881, 47, 16}, /* 46 */
581 {28193, 48, 16}, /* 47 */
582 {29557, 49, 15}, /* 48 */
583 {30975, 50, 15}, /* 49 */
584 {32450, 51, 15}, /* 50 */
585 {33986, 52, 15}, /* 51 */
586 {35586, 53, 14}, /* 52 */
587 {37253, 54, 14}, /* 53 */
588 {38992, 55, 14}, /* 54 */
589 {40808, 56, 14}, /* 55 */
590 {42707, 57, 13}, /* 56 */
591 {44694, 58, 13}, /* 57 */
592 {46776, 59, 13}, /* 58 */
593 {48961, 60, 13}, /* 59 */
594 {51258, 61, 13}, /* 60 */
595 {53677, 62, 12}, /* 61 */
596 {56230, 63, 12}, /* 62 */
597 {58932, 64, 12}, /* 63 */
598 {61799, 65, 12}, /* 64 */
599 {64851, 66, 11}, /* 65 */
600 {68113, 67, 11}, /* 66 */
601 {71617, 68, 11}, /* 67 */
602 {75401, 69, 10}, /* 68 */
603 {79517, 70, 10}, /* 69 */
604 {84035, 71, 10}, /* 70 */
605 {89053, 72, 10}, /* 71 */
606 {94717, 73, 9} /* 72 */
610 sctp_hs_cwnd_increase(struct sctp_tcb
*stcb
, struct sctp_nets
*net
)
612 int cur_val
, i
, indx
, incr
;
614 cur_val
= net
->cwnd
>> 10;
615 indx
= SCTP_HS_TABLE_SIZE
- 1;
617 printf("HS CC CAlled.\n");
619 if (cur_val
< sctp_cwnd_adjust
[0].cwnd
) {
621 if (net
->net_ack
> net
->mtu
) {
622 net
->cwnd
+= net
->mtu
;
623 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_MONITOR_ENABLE
) {
624 sctp_log_cwnd(stcb
, net
, net
->mtu
, SCTP_CWND_LOG_FROM_SS
);
627 net
->cwnd
+= net
->net_ack
;
628 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_MONITOR_ENABLE
) {
629 sctp_log_cwnd(stcb
, net
, net
->net_ack
, SCTP_CWND_LOG_FROM_SS
);
633 for (i
= net
->last_hs_used
; i
< SCTP_HS_TABLE_SIZE
; i
++) {
634 if (cur_val
< sctp_cwnd_adjust
[i
].cwnd
) {
639 net
->last_hs_used
= indx
;
640 incr
= ((sctp_cwnd_adjust
[indx
].increase
) << 10);
642 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_MONITOR_ENABLE
) {
643 sctp_log_cwnd(stcb
, net
, incr
, SCTP_CWND_LOG_FROM_SS
);
649 sctp_hs_cwnd_decrease(struct sctp_tcb
*stcb
, struct sctp_nets
*net
)
651 int cur_val
, i
, indx
;
652 int old_cwnd
= net
->cwnd
;
654 cur_val
= net
->cwnd
>> 10;
655 indx
= net
->last_hs_used
;
656 if (cur_val
< sctp_cwnd_adjust
[0].cwnd
) {
658 net
->ssthresh
= net
->cwnd
/ 2;
659 if (net
->ssthresh
< (net
->mtu
* 2)) {
660 net
->ssthresh
= 2 * net
->mtu
;
662 net
->cwnd
= net
->ssthresh
;
664 /* drop by the proper amount */
665 net
->ssthresh
= net
->cwnd
- (int)((net
->cwnd
/ 100) *
666 sctp_cwnd_adjust
[net
->last_hs_used
].drop_percent
);
667 net
->cwnd
= net
->ssthresh
;
668 /* now where are we */
669 indx
= net
->last_hs_used
;
670 cur_val
= net
->cwnd
>> 10;
671 /* reset where we are in the table */
672 if (cur_val
< sctp_cwnd_adjust
[0].cwnd
) {
674 net
->last_hs_used
= 0;
676 for (i
= indx
; i
>= 1; i
--) {
677 if (cur_val
> sctp_cwnd_adjust
[i
- 1].cwnd
) {
681 net
->last_hs_used
= indx
;
684 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_MONITOR_ENABLE
) {
685 sctp_log_cwnd(stcb
, net
, (net
->cwnd
- old_cwnd
), SCTP_CWND_LOG_FROM_FR
);
690 sctp_hs_cwnd_update_after_fr(struct sctp_tcb
*stcb
,
691 struct sctp_association
*asoc
)
693 struct sctp_nets
*net
;
696 * CMT fast recovery code. Need to debug. ((sctp_cmt_on_off == 1) &&
697 * (net->fast_retran_loss_recovery == 0)))
699 TAILQ_FOREACH(net
, &asoc
->nets
, sctp_next
) {
700 if ((asoc
->fast_retran_loss_recovery
== 0) || (SCTP_BASE_SYSCTL(sctp_cmt_on_off
) == 1)) {
701 /* out of a RFC2582 Fast recovery window? */
702 if (net
->net_ack
> 0) {
704 * per section 7.2.3, are there any
705 * destinations that had a fast retransmit
706 * to them. If so what we need to do is
707 * adjust ssthresh and cwnd.
709 struct sctp_tmit_chunk
*lchk
;
711 sctp_hs_cwnd_decrease(stcb
, net
);
713 lchk
= TAILQ_FIRST(&asoc
->send_queue
);
715 net
->partial_bytes_acked
= 0;
716 /* Turn on fast recovery window */
717 asoc
->fast_retran_loss_recovery
= 1;
719 /* Mark end of the window */
720 asoc
->fast_recovery_tsn
= asoc
->sending_seq
- 1;
722 asoc
->fast_recovery_tsn
= lchk
->rec
.data
.TSN_seq
- 1;
726 * CMT fast recovery -- per destination
729 net
->fast_retran_loss_recovery
= 1;
732 /* Mark end of the window */
733 net
->fast_recovery_tsn
= asoc
->sending_seq
- 1;
735 net
->fast_recovery_tsn
= lchk
->rec
.data
.TSN_seq
- 1;
739 * Disable Nonce Sum Checking and store the
742 asoc
->nonce_sum_check
= 0;
743 asoc
->nonce_resync_tsn
= asoc
->fast_recovery_tsn
+ 1;
745 sctp_timer_stop(SCTP_TIMER_TYPE_SEND
,
746 stcb
->sctp_ep
, stcb
, net
, SCTP_FROM_SCTP_INDATA
+ SCTP_LOC_32
);
747 sctp_timer_start(SCTP_TIMER_TYPE_SEND
,
748 stcb
->sctp_ep
, stcb
, net
);
750 } else if (net
->net_ack
> 0) {
752 * Mark a peg that we WOULD have done a cwnd
753 * reduction but RFC2582 prevented this action.
755 SCTP_STAT_INCR(sctps_fastretransinrtt
);
761 sctp_hs_cwnd_update_after_sack(struct sctp_tcb
*stcb
,
762 struct sctp_association
*asoc
,
763 int accum_moved
, int reneged_all
, int will_exit
)
765 struct sctp_nets
*net
;
767 /******************************/
768 /* update cwnd and Early FR */
769 /******************************/
770 TAILQ_FOREACH(net
, &asoc
->nets
, sctp_next
) {
772 #ifdef JANA_CMT_FAST_RECOVERY
774 * CMT fast recovery code. Need to debug.
776 if (net
->fast_retran_loss_recovery
&& net
->new_pseudo_cumack
) {
777 if (compare_with_wrap(asoc
->last_acked_seq
,
778 net
->fast_recovery_tsn
, MAX_TSN
) ||
779 (asoc
->last_acked_seq
== net
->fast_recovery_tsn
) ||
780 compare_with_wrap(net
->pseudo_cumack
, net
->fast_recovery_tsn
, MAX_TSN
) ||
781 (net
->pseudo_cumack
== net
->fast_recovery_tsn
)) {
782 net
->will_exit_fast_recovery
= 1;
786 if (SCTP_BASE_SYSCTL(sctp_early_fr
)) {
788 * So, first of all do we need to have a Early FR
791 if (((TAILQ_FIRST(&asoc
->sent_queue
)) &&
792 (net
->ref_count
> 1) &&
793 (net
->flight_size
< net
->cwnd
)) ||
796 * yes, so in this case stop it if its
797 * running, and then restart it. Reneging
798 * all is a special case where we want to
799 * run the Early FR timer and then force the
800 * last few unacked to be sent, causing us
801 * to illicit a sack with gaps to force out
804 if (SCTP_OS_TIMER_PENDING(&net
->fr_timer
.timer
)) {
805 SCTP_STAT_INCR(sctps_earlyfrstpidsck2
);
806 sctp_timer_stop(SCTP_TIMER_TYPE_EARLYFR
, stcb
->sctp_ep
, stcb
, net
,
807 SCTP_FROM_SCTP_INDATA
+ SCTP_LOC_20
);
809 SCTP_STAT_INCR(sctps_earlyfrstrid
);
810 sctp_timer_start(SCTP_TIMER_TYPE_EARLYFR
, stcb
->sctp_ep
, stcb
, net
);
812 /* No, stop it if its running */
813 if (SCTP_OS_TIMER_PENDING(&net
->fr_timer
.timer
)) {
814 SCTP_STAT_INCR(sctps_earlyfrstpidsck3
);
815 sctp_timer_stop(SCTP_TIMER_TYPE_EARLYFR
, stcb
->sctp_ep
, stcb
, net
,
816 SCTP_FROM_SCTP_INDATA
+ SCTP_LOC_21
);
820 /* if nothing was acked on this destination skip it */
821 if (net
->net_ack
== 0) {
822 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_LOGGING_ENABLE
) {
823 sctp_log_cwnd(stcb
, net
, 0, SCTP_CWND_LOG_FROM_SACK
);
827 if (net
->net_ack2
> 0) {
829 * Karn's rule applies to clearing error count, this
832 net
->error_count
= 0;
833 if ((net
->dest_state
& SCTP_ADDR_NOT_REACHABLE
) ==
834 SCTP_ADDR_NOT_REACHABLE
) {
836 net
->dest_state
&= ~SCTP_ADDR_NOT_REACHABLE
;
837 net
->dest_state
|= SCTP_ADDR_REACHABLE
;
838 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_UP
, stcb
,
839 SCTP_RECEIVED_SACK
, (void *)net
, SCTP_SO_NOT_LOCKED
);
840 /* now was it the primary? if so restore */
841 if (net
->dest_state
& SCTP_ADDR_WAS_PRIMARY
) {
842 (void)sctp_set_primary_addr(stcb
, (struct sockaddr
*)NULL
, net
);
846 * JRS 5/14/07 - If CMT PF is on and the destination
847 * is in PF state, set the destination to active
848 * state and set the cwnd to one or two MTU's based
849 * on whether PF1 or PF2 is being used.
851 * Should we stop any running T3 timer here?
853 if (SCTP_BASE_SYSCTL(sctp_cmt_on_off
) &&
854 SCTP_BASE_SYSCTL(sctp_cmt_pf
) &&
855 ((net
->dest_state
& SCTP_ADDR_PF
) == SCTP_ADDR_PF
)) {
856 net
->dest_state
&= ~SCTP_ADDR_PF
;
857 net
->cwnd
= net
->mtu
* SCTP_BASE_SYSCTL(sctp_cmt_pf
);
858 SCTPDBG(SCTP_DEBUG_INDATA1
, "Destination %p moved from PF to reachable with cwnd %d.\n",
861 * Since the cwnd value is explicitly set,
862 * skip the code that updates the cwnd
865 goto skip_cwnd_update
;
868 #ifdef JANA_CMT_FAST_RECOVERY
870 * CMT fast recovery code
873 * if (sctp_cmt_on_off == 1 &&
874 * net->fast_retran_loss_recovery &&
875 * net->will_exit_fast_recovery == 0) { @@@ Do something }
876 * else if (sctp_cmt_on_off == 0 &&
877 * asoc->fast_retran_loss_recovery && will_exit == 0) {
881 if (asoc
->fast_retran_loss_recovery
&& will_exit
== 0 && SCTP_BASE_SYSCTL(sctp_cmt_on_off
) == 0) {
883 * If we are in loss recovery we skip any cwnd
886 goto skip_cwnd_update
;
889 * CMT: CUC algorithm. Update cwnd if pseudo-cumack has
892 if (accum_moved
|| (SCTP_BASE_SYSCTL(sctp_cmt_on_off
) && net
->new_pseudo_cumack
)) {
893 /* If the cumulative ack moved we can proceed */
894 if (net
->cwnd
<= net
->ssthresh
) {
895 /* We are in slow start */
896 if (net
->flight_size
+ net
->net_ack
>= net
->cwnd
) {
898 sctp_hs_cwnd_increase(stcb
, net
);
901 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_LOGGING_ENABLE
) {
902 sctp_log_cwnd(stcb
, net
, net
->net_ack
,
903 SCTP_CWND_LOG_NOADV_SS
);
907 /* We are in congestion avoidance */
908 net
->partial_bytes_acked
+= net
->net_ack
;
909 if ((net
->flight_size
+ net
->net_ack
>= net
->cwnd
) &&
910 (net
->partial_bytes_acked
>= net
->cwnd
)) {
911 net
->partial_bytes_acked
-= net
->cwnd
;
912 net
->cwnd
+= net
->mtu
;
913 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_MONITOR_ENABLE
) {
914 sctp_log_cwnd(stcb
, net
, net
->mtu
,
915 SCTP_CWND_LOG_FROM_CA
);
918 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_LOGGING_ENABLE
) {
919 sctp_log_cwnd(stcb
, net
, net
->net_ack
,
920 SCTP_CWND_LOG_NOADV_CA
);
925 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_LOGGING_ENABLE
) {
926 sctp_log_cwnd(stcb
, net
, net
->mtu
,
927 SCTP_CWND_LOG_NO_CUMACK
);
932 * NOW, according to Karn's rule do we need to restore the
933 * RTO timer back? Check our net_ack2. If not set then we
934 * have a ambiguity.. i.e. all data ack'd was sent to more
938 /* restore any doubled timers */
939 net
->RTO
= ((net
->lastsa
>> 2) + net
->lastsv
) >> 1;
940 if (net
->RTO
< stcb
->asoc
.minrto
) {
941 net
->RTO
= stcb
->asoc
.minrto
;
943 if (net
->RTO
> stcb
->asoc
.maxrto
) {
944 net
->RTO
= stcb
->asoc
.maxrto
;
952 * H-TCP congestion control. The algorithm is detailed in:
953 * R.N.Shorten, D.J.Leith:
954 * "H-TCP: TCP for high-speed and long-distance networks"
955 * Proc. PFLDnet, Argonne, 2004.
956 * http://www.hamilton.ie/net/htcp3.pdf
960 static int use_rtt_scaling
= 1;
961 static int use_bandwidth_switch
= 1;
964 between(uint32_t seq1
, uint32_t seq2
, uint32_t seq3
)
966 return seq3
- seq2
>= seq1
- seq2
;
969 static inline uint32_t
970 htcp_cong_time(struct htcp
*ca
)
972 return sctp_get_tick_count() - ca
->last_cong
;
975 static inline uint32_t
976 htcp_ccount(struct htcp
*ca
)
978 return htcp_cong_time(ca
) / ca
->minRTT
;
982 htcp_reset(struct htcp
*ca
)
984 ca
->undo_last_cong
= ca
->last_cong
;
985 ca
->undo_maxRTT
= ca
->maxRTT
;
986 ca
->undo_old_maxB
= ca
->old_maxB
;
987 ca
->last_cong
= sctp_get_tick_count();
993 htcp_cwnd_undo(struct sctp_tcb
*stcb
, struct sctp_nets
*net
)
995 net
->htcp_ca
.last_cong
= net
->htcp_ca
.undo_last_cong
;
996 net
->htcp_ca
.maxRTT
= net
->htcp_ca
.undo_maxRTT
;
997 net
->htcp_ca
.old_maxB
= net
->htcp_ca
.undo_old_maxB
;
998 return max(net
->cwnd
, ((net
->ssthresh
/ net
->mtu
<< 7) / net
->htcp_ca
.beta
) * net
->mtu
);
1004 measure_rtt(struct sctp_tcb
*stcb
, struct sctp_nets
*net
)
1006 uint32_t srtt
= net
->lastsa
>> 3;
1008 /* keep track of minimum RTT seen so far, minRTT is zero at first */
1009 if (net
->htcp_ca
.minRTT
> srtt
|| !net
->htcp_ca
.minRTT
)
1010 net
->htcp_ca
.minRTT
= srtt
;
1013 if (net
->fast_retran_ip
== 0 && net
->ssthresh
< 0xFFFF && htcp_ccount(&net
->htcp_ca
) > 3) {
1014 if (net
->htcp_ca
.maxRTT
< net
->htcp_ca
.minRTT
)
1015 net
->htcp_ca
.maxRTT
= net
->htcp_ca
.minRTT
;
1016 if (net
->htcp_ca
.maxRTT
< srtt
&& srtt
<= net
->htcp_ca
.maxRTT
+ MSEC_TO_TICKS(20))
1017 net
->htcp_ca
.maxRTT
= srtt
;
1022 measure_achieved_throughput(struct sctp_tcb
*stcb
, struct sctp_nets
*net
)
1024 uint32_t now
= sctp_get_tick_count();
1026 if (net
->fast_retran_ip
== 0)
1027 net
->htcp_ca
.bytes_acked
= net
->net_ack
;
1029 if (!use_bandwidth_switch
)
1032 /* achieved throughput calculations */
1033 /* JRS - not 100% sure of this statement */
1034 if (net
->fast_retran_ip
== 1) {
1035 net
->htcp_ca
.bytecount
= 0;
1036 net
->htcp_ca
.lasttime
= now
;
1039 net
->htcp_ca
.bytecount
+= net
->net_ack
;
1041 if (net
->htcp_ca
.bytecount
>= net
->cwnd
- ((net
->htcp_ca
.alpha
>> 7 ? : 1) * net
->mtu
)
1042 && now
- net
->htcp_ca
.lasttime
>= net
->htcp_ca
.minRTT
1043 && net
->htcp_ca
.minRTT
> 0) {
1044 uint32_t cur_Bi
= net
->htcp_ca
.bytecount
/ net
->mtu
* hz
/ (now
- net
->htcp_ca
.lasttime
);
1046 if (htcp_ccount(&net
->htcp_ca
) <= 3) {
1047 /* just after backoff */
1048 net
->htcp_ca
.minB
= net
->htcp_ca
.maxB
= net
->htcp_ca
.Bi
= cur_Bi
;
1050 net
->htcp_ca
.Bi
= (3 * net
->htcp_ca
.Bi
+ cur_Bi
) / 4;
1051 if (net
->htcp_ca
.Bi
> net
->htcp_ca
.maxB
)
1052 net
->htcp_ca
.maxB
= net
->htcp_ca
.Bi
;
1053 if (net
->htcp_ca
.minB
> net
->htcp_ca
.maxB
)
1054 net
->htcp_ca
.minB
= net
->htcp_ca
.maxB
;
1056 net
->htcp_ca
.bytecount
= 0;
1057 net
->htcp_ca
.lasttime
= now
;
1062 htcp_beta_update(struct htcp
*ca
, uint32_t minRTT
, uint32_t maxRTT
)
1064 if (use_bandwidth_switch
) {
1065 uint32_t maxB
= ca
->maxB
;
1066 uint32_t old_maxB
= ca
->old_maxB
;
1068 ca
->old_maxB
= ca
->maxB
;
1070 if (!between(5 * maxB
, 4 * old_maxB
, 6 * old_maxB
)) {
1071 ca
->beta
= BETA_MIN
;
1076 if (ca
->modeswitch
&& minRTT
> (uint32_t) MSEC_TO_TICKS(10) && maxRTT
) {
1077 ca
->beta
= (minRTT
<< 7) / maxRTT
;
1078 if (ca
->beta
< BETA_MIN
)
1079 ca
->beta
= BETA_MIN
;
1080 else if (ca
->beta
> BETA_MAX
)
1081 ca
->beta
= BETA_MAX
;
1083 ca
->beta
= BETA_MIN
;
1089 htcp_alpha_update(struct htcp
*ca
)
1091 uint32_t minRTT
= ca
->minRTT
;
1092 uint32_t factor
= 1;
1093 uint32_t diff
= htcp_cong_time(ca
);
1095 if (diff
> (uint32_t) hz
) {
1097 factor
= 1 + (10 * diff
+ ((diff
/ 2) * (diff
/ 2) / hz
)) / hz
;
1099 if (use_rtt_scaling
&& minRTT
) {
1100 uint32_t scale
= (hz
<< 3) / (10 * minRTT
);
1102 scale
= min(max(scale
, 1U << 2), 10U << 3); /* clamping ratio to
1103 * interval [0.5,10]<<3 */
1104 factor
= (factor
<< 3) / scale
;
1108 ca
->alpha
= 2 * factor
* ((1 << 7) - ca
->beta
);
1110 ca
->alpha
= ALPHA_BASE
;
1113 /* After we have the rtt data to calculate beta, we'd still prefer to wait one
1114 * rtt before we adjust our beta to ensure we are working from a consistent
1117 * This function should be called when we hit a congestion event since only at
1118 * that point do we really have a real sense of maxRTT (the queues en route
1119 * were getting just too full now).
1122 htcp_param_update(struct sctp_tcb
*stcb
, struct sctp_nets
*net
)
1124 uint32_t minRTT
= net
->htcp_ca
.minRTT
;
1125 uint32_t maxRTT
= net
->htcp_ca
.maxRTT
;
1127 htcp_beta_update(&net
->htcp_ca
, minRTT
, maxRTT
);
1128 htcp_alpha_update(&net
->htcp_ca
);
1131 * add slowly fading memory for maxRTT to accommodate routing
1134 if (minRTT
> 0 && maxRTT
> minRTT
)
1135 net
->htcp_ca
.maxRTT
= minRTT
+ ((maxRTT
- minRTT
) * 95) / 100;
1139 htcp_recalc_ssthresh(struct sctp_tcb
*stcb
, struct sctp_nets
*net
)
1141 htcp_param_update(stcb
, net
);
1142 return max(((net
->cwnd
/ net
->mtu
* net
->htcp_ca
.beta
) >> 7) * net
->mtu
, 2U * net
->mtu
);
1146 htcp_cong_avoid(struct sctp_tcb
*stcb
, struct sctp_nets
*net
)
1149 * How to handle these functions?
1150 * if (!tcp_is_cwnd_limited(sk, in_flight)) RRS - good question.
1153 if (net
->cwnd
<= net
->ssthresh
) {
1154 /* We are in slow start */
1155 if (net
->flight_size
+ net
->net_ack
>= net
->cwnd
) {
1156 if (net
->net_ack
> (net
->mtu
* SCTP_BASE_SYSCTL(sctp_L2_abc_variable
))) {
1157 net
->cwnd
+= (net
->mtu
* SCTP_BASE_SYSCTL(sctp_L2_abc_variable
));
1158 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_MONITOR_ENABLE
) {
1159 sctp_log_cwnd(stcb
, net
, net
->mtu
,
1160 SCTP_CWND_LOG_FROM_SS
);
1163 net
->cwnd
+= net
->net_ack
;
1164 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_MONITOR_ENABLE
) {
1165 sctp_log_cwnd(stcb
, net
, net
->net_ack
,
1166 SCTP_CWND_LOG_FROM_SS
);
1170 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_LOGGING_ENABLE
) {
1171 sctp_log_cwnd(stcb
, net
, net
->net_ack
,
1172 SCTP_CWND_LOG_NOADV_SS
);
1176 measure_rtt(stcb
, net
);
1179 * In dangerous area, increase slowly. In theory this is
1180 * net->cwnd += alpha / net->cwnd
1182 /* What is snd_cwnd_cnt?? */
1183 if (((net
->partial_bytes_acked
/ net
->mtu
* net
->htcp_ca
.alpha
) >> 7) * net
->mtu
>= net
->cwnd
) {
1185 * Does SCTP have a cwnd clamp?
1186 * if (net->snd_cwnd < net->snd_cwnd_clamp) - Nope (RRS).
1188 net
->cwnd
+= net
->mtu
;
1189 net
->partial_bytes_acked
= 0;
1190 htcp_alpha_update(&net
->htcp_ca
);
1191 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_MONITOR_ENABLE
) {
1192 sctp_log_cwnd(stcb
, net
, net
->mtu
,
1193 SCTP_CWND_LOG_FROM_CA
);
1196 net
->partial_bytes_acked
+= net
->net_ack
;
1197 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_LOGGING_ENABLE
) {
1198 sctp_log_cwnd(stcb
, net
, net
->net_ack
,
1199 SCTP_CWND_LOG_NOADV_CA
);
1203 net
->htcp_ca
.bytes_acked
= net
->mtu
;
1207 #ifdef SCTP_NOT_USED
1208 /* Lower bound on congestion window. */
1210 htcp_min_cwnd(struct sctp_tcb
*stcb
, struct sctp_nets
*net
)
1212 return net
->ssthresh
;
1218 htcp_init(struct sctp_tcb
*stcb
, struct sctp_nets
*net
)
1220 memset(&net
->htcp_ca
, 0, sizeof(struct htcp
));
1221 net
->htcp_ca
.alpha
= ALPHA_BASE
;
1222 net
->htcp_ca
.beta
= BETA_MIN
;
1223 net
->htcp_ca
.bytes_acked
= net
->mtu
;
1224 net
->htcp_ca
.last_cong
= sctp_get_tick_count();
1228 sctp_htcp_set_initial_cc_param(struct sctp_tcb
*stcb
, struct sctp_nets
*net
)
1231 * We take the max of the burst limit times a MTU or the
1232 * INITIAL_CWND. We then limit this to 4 MTU's of sending.
1234 net
->cwnd
= min((net
->mtu
* 4), max((2 * net
->mtu
), SCTP_INITIAL_CWND
));
1235 net
->ssthresh
= stcb
->asoc
.peers_rwnd
;
1236 htcp_init(stcb
, net
);
1238 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & (SCTP_CWND_MONITOR_ENABLE
| SCTP_CWND_LOGGING_ENABLE
)) {
1239 sctp_log_cwnd(stcb
, net
, 0, SCTP_CWND_INITIALIZATION
);
1244 sctp_htcp_cwnd_update_after_sack(struct sctp_tcb
*stcb
,
1245 struct sctp_association
*asoc
,
1246 int accum_moved
, int reneged_all
, int will_exit
)
1248 struct sctp_nets
*net
;
1250 /******************************/
1251 /* update cwnd and Early FR */
1252 /******************************/
1253 TAILQ_FOREACH(net
, &asoc
->nets
, sctp_next
) {
1255 #ifdef JANA_CMT_FAST_RECOVERY
1257 * CMT fast recovery code. Need to debug.
1259 if (net
->fast_retran_loss_recovery
&& net
->new_pseudo_cumack
) {
1260 if (compare_with_wrap(asoc
->last_acked_seq
,
1261 net
->fast_recovery_tsn
, MAX_TSN
) ||
1262 (asoc
->last_acked_seq
== net
->fast_recovery_tsn
) ||
1263 compare_with_wrap(net
->pseudo_cumack
, net
->fast_recovery_tsn
, MAX_TSN
) ||
1264 (net
->pseudo_cumack
== net
->fast_recovery_tsn
)) {
1265 net
->will_exit_fast_recovery
= 1;
1269 if (SCTP_BASE_SYSCTL(sctp_early_fr
)) {
1271 * So, first of all do we need to have a Early FR
1274 if (((TAILQ_FIRST(&asoc
->sent_queue
)) &&
1275 (net
->ref_count
> 1) &&
1276 (net
->flight_size
< net
->cwnd
)) ||
1279 * yes, so in this case stop it if its
1280 * running, and then restart it. Reneging
1281 * all is a special case where we want to
1282 * run the Early FR timer and then force the
1283 * last few unacked to be sent, causing us
1284 * to illicit a sack with gaps to force out
1287 if (SCTP_OS_TIMER_PENDING(&net
->fr_timer
.timer
)) {
1288 SCTP_STAT_INCR(sctps_earlyfrstpidsck2
);
1289 sctp_timer_stop(SCTP_TIMER_TYPE_EARLYFR
, stcb
->sctp_ep
, stcb
, net
,
1290 SCTP_FROM_SCTP_INDATA
+ SCTP_LOC_20
);
1292 SCTP_STAT_INCR(sctps_earlyfrstrid
);
1293 sctp_timer_start(SCTP_TIMER_TYPE_EARLYFR
, stcb
->sctp_ep
, stcb
, net
);
1295 /* No, stop it if its running */
1296 if (SCTP_OS_TIMER_PENDING(&net
->fr_timer
.timer
)) {
1297 SCTP_STAT_INCR(sctps_earlyfrstpidsck3
);
1298 sctp_timer_stop(SCTP_TIMER_TYPE_EARLYFR
, stcb
->sctp_ep
, stcb
, net
,
1299 SCTP_FROM_SCTP_INDATA
+ SCTP_LOC_21
);
1303 /* if nothing was acked on this destination skip it */
1304 if (net
->net_ack
== 0) {
1305 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_LOGGING_ENABLE
) {
1306 sctp_log_cwnd(stcb
, net
, 0, SCTP_CWND_LOG_FROM_SACK
);
1310 if (net
->net_ack2
> 0) {
1312 * Karn's rule applies to clearing error count, this
1315 net
->error_count
= 0;
1316 if ((net
->dest_state
& SCTP_ADDR_NOT_REACHABLE
) ==
1317 SCTP_ADDR_NOT_REACHABLE
) {
1318 /* addr came good */
1319 net
->dest_state
&= ~SCTP_ADDR_NOT_REACHABLE
;
1320 net
->dest_state
|= SCTP_ADDR_REACHABLE
;
1321 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_UP
, stcb
,
1322 SCTP_RECEIVED_SACK
, (void *)net
, SCTP_SO_NOT_LOCKED
);
1323 /* now was it the primary? if so restore */
1324 if (net
->dest_state
& SCTP_ADDR_WAS_PRIMARY
) {
1325 (void)sctp_set_primary_addr(stcb
, (struct sockaddr
*)NULL
, net
);
1329 * JRS 5/14/07 - If CMT PF is on and the destination
1330 * is in PF state, set the destination to active
1331 * state and set the cwnd to one or two MTU's based
1332 * on whether PF1 or PF2 is being used.
1334 * Should we stop any running T3 timer here?
1336 if (SCTP_BASE_SYSCTL(sctp_cmt_on_off
) &&
1337 SCTP_BASE_SYSCTL(sctp_cmt_pf
) &&
1338 ((net
->dest_state
& SCTP_ADDR_PF
) == SCTP_ADDR_PF
)) {
1339 net
->dest_state
&= ~SCTP_ADDR_PF
;
1340 net
->cwnd
= net
->mtu
* SCTP_BASE_SYSCTL(sctp_cmt_pf
);
1341 SCTPDBG(SCTP_DEBUG_INDATA1
, "Destination %p moved from PF to reachable with cwnd %d.\n",
1344 * Since the cwnd value is explicitly set,
1345 * skip the code that updates the cwnd
1348 goto skip_cwnd_update
;
1351 #ifdef JANA_CMT_FAST_RECOVERY
1353 * CMT fast recovery code
1356 * if (sctp_cmt_on_off == 1 &&
1357 * net->fast_retran_loss_recovery &&
1358 * net->will_exit_fast_recovery == 0) { @@@ Do something }
1359 * else if (sctp_cmt_on_off == 0 &&
1360 * asoc->fast_retran_loss_recovery && will_exit == 0) {
1364 if (asoc
->fast_retran_loss_recovery
&& will_exit
== 0 && SCTP_BASE_SYSCTL(sctp_cmt_on_off
) == 0) {
1366 * If we are in loss recovery we skip any cwnd
1369 goto skip_cwnd_update
;
1372 * CMT: CUC algorithm. Update cwnd if pseudo-cumack has
1375 if (accum_moved
|| (SCTP_BASE_SYSCTL(sctp_cmt_on_off
) && net
->new_pseudo_cumack
)) {
1376 htcp_cong_avoid(stcb
, net
);
1377 measure_achieved_throughput(stcb
, net
);
1379 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_LOGGING_ENABLE
) {
1380 sctp_log_cwnd(stcb
, net
, net
->mtu
,
1381 SCTP_CWND_LOG_NO_CUMACK
);
1386 * NOW, according to Karn's rule do we need to restore the
1387 * RTO timer back? Check our net_ack2. If not set then we
1388 * have a ambiguity.. i.e. all data ack'd was sent to more
1391 if (net
->net_ack2
) {
1392 /* restore any doubled timers */
1393 net
->RTO
= ((net
->lastsa
>> 2) + net
->lastsv
) >> 1;
1394 if (net
->RTO
< stcb
->asoc
.minrto
) {
1395 net
->RTO
= stcb
->asoc
.minrto
;
1397 if (net
->RTO
> stcb
->asoc
.maxrto
) {
1398 net
->RTO
= stcb
->asoc
.maxrto
;
1405 sctp_htcp_cwnd_update_after_fr(struct sctp_tcb
*stcb
,
1406 struct sctp_association
*asoc
)
1408 struct sctp_nets
*net
;
1411 * CMT fast recovery code. Need to debug. ((sctp_cmt_on_off == 1) &&
1412 * (net->fast_retran_loss_recovery == 0)))
1414 TAILQ_FOREACH(net
, &asoc
->nets
, sctp_next
) {
1415 if ((asoc
->fast_retran_loss_recovery
== 0) || (SCTP_BASE_SYSCTL(sctp_cmt_on_off
) == 1)) {
1416 /* out of a RFC2582 Fast recovery window? */
1417 if (net
->net_ack
> 0) {
1419 * per section 7.2.3, are there any
1420 * destinations that had a fast retransmit
1421 * to them. If so what we need to do is
1422 * adjust ssthresh and cwnd.
1424 struct sctp_tmit_chunk
*lchk
;
1425 int old_cwnd
= net
->cwnd
;
1427 /* JRS - reset as if state were changed */
1428 htcp_reset(&net
->htcp_ca
);
1429 net
->ssthresh
= htcp_recalc_ssthresh(stcb
, net
);
1430 net
->cwnd
= net
->ssthresh
;
1431 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_MONITOR_ENABLE
) {
1432 sctp_log_cwnd(stcb
, net
, (net
->cwnd
- old_cwnd
),
1433 SCTP_CWND_LOG_FROM_FR
);
1435 lchk
= TAILQ_FIRST(&asoc
->send_queue
);
1437 net
->partial_bytes_acked
= 0;
1438 /* Turn on fast recovery window */
1439 asoc
->fast_retran_loss_recovery
= 1;
1441 /* Mark end of the window */
1442 asoc
->fast_recovery_tsn
= asoc
->sending_seq
- 1;
1444 asoc
->fast_recovery_tsn
= lchk
->rec
.data
.TSN_seq
- 1;
1448 * CMT fast recovery -- per destination
1449 * recovery variable.
1451 net
->fast_retran_loss_recovery
= 1;
1454 /* Mark end of the window */
1455 net
->fast_recovery_tsn
= asoc
->sending_seq
- 1;
1457 net
->fast_recovery_tsn
= lchk
->rec
.data
.TSN_seq
- 1;
1461 * Disable Nonce Sum Checking and store the
1464 asoc
->nonce_sum_check
= 0;
1465 asoc
->nonce_resync_tsn
= asoc
->fast_recovery_tsn
+ 1;
1467 sctp_timer_stop(SCTP_TIMER_TYPE_SEND
,
1468 stcb
->sctp_ep
, stcb
, net
, SCTP_FROM_SCTP_INDATA
+ SCTP_LOC_32
);
1469 sctp_timer_start(SCTP_TIMER_TYPE_SEND
,
1470 stcb
->sctp_ep
, stcb
, net
);
1472 } else if (net
->net_ack
> 0) {
1474 * Mark a peg that we WOULD have done a cwnd
1475 * reduction but RFC2582 prevented this action.
1477 SCTP_STAT_INCR(sctps_fastretransinrtt
);
1483 sctp_htcp_cwnd_update_after_timeout(struct sctp_tcb
*stcb
,
1484 struct sctp_nets
*net
)
1486 int old_cwnd
= net
->cwnd
;
1488 /* JRS - reset as if the state were being changed to timeout */
1489 htcp_reset(&net
->htcp_ca
);
1490 net
->ssthresh
= htcp_recalc_ssthresh(stcb
, net
);
1491 net
->cwnd
= net
->mtu
;
1492 net
->partial_bytes_acked
= 0;
1493 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_MONITOR_ENABLE
) {
1494 sctp_log_cwnd(stcb
, net
, net
->cwnd
- old_cwnd
, SCTP_CWND_LOG_FROM_RTX
);
1499 sctp_htcp_cwnd_update_after_fr_timer(struct sctp_inpcb
*inp
,
1500 struct sctp_tcb
*stcb
, struct sctp_nets
*net
)
1504 old_cwnd
= net
->cwnd
;
1506 sctp_chunk_output(inp
, stcb
, SCTP_OUTPUT_FROM_EARLY_FR_TMR
, SCTP_SO_NOT_LOCKED
);
1507 net
->htcp_ca
.last_cong
= sctp_get_tick_count();
1509 * make a small adjustment to cwnd and force to CA.
1511 if (net
->cwnd
> net
->mtu
)
1512 /* drop down one MTU after sending */
1513 net
->cwnd
-= net
->mtu
;
1514 if (net
->cwnd
< net
->ssthresh
)
1515 /* still in SS move to CA */
1516 net
->ssthresh
= net
->cwnd
- 1;
1517 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_MONITOR_ENABLE
) {
1518 sctp_log_cwnd(stcb
, net
, (old_cwnd
- net
->cwnd
), SCTP_CWND_LOG_FROM_FR
);
1523 sctp_htcp_cwnd_update_after_ecn_echo(struct sctp_tcb
*stcb
,
1524 struct sctp_nets
*net
)
1528 old_cwnd
= net
->cwnd
;
1530 /* JRS - reset hctp as if state changed */
1531 htcp_reset(&net
->htcp_ca
);
1532 SCTP_STAT_INCR(sctps_ecnereducedcwnd
);
1533 net
->ssthresh
= htcp_recalc_ssthresh(stcb
, net
);
1534 if (net
->ssthresh
< net
->mtu
) {
1535 net
->ssthresh
= net
->mtu
;
1536 /* here back off the timer as well, to slow us down */
1539 net
->cwnd
= net
->ssthresh
;
1540 if (SCTP_BASE_SYSCTL(sctp_logging_level
) & SCTP_CWND_MONITOR_ENABLE
) {
1541 sctp_log_cwnd(stcb
, net
, (net
->cwnd
- old_cwnd
), SCTP_CWND_LOG_FROM_SAT
);