1 /* SCTP kernel implementation
2 * (C) Copyright IBM Corp. 2001, 2004
3 * Copyright (c) 1999 Cisco, Inc.
4 * Copyright (c) 1999-2001 Motorola, Inc.
6 * This file is part of the SCTP kernel implementation
8 * These functions work with the state functions in sctp_sm_statefuns.c
9 * to implement that state operations. These functions implement the
10 * steps which require modifying existing data structures.
12 * This SCTP implementation is free software;
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)
18 * This SCTP implementation is distributed in the hope that it
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.
24 * You should have received a copy of the GNU General Public License
25 * along with GNU CC; see the file COPYING. If not, write to
26 * the Free Software Foundation, 59 Temple Place - Suite 330,
27 * Boston, MA 02111-1307, USA.
29 * Please send any bug reports or fixes you make to the
31 * lksctp developers <lksctp-developers@lists.sourceforge.net>
33 * Or submit a bug report through the following website:
34 * http://www.sf.net/projects/lksctp
36 * Written or modified by:
37 * La Monte H.P. Yarroll <piggy@acm.org>
38 * Karl Knutson <karl@athena.chicago.il.us>
39 * Jon Grimm <jgrimm@austin.ibm.com>
40 * Hui Huang <hui.huang@nokia.com>
41 * Dajiang Zhang <dajiang.zhang@nokia.com>
42 * Daisy Chang <daisyc@us.ibm.com>
43 * Sridhar Samudrala <sri@us.ibm.com>
44 * Ardelle Fan <ardelle.fan@intel.com>
46 * Any bugs reported given to us we will try to fix... any fixes shared will
47 * be incorporated into the next SCTP release.
50 #include <linux/skbuff.h>
51 #include <linux/types.h>
52 #include <linux/socket.h>
55 #include <net/sctp/sctp.h>
56 #include <net/sctp/sm.h>
58 static int sctp_cmd_interpreter(sctp_event_t event_type
,
59 sctp_subtype_t subtype
,
61 struct sctp_endpoint
*ep
,
62 struct sctp_association
*asoc
,
64 sctp_disposition_t status
,
65 sctp_cmd_seq_t
*commands
,
67 static int sctp_side_effects(sctp_event_t event_type
, sctp_subtype_t subtype
,
69 struct sctp_endpoint
*ep
,
70 struct sctp_association
*asoc
,
72 sctp_disposition_t status
,
73 sctp_cmd_seq_t
*commands
,
76 /********************************************************************
78 ********************************************************************/
80 /* A helper function for delayed processing of INET ECN CE bit. */
81 static void sctp_do_ecn_ce_work(struct sctp_association
*asoc
,
84 /* Save the TSN away for comparison when we receive CWR */
86 asoc
->last_ecne_tsn
= lowest_tsn
;
90 /* Helper function for delayed processing of SCTP ECNE chunk. */
91 /* RFC 2960 Appendix A
93 * RFC 2481 details a specific bit for a sender to send in
94 * the header of its next outbound TCP segment to indicate to
95 * its peer that it has reduced its congestion window. This
96 * is termed the CWR bit. For SCTP the same indication is made
97 * by including the CWR chunk. This chunk contains one data
98 * element, i.e. the TSN number that was sent in the ECNE chunk.
99 * This element represents the lowest TSN number in the datagram
100 * that was originally marked with the CE bit.
102 static struct sctp_chunk
*sctp_do_ecn_ecne_work(struct sctp_association
*asoc
,
104 struct sctp_chunk
*chunk
)
106 struct sctp_chunk
*repl
;
108 /* Our previously transmitted packet ran into some congestion
109 * so we should take action by reducing cwnd and ssthresh
110 * and then ACK our peer that we we've done so by
114 /* First, try to determine if we want to actually lower
115 * our cwnd variables. Only lower them if the ECNE looks more
116 * recent than the last response.
118 if (TSN_lt(asoc
->last_cwr_tsn
, lowest_tsn
)) {
119 struct sctp_transport
*transport
;
121 /* Find which transport's congestion variables
122 * need to be adjusted.
124 transport
= sctp_assoc_lookup_tsn(asoc
, lowest_tsn
);
126 /* Update the congestion variables. */
128 sctp_transport_lower_cwnd(transport
,
129 SCTP_LOWER_CWND_ECNE
);
130 asoc
->last_cwr_tsn
= lowest_tsn
;
133 /* Always try to quiet the other end. In case of lost CWR,
134 * resend last_cwr_tsn.
136 repl
= sctp_make_cwr(asoc
, asoc
->last_cwr_tsn
, chunk
);
138 /* If we run out of memory, it will look like a lost CWR. We'll
139 * get back in sync eventually.
144 /* Helper function to do delayed processing of ECN CWR chunk. */
145 static void sctp_do_ecn_cwr_work(struct sctp_association
*asoc
,
148 /* Turn off ECNE getting auto-prepended to every outgoing
154 /* Generate SACK if necessary. We call this at the end of a packet. */
155 static int sctp_gen_sack(struct sctp_association
*asoc
, int force
,
156 sctp_cmd_seq_t
*commands
)
158 __u32 ctsn
, max_tsn_seen
;
159 struct sctp_chunk
*sack
;
160 struct sctp_transport
*trans
= asoc
->peer
.last_data_from
;
164 (!trans
&& (asoc
->param_flags
& SPP_SACKDELAY_DISABLE
)) ||
165 (trans
&& (trans
->param_flags
& SPP_SACKDELAY_DISABLE
)))
166 asoc
->peer
.sack_needed
= 1;
168 ctsn
= sctp_tsnmap_get_ctsn(&asoc
->peer
.tsn_map
);
169 max_tsn_seen
= sctp_tsnmap_get_max_tsn_seen(&asoc
->peer
.tsn_map
);
171 /* From 12.2 Parameters necessary per association (i.e. the TCB):
173 * Ack State : This flag indicates if the next received packet
174 * : is to be responded to with a SACK. ...
175 * : When DATA chunks are out of order, SACK's
176 * : are not delayed (see Section 6).
178 * [This is actually not mentioned in Section 6, but we
179 * implement it here anyway. --piggy]
181 if (max_tsn_seen
!= ctsn
)
182 asoc
->peer
.sack_needed
= 1;
184 /* From 6.2 Acknowledgement on Reception of DATA Chunks:
186 * Section 4.2 of [RFC2581] SHOULD be followed. Specifically,
187 * an acknowledgement SHOULD be generated for at least every
188 * second packet (not every second DATA chunk) received, and
189 * SHOULD be generated within 200 ms of the arrival of any
190 * unacknowledged DATA chunk. ...
192 if (!asoc
->peer
.sack_needed
) {
193 asoc
->peer
.sack_cnt
++;
195 /* Set the SACK delay timeout based on the
196 * SACK delay for the last transport
197 * data was received from, or the default
198 * for the association.
201 /* We will need a SACK for the next packet. */
202 if (asoc
->peer
.sack_cnt
>= trans
->sackfreq
- 1)
203 asoc
->peer
.sack_needed
= 1;
205 asoc
->timeouts
[SCTP_EVENT_TIMEOUT_SACK
] =
208 /* We will need a SACK for the next packet. */
209 if (asoc
->peer
.sack_cnt
>= asoc
->sackfreq
- 1)
210 asoc
->peer
.sack_needed
= 1;
212 asoc
->timeouts
[SCTP_EVENT_TIMEOUT_SACK
] =
216 /* Restart the SACK timer. */
217 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_RESTART
,
218 SCTP_TO(SCTP_EVENT_TIMEOUT_SACK
));
220 if (asoc
->a_rwnd
> asoc
->rwnd
)
221 asoc
->a_rwnd
= asoc
->rwnd
;
222 sack
= sctp_make_sack(asoc
);
226 asoc
->peer
.sack_needed
= 0;
227 asoc
->peer
.sack_cnt
= 0;
229 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
, SCTP_CHUNK(sack
));
231 /* Stop the SACK timer. */
232 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_STOP
,
233 SCTP_TO(SCTP_EVENT_TIMEOUT_SACK
));
242 /* When the T3-RTX timer expires, it calls this function to create the
243 * relevant state machine event.
245 void sctp_generate_t3_rtx_event(unsigned long peer
)
248 struct sctp_transport
*transport
= (struct sctp_transport
*) peer
;
249 struct sctp_association
*asoc
= transport
->asoc
;
251 /* Check whether a task is in the sock. */
253 sctp_bh_lock_sock(asoc
->base
.sk
);
254 if (sock_owned_by_user(asoc
->base
.sk
)) {
255 SCTP_DEBUG_PRINTK("%s:Sock is busy.\n", __func__
);
257 /* Try again later. */
258 if (!mod_timer(&transport
->T3_rtx_timer
, jiffies
+ (HZ
/20)))
259 sctp_transport_hold(transport
);
263 /* Is this transport really dead and just waiting around for
264 * the timer to let go of the reference?
269 /* Run through the state machine. */
270 error
= sctp_do_sm(SCTP_EVENT_T_TIMEOUT
,
271 SCTP_ST_TIMEOUT(SCTP_EVENT_TIMEOUT_T3_RTX
),
274 transport
, GFP_ATOMIC
);
277 asoc
->base
.sk
->sk_err
= -error
;
280 sctp_bh_unlock_sock(asoc
->base
.sk
);
281 sctp_transport_put(transport
);
284 /* This is a sa interface for producing timeout events. It works
285 * for timeouts which use the association as their parameter.
287 static void sctp_generate_timeout_event(struct sctp_association
*asoc
,
288 sctp_event_timeout_t timeout_type
)
292 sctp_bh_lock_sock(asoc
->base
.sk
);
293 if (sock_owned_by_user(asoc
->base
.sk
)) {
294 SCTP_DEBUG_PRINTK("%s:Sock is busy: timer %d\n",
298 /* Try again later. */
299 if (!mod_timer(&asoc
->timers
[timeout_type
], jiffies
+ (HZ
/20)))
300 sctp_association_hold(asoc
);
304 /* Is this association really dead and just waiting around for
305 * the timer to let go of the reference?
310 /* Run through the state machine. */
311 error
= sctp_do_sm(SCTP_EVENT_T_TIMEOUT
,
312 SCTP_ST_TIMEOUT(timeout_type
),
313 asoc
->state
, asoc
->ep
, asoc
,
314 (void *)timeout_type
, GFP_ATOMIC
);
317 asoc
->base
.sk
->sk_err
= -error
;
320 sctp_bh_unlock_sock(asoc
->base
.sk
);
321 sctp_association_put(asoc
);
324 static void sctp_generate_t1_cookie_event(unsigned long data
)
326 struct sctp_association
*asoc
= (struct sctp_association
*) data
;
327 sctp_generate_timeout_event(asoc
, SCTP_EVENT_TIMEOUT_T1_COOKIE
);
330 static void sctp_generate_t1_init_event(unsigned long data
)
332 struct sctp_association
*asoc
= (struct sctp_association
*) data
;
333 sctp_generate_timeout_event(asoc
, SCTP_EVENT_TIMEOUT_T1_INIT
);
336 static void sctp_generate_t2_shutdown_event(unsigned long data
)
338 struct sctp_association
*asoc
= (struct sctp_association
*) data
;
339 sctp_generate_timeout_event(asoc
, SCTP_EVENT_TIMEOUT_T2_SHUTDOWN
);
342 static void sctp_generate_t4_rto_event(unsigned long data
)
344 struct sctp_association
*asoc
= (struct sctp_association
*) data
;
345 sctp_generate_timeout_event(asoc
, SCTP_EVENT_TIMEOUT_T4_RTO
);
348 static void sctp_generate_t5_shutdown_guard_event(unsigned long data
)
350 struct sctp_association
*asoc
= (struct sctp_association
*)data
;
351 sctp_generate_timeout_event(asoc
,
352 SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD
);
354 } /* sctp_generate_t5_shutdown_guard_event() */
356 static void sctp_generate_autoclose_event(unsigned long data
)
358 struct sctp_association
*asoc
= (struct sctp_association
*) data
;
359 sctp_generate_timeout_event(asoc
, SCTP_EVENT_TIMEOUT_AUTOCLOSE
);
362 /* Generate a heart beat event. If the sock is busy, reschedule. Make
363 * sure that the transport is still valid.
365 void sctp_generate_heartbeat_event(unsigned long data
)
368 struct sctp_transport
*transport
= (struct sctp_transport
*) data
;
369 struct sctp_association
*asoc
= transport
->asoc
;
371 sctp_bh_lock_sock(asoc
->base
.sk
);
372 if (sock_owned_by_user(asoc
->base
.sk
)) {
373 SCTP_DEBUG_PRINTK("%s:Sock is busy.\n", __func__
);
375 /* Try again later. */
376 if (!mod_timer(&transport
->hb_timer
, jiffies
+ (HZ
/20)))
377 sctp_transport_hold(transport
);
381 /* Is this structure just waiting around for us to actually
387 error
= sctp_do_sm(SCTP_EVENT_T_TIMEOUT
,
388 SCTP_ST_TIMEOUT(SCTP_EVENT_TIMEOUT_HEARTBEAT
),
389 asoc
->state
, asoc
->ep
, asoc
,
390 transport
, GFP_ATOMIC
);
393 asoc
->base
.sk
->sk_err
= -error
;
396 sctp_bh_unlock_sock(asoc
->base
.sk
);
397 sctp_transport_put(transport
);
400 /* Inject a SACK Timeout event into the state machine. */
401 static void sctp_generate_sack_event(unsigned long data
)
403 struct sctp_association
*asoc
= (struct sctp_association
*) data
;
404 sctp_generate_timeout_event(asoc
, SCTP_EVENT_TIMEOUT_SACK
);
407 sctp_timer_event_t
*sctp_timer_events
[SCTP_NUM_TIMEOUT_TYPES
] = {
409 sctp_generate_t1_cookie_event
,
410 sctp_generate_t1_init_event
,
411 sctp_generate_t2_shutdown_event
,
413 sctp_generate_t4_rto_event
,
414 sctp_generate_t5_shutdown_guard_event
,
416 sctp_generate_sack_event
,
417 sctp_generate_autoclose_event
,
421 /* RFC 2960 8.2 Path Failure Detection
423 * When its peer endpoint is multi-homed, an endpoint should keep a
424 * error counter for each of the destination transport addresses of the
427 * Each time the T3-rtx timer expires on any address, or when a
428 * HEARTBEAT sent to an idle address is not acknowledged within a RTO,
429 * the error counter of that destination address will be incremented.
430 * When the value in the error counter exceeds the protocol parameter
431 * 'Path.Max.Retrans' of that destination address, the endpoint should
432 * mark the destination transport address as inactive, and a
433 * notification SHOULD be sent to the upper layer.
436 static void sctp_do_8_2_transport_strike(struct sctp_association
*asoc
,
437 struct sctp_transport
*transport
,
440 /* The check for association's overall error counter exceeding the
441 * threshold is done in the state function.
443 /* We are here due to a timer expiration. If the timer was
444 * not a HEARTBEAT, then normal error tracking is done.
445 * If the timer was a heartbeat, we only increment error counts
446 * when we already have an outstanding HEARTBEAT that has not
448 * Additionaly, some tranport states inhibit error increments.
451 asoc
->overall_error_count
++;
452 if (transport
->state
!= SCTP_INACTIVE
)
453 transport
->error_count
++;
454 } else if (transport
->hb_sent
) {
455 if (transport
->state
!= SCTP_UNCONFIRMED
)
456 asoc
->overall_error_count
++;
457 if (transport
->state
!= SCTP_INACTIVE
)
458 transport
->error_count
++;
461 if (transport
->state
!= SCTP_INACTIVE
&&
462 (transport
->error_count
> transport
->pathmaxrxt
)) {
463 SCTP_DEBUG_PRINTK_IPADDR("transport_strike:association %p",
464 " transport IP: port:%d failed.\n",
466 (&transport
->ipaddr
),
467 ntohs(transport
->ipaddr
.v4
.sin_port
));
468 sctp_assoc_control_transport(asoc
, transport
,
470 SCTP_FAILED_THRESHOLD
);
473 /* E2) For the destination address for which the timer
474 * expires, set RTO <- RTO * 2 ("back off the timer"). The
475 * maximum value discussed in rule C7 above (RTO.max) may be
476 * used to provide an upper bound to this doubling operation.
478 * Special Case: the first HB doesn't trigger exponential backoff.
479 * The first unacknowleged HB triggers it. We do this with a flag
480 * that indicates that we have an outstanding HB.
482 if (!is_hb
|| transport
->hb_sent
) {
483 transport
->rto
= min((transport
->rto
* 2), transport
->asoc
->rto_max
);
487 /* Worker routine to handle INIT command failure. */
488 static void sctp_cmd_init_failed(sctp_cmd_seq_t
*commands
,
489 struct sctp_association
*asoc
,
492 struct sctp_ulpevent
*event
;
494 event
= sctp_ulpevent_make_assoc_change(asoc
,0, SCTP_CANT_STR_ASSOC
,
495 (__u16
)error
, 0, 0, NULL
,
499 sctp_add_cmd_sf(commands
, SCTP_CMD_EVENT_ULP
,
500 SCTP_ULPEVENT(event
));
502 sctp_add_cmd_sf(commands
, SCTP_CMD_NEW_STATE
,
503 SCTP_STATE(SCTP_STATE_CLOSED
));
505 /* SEND_FAILED sent later when cleaning up the association. */
506 asoc
->outqueue
.error
= error
;
507 sctp_add_cmd_sf(commands
, SCTP_CMD_DELETE_TCB
, SCTP_NULL());
510 /* Worker routine to handle SCTP_CMD_ASSOC_FAILED. */
511 static void sctp_cmd_assoc_failed(sctp_cmd_seq_t
*commands
,
512 struct sctp_association
*asoc
,
513 sctp_event_t event_type
,
514 sctp_subtype_t subtype
,
515 struct sctp_chunk
*chunk
,
518 struct sctp_ulpevent
*event
;
520 /* Cancel any partial delivery in progress. */
521 sctp_ulpq_abort_pd(&asoc
->ulpq
, GFP_ATOMIC
);
523 if (event_type
== SCTP_EVENT_T_CHUNK
&& subtype
.chunk
== SCTP_CID_ABORT
)
524 event
= sctp_ulpevent_make_assoc_change(asoc
, 0, SCTP_COMM_LOST
,
525 (__u16
)error
, 0, 0, chunk
,
528 event
= sctp_ulpevent_make_assoc_change(asoc
, 0, SCTP_COMM_LOST
,
529 (__u16
)error
, 0, 0, NULL
,
532 sctp_add_cmd_sf(commands
, SCTP_CMD_EVENT_ULP
,
533 SCTP_ULPEVENT(event
));
535 sctp_add_cmd_sf(commands
, SCTP_CMD_NEW_STATE
,
536 SCTP_STATE(SCTP_STATE_CLOSED
));
538 /* SEND_FAILED sent later when cleaning up the association. */
539 asoc
->outqueue
.error
= error
;
540 sctp_add_cmd_sf(commands
, SCTP_CMD_DELETE_TCB
, SCTP_NULL());
543 /* Process an init chunk (may be real INIT/INIT-ACK or an embedded INIT
544 * inside the cookie. In reality, this is only used for INIT-ACK processing
545 * since all other cases use "temporary" associations and can do all
546 * their work in statefuns directly.
548 static int sctp_cmd_process_init(sctp_cmd_seq_t
*commands
,
549 struct sctp_association
*asoc
,
550 struct sctp_chunk
*chunk
,
551 sctp_init_chunk_t
*peer_init
,
556 /* We only process the init as a sideeffect in a single
557 * case. This is when we process the INIT-ACK. If we
558 * fail during INIT processing (due to malloc problems),
559 * just return the error and stop processing the stack.
561 if (!sctp_process_init(asoc
, chunk
->chunk_hdr
->type
,
562 sctp_source(chunk
), peer_init
, gfp
))
570 /* Helper function to break out starting up of heartbeat timers. */
571 static void sctp_cmd_hb_timers_start(sctp_cmd_seq_t
*cmds
,
572 struct sctp_association
*asoc
)
574 struct sctp_transport
*t
;
576 /* Start a heartbeat timer for each transport on the association.
577 * hold a reference on the transport to make sure none of
578 * the needed data structures go away.
580 list_for_each_entry(t
, &asoc
->peer
.transport_addr_list
, transports
) {
582 if (!mod_timer(&t
->hb_timer
, sctp_transport_timeout(t
)))
583 sctp_transport_hold(t
);
587 static void sctp_cmd_hb_timers_stop(sctp_cmd_seq_t
*cmds
,
588 struct sctp_association
*asoc
)
590 struct sctp_transport
*t
;
592 /* Stop all heartbeat timers. */
594 list_for_each_entry(t
, &asoc
->peer
.transport_addr_list
,
596 if (del_timer(&t
->hb_timer
))
597 sctp_transport_put(t
);
601 /* Helper function to stop any pending T3-RTX timers */
602 static void sctp_cmd_t3_rtx_timers_stop(sctp_cmd_seq_t
*cmds
,
603 struct sctp_association
*asoc
)
605 struct sctp_transport
*t
;
607 list_for_each_entry(t
, &asoc
->peer
.transport_addr_list
,
609 if (timer_pending(&t
->T3_rtx_timer
) &&
610 del_timer(&t
->T3_rtx_timer
)) {
611 sctp_transport_put(t
);
617 /* Helper function to update the heartbeat timer. */
618 static void sctp_cmd_hb_timer_update(sctp_cmd_seq_t
*cmds
,
619 struct sctp_transport
*t
)
621 /* Update the heartbeat timer. */
622 if (!mod_timer(&t
->hb_timer
, sctp_transport_timeout(t
)))
623 sctp_transport_hold(t
);
626 /* Helper function to handle the reception of an HEARTBEAT ACK. */
627 static void sctp_cmd_transport_on(sctp_cmd_seq_t
*cmds
,
628 struct sctp_association
*asoc
,
629 struct sctp_transport
*t
,
630 struct sctp_chunk
*chunk
)
632 sctp_sender_hb_info_t
*hbinfo
;
634 /* 8.3 Upon the receipt of the HEARTBEAT ACK, the sender of the
635 * HEARTBEAT should clear the error counter of the destination
636 * transport address to which the HEARTBEAT was sent.
637 * The association's overall error count is also cleared.
640 t
->asoc
->overall_error_count
= 0;
642 /* Clear the hb_sent flag to signal that we had a good
647 /* Mark the destination transport address as active if it is not so
650 if ((t
->state
== SCTP_INACTIVE
) || (t
->state
== SCTP_UNCONFIRMED
))
651 sctp_assoc_control_transport(asoc
, t
, SCTP_TRANSPORT_UP
,
652 SCTP_HEARTBEAT_SUCCESS
);
654 /* The receiver of the HEARTBEAT ACK should also perform an
655 * RTT measurement for that destination transport address
656 * using the time value carried in the HEARTBEAT ACK chunk.
657 * If the transport's rto_pending variable has been cleared,
658 * it was most likely due to a retransmit. However, we want
659 * to re-enable it to properly update the rto.
661 if (t
->rto_pending
== 0)
664 hbinfo
= (sctp_sender_hb_info_t
*) chunk
->skb
->data
;
665 sctp_transport_update_rto(t
, (jiffies
- hbinfo
->sent_at
));
667 /* Update the heartbeat timer. */
668 if (!mod_timer(&t
->hb_timer
, sctp_transport_timeout(t
)))
669 sctp_transport_hold(t
);
673 /* Helper function to process the process SACK command. */
674 static int sctp_cmd_process_sack(sctp_cmd_seq_t
*cmds
,
675 struct sctp_association
*asoc
,
676 struct sctp_sackhdr
*sackh
)
680 if (sctp_outq_sack(&asoc
->outqueue
, sackh
)) {
681 /* There are no more TSNs awaiting SACK. */
682 err
= sctp_do_sm(SCTP_EVENT_T_OTHER
,
683 SCTP_ST_OTHER(SCTP_EVENT_NO_PENDING_TSN
),
684 asoc
->state
, asoc
->ep
, asoc
, NULL
,
691 /* Helper function to set the timeout value for T2-SHUTDOWN timer and to set
692 * the transport for a shutdown chunk.
694 static void sctp_cmd_setup_t2(sctp_cmd_seq_t
*cmds
,
695 struct sctp_association
*asoc
,
696 struct sctp_chunk
*chunk
)
698 struct sctp_transport
*t
;
700 t
= sctp_assoc_choose_alter_transport(asoc
,
701 asoc
->shutdown_last_sent_to
);
702 asoc
->shutdown_last_sent_to
= t
;
703 asoc
->timeouts
[SCTP_EVENT_TIMEOUT_T2_SHUTDOWN
] = t
->rto
;
704 chunk
->transport
= t
;
707 /* Helper function to change the state of an association. */
708 static void sctp_cmd_new_state(sctp_cmd_seq_t
*cmds
,
709 struct sctp_association
*asoc
,
712 struct sock
*sk
= asoc
->base
.sk
;
716 SCTP_DEBUG_PRINTK("sctp_cmd_new_state: asoc %p[%s]\n",
717 asoc
, sctp_state_tbl
[state
]);
719 if (sctp_style(sk
, TCP
)) {
720 /* Change the sk->sk_state of a TCP-style socket that has
721 * sucessfully completed a connect() call.
723 if (sctp_state(asoc
, ESTABLISHED
) && sctp_sstate(sk
, CLOSED
))
724 sk
->sk_state
= SCTP_SS_ESTABLISHED
;
726 /* Set the RCV_SHUTDOWN flag when a SHUTDOWN is received. */
727 if (sctp_state(asoc
, SHUTDOWN_RECEIVED
) &&
728 sctp_sstate(sk
, ESTABLISHED
))
729 sk
->sk_shutdown
|= RCV_SHUTDOWN
;
732 if (sctp_state(asoc
, COOKIE_WAIT
)) {
733 /* Reset init timeouts since they may have been
734 * increased due to timer expirations.
736 asoc
->timeouts
[SCTP_EVENT_TIMEOUT_T1_INIT
] =
738 asoc
->timeouts
[SCTP_EVENT_TIMEOUT_T1_COOKIE
] =
742 if (sctp_state(asoc
, ESTABLISHED
) ||
743 sctp_state(asoc
, CLOSED
) ||
744 sctp_state(asoc
, SHUTDOWN_RECEIVED
)) {
745 /* Wake up any processes waiting in the asoc's wait queue in
746 * sctp_wait_for_connect() or sctp_wait_for_sndbuf().
748 if (waitqueue_active(&asoc
->wait
))
749 wake_up_interruptible(&asoc
->wait
);
751 /* Wake up any processes waiting in the sk's sleep queue of
752 * a TCP-style or UDP-style peeled-off socket in
753 * sctp_wait_for_accept() or sctp_wait_for_packet().
754 * For a UDP-style socket, the waiters are woken up by the
757 if (!sctp_style(sk
, UDP
))
758 sk
->sk_state_change(sk
);
762 /* Helper function to delete an association. */
763 static void sctp_cmd_delete_tcb(sctp_cmd_seq_t
*cmds
,
764 struct sctp_association
*asoc
)
766 struct sock
*sk
= asoc
->base
.sk
;
768 /* If it is a non-temporary association belonging to a TCP-style
769 * listening socket that is not closed, do not free it so that accept()
770 * can pick it up later.
772 if (sctp_style(sk
, TCP
) && sctp_sstate(sk
, LISTENING
) &&
773 (!asoc
->temp
) && (sk
->sk_shutdown
!= SHUTDOWN_MASK
))
776 sctp_unhash_established(asoc
);
777 sctp_association_free(asoc
);
781 * ADDIP Section 4.1 ASCONF Chunk Procedures
782 * A4) Start a T-4 RTO timer, using the RTO value of the selected
783 * destination address (we use active path instead of primary path just
784 * because primary path may be inactive.
786 static void sctp_cmd_setup_t4(sctp_cmd_seq_t
*cmds
,
787 struct sctp_association
*asoc
,
788 struct sctp_chunk
*chunk
)
790 struct sctp_transport
*t
;
792 t
= sctp_assoc_choose_alter_transport(asoc
, chunk
->transport
);
793 asoc
->timeouts
[SCTP_EVENT_TIMEOUT_T4_RTO
] = t
->rto
;
794 chunk
->transport
= t
;
797 /* Process an incoming Operation Error Chunk. */
798 static void sctp_cmd_process_operr(sctp_cmd_seq_t
*cmds
,
799 struct sctp_association
*asoc
,
800 struct sctp_chunk
*chunk
)
802 struct sctp_errhdr
*err_hdr
;
803 struct sctp_ulpevent
*ev
;
805 while (chunk
->chunk_end
> chunk
->skb
->data
) {
806 err_hdr
= (struct sctp_errhdr
*)(chunk
->skb
->data
);
808 ev
= sctp_ulpevent_make_remote_error(asoc
, chunk
, 0,
813 sctp_ulpq_tail_event(&asoc
->ulpq
, ev
);
815 switch (err_hdr
->cause
) {
816 case SCTP_ERROR_UNKNOWN_CHUNK
:
818 sctp_chunkhdr_t
*unk_chunk_hdr
;
820 unk_chunk_hdr
= (sctp_chunkhdr_t
*)err_hdr
->variable
;
821 switch (unk_chunk_hdr
->type
) {
822 /* ADDIP 4.1 A9) If the peer responds to an ASCONF with
823 * an ERROR chunk reporting that it did not recognized
824 * the ASCONF chunk type, the sender of the ASCONF MUST
825 * NOT send any further ASCONF chunks and MUST stop its
828 case SCTP_CID_ASCONF
:
829 if (asoc
->peer
.asconf_capable
== 0)
832 asoc
->peer
.asconf_capable
= 0;
833 sctp_add_cmd_sf(cmds
, SCTP_CMD_TIMER_STOP
,
834 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO
));
847 /* Process variable FWDTSN chunk information. */
848 static void sctp_cmd_process_fwdtsn(struct sctp_ulpq
*ulpq
,
849 struct sctp_chunk
*chunk
)
851 struct sctp_fwdtsn_skip
*skip
;
852 /* Walk through all the skipped SSNs */
853 sctp_walk_fwdtsn(skip
, chunk
) {
854 sctp_ulpq_skip(ulpq
, ntohs(skip
->stream
), ntohs(skip
->ssn
));
860 /* Helper function to remove the association non-primary peer
863 static void sctp_cmd_del_non_primary(struct sctp_association
*asoc
)
865 struct sctp_transport
*t
;
866 struct list_head
*pos
;
867 struct list_head
*temp
;
869 list_for_each_safe(pos
, temp
, &asoc
->peer
.transport_addr_list
) {
870 t
= list_entry(pos
, struct sctp_transport
, transports
);
871 if (!sctp_cmp_addr_exact(&t
->ipaddr
,
872 &asoc
->peer
.primary_addr
)) {
873 sctp_assoc_del_peer(asoc
, &t
->ipaddr
);
880 /* Helper function to set sk_err on a 1-1 style socket. */
881 static void sctp_cmd_set_sk_err(struct sctp_association
*asoc
, int error
)
883 struct sock
*sk
= asoc
->base
.sk
;
885 if (!sctp_style(sk
, UDP
))
889 /* Helper function to generate an association change event */
890 static void sctp_cmd_assoc_change(sctp_cmd_seq_t
*commands
,
891 struct sctp_association
*asoc
,
894 struct sctp_ulpevent
*ev
;
896 ev
= sctp_ulpevent_make_assoc_change(asoc
, 0, state
, 0,
897 asoc
->c
.sinit_num_ostreams
,
898 asoc
->c
.sinit_max_instreams
,
901 sctp_ulpq_tail_event(&asoc
->ulpq
, ev
);
904 /* Helper function to generate an adaptation indication event */
905 static void sctp_cmd_adaptation_ind(sctp_cmd_seq_t
*commands
,
906 struct sctp_association
*asoc
)
908 struct sctp_ulpevent
*ev
;
910 ev
= sctp_ulpevent_make_adaptation_indication(asoc
, GFP_ATOMIC
);
913 sctp_ulpq_tail_event(&asoc
->ulpq
, ev
);
917 static void sctp_cmd_t1_timer_update(struct sctp_association
*asoc
,
918 sctp_event_timeout_t timer
,
921 struct sctp_transport
*t
;
923 t
= asoc
->init_last_sent_to
;
924 asoc
->init_err_counter
++;
926 if (t
->init_sent_count
> (asoc
->init_cycle
+ 1)) {
927 asoc
->timeouts
[timer
] *= 2;
928 if (asoc
->timeouts
[timer
] > asoc
->max_init_timeo
) {
929 asoc
->timeouts
[timer
] = asoc
->max_init_timeo
;
933 "T1 %s Timeout adjustment"
934 " init_err_counter: %d"
938 asoc
->init_err_counter
,
940 asoc
->timeouts
[timer
]);
945 /* Send the whole message, chunk by chunk, to the outqueue.
946 * This way the whole message is queued up and bundling if
947 * encouraged for small fragments.
949 static int sctp_cmd_send_msg(struct sctp_association
*asoc
,
950 struct sctp_datamsg
*msg
)
952 struct sctp_chunk
*chunk
;
955 list_for_each_entry(chunk
, &msg
->chunks
, frag_list
) {
956 error
= sctp_outq_tail(&asoc
->outqueue
, chunk
);
966 /* These three macros allow us to pull the debugging code out of the
967 * main flow of sctp_do_sm() to keep attention focused on the real
968 * functionality there.
971 SCTP_DEBUG_PRINTK("sctp_do_sm prefn: " \
972 "ep %p, %s, %s, asoc %p[%s], %s\n", \
973 ep, sctp_evttype_tbl[event_type], \
974 (*debug_fn)(subtype), asoc, \
975 sctp_state_tbl[state], state_fn->name)
978 SCTP_DEBUG_PRINTK("sctp_do_sm postfn: " \
979 "asoc %p, status: %s\n", \
980 asoc, sctp_status_tbl[status])
982 #define DEBUG_POST_SFX \
983 SCTP_DEBUG_PRINTK("sctp_do_sm post sfx: error %d, asoc %p[%s]\n", \
985 sctp_state_tbl[(asoc && sctp_id2assoc(ep->base.sk, \
986 sctp_assoc2id(asoc)))?asoc->state:SCTP_STATE_CLOSED])
989 * This is the master state machine processing function.
991 * If you want to understand all of lksctp, this is a
992 * good place to start.
994 int sctp_do_sm(sctp_event_t event_type
, sctp_subtype_t subtype
,
996 struct sctp_endpoint
*ep
,
997 struct sctp_association
*asoc
,
1001 sctp_cmd_seq_t commands
;
1002 const sctp_sm_table_entry_t
*state_fn
;
1003 sctp_disposition_t status
;
1005 typedef const char *(printfn_t
)(sctp_subtype_t
);
1007 static printfn_t
*table
[] = {
1008 NULL
, sctp_cname
, sctp_tname
, sctp_oname
, sctp_pname
,
1010 printfn_t
*debug_fn
__attribute__ ((unused
)) = table
[event_type
];
1012 /* Look up the state function, run it, and then process the
1013 * side effects. These three steps are the heart of lksctp.
1015 state_fn
= sctp_sm_lookup_event(event_type
, state
, subtype
);
1017 sctp_init_cmd_seq(&commands
);
1020 status
= (*state_fn
->fn
)(ep
, asoc
, subtype
, event_arg
, &commands
);
1023 error
= sctp_side_effects(event_type
, subtype
, state
,
1024 ep
, asoc
, event_arg
, status
,
1034 /*****************************************************************
1035 * This the master state function side effect processing function.
1036 *****************************************************************/
1037 static int sctp_side_effects(sctp_event_t event_type
, sctp_subtype_t subtype
,
1039 struct sctp_endpoint
*ep
,
1040 struct sctp_association
*asoc
,
1042 sctp_disposition_t status
,
1043 sctp_cmd_seq_t
*commands
,
1048 /* FIXME - Most of the dispositions left today would be categorized
1049 * as "exceptional" dispositions. For those dispositions, it
1050 * may not be proper to run through any of the commands at all.
1051 * For example, the command interpreter might be run only with
1052 * disposition SCTP_DISPOSITION_CONSUME.
1054 if (0 != (error
= sctp_cmd_interpreter(event_type
, subtype
, state
,
1061 case SCTP_DISPOSITION_DISCARD
:
1062 SCTP_DEBUG_PRINTK("Ignored sctp protocol event - state %d, "
1063 "event_type %d, event_id %d\n",
1064 state
, event_type
, subtype
.chunk
);
1067 case SCTP_DISPOSITION_NOMEM
:
1068 /* We ran out of memory, so we need to discard this
1071 /* BUG--we should now recover some memory, probably by
1077 case SCTP_DISPOSITION_DELETE_TCB
:
1078 /* This should now be a command. */
1081 case SCTP_DISPOSITION_CONSUME
:
1082 case SCTP_DISPOSITION_ABORT
:
1084 * We should no longer have much work to do here as the
1085 * real work has been done as explicit commands above.
1089 case SCTP_DISPOSITION_VIOLATION
:
1090 if (net_ratelimit())
1091 printk(KERN_ERR
"sctp protocol violation state %d "
1092 "chunkid %d\n", state
, subtype
.chunk
);
1095 case SCTP_DISPOSITION_NOT_IMPL
:
1096 printk(KERN_WARNING
"sctp unimplemented feature in state %d, "
1097 "event_type %d, event_id %d\n",
1098 state
, event_type
, subtype
.chunk
);
1101 case SCTP_DISPOSITION_BUG
:
1102 printk(KERN_ERR
"sctp bug in state %d, "
1103 "event_type %d, event_id %d\n",
1104 state
, event_type
, subtype
.chunk
);
1109 printk(KERN_ERR
"sctp impossible disposition %d "
1110 "in state %d, event_type %d, event_id %d\n",
1111 status
, state
, event_type
, subtype
.chunk
);
1120 /********************************************************************
1121 * 2nd Level Abstractions
1122 ********************************************************************/
1124 /* This is the side-effect interpreter. */
1125 static int sctp_cmd_interpreter(sctp_event_t event_type
,
1126 sctp_subtype_t subtype
,
1128 struct sctp_endpoint
*ep
,
1129 struct sctp_association
*asoc
,
1131 sctp_disposition_t status
,
1132 sctp_cmd_seq_t
*commands
,
1138 struct sctp_chunk
*new_obj
;
1139 struct sctp_chunk
*chunk
= NULL
;
1140 struct sctp_packet
*packet
;
1141 struct timer_list
*timer
;
1142 unsigned long timeout
;
1143 struct sctp_transport
*t
;
1144 struct sctp_sackhdr sackh
;
1147 if (SCTP_EVENT_T_TIMEOUT
!= event_type
)
1148 chunk
= (struct sctp_chunk
*) event_arg
;
1150 /* Note: This whole file is a huge candidate for rework.
1151 * For example, each command could either have its own handler, so
1152 * the loop would look like:
1154 * cmd->handle(x, y, z)
1157 while (NULL
!= (cmd
= sctp_next_cmd(commands
))) {
1158 switch (cmd
->verb
) {
1163 case SCTP_CMD_NEW_ASOC
:
1164 /* Register a new association. */
1166 sctp_outq_uncork(&asoc
->outqueue
);
1169 asoc
= cmd
->obj
.ptr
;
1170 /* Register with the endpoint. */
1171 sctp_endpoint_add_asoc(ep
, asoc
);
1172 sctp_hash_established(asoc
);
1175 case SCTP_CMD_UPDATE_ASSOC
:
1176 sctp_assoc_update(asoc
, cmd
->obj
.ptr
);
1179 case SCTP_CMD_PURGE_OUTQUEUE
:
1180 sctp_outq_teardown(&asoc
->outqueue
);
1183 case SCTP_CMD_DELETE_TCB
:
1185 sctp_outq_uncork(&asoc
->outqueue
);
1188 /* Delete the current association. */
1189 sctp_cmd_delete_tcb(commands
, asoc
);
1193 case SCTP_CMD_NEW_STATE
:
1194 /* Enter a new state. */
1195 sctp_cmd_new_state(commands
, asoc
, cmd
->obj
.state
);
1198 case SCTP_CMD_REPORT_TSN
:
1199 /* Record the arrival of a TSN. */
1200 error
= sctp_tsnmap_mark(&asoc
->peer
.tsn_map
,
1204 case SCTP_CMD_REPORT_FWDTSN
:
1205 /* Move the Cumulattive TSN Ack ahead. */
1206 sctp_tsnmap_skip(&asoc
->peer
.tsn_map
, cmd
->obj
.u32
);
1208 /* purge the fragmentation queue */
1209 sctp_ulpq_reasm_flushtsn(&asoc
->ulpq
, cmd
->obj
.u32
);
1211 /* Abort any in progress partial delivery. */
1212 sctp_ulpq_abort_pd(&asoc
->ulpq
, GFP_ATOMIC
);
1215 case SCTP_CMD_PROCESS_FWDTSN
:
1216 sctp_cmd_process_fwdtsn(&asoc
->ulpq
, cmd
->obj
.ptr
);
1219 case SCTP_CMD_GEN_SACK
:
1220 /* Generate a Selective ACK.
1221 * The argument tells us whether to just count
1222 * the packet and MAYBE generate a SACK, or
1225 force
= cmd
->obj
.i32
;
1226 error
= sctp_gen_sack(asoc
, force
, commands
);
1229 case SCTP_CMD_PROCESS_SACK
:
1230 /* Process an inbound SACK. */
1231 error
= sctp_cmd_process_sack(commands
, asoc
,
1235 case SCTP_CMD_GEN_INIT_ACK
:
1236 /* Generate an INIT ACK chunk. */
1237 new_obj
= sctp_make_init_ack(asoc
, chunk
, GFP_ATOMIC
,
1242 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
,
1243 SCTP_CHUNK(new_obj
));
1246 case SCTP_CMD_PEER_INIT
:
1247 /* Process a unified INIT from the peer.
1248 * Note: Only used during INIT-ACK processing. If
1249 * there is an error just return to the outter
1250 * layer which will bail.
1252 error
= sctp_cmd_process_init(commands
, asoc
, chunk
,
1256 case SCTP_CMD_GEN_COOKIE_ECHO
:
1257 /* Generate a COOKIE ECHO chunk. */
1258 new_obj
= sctp_make_cookie_echo(asoc
, chunk
);
1261 sctp_chunk_free(cmd
->obj
.ptr
);
1264 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
,
1265 SCTP_CHUNK(new_obj
));
1267 /* If there is an ERROR chunk to be sent along with
1268 * the COOKIE_ECHO, send it, too.
1271 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
,
1272 SCTP_CHUNK(cmd
->obj
.ptr
));
1274 if (new_obj
->transport
) {
1275 new_obj
->transport
->init_sent_count
++;
1276 asoc
->init_last_sent_to
= new_obj
->transport
;
1279 /* FIXME - Eventually come up with a cleaner way to
1280 * enabling COOKIE-ECHO + DATA bundling during
1281 * multihoming stale cookie scenarios, the following
1282 * command plays with asoc->peer.retran_path to
1283 * avoid the problem of sending the COOKIE-ECHO and
1284 * DATA in different paths, which could result
1285 * in the association being ABORTed if the DATA chunk
1286 * is processed first by the server. Checking the
1287 * init error counter simply causes this command
1288 * to be executed only during failed attempts of
1289 * association establishment.
1291 if ((asoc
->peer
.retran_path
!=
1292 asoc
->peer
.primary_path
) &&
1293 (asoc
->init_err_counter
> 0)) {
1294 sctp_add_cmd_sf(commands
,
1295 SCTP_CMD_FORCE_PRIM_RETRAN
,
1301 case SCTP_CMD_GEN_SHUTDOWN
:
1302 /* Generate SHUTDOWN when in SHUTDOWN_SENT state.
1303 * Reset error counts.
1305 asoc
->overall_error_count
= 0;
1307 /* Generate a SHUTDOWN chunk. */
1308 new_obj
= sctp_make_shutdown(asoc
, chunk
);
1311 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
,
1312 SCTP_CHUNK(new_obj
));
1315 case SCTP_CMD_CHUNK_ULP
:
1316 /* Send a chunk to the sockets layer. */
1317 SCTP_DEBUG_PRINTK("sm_sideff: %s %p, %s %p.\n",
1318 "chunk_up:", cmd
->obj
.ptr
,
1319 "ulpq:", &asoc
->ulpq
);
1320 sctp_ulpq_tail_data(&asoc
->ulpq
, cmd
->obj
.ptr
,
1324 case SCTP_CMD_EVENT_ULP
:
1325 /* Send a notification to the sockets layer. */
1326 SCTP_DEBUG_PRINTK("sm_sideff: %s %p, %s %p.\n",
1327 "event_up:",cmd
->obj
.ptr
,
1328 "ulpq:",&asoc
->ulpq
);
1329 sctp_ulpq_tail_event(&asoc
->ulpq
, cmd
->obj
.ptr
);
1332 case SCTP_CMD_REPLY
:
1333 /* If an caller has not already corked, do cork. */
1334 if (!asoc
->outqueue
.cork
) {
1335 sctp_outq_cork(&asoc
->outqueue
);
1338 /* Send a chunk to our peer. */
1339 error
= sctp_outq_tail(&asoc
->outqueue
, cmd
->obj
.ptr
);
1342 case SCTP_CMD_SEND_PKT
:
1343 /* Send a full packet to our peer. */
1344 packet
= cmd
->obj
.ptr
;
1345 sctp_packet_transmit(packet
);
1346 sctp_ootb_pkt_free(packet
);
1349 case SCTP_CMD_T1_RETRAN
:
1350 /* Mark a transport for retransmission. */
1351 sctp_retransmit(&asoc
->outqueue
, cmd
->obj
.transport
,
1355 case SCTP_CMD_RETRAN
:
1356 /* Mark a transport for retransmission. */
1357 sctp_retransmit(&asoc
->outqueue
, cmd
->obj
.transport
,
1361 case SCTP_CMD_TRANSMIT
:
1362 /* Kick start transmission. */
1363 error
= sctp_outq_uncork(&asoc
->outqueue
);
1367 case SCTP_CMD_ECN_CE
:
1368 /* Do delayed CE processing. */
1369 sctp_do_ecn_ce_work(asoc
, cmd
->obj
.u32
);
1372 case SCTP_CMD_ECN_ECNE
:
1373 /* Do delayed ECNE processing. */
1374 new_obj
= sctp_do_ecn_ecne_work(asoc
, cmd
->obj
.u32
,
1377 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
,
1378 SCTP_CHUNK(new_obj
));
1381 case SCTP_CMD_ECN_CWR
:
1382 /* Do delayed CWR processing. */
1383 sctp_do_ecn_cwr_work(asoc
, cmd
->obj
.u32
);
1386 case SCTP_CMD_SETUP_T2
:
1387 sctp_cmd_setup_t2(commands
, asoc
, cmd
->obj
.ptr
);
1390 case SCTP_CMD_TIMER_START
:
1391 timer
= &asoc
->timers
[cmd
->obj
.to
];
1392 timeout
= asoc
->timeouts
[cmd
->obj
.to
];
1395 timer
->expires
= jiffies
+ timeout
;
1396 sctp_association_hold(asoc
);
1400 case SCTP_CMD_TIMER_RESTART
:
1401 timer
= &asoc
->timers
[cmd
->obj
.to
];
1402 timeout
= asoc
->timeouts
[cmd
->obj
.to
];
1403 if (!mod_timer(timer
, jiffies
+ timeout
))
1404 sctp_association_hold(asoc
);
1407 case SCTP_CMD_TIMER_STOP
:
1408 timer
= &asoc
->timers
[cmd
->obj
.to
];
1409 if (timer_pending(timer
) && del_timer(timer
))
1410 sctp_association_put(asoc
);
1413 case SCTP_CMD_INIT_CHOOSE_TRANSPORT
:
1414 chunk
= cmd
->obj
.ptr
;
1415 t
= sctp_assoc_choose_alter_transport(asoc
,
1416 asoc
->init_last_sent_to
);
1417 asoc
->init_last_sent_to
= t
;
1418 chunk
->transport
= t
;
1419 t
->init_sent_count
++;
1422 case SCTP_CMD_INIT_RESTART
:
1423 /* Do the needed accounting and updates
1424 * associated with restarting an initialization
1425 * timer. Only multiply the timeout by two if
1426 * all transports have been tried at the current
1429 sctp_cmd_t1_timer_update(asoc
,
1430 SCTP_EVENT_TIMEOUT_T1_INIT
,
1433 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_RESTART
,
1434 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT
));
1437 case SCTP_CMD_COOKIEECHO_RESTART
:
1438 /* Do the needed accounting and updates
1439 * associated with restarting an initialization
1440 * timer. Only multiply the timeout by two if
1441 * all transports have been tried at the current
1444 sctp_cmd_t1_timer_update(asoc
,
1445 SCTP_EVENT_TIMEOUT_T1_COOKIE
,
1448 /* If we've sent any data bundled with
1449 * COOKIE-ECHO we need to resend.
1451 list_for_each_entry(t
, &asoc
->peer
.transport_addr_list
,
1453 sctp_retransmit_mark(&asoc
->outqueue
, t
,
1457 sctp_add_cmd_sf(commands
,
1458 SCTP_CMD_TIMER_RESTART
,
1459 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_COOKIE
));
1462 case SCTP_CMD_INIT_FAILED
:
1463 sctp_cmd_init_failed(commands
, asoc
, cmd
->obj
.err
);
1466 case SCTP_CMD_ASSOC_FAILED
:
1467 sctp_cmd_assoc_failed(commands
, asoc
, event_type
,
1468 subtype
, chunk
, cmd
->obj
.err
);
1471 case SCTP_CMD_INIT_COUNTER_INC
:
1472 asoc
->init_err_counter
++;
1475 case SCTP_CMD_INIT_COUNTER_RESET
:
1476 asoc
->init_err_counter
= 0;
1477 asoc
->init_cycle
= 0;
1478 list_for_each_entry(t
, &asoc
->peer
.transport_addr_list
,
1480 t
->init_sent_count
= 0;
1484 case SCTP_CMD_REPORT_DUP
:
1485 sctp_tsnmap_mark_dup(&asoc
->peer
.tsn_map
,
1489 case SCTP_CMD_REPORT_BAD_TAG
:
1490 SCTP_DEBUG_PRINTK("vtag mismatch!\n");
1493 case SCTP_CMD_STRIKE
:
1494 /* Mark one strike against a transport. */
1495 sctp_do_8_2_transport_strike(asoc
, cmd
->obj
.transport
,
1499 case SCTP_CMD_TRANSPORT_IDLE
:
1500 t
= cmd
->obj
.transport
;
1501 sctp_transport_lower_cwnd(t
, SCTP_LOWER_CWND_INACTIVE
);
1504 case SCTP_CMD_TRANSPORT_HB_SENT
:
1505 t
= cmd
->obj
.transport
;
1506 sctp_do_8_2_transport_strike(asoc
, t
, 1);
1510 case SCTP_CMD_TRANSPORT_ON
:
1511 t
= cmd
->obj
.transport
;
1512 sctp_cmd_transport_on(commands
, asoc
, t
, chunk
);
1515 case SCTP_CMD_HB_TIMERS_START
:
1516 sctp_cmd_hb_timers_start(commands
, asoc
);
1519 case SCTP_CMD_HB_TIMER_UPDATE
:
1520 t
= cmd
->obj
.transport
;
1521 sctp_cmd_hb_timer_update(commands
, t
);
1524 case SCTP_CMD_HB_TIMERS_STOP
:
1525 sctp_cmd_hb_timers_stop(commands
, asoc
);
1528 case SCTP_CMD_REPORT_ERROR
:
1529 error
= cmd
->obj
.error
;
1532 case SCTP_CMD_PROCESS_CTSN
:
1533 /* Dummy up a SACK for processing. */
1534 sackh
.cum_tsn_ack
= cmd
->obj
.be32
;
1535 sackh
.a_rwnd
= asoc
->peer
.rwnd
+
1536 asoc
->outqueue
.outstanding_bytes
;
1537 sackh
.num_gap_ack_blocks
= 0;
1538 sackh
.num_dup_tsns
= 0;
1539 sctp_add_cmd_sf(commands
, SCTP_CMD_PROCESS_SACK
,
1540 SCTP_SACKH(&sackh
));
1543 case SCTP_CMD_DISCARD_PACKET
:
1544 /* We need to discard the whole packet.
1545 * Uncork the queue since there might be
1548 chunk
->pdiscard
= 1;
1550 sctp_outq_uncork(&asoc
->outqueue
);
1555 case SCTP_CMD_RTO_PENDING
:
1556 t
= cmd
->obj
.transport
;
1560 case SCTP_CMD_PART_DELIVER
:
1561 sctp_ulpq_partial_delivery(&asoc
->ulpq
, cmd
->obj
.ptr
,
1565 case SCTP_CMD_RENEGE
:
1566 sctp_ulpq_renege(&asoc
->ulpq
, cmd
->obj
.ptr
,
1570 case SCTP_CMD_SETUP_T4
:
1571 sctp_cmd_setup_t4(commands
, asoc
, cmd
->obj
.ptr
);
1574 case SCTP_CMD_PROCESS_OPERR
:
1575 sctp_cmd_process_operr(commands
, asoc
, chunk
);
1577 case SCTP_CMD_CLEAR_INIT_TAG
:
1578 asoc
->peer
.i
.init_tag
= 0;
1580 case SCTP_CMD_DEL_NON_PRIMARY
:
1581 sctp_cmd_del_non_primary(asoc
);
1583 case SCTP_CMD_T3_RTX_TIMERS_STOP
:
1584 sctp_cmd_t3_rtx_timers_stop(commands
, asoc
);
1586 case SCTP_CMD_FORCE_PRIM_RETRAN
:
1587 t
= asoc
->peer
.retran_path
;
1588 asoc
->peer
.retran_path
= asoc
->peer
.primary_path
;
1589 error
= sctp_outq_uncork(&asoc
->outqueue
);
1591 asoc
->peer
.retran_path
= t
;
1593 case SCTP_CMD_SET_SK_ERR
:
1594 sctp_cmd_set_sk_err(asoc
, cmd
->obj
.error
);
1596 case SCTP_CMD_ASSOC_CHANGE
:
1597 sctp_cmd_assoc_change(commands
, asoc
,
1600 case SCTP_CMD_ADAPTATION_IND
:
1601 sctp_cmd_adaptation_ind(commands
, asoc
);
1604 case SCTP_CMD_ASSOC_SHKEY
:
1605 error
= sctp_auth_asoc_init_active_key(asoc
,
1608 case SCTP_CMD_UPDATE_INITTAG
:
1609 asoc
->peer
.i
.init_tag
= cmd
->obj
.u32
;
1611 case SCTP_CMD_SEND_MSG
:
1612 if (!asoc
->outqueue
.cork
) {
1613 sctp_outq_cork(&asoc
->outqueue
);
1616 error
= sctp_cmd_send_msg(asoc
, cmd
->obj
.msg
);
1619 printk(KERN_WARNING
"Impossible command: %u, %p\n",
1620 cmd
->verb
, cmd
->obj
.ptr
);
1629 /* If this is in response to a received chunk, wait until
1630 * we are done with the packet to open the queue so that we don't
1631 * send multiple packets in response to a single request.
1633 if (asoc
&& SCTP_EVENT_T_CHUNK
== event_type
&& chunk
) {
1634 if (chunk
->end_of_packet
|| chunk
->singleton
)
1635 error
= sctp_outq_uncork(&asoc
->outqueue
);
1636 } else if (local_cork
)
1637 error
= sctp_outq_uncork(&asoc
->outqueue
);