]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/sctp/sm_sideeffect.c
sctp: remove the unused typedef sctp_packet_phandler_t
[mirror_ubuntu-bionic-kernel.git] / net / sctp / sm_sideeffect.c
CommitLineData
60c778b2 1/* SCTP kernel implementation
1da177e4
LT
2 * (C) Copyright IBM Corp. 2001, 2004
3 * Copyright (c) 1999 Cisco, Inc.
4 * Copyright (c) 1999-2001 Motorola, Inc.
5 *
60c778b2 6 * This file is part of the SCTP kernel implementation
1da177e4
LT
7 *
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.
11 *
60c778b2 12 * This SCTP implementation is free software;
1da177e4
LT
13 * you can redistribute it and/or modify it under the terms of
14 * the GNU General Public License as published by
15 * the Free Software Foundation; either version 2, or (at your option)
16 * any later version.
17 *
60c778b2 18 * This SCTP implementation is distributed in the hope that it
1da177e4
LT
19 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
20 * ************************
21 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
22 * See the GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
4b2f13a2
JK
25 * along with GNU CC; see the file COPYING. If not, see
26 * <http://www.gnu.org/licenses/>.
1da177e4
LT
27 *
28 * Please send any bug reports or fixes you make to the
29 * email address(es):
91705c61 30 * lksctp developers <linux-sctp@vger.kernel.org>
1da177e4 31 *
1da177e4
LT
32 * Written or modified by:
33 * La Monte H.P. Yarroll <piggy@acm.org>
34 * Karl Knutson <karl@athena.chicago.il.us>
35 * Jon Grimm <jgrimm@austin.ibm.com>
36 * Hui Huang <hui.huang@nokia.com>
37 * Dajiang Zhang <dajiang.zhang@nokia.com>
38 * Daisy Chang <daisyc@us.ibm.com>
39 * Sridhar Samudrala <sri@us.ibm.com>
40 * Ardelle Fan <ardelle.fan@intel.com>
1da177e4
LT
41 */
42
145ce502
JP
43#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
44
1da177e4
LT
45#include <linux/skbuff.h>
46#include <linux/types.h>
47#include <linux/socket.h>
48#include <linux/ip.h>
5a0e3ad6 49#include <linux/gfp.h>
1da177e4
LT
50#include <net/sock.h>
51#include <net/sctp/sctp.h>
52#include <net/sctp/sm.h>
53
61f0eb07 54static int sctp_cmd_interpreter(enum sctp_event event_type,
bfc6f827 55 union sctp_subtype subtype,
52106019 56 enum sctp_state state,
1da177e4
LT
57 struct sctp_endpoint *ep,
58 struct sctp_association *asoc,
59 void *event_arg,
d808ad9a 60 sctp_disposition_t status,
1da177e4 61 sctp_cmd_seq_t *commands,
dd0fc66f 62 gfp_t gfp);
bfc6f827
XL
63static int sctp_side_effects(enum sctp_event event_type,
64 union sctp_subtype subtype,
52106019 65 enum sctp_state state,
1da177e4 66 struct sctp_endpoint *ep,
649621e3 67 struct sctp_association **asoc,
1da177e4
LT
68 void *event_arg,
69 sctp_disposition_t status,
70 sctp_cmd_seq_t *commands,
dd0fc66f 71 gfp_t gfp);
1da177e4
LT
72
73/********************************************************************
74 * Helper functions
75 ********************************************************************/
76
77/* A helper function for delayed processing of INET ECN CE bit. */
d808ad9a 78static void sctp_do_ecn_ce_work(struct sctp_association *asoc,
1da177e4
LT
79 __u32 lowest_tsn)
80{
81 /* Save the TSN away for comparison when we receive CWR */
82
83 asoc->last_ecne_tsn = lowest_tsn;
84 asoc->need_ecne = 1;
85}
86
87/* Helper function for delayed processing of SCTP ECNE chunk. */
88/* RFC 2960 Appendix A
89 *
90 * RFC 2481 details a specific bit for a sender to send in
91 * the header of its next outbound TCP segment to indicate to
92 * its peer that it has reduced its congestion window. This
93 * is termed the CWR bit. For SCTP the same indication is made
94 * by including the CWR chunk. This chunk contains one data
95 * element, i.e. the TSN number that was sent in the ECNE chunk.
96 * This element represents the lowest TSN number in the datagram
97 * that was originally marked with the CE bit.
98 */
99static struct sctp_chunk *sctp_do_ecn_ecne_work(struct sctp_association *asoc,
100 __u32 lowest_tsn,
101 struct sctp_chunk *chunk)
102{
103 struct sctp_chunk *repl;
104
105 /* Our previously transmitted packet ran into some congestion
106 * so we should take action by reducing cwnd and ssthresh
107 * and then ACK our peer that we we've done so by
108 * sending a CWR.
109 */
110
111 /* First, try to determine if we want to actually lower
112 * our cwnd variables. Only lower them if the ECNE looks more
113 * recent than the last response.
114 */
115 if (TSN_lt(asoc->last_cwr_tsn, lowest_tsn)) {
116 struct sctp_transport *transport;
117
118 /* Find which transport's congestion variables
119 * need to be adjusted.
120 */
121 transport = sctp_assoc_lookup_tsn(asoc, lowest_tsn);
122
123 /* Update the congestion variables. */
124 if (transport)
125 sctp_transport_lower_cwnd(transport,
126 SCTP_LOWER_CWND_ECNE);
127 asoc->last_cwr_tsn = lowest_tsn;
128 }
129
130 /* Always try to quiet the other end. In case of lost CWR,
131 * resend last_cwr_tsn.
132 */
133 repl = sctp_make_cwr(asoc, asoc->last_cwr_tsn, chunk);
134
135 /* If we run out of memory, it will look like a lost CWR. We'll
136 * get back in sync eventually.
137 */
138 return repl;
139}
140
141/* Helper function to do delayed processing of ECN CWR chunk. */
142static void sctp_do_ecn_cwr_work(struct sctp_association *asoc,
143 __u32 lowest_tsn)
144{
145 /* Turn off ECNE getting auto-prepended to every outgoing
146 * packet
147 */
148 asoc->need_ecne = 0;
149}
150
151/* Generate SACK if necessary. We call this at the end of a packet. */
152static int sctp_gen_sack(struct sctp_association *asoc, int force,
153 sctp_cmd_seq_t *commands)
154{
155 __u32 ctsn, max_tsn_seen;
156 struct sctp_chunk *sack;
52ccb8e9 157 struct sctp_transport *trans = asoc->peer.last_data_from;
1da177e4
LT
158 int error = 0;
159
d808ad9a 160 if (force ||
52ccb8e9
FF
161 (!trans && (asoc->param_flags & SPP_SACKDELAY_DISABLE)) ||
162 (trans && (trans->param_flags & SPP_SACKDELAY_DISABLE)))
1da177e4
LT
163 asoc->peer.sack_needed = 1;
164
165 ctsn = sctp_tsnmap_get_ctsn(&asoc->peer.tsn_map);
166 max_tsn_seen = sctp_tsnmap_get_max_tsn_seen(&asoc->peer.tsn_map);
167
168 /* From 12.2 Parameters necessary per association (i.e. the TCB):
169 *
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).
174 *
175 * [This is actually not mentioned in Section 6, but we
176 * implement it here anyway. --piggy]
177 */
d808ad9a 178 if (max_tsn_seen != ctsn)
1da177e4
LT
179 asoc->peer.sack_needed = 1;
180
181 /* From 6.2 Acknowledgement on Reception of DATA Chunks:
182 *
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. ...
188 */
189 if (!asoc->peer.sack_needed) {
d364d927 190 asoc->peer.sack_cnt++;
52ccb8e9
FF
191
192 /* Set the SACK delay timeout based on the
193 * SACK delay for the last transport
194 * data was received from, or the default
195 * for the association.
196 */
d364d927
WY
197 if (trans) {
198 /* We will need a SACK for the next packet. */
199 if (asoc->peer.sack_cnt >= trans->sackfreq - 1)
200 asoc->peer.sack_needed = 1;
201
d808ad9a 202 asoc->timeouts[SCTP_EVENT_TIMEOUT_SACK] =
52ccb8e9 203 trans->sackdelay;
d364d927
WY
204 } else {
205 /* We will need a SACK for the next packet. */
206 if (asoc->peer.sack_cnt >= asoc->sackfreq - 1)
207 asoc->peer.sack_needed = 1;
208
d808ad9a 209 asoc->timeouts[SCTP_EVENT_TIMEOUT_SACK] =
52ccb8e9 210 asoc->sackdelay;
d364d927 211 }
52ccb8e9
FF
212
213 /* Restart the SACK timer. */
214 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
215 SCTP_TO(SCTP_EVENT_TIMEOUT_SACK));
1da177e4 216 } else {
07b4d6a1
MRL
217 __u32 old_a_rwnd = asoc->a_rwnd;
218
90f2f531 219 asoc->a_rwnd = asoc->rwnd;
1da177e4 220 sack = sctp_make_sack(asoc);
07b4d6a1
MRL
221 if (!sack) {
222 asoc->a_rwnd = old_a_rwnd;
1da177e4 223 goto nomem;
07b4d6a1 224 }
1da177e4
LT
225
226 asoc->peer.sack_needed = 0;
d364d927 227 asoc->peer.sack_cnt = 0;
1da177e4 228
732ba35e 229 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(sack));
1da177e4
LT
230
231 /* Stop the SACK timer. */
232 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
233 SCTP_TO(SCTP_EVENT_TIMEOUT_SACK));
234 }
52ccb8e9 235
1da177e4
LT
236 return error;
237nomem:
238 error = -ENOMEM;
239 return error;
240}
241
242/* When the T3-RTX timer expires, it calls this function to create the
243 * relevant state machine event.
244 */
245void sctp_generate_t3_rtx_event(unsigned long peer)
246{
247 int error;
248 struct sctp_transport *transport = (struct sctp_transport *) peer;
249 struct sctp_association *asoc = transport->asoc;
635682a1
KH
250 struct sock *sk = asoc->base.sk;
251 struct net *net = sock_net(sk);
1da177e4
LT
252
253 /* Check whether a task is in the sock. */
254
635682a1
KH
255 bh_lock_sock(sk);
256 if (sock_owned_by_user(sk)) {
bb33381d 257 pr_debug("%s: sock is busy\n", __func__);
1da177e4
LT
258
259 /* Try again later. */
260 if (!mod_timer(&transport->T3_rtx_timer, jiffies + (HZ/20)))
261 sctp_transport_hold(transport);
262 goto out_unlock;
263 }
264
1da177e4 265 /* Run through the state machine. */
55e26eb9 266 error = sctp_do_sm(net, SCTP_EVENT_T_TIMEOUT,
1da177e4
LT
267 SCTP_ST_TIMEOUT(SCTP_EVENT_TIMEOUT_T3_RTX),
268 asoc->state,
269 asoc->ep, asoc,
270 transport, GFP_ATOMIC);
271
272 if (error)
635682a1 273 sk->sk_err = -error;
1da177e4
LT
274
275out_unlock:
635682a1 276 bh_unlock_sock(sk);
1da177e4
LT
277 sctp_transport_put(transport);
278}
279
280/* This is a sa interface for producing timeout events. It works
281 * for timeouts which use the association as their parameter.
282 */
283static void sctp_generate_timeout_event(struct sctp_association *asoc,
19cd1592 284 enum sctp_event_timeout timeout_type)
1da177e4 285{
635682a1
KH
286 struct sock *sk = asoc->base.sk;
287 struct net *net = sock_net(sk);
1da177e4
LT
288 int error = 0;
289
635682a1
KH
290 bh_lock_sock(sk);
291 if (sock_owned_by_user(sk)) {
bb33381d
DB
292 pr_debug("%s: sock is busy: timer %d\n", __func__,
293 timeout_type);
1da177e4
LT
294
295 /* Try again later. */
296 if (!mod_timer(&asoc->timers[timeout_type], jiffies + (HZ/20)))
297 sctp_association_hold(asoc);
298 goto out_unlock;
299 }
300
301 /* Is this association really dead and just waiting around for
302 * the timer to let go of the reference?
303 */
304 if (asoc->base.dead)
305 goto out_unlock;
306
307 /* Run through the state machine. */
55e26eb9 308 error = sctp_do_sm(net, SCTP_EVENT_T_TIMEOUT,
1da177e4
LT
309 SCTP_ST_TIMEOUT(timeout_type),
310 asoc->state, asoc->ep, asoc,
311 (void *)timeout_type, GFP_ATOMIC);
312
313 if (error)
635682a1 314 sk->sk_err = -error;
1da177e4
LT
315
316out_unlock:
635682a1 317 bh_unlock_sock(sk);
1da177e4
LT
318 sctp_association_put(asoc);
319}
320
321static void sctp_generate_t1_cookie_event(unsigned long data)
322{
323 struct sctp_association *asoc = (struct sctp_association *) data;
324 sctp_generate_timeout_event(asoc, SCTP_EVENT_TIMEOUT_T1_COOKIE);
325}
326
327static void sctp_generate_t1_init_event(unsigned long data)
328{
329 struct sctp_association *asoc = (struct sctp_association *) data;
330 sctp_generate_timeout_event(asoc, SCTP_EVENT_TIMEOUT_T1_INIT);
331}
332
333static void sctp_generate_t2_shutdown_event(unsigned long data)
334{
335 struct sctp_association *asoc = (struct sctp_association *) data;
336 sctp_generate_timeout_event(asoc, SCTP_EVENT_TIMEOUT_T2_SHUTDOWN);
337}
338
339static void sctp_generate_t4_rto_event(unsigned long data)
340{
341 struct sctp_association *asoc = (struct sctp_association *) data;
342 sctp_generate_timeout_event(asoc, SCTP_EVENT_TIMEOUT_T4_RTO);
343}
344
345static void sctp_generate_t5_shutdown_guard_event(unsigned long data)
346{
d808ad9a
YH
347 struct sctp_association *asoc = (struct sctp_association *)data;
348 sctp_generate_timeout_event(asoc,
1da177e4
LT
349 SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD);
350
351} /* sctp_generate_t5_shutdown_guard_event() */
352
353static void sctp_generate_autoclose_event(unsigned long data)
354{
355 struct sctp_association *asoc = (struct sctp_association *) data;
356 sctp_generate_timeout_event(asoc, SCTP_EVENT_TIMEOUT_AUTOCLOSE);
357}
358
359/* Generate a heart beat event. If the sock is busy, reschedule. Make
360 * sure that the transport is still valid.
361 */
362void sctp_generate_heartbeat_event(unsigned long data)
363{
364 int error = 0;
365 struct sctp_transport *transport = (struct sctp_transport *) data;
366 struct sctp_association *asoc = transport->asoc;
635682a1
KH
367 struct sock *sk = asoc->base.sk;
368 struct net *net = sock_net(sk);
ba6f5e33 369 u32 elapsed, timeout;
1da177e4 370
635682a1
KH
371 bh_lock_sock(sk);
372 if (sock_owned_by_user(sk)) {
bb33381d 373 pr_debug("%s: sock is busy\n", __func__);
1da177e4
LT
374
375 /* Try again later. */
376 if (!mod_timer(&transport->hb_timer, jiffies + (HZ/20)))
377 sctp_transport_hold(transport);
378 goto out_unlock;
379 }
380
ba6f5e33
MRL
381 /* Check if we should still send the heartbeat or reschedule */
382 elapsed = jiffies - transport->last_time_sent;
383 timeout = sctp_transport_timeout(transport);
384 if (elapsed < timeout) {
385 elapsed = timeout - elapsed;
386 if (!mod_timer(&transport->hb_timer, jiffies + elapsed))
387 sctp_transport_hold(transport);
388 goto out_unlock;
389 }
390
55e26eb9 391 error = sctp_do_sm(net, SCTP_EVENT_T_TIMEOUT,
1da177e4
LT
392 SCTP_ST_TIMEOUT(SCTP_EVENT_TIMEOUT_HEARTBEAT),
393 asoc->state, asoc->ep, asoc,
394 transport, GFP_ATOMIC);
395
f05940e6 396 if (error)
635682a1 397 sk->sk_err = -error;
1da177e4
LT
398
399out_unlock:
635682a1 400 bh_unlock_sock(sk);
1da177e4
LT
401 sctp_transport_put(transport);
402}
403
50b5d6ad
VY
404/* Handle the timeout of the ICMP protocol unreachable timer. Trigger
405 * the correct state machine transition that will close the association.
406 */
407void sctp_generate_proto_unreach_event(unsigned long data)
408{
409 struct sctp_transport *transport = (struct sctp_transport *) data;
410 struct sctp_association *asoc = transport->asoc;
635682a1
KH
411 struct sock *sk = asoc->base.sk;
412 struct net *net = sock_net(sk);
cb3f837b 413
635682a1
KH
414 bh_lock_sock(sk);
415 if (sock_owned_by_user(sk)) {
bb33381d 416 pr_debug("%s: sock is busy\n", __func__);
50b5d6ad
VY
417
418 /* Try again later. */
419 if (!mod_timer(&transport->proto_unreach_timer,
420 jiffies + (HZ/20)))
421 sctp_association_hold(asoc);
422 goto out_unlock;
423 }
424
425 /* Is this structure just waiting around for us to actually
426 * get destroyed?
427 */
428 if (asoc->base.dead)
429 goto out_unlock;
430
55e26eb9 431 sctp_do_sm(net, SCTP_EVENT_T_OTHER,
50b5d6ad
VY
432 SCTP_ST_OTHER(SCTP_EVENT_ICMP_PROTO_UNREACH),
433 asoc->state, asoc->ep, asoc, transport, GFP_ATOMIC);
434
435out_unlock:
635682a1 436 bh_unlock_sock(sk);
50b5d6ad
VY
437 sctp_association_put(asoc);
438}
439
7b9438de
XL
440 /* Handle the timeout of the RE-CONFIG timer. */
441void sctp_generate_reconf_event(unsigned long data)
442{
443 struct sctp_transport *transport = (struct sctp_transport *)data;
444 struct sctp_association *asoc = transport->asoc;
445 struct sock *sk = asoc->base.sk;
446 struct net *net = sock_net(sk);
447 int error = 0;
448
449 bh_lock_sock(sk);
450 if (sock_owned_by_user(sk)) {
451 pr_debug("%s: sock is busy\n", __func__);
452
453 /* Try again later. */
454 if (!mod_timer(&transport->reconf_timer, jiffies + (HZ / 20)))
455 sctp_transport_hold(transport);
456 goto out_unlock;
457 }
458
459 error = sctp_do_sm(net, SCTP_EVENT_T_TIMEOUT,
460 SCTP_ST_TIMEOUT(SCTP_EVENT_TIMEOUT_RECONF),
461 asoc->state, asoc->ep, asoc,
462 transport, GFP_ATOMIC);
463
464 if (error)
465 sk->sk_err = -error;
466
467out_unlock:
468 bh_unlock_sock(sk);
469 sctp_transport_put(transport);
470}
50b5d6ad 471
1da177e4
LT
472/* Inject a SACK Timeout event into the state machine. */
473static void sctp_generate_sack_event(unsigned long data)
474{
475 struct sctp_association *asoc = (struct sctp_association *) data;
476 sctp_generate_timeout_event(asoc, SCTP_EVENT_TIMEOUT_SACK);
477}
478
479sctp_timer_event_t *sctp_timer_events[SCTP_NUM_TIMEOUT_TYPES] = {
480 NULL,
481 sctp_generate_t1_cookie_event,
482 sctp_generate_t1_init_event,
483 sctp_generate_t2_shutdown_event,
484 NULL,
485 sctp_generate_t4_rto_event,
486 sctp_generate_t5_shutdown_guard_event,
1e7d3d90 487 NULL,
7b9438de 488 NULL,
1da177e4
LT
489 sctp_generate_sack_event,
490 sctp_generate_autoclose_event,
491};
492
493
494/* RFC 2960 8.2 Path Failure Detection
495 *
496 * When its peer endpoint is multi-homed, an endpoint should keep a
497 * error counter for each of the destination transport addresses of the
498 * peer endpoint.
499 *
500 * Each time the T3-rtx timer expires on any address, or when a
501 * HEARTBEAT sent to an idle address is not acknowledged within a RTO,
502 * the error counter of that destination address will be incremented.
503 * When the value in the error counter exceeds the protocol parameter
504 * 'Path.Max.Retrans' of that destination address, the endpoint should
505 * mark the destination transport address as inactive, and a
506 * notification SHOULD be sent to the upper layer.
507 *
508 */
5aa93bcf
NH
509static void sctp_do_8_2_transport_strike(sctp_cmd_seq_t *commands,
510 struct sctp_association *asoc,
7e99013a
VY
511 struct sctp_transport *transport,
512 int is_hb)
1da177e4 513{
566178f8
ZY
514 struct net *net = sock_net(asoc->base.sk);
515
1da177e4
LT
516 /* The check for association's overall error counter exceeding the
517 * threshold is done in the state function.
518 */
b9f84786
VY
519 /* We are here due to a timer expiration. If the timer was
520 * not a HEARTBEAT, then normal error tracking is done.
521 * If the timer was a heartbeat, we only increment error counts
522 * when we already have an outstanding HEARTBEAT that has not
523 * been acknowledged.
25985edc 524 * Additionally, some tranport states inhibit error increments.
ad8fec17 525 */
b9f84786 526 if (!is_hb) {
ad8fec17 527 asoc->overall_error_count++;
b9f84786
VY
528 if (transport->state != SCTP_INACTIVE)
529 transport->error_count++;
530 } else if (transport->hb_sent) {
531 if (transport->state != SCTP_UNCONFIRMED)
532 asoc->overall_error_count++;
533 if (transport->state != SCTP_INACTIVE)
534 transport->error_count++;
535 }
1da177e4 536
5aa93bcf 537 /* If the transport error count is greater than the pf_retrans
7cce3b75 538 * threshold, and less than pathmaxrtx, and if the current state
8c2eab90
KH
539 * is SCTP_ACTIVE, then mark this transport as Partially Failed,
540 * see SCTP Quick Failover Draft, section 5.1
5aa93bcf 541 */
566178f8
ZY
542 if (net->sctp.pf_enable &&
543 (transport->state == SCTP_ACTIVE) &&
5aa93bcf
NH
544 (asoc->pf_retrans < transport->pathmaxrxt) &&
545 (transport->error_count > asoc->pf_retrans)) {
546
547 sctp_assoc_control_transport(asoc, transport,
548 SCTP_TRANSPORT_PF,
549 0);
550
551 /* Update the hb timer to resend a heartbeat every rto */
ba6f5e33 552 sctp_transport_reset_hb_timer(transport);
5aa93bcf
NH
553 }
554
3f7a87d2 555 if (transport->state != SCTP_INACTIVE &&
b9f84786 556 (transport->error_count > transport->pathmaxrxt)) {
bb33381d
DB
557 pr_debug("%s: association:%p transport addr:%pISpc failed\n",
558 __func__, asoc, &transport->ipaddr.sa);
559
1da177e4
LT
560 sctp_assoc_control_transport(asoc, transport,
561 SCTP_TRANSPORT_DOWN,
562 SCTP_FAILED_THRESHOLD);
563 }
564
565 /* E2) For the destination address for which the timer
566 * expires, set RTO <- RTO * 2 ("back off the timer"). The
567 * maximum value discussed in rule C7 above (RTO.max) may be
568 * used to provide an upper bound to this doubling operation.
faee47cd
VY
569 *
570 * Special Case: the first HB doesn't trigger exponential backoff.
3ad2f3fb 571 * The first unacknowledged HB triggers it. We do this with a flag
faee47cd 572 * that indicates that we have an outstanding HB.
1da177e4 573 */
7e99013a 574 if (!is_hb || transport->hb_sent) {
faee47cd 575 transport->rto = min((transport->rto * 2), transport->asoc->rto_max);
196d6759 576 sctp_max_rto(asoc, transport);
faee47cd 577 }
1da177e4
LT
578}
579
580/* Worker routine to handle INIT command failure. */
581static void sctp_cmd_init_failed(sctp_cmd_seq_t *commands,
582 struct sctp_association *asoc,
95c96174 583 unsigned int error)
1da177e4
LT
584{
585 struct sctp_ulpevent *event;
586
cb3f837b 587 event = sctp_ulpevent_make_assoc_change(asoc, 0, SCTP_CANT_STR_ASSOC,
a5a35e76 588 (__u16)error, 0, 0, NULL,
1da177e4
LT
589 GFP_ATOMIC);
590
591 if (event)
592 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP,
593 SCTP_ULPEVENT(event));
594
595 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
596 SCTP_STATE(SCTP_STATE_CLOSED));
597
598 /* SEND_FAILED sent later when cleaning up the association. */
599 asoc->outqueue.error = error;
600 sctp_add_cmd_sf(commands, SCTP_CMD_DELETE_TCB, SCTP_NULL());
601}
602
603/* Worker routine to handle SCTP_CMD_ASSOC_FAILED. */
604static void sctp_cmd_assoc_failed(sctp_cmd_seq_t *commands,
605 struct sctp_association *asoc,
61f0eb07 606 enum sctp_event event_type,
bfc6f827 607 union sctp_subtype subtype,
1da177e4 608 struct sctp_chunk *chunk,
95c96174 609 unsigned int error)
1da177e4
LT
610{
611 struct sctp_ulpevent *event;
de4594a5 612 struct sctp_chunk *abort;
1da177e4
LT
613 /* Cancel any partial delivery in progress. */
614 sctp_ulpq_abort_pd(&asoc->ulpq, GFP_ATOMIC);
615
a5a35e76
VY
616 if (event_type == SCTP_EVENT_T_CHUNK && subtype.chunk == SCTP_CID_ABORT)
617 event = sctp_ulpevent_make_assoc_change(asoc, 0, SCTP_COMM_LOST,
618 (__u16)error, 0, 0, chunk,
619 GFP_ATOMIC);
620 else
621 event = sctp_ulpevent_make_assoc_change(asoc, 0, SCTP_COMM_LOST,
622 (__u16)error, 0, 0, NULL,
1da177e4
LT
623 GFP_ATOMIC);
624 if (event)
625 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP,
626 SCTP_ULPEVENT(event));
627
de4594a5
NH
628 if (asoc->overall_error_count >= asoc->max_retrans) {
629 abort = sctp_make_violation_max_retrans(asoc, chunk);
630 if (abort)
631 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
632 SCTP_CHUNK(abort));
633 }
634
1da177e4
LT
635 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
636 SCTP_STATE(SCTP_STATE_CLOSED));
637
1da177e4
LT
638 /* SEND_FAILED sent later when cleaning up the association. */
639 asoc->outqueue.error = error;
640 sctp_add_cmd_sf(commands, SCTP_CMD_DELETE_TCB, SCTP_NULL());
641}
642
643/* Process an init chunk (may be real INIT/INIT-ACK or an embedded INIT
644 * inside the cookie. In reality, this is only used for INIT-ACK processing
645 * since all other cases use "temporary" associations and can do all
646 * their work in statefuns directly.
647 */
648static int sctp_cmd_process_init(sctp_cmd_seq_t *commands,
649 struct sctp_association *asoc,
650 struct sctp_chunk *chunk,
01a992be 651 struct sctp_init_chunk *peer_init,
dd0fc66f 652 gfp_t gfp)
1da177e4
LT
653{
654 int error;
655
656 /* We only process the init as a sideeffect in a single
657 * case. This is when we process the INIT-ACK. If we
658 * fail during INIT processing (due to malloc problems),
659 * just return the error and stop processing the stack.
660 */
de6becdc 661 if (!sctp_process_init(asoc, chunk, sctp_source(chunk), peer_init, gfp))
1da177e4
LT
662 error = -ENOMEM;
663 else
664 error = 0;
665
666 return error;
667}
668
669/* Helper function to break out starting up of heartbeat timers. */
670static void sctp_cmd_hb_timers_start(sctp_cmd_seq_t *cmds,
671 struct sctp_association *asoc)
672{
673 struct sctp_transport *t;
1da177e4
LT
674
675 /* Start a heartbeat timer for each transport on the association.
676 * hold a reference on the transport to make sure none of
677 * the needed data structures go away.
678 */
ba6f5e33
MRL
679 list_for_each_entry(t, &asoc->peer.transport_addr_list, transports)
680 sctp_transport_reset_hb_timer(t);
1da177e4
LT
681}
682
683static void sctp_cmd_hb_timers_stop(sctp_cmd_seq_t *cmds,
684 struct sctp_association *asoc)
685{
686 struct sctp_transport *t;
1da177e4
LT
687
688 /* Stop all heartbeat timers. */
689
9dbc15f0
RD
690 list_for_each_entry(t, &asoc->peer.transport_addr_list,
691 transports) {
1da177e4
LT
692 if (del_timer(&t->hb_timer))
693 sctp_transport_put(t);
694 }
695}
696
697/* Helper function to stop any pending T3-RTX timers */
698static void sctp_cmd_t3_rtx_timers_stop(sctp_cmd_seq_t *cmds,
d808ad9a 699 struct sctp_association *asoc)
1da177e4
LT
700{
701 struct sctp_transport *t;
1da177e4 702
9dbc15f0
RD
703 list_for_each_entry(t, &asoc->peer.transport_addr_list,
704 transports) {
25cc4ae9 705 if (del_timer(&t->T3_rtx_timer))
1da177e4 706 sctp_transport_put(t);
1da177e4
LT
707 }
708}
709
710
1da177e4
LT
711/* Helper function to handle the reception of an HEARTBEAT ACK. */
712static void sctp_cmd_transport_on(sctp_cmd_seq_t *cmds,
713 struct sctp_association *asoc,
714 struct sctp_transport *t,
715 struct sctp_chunk *chunk)
716{
717 sctp_sender_hb_info_t *hbinfo;
34d2d89f 718 int was_unconfirmed = 0;
1da177e4
LT
719
720 /* 8.3 Upon the receipt of the HEARTBEAT ACK, the sender of the
721 * HEARTBEAT should clear the error counter of the destination
722 * transport address to which the HEARTBEAT was sent.
1da177e4
LT
723 */
724 t->error_count = 0;
f8d96052
TG
725
726 /*
727 * Although RFC4960 specifies that the overall error count must
728 * be cleared when a HEARTBEAT ACK is received, we make an
729 * exception while in SHUTDOWN PENDING. If the peer keeps its
730 * window shut forever, we may never be able to transmit our
731 * outstanding data and rely on the retransmission limit be reached
732 * to shutdown the association.
733 */
f648f807 734 if (t->asoc->state < SCTP_STATE_SHUTDOWN_PENDING)
f8d96052 735 t->asoc->overall_error_count = 0;
1da177e4 736
faee47cd
VY
737 /* Clear the hb_sent flag to signal that we had a good
738 * acknowledgement.
739 */
740 t->hb_sent = 0;
741
1da177e4
LT
742 /* Mark the destination transport address as active if it is not so
743 * marked.
744 */
34d2d89f
MH
745 if ((t->state == SCTP_INACTIVE) || (t->state == SCTP_UNCONFIRMED)) {
746 was_unconfirmed = 1;
1da177e4
LT
747 sctp_assoc_control_transport(asoc, t, SCTP_TRANSPORT_UP,
748 SCTP_HEARTBEAT_SUCCESS);
34d2d89f 749 }
1da177e4 750
5aa93bcf
NH
751 if (t->state == SCTP_PF)
752 sctp_assoc_control_transport(asoc, t, SCTP_TRANSPORT_UP,
753 SCTP_HEARTBEAT_SUCCESS);
754
8c2f414a
DB
755 /* HB-ACK was received for a the proper HB. Consider this
756 * forward progress.
757 */
758 if (t->dst)
c86a773c 759 sctp_transport_dst_confirm(t);
8c2f414a 760
1da177e4
LT
761 /* The receiver of the HEARTBEAT ACK should also perform an
762 * RTT measurement for that destination transport address
763 * using the time value carried in the HEARTBEAT ACK chunk.
e533ca16
VY
764 * If the transport's rto_pending variable has been cleared,
765 * it was most likely due to a retransmit. However, we want
766 * to re-enable it to properly update the rto.
1da177e4 767 */
e533ca16
VY
768 if (t->rto_pending == 0)
769 t->rto_pending = 1;
770
1da177e4
LT
771 hbinfo = (sctp_sender_hb_info_t *) chunk->skb->data;
772 sctp_transport_update_rto(t, (jiffies - hbinfo->sent_at));
ad8fec17
SS
773
774 /* Update the heartbeat timer. */
ba6f5e33 775 sctp_transport_reset_hb_timer(t);
34d2d89f
MH
776
777 if (was_unconfirmed && asoc->peer.transport_count == 1)
778 sctp_transport_immediate_rtx(t);
1da177e4
LT
779}
780
1da177e4
LT
781
782/* Helper function to process the process SACK command. */
783static int sctp_cmd_process_sack(sctp_cmd_seq_t *cmds,
784 struct sctp_association *asoc,
edfee033 785 struct sctp_chunk *chunk)
1da177e4 786{
2e3216cd 787 int err = 0;
1da177e4 788
edfee033 789 if (sctp_outq_sack(&asoc->outqueue, chunk)) {
55e26eb9
EB
790 struct net *net = sock_net(asoc->base.sk);
791
1da177e4 792 /* There are no more TSNs awaiting SACK. */
55e26eb9 793 err = sctp_do_sm(net, SCTP_EVENT_T_OTHER,
1da177e4
LT
794 SCTP_ST_OTHER(SCTP_EVENT_NO_PENDING_TSN),
795 asoc->state, asoc->ep, asoc, NULL,
796 GFP_ATOMIC);
1da177e4
LT
797 }
798
799 return err;
800}
801
802/* Helper function to set the timeout value for T2-SHUTDOWN timer and to set
803 * the transport for a shutdown chunk.
804 */
d808ad9a 805static void sctp_cmd_setup_t2(sctp_cmd_seq_t *cmds,
1da177e4
LT
806 struct sctp_association *asoc,
807 struct sctp_chunk *chunk)
808{
809 struct sctp_transport *t;
810
c17b02b3
VY
811 if (chunk->transport)
812 t = chunk->transport;
813 else {
814 t = sctp_assoc_choose_alter_transport(asoc,
9919b455 815 asoc->shutdown_last_sent_to);
c17b02b3
VY
816 chunk->transport = t;
817 }
1da177e4
LT
818 asoc->shutdown_last_sent_to = t;
819 asoc->timeouts[SCTP_EVENT_TIMEOUT_T2_SHUTDOWN] = t->rto;
1da177e4
LT
820}
821
5ee8aa68
XL
822static void sctp_cmd_assoc_update(sctp_cmd_seq_t *cmds,
823 struct sctp_association *asoc,
824 struct sctp_association *new)
825{
826 struct net *net = sock_net(asoc->base.sk);
827 struct sctp_chunk *abort;
828
829 if (!sctp_assoc_update(asoc, new))
830 return;
831
d8238d9d 832 abort = sctp_make_abort(asoc, NULL, sizeof(struct sctp_errhdr));
5ee8aa68
XL
833 if (abort) {
834 sctp_init_cause(abort, SCTP_ERROR_RSRC_LOW, 0);
835 sctp_add_cmd_sf(cmds, SCTP_CMD_REPLY, SCTP_CHUNK(abort));
836 }
837 sctp_add_cmd_sf(cmds, SCTP_CMD_SET_SK_ERR, SCTP_ERROR(ECONNABORTED));
838 sctp_add_cmd_sf(cmds, SCTP_CMD_ASSOC_FAILED,
839 SCTP_PERR(SCTP_ERROR_RSRC_LOW));
840 SCTP_INC_STATS(net, SCTP_MIB_ABORTEDS);
841 SCTP_DEC_STATS(net, SCTP_MIB_CURRESTAB);
842}
843
1da177e4 844/* Helper function to change the state of an association. */
d808ad9a 845static void sctp_cmd_new_state(sctp_cmd_seq_t *cmds,
1da177e4 846 struct sctp_association *asoc,
52106019 847 enum sctp_state state)
1da177e4
LT
848{
849 struct sock *sk = asoc->base.sk;
850
851 asoc->state = state;
852
bb33381d 853 pr_debug("%s: asoc:%p[%s]\n", __func__, asoc, sctp_state_tbl[state]);
3f7a87d2 854
1da177e4 855 if (sctp_style(sk, TCP)) {
3f7a87d2 856 /* Change the sk->sk_state of a TCP-style socket that has
af901ca1 857 * successfully completed a connect() call.
1da177e4
LT
858 */
859 if (sctp_state(asoc, ESTABLISHED) && sctp_sstate(sk, CLOSED))
860 sk->sk_state = SCTP_SS_ESTABLISHED;
861
862 /* Set the RCV_SHUTDOWN flag when a SHUTDOWN is received. */
863 if (sctp_state(asoc, SHUTDOWN_RECEIVED) &&
d46e416c
XL
864 sctp_sstate(sk, ESTABLISHED)) {
865 sk->sk_state = SCTP_SS_CLOSING;
1da177e4 866 sk->sk_shutdown |= RCV_SHUTDOWN;
d46e416c 867 }
1da177e4
LT
868 }
869
3f7a87d2
FF
870 if (sctp_state(asoc, COOKIE_WAIT)) {
871 /* Reset init timeouts since they may have been
872 * increased due to timer expirations.
873 */
874 asoc->timeouts[SCTP_EVENT_TIMEOUT_T1_INIT] =
1e7d3d90 875 asoc->rto_initial;
3f7a87d2 876 asoc->timeouts[SCTP_EVENT_TIMEOUT_T1_COOKIE] =
1e7d3d90 877 asoc->rto_initial;
3f7a87d2
FF
878 }
879
1da177e4
LT
880 if (sctp_state(asoc, ESTABLISHED) ||
881 sctp_state(asoc, CLOSED) ||
882 sctp_state(asoc, SHUTDOWN_RECEIVED)) {
883 /* Wake up any processes waiting in the asoc's wait queue in
884 * sctp_wait_for_connect() or sctp_wait_for_sndbuf().
d808ad9a 885 */
1da177e4
LT
886 if (waitqueue_active(&asoc->wait))
887 wake_up_interruptible(&asoc->wait);
888
889 /* Wake up any processes waiting in the sk's sleep queue of
890 * a TCP-style or UDP-style peeled-off socket in
891 * sctp_wait_for_accept() or sctp_wait_for_packet().
892 * For a UDP-style socket, the waiters are woken up by the
893 * notifications.
894 */
895 if (!sctp_style(sk, UDP))
896 sk->sk_state_change(sk);
897 }
b7018d0b
XL
898
899 if (sctp_state(asoc, SHUTDOWN_PENDING) &&
900 !sctp_outq_is_empty(&asoc->outqueue))
901 sctp_outq_uncork(&asoc->outqueue, GFP_ATOMIC);
1da177e4
LT
902}
903
904/* Helper function to delete an association. */
905static void sctp_cmd_delete_tcb(sctp_cmd_seq_t *cmds,
906 struct sctp_association *asoc)
907{
908 struct sock *sk = asoc->base.sk;
909
910 /* If it is a non-temporary association belonging to a TCP-style
d808ad9a 911 * listening socket that is not closed, do not free it so that accept()
1da177e4 912 * can pick it up later.
d808ad9a 913 */
1da177e4
LT
914 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING) &&
915 (!asoc->temp) && (sk->sk_shutdown != SHUTDOWN_MASK))
916 return;
917
1da177e4
LT
918 sctp_association_free(asoc);
919}
920
921/*
922 * ADDIP Section 4.1 ASCONF Chunk Procedures
923 * A4) Start a T-4 RTO timer, using the RTO value of the selected
924 * destination address (we use active path instead of primary path just
d808ad9a 925 * because primary path may be inactive.
1da177e4
LT
926 */
927static void sctp_cmd_setup_t4(sctp_cmd_seq_t *cmds,
928 struct sctp_association *asoc,
929 struct sctp_chunk *chunk)
930{
931 struct sctp_transport *t;
932
9919b455 933 t = sctp_assoc_choose_alter_transport(asoc, chunk->transport);
1da177e4
LT
934 asoc->timeouts[SCTP_EVENT_TIMEOUT_T4_RTO] = t->rto;
935 chunk->transport = t;
936}
937
d808ad9a 938/* Process an incoming Operation Error Chunk. */
1da177e4
LT
939static void sctp_cmd_process_operr(sctp_cmd_seq_t *cmds,
940 struct sctp_association *asoc,
941 struct sctp_chunk *chunk)
942{
1da177e4 943 struct sctp_errhdr *err_hdr;
3df26787
WY
944 struct sctp_ulpevent *ev;
945
946 while (chunk->chunk_end > chunk->skb->data) {
947 err_hdr = (struct sctp_errhdr *)(chunk->skb->data);
948
949 ev = sctp_ulpevent_make_remote_error(asoc, chunk, 0,
950 GFP_ATOMIC);
951 if (!ev)
952 return;
953
954 sctp_ulpq_tail_event(&asoc->ulpq, ev);
955
956 switch (err_hdr->cause) {
957 case SCTP_ERROR_UNKNOWN_CHUNK:
958 {
922dbc5b 959 struct sctp_chunkhdr *unk_chunk_hdr;
3df26787 960
922dbc5b
XL
961 unk_chunk_hdr = (struct sctp_chunkhdr *)
962 err_hdr->variable;
3df26787
WY
963 switch (unk_chunk_hdr->type) {
964 /* ADDIP 4.1 A9) If the peer responds to an ASCONF with
965 * an ERROR chunk reporting that it did not recognized
966 * the ASCONF chunk type, the sender of the ASCONF MUST
967 * NOT send any further ASCONF chunks and MUST stop its
968 * T-4 timer.
969 */
970 case SCTP_CID_ASCONF:
971 if (asoc->peer.asconf_capable == 0)
972 break;
973
974 asoc->peer.asconf_capable = 0;
975 sctp_add_cmd_sf(cmds, SCTP_CMD_TIMER_STOP,
1da177e4 976 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO));
3df26787
WY
977 break;
978 default:
979 break;
980 }
1da177e4 981 break;
3df26787 982 }
1da177e4
LT
983 default:
984 break;
985 }
1da177e4
LT
986 }
987}
988
989/* Process variable FWDTSN chunk information. */
d808ad9a 990static void sctp_cmd_process_fwdtsn(struct sctp_ulpq *ulpq,
1da177e4
LT
991 struct sctp_chunk *chunk)
992{
993 struct sctp_fwdtsn_skip *skip;
994 /* Walk through all the skipped SSNs */
995 sctp_walk_fwdtsn(skip, chunk) {
996 sctp_ulpq_skip(ulpq, ntohs(skip->stream), ntohs(skip->ssn));
997 }
1da177e4
LT
998}
999
d808ad9a 1000/* Helper function to remove the association non-primary peer
1da177e4 1001 * transports.
d808ad9a 1002 */
1da177e4
LT
1003static void sctp_cmd_del_non_primary(struct sctp_association *asoc)
1004{
1005 struct sctp_transport *t;
1006 struct list_head *pos;
1007 struct list_head *temp;
1008
1009 list_for_each_safe(pos, temp, &asoc->peer.transport_addr_list) {
1010 t = list_entry(pos, struct sctp_transport, transports);
5f242a13 1011 if (!sctp_cmp_addr_exact(&t->ipaddr,
d808ad9a 1012 &asoc->peer.primary_addr)) {
73e67420 1013 sctp_assoc_rm_peer(asoc, t);
1da177e4
LT
1014 }
1015 }
1da177e4
LT
1016}
1017
8de8c873
SS
1018/* Helper function to set sk_err on a 1-1 style socket. */
1019static void sctp_cmd_set_sk_err(struct sctp_association *asoc, int error)
1020{
1021 struct sock *sk = asoc->base.sk;
1022
1023 if (!sctp_style(sk, UDP))
1024 sk->sk_err = error;
1025}
1026
07d93967
VY
1027/* Helper function to generate an association change event */
1028static void sctp_cmd_assoc_change(sctp_cmd_seq_t *commands,
1029 struct sctp_association *asoc,
1030 u8 state)
1031{
1032 struct sctp_ulpevent *ev;
1033
1034 ev = sctp_ulpevent_make_assoc_change(asoc, 0, state, 0,
1035 asoc->c.sinit_num_ostreams,
1036 asoc->c.sinit_max_instreams,
1037 NULL, GFP_ATOMIC);
1038 if (ev)
1039 sctp_ulpq_tail_event(&asoc->ulpq, ev);
1040}
1041
1042/* Helper function to generate an adaptation indication event */
1043static void sctp_cmd_adaptation_ind(sctp_cmd_seq_t *commands,
1044 struct sctp_association *asoc)
1045{
1046 struct sctp_ulpevent *ev;
1047
1048 ev = sctp_ulpevent_make_adaptation_indication(asoc, GFP_ATOMIC);
1049
1050 if (ev)
1051 sctp_ulpq_tail_event(&asoc->ulpq, ev);
1052}
1053
96cd0d3d
VY
1054
1055static void sctp_cmd_t1_timer_update(struct sctp_association *asoc,
19cd1592
XL
1056 enum sctp_event_timeout timer,
1057 char *name)
96cd0d3d
VY
1058{
1059 struct sctp_transport *t;
1060
1061 t = asoc->init_last_sent_to;
1062 asoc->init_err_counter++;
1063
1064 if (t->init_sent_count > (asoc->init_cycle + 1)) {
1065 asoc->timeouts[timer] *= 2;
1066 if (asoc->timeouts[timer] > asoc->max_init_timeo) {
1067 asoc->timeouts[timer] = asoc->max_init_timeo;
1068 }
1069 asoc->init_cycle++;
bb33381d
DB
1070
1071 pr_debug("%s: T1[%s] timeout adjustment init_err_counter:%d"
1072 " cycle:%d timeout:%ld\n", __func__, name,
1073 asoc->init_err_counter, asoc->init_cycle,
1074 asoc->timeouts[timer]);
96cd0d3d
VY
1075 }
1076
1077}
1078
9c5c62be
VY
1079/* Send the whole message, chunk by chunk, to the outqueue.
1080 * This way the whole message is queued up and bundling if
1081 * encouraged for small fragments.
1082 */
66388f2c
XL
1083static void sctp_cmd_send_msg(struct sctp_association *asoc,
1084 struct sctp_datamsg *msg, gfp_t gfp)
9c5c62be
VY
1085{
1086 struct sctp_chunk *chunk;
9c5c62be 1087
66388f2c
XL
1088 list_for_each_entry(chunk, &msg->chunks, frag_list)
1089 sctp_outq_tail(&asoc->outqueue, chunk, gfp);
9c5c62be
VY
1090}
1091
1092
c0786693
VY
1093/* Sent the next ASCONF packet currently stored in the association.
1094 * This happens after the ASCONF_ACK was succeffully processed.
1095 */
1096static void sctp_cmd_send_asconf(struct sctp_association *asoc)
1097{
55e26eb9
EB
1098 struct net *net = sock_net(asoc->base.sk);
1099
c0786693
VY
1100 /* Send the next asconf chunk from the addip chunk
1101 * queue.
1102 */
1103 if (!list_empty(&asoc->addip_chunk_list)) {
1104 struct list_head *entry = asoc->addip_chunk_list.next;
1105 struct sctp_chunk *asconf = list_entry(entry,
1106 struct sctp_chunk, list);
1107 list_del_init(entry);
1108
1109 /* Hold the chunk until an ASCONF_ACK is received. */
1110 sctp_chunk_hold(asconf);
55e26eb9 1111 if (sctp_primitive_ASCONF(net, asoc, asconf))
c0786693
VY
1112 sctp_chunk_free(asconf);
1113 else
1114 asoc->addip_last_asconf = asconf;
1115 }
1116}
1117
9c5c62be 1118
1da177e4
LT
1119/* These three macros allow us to pull the debugging code out of the
1120 * main flow of sctp_do_sm() to keep attention focused on the real
1121 * functionality there.
1122 */
bb33381d
DB
1123#define debug_pre_sfn() \
1124 pr_debug("%s[pre-fn]: ep:%p, %s, %s, asoc:%p[%s], %s\n", __func__, \
1125 ep, sctp_evttype_tbl[event_type], (*debug_fn)(subtype), \
1126 asoc, sctp_state_tbl[state], state_fn->name)
1127
1128#define debug_post_sfn() \
1129 pr_debug("%s[post-fn]: asoc:%p, status:%s\n", __func__, asoc, \
1130 sctp_status_tbl[status])
1131
1132#define debug_post_sfx() \
1133 pr_debug("%s[post-sfx]: error:%d, asoc:%p[%s]\n", __func__, error, \
1134 asoc, sctp_state_tbl[(asoc && sctp_id2assoc(ep->base.sk, \
1135 sctp_assoc2id(asoc))) ? asoc->state : SCTP_STATE_CLOSED])
1da177e4
LT
1136
1137/*
1138 * This is the master state machine processing function.
1139 *
1140 * If you want to understand all of lksctp, this is a
1141 * good place to start.
1142 */
61f0eb07 1143int sctp_do_sm(struct net *net, enum sctp_event event_type,
bfc6f827 1144 union sctp_subtype subtype, enum sctp_state state,
61f0eb07
XL
1145 struct sctp_endpoint *ep, struct sctp_association *asoc,
1146 void *event_arg, gfp_t gfp)
1da177e4
LT
1147{
1148 sctp_cmd_seq_t commands;
1149 const sctp_sm_table_entry_t *state_fn;
1150 sctp_disposition_t status;
1151 int error = 0;
bfc6f827 1152 typedef const char *(printfn_t)(union sctp_subtype);
1da177e4
LT
1153 static printfn_t *table[] = {
1154 NULL, sctp_cname, sctp_tname, sctp_oname, sctp_pname,
1155 };
1156 printfn_t *debug_fn __attribute__ ((unused)) = table[event_type];
1157
1158 /* Look up the state function, run it, and then process the
1159 * side effects. These three steps are the heart of lksctp.
1160 */
55e26eb9 1161 state_fn = sctp_sm_lookup_event(net, event_type, state, subtype);
1da177e4
LT
1162
1163 sctp_init_cmd_seq(&commands);
1164
bb33381d 1165 debug_pre_sfn();
131334d0 1166 status = state_fn->fn(net, ep, asoc, subtype, event_arg, &commands);
bb33381d 1167 debug_post_sfn();
1da177e4
LT
1168
1169 error = sctp_side_effects(event_type, subtype, state,
649621e3 1170 ep, &asoc, event_arg, status,
1da177e4 1171 &commands, gfp);
bb33381d 1172 debug_post_sfx();
1da177e4
LT
1173
1174 return error;
1175}
1176
1da177e4
LT
1177/*****************************************************************
1178 * This the master state function side effect processing function.
1179 *****************************************************************/
bfc6f827
XL
1180static int sctp_side_effects(enum sctp_event event_type,
1181 union sctp_subtype subtype,
52106019 1182 enum sctp_state state,
1da177e4 1183 struct sctp_endpoint *ep,
649621e3 1184 struct sctp_association **asoc,
1da177e4
LT
1185 void *event_arg,
1186 sctp_disposition_t status,
1187 sctp_cmd_seq_t *commands,
dd0fc66f 1188 gfp_t gfp)
1da177e4
LT
1189{
1190 int error;
1191
1192 /* FIXME - Most of the dispositions left today would be categorized
1193 * as "exceptional" dispositions. For those dispositions, it
1194 * may not be proper to run through any of the commands at all.
1195 * For example, the command interpreter might be run only with
1196 * disposition SCTP_DISPOSITION_CONSUME.
1197 */
1198 if (0 != (error = sctp_cmd_interpreter(event_type, subtype, state,
649621e3 1199 ep, *asoc,
1da177e4
LT
1200 event_arg, status,
1201 commands, gfp)))
1202 goto bail;
1203
1204 switch (status) {
1205 case SCTP_DISPOSITION_DISCARD:
bb33381d
DB
1206 pr_debug("%s: ignored sctp protocol event - state:%d, "
1207 "event_type:%d, event_id:%d\n", __func__, state,
1208 event_type, subtype.chunk);
1da177e4
LT
1209 break;
1210
1211 case SCTP_DISPOSITION_NOMEM:
1212 /* We ran out of memory, so we need to discard this
1213 * packet.
1214 */
1215 /* BUG--we should now recover some memory, probably by
1216 * reneging...
1217 */
1218 error = -ENOMEM;
1219 break;
1220
d808ad9a 1221 case SCTP_DISPOSITION_DELETE_TCB:
649621e3 1222 case SCTP_DISPOSITION_ABORT:
1da177e4 1223 /* This should now be a command. */
649621e3 1224 *asoc = NULL;
1da177e4
LT
1225 break;
1226
1227 case SCTP_DISPOSITION_CONSUME:
1da177e4
LT
1228 /*
1229 * We should no longer have much work to do here as the
1230 * real work has been done as explicit commands above.
1231 */
1232 break;
1233
1234 case SCTP_DISPOSITION_VIOLATION:
e87cc472
JP
1235 net_err_ratelimited("protocol violation state %d chunkid %d\n",
1236 state, subtype.chunk);
1da177e4
LT
1237 break;
1238
1239 case SCTP_DISPOSITION_NOT_IMPL:
145ce502
JP
1240 pr_warn("unimplemented feature in state %d, event_type %d, event_id %d\n",
1241 state, event_type, subtype.chunk);
1da177e4
LT
1242 break;
1243
1244 case SCTP_DISPOSITION_BUG:
145ce502 1245 pr_err("bug in state %d, event_type %d, event_id %d\n",
1da177e4
LT
1246 state, event_type, subtype.chunk);
1247 BUG();
1248 break;
1249
1250 default:
145ce502 1251 pr_err("impossible disposition %d in state %d, event_type %d, event_id %d\n",
1da177e4
LT
1252 status, state, event_type, subtype.chunk);
1253 BUG();
1254 break;
3ff50b79 1255 }
1da177e4
LT
1256
1257bail:
1258 return error;
1259}
1260
1261/********************************************************************
1262 * 2nd Level Abstractions
1263 ********************************************************************/
1264
1265/* This is the side-effect interpreter. */
61f0eb07 1266static int sctp_cmd_interpreter(enum sctp_event event_type,
bfc6f827 1267 union sctp_subtype subtype,
52106019 1268 enum sctp_state state,
1da177e4
LT
1269 struct sctp_endpoint *ep,
1270 struct sctp_association *asoc,
1271 void *event_arg,
d808ad9a 1272 sctp_disposition_t status,
1da177e4 1273 sctp_cmd_seq_t *commands,
dd0fc66f 1274 gfp_t gfp)
1da177e4 1275{
fb586f25
MRL
1276 struct sock *sk = ep->base.sk;
1277 struct sctp_sock *sp = sctp_sk(sk);
1da177e4
LT
1278 int error = 0;
1279 int force;
1280 sctp_cmd_t *cmd;
1281 struct sctp_chunk *new_obj;
1282 struct sctp_chunk *chunk = NULL;
1283 struct sctp_packet *packet;
1da177e4
LT
1284 struct timer_list *timer;
1285 unsigned long timeout;
1286 struct sctp_transport *t;
1287 struct sctp_sackhdr sackh;
1288 int local_cork = 0;
1289
1290 if (SCTP_EVENT_T_TIMEOUT != event_type)
ea110733 1291 chunk = event_arg;
1da177e4
LT
1292
1293 /* Note: This whole file is a huge candidate for rework.
1294 * For example, each command could either have its own handler, so
1295 * the loop would look like:
1296 * while (cmds)
1297 * cmd->handle(x, y, z)
1298 * --jgrimm
1299 */
1300 while (NULL != (cmd = sctp_next_cmd(commands))) {
1301 switch (cmd->verb) {
1302 case SCTP_CMD_NOP:
1303 /* Do nothing. */
1304 break;
1305
1306 case SCTP_CMD_NEW_ASOC:
1307 /* Register a new association. */
1308 if (local_cork) {
cea8768f 1309 sctp_outq_uncork(&asoc->outqueue, gfp);
1da177e4
LT
1310 local_cork = 0;
1311 }
f9e42b85 1312
1da177e4 1313 /* Register with the endpoint. */
f9e42b85
DB
1314 asoc = cmd->obj.asoc;
1315 BUG_ON(asoc->peer.primary_path == NULL);
1da177e4 1316 sctp_endpoint_add_asoc(ep, asoc);
1da177e4
LT
1317 break;
1318
1319 case SCTP_CMD_UPDATE_ASSOC:
5ee8aa68 1320 sctp_cmd_assoc_update(commands, asoc, cmd->obj.asoc);
1da177e4
LT
1321 break;
1322
1323 case SCTP_CMD_PURGE_OUTQUEUE:
1324 sctp_outq_teardown(&asoc->outqueue);
1325 break;
1326
d808ad9a 1327 case SCTP_CMD_DELETE_TCB:
1da177e4 1328 if (local_cork) {
cea8768f 1329 sctp_outq_uncork(&asoc->outqueue, gfp);
1da177e4
LT
1330 local_cork = 0;
1331 }
1332 /* Delete the current association. */
1333 sctp_cmd_delete_tcb(commands, asoc);
1334 asoc = NULL;
1335 break;
1336
1337 case SCTP_CMD_NEW_STATE:
1338 /* Enter a new state. */
1339 sctp_cmd_new_state(commands, asoc, cmd->obj.state);
1340 break;
1341
1342 case SCTP_CMD_REPORT_TSN:
1343 /* Record the arrival of a TSN. */
8e1ee18c 1344 error = sctp_tsnmap_mark(&asoc->peer.tsn_map,
4244854d 1345 cmd->obj.u32, NULL);
1da177e4
LT
1346 break;
1347
1348 case SCTP_CMD_REPORT_FWDTSN:
1349 /* Move the Cumulattive TSN Ack ahead. */
1350 sctp_tsnmap_skip(&asoc->peer.tsn_map, cmd->obj.u32);
1351
ea2dfb37
VY
1352 /* purge the fragmentation queue */
1353 sctp_ulpq_reasm_flushtsn(&asoc->ulpq, cmd->obj.u32);
1354
1da177e4
LT
1355 /* Abort any in progress partial delivery. */
1356 sctp_ulpq_abort_pd(&asoc->ulpq, GFP_ATOMIC);
1357 break;
1358
1359 case SCTP_CMD_PROCESS_FWDTSN:
b26ddd81 1360 sctp_cmd_process_fwdtsn(&asoc->ulpq, cmd->obj.chunk);
d808ad9a 1361 break;
1da177e4
LT
1362
1363 case SCTP_CMD_GEN_SACK:
1364 /* Generate a Selective ACK.
1365 * The argument tells us whether to just count
1366 * the packet and MAYBE generate a SACK, or
1367 * force a SACK out.
1368 */
1369 force = cmd->obj.i32;
1370 error = sctp_gen_sack(asoc, force, commands);
1371 break;
1372
1373 case SCTP_CMD_PROCESS_SACK:
1374 /* Process an inbound SACK. */
1375 error = sctp_cmd_process_sack(commands, asoc,
b26ddd81 1376 cmd->obj.chunk);
1da177e4
LT
1377 break;
1378
1379 case SCTP_CMD_GEN_INIT_ACK:
1380 /* Generate an INIT ACK chunk. */
1381 new_obj = sctp_make_init_ack(asoc, chunk, GFP_ATOMIC,
1382 0);
1383 if (!new_obj)
1384 goto nomem;
1385
1386 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
1387 SCTP_CHUNK(new_obj));
1388 break;
1389
1390 case SCTP_CMD_PEER_INIT:
1391 /* Process a unified INIT from the peer.
1392 * Note: Only used during INIT-ACK processing. If
1393 * there is an error just return to the outter
1394 * layer which will bail.
1395 */
1396 error = sctp_cmd_process_init(commands, asoc, chunk,
b26ddd81 1397 cmd->obj.init, gfp);
1da177e4
LT
1398 break;
1399
1400 case SCTP_CMD_GEN_COOKIE_ECHO:
1401 /* Generate a COOKIE ECHO chunk. */
1402 new_obj = sctp_make_cookie_echo(asoc, chunk);
1403 if (!new_obj) {
b26ddd81
NH
1404 if (cmd->obj.chunk)
1405 sctp_chunk_free(cmd->obj.chunk);
1da177e4
LT
1406 goto nomem;
1407 }
1408 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
1409 SCTP_CHUNK(new_obj));
1410
1411 /* If there is an ERROR chunk to be sent along with
1412 * the COOKIE_ECHO, send it, too.
1413 */
b26ddd81 1414 if (cmd->obj.chunk)
1da177e4 1415 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
b26ddd81 1416 SCTP_CHUNK(cmd->obj.chunk));
1da177e4 1417
96cd0d3d
VY
1418 if (new_obj->transport) {
1419 new_obj->transport->init_sent_count++;
1420 asoc->init_last_sent_to = new_obj->transport;
1421 }
1422
1da177e4 1423 /* FIXME - Eventually come up with a cleaner way to
d808ad9a
YH
1424 * enabling COOKIE-ECHO + DATA bundling during
1425 * multihoming stale cookie scenarios, the following
1426 * command plays with asoc->peer.retran_path to
1427 * avoid the problem of sending the COOKIE-ECHO and
1428 * DATA in different paths, which could result
1429 * in the association being ABORTed if the DATA chunk
1da177e4
LT
1430 * is processed first by the server. Checking the
1431 * init error counter simply causes this command
1432 * to be executed only during failed attempts of
1433 * association establishment.
1434 */
3f7a87d2
FF
1435 if ((asoc->peer.retran_path !=
1436 asoc->peer.primary_path) &&
1437 (asoc->init_err_counter > 0)) {
1438 sctp_add_cmd_sf(commands,
d808ad9a 1439 SCTP_CMD_FORCE_PRIM_RETRAN,
1da177e4
LT
1440 SCTP_NULL());
1441 }
1442
1443 break;
1444
1445 case SCTP_CMD_GEN_SHUTDOWN:
1446 /* Generate SHUTDOWN when in SHUTDOWN_SENT state.
1447 * Reset error counts.
1448 */
1449 asoc->overall_error_count = 0;
1450
1451 /* Generate a SHUTDOWN chunk. */
1452 new_obj = sctp_make_shutdown(asoc, chunk);
1453 if (!new_obj)
1454 goto nomem;
1455 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
1456 SCTP_CHUNK(new_obj));
1457 break;
1458
1459 case SCTP_CMD_CHUNK_ULP:
1460 /* Send a chunk to the sockets layer. */
bb33381d
DB
1461 pr_debug("%s: sm_sideff: chunk_up:%p, ulpq:%p\n",
1462 __func__, cmd->obj.chunk, &asoc->ulpq);
1463
b26ddd81 1464 sctp_ulpq_tail_data(&asoc->ulpq, cmd->obj.chunk,
1da177e4
LT
1465 GFP_ATOMIC);
1466 break;
1467
1468 case SCTP_CMD_EVENT_ULP:
1469 /* Send a notification to the sockets layer. */
bb33381d
DB
1470 pr_debug("%s: sm_sideff: event_up:%p, ulpq:%p\n",
1471 __func__, cmd->obj.ulpevent, &asoc->ulpq);
1472
b26ddd81 1473 sctp_ulpq_tail_event(&asoc->ulpq, cmd->obj.ulpevent);
1da177e4
LT
1474 break;
1475
1476 case SCTP_CMD_REPLY:
1477 /* If an caller has not already corked, do cork. */
1478 if (!asoc->outqueue.cork) {
1479 sctp_outq_cork(&asoc->outqueue);
1480 local_cork = 1;
1481 }
1482 /* Send a chunk to our peer. */
83dbc3d4 1483 sctp_outq_tail(&asoc->outqueue, cmd->obj.chunk, gfp);
1da177e4
LT
1484 break;
1485
1486 case SCTP_CMD_SEND_PKT:
1487 /* Send a full packet to our peer. */
b26ddd81 1488 packet = cmd->obj.packet;
cea8768f 1489 sctp_packet_transmit(packet, gfp);
1da177e4
LT
1490 sctp_ootb_pkt_free(packet);
1491 break;
1492
b6157d8e
VY
1493 case SCTP_CMD_T1_RETRAN:
1494 /* Mark a transport for retransmission. */
1495 sctp_retransmit(&asoc->outqueue, cmd->obj.transport,
1496 SCTP_RTXR_T1_RTX);
1497 break;
1498
1da177e4
LT
1499 case SCTP_CMD_RETRAN:
1500 /* Mark a transport for retransmission. */
1501 sctp_retransmit(&asoc->outqueue, cmd->obj.transport,
1502 SCTP_RTXR_T3_RTX);
1503 break;
1504
1da177e4
LT
1505 case SCTP_CMD_ECN_CE:
1506 /* Do delayed CE processing. */
1507 sctp_do_ecn_ce_work(asoc, cmd->obj.u32);
1508 break;
1509
1510 case SCTP_CMD_ECN_ECNE:
1511 /* Do delayed ECNE processing. */
1512 new_obj = sctp_do_ecn_ecne_work(asoc, cmd->obj.u32,
1513 chunk);
1514 if (new_obj)
1515 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
1516 SCTP_CHUNK(new_obj));
1517 break;
1518
1519 case SCTP_CMD_ECN_CWR:
1520 /* Do delayed CWR processing. */
1521 sctp_do_ecn_cwr_work(asoc, cmd->obj.u32);
1522 break;
1523
1524 case SCTP_CMD_SETUP_T2:
b26ddd81 1525 sctp_cmd_setup_t2(commands, asoc, cmd->obj.chunk);
1da177e4
LT
1526 break;
1527
f8d96052
TG
1528 case SCTP_CMD_TIMER_START_ONCE:
1529 timer = &asoc->timers[cmd->obj.to];
1530
1531 if (timer_pending(timer))
1532 break;
1533 /* fall through */
1534
1da177e4
LT
1535 case SCTP_CMD_TIMER_START:
1536 timer = &asoc->timers[cmd->obj.to];
1537 timeout = asoc->timeouts[cmd->obj.to];
09a62660 1538 BUG_ON(!timeout);
1da177e4
LT
1539
1540 timer->expires = jiffies + timeout;
1541 sctp_association_hold(asoc);
1542 add_timer(timer);
1543 break;
1544
1545 case SCTP_CMD_TIMER_RESTART:
1546 timer = &asoc->timers[cmd->obj.to];
1547 timeout = asoc->timeouts[cmd->obj.to];
1548 if (!mod_timer(timer, jiffies + timeout))
1549 sctp_association_hold(asoc);
1550 break;
1551
1552 case SCTP_CMD_TIMER_STOP:
1553 timer = &asoc->timers[cmd->obj.to];
25cc4ae9 1554 if (del_timer(timer))
1da177e4
LT
1555 sctp_association_put(asoc);
1556 break;
1557
3f7a87d2 1558 case SCTP_CMD_INIT_CHOOSE_TRANSPORT:
b26ddd81 1559 chunk = cmd->obj.chunk;
9919b455
WY
1560 t = sctp_assoc_choose_alter_transport(asoc,
1561 asoc->init_last_sent_to);
3f7a87d2
FF
1562 asoc->init_last_sent_to = t;
1563 chunk->transport = t;
1564 t->init_sent_count++;
e0e9db17
VY
1565 /* Set the new transport as primary */
1566 sctp_assoc_set_primary(asoc, t);
3f7a87d2
FF
1567 break;
1568
1da177e4
LT
1569 case SCTP_CMD_INIT_RESTART:
1570 /* Do the needed accounting and updates
1571 * associated with restarting an initialization
3f7a87d2
FF
1572 * timer. Only multiply the timeout by two if
1573 * all transports have been tried at the current
1574 * timeout.
1575 */
96cd0d3d
VY
1576 sctp_cmd_t1_timer_update(asoc,
1577 SCTP_EVENT_TIMEOUT_T1_INIT,
1578 "INIT");
3f7a87d2
FF
1579
1580 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
1581 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
1582 break;
1583
1584 case SCTP_CMD_COOKIEECHO_RESTART:
1585 /* Do the needed accounting and updates
1586 * associated with restarting an initialization
1587 * timer. Only multiply the timeout by two if
1588 * all transports have been tried at the current
1589 * timeout.
1da177e4 1590 */
96cd0d3d
VY
1591 sctp_cmd_t1_timer_update(asoc,
1592 SCTP_EVENT_TIMEOUT_T1_COOKIE,
1593 "COOKIE");
1da177e4
LT
1594
1595 /* If we've sent any data bundled with
1596 * COOKIE-ECHO we need to resend.
1597 */
9dbc15f0
RD
1598 list_for_each_entry(t, &asoc->peer.transport_addr_list,
1599 transports) {
b6157d8e
VY
1600 sctp_retransmit_mark(&asoc->outqueue, t,
1601 SCTP_RTXR_T1_RTX);
1da177e4
LT
1602 }
1603
1604 sctp_add_cmd_sf(commands,
1605 SCTP_CMD_TIMER_RESTART,
3f7a87d2 1606 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_COOKIE));
1da177e4
LT
1607 break;
1608
1609 case SCTP_CMD_INIT_FAILED:
dc251b2b 1610 sctp_cmd_init_failed(commands, asoc, cmd->obj.err);
1da177e4
LT
1611 break;
1612
1613 case SCTP_CMD_ASSOC_FAILED:
1614 sctp_cmd_assoc_failed(commands, asoc, event_type,
5be291fe 1615 subtype, chunk, cmd->obj.err);
1da177e4
LT
1616 break;
1617
3f7a87d2
FF
1618 case SCTP_CMD_INIT_COUNTER_INC:
1619 asoc->init_err_counter++;
1da177e4
LT
1620 break;
1621
3f7a87d2
FF
1622 case SCTP_CMD_INIT_COUNTER_RESET:
1623 asoc->init_err_counter = 0;
1624 asoc->init_cycle = 0;
96cd0d3d
VY
1625 list_for_each_entry(t, &asoc->peer.transport_addr_list,
1626 transports) {
1627 t->init_sent_count = 0;
1628 }
1da177e4
LT
1629 break;
1630
1631 case SCTP_CMD_REPORT_DUP:
1632 sctp_tsnmap_mark_dup(&asoc->peer.tsn_map,
1633 cmd->obj.u32);
1634 break;
1635
1636 case SCTP_CMD_REPORT_BAD_TAG:
bb33381d 1637 pr_debug("%s: vtag mismatch!\n", __func__);
1da177e4
LT
1638 break;
1639
1640 case SCTP_CMD_STRIKE:
1641 /* Mark one strike against a transport. */
5aa93bcf
NH
1642 sctp_do_8_2_transport_strike(commands, asoc,
1643 cmd->obj.transport, 0);
7e99013a
VY
1644 break;
1645
1646 case SCTP_CMD_TRANSPORT_IDLE:
1647 t = cmd->obj.transport;
1648 sctp_transport_lower_cwnd(t, SCTP_LOWER_CWND_INACTIVE);
1da177e4
LT
1649 break;
1650
7e99013a 1651 case SCTP_CMD_TRANSPORT_HB_SENT:
1da177e4 1652 t = cmd->obj.transport;
5aa93bcf
NH
1653 sctp_do_8_2_transport_strike(commands, asoc,
1654 t, 1);
7e99013a 1655 t->hb_sent = 1;
1da177e4
LT
1656 break;
1657
1658 case SCTP_CMD_TRANSPORT_ON:
1659 t = cmd->obj.transport;
1660 sctp_cmd_transport_on(commands, asoc, t, chunk);
1661 break;
1662
1663 case SCTP_CMD_HB_TIMERS_START:
1664 sctp_cmd_hb_timers_start(commands, asoc);
1665 break;
1666
1667 case SCTP_CMD_HB_TIMER_UPDATE:
1668 t = cmd->obj.transport;
ba6f5e33 1669 sctp_transport_reset_hb_timer(t);
1da177e4
LT
1670 break;
1671
1672 case SCTP_CMD_HB_TIMERS_STOP:
1673 sctp_cmd_hb_timers_stop(commands, asoc);
1674 break;
1675
1676 case SCTP_CMD_REPORT_ERROR:
1677 error = cmd->obj.error;
1678 break;
1679
1680 case SCTP_CMD_PROCESS_CTSN:
1681 /* Dummy up a SACK for processing. */
2178eda8 1682 sackh.cum_tsn_ack = cmd->obj.be32;
d4d6fb57
VY
1683 sackh.a_rwnd = asoc->peer.rwnd +
1684 asoc->outqueue.outstanding_bytes;
1da177e4
LT
1685 sackh.num_gap_ack_blocks = 0;
1686 sackh.num_dup_tsns = 0;
f6e80abe 1687 chunk->subh.sack_hdr = &sackh;
1da177e4 1688 sctp_add_cmd_sf(commands, SCTP_CMD_PROCESS_SACK,
f6e80abe 1689 SCTP_CHUNK(chunk));
1da177e4
LT
1690 break;
1691
1692 case SCTP_CMD_DISCARD_PACKET:
2e3216cd
VY
1693 /* We need to discard the whole packet.
1694 * Uncork the queue since there might be
1695 * responses pending
1696 */
1da177e4 1697 chunk->pdiscard = 1;
2e3216cd 1698 if (asoc) {
cea8768f 1699 sctp_outq_uncork(&asoc->outqueue, gfp);
2e3216cd
VY
1700 local_cork = 0;
1701 }
1da177e4
LT
1702 break;
1703
1704 case SCTP_CMD_RTO_PENDING:
1705 t = cmd->obj.transport;
1706 t->rto_pending = 1;
1707 break;
1708
1709 case SCTP_CMD_PART_DELIVER:
b26ddd81 1710 sctp_ulpq_partial_delivery(&asoc->ulpq, GFP_ATOMIC);
1da177e4
LT
1711 break;
1712
1713 case SCTP_CMD_RENEGE:
b26ddd81 1714 sctp_ulpq_renege(&asoc->ulpq, cmd->obj.chunk,
1da177e4
LT
1715 GFP_ATOMIC);
1716 break;
1717
1718 case SCTP_CMD_SETUP_T4:
b26ddd81 1719 sctp_cmd_setup_t4(commands, asoc, cmd->obj.chunk);
1da177e4
LT
1720 break;
1721
1722 case SCTP_CMD_PROCESS_OPERR:
1723 sctp_cmd_process_operr(commands, asoc, chunk);
1724 break;
1725 case SCTP_CMD_CLEAR_INIT_TAG:
1726 asoc->peer.i.init_tag = 0;
1727 break;
1728 case SCTP_CMD_DEL_NON_PRIMARY:
1729 sctp_cmd_del_non_primary(asoc);
1730 break;
1731 case SCTP_CMD_T3_RTX_TIMERS_STOP:
1732 sctp_cmd_t3_rtx_timers_stop(commands, asoc);
1733 break;
1734 case SCTP_CMD_FORCE_PRIM_RETRAN:
1735 t = asoc->peer.retran_path;
1736 asoc->peer.retran_path = asoc->peer.primary_path;
83dbc3d4 1737 sctp_outq_uncork(&asoc->outqueue, gfp);
1da177e4
LT
1738 local_cork = 0;
1739 asoc->peer.retran_path = t;
1740 break;
8de8c873
SS
1741 case SCTP_CMD_SET_SK_ERR:
1742 sctp_cmd_set_sk_err(asoc, cmd->obj.error);
1743 break;
07d93967
VY
1744 case SCTP_CMD_ASSOC_CHANGE:
1745 sctp_cmd_assoc_change(commands, asoc,
1746 cmd->obj.u8);
1747 break;
1748 case SCTP_CMD_ADAPTATION_IND:
1749 sctp_cmd_adaptation_ind(commands, asoc);
1750 break;
1751
730fc3d0
VY
1752 case SCTP_CMD_ASSOC_SHKEY:
1753 error = sctp_auth_asoc_init_active_key(asoc,
1754 GFP_ATOMIC);
1755 break;
f4ad85ca
GJ
1756 case SCTP_CMD_UPDATE_INITTAG:
1757 asoc->peer.i.init_tag = cmd->obj.u32;
1758 break;
9c5c62be
VY
1759 case SCTP_CMD_SEND_MSG:
1760 if (!asoc->outqueue.cork) {
1761 sctp_outq_cork(&asoc->outqueue);
1762 local_cork = 1;
1763 }
66388f2c 1764 sctp_cmd_send_msg(asoc, cmd->obj.msg, gfp);
9c5c62be 1765 break;
c0786693
VY
1766 case SCTP_CMD_SEND_NEXT_ASCONF:
1767 sctp_cmd_send_asconf(asoc);
1768 break;
a000c01e
WY
1769 case SCTP_CMD_PURGE_ASCONF_QUEUE:
1770 sctp_asconf_queue_teardown(asoc);
1771 break;
d5ccd496
MM
1772
1773 case SCTP_CMD_SET_ASOC:
8cd5c25f
XL
1774 if (asoc && local_cork) {
1775 sctp_outq_uncork(&asoc->outqueue, gfp);
1776 local_cork = 0;
1777 }
d5ccd496
MM
1778 asoc = cmd->obj.asoc;
1779 break;
1780
1da177e4 1781 default:
b26ddd81
NH
1782 pr_warn("Impossible command: %u\n",
1783 cmd->verb);
1da177e4 1784 break;
3ff50b79
SH
1785 }
1786
1da177e4
LT
1787 if (error)
1788 break;
1789 }
1790
1791out:
2e3216cd
VY
1792 /* If this is in response to a received chunk, wait until
1793 * we are done with the packet to open the queue so that we don't
1794 * send multiple packets in response to a single request.
1795 */
1796 if (asoc && SCTP_EVENT_T_CHUNK == event_type && chunk) {
1797 if (chunk->end_of_packet || chunk->singleton)
83dbc3d4 1798 sctp_outq_uncork(&asoc->outqueue, gfp);
2e3216cd 1799 } else if (local_cork)
83dbc3d4 1800 sctp_outq_uncork(&asoc->outqueue, gfp);
fb586f25 1801
0970f5b3
MRL
1802 if (sp->data_ready_signalled)
1803 sp->data_ready_signalled = 0;
1804
1da177e4
LT
1805 return error;
1806nomem:
1807 error = -ENOMEM;
1808 goto out;
1809}
1810