1 /* SCTP kernel reference 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 reference 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 * The SCTP reference 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 * The SCTP reference 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
,
66 unsigned int __nocast gfp
);
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
,
74 unsigned int __nocast gfp
);
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
;
163 asoc
->peer
.sack_needed
= 1;
165 ctsn
= sctp_tsnmap_get_ctsn(&asoc
->peer
.tsn_map
);
166 max_tsn_seen
= sctp_tsnmap_get_max_tsn_seen(&asoc
->peer
.tsn_map
);
168 /* From 12.2 Parameters necessary per association (i.e. the TCB):
170 * Ack State : This flag indicates if the next received packet
171 * : is to be responded to with a SACK. ...
172 * : When DATA chunks are out of order, SACK's
173 * : are not delayed (see Section 6).
175 * [This is actually not mentioned in Section 6, but we
176 * implement it here anyway. --piggy]
178 if (max_tsn_seen
!= ctsn
)
179 asoc
->peer
.sack_needed
= 1;
181 /* From 6.2 Acknowledgement on Reception of DATA Chunks:
183 * Section 4.2 of [RFC2581] SHOULD be followed. Specifically,
184 * an acknowledgement SHOULD be generated for at least every
185 * second packet (not every second DATA chunk) received, and
186 * SHOULD be generated within 200 ms of the arrival of any
187 * unacknowledged DATA chunk. ...
189 if (!asoc
->peer
.sack_needed
) {
190 /* We will need a SACK for the next packet. */
191 asoc
->peer
.sack_needed
= 1;
194 if (asoc
->a_rwnd
> asoc
->rwnd
)
195 asoc
->a_rwnd
= asoc
->rwnd
;
196 sack
= sctp_make_sack(asoc
);
200 asoc
->peer
.sack_needed
= 0;
202 error
= sctp_outq_tail(&asoc
->outqueue
, sack
);
204 /* Stop the SACK timer. */
205 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_STOP
,
206 SCTP_TO(SCTP_EVENT_TIMEOUT_SACK
));
215 /* When the T3-RTX timer expires, it calls this function to create the
216 * relevant state machine event.
218 void sctp_generate_t3_rtx_event(unsigned long peer
)
221 struct sctp_transport
*transport
= (struct sctp_transport
*) peer
;
222 struct sctp_association
*asoc
= transport
->asoc
;
224 /* Check whether a task is in the sock. */
226 sctp_bh_lock_sock(asoc
->base
.sk
);
227 if (sock_owned_by_user(asoc
->base
.sk
)) {
228 SCTP_DEBUG_PRINTK("%s:Sock is busy.\n", __FUNCTION__
);
230 /* Try again later. */
231 if (!mod_timer(&transport
->T3_rtx_timer
, jiffies
+ (HZ
/20)))
232 sctp_transport_hold(transport
);
236 /* Is this transport really dead and just waiting around for
237 * the timer to let go of the reference?
242 /* Run through the state machine. */
243 error
= sctp_do_sm(SCTP_EVENT_T_TIMEOUT
,
244 SCTP_ST_TIMEOUT(SCTP_EVENT_TIMEOUT_T3_RTX
),
247 transport
, GFP_ATOMIC
);
250 asoc
->base
.sk
->sk_err
= -error
;
253 sctp_bh_unlock_sock(asoc
->base
.sk
);
254 sctp_transport_put(transport
);
257 /* This is a sa interface for producing timeout events. It works
258 * for timeouts which use the association as their parameter.
260 static void sctp_generate_timeout_event(struct sctp_association
*asoc
,
261 sctp_event_timeout_t timeout_type
)
265 sctp_bh_lock_sock(asoc
->base
.sk
);
266 if (sock_owned_by_user(asoc
->base
.sk
)) {
267 SCTP_DEBUG_PRINTK("%s:Sock is busy: timer %d\n",
271 /* Try again later. */
272 if (!mod_timer(&asoc
->timers
[timeout_type
], jiffies
+ (HZ
/20)))
273 sctp_association_hold(asoc
);
277 /* Is this association really dead and just waiting around for
278 * the timer to let go of the reference?
283 /* Run through the state machine. */
284 error
= sctp_do_sm(SCTP_EVENT_T_TIMEOUT
,
285 SCTP_ST_TIMEOUT(timeout_type
),
286 asoc
->state
, asoc
->ep
, asoc
,
287 (void *)timeout_type
, GFP_ATOMIC
);
290 asoc
->base
.sk
->sk_err
= -error
;
293 sctp_bh_unlock_sock(asoc
->base
.sk
);
294 sctp_association_put(asoc
);
297 static void sctp_generate_t1_cookie_event(unsigned long data
)
299 struct sctp_association
*asoc
= (struct sctp_association
*) data
;
300 sctp_generate_timeout_event(asoc
, SCTP_EVENT_TIMEOUT_T1_COOKIE
);
303 static void sctp_generate_t1_init_event(unsigned long data
)
305 struct sctp_association
*asoc
= (struct sctp_association
*) data
;
306 sctp_generate_timeout_event(asoc
, SCTP_EVENT_TIMEOUT_T1_INIT
);
309 static void sctp_generate_t2_shutdown_event(unsigned long data
)
311 struct sctp_association
*asoc
= (struct sctp_association
*) data
;
312 sctp_generate_timeout_event(asoc
, SCTP_EVENT_TIMEOUT_T2_SHUTDOWN
);
315 static void sctp_generate_t4_rto_event(unsigned long data
)
317 struct sctp_association
*asoc
= (struct sctp_association
*) data
;
318 sctp_generate_timeout_event(asoc
, SCTP_EVENT_TIMEOUT_T4_RTO
);
321 static void sctp_generate_t5_shutdown_guard_event(unsigned long data
)
323 struct sctp_association
*asoc
= (struct sctp_association
*)data
;
324 sctp_generate_timeout_event(asoc
,
325 SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD
);
327 } /* sctp_generate_t5_shutdown_guard_event() */
329 static void sctp_generate_autoclose_event(unsigned long data
)
331 struct sctp_association
*asoc
= (struct sctp_association
*) data
;
332 sctp_generate_timeout_event(asoc
, SCTP_EVENT_TIMEOUT_AUTOCLOSE
);
335 /* Generate a heart beat event. If the sock is busy, reschedule. Make
336 * sure that the transport is still valid.
338 void sctp_generate_heartbeat_event(unsigned long data
)
341 struct sctp_transport
*transport
= (struct sctp_transport
*) data
;
342 struct sctp_association
*asoc
= transport
->asoc
;
344 sctp_bh_lock_sock(asoc
->base
.sk
);
345 if (sock_owned_by_user(asoc
->base
.sk
)) {
346 SCTP_DEBUG_PRINTK("%s:Sock is busy.\n", __FUNCTION__
);
348 /* Try again later. */
349 if (!mod_timer(&transport
->hb_timer
, jiffies
+ (HZ
/20)))
350 sctp_transport_hold(transport
);
354 /* Is this structure just waiting around for us to actually
360 error
= sctp_do_sm(SCTP_EVENT_T_TIMEOUT
,
361 SCTP_ST_TIMEOUT(SCTP_EVENT_TIMEOUT_HEARTBEAT
),
362 asoc
->state
, asoc
->ep
, asoc
,
363 transport
, GFP_ATOMIC
);
366 asoc
->base
.sk
->sk_err
= -error
;
369 sctp_bh_unlock_sock(asoc
->base
.sk
);
370 sctp_transport_put(transport
);
373 /* Inject a SACK Timeout event into the state machine. */
374 static void sctp_generate_sack_event(unsigned long data
)
376 struct sctp_association
*asoc
= (struct sctp_association
*) data
;
377 sctp_generate_timeout_event(asoc
, SCTP_EVENT_TIMEOUT_SACK
);
380 sctp_timer_event_t
*sctp_timer_events
[SCTP_NUM_TIMEOUT_TYPES
] = {
382 sctp_generate_t1_cookie_event
,
383 sctp_generate_t1_init_event
,
384 sctp_generate_t2_shutdown_event
,
386 sctp_generate_t4_rto_event
,
387 sctp_generate_t5_shutdown_guard_event
,
388 sctp_generate_heartbeat_event
,
389 sctp_generate_sack_event
,
390 sctp_generate_autoclose_event
,
394 /* RFC 2960 8.2 Path Failure Detection
396 * When its peer endpoint is multi-homed, an endpoint should keep a
397 * error counter for each of the destination transport addresses of the
400 * Each time the T3-rtx timer expires on any address, or when a
401 * HEARTBEAT sent to an idle address is not acknowledged within a RTO,
402 * the error counter of that destination address will be incremented.
403 * When the value in the error counter exceeds the protocol parameter
404 * 'Path.Max.Retrans' of that destination address, the endpoint should
405 * mark the destination transport address as inactive, and a
406 * notification SHOULD be sent to the upper layer.
409 static void sctp_do_8_2_transport_strike(struct sctp_association
*asoc
,
410 struct sctp_transport
*transport
)
412 /* The check for association's overall error counter exceeding the
413 * threshold is done in the state function.
415 asoc
->overall_error_count
++;
417 if (transport
->state
!= SCTP_INACTIVE
&&
418 (transport
->error_count
++ >= transport
->max_retrans
)) {
419 SCTP_DEBUG_PRINTK_IPADDR("transport_strike:association %p",
420 " transport IP: port:%d failed.\n",
422 (&transport
->ipaddr
),
423 transport
->ipaddr
.v4
.sin_port
);
424 sctp_assoc_control_transport(asoc
, transport
,
426 SCTP_FAILED_THRESHOLD
);
429 /* E2) For the destination address for which the timer
430 * expires, set RTO <- RTO * 2 ("back off the timer"). The
431 * maximum value discussed in rule C7 above (RTO.max) may be
432 * used to provide an upper bound to this doubling operation.
434 transport
->rto
= min((transport
->rto
* 2), transport
->asoc
->rto_max
);
437 /* Worker routine to handle INIT command failure. */
438 static void sctp_cmd_init_failed(sctp_cmd_seq_t
*commands
,
439 struct sctp_association
*asoc
,
442 struct sctp_ulpevent
*event
;
444 event
= sctp_ulpevent_make_assoc_change(asoc
,0, SCTP_CANT_STR_ASSOC
,
449 sctp_add_cmd_sf(commands
, SCTP_CMD_EVENT_ULP
,
450 SCTP_ULPEVENT(event
));
452 sctp_add_cmd_sf(commands
, SCTP_CMD_NEW_STATE
,
453 SCTP_STATE(SCTP_STATE_CLOSED
));
455 /* SEND_FAILED sent later when cleaning up the association. */
456 asoc
->outqueue
.error
= error
;
457 sctp_add_cmd_sf(commands
, SCTP_CMD_DELETE_TCB
, SCTP_NULL());
460 /* Worker routine to handle SCTP_CMD_ASSOC_FAILED. */
461 static void sctp_cmd_assoc_failed(sctp_cmd_seq_t
*commands
,
462 struct sctp_association
*asoc
,
463 sctp_event_t event_type
,
464 sctp_subtype_t subtype
,
465 struct sctp_chunk
*chunk
,
468 struct sctp_ulpevent
*event
;
470 /* Cancel any partial delivery in progress. */
471 sctp_ulpq_abort_pd(&asoc
->ulpq
, GFP_ATOMIC
);
473 event
= sctp_ulpevent_make_assoc_change(asoc
, 0, SCTP_COMM_LOST
,
477 sctp_add_cmd_sf(commands
, SCTP_CMD_EVENT_ULP
,
478 SCTP_ULPEVENT(event
));
480 sctp_add_cmd_sf(commands
, SCTP_CMD_NEW_STATE
,
481 SCTP_STATE(SCTP_STATE_CLOSED
));
483 /* Set sk_err to ECONNRESET on a 1-1 style socket. */
484 if (!sctp_style(asoc
->base
.sk
, UDP
))
485 asoc
->base
.sk
->sk_err
= ECONNRESET
;
487 /* SEND_FAILED sent later when cleaning up the association. */
488 asoc
->outqueue
.error
= error
;
489 sctp_add_cmd_sf(commands
, SCTP_CMD_DELETE_TCB
, SCTP_NULL());
492 /* Process an init chunk (may be real INIT/INIT-ACK or an embedded INIT
493 * inside the cookie. In reality, this is only used for INIT-ACK processing
494 * since all other cases use "temporary" associations and can do all
495 * their work in statefuns directly.
497 static int sctp_cmd_process_init(sctp_cmd_seq_t
*commands
,
498 struct sctp_association
*asoc
,
499 struct sctp_chunk
*chunk
,
500 sctp_init_chunk_t
*peer_init
,
501 unsigned int __nocast gfp
)
505 /* We only process the init as a sideeffect in a single
506 * case. This is when we process the INIT-ACK. If we
507 * fail during INIT processing (due to malloc problems),
508 * just return the error and stop processing the stack.
510 if (!sctp_process_init(asoc
, chunk
->chunk_hdr
->type
,
511 sctp_source(chunk
), peer_init
, gfp
))
519 /* Helper function to break out starting up of heartbeat timers. */
520 static void sctp_cmd_hb_timers_start(sctp_cmd_seq_t
*cmds
,
521 struct sctp_association
*asoc
)
523 struct sctp_transport
*t
;
524 struct list_head
*pos
;
526 /* Start a heartbeat timer for each transport on the association.
527 * hold a reference on the transport to make sure none of
528 * the needed data structures go away.
530 list_for_each(pos
, &asoc
->peer
.transport_addr_list
) {
531 t
= list_entry(pos
, struct sctp_transport
, transports
);
533 if (!mod_timer(&t
->hb_timer
, sctp_transport_timeout(t
)))
534 sctp_transport_hold(t
);
538 static void sctp_cmd_hb_timers_stop(sctp_cmd_seq_t
*cmds
,
539 struct sctp_association
*asoc
)
541 struct sctp_transport
*t
;
542 struct list_head
*pos
;
544 /* Stop all heartbeat timers. */
546 list_for_each(pos
, &asoc
->peer
.transport_addr_list
) {
547 t
= list_entry(pos
, struct sctp_transport
, transports
);
548 if (del_timer(&t
->hb_timer
))
549 sctp_transport_put(t
);
553 /* Helper function to stop any pending T3-RTX timers */
554 static void sctp_cmd_t3_rtx_timers_stop(sctp_cmd_seq_t
*cmds
,
555 struct sctp_association
*asoc
)
557 struct sctp_transport
*t
;
558 struct list_head
*pos
;
560 list_for_each(pos
, &asoc
->peer
.transport_addr_list
) {
561 t
= list_entry(pos
, struct sctp_transport
, transports
);
562 if (timer_pending(&t
->T3_rtx_timer
) &&
563 del_timer(&t
->T3_rtx_timer
)) {
564 sctp_transport_put(t
);
570 /* Helper function to update the heartbeat timer. */
571 static void sctp_cmd_hb_timer_update(sctp_cmd_seq_t
*cmds
,
572 struct sctp_association
*asoc
,
573 struct sctp_transport
*t
)
575 /* Update the heartbeat timer. */
576 if (!mod_timer(&t
->hb_timer
, sctp_transport_timeout(t
)))
577 sctp_transport_hold(t
);
580 /* Helper function to handle the reception of an HEARTBEAT ACK. */
581 static void sctp_cmd_transport_on(sctp_cmd_seq_t
*cmds
,
582 struct sctp_association
*asoc
,
583 struct sctp_transport
*t
,
584 struct sctp_chunk
*chunk
)
586 sctp_sender_hb_info_t
*hbinfo
;
588 /* 8.3 Upon the receipt of the HEARTBEAT ACK, the sender of the
589 * HEARTBEAT should clear the error counter of the destination
590 * transport address to which the HEARTBEAT was sent.
591 * The association's overall error count is also cleared.
594 t
->asoc
->overall_error_count
= 0;
596 /* Mark the destination transport address as active if it is not so
599 if (t
->state
== SCTP_INACTIVE
)
600 sctp_assoc_control_transport(asoc
, t
, SCTP_TRANSPORT_UP
,
601 SCTP_HEARTBEAT_SUCCESS
);
603 /* The receiver of the HEARTBEAT ACK should also perform an
604 * RTT measurement for that destination transport address
605 * using the time value carried in the HEARTBEAT ACK chunk.
607 hbinfo
= (sctp_sender_hb_info_t
*) chunk
->skb
->data
;
608 sctp_transport_update_rto(t
, (jiffies
- hbinfo
->sent_at
));
611 /* Helper function to do a transport reset at the expiry of the hearbeat
614 static void sctp_cmd_transport_reset(sctp_cmd_seq_t
*cmds
,
615 struct sctp_association
*asoc
,
616 struct sctp_transport
*t
)
618 sctp_transport_lower_cwnd(t
, SCTP_LOWER_CWND_INACTIVE
);
620 /* Mark one strike against a transport. */
621 sctp_do_8_2_transport_strike(asoc
, t
);
624 /* Helper function to process the process SACK command. */
625 static int sctp_cmd_process_sack(sctp_cmd_seq_t
*cmds
,
626 struct sctp_association
*asoc
,
627 struct sctp_sackhdr
*sackh
)
631 if (sctp_outq_sack(&asoc
->outqueue
, sackh
)) {
632 /* There are no more TSNs awaiting SACK. */
633 err
= sctp_do_sm(SCTP_EVENT_T_OTHER
,
634 SCTP_ST_OTHER(SCTP_EVENT_NO_PENDING_TSN
),
635 asoc
->state
, asoc
->ep
, asoc
, NULL
,
638 /* Windows may have opened, so we need
639 * to check if we have DATA to transmit
641 err
= sctp_outq_flush(&asoc
->outqueue
, 0);
647 /* Helper function to set the timeout value for T2-SHUTDOWN timer and to set
648 * the transport for a shutdown chunk.
650 static void sctp_cmd_setup_t2(sctp_cmd_seq_t
*cmds
,
651 struct sctp_association
*asoc
,
652 struct sctp_chunk
*chunk
)
654 struct sctp_transport
*t
;
656 t
= sctp_assoc_choose_shutdown_transport(asoc
);
657 asoc
->shutdown_last_sent_to
= t
;
658 asoc
->timeouts
[SCTP_EVENT_TIMEOUT_T2_SHUTDOWN
] = t
->rto
;
659 chunk
->transport
= t
;
662 /* Helper function to change the state of an association. */
663 static void sctp_cmd_new_state(sctp_cmd_seq_t
*cmds
,
664 struct sctp_association
*asoc
,
667 struct sock
*sk
= asoc
->base
.sk
;
671 SCTP_DEBUG_PRINTK("sctp_cmd_new_state: asoc %p[%s]\n",
672 asoc
, sctp_state_tbl
[state
]);
674 if (sctp_style(sk
, TCP
)) {
675 /* Change the sk->sk_state of a TCP-style socket that has
676 * sucessfully completed a connect() call.
678 if (sctp_state(asoc
, ESTABLISHED
) && sctp_sstate(sk
, CLOSED
))
679 sk
->sk_state
= SCTP_SS_ESTABLISHED
;
681 /* Set the RCV_SHUTDOWN flag when a SHUTDOWN is received. */
682 if (sctp_state(asoc
, SHUTDOWN_RECEIVED
) &&
683 sctp_sstate(sk
, ESTABLISHED
))
684 sk
->sk_shutdown
|= RCV_SHUTDOWN
;
687 if (sctp_state(asoc
, COOKIE_WAIT
)) {
688 /* Reset init timeouts since they may have been
689 * increased due to timer expirations.
691 asoc
->timeouts
[SCTP_EVENT_TIMEOUT_T1_INIT
] =
692 asoc
->ep
->timeouts
[SCTP_EVENT_TIMEOUT_T1_INIT
];
693 asoc
->timeouts
[SCTP_EVENT_TIMEOUT_T1_COOKIE
] =
694 asoc
->ep
->timeouts
[SCTP_EVENT_TIMEOUT_T1_COOKIE
];
697 if (sctp_state(asoc
, ESTABLISHED
) ||
698 sctp_state(asoc
, CLOSED
) ||
699 sctp_state(asoc
, SHUTDOWN_RECEIVED
)) {
700 /* Wake up any processes waiting in the asoc's wait queue in
701 * sctp_wait_for_connect() or sctp_wait_for_sndbuf().
703 if (waitqueue_active(&asoc
->wait
))
704 wake_up_interruptible(&asoc
->wait
);
706 /* Wake up any processes waiting in the sk's sleep queue of
707 * a TCP-style or UDP-style peeled-off socket in
708 * sctp_wait_for_accept() or sctp_wait_for_packet().
709 * For a UDP-style socket, the waiters are woken up by the
712 if (!sctp_style(sk
, UDP
))
713 sk
->sk_state_change(sk
);
717 /* Helper function to delete an association. */
718 static void sctp_cmd_delete_tcb(sctp_cmd_seq_t
*cmds
,
719 struct sctp_association
*asoc
)
721 struct sock
*sk
= asoc
->base
.sk
;
723 /* If it is a non-temporary association belonging to a TCP-style
724 * listening socket that is not closed, do not free it so that accept()
725 * can pick it up later.
727 if (sctp_style(sk
, TCP
) && sctp_sstate(sk
, LISTENING
) &&
728 (!asoc
->temp
) && (sk
->sk_shutdown
!= SHUTDOWN_MASK
))
731 sctp_unhash_established(asoc
);
732 sctp_association_free(asoc
);
736 * ADDIP Section 4.1 ASCONF Chunk Procedures
737 * A4) Start a T-4 RTO timer, using the RTO value of the selected
738 * destination address (we use active path instead of primary path just
739 * because primary path may be inactive.
741 static void sctp_cmd_setup_t4(sctp_cmd_seq_t
*cmds
,
742 struct sctp_association
*asoc
,
743 struct sctp_chunk
*chunk
)
745 struct sctp_transport
*t
;
747 t
= asoc
->peer
.active_path
;
748 asoc
->timeouts
[SCTP_EVENT_TIMEOUT_T4_RTO
] = t
->rto
;
749 chunk
->transport
= t
;
752 /* Process an incoming Operation Error Chunk. */
753 static void sctp_cmd_process_operr(sctp_cmd_seq_t
*cmds
,
754 struct sctp_association
*asoc
,
755 struct sctp_chunk
*chunk
)
757 struct sctp_operr_chunk
*operr_chunk
;
758 struct sctp_errhdr
*err_hdr
;
760 operr_chunk
= (struct sctp_operr_chunk
*)chunk
->chunk_hdr
;
761 err_hdr
= &operr_chunk
->err_hdr
;
763 switch (err_hdr
->cause
) {
764 case SCTP_ERROR_UNKNOWN_CHUNK
:
766 struct sctp_chunkhdr
*unk_chunk_hdr
;
768 unk_chunk_hdr
= (struct sctp_chunkhdr
*)err_hdr
->variable
;
769 switch (unk_chunk_hdr
->type
) {
770 /* ADDIP 4.1 A9) If the peer responds to an ASCONF with an
771 * ERROR chunk reporting that it did not recognized the ASCONF
772 * chunk type, the sender of the ASCONF MUST NOT send any
773 * further ASCONF chunks and MUST stop its T-4 timer.
775 case SCTP_CID_ASCONF
:
776 asoc
->peer
.asconf_capable
= 0;
777 sctp_add_cmd_sf(cmds
, SCTP_CMD_TIMER_STOP
,
778 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO
));
790 /* Process variable FWDTSN chunk information. */
791 static void sctp_cmd_process_fwdtsn(struct sctp_ulpq
*ulpq
,
792 struct sctp_chunk
*chunk
)
794 struct sctp_fwdtsn_skip
*skip
;
795 /* Walk through all the skipped SSNs */
796 sctp_walk_fwdtsn(skip
, chunk
) {
797 sctp_ulpq_skip(ulpq
, ntohs(skip
->stream
), ntohs(skip
->ssn
));
803 /* Helper function to remove the association non-primary peer
806 static void sctp_cmd_del_non_primary(struct sctp_association
*asoc
)
808 struct sctp_transport
*t
;
809 struct list_head
*pos
;
810 struct list_head
*temp
;
812 list_for_each_safe(pos
, temp
, &asoc
->peer
.transport_addr_list
) {
813 t
= list_entry(pos
, struct sctp_transport
, transports
);
814 if (!sctp_cmp_addr_exact(&t
->ipaddr
,
815 &asoc
->peer
.primary_addr
)) {
816 sctp_assoc_del_peer(asoc
, &t
->ipaddr
);
823 /* These three macros allow us to pull the debugging code out of the
824 * main flow of sctp_do_sm() to keep attention focused on the real
825 * functionality there.
828 SCTP_DEBUG_PRINTK("sctp_do_sm prefn: " \
829 "ep %p, %s, %s, asoc %p[%s], %s\n", \
830 ep, sctp_evttype_tbl[event_type], \
831 (*debug_fn)(subtype), asoc, \
832 sctp_state_tbl[state], state_fn->name)
835 SCTP_DEBUG_PRINTK("sctp_do_sm postfn: " \
836 "asoc %p, status: %s\n", \
837 asoc, sctp_status_tbl[status])
839 #define DEBUG_POST_SFX \
840 SCTP_DEBUG_PRINTK("sctp_do_sm post sfx: error %d, asoc %p[%s]\n", \
842 sctp_state_tbl[(asoc && sctp_id2assoc(ep->base.sk, \
843 sctp_assoc2id(asoc)))?asoc->state:SCTP_STATE_CLOSED])
846 * This is the master state machine processing function.
848 * If you want to understand all of lksctp, this is a
849 * good place to start.
851 int sctp_do_sm(sctp_event_t event_type
, sctp_subtype_t subtype
,
853 struct sctp_endpoint
*ep
,
854 struct sctp_association
*asoc
,
856 unsigned int __nocast gfp
)
858 sctp_cmd_seq_t commands
;
859 const sctp_sm_table_entry_t
*state_fn
;
860 sctp_disposition_t status
;
862 typedef const char *(printfn_t
)(sctp_subtype_t
);
864 static printfn_t
*table
[] = {
865 NULL
, sctp_cname
, sctp_tname
, sctp_oname
, sctp_pname
,
867 printfn_t
*debug_fn
__attribute__ ((unused
)) = table
[event_type
];
869 /* Look up the state function, run it, and then process the
870 * side effects. These three steps are the heart of lksctp.
872 state_fn
= sctp_sm_lookup_event(event_type
, state
, subtype
);
874 sctp_init_cmd_seq(&commands
);
877 status
= (*state_fn
->fn
)(ep
, asoc
, subtype
, event_arg
, &commands
);
880 error
= sctp_side_effects(event_type
, subtype
, state
,
881 ep
, asoc
, event_arg
, status
,
891 /*****************************************************************
892 * This the master state function side effect processing function.
893 *****************************************************************/
894 static int sctp_side_effects(sctp_event_t event_type
, sctp_subtype_t subtype
,
896 struct sctp_endpoint
*ep
,
897 struct sctp_association
*asoc
,
899 sctp_disposition_t status
,
900 sctp_cmd_seq_t
*commands
,
901 unsigned int __nocast gfp
)
905 /* FIXME - Most of the dispositions left today would be categorized
906 * as "exceptional" dispositions. For those dispositions, it
907 * may not be proper to run through any of the commands at all.
908 * For example, the command interpreter might be run only with
909 * disposition SCTP_DISPOSITION_CONSUME.
911 if (0 != (error
= sctp_cmd_interpreter(event_type
, subtype
, state
,
918 case SCTP_DISPOSITION_DISCARD
:
919 SCTP_DEBUG_PRINTK("Ignored sctp protocol event - state %d, "
920 "event_type %d, event_id %d\n",
921 state
, event_type
, subtype
.chunk
);
924 case SCTP_DISPOSITION_NOMEM
:
925 /* We ran out of memory, so we need to discard this
928 /* BUG--we should now recover some memory, probably by
934 case SCTP_DISPOSITION_DELETE_TCB
:
935 /* This should now be a command. */
938 case SCTP_DISPOSITION_CONSUME
:
939 case SCTP_DISPOSITION_ABORT
:
941 * We should no longer have much work to do here as the
942 * real work has been done as explicit commands above.
946 case SCTP_DISPOSITION_VIOLATION
:
947 printk(KERN_ERR
"sctp protocol violation state %d "
948 "chunkid %d\n", state
, subtype
.chunk
);
951 case SCTP_DISPOSITION_NOT_IMPL
:
952 printk(KERN_WARNING
"sctp unimplemented feature in state %d, "
953 "event_type %d, event_id %d\n",
954 state
, event_type
, subtype
.chunk
);
957 case SCTP_DISPOSITION_BUG
:
958 printk(KERN_ERR
"sctp bug in state %d, "
959 "event_type %d, event_id %d\n",
960 state
, event_type
, subtype
.chunk
);
965 printk(KERN_ERR
"sctp impossible disposition %d "
966 "in state %d, event_type %d, event_id %d\n",
967 status
, state
, event_type
, subtype
.chunk
);
976 /********************************************************************
977 * 2nd Level Abstractions
978 ********************************************************************/
980 /* This is the side-effect interpreter. */
981 static int sctp_cmd_interpreter(sctp_event_t event_type
,
982 sctp_subtype_t subtype
,
984 struct sctp_endpoint
*ep
,
985 struct sctp_association
*asoc
,
987 sctp_disposition_t status
,
988 sctp_cmd_seq_t
*commands
,
989 unsigned int __nocast gfp
)
994 struct sctp_chunk
*new_obj
;
995 struct sctp_chunk
*chunk
= NULL
;
996 struct sctp_packet
*packet
;
997 struct list_head
*pos
;
998 struct timer_list
*timer
;
999 unsigned long timeout
;
1000 struct sctp_transport
*t
;
1001 struct sctp_sackhdr sackh
;
1004 if (SCTP_EVENT_T_TIMEOUT
!= event_type
)
1005 chunk
= (struct sctp_chunk
*) event_arg
;
1007 /* Note: This whole file is a huge candidate for rework.
1008 * For example, each command could either have its own handler, so
1009 * the loop would look like:
1011 * cmd->handle(x, y, z)
1014 while (NULL
!= (cmd
= sctp_next_cmd(commands
))) {
1015 switch (cmd
->verb
) {
1020 case SCTP_CMD_NEW_ASOC
:
1021 /* Register a new association. */
1023 sctp_outq_uncork(&asoc
->outqueue
);
1026 asoc
= cmd
->obj
.ptr
;
1027 /* Register with the endpoint. */
1028 sctp_endpoint_add_asoc(ep
, asoc
);
1029 sctp_hash_established(asoc
);
1032 case SCTP_CMD_UPDATE_ASSOC
:
1033 sctp_assoc_update(asoc
, cmd
->obj
.ptr
);
1036 case SCTP_CMD_PURGE_OUTQUEUE
:
1037 sctp_outq_teardown(&asoc
->outqueue
);
1040 case SCTP_CMD_DELETE_TCB
:
1042 sctp_outq_uncork(&asoc
->outqueue
);
1045 /* Delete the current association. */
1046 sctp_cmd_delete_tcb(commands
, asoc
);
1050 case SCTP_CMD_NEW_STATE
:
1051 /* Enter a new state. */
1052 sctp_cmd_new_state(commands
, asoc
, cmd
->obj
.state
);
1055 case SCTP_CMD_REPORT_TSN
:
1056 /* Record the arrival of a TSN. */
1057 sctp_tsnmap_mark(&asoc
->peer
.tsn_map
, cmd
->obj
.u32
);
1060 case SCTP_CMD_REPORT_FWDTSN
:
1061 /* Move the Cumulattive TSN Ack ahead. */
1062 sctp_tsnmap_skip(&asoc
->peer
.tsn_map
, cmd
->obj
.u32
);
1064 /* Abort any in progress partial delivery. */
1065 sctp_ulpq_abort_pd(&asoc
->ulpq
, GFP_ATOMIC
);
1068 case SCTP_CMD_PROCESS_FWDTSN
:
1069 sctp_cmd_process_fwdtsn(&asoc
->ulpq
, cmd
->obj
.ptr
);
1072 case SCTP_CMD_GEN_SACK
:
1073 /* Generate a Selective ACK.
1074 * The argument tells us whether to just count
1075 * the packet and MAYBE generate a SACK, or
1078 force
= cmd
->obj
.i32
;
1079 error
= sctp_gen_sack(asoc
, force
, commands
);
1082 case SCTP_CMD_PROCESS_SACK
:
1083 /* Process an inbound SACK. */
1084 error
= sctp_cmd_process_sack(commands
, asoc
,
1088 case SCTP_CMD_GEN_INIT_ACK
:
1089 /* Generate an INIT ACK chunk. */
1090 new_obj
= sctp_make_init_ack(asoc
, chunk
, GFP_ATOMIC
,
1095 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
,
1096 SCTP_CHUNK(new_obj
));
1099 case SCTP_CMD_PEER_INIT
:
1100 /* Process a unified INIT from the peer.
1101 * Note: Only used during INIT-ACK processing. If
1102 * there is an error just return to the outter
1103 * layer which will bail.
1105 error
= sctp_cmd_process_init(commands
, asoc
, chunk
,
1109 case SCTP_CMD_GEN_COOKIE_ECHO
:
1110 /* Generate a COOKIE ECHO chunk. */
1111 new_obj
= sctp_make_cookie_echo(asoc
, chunk
);
1114 sctp_chunk_free(cmd
->obj
.ptr
);
1117 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
,
1118 SCTP_CHUNK(new_obj
));
1120 /* If there is an ERROR chunk to be sent along with
1121 * the COOKIE_ECHO, send it, too.
1124 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
,
1125 SCTP_CHUNK(cmd
->obj
.ptr
));
1127 /* FIXME - Eventually come up with a cleaner way to
1128 * enabling COOKIE-ECHO + DATA bundling during
1129 * multihoming stale cookie scenarios, the following
1130 * command plays with asoc->peer.retran_path to
1131 * avoid the problem of sending the COOKIE-ECHO and
1132 * DATA in different paths, which could result
1133 * in the association being ABORTed if the DATA chunk
1134 * is processed first by the server. Checking the
1135 * init error counter simply causes this command
1136 * to be executed only during failed attempts of
1137 * association establishment.
1139 if ((asoc
->peer
.retran_path
!=
1140 asoc
->peer
.primary_path
) &&
1141 (asoc
->init_err_counter
> 0)) {
1142 sctp_add_cmd_sf(commands
,
1143 SCTP_CMD_FORCE_PRIM_RETRAN
,
1149 case SCTP_CMD_GEN_SHUTDOWN
:
1150 /* Generate SHUTDOWN when in SHUTDOWN_SENT state.
1151 * Reset error counts.
1153 asoc
->overall_error_count
= 0;
1155 /* Generate a SHUTDOWN chunk. */
1156 new_obj
= sctp_make_shutdown(asoc
, chunk
);
1159 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
,
1160 SCTP_CHUNK(new_obj
));
1163 case SCTP_CMD_CHUNK_ULP
:
1164 /* Send a chunk to the sockets layer. */
1165 SCTP_DEBUG_PRINTK("sm_sideff: %s %p, %s %p.\n",
1166 "chunk_up:", cmd
->obj
.ptr
,
1167 "ulpq:", &asoc
->ulpq
);
1168 sctp_ulpq_tail_data(&asoc
->ulpq
, cmd
->obj
.ptr
,
1172 case SCTP_CMD_EVENT_ULP
:
1173 /* Send a notification to the sockets layer. */
1174 SCTP_DEBUG_PRINTK("sm_sideff: %s %p, %s %p.\n",
1175 "event_up:",cmd
->obj
.ptr
,
1176 "ulpq:",&asoc
->ulpq
);
1177 sctp_ulpq_tail_event(&asoc
->ulpq
, cmd
->obj
.ptr
);
1180 case SCTP_CMD_REPLY
:
1181 /* If an caller has not already corked, do cork. */
1182 if (!asoc
->outqueue
.cork
) {
1183 sctp_outq_cork(&asoc
->outqueue
);
1186 /* Send a chunk to our peer. */
1187 error
= sctp_outq_tail(&asoc
->outqueue
, cmd
->obj
.ptr
);
1190 case SCTP_CMD_SEND_PKT
:
1191 /* Send a full packet to our peer. */
1192 packet
= cmd
->obj
.ptr
;
1193 sctp_packet_transmit(packet
);
1194 sctp_ootb_pkt_free(packet
);
1197 case SCTP_CMD_RETRAN
:
1198 /* Mark a transport for retransmission. */
1199 sctp_retransmit(&asoc
->outqueue
, cmd
->obj
.transport
,
1203 case SCTP_CMD_TRANSMIT
:
1204 /* Kick start transmission. */
1205 error
= sctp_outq_uncork(&asoc
->outqueue
);
1209 case SCTP_CMD_ECN_CE
:
1210 /* Do delayed CE processing. */
1211 sctp_do_ecn_ce_work(asoc
, cmd
->obj
.u32
);
1214 case SCTP_CMD_ECN_ECNE
:
1215 /* Do delayed ECNE processing. */
1216 new_obj
= sctp_do_ecn_ecne_work(asoc
, cmd
->obj
.u32
,
1219 sctp_add_cmd_sf(commands
, SCTP_CMD_REPLY
,
1220 SCTP_CHUNK(new_obj
));
1223 case SCTP_CMD_ECN_CWR
:
1224 /* Do delayed CWR processing. */
1225 sctp_do_ecn_cwr_work(asoc
, cmd
->obj
.u32
);
1228 case SCTP_CMD_SETUP_T2
:
1229 sctp_cmd_setup_t2(commands
, asoc
, cmd
->obj
.ptr
);
1232 case SCTP_CMD_TIMER_START
:
1233 timer
= &asoc
->timers
[cmd
->obj
.to
];
1234 timeout
= asoc
->timeouts
[cmd
->obj
.to
];
1238 timer
->expires
= jiffies
+ timeout
;
1239 sctp_association_hold(asoc
);
1243 case SCTP_CMD_TIMER_RESTART
:
1244 timer
= &asoc
->timers
[cmd
->obj
.to
];
1245 timeout
= asoc
->timeouts
[cmd
->obj
.to
];
1246 if (!mod_timer(timer
, jiffies
+ timeout
))
1247 sctp_association_hold(asoc
);
1250 case SCTP_CMD_TIMER_STOP
:
1251 timer
= &asoc
->timers
[cmd
->obj
.to
];
1252 if (timer_pending(timer
) && del_timer(timer
))
1253 sctp_association_put(asoc
);
1256 case SCTP_CMD_INIT_CHOOSE_TRANSPORT
:
1257 chunk
= cmd
->obj
.ptr
;
1258 t
= sctp_assoc_choose_init_transport(asoc
);
1259 asoc
->init_last_sent_to
= t
;
1260 chunk
->transport
= t
;
1261 t
->init_sent_count
++;
1264 case SCTP_CMD_INIT_RESTART
:
1265 /* Do the needed accounting and updates
1266 * associated with restarting an initialization
1267 * timer. Only multiply the timeout by two if
1268 * all transports have been tried at the current
1271 t
= asoc
->init_last_sent_to
;
1272 asoc
->init_err_counter
++;
1274 if (t
->init_sent_count
> (asoc
->init_cycle
+ 1)) {
1275 asoc
->timeouts
[SCTP_EVENT_TIMEOUT_T1_INIT
] *= 2;
1276 if (asoc
->timeouts
[SCTP_EVENT_TIMEOUT_T1_INIT
] >
1277 asoc
->max_init_timeo
) {
1278 asoc
->timeouts
[SCTP_EVENT_TIMEOUT_T1_INIT
] =
1279 asoc
->max_init_timeo
;
1283 "T1 INIT Timeout adjustment"
1284 " init_err_counter: %d"
1287 asoc
->init_err_counter
,
1289 asoc
->timeouts
[SCTP_EVENT_TIMEOUT_T1_INIT
]);
1292 sctp_add_cmd_sf(commands
, SCTP_CMD_TIMER_RESTART
,
1293 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT
));
1296 case SCTP_CMD_COOKIEECHO_RESTART
:
1297 /* Do the needed accounting and updates
1298 * associated with restarting an initialization
1299 * timer. Only multiply the timeout by two if
1300 * all transports have been tried at the current
1303 asoc
->init_err_counter
++;
1305 asoc
->timeouts
[SCTP_EVENT_TIMEOUT_T1_COOKIE
] *= 2;
1306 if (asoc
->timeouts
[SCTP_EVENT_TIMEOUT_T1_COOKIE
] >
1307 asoc
->max_init_timeo
) {
1308 asoc
->timeouts
[SCTP_EVENT_TIMEOUT_T1_COOKIE
] =
1309 asoc
->max_init_timeo
;
1312 "T1 COOKIE Timeout adjustment"
1313 " init_err_counter: %d"
1315 asoc
->init_err_counter
,
1316 asoc
->timeouts
[SCTP_EVENT_TIMEOUT_T1_COOKIE
]);
1318 /* If we've sent any data bundled with
1319 * COOKIE-ECHO we need to resend.
1321 list_for_each(pos
, &asoc
->peer
.transport_addr_list
) {
1322 t
= list_entry(pos
, struct sctp_transport
,
1324 sctp_retransmit_mark(&asoc
->outqueue
, t
, 0);
1327 sctp_add_cmd_sf(commands
,
1328 SCTP_CMD_TIMER_RESTART
,
1329 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_COOKIE
));
1332 case SCTP_CMD_INIT_FAILED
:
1333 sctp_cmd_init_failed(commands
, asoc
, cmd
->obj
.u32
);
1336 case SCTP_CMD_ASSOC_FAILED
:
1337 sctp_cmd_assoc_failed(commands
, asoc
, event_type
,
1338 subtype
, chunk
, cmd
->obj
.u32
);
1341 case SCTP_CMD_INIT_COUNTER_INC
:
1342 asoc
->init_err_counter
++;
1345 case SCTP_CMD_INIT_COUNTER_RESET
:
1346 asoc
->init_err_counter
= 0;
1347 asoc
->init_cycle
= 0;
1350 case SCTP_CMD_REPORT_DUP
:
1351 sctp_tsnmap_mark_dup(&asoc
->peer
.tsn_map
,
1355 case SCTP_CMD_REPORT_BAD_TAG
:
1356 SCTP_DEBUG_PRINTK("vtag mismatch!\n");
1359 case SCTP_CMD_STRIKE
:
1360 /* Mark one strike against a transport. */
1361 sctp_do_8_2_transport_strike(asoc
, cmd
->obj
.transport
);
1364 case SCTP_CMD_TRANSPORT_RESET
:
1365 t
= cmd
->obj
.transport
;
1366 sctp_cmd_transport_reset(commands
, asoc
, t
);
1369 case SCTP_CMD_TRANSPORT_ON
:
1370 t
= cmd
->obj
.transport
;
1371 sctp_cmd_transport_on(commands
, asoc
, t
, chunk
);
1374 case SCTP_CMD_HB_TIMERS_START
:
1375 sctp_cmd_hb_timers_start(commands
, asoc
);
1378 case SCTP_CMD_HB_TIMER_UPDATE
:
1379 t
= cmd
->obj
.transport
;
1380 sctp_cmd_hb_timer_update(commands
, asoc
, t
);
1383 case SCTP_CMD_HB_TIMERS_STOP
:
1384 sctp_cmd_hb_timers_stop(commands
, asoc
);
1387 case SCTP_CMD_REPORT_ERROR
:
1388 error
= cmd
->obj
.error
;
1391 case SCTP_CMD_PROCESS_CTSN
:
1392 /* Dummy up a SACK for processing. */
1393 sackh
.cum_tsn_ack
= cmd
->obj
.u32
;
1395 sackh
.num_gap_ack_blocks
= 0;
1396 sackh
.num_dup_tsns
= 0;
1397 sctp_add_cmd_sf(commands
, SCTP_CMD_PROCESS_SACK
,
1398 SCTP_SACKH(&sackh
));
1401 case SCTP_CMD_DISCARD_PACKET
:
1402 /* We need to discard the whole packet. */
1403 chunk
->pdiscard
= 1;
1406 case SCTP_CMD_RTO_PENDING
:
1407 t
= cmd
->obj
.transport
;
1411 case SCTP_CMD_PART_DELIVER
:
1412 sctp_ulpq_partial_delivery(&asoc
->ulpq
, cmd
->obj
.ptr
,
1416 case SCTP_CMD_RENEGE
:
1417 sctp_ulpq_renege(&asoc
->ulpq
, cmd
->obj
.ptr
,
1421 case SCTP_CMD_SETUP_T4
:
1422 sctp_cmd_setup_t4(commands
, asoc
, cmd
->obj
.ptr
);
1425 case SCTP_CMD_PROCESS_OPERR
:
1426 sctp_cmd_process_operr(commands
, asoc
, chunk
);
1428 case SCTP_CMD_CLEAR_INIT_TAG
:
1429 asoc
->peer
.i
.init_tag
= 0;
1431 case SCTP_CMD_DEL_NON_PRIMARY
:
1432 sctp_cmd_del_non_primary(asoc
);
1434 case SCTP_CMD_T3_RTX_TIMERS_STOP
:
1435 sctp_cmd_t3_rtx_timers_stop(commands
, asoc
);
1437 case SCTP_CMD_FORCE_PRIM_RETRAN
:
1438 t
= asoc
->peer
.retran_path
;
1439 asoc
->peer
.retran_path
= asoc
->peer
.primary_path
;
1440 error
= sctp_outq_uncork(&asoc
->outqueue
);
1442 asoc
->peer
.retran_path
= t
;
1445 printk(KERN_WARNING
"Impossible command: %u, %p\n",
1446 cmd
->verb
, cmd
->obj
.ptr
);
1455 sctp_outq_uncork(&asoc
->outqueue
);