blob: 5fdb623d828138eeaa03676317d0d9b9beb39880 [file] [log] [blame]
Vlad Yasevich60c778b2008-01-11 09:57:09 -05001/* SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * (C) Copyright IBM Corp. 2001, 2004
3 * Copyright (c) 1999 Cisco, Inc.
4 * Copyright (c) 1999-2001 Motorola, Inc.
5 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -05006 * This file is part of the SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
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 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050012 * This SCTP implementation is free software;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * 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 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050018 * This SCTP implementation is distributed in the hope that it
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * 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
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.
28 *
29 * Please send any bug reports or fixes you make to the
30 * email address(es):
31 * lksctp developers <lksctp-developers@lists.sourceforge.net>
32 *
33 * Or submit a bug report through the following website:
34 * http://www.sf.net/projects/lksctp
35 *
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>
45 *
46 * Any bugs reported given to us we will try to fix... any fixes shared will
47 * be incorporated into the next SCTP release.
48 */
49
50#include <linux/skbuff.h>
51#include <linux/types.h>
52#include <linux/socket.h>
53#include <linux/ip.h>
54#include <net/sock.h>
55#include <net/sctp/sctp.h>
56#include <net/sctp/sm.h>
57
58static int sctp_cmd_interpreter(sctp_event_t event_type,
59 sctp_subtype_t subtype,
60 sctp_state_t state,
61 struct sctp_endpoint *ep,
62 struct sctp_association *asoc,
63 void *event_arg,
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +090064 sctp_disposition_t status,
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 sctp_cmd_seq_t *commands,
Al Virodd0fc662005-10-07 07:46:04 +010066 gfp_t gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067static int sctp_side_effects(sctp_event_t event_type, sctp_subtype_t subtype,
68 sctp_state_t state,
69 struct sctp_endpoint *ep,
70 struct sctp_association *asoc,
71 void *event_arg,
72 sctp_disposition_t status,
73 sctp_cmd_seq_t *commands,
Al Virodd0fc662005-10-07 07:46:04 +010074 gfp_t gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76/********************************************************************
77 * Helper functions
78 ********************************************************************/
79
80/* A helper function for delayed processing of INET ECN CE bit. */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +090081static void sctp_do_ecn_ce_work(struct sctp_association *asoc,
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 __u32 lowest_tsn)
83{
84 /* Save the TSN away for comparison when we receive CWR */
85
86 asoc->last_ecne_tsn = lowest_tsn;
87 asoc->need_ecne = 1;
88}
89
90/* Helper function for delayed processing of SCTP ECNE chunk. */
91/* RFC 2960 Appendix A
92 *
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.
101 */
102static struct sctp_chunk *sctp_do_ecn_ecne_work(struct sctp_association *asoc,
103 __u32 lowest_tsn,
104 struct sctp_chunk *chunk)
105{
106 struct sctp_chunk *repl;
107
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
111 * sending a CWR.
112 */
113
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.
117 */
118 if (TSN_lt(asoc->last_cwr_tsn, lowest_tsn)) {
119 struct sctp_transport *transport;
120
121 /* Find which transport's congestion variables
122 * need to be adjusted.
123 */
124 transport = sctp_assoc_lookup_tsn(asoc, lowest_tsn);
125
126 /* Update the congestion variables. */
127 if (transport)
128 sctp_transport_lower_cwnd(transport,
129 SCTP_LOWER_CWND_ECNE);
130 asoc->last_cwr_tsn = lowest_tsn;
131 }
132
133 /* Always try to quiet the other end. In case of lost CWR,
134 * resend last_cwr_tsn.
135 */
136 repl = sctp_make_cwr(asoc, asoc->last_cwr_tsn, chunk);
137
138 /* If we run out of memory, it will look like a lost CWR. We'll
139 * get back in sync eventually.
140 */
141 return repl;
142}
143
144/* Helper function to do delayed processing of ECN CWR chunk. */
145static void sctp_do_ecn_cwr_work(struct sctp_association *asoc,
146 __u32 lowest_tsn)
147{
148 /* Turn off ECNE getting auto-prepended to every outgoing
149 * packet
150 */
151 asoc->need_ecne = 0;
152}
153
154/* Generate SACK if necessary. We call this at the end of a packet. */
155static int sctp_gen_sack(struct sctp_association *asoc, int force,
156 sctp_cmd_seq_t *commands)
157{
158 __u32 ctsn, max_tsn_seen;
159 struct sctp_chunk *sack;
Frank Filz52ccb8e2005-12-22 11:36:46 -0800160 struct sctp_transport *trans = asoc->peer.last_data_from;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 int error = 0;
162
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900163 if (force ||
Frank Filz52ccb8e2005-12-22 11:36:46 -0800164 (!trans && (asoc->param_flags & SPP_SACKDELAY_DISABLE)) ||
165 (trans && (trans->param_flags & SPP_SACKDELAY_DISABLE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 asoc->peer.sack_needed = 1;
167
168 ctsn = sctp_tsnmap_get_ctsn(&asoc->peer.tsn_map);
169 max_tsn_seen = sctp_tsnmap_get_max_tsn_seen(&asoc->peer.tsn_map);
170
171 /* From 12.2 Parameters necessary per association (i.e. the TCB):
172 *
173 * Ack State : This flag indicates if the next received packet
174 * : is to be responded to with a SACK. ...
175 * : When DATA chunks are out of order, SACK's
176 * : are not delayed (see Section 6).
177 *
178 * [This is actually not mentioned in Section 6, but we
179 * implement it here anyway. --piggy]
180 */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900181 if (max_tsn_seen != ctsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 asoc->peer.sack_needed = 1;
183
184 /* From 6.2 Acknowledgement on Reception of DATA Chunks:
185 *
186 * Section 4.2 of [RFC2581] SHOULD be followed. Specifically,
187 * an acknowledgement SHOULD be generated for at least every
188 * second packet (not every second DATA chunk) received, and
189 * SHOULD be generated within 200 ms of the arrival of any
190 * unacknowledged DATA chunk. ...
191 */
192 if (!asoc->peer.sack_needed) {
193 /* We will need a SACK for the next packet. */
194 asoc->peer.sack_needed = 1;
Frank Filz52ccb8e2005-12-22 11:36:46 -0800195
196 /* Set the SACK delay timeout based on the
197 * SACK delay for the last transport
198 * data was received from, or the default
199 * for the association.
200 */
201 if (trans)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900202 asoc->timeouts[SCTP_EVENT_TIMEOUT_SACK] =
Frank Filz52ccb8e2005-12-22 11:36:46 -0800203 trans->sackdelay;
204 else
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900205 asoc->timeouts[SCTP_EVENT_TIMEOUT_SACK] =
Frank Filz52ccb8e2005-12-22 11:36:46 -0800206 asoc->sackdelay;
207
208 /* Restart the SACK timer. */
209 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
210 SCTP_TO(SCTP_EVENT_TIMEOUT_SACK));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 } else {
212 if (asoc->a_rwnd > asoc->rwnd)
213 asoc->a_rwnd = asoc->rwnd;
214 sack = sctp_make_sack(asoc);
215 if (!sack)
216 goto nomem;
217
218 asoc->peer.sack_needed = 0;
219
Vlad Yasevich732ba352007-01-15 19:20:21 -0800220 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(sack));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 /* Stop the SACK timer. */
223 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_STOP,
224 SCTP_TO(SCTP_EVENT_TIMEOUT_SACK));
225 }
Frank Filz52ccb8e2005-12-22 11:36:46 -0800226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return error;
228nomem:
229 error = -ENOMEM;
230 return error;
231}
232
233/* When the T3-RTX timer expires, it calls this function to create the
234 * relevant state machine event.
235 */
236void sctp_generate_t3_rtx_event(unsigned long peer)
237{
238 int error;
239 struct sctp_transport *transport = (struct sctp_transport *) peer;
240 struct sctp_association *asoc = transport->asoc;
241
242 /* Check whether a task is in the sock. */
243
244 sctp_bh_lock_sock(asoc->base.sk);
245 if (sock_owned_by_user(asoc->base.sk)) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800246 SCTP_DEBUG_PRINTK("%s:Sock is busy.\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 /* Try again later. */
249 if (!mod_timer(&transport->T3_rtx_timer, jiffies + (HZ/20)))
250 sctp_transport_hold(transport);
251 goto out_unlock;
252 }
253
254 /* Is this transport really dead and just waiting around for
255 * the timer to let go of the reference?
256 */
257 if (transport->dead)
258 goto out_unlock;
259
260 /* Run through the state machine. */
261 error = sctp_do_sm(SCTP_EVENT_T_TIMEOUT,
262 SCTP_ST_TIMEOUT(SCTP_EVENT_TIMEOUT_T3_RTX),
263 asoc->state,
264 asoc->ep, asoc,
265 transport, GFP_ATOMIC);
266
267 if (error)
268 asoc->base.sk->sk_err = -error;
269
270out_unlock:
271 sctp_bh_unlock_sock(asoc->base.sk);
272 sctp_transport_put(transport);
273}
274
275/* This is a sa interface for producing timeout events. It works
276 * for timeouts which use the association as their parameter.
277 */
278static void sctp_generate_timeout_event(struct sctp_association *asoc,
279 sctp_event_timeout_t timeout_type)
280{
281 int error = 0;
282
283 sctp_bh_lock_sock(asoc->base.sk);
284 if (sock_owned_by_user(asoc->base.sk)) {
285 SCTP_DEBUG_PRINTK("%s:Sock is busy: timer %d\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800286 __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 timeout_type);
288
289 /* Try again later. */
290 if (!mod_timer(&asoc->timers[timeout_type], jiffies + (HZ/20)))
291 sctp_association_hold(asoc);
292 goto out_unlock;
293 }
294
295 /* Is this association really dead and just waiting around for
296 * the timer to let go of the reference?
297 */
298 if (asoc->base.dead)
299 goto out_unlock;
300
301 /* Run through the state machine. */
302 error = sctp_do_sm(SCTP_EVENT_T_TIMEOUT,
303 SCTP_ST_TIMEOUT(timeout_type),
304 asoc->state, asoc->ep, asoc,
305 (void *)timeout_type, GFP_ATOMIC);
306
307 if (error)
308 asoc->base.sk->sk_err = -error;
309
310out_unlock:
311 sctp_bh_unlock_sock(asoc->base.sk);
312 sctp_association_put(asoc);
313}
314
315static void sctp_generate_t1_cookie_event(unsigned long data)
316{
317 struct sctp_association *asoc = (struct sctp_association *) data;
318 sctp_generate_timeout_event(asoc, SCTP_EVENT_TIMEOUT_T1_COOKIE);
319}
320
321static void sctp_generate_t1_init_event(unsigned long data)
322{
323 struct sctp_association *asoc = (struct sctp_association *) data;
324 sctp_generate_timeout_event(asoc, SCTP_EVENT_TIMEOUT_T1_INIT);
325}
326
327static void sctp_generate_t2_shutdown_event(unsigned long data)
328{
329 struct sctp_association *asoc = (struct sctp_association *) data;
330 sctp_generate_timeout_event(asoc, SCTP_EVENT_TIMEOUT_T2_SHUTDOWN);
331}
332
333static void sctp_generate_t4_rto_event(unsigned long data)
334{
335 struct sctp_association *asoc = (struct sctp_association *) data;
336 sctp_generate_timeout_event(asoc, SCTP_EVENT_TIMEOUT_T4_RTO);
337}
338
339static void sctp_generate_t5_shutdown_guard_event(unsigned long data)
340{
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900341 struct sctp_association *asoc = (struct sctp_association *)data;
342 sctp_generate_timeout_event(asoc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD);
344
345} /* sctp_generate_t5_shutdown_guard_event() */
346
347static void sctp_generate_autoclose_event(unsigned long data)
348{
349 struct sctp_association *asoc = (struct sctp_association *) data;
350 sctp_generate_timeout_event(asoc, SCTP_EVENT_TIMEOUT_AUTOCLOSE);
351}
352
353/* Generate a heart beat event. If the sock is busy, reschedule. Make
354 * sure that the transport is still valid.
355 */
356void sctp_generate_heartbeat_event(unsigned long data)
357{
358 int error = 0;
359 struct sctp_transport *transport = (struct sctp_transport *) data;
360 struct sctp_association *asoc = transport->asoc;
361
362 sctp_bh_lock_sock(asoc->base.sk);
363 if (sock_owned_by_user(asoc->base.sk)) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800364 SCTP_DEBUG_PRINTK("%s:Sock is busy.\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 /* Try again later. */
367 if (!mod_timer(&transport->hb_timer, jiffies + (HZ/20)))
368 sctp_transport_hold(transport);
369 goto out_unlock;
370 }
371
372 /* Is this structure just waiting around for us to actually
373 * get destroyed?
374 */
375 if (transport->dead)
376 goto out_unlock;
377
378 error = sctp_do_sm(SCTP_EVENT_T_TIMEOUT,
379 SCTP_ST_TIMEOUT(SCTP_EVENT_TIMEOUT_HEARTBEAT),
380 asoc->state, asoc->ep, asoc,
381 transport, GFP_ATOMIC);
382
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900383 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 asoc->base.sk->sk_err = -error;
385
386out_unlock:
387 sctp_bh_unlock_sock(asoc->base.sk);
388 sctp_transport_put(transport);
389}
390
391/* Inject a SACK Timeout event into the state machine. */
392static void sctp_generate_sack_event(unsigned long data)
393{
394 struct sctp_association *asoc = (struct sctp_association *) data;
395 sctp_generate_timeout_event(asoc, SCTP_EVENT_TIMEOUT_SACK);
396}
397
398sctp_timer_event_t *sctp_timer_events[SCTP_NUM_TIMEOUT_TYPES] = {
399 NULL,
400 sctp_generate_t1_cookie_event,
401 sctp_generate_t1_init_event,
402 sctp_generate_t2_shutdown_event,
403 NULL,
404 sctp_generate_t4_rto_event,
405 sctp_generate_t5_shutdown_guard_event,
Vladislav Yasevich1e7d3d92005-11-11 16:06:16 -0800406 NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 sctp_generate_sack_event,
408 sctp_generate_autoclose_event,
409};
410
411
412/* RFC 2960 8.2 Path Failure Detection
413 *
414 * When its peer endpoint is multi-homed, an endpoint should keep a
415 * error counter for each of the destination transport addresses of the
416 * peer endpoint.
417 *
418 * Each time the T3-rtx timer expires on any address, or when a
419 * HEARTBEAT sent to an idle address is not acknowledged within a RTO,
420 * the error counter of that destination address will be incremented.
421 * When the value in the error counter exceeds the protocol parameter
422 * 'Path.Max.Retrans' of that destination address, the endpoint should
423 * mark the destination transport address as inactive, and a
424 * notification SHOULD be sent to the upper layer.
425 *
426 */
427static void sctp_do_8_2_transport_strike(struct sctp_association *asoc,
428 struct sctp_transport *transport)
429{
430 /* The check for association's overall error counter exceeding the
431 * threshold is done in the state function.
432 */
Sridhar Samudralaad8fec12006-07-21 14:48:50 -0700433 /* When probing UNCONFIRMED addresses, the association overall
434 * error count is NOT incremented
435 */
436 if (transport->state != SCTP_UNCONFIRMED)
437 asoc->overall_error_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Frank Filz3f7a87d2005-06-20 13:14:57 -0700439 if (transport->state != SCTP_INACTIVE &&
Frank Filz52ccb8e2005-12-22 11:36:46 -0800440 (transport->error_count++ >= transport->pathmaxrxt)) {
Frank Filz3f7a87d2005-06-20 13:14:57 -0700441 SCTP_DEBUG_PRINTK_IPADDR("transport_strike:association %p",
442 " transport IP: port:%d failed.\n",
443 asoc,
Al Virob3f5b3b2006-11-20 17:22:43 -0800444 (&transport->ipaddr),
445 ntohs(transport->ipaddr.v4.sin_port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 sctp_assoc_control_transport(asoc, transport,
447 SCTP_TRANSPORT_DOWN,
448 SCTP_FAILED_THRESHOLD);
449 }
450
451 /* E2) For the destination address for which the timer
452 * expires, set RTO <- RTO * 2 ("back off the timer"). The
453 * maximum value discussed in rule C7 above (RTO.max) may be
454 * used to provide an upper bound to this doubling operation.
455 */
Vlad Yasevichb6157d82007-10-24 15:59:16 -0400456 transport->last_rto = transport->rto;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 transport->rto = min((transport->rto * 2), transport->asoc->rto_max);
458}
459
460/* Worker routine to handle INIT command failure. */
461static void sctp_cmd_init_failed(sctp_cmd_seq_t *commands,
462 struct sctp_association *asoc,
463 unsigned error)
464{
465 struct sctp_ulpevent *event;
466
467 event = sctp_ulpevent_make_assoc_change(asoc,0, SCTP_CANT_STR_ASSOC,
Vlad Yasevicha5a35e72007-03-23 11:34:08 -0700468 (__u16)error, 0, 0, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 GFP_ATOMIC);
470
471 if (event)
472 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP,
473 SCTP_ULPEVENT(event));
474
475 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
476 SCTP_STATE(SCTP_STATE_CLOSED));
477
478 /* SEND_FAILED sent later when cleaning up the association. */
479 asoc->outqueue.error = error;
480 sctp_add_cmd_sf(commands, SCTP_CMD_DELETE_TCB, SCTP_NULL());
481}
482
483/* Worker routine to handle SCTP_CMD_ASSOC_FAILED. */
484static void sctp_cmd_assoc_failed(sctp_cmd_seq_t *commands,
485 struct sctp_association *asoc,
486 sctp_event_t event_type,
487 sctp_subtype_t subtype,
488 struct sctp_chunk *chunk,
489 unsigned error)
490{
491 struct sctp_ulpevent *event;
492
493 /* Cancel any partial delivery in progress. */
494 sctp_ulpq_abort_pd(&asoc->ulpq, GFP_ATOMIC);
495
Vlad Yasevicha5a35e72007-03-23 11:34:08 -0700496 if (event_type == SCTP_EVENT_T_CHUNK && subtype.chunk == SCTP_CID_ABORT)
497 event = sctp_ulpevent_make_assoc_change(asoc, 0, SCTP_COMM_LOST,
498 (__u16)error, 0, 0, chunk,
499 GFP_ATOMIC);
500 else
501 event = sctp_ulpevent_make_assoc_change(asoc, 0, SCTP_COMM_LOST,
502 (__u16)error, 0, 0, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 GFP_ATOMIC);
504 if (event)
505 sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP,
506 SCTP_ULPEVENT(event));
507
508 sctp_add_cmd_sf(commands, SCTP_CMD_NEW_STATE,
509 SCTP_STATE(SCTP_STATE_CLOSED));
510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 /* SEND_FAILED sent later when cleaning up the association. */
512 asoc->outqueue.error = error;
513 sctp_add_cmd_sf(commands, SCTP_CMD_DELETE_TCB, SCTP_NULL());
514}
515
516/* Process an init chunk (may be real INIT/INIT-ACK or an embedded INIT
517 * inside the cookie. In reality, this is only used for INIT-ACK processing
518 * since all other cases use "temporary" associations and can do all
519 * their work in statefuns directly.
520 */
521static int sctp_cmd_process_init(sctp_cmd_seq_t *commands,
522 struct sctp_association *asoc,
523 struct sctp_chunk *chunk,
Alexey Dobriyan3182cd82005-07-11 20:57:47 -0700524 sctp_init_chunk_t *peer_init,
Al Virodd0fc662005-10-07 07:46:04 +0100525 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526{
527 int error;
528
529 /* We only process the init as a sideeffect in a single
530 * case. This is when we process the INIT-ACK. If we
531 * fail during INIT processing (due to malloc problems),
532 * just return the error and stop processing the stack.
533 */
534 if (!sctp_process_init(asoc, chunk->chunk_hdr->type,
535 sctp_source(chunk), peer_init, gfp))
536 error = -ENOMEM;
537 else
538 error = 0;
539
540 return error;
541}
542
543/* Helper function to break out starting up of heartbeat timers. */
544static void sctp_cmd_hb_timers_start(sctp_cmd_seq_t *cmds,
545 struct sctp_association *asoc)
546{
547 struct sctp_transport *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549 /* Start a heartbeat timer for each transport on the association.
550 * hold a reference on the transport to make sure none of
551 * the needed data structures go away.
552 */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700553 list_for_each_entry(t, &asoc->peer.transport_addr_list, transports) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555 if (!mod_timer(&t->hb_timer, sctp_transport_timeout(t)))
556 sctp_transport_hold(t);
557 }
558}
559
560static void sctp_cmd_hb_timers_stop(sctp_cmd_seq_t *cmds,
561 struct sctp_association *asoc)
562{
563 struct sctp_transport *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565 /* Stop all heartbeat timers. */
566
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700567 list_for_each_entry(t, &asoc->peer.transport_addr_list,
568 transports) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 if (del_timer(&t->hb_timer))
570 sctp_transport_put(t);
571 }
572}
573
574/* Helper function to stop any pending T3-RTX timers */
575static void sctp_cmd_t3_rtx_timers_stop(sctp_cmd_seq_t *cmds,
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900576 struct sctp_association *asoc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577{
578 struct sctp_transport *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700580 list_for_each_entry(t, &asoc->peer.transport_addr_list,
581 transports) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 if (timer_pending(&t->T3_rtx_timer) &&
583 del_timer(&t->T3_rtx_timer)) {
584 sctp_transport_put(t);
585 }
586 }
587}
588
589
590/* Helper function to update the heartbeat timer. */
591static void sctp_cmd_hb_timer_update(sctp_cmd_seq_t *cmds,
592 struct sctp_association *asoc,
593 struct sctp_transport *t)
594{
595 /* Update the heartbeat timer. */
596 if (!mod_timer(&t->hb_timer, sctp_transport_timeout(t)))
597 sctp_transport_hold(t);
598}
599
600/* Helper function to handle the reception of an HEARTBEAT ACK. */
601static void sctp_cmd_transport_on(sctp_cmd_seq_t *cmds,
602 struct sctp_association *asoc,
603 struct sctp_transport *t,
604 struct sctp_chunk *chunk)
605{
606 sctp_sender_hb_info_t *hbinfo;
607
608 /* 8.3 Upon the receipt of the HEARTBEAT ACK, the sender of the
609 * HEARTBEAT should clear the error counter of the destination
610 * transport address to which the HEARTBEAT was sent.
611 * The association's overall error count is also cleared.
612 */
613 t->error_count = 0;
614 t->asoc->overall_error_count = 0;
615
616 /* Mark the destination transport address as active if it is not so
617 * marked.
618 */
Sridhar Samudralaad8fec12006-07-21 14:48:50 -0700619 if ((t->state == SCTP_INACTIVE) || (t->state == SCTP_UNCONFIRMED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 sctp_assoc_control_transport(asoc, t, SCTP_TRANSPORT_UP,
621 SCTP_HEARTBEAT_SUCCESS);
622
623 /* The receiver of the HEARTBEAT ACK should also perform an
624 * RTT measurement for that destination transport address
625 * using the time value carried in the HEARTBEAT ACK chunk.
Vlad Yaseviche533ca12007-01-30 14:36:14 -0800626 * If the transport's rto_pending variable has been cleared,
627 * it was most likely due to a retransmit. However, we want
628 * to re-enable it to properly update the rto.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 */
Vlad Yaseviche533ca12007-01-30 14:36:14 -0800630 if (t->rto_pending == 0)
631 t->rto_pending = 1;
632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 hbinfo = (sctp_sender_hb_info_t *) chunk->skb->data;
634 sctp_transport_update_rto(t, (jiffies - hbinfo->sent_at));
Sridhar Samudralaad8fec12006-07-21 14:48:50 -0700635
636 /* Update the heartbeat timer. */
637 if (!mod_timer(&t->hb_timer, sctp_transport_timeout(t)))
638 sctp_transport_hold(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
640
641/* Helper function to do a transport reset at the expiry of the hearbeat
642 * timer.
643 */
644static void sctp_cmd_transport_reset(sctp_cmd_seq_t *cmds,
645 struct sctp_association *asoc,
646 struct sctp_transport *t)
647{
648 sctp_transport_lower_cwnd(t, SCTP_LOWER_CWND_INACTIVE);
649
650 /* Mark one strike against a transport. */
651 sctp_do_8_2_transport_strike(asoc, t);
652}
653
654/* Helper function to process the process SACK command. */
655static int sctp_cmd_process_sack(sctp_cmd_seq_t *cmds,
656 struct sctp_association *asoc,
657 struct sctp_sackhdr *sackh)
658{
659 int err;
660
661 if (sctp_outq_sack(&asoc->outqueue, sackh)) {
662 /* There are no more TSNs awaiting SACK. */
663 err = sctp_do_sm(SCTP_EVENT_T_OTHER,
664 SCTP_ST_OTHER(SCTP_EVENT_NO_PENDING_TSN),
665 asoc->state, asoc->ep, asoc, NULL,
666 GFP_ATOMIC);
667 } else {
668 /* Windows may have opened, so we need
669 * to check if we have DATA to transmit
670 */
671 err = sctp_outq_flush(&asoc->outqueue, 0);
672 }
673
674 return err;
675}
676
677/* Helper function to set the timeout value for T2-SHUTDOWN timer and to set
678 * the transport for a shutdown chunk.
679 */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900680static void sctp_cmd_setup_t2(sctp_cmd_seq_t *cmds,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 struct sctp_association *asoc,
682 struct sctp_chunk *chunk)
683{
684 struct sctp_transport *t;
685
686 t = sctp_assoc_choose_shutdown_transport(asoc);
687 asoc->shutdown_last_sent_to = t;
688 asoc->timeouts[SCTP_EVENT_TIMEOUT_T2_SHUTDOWN] = t->rto;
689 chunk->transport = t;
690}
691
692/* Helper function to change the state of an association. */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900693static void sctp_cmd_new_state(sctp_cmd_seq_t *cmds,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 struct sctp_association *asoc,
695 sctp_state_t state)
696{
697 struct sock *sk = asoc->base.sk;
698
699 asoc->state = state;
700
Frank Filz3f7a87d2005-06-20 13:14:57 -0700701 SCTP_DEBUG_PRINTK("sctp_cmd_new_state: asoc %p[%s]\n",
702 asoc, sctp_state_tbl[state]);
703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 if (sctp_style(sk, TCP)) {
Frank Filz3f7a87d2005-06-20 13:14:57 -0700705 /* Change the sk->sk_state of a TCP-style socket that has
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 * sucessfully completed a connect() call.
707 */
708 if (sctp_state(asoc, ESTABLISHED) && sctp_sstate(sk, CLOSED))
709 sk->sk_state = SCTP_SS_ESTABLISHED;
710
711 /* Set the RCV_SHUTDOWN flag when a SHUTDOWN is received. */
712 if (sctp_state(asoc, SHUTDOWN_RECEIVED) &&
713 sctp_sstate(sk, ESTABLISHED))
714 sk->sk_shutdown |= RCV_SHUTDOWN;
715 }
716
Frank Filz3f7a87d2005-06-20 13:14:57 -0700717 if (sctp_state(asoc, COOKIE_WAIT)) {
718 /* Reset init timeouts since they may have been
719 * increased due to timer expirations.
720 */
721 asoc->timeouts[SCTP_EVENT_TIMEOUT_T1_INIT] =
Vladislav Yasevich1e7d3d92005-11-11 16:06:16 -0800722 asoc->rto_initial;
Frank Filz3f7a87d2005-06-20 13:14:57 -0700723 asoc->timeouts[SCTP_EVENT_TIMEOUT_T1_COOKIE] =
Vladislav Yasevich1e7d3d92005-11-11 16:06:16 -0800724 asoc->rto_initial;
Frank Filz3f7a87d2005-06-20 13:14:57 -0700725 }
726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 if (sctp_state(asoc, ESTABLISHED) ||
728 sctp_state(asoc, CLOSED) ||
729 sctp_state(asoc, SHUTDOWN_RECEIVED)) {
730 /* Wake up any processes waiting in the asoc's wait queue in
731 * sctp_wait_for_connect() or sctp_wait_for_sndbuf().
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900732 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 if (waitqueue_active(&asoc->wait))
734 wake_up_interruptible(&asoc->wait);
735
736 /* Wake up any processes waiting in the sk's sleep queue of
737 * a TCP-style or UDP-style peeled-off socket in
738 * sctp_wait_for_accept() or sctp_wait_for_packet().
739 * For a UDP-style socket, the waiters are woken up by the
740 * notifications.
741 */
742 if (!sctp_style(sk, UDP))
743 sk->sk_state_change(sk);
744 }
745}
746
747/* Helper function to delete an association. */
748static void sctp_cmd_delete_tcb(sctp_cmd_seq_t *cmds,
749 struct sctp_association *asoc)
750{
751 struct sock *sk = asoc->base.sk;
752
753 /* If it is a non-temporary association belonging to a TCP-style
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900754 * listening socket that is not closed, do not free it so that accept()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 * can pick it up later.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900756 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING) &&
758 (!asoc->temp) && (sk->sk_shutdown != SHUTDOWN_MASK))
759 return;
760
761 sctp_unhash_established(asoc);
762 sctp_association_free(asoc);
763}
764
765/*
766 * ADDIP Section 4.1 ASCONF Chunk Procedures
767 * A4) Start a T-4 RTO timer, using the RTO value of the selected
768 * destination address (we use active path instead of primary path just
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900769 * because primary path may be inactive.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 */
771static void sctp_cmd_setup_t4(sctp_cmd_seq_t *cmds,
772 struct sctp_association *asoc,
773 struct sctp_chunk *chunk)
774{
775 struct sctp_transport *t;
776
777 t = asoc->peer.active_path;
778 asoc->timeouts[SCTP_EVENT_TIMEOUT_T4_RTO] = t->rto;
779 chunk->transport = t;
780}
781
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900782/* Process an incoming Operation Error Chunk. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783static void sctp_cmd_process_operr(sctp_cmd_seq_t *cmds,
784 struct sctp_association *asoc,
785 struct sctp_chunk *chunk)
786{
787 struct sctp_operr_chunk *operr_chunk;
788 struct sctp_errhdr *err_hdr;
789
790 operr_chunk = (struct sctp_operr_chunk *)chunk->chunk_hdr;
791 err_hdr = &operr_chunk->err_hdr;
792
793 switch (err_hdr->cause) {
794 case SCTP_ERROR_UNKNOWN_CHUNK:
795 {
796 struct sctp_chunkhdr *unk_chunk_hdr;
797
798 unk_chunk_hdr = (struct sctp_chunkhdr *)err_hdr->variable;
799 switch (unk_chunk_hdr->type) {
800 /* ADDIP 4.1 A9) If the peer responds to an ASCONF with an
801 * ERROR chunk reporting that it did not recognized the ASCONF
802 * chunk type, the sender of the ASCONF MUST NOT send any
803 * further ASCONF chunks and MUST stop its T-4 timer.
804 */
805 case SCTP_CID_ASCONF:
806 asoc->peer.asconf_capable = 0;
807 sctp_add_cmd_sf(cmds, SCTP_CMD_TIMER_STOP,
808 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO));
809 break;
810 default:
811 break;
812 }
813 break;
814 }
815 default:
816 break;
817 }
818}
819
820/* Process variable FWDTSN chunk information. */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900821static void sctp_cmd_process_fwdtsn(struct sctp_ulpq *ulpq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 struct sctp_chunk *chunk)
823{
824 struct sctp_fwdtsn_skip *skip;
825 /* Walk through all the skipped SSNs */
826 sctp_walk_fwdtsn(skip, chunk) {
827 sctp_ulpq_skip(ulpq, ntohs(skip->stream), ntohs(skip->ssn));
828 }
829
830 return;
831}
832
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900833/* Helper function to remove the association non-primary peer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 * transports.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900835 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836static void sctp_cmd_del_non_primary(struct sctp_association *asoc)
837{
838 struct sctp_transport *t;
839 struct list_head *pos;
840 struct list_head *temp;
841
842 list_for_each_safe(pos, temp, &asoc->peer.transport_addr_list) {
843 t = list_entry(pos, struct sctp_transport, transports);
Al Viro5f242a12006-11-20 17:05:23 -0800844 if (!sctp_cmp_addr_exact(&t->ipaddr,
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900845 &asoc->peer.primary_addr)) {
Al Viro38a03142006-11-20 17:06:45 -0800846 sctp_assoc_del_peer(asoc, &t->ipaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 }
848 }
849
850 return;
851}
852
Sridhar Samudrala8de8c872006-05-19 10:58:12 -0700853/* Helper function to set sk_err on a 1-1 style socket. */
854static void sctp_cmd_set_sk_err(struct sctp_association *asoc, int error)
855{
856 struct sock *sk = asoc->base.sk;
857
858 if (!sctp_style(sk, UDP))
859 sk->sk_err = error;
860}
861
Vlad Yasevich07d93962007-05-04 13:55:27 -0700862/* Helper function to generate an association change event */
863static void sctp_cmd_assoc_change(sctp_cmd_seq_t *commands,
864 struct sctp_association *asoc,
865 u8 state)
866{
867 struct sctp_ulpevent *ev;
868
869 ev = sctp_ulpevent_make_assoc_change(asoc, 0, state, 0,
870 asoc->c.sinit_num_ostreams,
871 asoc->c.sinit_max_instreams,
872 NULL, GFP_ATOMIC);
873 if (ev)
874 sctp_ulpq_tail_event(&asoc->ulpq, ev);
875}
876
877/* Helper function to generate an adaptation indication event */
878static void sctp_cmd_adaptation_ind(sctp_cmd_seq_t *commands,
879 struct sctp_association *asoc)
880{
881 struct sctp_ulpevent *ev;
882
883 ev = sctp_ulpevent_make_adaptation_indication(asoc, GFP_ATOMIC);
884
885 if (ev)
886 sctp_ulpq_tail_event(&asoc->ulpq, ev);
887}
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889/* These three macros allow us to pull the debugging code out of the
890 * main flow of sctp_do_sm() to keep attention focused on the real
891 * functionality there.
892 */
893#define DEBUG_PRE \
894 SCTP_DEBUG_PRINTK("sctp_do_sm prefn: " \
895 "ep %p, %s, %s, asoc %p[%s], %s\n", \
896 ep, sctp_evttype_tbl[event_type], \
897 (*debug_fn)(subtype), asoc, \
898 sctp_state_tbl[state], state_fn->name)
899
900#define DEBUG_POST \
901 SCTP_DEBUG_PRINTK("sctp_do_sm postfn: " \
902 "asoc %p, status: %s\n", \
903 asoc, sctp_status_tbl[status])
904
905#define DEBUG_POST_SFX \
906 SCTP_DEBUG_PRINTK("sctp_do_sm post sfx: error %d, asoc %p[%s]\n", \
907 error, asoc, \
908 sctp_state_tbl[(asoc && sctp_id2assoc(ep->base.sk, \
909 sctp_assoc2id(asoc)))?asoc->state:SCTP_STATE_CLOSED])
910
911/*
912 * This is the master state machine processing function.
913 *
914 * If you want to understand all of lksctp, this is a
915 * good place to start.
916 */
917int sctp_do_sm(sctp_event_t event_type, sctp_subtype_t subtype,
918 sctp_state_t state,
919 struct sctp_endpoint *ep,
920 struct sctp_association *asoc,
921 void *event_arg,
Al Virodd0fc662005-10-07 07:46:04 +0100922 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
924 sctp_cmd_seq_t commands;
925 const sctp_sm_table_entry_t *state_fn;
926 sctp_disposition_t status;
927 int error = 0;
928 typedef const char *(printfn_t)(sctp_subtype_t);
929
930 static printfn_t *table[] = {
931 NULL, sctp_cname, sctp_tname, sctp_oname, sctp_pname,
932 };
933 printfn_t *debug_fn __attribute__ ((unused)) = table[event_type];
934
935 /* Look up the state function, run it, and then process the
936 * side effects. These three steps are the heart of lksctp.
937 */
938 state_fn = sctp_sm_lookup_event(event_type, state, subtype);
939
940 sctp_init_cmd_seq(&commands);
941
942 DEBUG_PRE;
943 status = (*state_fn->fn)(ep, asoc, subtype, event_arg, &commands);
944 DEBUG_POST;
945
946 error = sctp_side_effects(event_type, subtype, state,
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900947 ep, asoc, event_arg, status,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 &commands, gfp);
949 DEBUG_POST_SFX;
950
951 return error;
952}
953
954#undef DEBUG_PRE
955#undef DEBUG_POST
956
957/*****************************************************************
958 * This the master state function side effect processing function.
959 *****************************************************************/
960static int sctp_side_effects(sctp_event_t event_type, sctp_subtype_t subtype,
961 sctp_state_t state,
962 struct sctp_endpoint *ep,
963 struct sctp_association *asoc,
964 void *event_arg,
965 sctp_disposition_t status,
966 sctp_cmd_seq_t *commands,
Al Virodd0fc662005-10-07 07:46:04 +0100967 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968{
969 int error;
970
971 /* FIXME - Most of the dispositions left today would be categorized
972 * as "exceptional" dispositions. For those dispositions, it
973 * may not be proper to run through any of the commands at all.
974 * For example, the command interpreter might be run only with
975 * disposition SCTP_DISPOSITION_CONSUME.
976 */
977 if (0 != (error = sctp_cmd_interpreter(event_type, subtype, state,
978 ep, asoc,
979 event_arg, status,
980 commands, gfp)))
981 goto bail;
982
983 switch (status) {
984 case SCTP_DISPOSITION_DISCARD:
985 SCTP_DEBUG_PRINTK("Ignored sctp protocol event - state %d, "
986 "event_type %d, event_id %d\n",
987 state, event_type, subtype.chunk);
988 break;
989
990 case SCTP_DISPOSITION_NOMEM:
991 /* We ran out of memory, so we need to discard this
992 * packet.
993 */
994 /* BUG--we should now recover some memory, probably by
995 * reneging...
996 */
997 error = -ENOMEM;
998 break;
999
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001000 case SCTP_DISPOSITION_DELETE_TCB:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 /* This should now be a command. */
1002 break;
1003
1004 case SCTP_DISPOSITION_CONSUME:
1005 case SCTP_DISPOSITION_ABORT:
1006 /*
1007 * We should no longer have much work to do here as the
1008 * real work has been done as explicit commands above.
1009 */
1010 break;
1011
1012 case SCTP_DISPOSITION_VIOLATION:
Wei Yongjund99fa422007-08-27 11:19:24 +08001013 if (net_ratelimit())
1014 printk(KERN_ERR "sctp protocol violation state %d "
1015 "chunkid %d\n", state, subtype.chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 break;
1017
1018 case SCTP_DISPOSITION_NOT_IMPL:
1019 printk(KERN_WARNING "sctp unimplemented feature in state %d, "
1020 "event_type %d, event_id %d\n",
1021 state, event_type, subtype.chunk);
1022 break;
1023
1024 case SCTP_DISPOSITION_BUG:
1025 printk(KERN_ERR "sctp bug in state %d, "
1026 "event_type %d, event_id %d\n",
1027 state, event_type, subtype.chunk);
1028 BUG();
1029 break;
1030
1031 default:
1032 printk(KERN_ERR "sctp impossible disposition %d "
1033 "in state %d, event_type %d, event_id %d\n",
1034 status, state, event_type, subtype.chunk);
1035 BUG();
1036 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001037 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
1039bail:
1040 return error;
1041}
1042
1043/********************************************************************
1044 * 2nd Level Abstractions
1045 ********************************************************************/
1046
1047/* This is the side-effect interpreter. */
1048static int sctp_cmd_interpreter(sctp_event_t event_type,
1049 sctp_subtype_t subtype,
1050 sctp_state_t state,
1051 struct sctp_endpoint *ep,
1052 struct sctp_association *asoc,
1053 void *event_arg,
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001054 sctp_disposition_t status,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 sctp_cmd_seq_t *commands,
Al Virodd0fc662005-10-07 07:46:04 +01001056 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057{
1058 int error = 0;
1059 int force;
1060 sctp_cmd_t *cmd;
1061 struct sctp_chunk *new_obj;
1062 struct sctp_chunk *chunk = NULL;
1063 struct sctp_packet *packet;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 struct timer_list *timer;
1065 unsigned long timeout;
1066 struct sctp_transport *t;
1067 struct sctp_sackhdr sackh;
1068 int local_cork = 0;
1069
1070 if (SCTP_EVENT_T_TIMEOUT != event_type)
1071 chunk = (struct sctp_chunk *) event_arg;
1072
1073 /* Note: This whole file is a huge candidate for rework.
1074 * For example, each command could either have its own handler, so
1075 * the loop would look like:
1076 * while (cmds)
1077 * cmd->handle(x, y, z)
1078 * --jgrimm
1079 */
1080 while (NULL != (cmd = sctp_next_cmd(commands))) {
1081 switch (cmd->verb) {
1082 case SCTP_CMD_NOP:
1083 /* Do nothing. */
1084 break;
1085
1086 case SCTP_CMD_NEW_ASOC:
1087 /* Register a new association. */
1088 if (local_cork) {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001089 sctp_outq_uncork(&asoc->outqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 local_cork = 0;
1091 }
1092 asoc = cmd->obj.ptr;
1093 /* Register with the endpoint. */
1094 sctp_endpoint_add_asoc(ep, asoc);
1095 sctp_hash_established(asoc);
1096 break;
1097
1098 case SCTP_CMD_UPDATE_ASSOC:
1099 sctp_assoc_update(asoc, cmd->obj.ptr);
1100 break;
1101
1102 case SCTP_CMD_PURGE_OUTQUEUE:
1103 sctp_outq_teardown(&asoc->outqueue);
1104 break;
1105
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001106 case SCTP_CMD_DELETE_TCB:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 if (local_cork) {
1108 sctp_outq_uncork(&asoc->outqueue);
1109 local_cork = 0;
1110 }
1111 /* Delete the current association. */
1112 sctp_cmd_delete_tcb(commands, asoc);
1113 asoc = NULL;
1114 break;
1115
1116 case SCTP_CMD_NEW_STATE:
1117 /* Enter a new state. */
1118 sctp_cmd_new_state(commands, asoc, cmd->obj.state);
1119 break;
1120
1121 case SCTP_CMD_REPORT_TSN:
1122 /* Record the arrival of a TSN. */
1123 sctp_tsnmap_mark(&asoc->peer.tsn_map, cmd->obj.u32);
1124 break;
1125
1126 case SCTP_CMD_REPORT_FWDTSN:
1127 /* Move the Cumulattive TSN Ack ahead. */
1128 sctp_tsnmap_skip(&asoc->peer.tsn_map, cmd->obj.u32);
1129
Vlad Yasevichea2dfb32007-07-13 17:01:19 -04001130 /* purge the fragmentation queue */
1131 sctp_ulpq_reasm_flushtsn(&asoc->ulpq, cmd->obj.u32);
1132
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 /* Abort any in progress partial delivery. */
1134 sctp_ulpq_abort_pd(&asoc->ulpq, GFP_ATOMIC);
1135 break;
1136
1137 case SCTP_CMD_PROCESS_FWDTSN:
1138 sctp_cmd_process_fwdtsn(&asoc->ulpq, cmd->obj.ptr);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001139 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
1141 case SCTP_CMD_GEN_SACK:
1142 /* Generate a Selective ACK.
1143 * The argument tells us whether to just count
1144 * the packet and MAYBE generate a SACK, or
1145 * force a SACK out.
1146 */
1147 force = cmd->obj.i32;
1148 error = sctp_gen_sack(asoc, force, commands);
1149 break;
1150
1151 case SCTP_CMD_PROCESS_SACK:
1152 /* Process an inbound SACK. */
1153 error = sctp_cmd_process_sack(commands, asoc,
1154 cmd->obj.ptr);
1155 break;
1156
1157 case SCTP_CMD_GEN_INIT_ACK:
1158 /* Generate an INIT ACK chunk. */
1159 new_obj = sctp_make_init_ack(asoc, chunk, GFP_ATOMIC,
1160 0);
1161 if (!new_obj)
1162 goto nomem;
1163
1164 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
1165 SCTP_CHUNK(new_obj));
1166 break;
1167
1168 case SCTP_CMD_PEER_INIT:
1169 /* Process a unified INIT from the peer.
1170 * Note: Only used during INIT-ACK processing. If
1171 * there is an error just return to the outter
1172 * layer which will bail.
1173 */
1174 error = sctp_cmd_process_init(commands, asoc, chunk,
1175 cmd->obj.ptr, gfp);
1176 break;
1177
1178 case SCTP_CMD_GEN_COOKIE_ECHO:
1179 /* Generate a COOKIE ECHO chunk. */
1180 new_obj = sctp_make_cookie_echo(asoc, chunk);
1181 if (!new_obj) {
1182 if (cmd->obj.ptr)
1183 sctp_chunk_free(cmd->obj.ptr);
1184 goto nomem;
1185 }
1186 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
1187 SCTP_CHUNK(new_obj));
1188
1189 /* If there is an ERROR chunk to be sent along with
1190 * the COOKIE_ECHO, send it, too.
1191 */
1192 if (cmd->obj.ptr)
1193 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
1194 SCTP_CHUNK(cmd->obj.ptr));
1195
1196 /* FIXME - Eventually come up with a cleaner way to
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001197 * enabling COOKIE-ECHO + DATA bundling during
1198 * multihoming stale cookie scenarios, the following
1199 * command plays with asoc->peer.retran_path to
1200 * avoid the problem of sending the COOKIE-ECHO and
1201 * DATA in different paths, which could result
1202 * in the association being ABORTed if the DATA chunk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 * is processed first by the server. Checking the
1204 * init error counter simply causes this command
1205 * to be executed only during failed attempts of
1206 * association establishment.
1207 */
Frank Filz3f7a87d2005-06-20 13:14:57 -07001208 if ((asoc->peer.retran_path !=
1209 asoc->peer.primary_path) &&
1210 (asoc->init_err_counter > 0)) {
1211 sctp_add_cmd_sf(commands,
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001212 SCTP_CMD_FORCE_PRIM_RETRAN,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 SCTP_NULL());
1214 }
1215
1216 break;
1217
1218 case SCTP_CMD_GEN_SHUTDOWN:
1219 /* Generate SHUTDOWN when in SHUTDOWN_SENT state.
1220 * Reset error counts.
1221 */
1222 asoc->overall_error_count = 0;
1223
1224 /* Generate a SHUTDOWN chunk. */
1225 new_obj = sctp_make_shutdown(asoc, chunk);
1226 if (!new_obj)
1227 goto nomem;
1228 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
1229 SCTP_CHUNK(new_obj));
1230 break;
1231
1232 case SCTP_CMD_CHUNK_ULP:
1233 /* Send a chunk to the sockets layer. */
1234 SCTP_DEBUG_PRINTK("sm_sideff: %s %p, %s %p.\n",
1235 "chunk_up:", cmd->obj.ptr,
1236 "ulpq:", &asoc->ulpq);
1237 sctp_ulpq_tail_data(&asoc->ulpq, cmd->obj.ptr,
1238 GFP_ATOMIC);
1239 break;
1240
1241 case SCTP_CMD_EVENT_ULP:
1242 /* Send a notification to the sockets layer. */
1243 SCTP_DEBUG_PRINTK("sm_sideff: %s %p, %s %p.\n",
1244 "event_up:",cmd->obj.ptr,
1245 "ulpq:",&asoc->ulpq);
1246 sctp_ulpq_tail_event(&asoc->ulpq, cmd->obj.ptr);
1247 break;
1248
1249 case SCTP_CMD_REPLY:
1250 /* If an caller has not already corked, do cork. */
1251 if (!asoc->outqueue.cork) {
1252 sctp_outq_cork(&asoc->outqueue);
1253 local_cork = 1;
1254 }
1255 /* Send a chunk to our peer. */
1256 error = sctp_outq_tail(&asoc->outqueue, cmd->obj.ptr);
1257 break;
1258
1259 case SCTP_CMD_SEND_PKT:
1260 /* Send a full packet to our peer. */
1261 packet = cmd->obj.ptr;
1262 sctp_packet_transmit(packet);
1263 sctp_ootb_pkt_free(packet);
1264 break;
1265
Vlad Yasevichb6157d82007-10-24 15:59:16 -04001266 case SCTP_CMD_T1_RETRAN:
1267 /* Mark a transport for retransmission. */
1268 sctp_retransmit(&asoc->outqueue, cmd->obj.transport,
1269 SCTP_RTXR_T1_RTX);
1270 break;
1271
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 case SCTP_CMD_RETRAN:
1273 /* Mark a transport for retransmission. */
1274 sctp_retransmit(&asoc->outqueue, cmd->obj.transport,
1275 SCTP_RTXR_T3_RTX);
1276 break;
1277
1278 case SCTP_CMD_TRANSMIT:
1279 /* Kick start transmission. */
1280 error = sctp_outq_uncork(&asoc->outqueue);
1281 local_cork = 0;
1282 break;
1283
1284 case SCTP_CMD_ECN_CE:
1285 /* Do delayed CE processing. */
1286 sctp_do_ecn_ce_work(asoc, cmd->obj.u32);
1287 break;
1288
1289 case SCTP_CMD_ECN_ECNE:
1290 /* Do delayed ECNE processing. */
1291 new_obj = sctp_do_ecn_ecne_work(asoc, cmd->obj.u32,
1292 chunk);
1293 if (new_obj)
1294 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY,
1295 SCTP_CHUNK(new_obj));
1296 break;
1297
1298 case SCTP_CMD_ECN_CWR:
1299 /* Do delayed CWR processing. */
1300 sctp_do_ecn_cwr_work(asoc, cmd->obj.u32);
1301 break;
1302
1303 case SCTP_CMD_SETUP_T2:
1304 sctp_cmd_setup_t2(commands, asoc, cmd->obj.ptr);
1305 break;
1306
1307 case SCTP_CMD_TIMER_START:
1308 timer = &asoc->timers[cmd->obj.to];
1309 timeout = asoc->timeouts[cmd->obj.to];
Kris Katterjohn09a62662006-01-08 22:24:28 -08001310 BUG_ON(!timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
1312 timer->expires = jiffies + timeout;
1313 sctp_association_hold(asoc);
1314 add_timer(timer);
1315 break;
1316
1317 case SCTP_CMD_TIMER_RESTART:
1318 timer = &asoc->timers[cmd->obj.to];
1319 timeout = asoc->timeouts[cmd->obj.to];
1320 if (!mod_timer(timer, jiffies + timeout))
1321 sctp_association_hold(asoc);
1322 break;
1323
1324 case SCTP_CMD_TIMER_STOP:
1325 timer = &asoc->timers[cmd->obj.to];
1326 if (timer_pending(timer) && del_timer(timer))
1327 sctp_association_put(asoc);
1328 break;
1329
Frank Filz3f7a87d2005-06-20 13:14:57 -07001330 case SCTP_CMD_INIT_CHOOSE_TRANSPORT:
1331 chunk = cmd->obj.ptr;
1332 t = sctp_assoc_choose_init_transport(asoc);
1333 asoc->init_last_sent_to = t;
1334 chunk->transport = t;
1335 t->init_sent_count++;
1336 break;
1337
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 case SCTP_CMD_INIT_RESTART:
1339 /* Do the needed accounting and updates
1340 * associated with restarting an initialization
Frank Filz3f7a87d2005-06-20 13:14:57 -07001341 * timer. Only multiply the timeout by two if
1342 * all transports have been tried at the current
1343 * timeout.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 */
Frank Filz3f7a87d2005-06-20 13:14:57 -07001345 t = asoc->init_last_sent_to;
1346 asoc->init_err_counter++;
1347
1348 if (t->init_sent_count > (asoc->init_cycle + 1)) {
1349 asoc->timeouts[SCTP_EVENT_TIMEOUT_T1_INIT] *= 2;
1350 if (asoc->timeouts[SCTP_EVENT_TIMEOUT_T1_INIT] >
1351 asoc->max_init_timeo) {
1352 asoc->timeouts[SCTP_EVENT_TIMEOUT_T1_INIT] =
1353 asoc->max_init_timeo;
1354 }
1355 asoc->init_cycle++;
1356 SCTP_DEBUG_PRINTK(
1357 "T1 INIT Timeout adjustment"
1358 " init_err_counter: %d"
1359 " cycle: %d"
Vlad Yasevich8116ffa2006-01-17 11:55:17 -08001360 " timeout: %ld\n",
Frank Filz3f7a87d2005-06-20 13:14:57 -07001361 asoc->init_err_counter,
1362 asoc->init_cycle,
1363 asoc->timeouts[SCTP_EVENT_TIMEOUT_T1_INIT]);
1364 }
1365
1366 sctp_add_cmd_sf(commands, SCTP_CMD_TIMER_RESTART,
1367 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_INIT));
1368 break;
1369
1370 case SCTP_CMD_COOKIEECHO_RESTART:
1371 /* Do the needed accounting and updates
1372 * associated with restarting an initialization
1373 * timer. Only multiply the timeout by two if
1374 * all transports have been tried at the current
1375 * timeout.
1376 */
1377 asoc->init_err_counter++;
1378
1379 asoc->timeouts[SCTP_EVENT_TIMEOUT_T1_COOKIE] *= 2;
1380 if (asoc->timeouts[SCTP_EVENT_TIMEOUT_T1_COOKIE] >
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 asoc->max_init_timeo) {
Frank Filz3f7a87d2005-06-20 13:14:57 -07001382 asoc->timeouts[SCTP_EVENT_TIMEOUT_T1_COOKIE] =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 asoc->max_init_timeo;
1384 }
Frank Filz3f7a87d2005-06-20 13:14:57 -07001385 SCTP_DEBUG_PRINTK(
1386 "T1 COOKIE Timeout adjustment"
1387 " init_err_counter: %d"
Vlad Yasevich8116ffa2006-01-17 11:55:17 -08001388 " timeout: %ld\n",
Frank Filz3f7a87d2005-06-20 13:14:57 -07001389 asoc->init_err_counter,
1390 asoc->timeouts[SCTP_EVENT_TIMEOUT_T1_COOKIE]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
1392 /* If we've sent any data bundled with
1393 * COOKIE-ECHO we need to resend.
1394 */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07001395 list_for_each_entry(t, &asoc->peer.transport_addr_list,
1396 transports) {
Vlad Yasevichb6157d82007-10-24 15:59:16 -04001397 sctp_retransmit_mark(&asoc->outqueue, t,
1398 SCTP_RTXR_T1_RTX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 }
1400
1401 sctp_add_cmd_sf(commands,
1402 SCTP_CMD_TIMER_RESTART,
Frank Filz3f7a87d2005-06-20 13:14:57 -07001403 SCTP_TO(SCTP_EVENT_TIMEOUT_T1_COOKIE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 break;
1405
1406 case SCTP_CMD_INIT_FAILED:
Al Virodc251b22006-11-20 17:00:44 -08001407 sctp_cmd_init_failed(commands, asoc, cmd->obj.err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 break;
1409
1410 case SCTP_CMD_ASSOC_FAILED:
1411 sctp_cmd_assoc_failed(commands, asoc, event_type,
Al Viro5be291f2006-11-20 17:01:06 -08001412 subtype, chunk, cmd->obj.err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 break;
1414
Frank Filz3f7a87d2005-06-20 13:14:57 -07001415 case SCTP_CMD_INIT_COUNTER_INC:
1416 asoc->init_err_counter++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 break;
1418
Frank Filz3f7a87d2005-06-20 13:14:57 -07001419 case SCTP_CMD_INIT_COUNTER_RESET:
1420 asoc->init_err_counter = 0;
1421 asoc->init_cycle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 break;
1423
1424 case SCTP_CMD_REPORT_DUP:
1425 sctp_tsnmap_mark_dup(&asoc->peer.tsn_map,
1426 cmd->obj.u32);
1427 break;
1428
1429 case SCTP_CMD_REPORT_BAD_TAG:
1430 SCTP_DEBUG_PRINTK("vtag mismatch!\n");
1431 break;
1432
1433 case SCTP_CMD_STRIKE:
1434 /* Mark one strike against a transport. */
1435 sctp_do_8_2_transport_strike(asoc, cmd->obj.transport);
1436 break;
1437
1438 case SCTP_CMD_TRANSPORT_RESET:
1439 t = cmd->obj.transport;
1440 sctp_cmd_transport_reset(commands, asoc, t);
1441 break;
1442
1443 case SCTP_CMD_TRANSPORT_ON:
1444 t = cmd->obj.transport;
1445 sctp_cmd_transport_on(commands, asoc, t, chunk);
1446 break;
1447
1448 case SCTP_CMD_HB_TIMERS_START:
1449 sctp_cmd_hb_timers_start(commands, asoc);
1450 break;
1451
1452 case SCTP_CMD_HB_TIMER_UPDATE:
1453 t = cmd->obj.transport;
1454 sctp_cmd_hb_timer_update(commands, asoc, t);
1455 break;
1456
1457 case SCTP_CMD_HB_TIMERS_STOP:
1458 sctp_cmd_hb_timers_stop(commands, asoc);
1459 break;
1460
1461 case SCTP_CMD_REPORT_ERROR:
1462 error = cmd->obj.error;
1463 break;
1464
1465 case SCTP_CMD_PROCESS_CTSN:
1466 /* Dummy up a SACK for processing. */
Al Viro2178eda2006-11-20 17:26:53 -08001467 sackh.cum_tsn_ack = cmd->obj.be32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 sackh.a_rwnd = 0;
1469 sackh.num_gap_ack_blocks = 0;
1470 sackh.num_dup_tsns = 0;
1471 sctp_add_cmd_sf(commands, SCTP_CMD_PROCESS_SACK,
1472 SCTP_SACKH(&sackh));
1473 break;
1474
1475 case SCTP_CMD_DISCARD_PACKET:
1476 /* We need to discard the whole packet. */
1477 chunk->pdiscard = 1;
1478 break;
1479
1480 case SCTP_CMD_RTO_PENDING:
1481 t = cmd->obj.transport;
1482 t->rto_pending = 1;
1483 break;
1484
1485 case SCTP_CMD_PART_DELIVER:
1486 sctp_ulpq_partial_delivery(&asoc->ulpq, cmd->obj.ptr,
1487 GFP_ATOMIC);
1488 break;
1489
1490 case SCTP_CMD_RENEGE:
1491 sctp_ulpq_renege(&asoc->ulpq, cmd->obj.ptr,
1492 GFP_ATOMIC);
1493 break;
1494
1495 case SCTP_CMD_SETUP_T4:
1496 sctp_cmd_setup_t4(commands, asoc, cmd->obj.ptr);
1497 break;
1498
1499 case SCTP_CMD_PROCESS_OPERR:
1500 sctp_cmd_process_operr(commands, asoc, chunk);
1501 break;
1502 case SCTP_CMD_CLEAR_INIT_TAG:
1503 asoc->peer.i.init_tag = 0;
1504 break;
1505 case SCTP_CMD_DEL_NON_PRIMARY:
1506 sctp_cmd_del_non_primary(asoc);
1507 break;
1508 case SCTP_CMD_T3_RTX_TIMERS_STOP:
1509 sctp_cmd_t3_rtx_timers_stop(commands, asoc);
1510 break;
1511 case SCTP_CMD_FORCE_PRIM_RETRAN:
1512 t = asoc->peer.retran_path;
1513 asoc->peer.retran_path = asoc->peer.primary_path;
1514 error = sctp_outq_uncork(&asoc->outqueue);
1515 local_cork = 0;
1516 asoc->peer.retran_path = t;
1517 break;
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07001518 case SCTP_CMD_SET_SK_ERR:
1519 sctp_cmd_set_sk_err(asoc, cmd->obj.error);
1520 break;
Vlad Yasevich07d93962007-05-04 13:55:27 -07001521 case SCTP_CMD_ASSOC_CHANGE:
1522 sctp_cmd_assoc_change(commands, asoc,
1523 cmd->obj.u8);
1524 break;
1525 case SCTP_CMD_ADAPTATION_IND:
1526 sctp_cmd_adaptation_ind(commands, asoc);
1527 break;
1528
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07001529 case SCTP_CMD_ASSOC_SHKEY:
1530 error = sctp_auth_asoc_init_active_key(asoc,
1531 GFP_ATOMIC);
1532 break;
1533
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 default:
1535 printk(KERN_WARNING "Impossible command: %u, %p\n",
1536 cmd->verb, cmd->obj.ptr);
1537 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001538 }
1539
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 if (error)
1541 break;
1542 }
1543
1544out:
1545 if (local_cork)
1546 sctp_outq_uncork(&asoc->outqueue);
1547 return error;
1548nomem:
1549 error = -ENOMEM;
1550 goto out;
1551}
1552