1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* SCTP kernel implementation
3 * Copyright (c) 1999-2000 Cisco, Inc.
4 * Copyright (c) 1999-2001 Motorola, Inc.
5 * Copyright (c) 2001-2003 International Business Machines Corp.
6 * Copyright (c) 2001 Intel Corp.
7 * Copyright (c) 2001 La Monte H.P. Yarroll
9 * This file is part of the SCTP kernel implementation
11 * This module provides the abstraction for an SCTP transport representing
12 * a remote transport address. For local transport addresses, we just use
15 * Please send any bug reports or fixes you make to the
17 * lksctp developers <linux-sctp@vger.kernel.org>
19 * Written or modified by:
20 * La Monte H.P. Yarroll <piggy@acm.org>
21 * Karl Knutson <karl@athena.chicago.il.us>
22 * Jon Grimm <jgrimm@us.ibm.com>
23 * Xingang Guo <xingang.guo@intel.com>
24 * Hui Huang <hui.huang@nokia.com>
25 * Sridhar Samudrala <sri@us.ibm.com>
26 * Ardelle Fan <ardelle.fan@intel.com>
29 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
31 #include <linux/slab.h>
32 #include <linux/types.h>
33 #include <linux/random.h>
34 #include <net/sctp/sctp.h>
35 #include <net/sctp/sm.h>
37 /* 1st Level Abstractions. */
39 /* Initialize a new transport from provided memory. */
40 static struct sctp_transport
*sctp_transport_init(struct net
*net
,
41 struct sctp_transport
*peer
,
42 const union sctp_addr
*addr
,
45 /* Copy in the address. */
46 peer
->af_specific
= sctp_get_af_specific(addr
->sa
.sa_family
);
47 memcpy(&peer
->ipaddr
, addr
, peer
->af_specific
->sockaddr_len
);
48 memset(&peer
->saddr
, 0, sizeof(union sctp_addr
));
50 peer
->sack_generation
= 0;
52 /* From 6.3.1 RTO Calculation:
54 * C1) Until an RTT measurement has been made for a packet sent to the
55 * given destination transport address, set RTO to the protocol
56 * parameter 'RTO.Initial'.
58 peer
->rto
= msecs_to_jiffies(net
->sctp
.rto_initial
);
60 peer
->last_time_heard
= 0;
61 peer
->last_time_ecne_reduced
= jiffies
;
63 peer
->param_flags
= SPP_HB_DISABLE
|
67 /* Initialize the default path max_retrans. */
68 peer
->pathmaxrxt
= net
->sctp
.max_retrans_path
;
69 peer
->pf_retrans
= net
->sctp
.pf_retrans
;
71 INIT_LIST_HEAD(&peer
->transmitted
);
72 INIT_LIST_HEAD(&peer
->send_ready
);
73 INIT_LIST_HEAD(&peer
->transports
);
75 timer_setup(&peer
->T3_rtx_timer
, sctp_generate_t3_rtx_event
, 0);
76 timer_setup(&peer
->hb_timer
, sctp_generate_heartbeat_event
, 0);
77 timer_setup(&peer
->reconf_timer
, sctp_generate_reconf_event
, 0);
78 timer_setup(&peer
->proto_unreach_timer
,
79 sctp_generate_proto_unreach_event
, 0);
81 /* Initialize the 64-bit random nonce sent with heartbeat. */
82 get_random_bytes(&peer
->hb_nonce
, sizeof(peer
->hb_nonce
));
84 refcount_set(&peer
->refcnt
, 1);
89 /* Allocate and initialize a new transport. */
90 struct sctp_transport
*sctp_transport_new(struct net
*net
,
91 const union sctp_addr
*addr
,
94 struct sctp_transport
*transport
;
96 transport
= kzalloc(sizeof(*transport
), gfp
);
100 if (!sctp_transport_init(net
, transport
, addr
, gfp
))
103 SCTP_DBG_OBJCNT_INC(transport
);
114 /* This transport is no longer needed. Free up if possible, or
115 * delay until it last reference count.
117 void sctp_transport_free(struct sctp_transport
*transport
)
119 /* Try to delete the heartbeat timer. */
120 if (del_timer(&transport
->hb_timer
))
121 sctp_transport_put(transport
);
123 /* Delete the T3_rtx timer if it's active.
124 * There is no point in not doing this now and letting
125 * structure hang around in memory since we know
126 * the transport is going away.
128 if (del_timer(&transport
->T3_rtx_timer
))
129 sctp_transport_put(transport
);
131 if (del_timer(&transport
->reconf_timer
))
132 sctp_transport_put(transport
);
134 /* Delete the ICMP proto unreachable timer if it's active. */
135 if (del_timer(&transport
->proto_unreach_timer
))
136 sctp_transport_put(transport
);
138 sctp_transport_put(transport
);
141 static void sctp_transport_destroy_rcu(struct rcu_head
*head
)
143 struct sctp_transport
*transport
;
145 transport
= container_of(head
, struct sctp_transport
, rcu
);
147 dst_release(transport
->dst
);
149 SCTP_DBG_OBJCNT_DEC(transport
);
152 /* Destroy the transport data structure.
153 * Assumes there are no more users of this structure.
155 static void sctp_transport_destroy(struct sctp_transport
*transport
)
157 if (unlikely(refcount_read(&transport
->refcnt
))) {
158 WARN(1, "Attempt to destroy undead transport %p!\n", transport
);
162 sctp_packet_free(&transport
->packet
);
165 sctp_association_put(transport
->asoc
);
167 call_rcu(&transport
->rcu
, sctp_transport_destroy_rcu
);
170 /* Start T3_rtx timer if it is not already running and update the heartbeat
171 * timer. This routine is called every time a DATA chunk is sent.
173 void sctp_transport_reset_t3_rtx(struct sctp_transport
*transport
)
175 /* RFC 2960 6.3.2 Retransmission Timer Rules
177 * R1) Every time a DATA chunk is sent to any address(including a
178 * retransmission), if the T3-rtx timer of that address is not running
179 * start it running so that it will expire after the RTO of that
183 if (!timer_pending(&transport
->T3_rtx_timer
))
184 if (!mod_timer(&transport
->T3_rtx_timer
,
185 jiffies
+ transport
->rto
))
186 sctp_transport_hold(transport
);
189 void sctp_transport_reset_hb_timer(struct sctp_transport
*transport
)
191 unsigned long expires
;
193 /* When a data chunk is sent, reset the heartbeat interval. */
194 expires
= jiffies
+ sctp_transport_timeout(transport
);
195 if ((time_before(transport
->hb_timer
.expires
, expires
) ||
196 !timer_pending(&transport
->hb_timer
)) &&
197 !mod_timer(&transport
->hb_timer
,
198 expires
+ prandom_u32_max(transport
->rto
)))
199 sctp_transport_hold(transport
);
202 void sctp_transport_reset_reconf_timer(struct sctp_transport
*transport
)
204 if (!timer_pending(&transport
->reconf_timer
))
205 if (!mod_timer(&transport
->reconf_timer
,
206 jiffies
+ transport
->rto
))
207 sctp_transport_hold(transport
);
210 /* This transport has been assigned to an association.
211 * Initialize fields from the association or from the sock itself.
212 * Register the reference count in the association.
214 void sctp_transport_set_owner(struct sctp_transport
*transport
,
215 struct sctp_association
*asoc
)
217 transport
->asoc
= asoc
;
218 sctp_association_hold(asoc
);
221 /* Initialize the pmtu of a transport. */
222 void sctp_transport_pmtu(struct sctp_transport
*transport
, struct sock
*sk
)
224 /* If we don't have a fresh route, look one up */
225 if (!transport
->dst
|| transport
->dst
->obsolete
) {
226 sctp_transport_dst_release(transport
);
227 transport
->af_specific
->get_dst(transport
, &transport
->saddr
,
231 if (transport
->param_flags
& SPP_PMTUD_DISABLE
) {
232 struct sctp_association
*asoc
= transport
->asoc
;
234 if (!transport
->pathmtu
&& asoc
&& asoc
->pathmtu
)
235 transport
->pathmtu
= asoc
->pathmtu
;
236 if (transport
->pathmtu
)
241 transport
->pathmtu
= sctp_dst_mtu(transport
->dst
);
243 transport
->pathmtu
= SCTP_DEFAULT_MAXSEGMENT
;
246 bool sctp_transport_update_pmtu(struct sctp_transport
*t
, u32 pmtu
)
248 struct dst_entry
*dst
= sctp_transport_dst_check(t
);
249 struct sock
*sk
= t
->asoc
->base
.sk
;
252 if (unlikely(pmtu
< SCTP_DEFAULT_MINSEGMENT
)) {
253 pr_warn_ratelimited("%s: Reported pmtu %d too low, using default minimum of %d\n",
254 __func__
, pmtu
, SCTP_DEFAULT_MINSEGMENT
);
255 /* Use default minimum segment instead */
256 pmtu
= SCTP_DEFAULT_MINSEGMENT
;
258 pmtu
= SCTP_TRUNC4(pmtu
);
261 struct sctp_pf
*pf
= sctp_get_pf_specific(dst
->ops
->family
);
262 union sctp_addr addr
;
264 pf
->af
->from_sk(&addr
, sk
);
265 pf
->to_sk_daddr(&t
->ipaddr
, sk
);
266 dst
->ops
->update_pmtu(dst
, sk
, NULL
, pmtu
, true);
267 pf
->to_sk_daddr(&addr
, sk
);
269 dst
= sctp_transport_dst_check(t
);
273 t
->af_specific
->get_dst(t
, &t
->saddr
, &t
->fl
, sk
);
278 /* Re-fetch, as under layers may have a higher minimum size */
279 pmtu
= sctp_dst_mtu(dst
);
280 change
= t
->pathmtu
!= pmtu
;
287 /* Caches the dst entry and source address for a transport's destination
290 void sctp_transport_route(struct sctp_transport
*transport
,
291 union sctp_addr
*saddr
, struct sctp_sock
*opt
)
293 struct sctp_association
*asoc
= transport
->asoc
;
294 struct sctp_af
*af
= transport
->af_specific
;
296 sctp_transport_dst_release(transport
);
297 af
->get_dst(transport
, saddr
, &transport
->fl
, sctp_opt2sk(opt
));
300 memcpy(&transport
->saddr
, saddr
, sizeof(union sctp_addr
));
302 af
->get_saddr(opt
, transport
, &transport
->fl
);
304 sctp_transport_pmtu(transport
, sctp_opt2sk(opt
));
306 /* Initialize sk->sk_rcv_saddr, if the transport is the
307 * association's active path for getsockname().
309 if (transport
->dst
&& asoc
&&
310 (!asoc
->peer
.primary_path
|| transport
== asoc
->peer
.active_path
))
311 opt
->pf
->to_sk_saddr(&transport
->saddr
, asoc
->base
.sk
);
314 /* Hold a reference to a transport. */
315 int sctp_transport_hold(struct sctp_transport
*transport
)
317 return refcount_inc_not_zero(&transport
->refcnt
);
320 /* Release a reference to a transport and clean up
321 * if there are no more references.
323 void sctp_transport_put(struct sctp_transport
*transport
)
325 if (refcount_dec_and_test(&transport
->refcnt
))
326 sctp_transport_destroy(transport
);
329 /* Update transport's RTO based on the newly calculated RTT. */
330 void sctp_transport_update_rto(struct sctp_transport
*tp
, __u32 rtt
)
332 if (unlikely(!tp
->rto_pending
))
333 /* We should not be doing any RTO updates unless rto_pending is set. */
334 pr_debug("%s: rto_pending not set on transport %p!\n", __func__
, tp
);
336 if (tp
->rttvar
|| tp
->srtt
) {
337 struct net
*net
= tp
->asoc
->base
.net
;
338 /* 6.3.1 C3) When a new RTT measurement R' is made, set
339 * RTTVAR <- (1 - RTO.Beta) * RTTVAR + RTO.Beta * |SRTT - R'|
340 * SRTT <- (1 - RTO.Alpha) * SRTT + RTO.Alpha * R'
343 /* Note: The above algorithm has been rewritten to
344 * express rto_beta and rto_alpha as inverse powers
346 * For example, assuming the default value of RTO.Alpha of
347 * 1/8, rto_alpha would be expressed as 3.
349 tp
->rttvar
= tp
->rttvar
- (tp
->rttvar
>> net
->sctp
.rto_beta
)
350 + (((__u32
)abs((__s64
)tp
->srtt
- (__s64
)rtt
)) >> net
->sctp
.rto_beta
);
351 tp
->srtt
= tp
->srtt
- (tp
->srtt
>> net
->sctp
.rto_alpha
)
352 + (rtt
>> net
->sctp
.rto_alpha
);
354 /* 6.3.1 C2) When the first RTT measurement R is made, set
355 * SRTT <- R, RTTVAR <- R/2.
358 tp
->rttvar
= rtt
>> 1;
361 /* 6.3.1 G1) Whenever RTTVAR is computed, if RTTVAR = 0, then
362 * adjust RTTVAR <- G, where G is the CLOCK GRANULARITY.
365 tp
->rttvar
= SCTP_CLOCK_GRANULARITY
;
367 /* 6.3.1 C3) After the computation, update RTO <- SRTT + 4 * RTTVAR. */
368 tp
->rto
= tp
->srtt
+ (tp
->rttvar
<< 2);
370 /* 6.3.1 C6) Whenever RTO is computed, if it is less than RTO.Min
371 * seconds then it is rounded up to RTO.Min seconds.
373 if (tp
->rto
< tp
->asoc
->rto_min
)
374 tp
->rto
= tp
->asoc
->rto_min
;
376 /* 6.3.1 C7) A maximum value may be placed on RTO provided it is
377 * at least RTO.max seconds.
379 if (tp
->rto
> tp
->asoc
->rto_max
)
380 tp
->rto
= tp
->asoc
->rto_max
;
382 sctp_max_rto(tp
->asoc
, tp
);
385 /* Reset rto_pending so that a new RTT measurement is started when a
386 * new data chunk is sent.
390 pr_debug("%s: transport:%p, rtt:%d, srtt:%d rttvar:%d, rto:%ld\n",
391 __func__
, tp
, rtt
, tp
->srtt
, tp
->rttvar
, tp
->rto
);
394 /* This routine updates the transport's cwnd and partial_bytes_acked
395 * parameters based on the bytes acked in the received SACK.
397 void sctp_transport_raise_cwnd(struct sctp_transport
*transport
,
398 __u32 sack_ctsn
, __u32 bytes_acked
)
400 struct sctp_association
*asoc
= transport
->asoc
;
401 __u32 cwnd
, ssthresh
, flight_size
, pba
, pmtu
;
403 cwnd
= transport
->cwnd
;
404 flight_size
= transport
->flight_size
;
406 /* See if we need to exit Fast Recovery first */
407 if (asoc
->fast_recovery
&&
408 TSN_lte(asoc
->fast_recovery_exit
, sack_ctsn
))
409 asoc
->fast_recovery
= 0;
411 ssthresh
= transport
->ssthresh
;
412 pba
= transport
->partial_bytes_acked
;
413 pmtu
= transport
->asoc
->pathmtu
;
415 if (cwnd
<= ssthresh
) {
417 * o When cwnd is less than or equal to ssthresh, an SCTP
418 * endpoint MUST use the slow-start algorithm to increase
419 * cwnd only if the current congestion window is being fully
420 * utilized, an incoming SACK advances the Cumulative TSN
421 * Ack Point, and the data sender is not in Fast Recovery.
422 * Only when these three conditions are met can the cwnd be
423 * increased; otherwise, the cwnd MUST not be increased.
424 * If these conditions are met, then cwnd MUST be increased
425 * by, at most, the lesser of 1) the total size of the
426 * previously outstanding DATA chunk(s) acknowledged, and
427 * 2) the destination's path MTU. This upper bound protects
428 * against the ACK-Splitting attack outlined in [SAVAGE99].
430 if (asoc
->fast_recovery
)
433 /* The appropriate cwnd increase algorithm is performed
434 * if, and only if the congestion window is being fully
435 * utilized. Note that RFC4960 Errata 3.22 removed the
436 * other condition on ctsn moving.
438 if (flight_size
< cwnd
)
441 if (bytes_acked
> pmtu
)
446 pr_debug("%s: slow start: transport:%p, bytes_acked:%d, "
447 "cwnd:%d, ssthresh:%d, flight_size:%d, pba:%d\n",
448 __func__
, transport
, bytes_acked
, cwnd
, ssthresh
,
451 /* RFC 2960 7.2.2 Whenever cwnd is greater than ssthresh,
452 * upon each SACK arrival, increase partial_bytes_acked
453 * by the total number of bytes of all new chunks
454 * acknowledged in that SACK including chunks
455 * acknowledged by the new Cumulative TSN Ack and by Gap
456 * Ack Blocks. (updated by RFC4960 Errata 3.22)
458 * When partial_bytes_acked is greater than cwnd and
459 * before the arrival of the SACK the sender had less
460 * bytes of data outstanding than cwnd (i.e., before
461 * arrival of the SACK, flightsize was less than cwnd),
462 * reset partial_bytes_acked to cwnd. (RFC 4960 Errata
465 * When partial_bytes_acked is equal to or greater than
466 * cwnd and before the arrival of the SACK the sender
467 * had cwnd or more bytes of data outstanding (i.e.,
468 * before arrival of the SACK, flightsize was greater
469 * than or equal to cwnd), partial_bytes_acked is reset
470 * to (partial_bytes_acked - cwnd). Next, cwnd is
471 * increased by MTU. (RFC 4960 Errata 3.12)
474 if (pba
> cwnd
&& flight_size
< cwnd
)
476 if (pba
>= cwnd
&& flight_size
>= cwnd
) {
481 pr_debug("%s: congestion avoidance: transport:%p, "
482 "bytes_acked:%d, cwnd:%d, ssthresh:%d, "
483 "flight_size:%d, pba:%d\n", __func__
,
484 transport
, bytes_acked
, cwnd
, ssthresh
,
488 transport
->cwnd
= cwnd
;
489 transport
->partial_bytes_acked
= pba
;
492 /* This routine is used to lower the transport's cwnd when congestion is
495 void sctp_transport_lower_cwnd(struct sctp_transport
*transport
,
496 enum sctp_lower_cwnd reason
)
498 struct sctp_association
*asoc
= transport
->asoc
;
501 case SCTP_LOWER_CWND_T3_RTX
:
502 /* RFC 2960 Section 7.2.3, sctpimpguide
503 * When the T3-rtx timer expires on an address, SCTP should
504 * perform slow start by:
505 * ssthresh = max(cwnd/2, 4*MTU)
507 * partial_bytes_acked = 0
509 transport
->ssthresh
= max(transport
->cwnd
/2,
511 transport
->cwnd
= asoc
->pathmtu
;
513 /* T3-rtx also clears fast recovery */
514 asoc
->fast_recovery
= 0;
517 case SCTP_LOWER_CWND_FAST_RTX
:
518 /* RFC 2960 7.2.4 Adjust the ssthresh and cwnd of the
519 * destination address(es) to which the missing DATA chunks
520 * were last sent, according to the formula described in
523 * RFC 2960 7.2.3, sctpimpguide Upon detection of packet
524 * losses from SACK (see Section 7.2.4), An endpoint
525 * should do the following:
526 * ssthresh = max(cwnd/2, 4*MTU)
528 * partial_bytes_acked = 0
530 if (asoc
->fast_recovery
)
533 /* Mark Fast recovery */
534 asoc
->fast_recovery
= 1;
535 asoc
->fast_recovery_exit
= asoc
->next_tsn
- 1;
537 transport
->ssthresh
= max(transport
->cwnd
/2,
539 transport
->cwnd
= transport
->ssthresh
;
542 case SCTP_LOWER_CWND_ECNE
:
543 /* RFC 2481 Section 6.1.2.
544 * If the sender receives an ECN-Echo ACK packet
545 * then the sender knows that congestion was encountered in the
546 * network on the path from the sender to the receiver. The
547 * indication of congestion should be treated just as a
548 * congestion loss in non-ECN Capable TCP. That is, the TCP
549 * source halves the congestion window "cwnd" and reduces the
550 * slow start threshold "ssthresh".
551 * A critical condition is that TCP does not react to
552 * congestion indications more than once every window of
553 * data (or more loosely more than once every round-trip time).
555 if (time_after(jiffies
, transport
->last_time_ecne_reduced
+
557 transport
->ssthresh
= max(transport
->cwnd
/2,
559 transport
->cwnd
= transport
->ssthresh
;
560 transport
->last_time_ecne_reduced
= jiffies
;
564 case SCTP_LOWER_CWND_INACTIVE
:
565 /* RFC 2960 Section 7.2.1, sctpimpguide
566 * When the endpoint does not transmit data on a given
567 * transport address, the cwnd of the transport address
568 * should be adjusted to max(cwnd/2, 4*MTU) per RTO.
569 * NOTE: Although the draft recommends that this check needs
570 * to be done every RTO interval, we do it every hearbeat
573 transport
->cwnd
= max(transport
->cwnd
/2,
575 /* RFC 4960 Errata 3.27.2: also adjust sshthresh */
576 transport
->ssthresh
= transport
->cwnd
;
580 transport
->partial_bytes_acked
= 0;
582 pr_debug("%s: transport:%p, reason:%d, cwnd:%d, ssthresh:%d\n",
583 __func__
, transport
, reason
, transport
->cwnd
,
584 transport
->ssthresh
);
587 /* Apply Max.Burst limit to the congestion window:
588 * sctpimpguide-05 2.14.2
589 * D) When the time comes for the sender to
590 * transmit new DATA chunks, the protocol parameter Max.Burst MUST
591 * first be applied to limit how many new DATA chunks may be sent.
592 * The limit is applied by adjusting cwnd as follows:
593 * if ((flightsize+ Max.Burst * MTU) < cwnd)
594 * cwnd = flightsize + Max.Burst * MTU
597 void sctp_transport_burst_limited(struct sctp_transport
*t
)
599 struct sctp_association
*asoc
= t
->asoc
;
600 u32 old_cwnd
= t
->cwnd
;
603 if (t
->burst_limited
|| asoc
->max_burst
== 0)
606 max_burst_bytes
= t
->flight_size
+ (asoc
->max_burst
* asoc
->pathmtu
);
607 if (max_burst_bytes
< old_cwnd
) {
608 t
->cwnd
= max_burst_bytes
;
609 t
->burst_limited
= old_cwnd
;
613 /* Restore the old cwnd congestion window, after the burst had it's
616 void sctp_transport_burst_reset(struct sctp_transport
*t
)
618 if (t
->burst_limited
) {
619 t
->cwnd
= t
->burst_limited
;
620 t
->burst_limited
= 0;
624 /* What is the next timeout value for this transport? */
625 unsigned long sctp_transport_timeout(struct sctp_transport
*trans
)
627 /* RTO + timer slack +/- 50% of RTO */
628 unsigned long timeout
= trans
->rto
>> 1;
630 if (trans
->state
!= SCTP_UNCONFIRMED
&&
631 trans
->state
!= SCTP_PF
)
632 timeout
+= trans
->hbinterval
;
634 return max_t(unsigned long, timeout
, HZ
/ 5);
637 /* Reset transport variables to their initial values */
638 void sctp_transport_reset(struct sctp_transport
*t
)
640 struct sctp_association
*asoc
= t
->asoc
;
642 /* RFC 2960 (bis), Section 5.2.4
643 * All the congestion control parameters (e.g., cwnd, ssthresh)
644 * related to this peer MUST be reset to their initial values
645 * (see Section 6.2.1)
647 t
->cwnd
= min(4*asoc
->pathmtu
, max_t(__u32
, 2*asoc
->pathmtu
, 4380));
648 t
->burst_limited
= 0;
649 t
->ssthresh
= asoc
->peer
.i
.a_rwnd
;
650 t
->rto
= asoc
->rto_initial
;
651 sctp_max_rto(asoc
, t
);
656 /* Reset these additional variables so that we have a clean slate. */
657 t
->partial_bytes_acked
= 0;
663 /* Initialize the state information for SFR-CACC */
664 t
->cacc
.changeover_active
= 0;
665 t
->cacc
.cycling_changeover
= 0;
666 t
->cacc
.next_tsn_at_change
= 0;
667 t
->cacc
.cacc_saw_newack
= 0;
670 /* Schedule retransmission on the given transport */
671 void sctp_transport_immediate_rtx(struct sctp_transport
*t
)
673 /* Stop pending T3_rtx_timer */
674 if (del_timer(&t
->T3_rtx_timer
))
675 sctp_transport_put(t
);
677 sctp_retransmit(&t
->asoc
->outqueue
, t
, SCTP_RTXR_T3_RTX
);
678 if (!timer_pending(&t
->T3_rtx_timer
)) {
679 if (!mod_timer(&t
->T3_rtx_timer
, jiffies
+ t
->rto
))
680 sctp_transport_hold(t
);
685 void sctp_transport_dst_release(struct sctp_transport
*t
)
689 t
->dst_pending_confirm
= 0;
692 /* Schedule neighbour confirm */
693 void sctp_transport_dst_confirm(struct sctp_transport
*t
)
695 t
->dst_pending_confirm
= 1;